: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;
}

/* EHAI master brand: transparent artwork inherits every navigation background. */
.brand.brand-logo {
  width: 152px;
  min-width: 152px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  overflow: visible;
  background: transparent;
  box-shadow: none;
}

.brand-logo-image {
  width: 148px;
  height: auto;
  display: block;
  flex: 0 0 auto;
}

@media (max-width: 1180px) {
  .brand.brand-logo {
    width: 132px;
    min-width: 132px;
  }

  .brand-logo-image {
    width: 128px;
  }
}

@media (max-width: 680px) {
  .brand.brand-logo {
    width: 116px;
    min-width: 116px;
    min-height: 40px;
  }

  .brand-logo-image {
    width: 112px;
  }
}

* {
  box-sizing: border-box;
}

html {
  overflow-y: scroll;
  scrollbar-gutter: stable;
  scrollbar-color: rgba(34, 112, 84, 0.52) transparent;
  scrollbar-width: thin;
  scroll-behavior: auto;
}

html::-webkit-scrollbar {
  width: 10px;
}

html::-webkit-scrollbar-track {
  background: transparent;
}

html::-webkit-scrollbar-thumb {
  min-height: 48px;
  border: 2px solid transparent;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(15, 118, 110, 0.72), rgba(52, 185, 138, 0.48));
  background-clip: padding-box;
}

html::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, rgba(15, 118, 110, 0.9), rgba(52, 185, 138, 0.68));
  background-clip: padding-box;
}

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-x: clip;
}

.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;
}

.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;
}

.nav-trial {
  border-color: rgba(94, 234, 212, 0.38);
  color: #d9fffa;
}

.match-section {
  background:
    linear-gradient(180deg, rgba(7, 17, 29, 0.98), rgba(8, 28, 58, 0.96));
}

.match-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
  gap: 24px;
  align-items: stretch;
}

.match-copy,
.match-panel,
.recommendation-result,
.trial-demo,
.trial-panel {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  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);
  backdrop-filter: blur(14px);
}

.match-copy {
  padding: 30px;
}

.match-copy h2 {
  max-width: 780px;
  margin: 0 0 14px;
  color: #f8fbff;
  font-size: 42px;
  line-height: 1.12;
}

.match-copy p {
  max-width: 720px;
  margin: 0;
  color: rgba(226, 232, 240, 0.76);
  line-height: 1.8;
}

.match-panel {
  padding: 24px;
}

.field-label {
  color: rgba(226, 232, 240, 0.82);
  font-size: 13px;
  font-weight: 900;
}

.recommendation-result {
  margin-top: 20px;
  padding: 24px;
}

.recommendation-card {
  min-height: 232px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
}

.recommendation-card h3 {
  margin: 12px 0 10px;
  color: #f8fbff;
  font-size: 20px;
}

.recommendation-card p {
  margin: 0;
  color: rgba(226, 232, 240, 0.76);
  font-size: 14px;
  line-height: 1.7;
}

.recommendation-rank,
.demo-badge {
  display: inline-flex;
  width: fit-content;
  min-height: 26px;
  align-items: center;
  padding: 0 10px;
  border-radius: 8px;
  color: #99f6e4;
  background: rgba(20, 184, 166, 0.14);
  font-size: 12px;
  font-weight: 900;
}

.trial-demo {
  padding: 22px;
}

.demo-stage {
  display: grid;
  gap: 14px;
  margin-top: 16px;
}

.demo-screen {
  min-height: 180px;
  padding: 22px;
  border: 1px solid rgba(94, 234, 212, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(20, 184, 166, 0.20), rgba(37, 99, 235, 0.16)),
    rgba(2, 6, 23, 0.52);
}

.demo-screen strong {
  display: block;
  margin: 16px 0 8px;
  color: #ffffff;
  font-size: 26px;
}

.demo-screen p {
  margin: 0;
  color: rgba(226, 232, 240, 0.80);
  line-height: 1.7;
}

.trial-steps {
  display: grid;
  gap: 10px;
}

.trial-steps div {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
}

.trial-steps strong {
  color: #8ff2e6;
}

.trial-steps span {
  color: rgba(226, 232, 240, 0.82);
  font-weight: 800;
}

.recommendation-steps {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 18px;
}

.demo-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(2, 6, 23, 0.72);
  backdrop-filter: blur(16px);
}

.demo-modal.open {
  display: flex;
}

.demo-modal-panel {
  position: relative;
  width: min(960px, 100%);
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: #07111d;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.45);
}

.demo-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
  font-size: 24px;
}

.demo-video-shell {
  min-height: 420px;
  padding: 26px;
  background:
    linear-gradient(135deg, rgba(30, 58, 138, 0.36), rgba(20, 184, 166, 0.18)),
    rgba(2, 6, 23, 0.68);
}

.demo-video-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: rgba(226, 232, 240, 0.74);
  font-weight: 900;
}

.demo-video-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 42px;
}

.demo-step {
  min-height: 118px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  animation: demo-pulse 4.8s ease-in-out infinite;
  animation-delay: calc(var(--step-index) * 0.35s);
}

.demo-step span {
  color: #8ff2e6;
  font-size: 13px;
  font-weight: 900;
}

.demo-step strong {
  display: block;
  margin-top: 12px;
  color: #ffffff;
  font-size: 17px;
}

.demo-progress {
  height: 6px;
  margin-top: 34px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.demo-progress span {
  display: block;
  width: 42%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #14B8A6, #60A5FA);
  animation: demo-progress 5.5s ease-in-out infinite;
}

.demo-modal-copy {
  padding: 52px 28px 28px;
}

.demo-modal-copy h2 {
  margin: 0 0 14px;
  color: #ffffff;
  font-size: 28px;
}

.demo-modal-copy p {
  margin: 0;
  color: rgba(226, 232, 240, 0.78);
  line-height: 1.8;
}

.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);
  color-scheme: dark;
}

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

.landing-page select.field {
  color: #f8fbff;
  background:
    linear-gradient(180deg, rgba(20, 184, 166, 0.08), rgba(37, 99, 235, 0.05)),
    #101a2a;
  font-weight: 800;
}

.landing-page select.field option {
  color: #f8fbff;
  background: #101a2a;
}

.landing-page select.field option:checked,
.landing-page select.field option:hover {
  color: #ffffff;
  background: #155e75;
}

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;
}

.landing-page .form-panel h2 {
  color: #ffffff;
}

.landing-page .form-panel .copy {
  color: rgba(226, 232, 240, 0.84);
}

.landing-page .choice strong {
  color: #ffffff;
  font-size: 15px;
  font-weight: 900;
}

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

.landing-page .choice span {
  color: rgba(226, 232, 240, 0.82);
  font-weight: 750;
}

.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;
}

.lead-demo-hero .section-inner {
  grid-template-columns: minmax(0, 1fr) 390px;
}

.lead-demo-snapshot {
  display: grid;
  gap: 16px;
}

.lead-demo-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.lead-demo-metrics span {
  min-height: 74px;
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(226, 232, 240, 0.82);
  font-size: 12px;
  font-weight: 800;
}

.lead-demo-metrics b {
  color: #8ff2e6;
  font-size: 26px;
  line-height: 1;
}

.lead-demo-workbench {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
}

.lead-demo-sidebar,
.lead-demo-screen,
.lead-demo-panel,
.lead-value-table {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  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);
}

.lead-demo-sidebar {
  display: grid;
  gap: 10px;
  padding: 14px;
}

.lead-demo-step {
  width: 100%;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 8px;
  color: #f8fbff;
  text-align: left;
  background: rgba(255, 255, 255, 0.05);
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.lead-demo-step:hover,
.lead-demo-step.active {
  border-color: rgba(94, 234, 212, 0.42);
  background: rgba(20, 184, 166, 0.14);
  transform: translateY(-1px);
}

.lead-demo-step span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #07111d;
  background: #8ff2e6;
  font-weight: 900;
}

.lead-demo-step strong,
.lead-demo-step small {
  display: block;
}

.lead-demo-step strong {
  font-size: 15px;
}

.lead-demo-step small {
  margin-top: 4px;
  color: rgba(226, 232, 240, 0.70);
  font-size: 12px;
  line-height: 1.5;
}

.lead-demo-screen {
  min-height: 560px;
  padding: 18px;
}

.lead-demo-panel {
  min-height: 100%;
  display: none;
  padding: 24px;
}

.lead-demo-panel.active {
  display: block;
}

.lead-panel-head span {
  display: inline-flex;
  min-height: 26px;
  align-items: center;
  padding: 0 10px;
  border-radius: 8px;
  color: #99f6e4;
  background: rgba(20, 184, 166, 0.14);
  font-size: 12px;
  font-weight: 900;
}

.lead-panel-head h3 {
  margin: 14px 0 18px;
  color: #f8fbff;
  font-size: 28px;
}

.lead-prompt-box,
.lead-note,
.lead-field-grid span,
.keyword-cloud span,
.lead-contact-grid div,
.lead-score-card,
.lead-export-list span {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.lead-prompt-box {
  padding: 20px;
}

.lead-prompt-box strong {
  display: block;
  margin-bottom: 10px;
  color: #8ff2e6;
}

.lead-prompt-box p,
.lead-note,
.lead-export-list span {
  color: rgba(226, 232, 240, 0.80);
  line-height: 1.75;
}

.lead-field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.lead-field-grid span,
.lead-export-list span {
  padding: 13px 14px;
  font-weight: 800;
}

.keyword-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.keyword-cloud span {
  padding: 12px 14px;
  color: #f8fbff;
  font-weight: 800;
}

.lead-note {
  margin-top: 18px;
  padding: 16px;
}

.lead-result-table,
.lead-value-table {
  overflow: hidden;
}

.lead-row,
.lead-value-row {
  display: grid;
  gap: 12px;
  align-items: center;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
  color: rgba(226, 232, 240, 0.82);
}

.lead-row {
  grid-template-columns: 1.4fr 0.7fr 0.8fr 1.4fr;
}

.lead-value-row {
  grid-template-columns: 0.85fr 1.2fr 1.3fr;
}

.lead-row:last-child,
.lead-value-row:last-child {
  border-bottom: 0;
}

.lead-row-head,
.lead-value-head {
  color: #8ff2e6;
  background: rgba(20, 184, 166, 0.12);
  font-weight: 900;
}

.lead-contact-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.lead-contact-grid div {
  min-height: 172px;
  padding: 16px;
}

.lead-contact-grid strong,
.lead-contact-grid span {
  display: block;
}

.lead-contact-grid strong {
  margin-bottom: 16px;
  color: #8ff2e6;
  font-size: 18px;
}

.lead-contact-grid span {
  margin-top: 10px;
  color: rgba(226, 232, 240, 0.82);
  line-height: 1.55;
}

.lead-export-layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 16px;
}

.lead-score-card {
  min-height: 230px;
  display: grid;
  align-content: center;
  padding: 22px;
  text-align: center;
}

.lead-score-card b {
  color: #8ff2e6;
  font-size: 64px;
  line-height: 1;
}

.lead-score-card span {
  color: #f8fbff;
  font-weight: 900;
}

.lead-score-card p {
  margin: 14px 0 0;
  color: rgba(226, 232, 240, 0.74);
  line-height: 1.65;
}

.lead-export-list {
  display: grid;
  gap: 12px;
}

.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,
  .match-layout,
  .demo-modal-panel,
  .lead-demo-hero .section-inner,
  .lead-demo-workbench,
  .lead-export-layout {
    grid-template-columns: 1fr;
  }

  .lead-demo-sidebar,
  .lead-contact-grid {
    grid-template-columns: repeat(2, minmax(0, 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;
  }

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

  .demo-video-shell {
    min-height: 340px;
  }

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

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

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

/* 2026-07 reference-inspired wordmark and hero composition */
.nav {
  width: min(1420px, calc(100% - 64px));
}

.wordmark-brand {
  min-width: 238px;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 1px;
  color: #17332a;
}

.brand-wordmark {
  display: block;
  font-family: "Helvetica Neue", "Avenir Next", Arial, sans-serif;
  font-size: 26px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.035em;
  white-space: nowrap;
}

.brand-signature {
  display: block;
  padding-left: 2px;
  color: #6d7f77;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 7px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.18em;
  white-space: nowrap;
}

.home-page .hero {
  min-height: max(100svh, 760px);
}

.home-page .hero-inner {
  width: min(1360px, calc(100% - 64px));
  padding: 116px 0 104px;
}

.home-page .hero-layout {
  grid-template-columns: minmax(460px, 0.88fr) minmax(560px, 1.12fr);
  gap: clamp(46px, 6vw, 94px);
  align-items: center;
}

.home-page .hero-copy {
  max-width: 650px;
}

.home-page .hero-copy .eyebrow {
  letter-spacing: 0.05em;
}

.home-page .hero h1 {
  margin: 20px 0 24px;
  max-width: 700px;
}

.home-page .hero-main-title {
  max-width: 700px;
  margin-top: 0;
  font-size: clamp(48px, 4.45vw, 70px);
  line-height: 1.12;
  letter-spacing: -0.045em;
}

.home-page .hero-copy > p {
  max-width: 620px;
  font-size: 17px;
  line-height: 1.9;
}

.hero-inline-link {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-top: 28px;
  color: #34574a;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
  opacity: 0;
  transform: translateY(18px);
  transition: color 200ms ease, gap 200ms ease, opacity 720ms ease 340ms, transform 900ms cubic-bezier(0.22, 1, 0.36, 1) 340ms;
}

.home-page.intro-home .hero-inline-link,
.home-page.is-ready .hero-inline-link {
  opacity: 1;
  transform: translateY(0);
}

.hero-inline-link span {
  color: #b17a2d;
  font-size: 18px;
}

.hero-inline-link:hover,
.hero-inline-link:focus-visible {
  gap: 22px;
  color: #0f766e;
}

.hero-visual {
  --parallax-y: 0px;
  position: relative;
  min-width: 0;
  opacity: 0;
  transform: translate3d(0, calc(var(--parallax-y) + 34px), 0) scale(0.97);
  transition: opacity 900ms ease, transform 1200ms cubic-bezier(0.22, 1, 0.36, 1);
}

.home-page.intro-home .hero-visual,
.home-page.is-ready .hero-visual {
  opacity: 1;
  transform: translate3d(0, var(--parallax-y), 0) scale(1);
}

.product-stage {
  position: relative;
  width: 100%;
  min-height: 520px;
  display: grid;
  place-items: center;
  perspective: 1200px;
}

.product-stage::before {
  position: absolute;
  width: 84%;
  height: 62%;
  border: 1px solid rgba(20, 126, 91, 0.08);
  border-radius: 50%;
  content: "";
  background: radial-gradient(circle, rgba(42, 176, 127, 0.08), transparent 66%);
  transform: rotate(-7deg);
}

.product-screen {
  position: relative;
  z-index: 2;
  width: min(650px, 92%);
  aspect-ratio: 1.48;
  overflow: hidden;
  border: 1px solid rgba(30, 91, 68, 0.17);
  border-radius: 19px 19px 11px 11px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 38px 90px rgba(43, 85, 68, 0.16), 0 8px 24px rgba(43, 85, 68, 0.08), inset 0 1px #fff;
  transform: rotateY(-2deg) rotateX(1deg);
}

.product-screen::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.26), transparent 38%, rgba(38, 165, 119, 0.025));
}

.product-screen-top {
  height: 52px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 18px;
  border-bottom: 1px solid rgba(34, 95, 72, 0.1);
  background: rgba(251, 253, 249, 0.96);
}

.screen-brand {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(145deg, #0f766e, #3db488);
  font-size: 10px;
  font-weight: 900;
}

.screen-search {
  width: 36%;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(33, 101, 76, 0.08), rgba(33, 101, 76, 0.03));
}

.screen-status {
  min-height: 23px;
  display: inline-flex;
  align-items: center;
  margin-left: auto;
  padding: 0 9px;
  border: 1px solid rgba(15, 118, 110, 0.14);
  border-radius: 999px;
  color: #0f766e;
  background: #ecfdf5;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.product-screen-body {
  height: calc(100% - 52px);
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
}

.screen-sidebar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  padding-top: 22px;
  border-right: 1px solid rgba(34, 95, 72, 0.08);
  background: #f8fbf7;
}

.screen-sidebar span {
  width: 22px;
  height: 6px;
  border-radius: 999px;
  background: rgba(48, 91, 73, 0.13);
}

.screen-sidebar span.active {
  height: 22px;
  border-radius: 7px;
  background: linear-gradient(145deg, rgba(15, 118, 110, 0.9), rgba(58, 178, 132, 0.84));
  box-shadow: 0 8px 18px rgba(15, 118, 110, 0.16);
}

.screen-workspace {
  padding: 24px;
}

.workspace-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.workspace-head span:first-child {
  width: 38%;
  height: 14px;
  border-radius: 4px;
  background: #244b3e;
}

.workspace-head span:last-child {
  width: 76px;
  height: 26px;
  border-radius: 999px;
  background: linear-gradient(135deg, #0f766e, #42b98c);
}

.workspace-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(120px, 0.45fr);
  gap: 14px;
  margin-top: 22px;
}

.workspace-map {
  position: relative;
  min-height: 190px;
  overflow: hidden;
  border: 1px solid rgba(31, 103, 76, 0.1);
  border-radius: 13px;
  background:
    linear-gradient(rgba(35, 110, 82, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(35, 110, 82, 0.04) 1px, transparent 1px),
    radial-gradient(circle at 64% 48%, rgba(52, 181, 133, 0.14), transparent 34%),
    #fbfdf9;
  background-size: 28px 28px, 28px 28px, auto, auto;
}

.map-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 78%;
  height: 44%;
  border: 1px solid rgba(25, 135, 96, 0.18);
  border-radius: 50%;
  transform: translate(-50%, -50%) rotate(8deg);
}

.map-orbit.orbit-b {
  width: 52%;
  height: 76%;
  border-color: rgba(185, 126, 39, 0.15);
  transform: translate(-50%, -50%) rotate(-13deg);
}

.map-dot {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #1c9c70;
  box-shadow: 0 0 12px rgba(28, 156, 112, 0.4);
  animation: screen-node-pulse 2.8s ease-in-out infinite;
}

.dot-a { top: 31%; left: 26%; }
.dot-b { top: 53%; left: 62%; animation-delay: -0.7s; }
.dot-c { top: 68%; left: 42%; animation-delay: -1.4s; }
.dot-d { top: 28%; left: 76%; background: #bb8432; animation-delay: -2s; }

.workspace-stats {
  display: grid;
  gap: 10px;
}

.workspace-stats span {
  border: 1px solid rgba(33, 101, 76, 0.09);
  border-radius: 11px;
  background: linear-gradient(145deg, #fff, #f3faf5);
  box-shadow: 0 8px 20px rgba(44, 84, 67, 0.05);
}

.workspace-stats span::before {
  width: 42%;
  height: 7px;
  display: block;
  margin: 14px;
  border-radius: 999px;
  content: "";
  background: rgba(15, 118, 110, 0.24);
}

.workspace-pipeline {
  display: grid;
  grid-template-columns: 1.1fr 0.86fr 1.3fr 0.7fr;
  gap: 9px;
  margin-top: 16px;
}

.workspace-pipeline span {
  height: 10px;
  border-radius: 999px;
  background: rgba(42, 104, 80, 0.09);
}

.workspace-pipeline span:nth-child(2),
.workspace-pipeline span:nth-child(4) {
  background: rgba(188, 132, 47, 0.14);
}

.product-base {
  position: absolute;
  z-index: 1;
  left: 50%;
  bottom: 51px;
  width: 88%;
  height: 16px;
  border-radius: 2px 2px 24px 24px;
  background: linear-gradient(180deg, #e5ebe6, #b8c5bd);
  box-shadow: 0 18px 30px rgba(44, 77, 64, 0.16);
  transform: translateX(-50%);
}

.visual-badge {
  position: absolute;
  z-index: 4;
  min-width: 128px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 11px 13px;
  border: 1px solid rgba(27, 105, 76, 0.12);
  border-radius: 14px;
  color: #31564a;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 44px rgba(44, 85, 67, 0.11);
  backdrop-filter: blur(14px);
  animation: visual-float 5.2s ease-in-out infinite;
}

.visual-badge span {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(145deg, #0f766e, #3ab287);
  font-size: 9px;
  font-weight: 900;
}

.visual-badge strong {
  font-size: 12px;
}

.badge-leads { top: 52px; left: -6px; }
.badge-content { right: -10px; bottom: 88px; animation-delay: -1.8s; }
.badge-delivery { left: 32px; bottom: 38px; animation-delay: -3.4s; }

.visual-orb {
  position: absolute;
  z-index: 5;
  width: 94px;
  height: 94px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(188, 132, 47, 0.16);
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(145deg, rgba(26, 145, 105, 0.94), rgba(181, 123, 38, 0.88));
  box-shadow: 0 22px 50px rgba(45, 90, 71, 0.18), inset 0 1px rgba(255, 255, 255, 0.42);
  animation: visual-float 4.6s ease-in-out infinite -1.1s;
}

.visual-orb span {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 25px;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.orb-main { top: 8px; right: 16px; }

.visual-caption {
  position: absolute;
  right: 68px;
  bottom: 13px;
  color: #76877f;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

@media (max-width: 1180px) {
  .nav {
    width: min(1120px, calc(100% - 40px));
  }

  .wordmark-brand {
    min-width: 200px;
  }

  .brand-wordmark {
    font-size: 23px;
  }

  .home-page .hero-layout {
    grid-template-columns: minmax(400px, 0.86fr) minmax(480px, 1.14fr);
    gap: 34px;
  }

  .visual-badge {
    min-width: 114px;
  }
}

@media (max-width: 980px) {
  .nav {
    width: min(100% - 32px, 900px);
  }

  .wordmark-brand {
    min-width: 0;
  }

  .home-page .hero-inner {
    width: min(100% - 36px, 760px);
  }

  .home-page .hero-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .home-page .hero-copy {
    max-width: 680px;
  }

  .hero-visual {
    width: min(700px, 100%);
    margin: 0 auto;
  }
}

@media (max-width: 680px) {
  .brand-wordmark {
    font-size: 20px;
  }

  .brand-signature {
    font-size: 6px;
    letter-spacing: 0.13em;
  }

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

  .home-page .hero-main-title {
    font-size: 40px;
    line-height: 1.13;
  }

  .home-page .hero-copy > p {
    font-size: 16px;
  }

  .product-stage {
    min-height: 390px;
  }

  .product-screen {
    width: 100%;
  }

  .product-screen-body {
    grid-template-columns: 46px minmax(0, 1fr);
  }

  .screen-workspace {
    padding: 15px;
  }

  .workspace-grid {
    grid-template-columns: 1fr;
  }

  .workspace-map {
    min-height: 145px;
  }

  .workspace-stats {
    display: none;
  }

  .visual-badge {
    min-width: auto;
    padding: 8px 10px;
  }

  .visual-badge span {
    width: 23px;
    height: 23px;
  }

  .badge-leads { top: 30px; left: -4px; }
  .badge-content { right: -3px; bottom: 54px; }
  .badge-delivery { display: none; }

  .visual-orb {
    width: 68px;
    height: 68px;
  }

  .visual-orb span {
    font-size: 19px;
  }

  .orb-main { top: -2px; right: 6px; }

  .product-base {
    bottom: 32px;
  }

  .visual-caption {
    right: 12px;
    bottom: 2px;
    font-size: 7px;
  }
}

/* Hero global signal placement */
.hero-signal-map {
  width: 100%;
  min-height: 520px;
  border-radius: 28px;
  background:
    radial-gradient(ellipse at 68% 42%, rgba(46, 173, 127, 0.15), transparent 25%),
    radial-gradient(ellipse at 28% 66%, rgba(201, 147, 60, 0.09), transparent 24%),
    linear-gradient(rgba(42, 110, 83, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(42, 110, 83, 0.045) 1px, transparent 1px),
    rgba(255, 255, 255, 0.74);
  background-size: auto, auto, 40px 40px, 40px 40px, auto;
  box-shadow: 0 34px 96px rgba(44, 88, 69, 0.13), inset 0 1px rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
}

.hero-signal-map::before {
  width: 84%;
  height: 68%;
  top: 16%;
  left: 8%;
}

.hero-signal-map::after {
  width: 58%;
  height: 86%;
  top: 7%;
  left: 21%;
}

.growth-metric-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.growth-metric-grid .metric-card {
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (max-width: 980px) {
  .hero-signal-map {
    min-height: 500px;
  }
}

@media (max-width: 680px) {
  .hero-signal-map {
    min-height: 430px;
    border-radius: 22px;
  }

  .growth-metric-grid {
    grid-template-columns: 1fr;
  }

  .growth-metric-grid .metric-card {
    min-height: 190px;
  }

  .product-security-banner > a,
  .download-security-panel > a,
  .assessment-account-chip button,
  .member-text-button {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }

  .assessment-account-chip button {
    min-width: 44px;
    justify-content: center;
    margin-top: 2px;
  }

  .member-password-field button {
    min-width: 44px;
    min-height: 40px;
  }

  .member-text-button {
    justify-content: center;
  }
}

/* Audit pass: consistent conversion cards and comfortable mobile touch targets. */
.catalog-product-grid {
  align-items: stretch;
}

.catalog-product-card {
  min-height: 520px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  border-radius: 24px;
}

.catalog-product-card .product-commerce-main {
  flex: 1;
}

.catalog-product-card h3 {
  margin-top: 22px;
  font-size: clamp(24px, 2.7vw, 32px);
}

.catalog-product-card .product-security-intro {
  margin-top: 22px;
}

.catalog-product-card .product-purchase-row {
  margin-top: 22px;
}

.catalog-product-card .product-links,
.catalog-product-card:hover .product-links,
.catalog-product-card:focus-within .product-links {
  position: relative;
  z-index: 1;
  opacity: 1;
  transform: none;
}

@media (max-width: 820px) {
  .wordmark-brand,
  .brand.wordmark-brand {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }

  .footer-link,
  .footer-tab,
  .download-card-actions > a,
  .product-secondary-links a,
  .product-secondary-links button,
  .home-page .hero-inline-link {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
  }

  .member-password-field button {
    min-width: 44px;
    min-height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .home-page .hero-network-embedded .network-signal-map .region-node {
    min-height: 34px;
    padding-top: 7px;
    padding-bottom: 7px;
  }

  .catalog-product-card {
    min-height: 0;
  }

  .catalog-product-card .product-purchase-row {
    align-items: stretch;
    flex-direction: column;
  }

  .catalog-product-card .product-purchase-row .btn {
    width: 100%;
  }
}

/* Download center — light, readable product library. */
.download-center-page {
  background: #fffefa;
}

.download-center-page .page-hero {
  padding: 112px 0 72px;
}

.download-center-page .page-hero .section-inner {
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  gap: 64px;
}

.download-center-page .page-hero h1 {
  max-width: 760px;
  margin-top: 16px;
  color: #17332a;
  font-size: clamp(44px, 5.5vw, 76px);
  letter-spacing: -0.055em;
}

.download-center-page .page-hero p {
  max-width: 690px;
  color: #60736b;
  font-size: 17px;
}

.download-hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.download-hero-points span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  padding: 0 14px;
  color: #2d5849;
  border: 1px solid rgba(25, 112, 79, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 8px 24px rgba(42, 86, 67, 0.06);
  font-size: 13px;
  font-weight: 800;
}

.download-hero-points span::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  content: "";
  background: #2eae7f;
  box-shadow: 0 0 0 5px rgba(46, 174, 127, 0.1);
}

.download-center-page .download-security-panel {
  padding: 30px;
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(237, 249, 241, 0.82));
  box-shadow: 0 28px 72px rgba(40, 89, 69, 0.12), inset 0 1px rgba(255, 255, 255, 0.96);
}

.download-panel-index {
  display: block;
  margin-bottom: 26px;
  color: #b07a30;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.download-center-page .download-security-panel strong {
  color: #17332a;
  font-size: 24px;
  line-height: 1.35;
}

.download-center-page .download-security-panel p {
  margin-top: 14px;
  color: #64766f;
}

.download-security-panel a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  color: #0f766e;
  font-weight: 900;
}

.download-library {
  padding: 90px 0 104px !important;
}

.download-section-head {
  margin-bottom: 36px;
}

.download-center-page .download-section-head h2 {
  margin-top: 12px;
  font-size: clamp(34px, 4vw, 52px);
  letter-spacing: -0.035em;
}

.landing-page.download-center-page .download-card {
  position: relative;
  min-height: 260px;
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  grid-template-rows: 1fr auto;
  gap: 12px 18px;
  align-items: start;
  padding: 28px;
  overflow: hidden;
  color: #17332a;
  border: 1px solid rgba(33, 102, 76, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 20px 52px rgba(45, 90, 71, 0.08), inset 0 1px rgba(255, 255, 255, 0.94);
}

.landing-page.download-center-page .download-card:hover,
.landing-page.download-center-page .download-card:focus-within {
  transform: translateY(-6px);
  border-color: rgba(15, 139, 105, 0.28);
  background: #fff;
  box-shadow: 0 30px 76px rgba(45, 90, 71, 0.14);
}

.download-center-page .download-card::after {
  position: absolute;
  top: -80px;
  right: -70px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  content: "";
  pointer-events: none;
  background: radial-gradient(circle, rgba(46, 174, 127, 0.1), transparent 70%);
}

.download-center-page .download-card .icon-box {
  grid-row: 1 / 3;
  width: 52px;
  height: 52px;
  margin: 0;
  border-radius: 15px;
}

.download-card-copy {
  min-width: 0;
}

.download-badge {
  display: inline-block;
  margin-bottom: 12px;
  color: #0f766e;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.landing-page.download-center-page .download-card h3 {
  margin-bottom: 10px;
  color: #17332a;
  font-size: 24px;
}

.landing-page.download-center-page .download-card p {
  color: #64766f;
  font-size: 14px;
}

.download-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 18px;
}

.download-meta span {
  padding: 5px 9px;
  color: #587067;
  border-radius: 7px;
  background: #f1f8f3;
  font-size: 11px;
  font-weight: 700;
}

.download-card-actions {
  grid-column: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-top: 16px;
  border-top: 1px solid rgba(33, 102, 76, 0.09);
}

.download-card-actions > a {
  color: #557068;
  font-size: 13px;
  font-weight: 800;
}

.download-card-actions > a:hover,
.download-card-actions > a:focus-visible {
  color: #0f766e;
}

.download-center-page .download-card-actions .btn {
  width: auto;
  min-width: 122px;
  flex: 0 0 auto;
}

.download-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 34px;
  overflow: hidden;
  border: 1px solid rgba(33, 102, 76, 0.1);
  border-radius: 22px;
  background: rgba(33, 102, 76, 0.1);
  box-shadow: 0 20px 54px rgba(45, 90, 71, 0.07);
}

.download-flow > div {
  position: relative;
  min-height: 158px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.9);
}

.download-flow span {
  display: block;
  margin-bottom: 14px;
  color: #b07a30;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.download-flow strong {
  display: block;
  color: #17332a;
  font-size: 18px;
}

.download-flow p {
  margin: 8px 0 0;
  color: #687a73;
  font-size: 13px;
  line-height: 1.7;
}

@media (max-width: 820px) {
  .download-center-page .page-hero {
    padding: 86px 0 52px;
  }

  .download-center-page .page-hero .section-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .download-center-page .grid-2,
  .download-flow {
    grid-template-columns: 1fr;
  }

  .download-section-head {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .download-center-page .page-hero h1 {
    font-size: 42px;
  }

  .landing-page.download-center-page .download-card {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .download-center-page .download-card .icon-box,
  .download-card-actions {
    grid-column: 1;
    grid-row: auto;
  }

  .download-card-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .download-center-page .download-card-actions .btn {
    width: 100%;
  }
}

/* Light footer interaction: keep labels readable on hover. */
.footer .footer-link:hover,
.footer .footer-link:focus-visible {
  color: #0f6f52 !important;
  text-decoration: none !important;
  transform: translateX(3px);
}

.footer .footer-tab:hover,
.footer .footer-tab:focus-visible,
.footer .footer-legal a:hover,
.footer .footer-legal a:focus-visible {
  color: #0f6f52 !important;
}

/* Intelligent product assessment entry */
.match-entry-section {
  position: relative;
  overflow: hidden;
  padding: 112px 0;
}

.match-entry-section::before {
  position: absolute;
  width: 520px;
  height: 520px;
  right: -180px;
  top: -230px;
  content: "";
  border-radius: 50%;
  background: radial-gradient(circle, rgba(45, 173, 126, 0.13), transparent 68%);
  pointer-events: none;
}

.match-entry-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(420px, 0.96fr);
  gap: 34px;
  align-items: stretch;
}

.match-entry-section .match-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 520px;
  padding: 62px;
  border-radius: 30px;
  border: 1px solid rgba(33, 102, 76, 0.11);
  background:
    radial-gradient(circle at 88% 12%, rgba(48, 177, 129, 0.1), transparent 30%),
    rgba(255, 255, 255, 0.84);
  box-shadow: 0 28px 76px rgba(45, 90, 71, 0.09), inset 0 1px rgba(255, 255, 255, 0.94);
}

.match-entry-section .match-copy h2 {
  max-width: 720px;
  margin: 18px 0 20px;
  color: #17332a;
  font-family: var(--font-display);
  font-size: clamp(40px, 4.2vw, 62px);
  line-height: 1.12;
  letter-spacing: -0.045em;
}

.match-entry-section .match-copy p {
  max-width: 660px;
  color: #63756e;
  font-size: 16px;
  line-height: 1.9;
}

.match-entry-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 34px;
}

.match-entry-actions > span {
  color: #7b8c85;
  font-size: 12px;
}

.match-preview {
  position: relative;
  min-height: 520px;
  padding: 34px;
  overflow: hidden;
  border: 1px solid rgba(33, 102, 76, 0.12);
  border-radius: 30px;
  color: #17332a;
  background:
    linear-gradient(rgba(35, 106, 78, 0.042) 1px, transparent 1px),
    linear-gradient(90deg, rgba(35, 106, 78, 0.038) 1px, transparent 1px),
    linear-gradient(150deg, rgba(244, 251, 246, 0.96), rgba(255, 250, 240, 0.92));
  background-size: 36px 36px, 36px 36px, auto;
  box-shadow: 0 28px 76px rgba(45, 90, 71, 0.11);
}

.match-preview::after {
  position: absolute;
  inset: auto -80px -100px auto;
  width: 300px;
  height: 300px;
  content: "";
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196, 143, 53, 0.13), transparent 68%);
}

.match-preview-top,
.match-preview-foot {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #6f827a;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.match-preview-top strong {
  color: #1f6f53;
  font-size: 13px;
}

.match-preview-orbit {
  position: absolute;
  z-index: 1;
  width: 190px;
  height: 190px;
  top: 80px;
  right: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(31, 111, 83, 0.12);
  border-radius: 50%;
}

.match-preview-orbit::before,
.match-preview-orbit::after,
.match-preview-orbit i {
  position: absolute;
  content: "";
  border: 1px solid rgba(31, 111, 83, 0.1);
  border-radius: 50%;
}

.match-preview-orbit::before { inset: 22px; }
.match-preview-orbit::after { inset: 46px; }
.match-preview-orbit i { width: 9px; height: 9px; border: 0; background: #36ad7f; box-shadow: 0 0 0 7px rgba(54, 173, 127, 0.09); animation: match-orbit 7s linear infinite; transform-origin: -58px center; }
.match-preview-orbit i:nth-child(2) { background: #c28a36; animation-duration: 9s; transform-origin: 47px center; }
.match-preview-orbit i:nth-child(3) { animation-duration: 11s; animation-direction: reverse; transform-origin: center 73px; }
.match-preview-orbit b { display: grid; width: 58px; height: 58px; place-items: center; border-radius: 50%; color: #fff; background: linear-gradient(145deg, #187357, #43b888); box-shadow: 0 18px 38px rgba(35, 125, 91, 0.22); letter-spacing: 0.08em; }

@keyframes match-orbit { to { rotate: 360deg; } }

.match-preview-steps {
  position: relative;
  z-index: 2;
  display: grid;
  width: min(100%, 350px);
  gap: 12px;
  margin: 136px 0 34px;
  padding: 0;
  list-style: none;
}

.match-preview-steps li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 13px;
  align-items: center;
  padding: 13px 16px;
  border: 1px solid rgba(31, 111, 83, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 10px 28px rgba(45, 90, 71, 0.06);
}

.match-preview-steps li > span {
  color: #16815f;
  font-size: 12px;
  font-weight: 900;
}

.match-preview-steps strong,
.match-preview-steps small { display: block; }
.match-preview-steps strong { color: #17332a; font-size: 14px; }
.match-preview-steps small { margin-top: 3px; color: #7a8a84; font-size: 11px; }
.match-preview-foot { justify-content: flex-start; gap: 8px; letter-spacing: 0.04em; text-transform: none; }
.match-preview-foot span { width: 7px; height: 7px; border-radius: 50%; background: #35ad7f; box-shadow: 0 0 0 5px rgba(53, 173, 127, 0.1); }

/* Assessment landing page */
.assessment-page {
  color: #17332a;
  background: #fbfdf9;
}

.assessment-page [hidden] { display: none !important; }

.assessment-hero {
  padding: 138px 0 92px !important;
  background:
    radial-gradient(circle at 78% 26%, rgba(42, 176, 125, 0.14), transparent 27%),
    radial-gradient(circle at 18% 85%, rgba(198, 145, 57, 0.08), transparent 28%),
    linear-gradient(145deg, #fffefa, #f4fbf6 62%, #fff9ee) !important;
}

.assessment-hero .section-inner {
  grid-template-columns: minmax(0, 1.15fr) minmax(350px, 0.65fr);
  gap: 64px;
}

.assessment-hero-copy h1 {
  max-width: 890px !important;
  margin: 18px 0 24px !important;
  color: #17332a !important;
  font-size: clamp(46px, 5.4vw, 76px) !important;
  line-height: 1.08 !important;
  letter-spacing: -0.055em;
  white-space: nowrap;
}

.assessment-hero-copy > p {
  max-width: 760px;
  color: #61746c !important;
  font-size: 17px;
  line-height: 1.9;
}

.assessment-hero-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.assessment-hero-notes span {
  padding: 9px 13px;
  border: 1px solid rgba(31, 111, 83, 0.11);
  border-radius: 999px;
  color: #43675a;
  background: rgba(255, 255, 255, 0.66);
  font-size: 12px;
  font-weight: 700;
}

.assessment-hero-panel {
  position: relative;
  padding: 34px;
  overflow: hidden;
  border: 1px solid rgba(31, 111, 83, 0.13);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 28px 78px rgba(45, 90, 71, 0.11), inset 0 1px rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
}

.assessment-hero-panel::after {
  position: absolute;
  width: 220px;
  height: 220px;
  right: -90px;
  bottom: -110px;
  content: "";
  border: 1px solid rgba(46, 174, 127, 0.13);
  border-radius: 50%;
  box-shadow: 0 0 0 34px rgba(46, 174, 127, 0.035), 0 0 0 70px rgba(46, 174, 127, 0.025);
}

.assessment-panel-kicker,
.assessment-step-label,
.assessment-result-kicker {
  color: #16815f;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.assessment-hero-panel > strong {
  display: block;
  margin: 18px 0 26px;
  color: #17332a;
  font-family: var(--font-display);
  font-size: 30px;
  line-height: 1.3;
}

.assessment-dimension-list { display: grid; gap: 8px; }
.assessment-dimension-list span { padding: 12px 14px; border-bottom: 1px solid rgba(31, 111, 83, 0.09); color: #60746c; font-size: 13px; }

.assessment-shell-section {
  padding: 90px 0 120px;
  background:
    linear-gradient(rgba(35, 106, 78, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(35, 106, 78, 0.02) 1px, transparent 1px),
    #fbfdf9;
  background-size: 52px 52px, 52px 52px, auto;
}

.assessment-auth-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 470px);
  gap: 64px;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
}

.assessment-auth-copy h2,
.assessment-workspace-head h2,
.assessment-result-head h2 {
  margin: 16px 0 18px;
  color: #17332a;
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 54px);
  line-height: 1.15;
  letter-spacing: -0.035em;
}

.assessment-auth-copy > p { max-width: 650px; margin: 0; color: #687a73; font-size: 16px; line-height: 1.9; }

.assessment-trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 34px;
}

.assessment-trust-grid div { min-height: 130px; padding: 20px; border: 1px solid rgba(31, 111, 83, 0.1); border-radius: 18px; background: rgba(255, 255, 255, 0.72); }
.assessment-trust-grid strong,
.assessment-trust-grid span { display: block; }
.assessment-trust-grid strong { color: #176b51; font-size: 15px; }
.assessment-trust-grid span { margin-top: 10px; color: #71827b; font-size: 12px; line-height: 1.65; }

.assessment-auth-card {
  padding: 30px;
  border: 1px solid rgba(31, 111, 83, 0.12);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 30px 86px rgba(45, 90, 71, 0.13), inset 0 1px rgba(255, 255, 255, 0.96);
}

.assessment-auth-tabs { display: grid; grid-template-columns: 1fr 1fr; gap: 5px; padding: 5px; border-radius: 14px; background: #f0f6f2; }
.assessment-auth-tabs button { min-height: 42px; border: 0; border-radius: 10px; color: #74867f; background: transparent; font-weight: 800; cursor: pointer; transition: 180ms ease; }
.assessment-auth-tabs button.active { color: #165f49; background: #fff; box-shadow: 0 8px 22px rgba(45, 90, 71, 0.08); }
.assessment-auth-heading { margin: 28px 0 22px; }
.assessment-auth-heading > span { color: #9a773c; font-size: 10px; font-weight: 900; letter-spacing: 0.14em; }
.assessment-auth-heading h2 { margin: 7px 0 0; color: #17332a; font-size: 24px; }

.assessment-input-label { display: grid; gap: 8px; margin-top: 16px; }
.assessment-input-label > span,
.assessment-choice-field legend { color: #395b4e; font-size: 13px; font-weight: 800; }
.assessment-input-label small,
.assessment-choice-field legend small { color: #93a099; font-weight: 500; }
.assessment-input { width: 100%; min-height: 52px; padding: 0 16px; border: 1px solid rgba(31, 111, 83, 0.14); border-radius: 13px; outline: 0; color: #17332a; background: #fff; font: inherit; transition: border-color 180ms ease, box-shadow 180ms ease; }
.assessment-input:focus { border-color: rgba(22, 129, 95, 0.55); box-shadow: 0 0 0 4px rgba(46, 174, 127, 0.09); }
.assessment-auth-submit { width: 100%; margin-top: 20px; }
.assessment-auth-legal { margin: 14px 6px 0; color: #8a9993; font-size: 10px; line-height: 1.6; text-align: center; }
.assessment-form-status { min-height: 20px; margin: 14px 0 0; color: #21815f; font-size: 12px; }
.assessment-form-status.warn { color: #b45309; }

.assessment-workspace,
.assessment-result { max-width: 1180px; margin: 0 auto; }
.assessment-workspace-head,
.assessment-result-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 28px; margin-bottom: 30px; }
.assessment-workspace-head h2 { max-width: 820px; margin-bottom: 0; font-size: clamp(34px, 3.8vw, 52px); white-space: nowrap; }
.assessment-account-chip { min-width: 220px; padding: 14px 16px; border: 1px solid rgba(31, 111, 83, 0.11); border-radius: 16px; background: rgba(255,255,255,.8); }
.assessment-account-chip span,
.assessment-account-chip strong { display: block; }
.assessment-account-chip span { color: #8a9993; font-size: 10px; }
.assessment-account-chip strong { margin-top: 3px; overflow: hidden; color: #31584a; font-size: 13px; text-overflow: ellipsis; white-space: nowrap; }
.assessment-account-chip button { margin-top: 8px; padding: 0; border: 0; color: #17805e; background: transparent; font-size: 11px; cursor: pointer; }

.assessment-saved { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 20px; padding: 18px 20px; border: 1px solid rgba(194, 138, 54, 0.16); border-radius: 18px; background: linear-gradient(135deg, #fffdf7, #fff8e9); }
.assessment-saved span,
.assessment-saved strong { display: block; }
.assessment-saved span { color: #9a6e2c; font-size: 11px; font-weight: 900; letter-spacing: 0.08em; }
.assessment-saved strong { margin-top: 5px; color: #5d6258; font-size: 13px; }

.assessment-progress-wrap { padding: 22px 26px; border: 1px solid rgba(31, 111, 83, 0.1); border-radius: 20px 20px 0 0; background: rgba(247, 251, 248, 0.9); }
.assessment-progress-meta { display: flex; justify-content: space-between; color: #497064; font-size: 12px; font-weight: 800; }
.assessment-progress-track { height: 5px; margin: 12px 0 15px; overflow: hidden; border-radius: 99px; background: rgba(31, 111, 83, 0.09); }
.assessment-progress-track span { display: block; width: 25%; height: 100%; border-radius: inherit; background: linear-gradient(90deg, #177457, #48bb8d); box-shadow: 0 0 16px rgba(46, 174, 127, 0.26); transition: width 420ms cubic-bezier(.2,.75,.25,1); }
.assessment-progress-steps { display: grid; grid-template-columns: repeat(4, 1fr); }
.assessment-progress-steps span { position: relative; color: #9aa7a1; font-size: 11px; text-align: center; }
.assessment-progress-steps span.active { color: #176c51; font-weight: 800; }

.assessment-form { min-height: 660px; padding: 42px 48px 28px; border: 1px solid rgba(31, 111, 83, 0.11); border-top: 0; border-radius: 0 0 26px 26px; background: rgba(255, 255, 255, 0.92); box-shadow: 0 32px 86px rgba(45, 90, 71, 0.1); }
.assessment-form-step { animation: assessment-step-in 360ms cubic-bezier(.2,.75,.25,1); }
@keyframes assessment-step-in { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
.assessment-question-head { max-width: 790px; margin-bottom: 32px; }
.assessment-question-head > span { color: #b18239; font-size: 10px; font-weight: 900; letter-spacing: .15em; }
.assessment-question-head h3 { margin: 9px 0 10px; color: #17332a; font-family: var(--font-display); font-size: clamp(30px, 3.2vw, 44px); letter-spacing: -.035em; }
.assessment-question-head p { margin: 0; color: #70827a; font-size: 14px; line-height: 1.75; }
.assessment-field-grid,
.assessment-split-fields { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.assessment-choice-field { min-width: 0; margin: 30px 0 0; padding: 0; border: 0; }
.assessment-choice-field legend { margin-bottom: 13px; }
.assessment-choice-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 11px; }
.assessment-choice-grid-compact { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.assessment-choice-grid-three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.assessment-choice-grid label { position: relative; min-width: 0; cursor: pointer; }
.assessment-choice-grid input { position: absolute; width: 1px; height: 1px; opacity: 0; }
.assessment-choice-grid label > span { display: flex; min-height: 72px; flex-direction: column; justify-content: center; padding: 15px 17px; border: 1px solid rgba(31, 111, 83, 0.12); border-radius: 15px; color: #47695d; background: #fff; box-shadow: 0 8px 24px rgba(45, 90, 71, 0.04); transition: 180ms ease; }
.assessment-choice-grid label:hover > span { transform: translateY(-2px); border-color: rgba(22, 129, 95, 0.3); box-shadow: 0 14px 32px rgba(45, 90, 71, 0.09); }
.assessment-choice-grid input:focus-visible + span { outline: 3px solid rgba(46, 174, 127, 0.18); outline-offset: 2px; }
.assessment-choice-grid input:checked + span { border-color: rgba(22, 129, 95, 0.55); color: #145f48; background: linear-gradient(145deg, #f0faf5, #fffdf8); box-shadow: inset 0 0 0 1px rgba(22, 129, 95, 0.08), 0 12px 28px rgba(45, 90, 71, 0.08); }
.assessment-choice-grid input:checked + span::after { position: absolute; width: 20px; height: 20px; top: 10px; right: 10px; display: grid; place-items: center; content: "✓"; border-radius: 50%; color: #fff; background: #21815f; font-size: 11px; }
.assessment-choice-grid label > span strong,
.assessment-choice-grid label > span small { display: block; }
.assessment-choice-grid label > span strong { color: #274e40; font-size: 14px; }
.assessment-choice-grid label > span small { margin-top: 5px; color: #84938d; font-size: 11px; line-height: 1.5; }
.assessment-choice-grid-compact label > span { min-height: 56px; padding: 12px 14px; align-items: center; text-align: center; }

.assessment-form-actions { display: flex; align-items: center; gap: 14px; margin-top: 38px; padding-top: 24px; border-top: 1px solid rgba(31, 111, 83, 0.08); }
.assessment-form-actions > span { flex: 1; color: #95a19c; font-size: 11px; text-align: center; }

.assessment-analyzing { max-width: 880px; min-height: 470px; margin: 0 auto; display: grid; grid-template-columns: 250px 1fr; gap: 54px; align-items: center; padding: 60px; border: 1px solid rgba(31, 111, 83, 0.12); border-radius: 30px; background: rgba(255,255,255,.9); box-shadow: 0 34px 90px rgba(45,90,71,.12); }
.assessment-analyzing-core { position: relative; width: 210px; height: 210px; display: grid; place-items: center; border-radius: 50%; border: 1px solid rgba(31,111,83,.12); }
.assessment-analyzing-core::before,
.assessment-analyzing-core::after,
.assessment-analyzing-core i { position: absolute; content: ""; border-radius: 50%; border: 1px solid rgba(31,111,83,.11); animation: assessment-pulse 2.1s ease-out infinite; }
.assessment-analyzing-core::before { inset: 24px; animation-delay: .25s; }
.assessment-analyzing-core::after { inset: 49px; animation-delay: .5s; }
.assessment-analyzing-core i { inset: -1px; }
.assessment-analyzing-core i:nth-of-type(2) { inset: 24px; animation-delay: .35s; }
.assessment-analyzing-core i:nth-of-type(3) { inset: 49px; animation-delay: .7s; }
.assessment-analyzing-core > span { position: relative; z-index: 2; display: grid; width: 72px; height: 72px; place-items: center; border-radius: 50%; color: #fff; background: linear-gradient(145deg,#187357,#48b889); box-shadow: 0 18px 42px rgba(35,125,91,.25); font-weight: 900; letter-spacing: .08em; }
@keyframes assessment-pulse { 0% { transform: scale(.84); opacity: .2; } 55% { opacity: .85; } 100% { transform: scale(1.08); opacity: 0; } }
.assessment-analyzing > div:last-child > span { color: #ad7e37; font-size: 10px; font-weight: 900; letter-spacing: .15em; }
.assessment-analyzing h2 { margin: 12px 0; color: #17332a; font-family: var(--font-display); font-size: 38px; line-height: 1.2; }
.assessment-analyzing p { color: #71827b; font-size: 13px; }

.assessment-result-head { align-items: center; }
.assessment-result-head > div:first-child { max-width: 790px; }
.assessment-result-head h2 { margin-bottom: 12px; }
.assessment-result-head p { margin: 0; color: #70827b; line-height: 1.7; }
.assessment-report-meta { padding: 14px 18px; border: 1px solid rgba(31,111,83,.11); border-radius: 16px; background: #fff; text-align: right; }
.assessment-report-meta span,
.assessment-report-meta strong { display: block; }
.assessment-report-meta span { color: #21815f; font-size: 10px; font-weight: 900; }
.assessment-report-meta strong { margin-top: 4px; color: #5f736b; font-size: 12px; }
.assessment-profile-strip { display: grid; grid-template-columns: 1fr 1fr 1.35fr 1.65fr; gap: 1px; overflow: hidden; margin: 28px 0 18px; border: 1px solid rgba(31,111,83,.1); border-radius: 20px; background: rgba(31,111,83,.08); }
.assessment-profile-strip > div { min-width: 0; padding: 18px; background: rgba(255,255,255,.94); }
.assessment-profile-strip small,
.assessment-profile-strip strong { display: block; }
.assessment-profile-strip small { color: #92a098; font-size: 10px; }
.assessment-profile-strip strong { margin-top: 6px; overflow: hidden; color: #31584a; font-size: 13px; text-overflow: ellipsis; white-space: nowrap; }
.assessment-profile-strip p { display: flex; flex-wrap: wrap; gap: 5px; margin: 6px 0 0; }
.assessment-profile-strip p span { padding: 4px 7px; border-radius: 8px; color: #386557; background: #eff7f2; font-size: 10px; }

.assessment-primary-card { display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(290px, .55fr); overflow: hidden; border: 1px solid rgba(31,111,83,.13); border-radius: 28px; background: #fff; box-shadow: 0 32px 88px rgba(45,90,71,.11); }
.assessment-primary-copy { padding: 46px; }
.assessment-primary-kicker { color: #b07d34; font-size: 11px; font-weight: 900; letter-spacing: .12em; }
.assessment-primary-copy > h2 { margin: 12px 0; color: #17332a; font-family: var(--font-display); font-size: clamp(36px,4vw,54px); letter-spacing: -.04em; }
.assessment-diagnosis { max-width: 720px; margin: 0; color: #60746b; font-size: 15px; line-height: 1.85; }
.assessment-primary-copy > h3 { margin: 30px 0 13px; color: #31584a; font-size: 13px; }
.assessment-reason-list { display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; }
.assessment-reason-list li { display: grid; grid-template-columns: 24px 1fr; gap: 10px; align-items: start; }
.assessment-reason-list li > span { display: grid; width: 22px; height: 22px; place-items: center; border-radius: 50%; color: #fff; background: #21815f; font-size: 11px; }
.assessment-reason-list p { margin: 1px 0 0; color: #4f6a60; font-size: 13px; line-height: 1.55; }
.assessment-primary-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.assessment-fit-panel { display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 36px; text-align: center; background: linear-gradient(155deg,#edf8f2,#fff9ec); }
.assessment-fit-ring { --fit: 90; position: relative; width: 210px; height: 210px; display: grid; place-items: center; border-radius: 50%; background: conic-gradient(#22966d calc(var(--fit) * 1%), rgba(31,111,83,.1) 0); box-shadow: 0 24px 56px rgba(45,90,71,.12); }
.assessment-fit-ring::before { position: absolute; content: ""; width: 174px; height: 174px; border-radius: 50%; background: #fffdfa; }
.assessment-fit-ring > div { position: relative; z-index: 1; }
.assessment-fit-ring strong,
.assessment-fit-ring span { display: block; }
.assessment-fit-ring strong { color: #176d51; font-family: var(--font-display); font-size: 54px; line-height: 1; }
.assessment-fit-ring strong small { font-size: 19px; }
.assessment-fit-ring span { margin-top: 7px; color: #7d8e87; font-size: 11px; }
.assessment-fit-panel > p { margin: 24px 0 12px; color: #61766d; font-size: 12px; line-height: 1.7; }
.assessment-fit-panel > span { padding: 7px 11px; border-radius: 999px; color: #a2702c; background: rgba(194,138,54,.1); font-size: 10px; font-weight: 800; }

.assessment-result-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 18px; margin-top: 18px; }
.assessment-route-card,
.assessment-support-wrap { padding: 32px; border: 1px solid rgba(31,111,83,.11); border-radius: 24px; background: rgba(255,255,255,.88); box-shadow: 0 20px 54px rgba(45,90,71,.07); }
.assessment-route-card > h2,
.assessment-support-wrap > h2 { margin: 9px 0 22px; color: #17332a; font-size: 26px; }
.assessment-route-card ol { display: grid; gap: 12px; margin: 0; padding: 0; list-style: none; }
.assessment-route-card li { display: grid; grid-template-columns: 42px 1fr; gap: 12px; align-items: center; padding: 15px; border-radius: 15px; background: #f4f9f6; }
.assessment-route-card li > span { color: #21815f; font-size: 11px; font-weight: 900; }
.assessment-route-card strong,
.assessment-route-card small { display: block; }
.assessment-route-card strong { color: #31584a; font-size: 13px; }
.assessment-route-card small { margin-top: 4px; color: #8a9993; font-size: 10px; }
.assessment-support-wrap > div { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 12px; }
.assessment-support-card { padding: 20px; border: 1px solid rgba(31,111,83,.1); border-radius: 17px; background: #fbfdfb; }
.assessment-support-top { display: flex; justify-content: space-between; gap: 8px; color: #8b9993; font-size: 9px; }
.assessment-support-top strong { color: #21815f; }
.assessment-support-card h3 { margin: 14px 0 8px; color: #244c3e; font-size: 17px; }
.assessment-support-card > p { margin: 0; color: #71827b; font-size: 11px; line-height: 1.65; }
.assessment-support-card ul { min-height: 78px; margin: 15px 0; padding-left: 17px; color: #5b746a; font-size: 10px; line-height: 1.55; }
.assessment-support-card > a { color: #177457; font-size: 11px; font-weight: 800; }
.assessment-report-actions { display: flex; align-items: center; gap: 10px; margin-top: 18px; padding: 22px 24px; border: 1px solid rgba(31,111,83,.1); border-radius: 20px; background: #fff; }
.assessment-report-actions > div { flex: 1; }
.assessment-report-actions strong,
.assessment-report-actions span { display: block; }
.assessment-report-actions strong { color: #31584a; font-size: 13px; }
.assessment-report-actions span { margin-top: 4px; color: #84938d; font-size: 10px; }

@media (max-width: 980px) {
  .match-entry-grid,
  .assessment-hero .section-inner,
  .assessment-auth-layout,
  .assessment-primary-card,
  .assessment-result-grid { grid-template-columns: 1fr; }
  .match-entry-section .match-copy { min-height: auto; }
  .assessment-hero { padding-top: 112px !important; }
  .assessment-hero-panel { max-width: 620px; }
  .assessment-auth-layout { gap: 36px; }
  .assessment-auth-card { max-width: 620px; width: 100%; }
  .assessment-choice-grid-compact { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .assessment-fit-panel { padding: 44px 30px; }
}

@media (max-width: 680px) {
  .match-entry-section { padding: 74px 0; }
  .match-entry-grid { gap: 16px; }
  .match-entry-section .match-copy,
  .match-preview { min-height: auto; padding: 28px 22px; border-radius: 22px; }
  .match-entry-section .match-copy h2 { font-size: 38px; }
  .match-preview { padding-bottom: 24px; }
  .match-preview-orbit { width: 150px; height: 150px; top: 80px; right: 18px; opacity: .78; }
  .match-preview-steps { width: 100%; margin-top: 110px; }
  .assessment-hero { padding: 106px 0 62px !important; }
  .assessment-hero .section-inner { gap: 30px; }
  .assessment-hero-copy h1 { font-size: 43px !important; }
  .assessment-hero-copy > p { font-size: 14px; }
  .assessment-hero-panel { padding: 25px; border-radius: 21px; }
  .assessment-shell-section { padding: 62px 0 86px; }
  .assessment-auth-copy h2,
  .assessment-workspace-head h2,
  .assessment-result-head h2 { font-size: 36px; }
  .assessment-trust-grid { grid-template-columns: 1fr; }
  .assessment-trust-grid div { min-height: auto; }
  .assessment-auth-card { padding: 22px; border-radius: 21px; }
  .assessment-workspace-head,
  .assessment-result-head { align-items: stretch; flex-direction: column; }
  .assessment-account-chip { width: 100%; }
  .assessment-saved,
  .assessment-report-actions { align-items: stretch; flex-direction: column; }
  .assessment-saved .btn,
  .assessment-report-actions .btn { width: 100%; }
  .assessment-progress-wrap { padding: 18px 16px; }
  .assessment-progress-steps span { font-size: 9px; }
  .assessment-form { min-height: 0; padding: 30px 18px 22px; border-radius: 0 0 20px 20px; }
  .assessment-field-grid,
  .assessment-split-fields,
  .assessment-choice-grid,
  .assessment-choice-grid-three { grid-template-columns: 1fr; gap: 9px; }
  .assessment-choice-grid-compact { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .assessment-choice-grid label > span { min-height: 65px; }
  .assessment-form-actions { flex-wrap: wrap; }
  .assessment-form-actions > span { order: 3; width: 100%; flex-basis: 100%; }
  .assessment-form-actions .btn { flex: 1; }
  .assessment-analyzing { min-height: 520px; grid-template-columns: 1fr; gap: 24px; padding: 34px 22px; text-align: center; }
  .assessment-analyzing-core { width: 170px; height: 170px; margin: 0 auto; }
  .assessment-analyzing h2 { font-size: 32px; }
  .assessment-profile-strip { grid-template-columns: repeat(2,1fr); }
  .assessment-primary-copy { padding: 30px 22px; }
  .assessment-primary-copy > h2 { font-size: 37px; }
  .assessment-primary-actions .btn { width: 100%; }
  .assessment-support-wrap > div { grid-template-columns: 1fr; }
  .assessment-route-card,
  .assessment-support-wrap { padding: 24px 18px; }
}

@media (prefers-reduced-motion: reduce) {
  .match-preview-orbit i,
  .assessment-analyzing-core::before,
  .assessment-analyzing-core::after,
  .assessment-analyzing-core i { animation: none; }
}

@media print {
  .assessment-page .topbar,
  .assessment-page .assessment-hero,
  .assessment-page .footer,
  .assessment-page .assessment-report-actions,
  .assessment-page .scroll-progress { display: none !important; }
  .assessment-shell-section { padding: 0; background: #fff; }
  .assessment-result { max-width: none; }
  .assessment-primary-card,
  .assessment-route-card,
  .assessment-support-wrap { box-shadow: none; break-inside: avoid; }
}

/* Homepage signal network merged into the hero background */
.home-page .hero-network-embedded {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.home-page .hero-network-embedded .hero-inner {
  min-height: max(100svh, 780px);
  display: block;
  padding-top: 132px;
  padding-bottom: 84px;
}

.home-page .hero-network-embedded .hero-copy {
  position: relative;
  z-index: 4;
  max-width: 680px;
  padding: 48px 0 36px;
}

.home-page .hero-network-embedded .hero-copy::before {
  position: absolute;
  z-index: -1;
  inset: -80px -150px -80px -10vw;
  content: "";
  pointer-events: none;
  background: radial-gradient(ellipse at 36% 50%, rgba(255, 255, 250, 0.98) 0%, rgba(251, 253, 249, 0.88) 45%, rgba(251, 253, 249, 0) 76%);
  filter: blur(2px);
}

.home-page .hero-network-embedded .hero-visual {
  position: absolute;
  z-index: 1;
  inset: 58px -9vw 20px 25%;
  width: auto;
  min-width: 0;
  margin: 0;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.18) 9%, #000 28%, #000 100%);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.18) 9%, #000 28%, #000 100%);
}

.home-page .hero-network-embedded .hero-visual .region-node,
.home-page .hero-network-embedded .hero-visual .network-status {
  pointer-events: auto;
}

.home-page .hero-network-embedded .hero-signal-map {
  width: 100%;
  height: 100%;
  min-height: 650px;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.home-page .hero-network-embedded .hero-signal-map::before {
  width: 82%;
  height: 70%;
  top: 15%;
  left: 9%;
  border-color: rgba(32, 116, 84, 0.11);
}

.home-page .hero-network-embedded .hero-signal-map::after {
  width: 56%;
  height: 88%;
  top: 6%;
  left: 23%;
  border-color: rgba(184, 128, 42, 0.09);
}

.home-page .hero-network-embedded .network-signal-map .region-node {
  border-color: rgba(32, 106, 78, 0.08);
  background: rgba(255, 255, 252, 0.74);
  box-shadow: 0 8px 24px rgba(45, 90, 71, 0.06);
  backdrop-filter: blur(8px);
}

.home-page .hero-network-embedded .network-signal-map .region-node:hover,
.home-page .hero-network-embedded .network-signal-map .region-node:focus-visible,
.home-page .hero-network-embedded .network-signal-map .region-node.active {
  background: rgba(255, 255, 252, 0.94);
  box-shadow: 0 14px 36px rgba(45, 90, 71, 0.11);
}

.home-page .hero-network-embedded .network-signal-map .signal-hub,
.home-page .hero-network-embedded .network-signal-map .signal-hub:hover,
.home-page .hero-network-embedded .network-signal-map .signal-hub:focus-visible,
.home-page .hero-network-embedded .network-signal-map .signal-hub.active {
  color: #fff;
  border-color: rgba(15, 118, 86, 0.16);
  background: linear-gradient(135deg, rgba(13, 108, 82, 0.95), rgba(50, 169, 121, 0.92));
  box-shadow: 0 18px 46px rgba(15, 118, 86, 0.2), 0 0 0 11px rgba(34, 163, 114, 0.055);
}

.home-page .hero-network-embedded .network-signal-map .network-status {
  top: 11%;
  right: 11%;
  bottom: auto;
  left: auto;
  color: #42665a;
  border-color: rgba(33, 102, 76, 0.08);
  background: rgba(255, 255, 252, 0.62);
  box-shadow: 0 10px 30px rgba(45, 90, 71, 0.05);
  backdrop-filter: blur(10px);
}

@media (max-width: 1100px) {
  .home-page .hero-network-embedded .hero-inner {
    width: min(100% - 44px, 980px);
  }

  .home-page .hero-network-embedded .hero-copy {
    max-width: 610px;
  }

  .home-page .hero-network-embedded .hero-visual {
    inset: 72px -24vw 20px 27%;
    filter: opacity(0.88);
  }
}

@media (max-width: 820px) {
  .home-page .hero-network-embedded {
    min-height: 920px;
  }

  .home-page .hero-network-embedded .hero-inner {
    width: min(100% - 36px, 760px);
    min-height: 920px;
    padding-top: 122px;
    padding-bottom: 48px;
  }

  .home-page .hero-network-embedded .hero-copy {
    max-width: 650px;
    padding-top: 26px;
  }

  .home-page .hero-network-embedded .hero-copy::before {
    inset: -50px -80px -70px -40px;
    background: radial-gradient(ellipse at 38% 40%, rgba(255, 255, 250, 0.98) 0%, rgba(251, 253, 249, 0.9) 52%, rgba(251, 253, 249, 0) 82%);
  }

  .home-page .hero-network-embedded .hero-visual {
    inset: 300px -28vw 12px -8vw;
    filter: opacity(0.76);
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.35) 14%, #000 34%, #000 100%);
    mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.35) 14%, #000 34%, #000 100%);
  }

  .home-page .hero-network-embedded .hero-signal-map {
    min-height: 610px;
  }

  .home-page .hero-network-embedded .network-signal-map .network-status {
    top: 17%;
    right: 16%;
  }
}

@media (max-width: 680px) {
  .home-page .hero-network-embedded {
    min-height: 900px;
  }

  .home-page .hero-network-embedded .hero-inner {
    min-height: 900px;
    padding: 112px 0 38px;
  }

  .home-page .hero-network-embedded .hero-copy {
    padding-top: 18px;
  }

  .home-page .hero-network-embedded .hero-visual {
    inset: 342px -34vw 0 -28vw;
    filter: opacity(0.72);
  }

  .home-page .hero-network-embedded .hero-signal-map {
    min-height: 540px;
  }

  .home-page .hero-network-embedded .network-signal-map .network-status {
    top: 19%;
    right: 17%;
    max-width: 220px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-page .hero-network-embedded .hero-visual {
    transform: none !important;
  }
}

/* Performance profile: keep the visual language while reducing paint cost */
.home-page .hero-scene {
  filter: none !important;
  transition: none;
  will-change: transform;
}

.home-page .hero-network-embedded .hero-copy::before {
  filter: none;
}

.home-page .hero-network-embedded .network-signal-map .region-node,
.home-page .hero-network-embedded .network-signal-map .network-status,
.home-page .card,
.home-page .product-card,
.home-page .metric-card,
.home-page .step,
.home-page .match-copy,
.home-page .match-panel,
.home-page .match-preview {
  backdrop-filter: none;
}

.home-page .topbar,
.home-page .topbar.is-scrolled {
  backdrop-filter: blur(9px) saturate(108%);
}

.home-page main > .section {
  content-visibility: auto;
  contain-intrinsic-size: 760px;
}

body[data-quality="low"] .home-page .topbar,
body[data-quality="low"] .topbar,
body[data-quality="low"] .network-status,
body[data-quality="low"] .region-node {
  backdrop-filter: none;
}

body[data-quality="low"] .region-node.active span,
body[data-quality="low"] .match-preview-orbit i,
body[data-quality="low"] .visual-badge,
body[data-quality="low"] .visual-orb {
  animation: none !important;
}

@media (max-width: 680px) {
  .home-page .topbar,
  .home-page .topbar.is-scrolled {
    backdrop-filter: none;
  }

  .home-page main > .section {
    contain-intrinsic-size: 900px;
  }
}

/* Creative global-signal layers — transform-only motion keeps it lightweight */
.hero-network-embedded .signal-radar {
  position: absolute;
  z-index: 1;
  width: clamp(280px, 29vw, 430px);
  aspect-ratio: 1;
  left: 70%;
  top: 40%;
  border: 1px solid rgba(24, 131, 94, 0.08);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.hero-network-embedded .signal-radar::before,
.hero-network-embedded .signal-radar::after {
  position: absolute;
  content: "";
  border: 1px solid rgba(24, 131, 94, 0.09);
  border-radius: 50%;
}

.hero-network-embedded .signal-radar::before { inset: 17%; }
.hero-network-embedded .signal-radar::after { inset: 35%; border-color: rgba(184, 128, 42, 0.1); }

.hero-network-embedded .signal-radar > span {
  position: absolute;
  inset: -1px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, transparent 0 69%, rgba(40, 174, 124, 0.02) 76%, rgba(40, 174, 124, 0.16) 96%, transparent 100%);
  -webkit-mask-image: radial-gradient(circle, transparent 0 23%, #000 26% 100%);
  mask-image: radial-gradient(circle, transparent 0 23%, #000 26% 100%);
  animation: signal-scan-rotate 8.5s linear infinite;
  will-change: transform;
}

.hero-network-embedded .signal-radar > i {
  position: absolute;
  inset: 8%;
  border: 1px dashed rgba(24, 131, 94, 0.12);
  border-radius: 50%;
  animation: signal-orbit-rotate 13s linear infinite reverse;
  will-change: transform;
}

.hero-network-embedded .signal-radar > i::after {
  position: absolute;
  width: 6px;
  height: 6px;
  top: 50%;
  right: -3px;
  content: "";
  border-radius: 50%;
  background: #c18a36;
  box-shadow: 0 0 0 6px rgba(193, 138, 54, 0.08), 0 0 14px rgba(193, 138, 54, 0.28);
}

.hero-network-embedded .signal-radar > b {
  position: absolute;
  inset: 0;
  opacity: 0.55;
  border-radius: 50%;
  background:
    linear-gradient(90deg, transparent calc(50% - 0.5px), rgba(24, 131, 94, 0.1) 50%, transparent calc(50% + 0.5px)),
    linear-gradient(0deg, transparent calc(50% - 0.5px), rgba(24, 131, 94, 0.1) 50%, transparent calc(50% + 0.5px));
}

@keyframes signal-scan-rotate { to { transform: rotate(360deg); } }
@keyframes signal-orbit-rotate { to { transform: rotate(360deg); } }

.hero-network-embedded .signal-data-layer {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
}

.hero-network-embedded .signal-data-chip {
  position: absolute;
  display: grid;
  grid-template-columns: 7px auto;
  column-gap: 8px;
  min-width: 132px;
  padding: 9px 11px;
  border: 1px solid rgba(28, 106, 78, 0.09);
  border-radius: 10px;
  background: rgba(255, 255, 252, 0.74);
  box-shadow: 0 10px 28px rgba(45, 90, 71, 0.055);
  animation: signal-chip-float 5.8s ease-in-out infinite;
  will-change: transform;
}

.hero-network-embedded .signal-data-chip > i {
  grid-row: 1 / 3;
  align-self: center;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #2eae7f;
  box-shadow: 0 0 0 5px rgba(46, 174, 127, 0.07);
}

.hero-network-embedded .signal-data-chip small,
.hero-network-embedded .signal-data-chip strong {
  display: block;
  white-space: nowrap;
}

.hero-network-embedded .signal-data-chip small {
  color: #94a49d;
  font-size: 6px;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.hero-network-embedded .signal-data-chip strong {
  margin-top: 2px;
  color: #376052;
  font-size: 8px;
  letter-spacing: 0.06em;
}

.hero-network-embedded .signal-data-europe { left: 36%; top: 17%; animation-delay: -1.4s; }
.hero-network-embedded .signal-data-americas { left: 9%; top: 58%; animation-delay: -3.6s; }
.hero-network-embedded .signal-data-asia { right: 4%; top: 64%; animation-delay: -2.2s; }

@keyframes signal-chip-float {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -7px, 0); }
}

.hero-network-embedded .signal-live-meter {
  position: absolute;
  z-index: 4;
  right: 24%;
  bottom: 5%;
  display: grid;
  grid-template-columns: auto auto;
  gap: 3px 16px;
  min-width: 210px;
  padding: 12px 14px;
  border-left: 2px solid rgba(32, 142, 101, 0.55);
  color: #5b756a;
  background: linear-gradient(90deg, rgba(255, 255, 252, 0.78), rgba(255, 255, 252, 0));
  pointer-events: none;
}

.hero-network-embedded .signal-live-meter > span {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #20815f;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.hero-network-embedded .signal-live-meter > span i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #2eae7f;
  box-shadow: 0 0 0 5px rgba(46, 174, 127, 0.08);
  animation: signal-live-pulse 2.2s ease-in-out infinite;
}

.hero-network-embedded .signal-live-meter > strong {
  grid-row: 1 / 3;
  grid-column: 2;
  align-self: center;
  color: #214c3d;
  font-family: var(--font-display);
  font-size: 18px;
}

.hero-network-embedded .signal-live-meter > small {
  color: #97a59f;
  font-size: 6px;
  letter-spacing: 0.08em;
}

@keyframes signal-live-pulse {
  0%, 100% { opacity: 0.5; transform: scale(0.8); }
  50% { opacity: 1; transform: scale(1.15); }
}

.hero-network-embedded .network-signal-map .region-node:not(.signal-hub) span {
  animation: signal-destination-pulse 4.2s ease-in-out infinite;
  will-change: transform, opacity;
}

.hero-network-embedded .network-signal-map .region-node:nth-of-type(2) span { animation-delay: -0.5s; }
.hero-network-embedded .network-signal-map .region-node:nth-of-type(3) span { animation-delay: -1.1s; }
.hero-network-embedded .network-signal-map .region-node:nth-of-type(4) span { animation-delay: -1.8s; }
.hero-network-embedded .network-signal-map .region-node:nth-of-type(5) span { animation-delay: -2.4s; }
.hero-network-embedded .network-signal-map .region-node:nth-of-type(6) span { animation-delay: -3s; }
.hero-network-embedded .network-signal-map .region-node:nth-of-type(7) span { animation-delay: -3.6s; }

@keyframes signal-destination-pulse {
  0%, 78%, 100% { opacity: 0.55; transform: scale(0.82); }
  86% { opacity: 1; transform: scale(1.28); }
}

body[data-quality="low"] .signal-data-americas,
body[data-quality="low"] .signal-data-asia,
body[data-quality="low"] .signal-live-meter {
  display: none;
}

body[data-quality="low"] .signal-radar > span,
body[data-quality="low"] .signal-radar > i,
body[data-quality="low"] .signal-data-chip,
body[data-quality="low"] .network-signal-map .region-node span {
  animation: none !important;
}

@media (max-width: 820px) {
  .hero-network-embedded .signal-radar {
    width: 330px;
  }

  .hero-network-embedded .signal-data-europe,
  .hero-network-embedded .signal-data-americas {
    display: none;
  }

  .hero-network-embedded .signal-data-asia {
    right: 12%;
    top: 70%;
    bottom: auto;
  }

  .hero-network-embedded .signal-live-meter {
    right: 15%;
    bottom: 5%;
  }
}

@media (max-width: 680px) {
  .hero-network-embedded .signal-radar {
    width: 260px;
  }

  .hero-network-embedded .signal-data-layer,
  .hero-network-embedded .signal-live-meter {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-network-embedded .signal-radar > span,
  .hero-network-embedded .signal-radar > i,
  .hero-network-embedded .signal-data-chip,
  .hero-network-embedded .signal-live-meter > span i,
  .hero-network-embedded .network-signal-map .region-node span {
    animation: none !important;
  }
}

/* Premium member center — isolated from legacy dark landing-page rules */
.member-center-page {
  color: #17332a;
  background:
    radial-gradient(circle at 84% 18%, rgba(50, 177, 128, 0.08), transparent 24%),
    radial-gradient(circle at 12% 42%, rgba(194, 138, 54, 0.055), transparent 23%),
    #f8fbf7;
}

.member-center-page .topbar {
  position: fixed;
  width: 100%;
  border-bottom-color: rgba(35, 93, 70, 0.09);
  background: rgba(255, 255, 252, 0.9);
  backdrop-filter: blur(12px) saturate(112%);
  box-shadow: 0 8px 30px rgba(45, 90, 71, 0.045);
}

.member-center-page .nav-link,
.member-center-page .nav-utility-link,
.member-center-page .nav-lang {
  color: #38584c;
}

.member-center-page .nav-link:hover,
.member-center-page .nav-link:focus-visible {
  color: #0f7658;
  background: #eef8f2;
}

.member-hero {
  position: relative;
  overflow: hidden;
  padding: 154px 0 88px;
  border-bottom: 1px solid rgba(35, 93, 70, 0.08);
  background:
    linear-gradient(rgba(35, 106, 78, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(35, 106, 78, 0.03) 1px, transparent 1px),
    radial-gradient(circle at 77% 36%, rgba(45, 178, 128, 0.13), transparent 28%),
    linear-gradient(145deg, #fffefa, #f4faf6 62%, #fff9ee);
  background-size: 48px 48px, 48px 48px, auto, auto;
}

.member-hero::after {
  position: absolute;
  width: 430px;
  height: 430px;
  top: -220px;
  right: -130px;
  content: "";
  border: 1px solid rgba(37, 137, 99, 0.08);
  border-radius: 50%;
  box-shadow: 0 0 0 52px rgba(37, 137, 99, 0.022), 0 0 0 104px rgba(37, 137, 99, 0.018);
}

.member-hero .section-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.62fr);
  gap: 68px;
  align-items: center;
}

.member-hero-copy h1 {
  max-width: 890px;
  margin: 18px 0 22px;
  color: #17332a;
  font-family: var(--font-display);
  font-size: clamp(48px, 5.25vw, 72px);
  line-height: 1.08;
  letter-spacing: -0.055em;
}

.member-hero-copy h1 > span,
.member-hero-copy > p > span {
  display: block;
}

.member-hero-copy > p {
  max-width: 760px;
  margin: 0;
  color: #61746c;
  font-size: 16px;
  line-height: 1.9;
}

.member-hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 28px;
}

.member-hero-points span {
  padding: 8px 12px;
  border: 1px solid rgba(31, 111, 83, 0.1);
  border-radius: 999px;
  color: #48685d;
  background: rgba(255, 255, 255, 0.7);
  font-size: 11px;
  font-weight: 700;
}

.member-hero-console {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 25px;
  color: #fff;
  background:
    radial-gradient(circle at 88% 15%, rgba(87, 211, 160, 0.16), transparent 31%),
    linear-gradient(145deg, #153f33, #0d2f27 68%, #1d4c3c);
  box-shadow: 0 30px 76px rgba(31, 80, 61, 0.2), inset 0 1px rgba(255, 255, 255, 0.08);
}

.member-hero-console::after {
  position: absolute;
  width: 190px;
  height: 190px;
  right: -90px;
  bottom: -105px;
  content: "";
  border: 1px solid rgba(109, 232, 181, 0.14);
  border-radius: 50%;
  box-shadow: 0 0 0 31px rgba(109, 232, 181, 0.035), 0 0 0 61px rgba(109, 232, 181, 0.025);
}

.member-console-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(235, 255, 246, 0.62);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.member-console-top > span { display: flex; align-items: center; gap: 7px; }
.member-console-top i { width: 6px; height: 6px; border-radius: 50%; background: #60dea9; box-shadow: 0 0 0 5px rgba(96, 222, 169, 0.08); }
.member-console-top strong { color: #d8ae68; font-size: 10px; }
.member-console-core { padding: 38px 0 30px; }
.member-console-core > span { color: #d8ae68; font-size: 9px; font-weight: 900; letter-spacing: 0.14em; }
.member-console-core > strong { display: block; margin-top: 8px; color: #fff; font-family: var(--font-display); font-size: 30px; }
.member-console-core p { margin: 13px 0 0; color: rgba(229, 246, 237, 0.68); font-size: 12px; line-height: 1.75; }
.member-console-grid { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(2, 1fr); gap: 7px; }
.member-console-grid span { padding: 10px 11px; border: 1px solid rgba(255, 255, 255, 0.07); border-radius: 10px; color: rgba(235, 250, 242, 0.72); background: rgba(255, 255, 255, 0.035); font-size: 9px; }

.member-dashboard-section {
  padding: 72px 0 116px;
  background: linear-gradient(180deg, #f8fbf7, #fffdf8);
}

.member-dashboard {
  display: grid;
  grid-template-columns: minmax(350px, 0.74fr) minmax(560px, 1.26fr);
  gap: 22px;
  align-items: start;
}

.member-premium-card {
  border: 1px solid rgba(31, 111, 83, 0.105);
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 28px 76px rgba(45, 90, 71, 0.085), inset 0 1px rgba(255, 255, 255, 0.98);
}

.member-account-card {
  position: sticky;
  top: 94px;
  padding: 30px;
}

.member-checkout-card { padding: 30px; }
.member-card-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; padding-bottom: 24px; border-bottom: 1px solid rgba(31, 111, 83, 0.08); }
.member-card-index { color: #a97935; font-size: 9px; font-weight: 900; letter-spacing: 0.13em; }
.member-card-head h2 { margin: 8px 0 7px; color: #17332a !important; font-family: var(--font-display); font-size: 25px; letter-spacing: -0.025em; }
.member-card-head p { margin: 0; color: #7a8b84; font-size: 11px; line-height: 1.6; }
.member-state-badge,
.member-checkout-lock { flex: 0 0 auto; padding: 7px 10px; border: 1px solid rgba(31, 111, 83, 0.1); border-radius: 999px; color: #71827b; background: #f3f8f5; font-size: 9px; font-weight: 800; }
.member-state-badge.good { color: #0d704e; border-color: rgba(23, 139, 95, 0.18); background: #edf9f2; }
.member-state-badge.warn { color: #9a641d; border-color: rgba(194, 138, 54, 0.2); background: #fff8e9; }
.member-checkout-lock { color: #176b51; }

.member-account-identity {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 15px;
  align-items: center;
  margin: 26px 0;
  padding: 17px;
  border: 1px solid rgba(31, 111, 83, 0.08);
  border-radius: 17px;
  background: linear-gradient(145deg, #f2f9f5, #fffaf1);
}

.member-avatar { display: grid; width: 58px; height: 58px; place-items: center; border-radius: 16px; color: #fff; background: linear-gradient(145deg, #176b51, #3eb083); box-shadow: 0 14px 28px rgba(35, 125, 91, 0.18); font-weight: 900; letter-spacing: .08em; }
.member-account-identity small,
.member-account-identity strong,
.member-account-identity div > span { display: block; }
.member-account-identity small { color: #a17c43; font-size: 8px; font-weight: 900; letter-spacing: .13em; }
.member-account-identity strong { margin-top: 4px; overflow: hidden; color: #294f41; font-size: 14px; text-overflow: ellipsis; white-space: nowrap; }
.member-account-identity div > span { margin-top: 4px; color: #899791; font-size: 9px; }

.member-form-grid { display: grid; gap: 14px; }
.member-field { display: grid; gap: 7px; }
.member-field > span { color: #47665a; font-size: 11px; font-weight: 800; }
.member-field > span small { color: #98a59f; font-weight: 500; }
.member-center-page .field,
.member-center-page .landing-page .field {
  min-height: 50px;
  padding: 0 15px;
  color: #17332a !important;
  border: 1px solid rgba(31, 111, 83, 0.13) !important;
  border-radius: 12px;
  background: #fff !important;
  box-shadow: none;
  color-scheme: light !important;
}

.member-center-page .field::placeholder { color: #a0aca7 !important; }
.member-center-page .field:focus { border-color: rgba(25, 133, 95, 0.52) !important; box-shadow: 0 0 0 4px rgba(42, 166, 117, 0.085) !important; }
.member-center-page select.field option { color: #17332a !important; background: #fff !important; }
.member-password-field > div { position: relative; }
.member-password-field .field { padding-right: 62px; }
.member-password-field button { position: absolute; top: 50%; right: 12px; padding: 5px 7px; border: 0; border-radius: 7px; color: #177052; background: #edf7f1; transform: translateY(-50%); font-size: 10px; cursor: pointer; }

.member-center-page .member-auth-status {
  margin-top: 22px;
  color: #557168;
  border-color: rgba(31, 111, 83, 0.1);
  border-radius: 12px;
  background: #f4f8f5;
}

.member-center-page .member-form-grid + .member-auth-status {
  display: block;
  margin-block-start: 22px !important;
}

.member-center-page .member-auth-status.good { color: #0d704e; border-color: rgba(23, 139, 95, 0.18); background: #edf9f2; }
.member-center-page .member-auth-status.warn { color: #94601c; border-color: rgba(194, 138, 54, 0.2); background: #fff8e9; }
.member-auth-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 18px; }
.member-text-button { grid-column: 1 / -1; min-height: 34px; border: 0; color: #809088; background: transparent; font-size: 10px; cursor: pointer; }
.member-text-button:hover { color: #126a4d; }
.member-security-note { display: grid; grid-template-columns: auto 1fr; gap: 11px; margin-top: 22px; padding-top: 18px; border-top: 1px solid rgba(31, 111, 83, 0.08); }
.member-security-note span { color: #ad7c36; font-size: 9px; font-weight: 900; }
.member-security-note p { margin: 0; color: #8a9892; font-size: 9px; line-height: 1.6; }

.member-checkout-step { padding: 26px 0; border-bottom: 1px solid rgba(31, 111, 83, 0.075); }
.member-step-title { display: grid; grid-template-columns: 34px 1fr; gap: 11px; align-items: center; margin-bottom: 15px; }
.member-step-title > span { display: grid; width: 32px; height: 32px; place-items: center; border: 1px solid rgba(31, 111, 83, 0.11); border-radius: 50%; color: #177052; background: #f2f8f4; font-size: 9px; font-weight: 900; }
.member-step-title strong,
.member-step-title small { display: block; }
.member-step-title strong { color: #31584a; font-size: 13px; }
.member-step-title small { margin-top: 3px; color: #93a099; font-size: 9px; }
.member-product-select { font-weight: 800; }
.member-product-picker { position: relative; z-index: 16; }
.member-product-picker-ui { display: none; }
.member-product-picker.is-enhanced .member-product-native {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}
.member-product-picker.is-enhanced .member-product-picker-ui { display: block; }
.member-product-trigger {
  width: 100%;
  min-height: 72px;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 24px;
  gap: 13px;
  align-items: center;
  padding: 10px 15px 10px 11px;
  color: #17332a;
  text-align: left;
  border: 1px solid rgba(31, 111, 83, 0.14);
  border-radius: 16px;
  background: linear-gradient(145deg, #ffffff, #f8fbf8);
  box-shadow: 0 10px 30px rgba(38, 90, 69, 0.055), inset 0 1px rgba(255, 255, 255, 0.98);
  cursor: pointer;
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease, background 200ms ease;
}
.member-product-trigger:hover {
  transform: translateY(-1px);
  border-color: rgba(25, 133, 95, 0.32);
  box-shadow: 0 16px 34px rgba(38, 90, 69, 0.085), inset 0 1px rgba(255, 255, 255, 0.98);
}
.member-product-trigger:focus-visible,
.member-product-picker.is-open .member-product-trigger {
  outline: none;
  border-color: rgba(25, 133, 95, 0.52);
  background: linear-gradient(145deg, #f7fcf9, #fffdf8);
  box-shadow: 0 0 0 4px rgba(42, 166, 117, 0.085), 0 18px 38px rgba(38, 90, 69, 0.09);
}
.member-product-trigger-index {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  color: #fff;
  background: linear-gradient(145deg, #176b51, #3eb083);
  box-shadow: 0 10px 22px rgba(35, 125, 91, 0.17);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .06em;
}
.member-product-trigger-copy { min-width: 0; }
.member-product-trigger-copy small,
.member-product-trigger-copy strong { display: block; }
.member-product-trigger-copy small { color: #9b7740; font-size: 7px; font-weight: 900; letter-spacing: .13em; }
.member-product-trigger-copy strong { margin-top: 6px; overflow: hidden; color: #294f41; font-size: 14px; text-overflow: ellipsis; white-space: nowrap; }
.member-product-trigger-arrow {
  width: 9px;
  height: 9px;
  justify-self: center;
  border-right: 2px solid #257357;
  border-bottom: 2px solid #257357;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 260ms cubic-bezier(.22, 1, .36, 1);
}
.member-product-picker.is-open .member-product-trigger-arrow { transform: translateY(3px) rotate(225deg); }
.member-product-menu {
  position: absolute;
  top: calc(100% + 9px);
  right: 0;
  left: 0;
  z-index: 30;
  max-height: min(390px, 56vh);
  padding: 7px;
  overflow: auto;
  visibility: hidden;
  opacity: 0;
  border: 1px solid rgba(31, 111, 83, 0.13);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 28px 70px rgba(31, 80, 61, 0.18), 0 8px 22px rgba(31, 80, 61, 0.08);
  transform: translateY(-8px) scale(.985);
  transform-origin: top center;
  pointer-events: none;
  transition: opacity 180ms ease, transform 240ms cubic-bezier(.22, 1, .36, 1), visibility 180ms ease;
  scrollbar-width: thin;
  scrollbar-color: rgba(34, 129, 94, .24) transparent;
}
.member-product-picker.is-open .member-product-menu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.member-product-menu [data-product-option] {
  width: 100%;
  min-height: 72px;
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr) 24px;
  gap: 12px;
  align-items: center;
  padding: 10px 12px;
  color: #31584a;
  text-align: left;
  border: 1px solid transparent;
  border-radius: 13px;
  background: transparent;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}
.member-product-menu [data-product-option] + [data-product-option] { margin-top: 3px; }
.member-product-menu [data-product-option]:hover,
.member-product-menu [data-product-option]:focus-visible {
  outline: none;
  color: #174b39;
  border-color: rgba(31, 129, 92, 0.1);
  background: #f3f9f5;
  transform: translateX(2px);
}
.member-product-menu [data-product-option].is-selected {
  color: #174b39;
  border-color: rgba(31, 129, 92, 0.18);
  background: linear-gradient(135deg, #edf8f2, #fffaf0);
}
.member-product-menu [data-product-option] > span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(31, 111, 83, 0.1);
  border-radius: 10px;
  color: #8b7651;
  background: rgba(255, 255, 255, 0.76);
  font-size: 8px;
  font-weight: 900;
}
.member-product-menu [data-product-option] strong,
.member-product-menu [data-product-option] small { display: block; }
.member-product-menu [data-product-option] strong { color: inherit; font-size: 12px; }
.member-product-menu [data-product-option] small { margin-top: 4px; color: #899791; font-size: 8px; line-height: 1.5; }
.member-product-menu [data-product-option] > i {
  width: 21px;
  height: 21px;
  display: grid;
  place-items: center;
  opacity: 0;
  border-radius: 50%;
  color: #fff;
  background: #21815f;
  font-size: 9px;
  font-style: normal;
  transform: scale(.65);
  transition: opacity 180ms ease, transform 220ms cubic-bezier(.22, 1, .36, 1);
}
.member-product-menu [data-product-option].is-selected > i { opacity: 1; transform: scale(1); }
.member-product-insight { display: grid; grid-template-columns: 88px 1fr; gap: 3px 12px; margin-top: 10px; padding: 13px 15px; border-radius: 13px; background: linear-gradient(135deg, #f1f8f4, #fffaf1); }
.member-product-insight > span { grid-row: 1 / 3; align-self: center; color: #a97935; font-size: 8px; font-weight: 900; letter-spacing: .08em; }
.member-product-insight > strong { color: #31584a; font-size: 12px; }
.member-product-insight > p { margin: 0; color: #819089; font-size: 9px; line-height: 1.55; }

.member-plan-grid { gap: 9px; }
.member-center-page .member-plan-grid .choice {
  position: relative;
  min-height: 116px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 15px;
  overflow: hidden;
  color: #17332a;
  border: 1px solid rgba(31, 111, 83, 0.11);
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(45, 90, 71, 0.035);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.member-center-page .member-plan-grid .choice:hover { transform: translateY(-2px); border-color: rgba(31, 129, 92, 0.3); box-shadow: 0 14px 30px rgba(45, 90, 71, 0.08); }
.member-center-page .member-plan-grid .choice.active { border-color: rgba(21, 130, 92, 0.48); background: linear-gradient(145deg, #eef9f3, #fffdf8); box-shadow: inset 0 0 0 1px rgba(21, 130, 92, 0.08), 0 14px 32px rgba(45, 90, 71, 0.08); }
.member-center-page .member-plan-grid .choice.active::after { position: absolute; width: 20px; height: 20px; top: 10px; right: 10px; display: grid; place-items: center; content: "✓"; border-radius: 50%; color: #fff; background: #21815f; font-size: 10px; }
.member-center-page .member-plan-grid .member-plan-kicker { color: #9b7740 !important; font-size: 7px !important; font-weight: 900; letter-spacing: .12em; }
.member-center-page .member-plan-grid strong { margin: 12px 0 2px; color: #1d4e3d !important; font-family: var(--font-display); font-size: 26px !important; }
.member-center-page .member-plan-grid small { color: #7d8d86; font-size: 10px; }

.member-pay-grid { gap: 9px; }
.member-center-page .member-pay-grid .choice { position: relative; min-height: 78px; display: grid; grid-template-columns: 42px 1fr auto; gap: 12px; align-items: center; padding: 13px 14px; color: #17332a; border: 1px solid rgba(31, 111, 83, 0.11); border-radius: 15px; background: #fff; box-shadow: 0 8px 24px rgba(45, 90, 71, 0.035); transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease; }
.member-center-page .member-pay-grid .choice:hover { transform: translateY(-2px); border-color: rgba(31, 129, 92, 0.28); }
.member-center-page .member-pay-grid .choice.active { border-color: rgba(21, 130, 92, 0.48); background: linear-gradient(145deg, #eef9f3, #fffdf8); box-shadow: inset 0 0 0 1px rgba(21, 130, 92, 0.08), 0 12px 28px rgba(45, 90, 71, 0.07); }
.member-pay-icon { display: grid; width: 42px; height: 42px; place-items: center; border-radius: 13px; color: #fff; font-style: normal; font-weight: 900; }
.member-pay-icon.wechat { background: linear-gradient(145deg, #20ad68, #39c97d); }
.member-pay-icon.alipay { background: linear-gradient(145deg, #1677ff, #4aa0ff); }
.member-pay-grid .choice div strong,
.member-pay-grid .choice div span { display: block; }
.member-center-page .member-pay-grid .choice div strong { margin: 0 0 4px; color: #31584a !important; font-size: 13px; }
.member-center-page .member-pay-grid .choice div span { color: #8b9993 !important; font-size: 9px; }
.member-pay-grid .choice > b { padding: 5px 7px; border-radius: 999px; color: #21815f; background: #edf8f2; font-size: 8px; }
.member-center-page .member-pay-grid .choice.is-unavailable,
.member-center-page .member-pay-grid .choice.is-unavailable:hover {
  opacity: .54;
  cursor: not-allowed;
  transform: none;
  border-color: rgba(31, 111, 83, 0.08);
  background: #f5f7f5;
  box-shadow: none;
}
.member-center-page .member-pay-grid .choice.is-unavailable > b { color: #8a6f45; background: #f5ede1; }

.member-order-summary { margin-top: 26px; padding: 24px; border-radius: 20px; color: #fff; background: radial-gradient(circle at 92% 5%, rgba(95, 214, 163, 0.15), transparent 30%), linear-gradient(145deg, #143e32, #0e3027); box-shadow: 0 24px 58px rgba(31, 80, 61, 0.18); }
.member-order-summary-head { display: flex; align-items: center; justify-content: space-between; padding-bottom: 15px; border-bottom: 1px solid rgba(255,255,255,.09); }
.member-order-summary-head span { color: #d6ae6d; font-size: 8px; font-weight: 900; letter-spacing: .14em; }
.member-order-summary-head strong { color: rgba(241, 255, 248, 0.86); font-size: 12px; }
.member-order-summary dl { display: grid; gap: 9px; margin: 18px 0; }
.member-order-summary dl div { display: flex; justify-content: space-between; gap: 20px; }
.member-order-summary dt { color: rgba(222, 242, 232, 0.55); font-size: 10px; }
.member-order-summary dd { margin: 0; color: rgba(245, 255, 250, 0.9); font-size: 10px; text-align: right; }
.member-order-total { display: flex; align-items: flex-end; justify-content: space-between; margin: 18px 0; padding-top: 17px; border-top: 1px solid rgba(255,255,255,.09); }
.member-order-total > span { color: rgba(229, 246, 237, 0.7); font-size: 11px; }
.member-order-total > span small { display: block; margin-top: 4px; color: rgba(229, 246, 237, 0.42); font-size: 7px; }
.member-order-total > strong { color: #e8c384; font-family: var(--font-display); font-size: 18px; }
.member-order-total > strong b { font-size: 36px; }
.member-pay-button { width: 100%; min-height: 50px; color: #143b30; background: linear-gradient(135deg, #ebd09a, #d5aa62); box-shadow: 0 14px 28px rgba(210, 168, 96, 0.18); }
.member-pay-button:hover { color: #143b30; background: linear-gradient(135deg, #f0d9a9, #dbb36e); }
.member-pay-button:disabled { color: rgba(255,255,255,.48); background: rgba(255,255,255,.1); box-shadow: none; cursor: not-allowed; }
.member-license-button { width: 100%; margin-top: 9px; color: rgba(239,255,247,.8); border-color: rgba(255,255,255,.15); background: rgba(255,255,255,.045); }
.member-license-button:hover { color: #fff; border-color: rgba(255,255,255,.28); background: rgba(255,255,255,.08); }
.member-payment-note { margin: 13px 2px 0; color: rgba(222, 242, 232, 0.48); font-size: 8px; line-height: 1.6; text-align: center; }

.member-center-page .member-modal { z-index: 120; padding: 22px; background: rgba(20, 48, 39, 0.42); backdrop-filter: blur(8px); }
.member-center-page .member-modal-panel { position: relative; width: min(560px, 100%); color: #17332a; border: 1px solid rgba(31,111,83,.12); border-radius: 24px; background: #fffefa; box-shadow: 0 36px 100px rgba(24, 65, 50, .25); transition: width 220ms ease; }
.member-center-page .member-modal.payment-mode .member-modal-panel { width: min(780px, 100%); }
.member-modal-close { position: absolute; z-index: 3; width: 34px; height: 34px; top: 16px; right: 16px; border: 1px solid rgba(31,111,83,.1); border-radius: 50%; color: #577168; background: rgba(255,255,255,.8); font-size: 20px; cursor: pointer; }
.member-modal-brand { display: flex; align-items: flex-end; justify-content: space-between; padding: 23px 60px 17px 25px; border-bottom: 1px solid rgba(31,111,83,.08); }
.member-modal-brand > span { color: #17332a; font-family: var(--font-display); font-size: 19px; font-weight: 900; letter-spacing: -.03em; }
.member-modal-brand > small { color: #a87834; font-size: 8px; font-weight: 900; letter-spacing: .13em; }
.member-modal-layout { display: grid; grid-template-columns: 260px 1fr; min-height: 340px; }
.member-modal-qr { display: grid; align-content: center; justify-items: center; padding: 28px; border-right: 1px solid rgba(31,111,83,.08); background: linear-gradient(145deg,#f0f8f3,#fff9ee); }
.member-center-page .qr-placeholder { width: 196px; height: 196px; margin: 0; color: #6e8179; border: 1px solid rgba(31,111,83,.14); border-radius: 18px; background: #fff; box-shadow: 0 16px 36px rgba(45,90,71,.09); }
.member-center-page .qr-placeholder img { width: 178px; height: 178px; }
.member-modal-qr > span { display: flex; align-items: center; gap: 7px; margin-top: 15px; color: #72857d; font-size: 9px; }
.member-modal-qr > span i { width: 6px; height: 6px; border-radius: 50%; background: #2eae7f; box-shadow: 0 0 0 5px rgba(46,174,127,.08); }
.member-center-page .modal-body { align-self: center; padding: 34px; }
.member-modal-kicker { color: #a87834; font-size: 8px; font-weight: 900; letter-spacing: .13em; }
.member-center-page .modal-title { margin: 10px 0 12px; color: #17332a; font-family: var(--font-display); font-size: 30px; letter-spacing: -.03em; }
.member-center-page .modal-body .copy { margin: 0; color: #657870; font-size: 12px; line-height: 1.8; }
.member-modal-trust { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 20px; }
.member-modal-trust span { padding: 6px 8px; border-radius: 999px; color: #497064; background: #eef7f2; font-size: 8px; }
.member-center-page .modal-actions { display: grid; grid-template-columns: 1fr; padding: 0 24px 24px; }
.member-modal:not(.payment-mode) .member-modal-qr { display: none; }
.member-modal:not(.payment-mode) .member-modal-layout { grid-template-columns: 1fr; min-height: 240px; }
.member-modal:not(.payment-mode) .modal-body { padding: 36px; }

@media (max-width: 1080px) {
  .member-hero .section-inner { grid-template-columns: 1fr; gap: 36px; }
  .member-hero-console { max-width: 620px; }
  .member-dashboard { grid-template-columns: 1fr; }
  .member-account-card { position: static; }
}

@media (max-width: 680px) {
  .member-center-page .topbar { backdrop-filter: none; }
  .member-hero { padding: 118px 0 62px; }
  .member-hero-copy h1 { font-size: 42px; }
  .member-hero-copy > p { font-size: 14px; }
  .member-hero-console { padding: 22px; border-radius: 20px; }
  .member-dashboard-section { padding: 48px 0 78px; }
  .member-account-card,
  .member-checkout-card { padding: 21px; border-radius: 20px; }
  .member-card-head { align-items: flex-start; flex-direction: column; }
  .member-auth-actions,
  .member-plan-grid,
  .member-pay-grid { grid-template-columns: 1fr; }
  .member-center-page .member-plan-grid .choice { min-height: 102px; }
  .member-product-insight { grid-template-columns: 1fr; }
  .member-product-insight > span { grid-row: auto; }
  .member-product-trigger {
    min-height: 66px;
    grid-template-columns: 42px minmax(0, 1fr) 20px;
    gap: 10px;
    padding: 9px 12px 9px 9px;
    border-radius: 14px;
  }
  .member-product-trigger-index { width: 42px; height: 42px; border-radius: 11px; font-size: 10px; }
  .member-product-trigger-copy small { font-size: 6px; letter-spacing: .1em; }
  .member-product-trigger-copy strong { margin-top: 5px; font-size: 12px; }
  .member-product-menu { max-height: 52svh; padding: 6px; border-radius: 15px; }
  .member-product-menu [data-product-option] { min-height: 68px; grid-template-columns: 32px minmax(0, 1fr) 22px; gap: 10px; padding: 9px; }
  .member-product-menu [data-product-option] > span { width: 31px; height: 31px; }
  .member-product-menu [data-product-option] strong { font-size: 11px; }
  .member-product-menu [data-product-option] small { font-size: 7px; }
  .member-center-page .member-modal { padding: 10px; }
  .member-center-page .member-modal-panel,
  .member-center-page .member-modal.payment-mode .member-modal-panel { border-radius: 18px; }
  .member-modal-layout { grid-template-columns: 1fr; max-height: 82vh; overflow-y: auto; }
  .member-modal-qr { border-right: 0; border-bottom: 1px solid rgba(31,111,83,.08); }
  .member-center-page .modal-body { padding: 26px 22px; }
  .member-center-page .qr-placeholder { width: 174px; height: 174px; }
  .member-center-page .qr-placeholder img { width: 158px; height: 158px; }
}

@media (prefers-reduced-motion: reduce) {
  .visual-badge,
  .visual-orb,
  .map-dot {
    animation: none;
  }
}

@keyframes visual-float {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -10px, 0); }
}

@keyframes screen-node-pulse {
  0%, 100% { opacity: 0.58; transform: scale(0.86); }
  50% { opacity: 1; transform: scale(1.28); }
}

/* Cangzhou outbound signal network */
.network-signal-map {
  min-height: 560px;
  isolation: isolate;
}

.network-signal-map::before,
.network-signal-map::after {
  z-index: 0;
}

.network-signal-canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.network-signal-map .region-node {
  z-index: 3;
  min-height: 31px;
  gap: 6px;
  padding: 6px 9px;
  white-space: nowrap;
}

.network-signal-map .region-node b {
  color: inherit;
  font-size: 11px;
  font-weight: 900;
}

.network-signal-map .region-node small {
  color: #819087;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 6px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.network-signal-map .region-node:hover small,
.network-signal-map .region-node:focus-visible small,
.network-signal-map .region-node.active small {
  color: #4f7063;
}

.network-signal-map .signal-hub {
  min-height: 40px;
  padding: 8px 13px;
  color: #fff;
  border-color: rgba(15, 118, 86, 0.2);
  background: linear-gradient(135deg, #0f766e, #35ad7f);
  box-shadow: 0 16px 38px rgba(15, 118, 86, 0.22), 0 0 0 7px rgba(34, 163, 114, 0.07);
}

.network-signal-map .signal-hub span {
  background: #fff4cf;
  box-shadow: 0 0 16px rgba(255, 235, 174, 0.72);
}

.network-signal-map .signal-hub small,
.network-signal-map .signal-hub:hover small,
.network-signal-map .signal-hub:focus-visible small,
.network-signal-map .signal-hub.active small {
  color: rgba(255, 255, 255, 0.7);
}

.network-signal-map .signal-hub:hover,
.network-signal-map .signal-hub:focus-visible,
.network-signal-map .signal-hub.active {
  color: #fff;
  border-color: rgba(15, 118, 86, 0.2);
  background: linear-gradient(135deg, #0d6c64, #32a979);
  box-shadow: 0 18px 44px rgba(15, 118, 86, 0.24), 0 0 0 9px rgba(34, 163, 114, 0.07);
}

.network-signal-map .network-status {
  z-index: 4;
  top: 18px;
  right: auto;
  bottom: auto;
  left: 18px;
  width: fit-content;
  max-width: calc(100% - 36px);
}

@media (max-width: 680px) {
  .network-signal-map {
    min-height: 440px;
  }

  .network-signal-map .region-node {
    min-height: 25px;
    padding: 4px 6px;
  }

  .network-signal-map .region-node b {
    font-size: 10px;
  }

  .network-signal-map .region-node small {
    display: none;
  }

  .network-signal-map .region-node[data-region="孟买"],
  .network-signal-map .region-node[data-region="汉堡"],
  .network-signal-map .region-node[data-region="墨西哥城"],
  .network-signal-map .region-node[data-region="悉尼"] {
    display: none;
  }

  .network-signal-map .signal-hub {
    min-height: 32px;
    padding: 6px 9px;
  }

  .network-signal-map .network-status {
    top: 10px;
    left: 10px;
    padding: 9px 11px;
    font-size: 11px;
  }
}

@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,
  .recommendation-steps,
  .demo-video-grid,
  .lead-demo-sidebar,
  .lead-field-grid,
  .lead-contact-grid {
    grid-template-columns: 1fr;
  }

  .lead-demo-screen {
    min-height: auto;
    padding: 12px;
  }

  .lead-demo-panel {
    padding: 18px;
  }

  .lead-demo-metrics {
    grid-template-columns: 1fr;
  }

  .lead-row,
  .lead-value-row {
    grid-template-columns: 1fr;
  }

  .match-copy h2 {
    font-size: 30px;
  }

  .match-layout {
    gap: 16px;
  }

  .demo-modal {
    padding: 12px;
  }

  .demo-modal-panel {
    max-height: calc(100vh - 24px);
    overflow-y: auto;
  }

  .demo-video-shell {
    min-height: auto;
  }

  .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;
  }
}

@keyframes demo-pulse {
  0%,
  100% {
    transform: translateY(0);
    border-color: rgba(255, 255, 255, 0.12);
  }
  50% {
    transform: translateY(-5px);
    border-color: rgba(94, 234, 212, 0.36);
  }
}

@keyframes demo-progress {
  0% {
    transform: translateX(-80%);
  }
  50% {
    transform: translateX(80%);
  }
  100% {
    transform: translateX(180%);
  }
}

/* 2026-07 unified global-trade motion system */
html {
  overflow-y: scroll;
  scrollbar-gutter: stable;
  scroll-behavior: auto;
  scroll-padding-top: 82px;
}

body {
  background: #050d1a;
}

.scroll-progress {
  display: none !important;
}

.scroll-progress-bar {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(180deg, #c7f8ff, #5eead4 48%, #60a5fa);
  box-shadow: 0 0 12px rgba(94, 234, 212, 0.8);
  transform: scaleY(var(--scroll-progress, 0));
  transform-origin: top;
  transition: transform 80ms linear;
}

.topbar {
  background: rgba(248, 251, 255, 0.74);
  border-bottom-color: rgba(148, 163, 184, 0.2);
  backdrop-filter: blur(20px) saturate(130%);
  transition: background 240ms ease, border-color 240ms ease, transform 500ms cubic-bezier(0.22, 1, 0.36, 1), opacity 400ms ease;
}

.home-page .topbar {
  opacity: 0;
  transform: translateY(-105%);
  background: rgba(5, 14, 29, 0.32);
  backdrop-filter: blur(18px) saturate(125%);
}

.home-page.intro-home .topbar,
.home-page.is-ready .topbar {
  opacity: 1;
  transform: translateY(0);
}

.home-page .topbar.is-scrolled,
.topbar.is-scrolled {
  background: rgba(5, 13, 27, 0.94);
  border-bottom-color: rgba(143, 242, 230, 0.14);
  backdrop-filter: blur(24px) saturate(115%);
}

.nav {
  transition: min-height 220ms ease, padding 220ms ease;
}

.topbar.is-scrolled .nav {
  min-height: 62px;
}

.nav-link,
.dropdown-trigger {
  position: relative;
  white-space: nowrap;
}

.nav-link::after,
.dropdown-trigger::after {
  position: absolute;
  right: 12px;
  bottom: 4px;
  left: 12px;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, #8ff2e6, transparent);
  box-shadow: 0 0 10px rgba(143, 242, 230, 0.75);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 200ms ease;
}

.nav-link:hover::after,
.nav-link:focus-visible::after,
.dropdown-trigger:hover::after,
.dropdown-trigger:focus-visible::after,
.dropdown.open .dropdown-trigger::after {
  transform: scaleX(1);
}

.dropdown-menu {
  transform: translateY(8px);
  opacity: 0;
  transition: opacity 180ms ease, transform 180ms ease;
}

.dropdown.open .dropdown-menu {
  transform: translateY(0);
  opacity: 1;
}

.nav-toggle {
  width: 44px;
  height: 44px;
  display: none;
  place-items: center;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
}

.nav-toggle span {
  width: 20px;
  height: 1px;
  display: block;
  margin: 2px 0;
  background: currentColor;
  transition: transform 200ms ease, opacity 200ms ease;
}

.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}

.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}

.home-page.is-loading {
  overflow-x: clip;
}

.home-page .hero {
  min-height: max(100svh, 820px);
  padding-top: 78px;
  isolation: isolate;
  background: #030916;
}

.home-page .hero::before,
.home-page .hero::after {
  display: none;
}

.hero-scene {
  --scene-shift: 0px;
  --scene-blur: 0px;
  position: absolute;
  inset: -4% -2%;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  filter: blur(var(--scene-blur));
  transform: translate3d(0, var(--scene-shift), 0) scale(1.04);
  transform-origin: center top;
  transition: filter 180ms linear;
  will-change: transform, filter;
}

.trade-canvas {
  width: 100%;
  height: 100%;
  display: block;
}

.hero-atmosphere {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 9, 22, 0.82), rgba(3, 12, 26, 0.38) 55%, rgba(4, 25, 43, 0.08)),
    radial-gradient(circle at 14% 54%, rgba(8, 20, 42, 0.16), rgba(3, 9, 22, 0.58) 70%);
}

.intro-skip {
  position: fixed;
  top: 20px;
  right: 24px;
  z-index: 100;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(199, 248, 255, 0.22);
  border-radius: 999px;
  color: rgba(226, 247, 255, 0.78);
  background: rgba(4, 14, 31, 0.42);
  backdrop-filter: blur(14px);
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  letter-spacing: 0.08em;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease, opacity 350ms ease, transform 350ms ease;
}

.intro-skip:hover,
.intro-skip:focus-visible {
  color: #fff;
  border-color: rgba(143, 242, 230, 0.58);
  background: rgba(12, 36, 62, 0.72);
}

.home-page.is-ready .intro-skip,
.intro-skip[aria-hidden="true"] {
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
}

.home-page .hero-inner {
  z-index: 2;
  padding: 84px 0 56px;
}

.home-page .hero-copy {
  --intro-y: 0px;
  opacity: 1;
  transform: translate3d(0, var(--parallax-y, 0px), 0);
}

.home-page .hero-copy .eyebrow,
.home-page .hero-brand-title {
  opacity: 0;
  transform: translate3d(15vw, 11vh, 0) scale(1.08);
  transform-origin: left center;
  transition: opacity 900ms ease, transform 1400ms cubic-bezier(0.22, 1, 0.36, 1), filter 900ms ease;
  filter: blur(7px);
}

.home-page.intro-branding .hero-copy .eyebrow,
.home-page.intro-branding .hero-brand-title {
  opacity: 1;
  filter: blur(0);
}

.home-page.intro-home .hero-copy .eyebrow,
.home-page.intro-home .hero-brand-title,
.home-page.is-ready .hero-copy .eyebrow,
.home-page.is-ready .hero-brand-title {
  transform: translate3d(0, 0, 0) scale(1);
}

.home-page .hero h1 {
  margin: 16px 0 20px;
  max-width: 820px;
  font-size: inherit;
}

.hero-brand-title {
  display: block;
  width: fit-content;
  color: rgba(246, 251, 255, 0.96);
  text-shadow: 0 0 1px rgba(255, 255, 255, 0.9), 0 0 30px rgba(71, 168, 255, 0.26);
  font-size: clamp(48px, 6.4vw, 84px);
  line-height: 0.96;
  letter-spacing: -0.045em;
}

.hero-brand-title span {
  color: #bfeaff;
  font-size: 0.38em;
  letter-spacing: 0.24em;
  vertical-align: 0.65em;
}

.hero-main-title {
  display: block;
  max-width: 740px;
  margin-top: 20px;
  color: #f8fbff;
  font-size: clamp(38px, 4.7vw, 64px);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.home-page .hero-main-title,
.home-page .hero-copy > p,
.home-page .hero-actions {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 720ms ease, transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
}

.home-page.intro-home .hero-main-title,
.home-page.intro-home .hero-copy > p,
.home-page.intro-home .hero-actions,
.home-page.is-ready .hero-main-title,
.home-page.is-ready .hero-copy > p,
.home-page.is-ready .hero-actions {
  opacity: 1;
  transform: translateY(0);
}

.home-page.intro-home .hero-copy > p {
  transition-delay: 120ms;
}

.home-page.intro-home .hero-actions {
  transition-delay: 240ms;
}

.home-page .hero-panel,
.home-page .hero-bottom {
  transition: opacity 900ms ease, transform 1000ms cubic-bezier(0.22, 1, 0.36, 1);
}

.home-page .hero-panel {
  border-radius: 18px;
  background: linear-gradient(160deg, rgba(159, 211, 255, 0.13), rgba(255, 255, 255, 0.045));
  box-shadow: 0 28px 78px rgba(0, 0, 0, 0.3), inset 0 1px rgba(255, 255, 255, 0.08);
}

.btn {
  transition: color 200ms ease, background 200ms ease, border-color 200ms ease, box-shadow 200ms ease, transform 200ms ease;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #2563eb, #14b8a6);
  box-shadow: 0 14px 34px rgba(37, 99, 235, 0.28), 0 0 20px rgba(20, 184, 166, 0.14);
  transform: translateY(-2px);
}

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

.btn:active {
  transform: translateY(0) scale(0.97);
}

.home-page .section {
  padding: 96px 0;
}

.home-page .section-head {
  margin-bottom: 42px;
}

.home-page .card,
.home-page .product-card,
.home-page .metric-card,
.home-page .step,
.home-page .match-copy,
.home-page .match-panel {
  border-radius: 18px;
  box-shadow: 0 20px 52px rgba(0, 0, 0, 0.22), inset 0 1px rgba(255, 255, 255, 0.05);
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease, background 200ms ease;
}

.home-page .card,
.home-page .product-card,
.home-page .metric-card,
.home-page .step {
  position: relative;
}

.home-page .card::after,
.home-page .product-card::after,
.home-page .metric-card::after,
.home-page .step::after {
  position: absolute;
  inset: -1px;
  border: 1px solid transparent;
  border-radius: inherit;
  content: "";
  pointer-events: none;
  opacity: 0;
  box-shadow: 0 0 26px rgba(94, 234, 212, 0.16);
  transition: opacity 200ms ease, border-color 200ms ease;
}

.home-page .card:hover::after,
.home-page .product-card:hover::after,
.home-page .metric-card:hover::after,
.home-page .step:hover::after,
.home-page .card:focus-within::after,
.home-page .product-card:focus-within::after,
.home-page .metric-card:focus-within::after,
.home-page .step:focus-within::after {
  opacity: 1;
  border-color: rgba(143, 242, 230, 0.22);
}

.home-page #products .grid-4 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.home-page .product-card {
  min-height: 320px;
  padding: 30px;
}

.home-page .product-card h3 {
  transition: color 200ms ease, text-shadow 200ms ease;
}

.home-page .product-card:hover h3,
.home-page .product-card:focus-within h3 {
  color: #fff;
  text-shadow: 0 0 18px rgba(143, 242, 230, 0.3);
}

.home-page .product-links {
  opacity: 0.62;
  transform: translateY(8px);
  transition: opacity 200ms ease, transform 200ms ease;
}

.home-page .product-card:hover .product-links,
.home-page .product-card:focus-within .product-links {
  opacity: 1;
  transform: translateY(0);
}

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

.home-page .timeline .step {
  min-height: 190px;
  padding: 28px;
  background: linear-gradient(145deg, rgba(122, 194, 255, 0.09), rgba(255, 255, 255, 0.035));
}

.home-page .timeline .step:nth-child(even) {
  margin-top: 26px;
}

.home-page .step-num {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(143, 242, 230, 0.28);
  border-radius: 14px;
  color: #d8fffa;
  background: linear-gradient(145deg, rgba(20, 184, 166, 0.28), rgba(37, 99, 235, 0.34));
  box-shadow: 0 0 24px rgba(94, 234, 212, 0.12);
  font-size: 18px;
}

.global-network {
  background: linear-gradient(180deg, rgba(5, 14, 29, 0.99), rgba(6, 21, 40, 0.98)) !important;
}

.network-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.55fr);
  gap: 24px;
  align-items: stretch;
}

.network-map {
  position: relative;
  min-height: 510px;
  overflow: hidden;
  border: 1px solid rgba(143, 242, 230, 0.14);
  border-radius: 22px;
  background:
    radial-gradient(ellipse at 64% 48%, rgba(20, 184, 166, 0.13), transparent 28%),
    linear-gradient(rgba(124, 185, 241, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124, 185, 241, 0.055) 1px, transparent 1px),
    linear-gradient(145deg, rgba(15, 48, 79, 0.42), rgba(3, 13, 28, 0.72));
  background-size: auto, 44px 44px, 44px 44px, auto;
  box-shadow: 0 30px 82px rgba(0, 0, 0, 0.28), inset 0 1px rgba(255, 255, 255, 0.05);
}

.network-map::before,
.network-map::after,
.network-orbit {
  position: absolute;
  border: 1px solid rgba(115, 191, 255, 0.12);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.network-map::before {
  width: 78%;
  height: 62%;
  top: 18%;
  left: 11%;
  transform: rotate(-8deg);
}

.network-map::after {
  width: 54%;
  height: 82%;
  top: 8%;
  left: 24%;
  transform: rotate(12deg);
}

.network-orbit {
  width: 92%;
  height: 28%;
  top: 35%;
  left: 4%;
  transform: rotate(8deg);
}

.orbit-two {
  top: 49%;
  transform: rotate(-10deg);
}

.region-node {
  position: absolute;
  top: var(--y);
  left: var(--x);
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: rgba(219, 238, 255, 0.66);
  background: rgba(4, 14, 31, 0.52);
  transform: translate(-50%, -50%);
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  transition: color 200ms ease, border-color 200ms ease, background 200ms ease, box-shadow 200ms ease, transform 200ms ease;
}

.region-node span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #78baff;
  box-shadow: 0 0 12px rgba(96, 165, 250, 0.8);
}

.region-node:hover,
.region-node:focus-visible,
.region-node.active {
  color: #fff;
  border-color: rgba(143, 242, 230, 0.32);
  background: rgba(17, 57, 82, 0.78);
  box-shadow: 0 0 28px rgba(94, 234, 212, 0.15);
  transform: translate(-50%, -50%) scale(1.06);
}

.region-node.active span {
  background: #8ff2e6;
  box-shadow: 0 0 18px rgba(94, 234, 212, 1);
  animation: region-breathe 2.8s ease-in-out infinite;
}

.network-status {
  position: absolute;
  right: 20px;
  bottom: 18px;
  left: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 15px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 14px;
  color: rgba(234, 247, 255, 0.84);
  background: rgba(3, 13, 28, 0.56);
  backdrop-filter: blur(14px);
  font-size: 13px;
}

.network-status > span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #5eead4;
  box-shadow: 0 0 12px rgba(94, 234, 212, 0.8);
}

.metric-grid {
  display: grid;
  gap: 16px;
}

.home-page .metric-card {
  min-height: 0;
  padding: 28px;
}

.metric-card > strong {
  display: block;
  color: #d7f7ff;
  font-family: var(--font-display);
  font-size: 54px;
  line-height: 1;
  text-shadow: 0 0 28px rgba(96, 165, 250, 0.22);
}

.metric-card > span {
  display: block;
  margin: 12px 0 8px;
  color: #f8fbff;
  font-weight: 900;
}

.image-fade {
  opacity: 0;
  transition: opacity 420ms ease;
}

.image-fade.is-loaded {
  opacity: 1;
}

body[data-quality="low"] .hero-scene,
body[data-quality="low"] .topbar,
body[data-quality="low"] .home-page .card,
body[data-quality="low"] .network-status {
  backdrop-filter: none;
}

body[data-quality="low"] .hero-scene {
  filter: none;
  transform: none;
}

@media (max-width: 980px) {
  .nav {
    min-height: 68px;
    flex-flow: row wrap;
    align-items: center;
    padding: 8px 0;
  }

  .nav-toggle {
    display: grid;
    margin-left: auto;
  }

  .nav-links,
  .nav-actions,
  .home-page .nav-actions {
    width: 100%;
    display: none;
    overflow: visible;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    background: rgba(5, 14, 29, 0.94);
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.3);
  }

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

  .nav-open .nav-actions {
    margin-top: -6px;
    padding-top: 4px;
    border-top: 0;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }

  .nav-open .nav-links {
    padding-bottom: 8px;
    border-bottom: 0;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
  }

  .nav-link,
  .dropdown-trigger {
    width: 100%;
    justify-content: flex-start;
    padding: 0 14px;
  }

  .nav-open .nav-link,
  .nav-open .dropdown-trigger {
    color: #f8fbff;
  }

  .nav-actions .btn {
    width: 100%;
  }

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

  .home-page .hero {
    padding-top: 0;
  }

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

  .network-layout {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 680px) {
  html {
    scroll-padding-top: 72px;
  }

  .scroll-progress {
    top: 82px;
    right: 3px;
    height: calc(100vh - 104px);
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .brand-name {
    font-size: 17px;
  }

  .home-page .hero {
    min-height: 100svh;
  }

  .home-page .hero-inner {
    padding: 134px 0 42px;
  }

  .home-page .hero-copy .eyebrow,
  .home-page .hero-brand-title {
    transform: translate3d(0, 7vh, 0) scale(1.04);
  }

  .hero-brand-title {
    font-size: 48px;
  }

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

  .hero-brand-title span {
    display: block;
    margin-bottom: 10px;
    font-size: 13px;
    letter-spacing: 0.2em;
    vertical-align: 0;
  }

  .home-page .hero-main-title {
    margin-top: 18px;
    font-size: 36px;
  }

  .home-page .hero p {
    font-size: 16px;
    line-height: 1.75;
  }

  .home-page .hero-panel {
    padding: 18px;
  }

  .home-page .hero-bottom {
    padding-bottom: 26px;
  }

  .home-page .section {
    padding: 72px 0;
  }

  .home-page #products .grid-4,
  .metric-grid {
    grid-template-columns: 1fr;
  }

  .home-page .product-card {
    min-height: 0;
    padding: 24px;
  }

  .home-page .product-links {
    opacity: 1;
    transform: none;
  }

  .home-page .timeline .step:nth-child(even) {
    margin-top: 0;
  }

  .network-map {
    min-height: 390px;
  }

  .region-node {
    padding: 6px 8px;
    font-size: 11px;
  }

  .network-status {
    right: 12px;
    bottom: 12px;
    left: 12px;
  }

  .intro-skip {
    top: 16px;
    right: 16px;
  }
}

@media (hover: none) {
  .home-page .product-links {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .intro-skip {
    display: none;
  }

  .hero-scene {
    filter: none;
    transform: none;
  }
}

@keyframes region-breathe {
  0%, 100% {
    transform: scale(0.92);
    opacity: 0.72;
  }
  50% {
    transform: scale(1.28);
    opacity: 1;
  }
}

/* 2026-07 fresh ivory theme */
:root {
  --primary: #0f766e;
  --primary-50: #ecfdf5;
  --teal: #10b981;
  --teal-dark: #047857;
  --ink: #17332a;
  --muted: #63756e;
  --line: rgba(42, 91, 73, 0.13);
  --panel: rgba(255, 255, 255, 0.88);
  --accent-soft: #dff8ed;
  --shadow-soft: 0 18px 48px rgba(42, 84, 67, 0.08);
  --shadow: 0 24px 64px rgba(42, 84, 67, 0.14);
}

body,
.home-page,
.landing-page {
  color: var(--ink);
  background: #fbfaf6;
}

.scroll-progress {
  background: rgba(15, 118, 110, 0.1);
}

.scroll-progress-bar {
  background: linear-gradient(180deg, #0f766e, #34b98a 52%, #c48b35);
  box-shadow: 0 0 12px rgba(22, 140, 102, 0.28);
}

.topbar,
.home-page .topbar,
.landing-page .topbar {
  border-bottom-color: rgba(36, 91, 70, 0.1);
  background: rgba(255, 255, 252, 0.72);
  backdrop-filter: blur(22px) saturate(135%);
}

.home-page .topbar.is-scrolled,
.landing-page .topbar.is-scrolled,
.topbar.is-scrolled {
  border-bottom-color: rgba(36, 91, 70, 0.12);
  background: rgba(255, 255, 252, 0.96);
  box-shadow: 0 10px 34px rgba(36, 84, 65, 0.06);
}

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

.home-page .brand-sub,
.landing-page .brand-sub,
.brand-sub {
  color: #73867e;
}

.home-page .brand-mark,
.landing-page .brand-mark,
.brand-mark {
  color: #fff;
  background: linear-gradient(145deg, #0f766e, #41b98d);
  box-shadow: 0 12px 28px rgba(15, 118, 110, 0.18);
}

.home-page .nav-link,
.landing-page .nav-link,
.nav-link,
.home-page .dropdown-trigger,
.landing-page .dropdown-trigger,
.dropdown-trigger {
  color: #38554a;
}

.home-page .nav-link:hover,
.landing-page .nav-link:hover,
.nav-link:hover,
.home-page .dropdown-trigger:hover,
.landing-page .dropdown-trigger:hover,
.dropdown-trigger:hover {
  color: #0f766e;
  background: rgba(15, 118, 110, 0.055);
}

.nav-link::after,
.dropdown-trigger::after {
  background: linear-gradient(90deg, transparent, #0f8b69, #c38a37, transparent);
  box-shadow: 0 0 10px rgba(15, 139, 105, 0.25);
}

.nav-lang,
.nav-utility-link {
  color: #6a7f76;
}

.nav-toggle {
  color: #21463a;
  border-color: rgba(36, 91, 70, 0.14);
  background: rgba(255, 255, 255, 0.72);
}

.home-page .hero {
  background: #fffefa;
}

.hero-atmosphere {
  background:
    linear-gradient(90deg, rgba(255, 254, 250, 0.88), rgba(255, 255, 252, 0.42) 57%, rgba(246, 252, 247, 0.08)),
    radial-gradient(circle at 15% 54%, rgba(255, 255, 255, 0.14), rgba(255, 254, 250, 0.44) 72%);
}

.intro-skip {
  color: #49665b;
  border-color: rgba(15, 118, 110, 0.18);
  background: rgba(255, 255, 252, 0.72);
  box-shadow: 0 10px 28px rgba(36, 84, 65, 0.08);
}

.intro-skip:hover,
.intro-skip:focus-visible {
  color: #0f766e;
  border-color: rgba(15, 118, 110, 0.38);
  background: rgba(255, 255, 255, 0.96);
}

.home-page .eyebrow,
.landing-page .eyebrow,
.eyebrow {
  color: #0b8a63;
}

.hero-brand-title {
  position: relative;
  color: #153b2f;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.9), 0 18px 46px rgba(15, 118, 110, 0.1);
}

.hero-brand-title span {
  color: #b0792e;
}

.hero-brand-title::after {
  width: 88%;
  height: 2px;
  display: block;
  margin-top: 13px;
  content: "";
  background: linear-gradient(90deg, #0f8b69, rgba(15, 139, 105, 0.16) 62%, #c79140, transparent);
  box-shadow: 0 0 18px rgba(21, 143, 105, 0.14);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1200ms cubic-bezier(0.22, 1, 0.36, 1) 220ms;
}

.home-page.intro-home .hero-brand-title::after,
.home-page.is-ready .hero-brand-title::after {
  transform: scaleX(1);
}

.hero-main-title,
.home-page .hero-main-title {
  color: #17332a;
}

.home-page .hero p {
  color: #5d7169;
}

.home-page .hero-panel {
  color: #17332a;
  border-color: rgba(28, 106, 78, 0.13);
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.9), rgba(244, 251, 246, 0.72));
  box-shadow: 0 28px 78px rgba(45, 90, 71, 0.11), inset 0 1px rgba(255, 255, 255, 0.92);
}

.hero-panel-head span,
.hero-panel-item > span {
  color: #0f8b69;
}

.hero-panel-head strong,
.hero-panel-item strong,
.hero-panel-foot strong {
  color: #17332a;
}

.home-page .hero-panel-item p,
.hero-panel-foot span {
  color: #63776f;
}

.hero-panel-foot {
  border-top-color: rgba(28, 106, 78, 0.11);
}

.proof-item {
  border-color: rgba(28, 106, 78, 0.12);
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 18px 46px rgba(45, 90, 71, 0.07);
}

.proof-item strong {
  color: #17332a;
}

.proof-item span {
  color: #65786f;
}

.hero-legal,
.hero-scroll {
  color: #6b7e76;
}

.hero-scroll::before {
  background: linear-gradient(90deg, #0f8b69, #c79140);
}

.btn-primary,
.home-page .btn-primary,
.landing-page .btn-primary {
  color: #fff;
  border-color: #0f766e;
  background: linear-gradient(135deg, #0f766e, #2ead7f);
  box-shadow: 0 12px 28px rgba(15, 118, 110, 0.18);
}

.btn-primary:hover,
.home-page .btn-primary:hover,
.landing-page .btn-primary:hover {
  color: #fff;
  border-color: #0b695f;
  background: linear-gradient(135deg, #0b695f, #34b987 72%, #b98536);
  box-shadow: 0 14px 34px rgba(15, 118, 110, 0.22), 0 0 20px rgba(196, 139, 53, 0.1);
}

.btn-outline,
.home-page .btn-outline,
.landing-page .btn-outline {
  color: #31594b;
  border-color: rgba(38, 93, 72, 0.18);
  background: rgba(255, 255, 255, 0.66);
}

.btn-outline:hover,
.home-page .btn-outline:hover,
.landing-page .btn-outline:hover {
  color: #0f766e;
  border-color: rgba(15, 118, 110, 0.38);
  background: rgba(236, 253, 245, 0.88);
}

.home-page .section,
.home-page .section.tint,
.landing-page .section,
.landing-page .section.tint {
  border-top-color: rgba(35, 93, 70, 0.09);
  background: #fffefa;
}

.home-page .section.tint,
.landing-page .section.tint {
  background: linear-gradient(180deg, #f7fbf7, #fcfaf5);
}

.home-page .section::before,
.landing-page .section::before {
  background:
    radial-gradient(circle at 12% 20%, rgba(46, 173, 127, 0.08), transparent 32%),
    radial-gradient(circle at 86% 22%, rgba(198, 145, 59, 0.07), transparent 28%),
    linear-gradient(90deg, rgba(42, 110, 83, 0.035) 1px, transparent 1px),
    linear-gradient(rgba(42, 110, 83, 0.035) 1px, transparent 1px);
  background-size: auto, auto, 44px 44px, 44px 44px;
  opacity: 0.68;
}

.home-page .section-head h2,
.landing-page .section-head h2,
.home-page .match-copy h2,
.section-head h2 {
  color: #17332a;
}

.home-page .section-head p,
.landing-page .section-head p,
.home-page .copy,
.landing-page .copy,
.home-page .match-copy p,
.section-head p {
  color: #63756e;
}

.match-section {
  background: linear-gradient(180deg, #f6fbf7, #fffaf2) !important;
}

.home-page .match-copy,
.home-page .match-panel,
.home-page .recommendation-result,
.landing-page .trial-demo,
.landing-page .trial-panel {
  border-color: rgba(33, 102, 76, 0.12);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 20px 54px rgba(45, 90, 71, 0.09);
}

.field-label {
  color: #36594d;
}

.home-page .card,
.home-page .product-card,
.home-page .metric-card,
.home-page .form-panel,
.home-page .step,
.landing-page .card,
.landing-page .product-card,
.landing-page .metric-card,
.landing-page .form-panel,
.landing-page .step {
  border-color: rgba(33, 102, 76, 0.12);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 20px 52px rgba(45, 90, 71, 0.08), inset 0 1px rgba(255, 255, 255, 0.92);
}

.home-page .card:hover,
.home-page .product-card:hover,
.home-page .metric-card:hover,
.home-page .step:hover,
.landing-page .card:hover,
.landing-page .product-card:hover,
.landing-page .metric-card:hover,
.landing-page .step:hover {
  border-color: rgba(15, 139, 105, 0.3);
  background: #fff;
  box-shadow: 0 28px 70px rgba(45, 90, 71, 0.13);
}

.home-page .card::after,
.home-page .product-card::after,
.home-page .metric-card::after,
.home-page .step::after {
  box-shadow: 0 0 26px rgba(15, 139, 105, 0.11);
}

.home-page .card:hover::after,
.home-page .product-card:hover::after,
.home-page .metric-card:hover::after,
.home-page .step:hover::after,
.home-page .card:focus-within::after,
.home-page .product-card:focus-within::after,
.home-page .metric-card:focus-within::after,
.home-page .step:focus-within::after {
  border-color: rgba(15, 139, 105, 0.18);
}

.home-page .card h3,
.home-page .product-card h3,
.home-page .metric-card h3,
.home-page .step h3,
.landing-page .card h3,
.landing-page .product-card h3,
.landing-page .metric-card h3,
.landing-page .step h3 {
  color: #17332a;
}

.home-page .card p,
.home-page .product-card p,
.home-page .metric-card p,
.home-page .step p,
.landing-page .card p,
.landing-page .product-card p,
.landing-page .metric-card p,
.landing-page .step p {
  color: #64766f;
}

.home-page .product-card:hover h3,
.home-page .product-card:focus-within h3 {
  color: #0f766e;
  text-shadow: 0 0 18px rgba(15, 139, 105, 0.12);
}

.product-label,
.tag,
.product-label.blue,
.product-label.coral {
  color: #076a4c;
  background: #e5f8ef;
}

.product-label.gold {
  color: #8a621f;
  background: #fff4dc;
}

.home-page .timeline .step {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(239, 250, 243, 0.72));
}

.home-page .step-num {
  color: #fff;
  border-color: rgba(15, 118, 110, 0.16);
  background: linear-gradient(145deg, #0f766e, #40b78a);
  box-shadow: 0 12px 28px rgba(15, 118, 110, 0.16);
}

.home-page .icon-box,
.landing-page .icon-box,
.product-card .icon-box {
  color: #0f766e;
  border-color: rgba(15, 118, 110, 0.12);
  background: linear-gradient(145deg, #ecfdf5, #fff7e7);
}

.global-network {
  background: linear-gradient(180deg, #fbfdf9, #fffaf1) !important;
}

.network-map {
  border-color: rgba(28, 106, 78, 0.14);
  background:
    radial-gradient(ellipse at 64% 48%, rgba(46, 173, 127, 0.12), transparent 28%),
    radial-gradient(ellipse at 31% 34%, rgba(201, 147, 60, 0.08), transparent 24%),
    linear-gradient(rgba(42, 110, 83, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(42, 110, 83, 0.05) 1px, transparent 1px),
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(239, 249, 241, 0.82));
  background-size: auto, auto, 44px 44px, 44px 44px, auto;
  box-shadow: 0 30px 82px rgba(45, 90, 71, 0.1), inset 0 1px rgba(255, 255, 255, 0.9);
}

.network-map::before,
.network-map::after,
.network-orbit {
  border-color: rgba(34, 125, 91, 0.13);
}

.region-node {
  color: #5e746b;
  border-color: rgba(32, 106, 78, 0.08);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 8px 22px rgba(45, 90, 71, 0.07);
}

.region-node span {
  background: #2eae7f;
  box-shadow: 0 0 12px rgba(46, 174, 127, 0.32);
}

.region-node:hover,
.region-node:focus-visible,
.region-node.active {
  color: #0f5f49;
  border-color: rgba(15, 118, 110, 0.28);
  background: #fff;
  box-shadow: 0 14px 34px rgba(45, 90, 71, 0.12);
}

.region-node.active span {
  background: #c28a36;
  box-shadow: 0 0 18px rgba(194, 138, 54, 0.36);
}

.network-status {
  color: #395b4e;
  border-color: rgba(33, 102, 76, 0.11);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 30px rgba(45, 90, 71, 0.08);
}

.metric-card > strong {
  color: #0f766e;
  text-shadow: 0 12px 34px rgba(15, 118, 110, 0.12);
}

.metric-card > span {
  color: #17332a;
}

.landing-page .page-hero {
  border-bottom-color: rgba(35, 93, 70, 0.09);
  background:
    radial-gradient(circle at 82% 30%, rgba(48, 177, 129, 0.12), transparent 28%),
    radial-gradient(circle at 65% 74%, rgba(199, 146, 60, 0.08), transparent 25%),
    linear-gradient(135deg, #fffefa, #f5fbf6 58%, #fffaf1);
}

.landing-page .page-hero::before {
  background:
    linear-gradient(rgba(35, 106, 78, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(35, 106, 78, 0.045) 1px, transparent 1px);
  background-size: 48px 48px;
}

.landing-page .page-hero h1,
.landing-page .page-hero p {
  color: #17332a;
}

.landing-page .signal-panel {
  color: #17332a;
  border-color: rgba(33, 102, 76, 0.12);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 22px 58px rgba(45, 90, 71, 0.1);
}

.landing-page .signal-panel strong {
  color: #0f766e;
}

.landing-page .signal-panel p {
  color: #62756d;
}

.home-page .footer,
.landing-page .footer,
.footer {
  color: #5d7168;
  border-top-color: rgba(34, 95, 72, 0.1);
  background: linear-gradient(180deg, #f8fbf7, #fffaf2);
}

.home-page .footer::before,
.landing-page .footer::before {
  opacity: 0.16;
}

.footer-column-title,
.footer-tab,
.footer-legal,
.footer a {
  color: #38584c;
}

.footer-link,
.footer-legal {
  color: #70827b;
}

.demo-modal {
  background: rgba(30, 55, 45, 0.3);
}

.demo-modal-panel {
  border-color: rgba(33, 102, 76, 0.14);
  background: #fffefa;
  box-shadow: 0 34px 90px rgba(45, 90, 71, 0.22);
}

.demo-modal-copy h2,
.demo-modal-copy p {
  color: #17332a;
}

@media (max-width: 980px) {
  .nav-links,
  .nav-actions,
  .home-page .nav-actions {
    border-color: rgba(33, 102, 76, 0.11);
    background: rgba(255, 255, 252, 0.97);
    box-shadow: 0 22px 50px rgba(45, 90, 71, 0.12);
  }

  .nav-open .nav-link,
  .nav-open .dropdown-trigger {
    color: #31574a;
  }
}

/* Final hero signal composition overrides */
.hero-signal-map {
  width: 100%;
  min-height: 520px;
  border-radius: 28px;
  border-color: rgba(28, 106, 78, 0.14);
  background:
    radial-gradient(ellipse at 68% 42%, rgba(46, 173, 127, 0.15), transparent 25%),
    radial-gradient(ellipse at 28% 66%, rgba(201, 147, 60, 0.09), transparent 24%),
    linear-gradient(rgba(42, 110, 83, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(42, 110, 83, 0.045) 1px, transparent 1px),
    rgba(255, 255, 255, 0.76);
  background-size: auto, auto, 40px 40px, 40px 40px, auto;
  box-shadow: 0 34px 96px rgba(44, 88, 69, 0.13), inset 0 1px rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
}

.hero-signal-map::before {
  width: 84%;
  height: 68%;
  top: 16%;
  left: 8%;
}

.hero-signal-map::after {
  width: 58%;
  height: 86%;
  top: 7%;
  left: 21%;
}

.growth-metric-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.growth-metric-grid .metric-card {
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (max-width: 680px) {
  .hero-signal-map {
    min-height: 430px;
    border-radius: 22px;
  }

  .growth-metric-grid {
    grid-template-columns: 1fr;
  }

  .growth-metric-grid .metric-card {
    min-height: 190px;
  }
}

/* Final mobile interaction targets */
@media (max-width: 680px) {
  .home-page .hero-network-embedded .network-signal-map .region-node {
    min-height: 44px;
  }

  .product-security-banner > a,
  .download-security-panel > a,
  .assessment-account-chip button,
  .member-text-button {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }

  .assessment-account-chip button {
    min-width: 44px;
    justify-content: center;
    margin-top: 2px;
  }

  .member-password-field button {
    min-width: 44px;
    min-height: 40px;
  }

  .member-text-button {
    justify-content: center;
  }
}
