:root {
  --primary: #1E3A8A;
  --primary-600: #2563EB;
  --primary-50: #EFF6FF;
  --ink: #1F2937;
  --muted: #64748B;
  --line: #D8E2EF;
  --soft: #F3F7FF;
  --panel: rgba(255, 255, 255, 0.82);
  --teal: #14B8A6;
  --teal-dark: #0F766E;
  --blue: #1E3A8A;
  --gold: #b7791f;
  --coral: #dc5f45;
  --shadow: 0 22px 50px rgba(30, 58, 138, 0.14);
  --shadow-soft: 0 14px 34px rgba(30, 58, 138, 0.08);
  --font-display: "Inter", "Poppins", "Microsoft YaHei UI", "Microsoft YaHei", sans-serif;
  --font-body: "Inter", "Microsoft YaHei UI", "Microsoft YaHei", "PingFang SC", "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background:
    linear-gradient(135deg, #F3F7FF 0%, #F8FAFC 52%, #EEF7F6 100%);
  font-family: var(--font-body);
  letter-spacing: 0;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0.46;
  background-image:
    linear-gradient(rgba(30, 58, 138, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30, 58, 138, 0.055) 1px, transparent 1px);
  background-size: 36px 36px;
}

body.is-loading {
  overflow: hidden;
}

.home-page {
  --font-display: "Poppins", "Microsoft YaHei UI", "Microsoft YaHei", "PingFang SC", sans-serif;
  background: #07111d;
}

.home-page::before {
  opacity: 0;
}

.landing-page {
  background: #07111d;
}

.landing-page::before {
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 42px 42px;
}

.site-loader {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(140deg, rgba(2, 10, 22, 0.98), rgba(4, 17, 43, 0.94) 52%, rgba(8, 44, 70, 0.88)),
    #06111e;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.site-loader::before,
.site-loader::after {
  position: absolute;
  inset: 0;
  content: "";
}

.site-loader::before {
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 42px 42px;
}

.site-loader::after {
  background: linear-gradient(90deg, transparent, rgba(20, 184, 166, 0.14), transparent);
  transform: translateX(-100%);
  animation: loader-sweep 1.6s ease-in-out infinite;
}

.loader-panel {
  position: relative;
  z-index: 1;
  width: min(540px, calc(100% - 48px));
  padding: 36px 32px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(14px);
}

.loader-kicker {
  display: inline-block;
  color: rgba(143, 242, 230, 0.92);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.loader-brand {
  display: block;
  margin-top: 14px;
  font-size: clamp(48px, 7vw, 76px);
  line-height: 0.95;
  font-family: var(--font-display);
  font-weight: 900;
}

.loader-copy {
  margin: 14px 0 0;
  max-width: 420px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.8;
}

.loader-line {
  width: 100%;
  height: 2px;
  display: block;
  margin-top: 24px;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.loader-line span {
  width: 28%;
  height: 100%;
  display: block;
  background: linear-gradient(90deg, rgba(20, 184, 166, 0.16), rgba(255, 255, 255, 0.92), rgba(20, 184, 166, 0.16));
  animation: loader-bar 1.2s ease-in-out infinite;
}

body.is-ready .site-loader {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  -webkit-tap-highlight-color: transparent;
}

button:disabled {
  cursor: not-allowed;
  opacity: 0.58;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(216, 226, 239, 0.86);
  background: rgba(248, 251, 255, 0.92);
  backdrop-filter: blur(18px);
}

.home-page .topbar {
  position: fixed;
  width: 100%;
  border-bottom-color: transparent;
  background: rgba(6, 12, 24, 0);
  backdrop-filter: none;
  transition: background 0.26s ease, border-color 0.26s ease, backdrop-filter 0.26s ease;
}

.home-page .topbar.is-scrolled {
  border-bottom-color: rgba(255, 255, 255, 0.1);
  background: rgba(6, 12, 24, 0.72);
  backdrop-filter: blur(18px);
}

.landing-page .topbar {
  border-bottom-color: rgba(255, 255, 255, 0.1);
  background: rgba(6, 12, 24, 0.86);
  backdrop-filter: blur(18px);
}

.nav {
  width: min(1200px, calc(100% - 32px));
  min-height: 74px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--teal));
  box-shadow: 0 12px 26px rgba(30, 58, 138, 0.18);
  font-size: 17px;
  font-weight: 900;
  flex: 0 0 auto;
}

.brand-name {
  display: block;
  color: var(--primary);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 900;
  white-space: nowrap;
}

.brand-sub {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.home-page .brand-name {
  color: #fff;
}

.home-page .brand-sub,
.landing-page .brand-sub {
  color: rgba(255, 255, 255, 0.66);
}

.home-page .brand-name,
.landing-page .brand-name {
  color: #fff;
}

.home-page .brand-mark,
.landing-page .brand-mark {
  color: #04101e;
  background: linear-gradient(140deg, #f3fbff, #5eead4);
  box-shadow: 0 16px 30px rgba(20, 184, 166, 0.22);
}

.nav-links,
.nav-actions {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-link,
.dropdown-trigger {
  min-height: 40px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 8px;
  color: #344054;
  background: transparent;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
}

.home-page .nav-link,
.landing-page .nav-link,
.home-page .dropdown-trigger {
  color: rgba(255, 255, 255, 0.78);
}

.nav-link:hover,
.dropdown-trigger:hover,
.dropdown.open .dropdown-trigger {
  color: var(--primary);
  background: var(--primary-50);
}

.home-page .nav-link:hover,
.landing-page .nav-link:hover,
.home-page .dropdown-trigger:hover,
.home-page .dropdown.open .dropdown-trigger {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  width: 292px;
  display: none;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
}

.dropdown.open .dropdown-menu,
.dropdown:hover .dropdown-menu {
  display: grid;
  gap: 6px;
}

.dropdown-menu a {
  min-height: 52px;
  padding: 10px 12px;
  border-radius: 8px;
  display: grid;
  gap: 3px;
}

.dropdown-menu a:hover {
  background: var(--primary-50);
}

.dropdown-menu strong {
  font-size: 14px;
}

.dropdown-menu span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.btn {
  min-height: 42px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--teal), var(--primary-600));
  box-shadow: 0 16px 34px rgba(20, 184, 166, 0.22);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--teal-dark), var(--primary));
  box-shadow: 0 22px 48px rgba(20, 184, 166, 0.28);
}

.btn-outline {
  color: var(--ink);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.82);
}

.btn-outline:hover {
  border-color: rgba(17, 168, 138, 0.45);
  box-shadow: var(--shadow-soft);
}

.nav-lang {
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  white-space: nowrap;
}

.nav-utility-link {
  color: rgba(255, 255, 255, 0.84);
  font-size: 13px;
  font-weight: 700;
}

.home-page .btn-outline,
.landing-page .btn-outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
}

.home-page .btn-outline:hover,
.landing-page .btn-outline:hover {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.12);
}

.hero {
  min-height: calc(100vh - 74px);
  display: grid;
  align-items: center;
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(30, 58, 138, 0.96), rgba(31, 41, 55, 0.68)),
    #142033 url("global-trade-hero.png") center / cover no-repeat;
}

.home-page .hero {
  min-height: 100vh;
  padding-top: 88px;
  background:
    linear-gradient(112deg, rgba(5, 12, 25, 0.92), rgba(9, 29, 63, 0.62) 50%, rgba(7, 52, 76, 0.28)),
    #07111d url("global-trade-hero.png") center right / cover no-repeat;
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.34;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.11) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.09) 1px, transparent 1px);
  background-size: 42px 42px;
}

.hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(15, 23, 42, 0.86), rgba(30, 58, 138, 0.58) 48%, rgba(20, 184, 166, 0.16));
}

.home-page .hero::before {
  opacity: 0.2;
  background-size: 54px 54px;
}

.home-page .hero::after {
  background:
    linear-gradient(90deg, rgba(3, 8, 18, 0.94), rgba(5, 24, 53, 0.66) 44%, rgba(7, 56, 79, 0.22));
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
  padding: 72px 0 86px;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 408px;
  gap: 28px;
  align-items: center;
}

.hero-copy,
.hero-panel,
.hero-bottom {
  --intro-y: 30px;
  opacity: 0;
  transform: translate3d(0, calc(var(--parallax-y, 0px) + var(--intro-y)), 0);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

body.is-ready .hero-copy,
body.is-ready .hero-panel,
body.is-ready .hero-bottom {
  --intro-y: 0px;
  opacity: 1;
  transform: translate3d(0, calc(var(--parallax-y, 0px) + var(--intro-y)), 0);
}

.hero-panel {
  padding: 21px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.05));
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(14px);
}

.hero-panel-head span {
  display: block;
  color: rgba(143, 242, 230, 0.9);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.hero-panel-head strong {
  display: block;
  margin-top: 10px;
  font-size: 24px;
  line-height: 1.15;
}

.hero-panel-list {
  margin-top: 18px;
  display: grid;
  gap: 12px;
}

.hero-panel-item {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
}

.hero-panel-item > span {
  color: rgba(143, 242, 230, 0.92);
  font-size: 14px;
  font-weight: 900;
}

.hero-panel-item strong {
  display: block;
  font-size: 15px;
}

.hero-panel-item p {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  line-height: 1.55;
}

.hero-panel-foot {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-panel-foot strong {
  display: block;
  font-size: 13px;
}

.hero-panel-foot span {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 11px;
  line-height: 1.45;
}

.hero-beams {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.beam {
  position: absolute;
  top: -16%;
  bottom: -16%;
  width: 18vw;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(143, 242, 230, 0.16), rgba(255, 255, 255, 0));
  filter: blur(12px);
  transform: skewX(-18deg);
  animation: beam-shift 12s ease-in-out infinite;
}

.beam-one {
  left: 54%;
}

.beam-two {
  left: 70%;
  width: 11vw;
  animation-delay: -4s;
}

.beam-three {
  left: 84%;
  width: 8vw;
  animation-delay: -7s;
}

.eyebrow {
  color: var(--teal);
  font-size: 13px;
  font-weight: 900;
}

.hero h1,
.page-hero h1 {
  margin: 14px 0 16px;
  max-width: 820px;
  font-size: 64px;
  line-height: 1.05;
  letter-spacing: 0;
  font-family: var(--font-display);
  font-weight: 900;
}

.home-page .hero h1 {
  max-width: 760px;
  font-size: clamp(46px, 6vw, 78px);
}

.hero p {
  max-width: 700px;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
  line-height: 1.85;
}

.home-page .hero p {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.78);
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-proof {
  max-width: 920px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 44px;
}

.hero-bottom {
  position: relative;
  z-index: 1;
  width: min(1200px, calc(100% - 32px));
  margin: 6px auto 0;
  padding-bottom: 36px;
}

.proof-item {
  min-height: 92px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.proof-item strong {
  display: block;
  color: #fff;
  font-size: 25px;
}

.proof-item span {
  display: block;
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.55;
}

.hero-tail {
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.hero-legal {
  color: rgba(255, 255, 255, 0.52);
  font-size: 12px;
}

.hero-scroll {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-scroll::before {
  width: 56px;
  height: 1px;
  content: "";
  background: rgba(255, 255, 255, 0.4);
}

.section {
  padding: 68px 0;
  border-top: 1px solid var(--line);
  background: rgba(248, 250, 252, 0.34);
}

.section.tint {
  background: linear-gradient(180deg, rgba(239, 246, 255, 0.92), rgba(240, 253, 250, 0.72));
}

.home-page .section,
.home-page .section.tint,
.landing-page .section,
.landing-page .section.tint {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(5, 12, 25, 0.98), rgba(8, 21, 41, 0.96));
}

.home-page .section.tint,
.landing-page .section.tint {
  background: linear-gradient(180deg, rgba(8, 21, 41, 0.98), rgba(6, 16, 31, 0.98));
}

.home-page .section::before,
.landing-page .section::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    radial-gradient(circle at 14% 18%, rgba(20, 184, 166, 0.10), transparent 34%),
    radial-gradient(circle at 82% 22%, rgba(37, 99, 235, 0.12), transparent 30%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: auto, auto, 42px 42px, 42px 42px;
  opacity: 0.48;
}

.section-inner {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
}

.home-page .section-inner,
.landing-page .section-inner {
  position: relative;
  z-index: 1;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 26px;
}

.section-head h2,
.page-hero h1 {
  margin: 0;
  color: var(--primary);
  font-size: 42px;
  line-height: 1.14;
  font-family: var(--font-display);
  font-weight: 900;
}

.home-page .section-head h2,
.landing-page .section-head h2,
.landing-page .page-hero h1 {
  color: #f8fbff;
}

.section-head p,
.page-hero p,
.copy {
  max-width: 760px;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.85;
}

.home-page .section-head p,
.home-page .copy,
.landing-page .section-head p,
.landing-page .page-hero p,
.landing-page .copy {
  color: rgba(226, 232, 240, 0.76);
}

.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 16px;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card,
.product-card,
.doc-card,
.download-card,
.form-panel,
.metric-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(14px);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.card:hover,
.product-card:hover,
.doc-card:hover,
.download-card:hover,
.metric-card:hover {
  transform: translateY(-6px);
  border-color: rgba(20, 184, 166, 0.45);
  box-shadow: var(--shadow);
  background: rgba(255, 255, 255, 0.94);
}

.home-page .card,
.home-page .product-card,
.home-page .doc-card,
.home-page .download-card,
.home-page .metric-card,
.home-page .form-panel,
.landing-page .card,
.landing-page .product-card,
.landing-page .doc-card,
.landing-page .download-card,
.landing-page .metric-card,
.landing-page .form-panel {
  border-color: rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.22);
}

.home-page .card:hover,
.home-page .product-card:hover,
.home-page .doc-card:hover,
.home-page .download-card:hover,
.home-page .metric-card:hover,
.landing-page .card:hover,
.landing-page .product-card:hover,
.landing-page .doc-card:hover,
.landing-page .download-card:hover,
.landing-page .metric-card:hover {
  border-color: rgba(94, 234, 212, 0.34);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.06));
  box-shadow: 0 28px 68px rgba(0, 0, 0, 0.28);
}

.card,
.doc-card,
.metric-card {
  padding: 22px;
}

.card h3,
.product-card h3,
.doc-card h3,
.download-card h3,
.metric-card h3 {
  margin: 0 0 10px;
  font-size: 20px;
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 900;
}

.home-page .card h3,
.home-page .product-card h3,
.home-page .doc-card h3,
.home-page .download-card h3,
.home-page .metric-card h3,
.home-page .step h3,
.landing-page .card h3,
.landing-page .product-card h3,
.landing-page .doc-card h3,
.landing-page .download-card h3,
.landing-page .metric-card h3,
.landing-page .step h3 {
  color: #f8fbff;
}

.card p,
.product-card p,
.doc-card p,
.download-card p,
.metric-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.home-page .card p,
.home-page .product-card p,
.home-page .doc-card p,
.home-page .download-card p,
.home-page .metric-card p,
.home-page .step p,
.landing-page .card p,
.landing-page .product-card p,
.landing-page .doc-card p,
.landing-page .download-card p,
.landing-page .metric-card p,
.landing-page .step p {
  color: rgba(226, 232, 240, 0.76);
}

.product-card {
  min-height: 282px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.product-card::after {
  position: absolute;
  inset: auto 18px 18px auto;
  width: 68px;
  height: 68px;
  content: "";
  border: 1px solid rgba(30, 58, 138, 0.09);
  border-radius: 8px;
  transform: rotate(12deg);
}

.home-page .product-card::after,
.landing-page .product-card::after {
  border-color: rgba(255, 255, 255, 0.12);
}

.landing-page .page-hero {
  position: relative;
  overflow: hidden;
  padding: 74px 0 58px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(112deg, rgba(5, 12, 25, 0.98), rgba(8, 28, 58, 0.92) 58%, rgba(7, 52, 76, 0.38)),
    #07111d url("global-trade-hero.png") center right / cover no-repeat;
}

.landing-page .page-hero::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.26;
}

.landing-page .signal-panel {
  border-color: rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.10), rgba(255, 255, 255, 0.05));
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.28);
}

.portal-page .page-hero h1 {
  max-width: 820px;
  font-size: 56px;
}

.product-label,
.tag {
  display: inline-flex;
  width: fit-content;
  min-height: 28px;
  align-items: center;
  padding: 0 10px;
  border-radius: 8px;
  color: var(--teal-dark);
  background: var(--accent-soft, #CCFBF1);
  font-size: 12px;
  font-weight: 900;
}

.product-label.gold {
  color: #8a5a11;
  background: #fff3d6;
}

.product-label.blue {
  color: #175cd3;
  background: #eff6ff;
}

.product-label.coral {
  color: #b83b2b;
  background: #fff0ec;
}

.product-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.page-hero {
  padding: 58px 0 42px;
  background:
    linear-gradient(135deg, rgba(239, 246, 255, 0.94), rgba(248, 250, 252, 0.84) 58%, rgba(240, 253, 250, 0.78));
  border-bottom: 1px solid var(--line);
}

.page-hero .section-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 34px;
  align-items: center;
}

.signal-panel {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(145deg, var(--primary), #1F2937);
  color: #fff;
  box-shadow: var(--shadow);
}

.signal-panel strong {
  display: block;
  color: #8FF2E6;
  font-size: 13px;
  margin-bottom: 10px;
}

.signal-panel p {
  margin: 0;
  color: rgba(255,255,255,0.82);
  line-height: 1.75;
  font-size: 14px;
}

.timeline {
  display: grid;
  gap: 12px;
}

.home-page .timeline {
  gap: 16px;
}

.step {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.home-page .step {
  padding: 22px 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.step-num {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--teal));
  font-weight: 900;
}

.step-num svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.icon-box {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  border: 1px solid rgba(30, 58, 138, 0.12);
  border-radius: 8px;
  color: var(--primary);
  background: var(--primary-50);
}

.home-page .icon-box {
  border-color: rgba(255, 255, 255, 0.12);
  color: #8ff2e6;
  background: linear-gradient(135deg, rgba(20, 184, 166, 0.20), rgba(37, 99, 235, 0.24));
}

.landing-page .icon-box {
  border-color: rgba(255, 255, 255, 0.12);
  color: #8ff2e6;
  background: linear-gradient(135deg, rgba(20, 184, 166, 0.20), rgba(37, 99, 235, 0.24));
}

.icon-box svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.product-card .icon-box {
  color: var(--teal-dark);
  background: rgba(204, 251, 241, 0.72);
}

.step .icon-box {
  margin-bottom: 0;
}

[data-parallax] {
  transform: translate3d(0, calc(var(--parallax-y, 0px) + var(--intro-y, 0px)), 0);
  will-change: transform;
}

.reveal-up {
  --reveal-y: 26px;
  opacity: 0;
  transform: translateY(var(--reveal-y));
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.home-page .reveal-up,
.landing-page .reveal-up {
  --reveal-y: 56px;
  transition-duration: 0.95s;
}

.reveal-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.download-card {
  min-height: 156px;
  padding: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.download-card > div {
  min-width: 0;
}

.download-card .btn {
  width: 132px;
  flex: 0 0 132px;
}

.form-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 420px);
  gap: 22px;
  align-items: start;
}

.form-panel {
  padding: 22px;
}

.form-grid {
  display: grid;
  gap: 10px;
}

.field {
  width: 100%;
  min-height: 44px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  outline: none;
}

.landing-page .field {
  color: #f8fbff;
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.07);
}

.landing-page .field::placeholder {
  color: rgba(226, 232, 240, 0.46);
}

textarea.field {
  min-height: 92px;
  padding: 12px 13px;
  resize: vertical;
}

.field:focus {
  border-color: rgba(17, 168, 138, 0.72);
  box-shadow: 0 0 0 4px rgba(17, 168, 138, 0.12);
}

.landing-page .field:focus {
  border-color: rgba(94, 234, 212, 0.64);
  box-shadow: 0 0 0 4px rgba(20, 184, 166, 0.14);
}

.plans,
.pay-methods {
  display: grid;
  gap: 10px;
}

.plans {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pay-methods {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.choice {
  min-height: 70px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  text-align: left;
  cursor: pointer;
}

.landing-page .choice {
  color: #f8fbff;
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
}

.choice.active,
.choice:hover {
  border-color: rgba(17, 168, 138, 0.72);
  box-shadow: var(--shadow-soft);
}

.landing-page .choice.active,
.landing-page .choice:hover {
  border-color: rgba(94, 234, 212, 0.50);
  background: linear-gradient(135deg, rgba(20, 184, 166, 0.18), rgba(37, 99, 235, 0.16));
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
}

.choice strong {
  display: block;
  margin-bottom: 6px;
}

.choice span {
  color: var(--muted);
  font-size: 13px;
}

.landing-page .choice span {
  color: rgba(226, 232, 240, 0.62);
}

.status {
  min-height: 44px;
  padding: 12px 14px;
  border: 1px solid #bfdbfe;
  border-radius: 8px;
  color: #175cd3;
  background: #eff6ff;
  font-size: 13px;
  line-height: 1.55;
}

.landing-page .status {
  color: rgba(226, 232, 240, 0.82);
  border-color: rgba(37, 99, 235, 0.30);
  background: rgba(37, 99, 235, 0.12);
}

.status.good {
  color: #087443;
  border-color: #b7e8d2;
  background: #edfdf5;
}

.landing-page .status.good {
  color: #8ff2e6;
  border-color: rgba(20, 184, 166, 0.32);
  background: rgba(20, 184, 166, 0.12);
}

.status.warn {
  color: #92400e;
  border-color: #fed7aa;
  background: #fff7ed;
}

.landing-page .status.warn {
  color: #ffd59e;
  border-color: rgba(245, 158, 11, 0.32);
  background: rgba(245, 158, 11, 0.12);
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(15, 23, 42, 0.48);
}

.modal.open {
  display: flex;
}

.modal-panel {
  width: min(460px, 100%);
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 28px 80px rgba(15, 23, 42, 0.28);
}

.landing-page .modal-panel {
  color: #f8fbff;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(12, 26, 49, 0.98), rgba(5, 12, 25, 0.98));
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.48);
}

.modal-body {
  padding: 24px;
}

.modal-title {
  margin: 0 0 10px;
  font-size: 22px;
}

.qr-placeholder {
  width: 174px;
  height: 174px;
  display: grid;
  place-items: center;
  margin: 18px auto;
  border: 1px dashed #98a2b3;
  border-radius: 8px;
  color: #475467;
  background: #f8fafc;
  text-align: center;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.5;
}

.landing-page .qr-placeholder {
  color: rgba(226, 232, 240, 0.74);
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
}

.qr-placeholder img {
  width: 158px;
  height: 158px;
}

.modal-actions {
  padding: 0 24px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.footer {
  position: relative;
  padding: 0;
  color: rgba(226, 232, 240, 0.62);
  background: #242626;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.home-page .footer,
.landing-page .footer {
  color: rgba(226, 232, 240, 0.62);
  background:
    linear-gradient(180deg, rgba(5, 12, 25, 0.96) 0%, rgba(18, 27, 39, 0.98) 16%, #242626 100%);
}

.footer-hub.section-inner {
  display: block;
  padding: 72px 0 34px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 44px;
}

.footer-column-title {
  margin: 0 0 28px;
  color: #f8fafc;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.2;
}

.footer-links {
  display: grid;
  gap: 22px;
}

.footer-link {
  color: rgba(226, 232, 240, 0.48);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  transition: color 0.22s ease, transform 0.22s ease;
}

.footer-link:hover {
  color: #ffffff;
  transform: translateX(4px);
}

.footer-actions {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-top: 92px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.footer-tab {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #f8fafc;
  font-size: 19px;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  transition: color 0.22s ease, transform 0.22s ease;
}

.footer-tab svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-tab:hover {
  color: var(--accent);
  transform: translateY(-2px);
}

.footer-tab-muted {
  color: rgba(226, 232, 240, 0.52);
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 16px;
  padding-top: 28px;
  color: rgba(226, 232, 240, 0.52);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.6;
}

@media (max-width: 980px) {
  .home-page .topbar {
    background: rgba(6, 12, 24, 0.52);
    backdrop-filter: blur(16px);
  }

  .nav {
    align-items: stretch;
    flex-direction: column;
    padding: 12px 0;
  }

  .nav-links,
  .nav-actions {
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .dropdown-menu {
    left: 0;
  }

  .page-hero .section-inner,
  .form-layout {
    grid-template-columns: 1fr;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .grid-4,
  .grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 42px 34px;
  }

  .footer-actions {
    margin-top: 58px;
  }

  .hero-proof {
    grid-template-columns: 1fr;
  }

  .hero-tail {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 680px) {
  .brand-sub,
  .nav-actions {
    display: none;
  }

  .home-page .nav-actions {
    display: flex;
  }

  .home-page .nav-lang,
  .home-page .nav-utility-link {
    display: none;
  }

  .nav-links {
    gap: 4px;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    padding: 54px 0 62px;
  }

  .home-page .hero {
    padding-top: 128px;
  }

  .home-page .hero-inner {
    padding-top: 96px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 38px;
  }

  .home-page .hero h1 {
    font-size: 42px;
  }

  .section-head h2 {
    font-size: 30px;
  }

  .grid-2,
  .grid-3,
  .grid-4,
  .plans,
  .pay-methods {
    grid-template-columns: 1fr;
  }

  .section-head,
  .download-card,
  .footer .section-inner {
    align-items: stretch;
    flex-direction: column;
  }

  .footer-hub.section-inner {
    padding: 48px 0 28px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px 28px;
  }

  .footer-column-title {
    margin-bottom: 20px;
    font-size: 18px;
  }

  .footer-links {
    gap: 15px;
  }

  .footer-link {
    font-size: 14px;
  }

  .footer-actions {
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 42px;
  }

  .footer-tab {
    font-size: 16px;
  }

  .footer-legal {
    font-size: 13px;
  }

  .download-card .btn {
    width: 100%;
    flex-basis: auto;
  }

  .loader-panel {
    padding: 28px 22px;
  }

  .beam {
    display: none;
  }
}

@keyframes loader-sweep {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(100%);
  }
}

@keyframes loader-bar {
  0%,
  100% {
    transform: translateX(-120%);
  }
  50% {
    transform: translateX(260%);
  }
}

@keyframes beam-shift {
  0%,
  100% {
    transform: skewX(-18deg) translateX(0);
    opacity: 0.32;
  }
  50% {
    transform: skewX(-18deg) translateX(28px);
    opacity: 0.56;
  }
}
