/* ============================================================
   dataww — Design System
   Based on FrameBase design language
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  --ink:        #0A0E17;
  --ink-2:      #121828;
  --ink-3:      #1C2437;
  --paper:      #FFFFFF;
  --paper-2:    #F6F5F1;
  --paper-3:    #ECEAE3;
  --line:       #E1DED5;
  --line-dark:  rgba(255,255,255,.14);

  --tx:         #0A0E17;
  --tx-soft:    #4A5060;
  --tx-muted:   #585E6E;
  --tx-inv:     #F6F5F1;
  --tx-inv-soft:rgba(246,245,241,.78);

  --violet:     #3157C8;
  --violet-d:   #223E96;
  --violet-l:   #EEF3FF;
  --cyan:       #1BC7B4;
  --amber:      #FFB454;
  --rose:       #FF6B6B;

  --sans: "Inter Tight", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  --serif: "Instrument Serif", "Times New Roman", Georgia, serif;
  --mono: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;

  --wrap: 1240px;
  --gut: 28px;
  --r-s: 8px;
  --r-m: 14px;
  --r-l: 22px;
  --r-xl: 32px;

  --nav-h: 74px;
  --ease: cubic-bezier(.22,.68,.28,1);
  --scan-card-gap: 28px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

/* ---------- Skip to content (a11y) ---------- */
.skip-link {
  position: absolute; top: -100px; left: 16px; z-index: 999;
  background: var(--ink); color: var(--tx-inv);
  padding: 12px 20px; border-radius: var(--r-s);
  font-size: 14px; font-weight: 600; transition: top .25s var(--ease);
}
.skip-link:focus { top: 16px; }

/* ---------- Focus visible (a11y) ---------- */
:focus-visible {
  outline: 2.5px solid var(--violet);
  outline-offset: 2px;
  border-radius: 4px;
}
.btn:focus-visible, .nav-l > a:focus-visible, .nav-drop-btn:focus-visible,
.faq-q:focus-visible, .check-item:focus-within {
  outline: 2.5px solid var(--violet);
  outline-offset: 3px;
}
.hdr.on-dark-nav .btn:focus-visible, .hdr.on-dark-nav .nav-l > a:focus-visible {
  outline-color: var(--cyan);
}

body {
  margin: 0;
  font-family: var(--sans);
  background: var(--paper-2);
  color: var(--tx);
  font-size: 17px;
  line-height: 1.62;
  letter-spacing: -0.005em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
ul { margin: 0; padding: 0; list-style: none; }
h1,h2,h3,h4,h5 { margin: 0; font-weight: 600; letter-spacing: -0.035em; line-height: 1.06; text-wrap: balance; }
p { margin: 0; text-wrap: pretty; }
::selection { background: var(--violet); color: #fff; }

/* ---------- Utilities ---------- */
.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gut); }
.wrap-wide { max-width: 1440px; }
.stack > * + * { margin-top: 18px; }
.center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.nowrap { white-space: nowrap; }

.eyebrow {
  font-size: 11.5px; font-weight: 600; letter-spacing: .22em;
  text-transform: uppercase; color: var(--violet);
  display: inline-flex; align-items: center; gap: 9px;
}
.eyebrow::before { content: ""; width: 22px; height: 1.5px; background: currentColor; opacity: .8; }
.eyebrow.on-dark { color: var(--cyan); }

.h-xl { font-size: clamp(42px, 6.4vw, 88px); line-height: .98; letter-spacing: -0.045em; }
.h-l  { font-size: clamp(34px, 4.4vw, 60px); letter-spacing: -0.04em; }
.h-m  { font-size: clamp(26px, 2.8vw, 38px); letter-spacing: -0.035em; }
.h-s  { font-size: clamp(20px, 2vw, 25px); letter-spacing: -0.03em; }
.lead { font-size: clamp(17px, 1.35vw, 20px); line-height: 1.6; color: var(--tx-muted); }
.small { font-size: 14.5px; line-height: 1.6; color: var(--tx-muted); }
.tiny { font-size: 12.5px; color: var(--tx-muted); }
em.dis { font-family: var(--serif); font-style: italic; font-weight: 400; letter-spacing: -0.01em; }

.on-dark { color: var(--tx-inv); }
.on-dark .lead, .on-dark .small, .on-dark .tiny { color: var(--tx-inv-soft); }

.sec { padding: clamp(72px, 8vw, 128px) 0; }
.sec-tight { padding: clamp(56px, 5.5vw, 88px) 0; }
.hero + .sec { padding-top: clamp(54px, 6vw, 86px); }
.sec-dark { background: var(--ink); color: var(--tx-inv); position: relative; overflow: hidden; }
.sec-paper { background: var(--paper); }

.sec-head { max-width: 780px; }
.sec-head:has(.lead) {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(320px, .74fr);
  gap: clamp(28px, 6vw, 92px);
  align-items: end;
}
.sec-head:has(.lead) .eyebrow,
.sec-head:has(.lead) .h-l,
.sec-head:has(.lead) .h-m {
  grid-column: 1;
}
.sec-head .h-l, .sec-head .h-m { margin-top: 20px; }
.sec-head .lead { margin-top: 20px; }
.sec-head:has(.lead) .lead {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: end;
  margin-top: 0;
  max-width: 660px;
}
.sec-head:has(.lead) .lead + .lead {
  grid-row: auto;
  align-self: start;
  margin-top: 14px;
}
.sec-head:has(.lead + .lead) {
  display: block;
  max-width: 860px;
}
.sec-head:has(.lead + .lead) .lead {
  max-width: 760px;
  margin-top: 18px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  height: 50px; padding: 0 26px; border-radius: 100px;
  font-size: 14.5px; font-weight: 600; letter-spacing: -0.01em;
  transition: all .28s var(--ease); white-space: nowrap;
}
.btn svg { width: 15px; height: 15px; transition: transform .28s var(--ease); }
.btn:hover svg { transform: translateX(4px); }
.btn-primary { background: var(--violet); color: #fff; }
.btn-primary:hover { background: var(--violet-d); transform: translateY(-2px); box-shadow: 0 12px 28px -10px rgba(91,75,255,.6); }
.btn-dark { background: var(--ink); color: var(--tx-inv); }
.btn-dark:hover { background: var(--ink-3); transform: translateY(-2px); }
.btn-ghost { border: 1.5px solid var(--line); color: var(--tx); background: transparent; }
.btn-ghost:hover { border-color: var(--ink); background: var(--ink); color: var(--tx-inv); }
.btn-ghost-inv { border: 1.5px solid var(--line-dark); color: var(--tx-inv); }
.btn-ghost-inv:hover { background: var(--tx-inv); color: var(--ink); border-color: var(--tx-inv); }
.btn-quiet { color: var(--violet); background: rgba(91,75,255,.08); }
.btn-quiet:hover { background: rgba(91,75,255,.14); transform: translateY(-2px); }
.btn-sm { height: 42px; padding: 0 20px; font-size: 13.5px; }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  color: var(--violet); transition: gap .25s var(--ease);
}
.link-arrow svg { width: 14px; height: 14px; }
.link-arrow:hover { gap: 14px; }
.on-dark .link-arrow { color: var(--cyan); }

/* ---------- Language select ---------- */
.lang-select {
  position: relative;
  width: 112px;
  height: 40px;
  flex: none;
  z-index: 230;
}
.lang-current {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: 100%;
  height: 100%;
  border: 1.5px solid var(--line);
  border-radius: 100px;
  background: rgba(255,255,255,.82);
  color: var(--tx);
  font-size: 13px;
  font-weight: 650;
  letter-spacing: .01em;
  transition: background .2s var(--ease), border-color .2s var(--ease), color .2s var(--ease);
}
.hdr.on-dark-nav .lang-current,
.mnav .lang-current {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.22);
  color: var(--tx-inv);
}
.lang-current::after {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  opacity: .62;
}
.lang-select.open .lang-current::after { transform: rotate(225deg) translate(-2px,-1px); }
.lang-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: 168px;
  padding: 7px;
  border: 1px solid var(--line);
  border-radius: var(--r-m);
  background: var(--paper);
  box-shadow: 0 18px 46px -18px rgba(10,14,23,.28);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .18s var(--ease), transform .18s var(--ease), visibility .18s;
}
.lang-select.open .lang-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.lang-menu button {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  min-height: 38px;
  padding: 8px 10px;
  border-radius: var(--r-s);
  color: var(--tx);
  font-size: 14px;
  font-weight: 600;
  text-align: left;
  transition: background .16s var(--ease), color .16s var(--ease);
}
.lang-menu button:hover,
.lang-menu button[aria-selected="true"] {
  background: var(--violet-l);
  color: var(--violet-d);
}
.flag {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  flex: none;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(10,14,23,.16);
}
.flag-us {
  background:
    linear-gradient(#3C3B6E 0 0) 0 0 / 44% 54% no-repeat,
    repeating-linear-gradient(to bottom, #B22234 0 7.7%, #fff 7.7% 15.4%);
}
.flag-us::after {
  content: "";
  position: absolute;
  left: 3px;
  top: 3px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,.9);
  box-shadow: 6px 0 rgba(255,255,255,.72), 0 6px rgba(255,255,255,.72), 6px 6px rgba(255,255,255,.72);
  transform: scale(.45);
  transform-origin: 0 0;
}
.flag-cn {
  background: #DE2910;
}
.flag-cn::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 5px;
  width: 7px;
  height: 7px;
  background: #FFDE00;
  clip-path: polygon(50% 0, 61% 35%, 98% 35%, 68% 56%, 79% 91%, 50% 70%, 21% 91%, 32% 56%, 2% 35%, 39% 35%);
}
.flag-cn::after {
  content: "";
  position: absolute;
  left: 13px;
  top: 5px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #FFDE00;
  box-shadow: 2px 4px #FFDE00, 0 8px #FFDE00;
}

/* ---------- Header ---------- */
.hdr {
  position: fixed; inset: 0 0 auto 0; z-index: 200; height: var(--nav-h);
  display: flex; align-items: center;
  transition: background .35s var(--ease), border-color .35s var(--ease), backdrop-filter .35s;
  border-bottom: 1px solid transparent;
}
.hdr-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; width: 100%; }
.hdr.is-solid {
  background: rgba(246,245,241,.86); backdrop-filter: saturate(180%) blur(16px);
  border-bottom-color: var(--line);
}
.hdr.is-solid .logo-tx, .hdr.is-solid .nav-l > a, .hdr.is-solid .nav-drop-btn { color: var(--tx); }
.hdr.on-dark-nav .logo-tx, .hdr.on-dark-nav .nav-l > a, .hdr.on-dark-nav .nav-drop-btn { color: var(--tx-inv); }

.logo { display: flex; align-items: center; gap: 10px; }
.logo-mark { width: 34px; height: 34px; flex: none; margin-top: -3px; }
.logo-tx { font-size: 19px; font-weight: 700; letter-spacing: -0.045em; transition: color .3s; }
.logo-tx span { font-weight: 400; opacity: .55; }

.nav { display: flex; align-items: center; gap: 4px; }
.nav-l { display: flex; align-items: center; justify-content: center; gap: 2px; width: 550px; }
.nav-l > a {
  position: relative; padding: 9px 15px; border-radius: 100px;
  font-size: 14.5px; font-weight: 500; letter-spacing: -0.012em;
  transition: color .3s, background .25s;
  text-align: center;
  white-space: nowrap;
}
.nav-l > a[href="how-it-works.html"] { min-width: 112px; }
.nav-l > a[href="compliance.html"] { min-width: 148px; }
.nav-l > a[href="about.html"] { min-width: 82px; }
.nav-l > a[href="contact.html"] { min-width: 82px; }
.nav-l > a:hover { background: rgba(120,120,140,.12); }
.hdr.on-dark-nav .nav-l > a:hover { background: rgba(255,255,255,.1); }
.nav-l > a.active::after {
  content: ""; position: absolute; left: 15px; right: 15px; bottom: 2px;
  height: 2px; border-radius: 2px; background: var(--violet);
}
.hdr.on-dark-nav .nav-l > a.active::after { background: var(--cyan); }

.hdr-cta { display: flex; align-items: center; gap: 10px; }
.hdr-cta .btn-sm { min-width: 168px; }
.hdr.on-dark-nav .btn-dark { background: var(--tx-inv); color: var(--ink); }
.hdr.on-dark-nav .btn-dark:hover { background: #fff; }
.hdr.on-dark-nav .btn-ghost { border-color: rgba(255,255,255,.26); color: var(--tx-inv); }
.hdr.on-dark-nav .btn-ghost:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.5); color: var(--tx-inv); }

.burger { display: none; width: 42px; height: 42px; border-radius: 50%; align-items: center; justify-content: center; }
.burger i { display: block; width: 19px; height: 1.8px; background: currentColor; position: relative; transition: .3s var(--ease); }
.burger i::before, .burger i::after {
  content: ""; position: absolute; left: 0; width: 19px; height: 1.8px; background: currentColor; transition: .3s var(--ease);
}
.burger i::before { top: -6px; } .burger i::after { top: 6px; }
body.menu-open .burger i { background: transparent; }
body.menu-open .burger i::before { top: 0; transform: rotate(45deg); }
body.menu-open .burger i::after { top: 0; transform: rotate(-45deg); }

.mnav {
  position: fixed; inset: var(--nav-h) 0 0 0; z-index: 190;
  background: var(--ink); color: var(--tx-inv);
  padding: 32px var(--gut) 48px; overflow-y: auto;
  transform: translateY(-8px); opacity: 0; pointer-events: none; transition: .3s var(--ease);
}
body.menu-open .mnav { transform: none; opacity: 1; pointer-events: auto; }
.mnav a.m-item {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 0; border-bottom: 1px solid var(--line-dark);
  font-size: 26px; font-weight: 600; letter-spacing: -0.035em;
}
.mnav a.m-item svg { width: 22px; height: 22px; flex: none; }
.mnav .btn { margin-top: 28px; width: 100%; }
.mnav .lang-select { margin-top: 24px; width: 100%; height: 46px; }
.mnav .lang-select.open { height: auto; }
.mnav .lang-menu { position: static; width: 100%; margin-top: 10px; background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.14); box-shadow: none; display: none; opacity: 1; visibility: visible; transform: none; }
.mnav .lang-select.open .lang-menu { display: block; }
.mnav .lang-menu button { color: var(--tx-inv); }
.mnav .lang-menu button:hover,
.mnav .lang-menu button[aria-selected="true"] { background: rgba(255,255,255,.12); color: var(--tx-inv); }

/* ---------- Hero ---------- */
.hero {
  position: relative; background: var(--ink); color: var(--tx-inv);
  padding: calc(var(--nav-h) + clamp(46px, 6.4vw, 82px)) 0 clamp(34px, 4.4vw, 52px);
  overflow: hidden;
  isolation: isolate;
}
.home-hero {
  min-height: clamp(620px, 70vh, 720px);
  display: flex;
  align-items: center;
  padding: calc(var(--nav-h) + clamp(42px, 5.6vw, 74px)) 0 clamp(58px, 6.2vw, 84px);
}
.hero:has(.hero-scan) {
  padding: calc(var(--nav-h) + clamp(58px, 8vw, 104px)) 0 clamp(28px, 4vw, 52px);
}
.hero-glow { position: absolute; z-index: 0; pointer-events: none; border-radius: 50%; filter: blur(90px); }
.hero-glow.g1 { width: 620px; height: 620px; top: -220px; right: -140px; background: rgba(49,87,200,.34); }
.hero-glow.g2 { width: 460px; height: 460px; bottom: -240px; left: -120px; background: rgba(27,199,180,.18); }
.hero-grid-bg {
  position: absolute; inset: 0; z-index: 0; opacity: .34;
  background-image: linear-gradient(var(--line-dark) 1px, transparent 1px), linear-gradient(90deg, var(--line-dark) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 25%, #000 30%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 25%, #000 30%, transparent 78%);
}
.hero .wrap { position: relative; z-index: 3; }
.hero-layout { display: block; max-width: 920px; margin: 0 auto; text-align: center; }
.hero-layout-single { display: block; max-width: 980px; margin: 0 auto; text-align: center; }
.home-hero .hero-layout-single { max-width: 1060px; }
.hero-layout:has(.hero-art) {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(420px, .98fr);
  gap: clamp(24px, 3.8vw, 54px);
  align-items: center;
  max-width: 1220px;
  text-align: left;
}
.hero-txt {
  position: relative;
  z-index: 8;
}
.hero-txt::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 28px;
  width: min(920px, 92vw);
  height: 280px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(10,14,23,.72) 0%, rgba(10,14,23,.44) 42%, rgba(10,14,23,0) 74%);
  pointer-events: none;
  z-index: -1;
}
.hero h1 { margin-top: 22px; }
.home-hero h1 { margin-top: 28px; }
.hero h1.h-l { position: relative; z-index: 2; max-width: 980px; margin-left: auto; margin-right: auto; font-size: clamp(40px, 5.2vw, 72px); line-height: 1.06; letter-spacing: -0.05em; }
.hero-layout-single h1.h-l { font-size: clamp(46px, 6.4vw, 88px); }
.home-hero .hero-layout-single h1.h-l { font-size: clamp(54px, 7.2vw, 96px); max-width: 1080px; }
.hero-layout:has(.hero-art) h1.h-l { margin-left: 0; margin-right: 0; max-width: 10.5ch; font-size: clamp(42px, 5vw, 68px); }
.hero h1 .nowrap { white-space: nowrap; }
.hero h1 em.dis {
  position: relative;
  z-index: 3;
  display: inline-block;
  line-height: 1.08;
  color: transparent;
  background: linear-gradient(105deg, #fff 8%, #b6f5ee 58%, #b9c7ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 1px rgba(246,245,241,.12);
}
.hero .lead { margin: 24px auto 0; max-width: 740px; color: rgba(246,245,241,.68); }
.home-hero .lead { margin-top: 28px; max-width: 780px; color: rgba(246,245,241,.74); }
.hero-layout:has(.hero-art) .lead { margin-left: 0; margin-right: 0; max-width: 600px; }
.hero-layout:has(.hero-art) .btn-row { justify-content: flex-start; }
.hero .btn-row { margin-top: 34px; justify-content: center; }
.home-hero .btn-row { margin-top: 38px; }

.hero-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 40px; }
.badge {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 7px 14px 7px 11px; border-radius: 100px;
  border: 1px solid var(--line-dark); background: rgba(255,255,255,.045);
  font-size: 12.5px; font-weight: 500; color: var(--tx-inv-soft); letter-spacing: -0.005em;
}
.badge .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--cyan); flex: none; }
.badge .dot.v { background: var(--violet); }
.badge .dot.a { background: var(--amber); }

.hero-proof {
  display: flex; flex-wrap: wrap; gap: 0;
  margin-top: 18px; padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.1);
  font-family: var(--mono); font-size: 11px; letter-spacing: .04em;
  color: rgba(246,245,241,.56); text-transform: uppercase;
}
.hero-proof span { display: inline-flex; align-items: center; }
.hero-proof span + span::before {
  content: ""; width: 4px; height: 4px; border-radius: 50%;
  background: rgba(246,245,241,.32); margin: 0 12px;
}

/* Hero visual: compact data panels for solution pages. */
.hero-art {
  display: block;
  align-self: center;
  pointer-events: none;
}
.hero-illust {
  width: clamp(500px, 48vw, 720px);
  margin-left: auto;
  margin-right: clamp(-72px, -3.6vw, -28px);
  opacity: .98;
}
.hero-illust img,
.split-illust img,
.contact-illust img {
  display: block;
  width: 100%;
  object-fit: cover;
}
.hero-illust img {
  aspect-ratio: 4 / 3;
  object-position: center center;
  border-radius: 0;
  opacity: .86;
  border: 0;
  box-shadow: none;
  mix-blend-mode: screen;
  filter: saturate(.95) contrast(1.04);
  -webkit-mask-image: radial-gradient(ellipse 70% 68% at 50% 50%, #000 42%, rgba(0,0,0,.78) 60%, transparent 82%);
  mask-image: radial-gradient(ellipse 70% 68% at 50% 50%, #000 42%, rgba(0,0,0,.78) 60%, transparent 82%);
}
.split-art.split-illust {
  min-height: 0;
}
.split-illust img {
  border: 1px solid rgba(10,14,23,.08);
  box-shadow: 0 28px 70px -48px rgba(10,14,23,.55);
}
.sec-dark .split-illust img {
  border-color: rgba(255,255,255,.12);
  box-shadow: 0 34px 90px -50px rgba(0,0,0,.92);
}
.contact-illust {
  margin: 0 0 4px;
}
.contact-illust img {
  border: 1px solid rgba(10,14,23,.08);
  box-shadow: 0 26px 64px -48px rgba(10,14,23,.48);
}
.hero-card-stack { position: relative; max-width: 460px; margin-left: auto; width: 100%; }
.hero-card {
  position: relative; border-radius: var(--r-l); overflow: hidden;
  border: 1px solid var(--line-dark); background: var(--ink-2);
  box-shadow: 0 30px 70px -30px rgba(0,0,0,.85);
  margin-bottom: 14px;
}
.hero-card.hc-top { z-index: 3; }
.hero-card.hc-mid { transform: translateX(-24px); z-index: 2; opacity: .92; }
.hero-card.hc-bot { transform: translateX(16px); z-index: 1; opacity: .8; }
.hc-head {
  display: flex; align-items: center; gap: 8px; padding: 11px 14px;
  border-bottom: 1px solid var(--line-dark); background: rgba(255,255,255,.03);
}
.hc-head .mono { font-size: 10.5px; color: var(--tx-inv-soft); letter-spacing: .04em; }
.hc-status {
  margin-left: auto; font-family: var(--mono); font-size: 9.5px; letter-spacing: .08em;
  padding: 3px 8px; border-radius: 100px; background: rgba(255,180,84,.14); color: var(--amber);
  text-transform: uppercase;
}
.hc-status.ok { background: rgba(18,217,197,.14); color: var(--cyan); }
.hc-body { padding: 14px; }
.hc-row {
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--mono); font-size: 11.5px; line-height: 2; color: var(--tx-inv-soft);
}
.hc-row span:first-child { color: rgba(255,255,255,.55); }
.hc-row span:last-child { color: var(--cyan); }

/* Compliance panel (dark) */
.comp-panel { padding: 10px 0; border: 0; background: transparent; }
.comp-row {
  display: flex; align-items: center; gap: 12px; padding: 13px 0;
  border-bottom: 1px solid rgba(255,255,255,.1); font-size: 13px;
}
.comp-row:last-child { border-bottom: 0; }
.comp-row .mono { color: var(--tx-inv-soft); font-size: 12px; }
.comp-val {
  margin-left: auto; font-family: var(--mono); font-size: 11px; letter-spacing: .06em;
  color: var(--cyan); text-transform: uppercase;
}
.comp-val.no { color: var(--amber); }
.comp-check {
  width: 16px; height: 16px; border-radius: 50%; flex: none;
  border: 1.5px solid var(--cyan); position: relative;
}
.comp-check::after {
  content: ""; position: absolute; left: 4px; top: 2px;
  width: 4px; height: 7px; border: solid var(--cyan); border-width: 0 1.5px 1.5px 0;
  transform: rotate(45deg);
}
.comp-x {
  width: 16px; height: 16px; border-radius: 50%; flex: none;
  border: 1.5px solid var(--amber); position: relative;
}
.comp-x::after {
  content: "×"; position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%);
  font-size: 14px; line-height: 1; color: var(--amber);
}

.sec-paper .split-art.dark {
  min-height: auto;
  display: flex;
  align-items: center;
}
.sec-paper .comp-panel {
  width: 100%;
  padding: 4px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.sec-paper .comp-row {
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr) auto;
  gap: 16px;
  min-height: 58px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  color: var(--tx);
}
.sec-paper .comp-row:last-child {
  border-bottom: 0;
}
.sec-paper .comp-row .mono {
  font-family: var(--sans);
  font-size: clamp(15px, 1.15vw, 17px);
  font-weight: 600;
  line-height: 1.28;
  letter-spacing: -0.02em;
  color: var(--tx);
}
.sec-paper .comp-val {
  align-self: center;
  font-size: 11px;
  line-height: 1.2;
  letter-spacing: .11em;
  color: var(--violet);
}
.sec-paper .comp-check {
  width: 18px;
  height: 18px;
  margin-top: 1px;
  border-color: rgba(27,199,180,.72);
  background: rgba(27,199,180,.08);
}
.sec-paper .comp-check::after {
  left: 5px;
  top: 3px;
}

.govern-panel {
  border-top: 1px solid var(--line);
}
.govern-panel div {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 10px;
  padding: 23px 0;
  border-bottom: 1px solid var(--line);
}
.govern-panel span {
  display: none;
}
.govern-panel h3 {
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.1;
  letter-spacing: -0.035em;
}
.govern-panel p {
  margin-top: -4px;
  max-width: 560px;
  font-size: 15.5px;
  line-height: 1.62;
  color: var(--tx-muted);
}
.govern-panel-dark { border-top-color: rgba(255,255,255,.14); }
.govern-panel-dark div { border-bottom-color: rgba(255,255,255,.12); }
.govern-panel-dark span { color: var(--cyan); }
.govern-panel-dark h3 { color: var(--tx-inv); }
.govern-panel-dark p { color: var(--tx-inv-soft); }

/* ---------- Marquee ---------- */
.marquee { background: var(--ink-2); border-top: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); overflow: hidden; padding: 16px 0; }
.marquee-track { display: flex; gap: 0; width: max-content; animation: mq 38s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-item {
  display: inline-flex; align-items: center; gap: 12px; padding: 0 28px;
  font-size: 13px; font-weight: 500; letter-spacing: .06em; text-transform: uppercase;
  color: var(--tx-inv-soft); white-space: nowrap;
}
.marquee-item::after { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--violet); margin-left: 16px; }
@keyframes mq { to { transform: translateX(-50%); } }

/* ---------- Statement ---------- */
.statement { max-width: 1000px; }
.statement .h-l { line-height: 1.02; }
.statement-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 40px; max-width: 860px; }

/* ---------- Cards ---------- */
.grid { display: grid; gap: 20px; }
.g-2 { grid-template-columns: repeat(2, 1fr); }
.g-3 { grid-template-columns: repeat(3, 1fr); }
.g-4 { grid-template-columns: repeat(4, 1fr); }
.g-5 { grid-template-columns: repeat(5, 1fr); }
.g-3:has(> :nth-child(4):last-child) {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.g-3:has(> :nth-child(5):last-child) {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}
.g-3:has(> :nth-child(5):last-child) > * {
  grid-column: span 2;
}
.g-3:has(> :nth-child(5):last-child) > :nth-child(n+4) {
  grid-column: span 3;
}

.card {
  background: transparent; border: 0; border-top: 1px solid var(--line); border-radius: 0;
  padding: 24px 4px 26px; display: flex; flex-direction: column;
  transition: transform .32s var(--ease), box-shadow .32s var(--ease), border-color .32s;
  position: relative; overflow: hidden;
}
.card:hover { transform: translateY(-2px); box-shadow: none; border-color: rgba(49,87,200,.42); }
.card h3 { margin-top: 18px; font-size: 20px; letter-spacing: -0.032em; }
.card p { margin-top: 11px; font-size: 14.8px; line-height: 1.62; color: var(--tx-muted); }
.card .link-arrow { margin-top: auto; padding-top: 22px; }
.card-visual { height: 132px; border-radius: var(--r-m); overflow: hidden; margin: -4px -4px 4px; position: relative; }
.card.dark { background: var(--ink-2); border-color: var(--line-dark); color: var(--tx-inv); }
.card.dark p { color: var(--tx-inv-soft); }
.card.violet { background: var(--violet); border-color: var(--violet); color: #fff; }
.card.violet p { color: rgba(255,255,255,.8); }
.card.violet .link-arrow { color: #fff; }

.card-ico {
  width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center;
  background: transparent; color: var(--violet); flex: none;
  border: 1px solid var(--line);
}
.card-ico svg { width: 18px; height: 18px; }
.card.dark .card-ico { background: rgba(255,255,255,.08); color: var(--cyan); }
.card.violet .card-ico { background: rgba(255,255,255,.16); color: #fff; }

.mini {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-m);
  padding: 22px 20px; transition: all .3s var(--ease); display: flex; flex-direction: column; gap: 8px;
}
.mini:hover { background: var(--ink); border-color: var(--ink); color: var(--tx-inv); transform: translateY(-4px); }
.mini strong { font-size: 16.5px; font-weight: 600; letter-spacing: -0.028em; }
.mini span { font-size: 13.8px; color: var(--tx-muted); line-height: 1.55; }
.mini:hover span { color: var(--tx-inv-soft); }
.mini em { margin-top: auto; padding-top: 14px; font-style: normal; font-size: 11.5px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--violet); }
.mini:hover em { color: var(--cyan); }

/* ---------- Numbered stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 56px; border-top: 1px solid var(--line-dark); }
.stat { padding: 30px 26px 30px 0; border-right: 1px solid var(--line-dark); }
.stat:last-child { border-right: 0; }
.stat:not(:first-child) { padding-left: 26px; }
.stat .num { display: none; }
.stat .big { display: block; margin-top: 0; font-size: clamp(38px, 4.2vw, 58px); font-weight: 600; letter-spacing: -0.05em; line-height: 1; }
.stat .lbl { display: block; margin-top: 8px; font-size: 15px; font-weight: 500; }
.stat .desc { margin-top: 12px; font-size: 13.8px; line-height: 1.55; color: var(--tx-inv-soft); }
.stats.light { border-top-color: var(--line); }
.stats.light .stat { border-right-color: var(--line); }
.stats.light .desc { color: var(--tx-muted); }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0 32px; margin-top: 52px; border-top: 1px solid var(--line); }
.steps.g-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 0 28px; }
.step {
  position: relative;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 10px 16px;
  padding: 24px 0 28px;
  border-bottom: 1px solid var(--line);
}
.step::before {
  content: "";
  grid-row: span 3;
  width: 32px;
  height: 32px;
  margin-top: 1px;
  border-radius: 50%;
  border: 1px solid rgba(91,75,255,.28);
  background:
    linear-gradient(135deg, rgba(91,75,255,.16), rgba(27,199,180,.12)),
    var(--paper);
}
.step .n { display: none; }
.step h4 { margin-top: 0; font-size: 19px; letter-spacing: -0.03em; }
.step p { margin-top: -4px; font-size: 14.5px; color: var(--tx-muted); line-height: 1.6; }

/* ---------- Compliance list ---------- */
.comp-grid { display: grid; grid-template-columns: minmax(0,.86fr) minmax(0,1.14fr); gap: clamp(32px,5vw,80px); align-items: start; }
.comp-list { border-top: 1px solid var(--line-dark); }
.comp-item { border-bottom: 1px solid var(--line-dark); }
.comp-q {
  width: 100%; display: flex; align-items: center; gap: 18px; padding: 24px 0; text-align: left;
  font-size: clamp(18px, 1.7vw, 22px); font-weight: 600; letter-spacing: -0.03em;
}
.comp-q .tag {
  font-family: var(--mono); font-size: 11px; letter-spacing: .1em; color: var(--cyan);
  border: 1px solid var(--line-dark); border-radius: 100px; padding: 4px 10px; flex: none;
}
.comp-q .pm { margin-left: auto; width: 26px; height: 26px; flex: none; position: relative; }
.comp-q .pm::before, .comp-q .pm::after {
  content: ""; position: absolute; inset: 50% 0 auto 0; height: 1.6px; background: currentColor; transition: .3s var(--ease);
}
.comp-q .pm::after { transform: rotate(90deg); }
.comp-item.open .pm::after { transform: rotate(0deg); opacity: 0; }
.comp-a { max-height: 0; overflow: hidden; transition: max-height .45s var(--ease); }
.comp-a-in { padding: 0 0 26px; font-size: 15.5px; line-height: 1.68; color: var(--tx-inv-soft); max-width: 640px; }
.comp-a-in ul { margin-top: 12px; display: grid; gap: 8px; }
.comp-a-in li { padding-left: 18px; position: relative; }
.comp-a-in li::before { content: ""; position: absolute; left: 0; top: 10px; width: 6px; height: 6px; border-radius: 50%; background: var(--violet); }

.comp-list.light { border-top-color: var(--line); }
.comp-list.light .comp-item { border-bottom-color: var(--line); }
.comp-list.light .comp-q .tag { color: var(--violet); border-color: var(--line); }
.comp-list.light .comp-a-in { color: var(--tx-muted); }

/* ---------- Table ---------- */
.tbl-wrap { border: 1px solid var(--line); border-radius: var(--r-l); overflow: hidden; background: var(--paper); }
table.tbl { width: 100%; border-collapse: collapse; font-size: 14.8px; }
table.tbl th {
  text-align: left; padding: 16px 20px; background: var(--paper-3);
  font-size: 11.5px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--tx-muted);
  border-bottom: 1px solid var(--line); white-space: nowrap;
}
table.tbl td { padding: 17px 20px; border-bottom: 1px solid var(--line); vertical-align: top; line-height: 1.55; }
table.tbl tr:last-child td { border-bottom: 0; }
table.tbl td:first-child { font-weight: 600; letter-spacing: -0.02em; }
table.tbl .pill {
  display: inline-block; padding: 3px 10px; border-radius: 100px; font-size: 12px; font-weight: 600;
  background: #E6F9F6; color: #067A6C;
}
table.tbl .pill.v { background: var(--violet-l); color: var(--violet-d); }
table.tbl .pill.a { background: #FFF3E0; color: #A66A0B; }

/* Dark variant for tables inside sec-dark */
.tbl-wrap.tbl-dark, .sec-dark .tbl-wrap { border-color: rgba(255,255,255,.12); background: rgba(255,255,255,.02); }
table.tbl.tbl-dark th, .sec-dark table.tbl th { background: rgba(255,255,255,.05); color: rgba(246,245,241,.7); border-bottom: 1px solid rgba(255,255,255,.12); }
table.tbl.tbl-dark td, .sec-dark table.tbl td { border-bottom-color: rgba(255,255,255,.1); color: var(--paper); }
table.tbl.tbl-dark td:first-child, .sec-dark table.tbl td:first-child { color: #fff; }

/* ---------- Trust and compliance page ---------- */
.trust-hero .lead { max-width: 800px; }
.trust-compact {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: clamp(42px, 5vw, 64px);
  border-top: 1px solid rgba(255,255,255,.16);
  border-bottom: 1px solid rgba(255,255,255,.16);
}
.trust-compact div {
  padding: 20px 22px;
  border-right: 1px solid rgba(255,255,255,.12);
}
.trust-compact div:last-child { border-right: 0; }
.trust-compact span {
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--cyan);
  white-space: nowrap;
}
.trust-compact strong {
  display: block;
  margin-top: 8px;
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.25;
  letter-spacing: -0.025em;
  color: var(--tx-inv);
}
.trust-intro {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  scroll-margin-top: calc(var(--nav-h) + 24px);
}
.trust-intro .lead { margin-top: 0; }
.trust-rail {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 64px;
  margin-top: 56px;
  border-top: 1px solid var(--line);
}
.trust-rail div {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 10px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}
.trust-rail span {
  display: none;
}
.trust-rail h3 {
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.12;
  letter-spacing: -0.035em;
}
.trust-rail p {
  max-width: 460px;
  font-size: 15px;
  line-height: 1.62;
  color: var(--tx-muted);
}
.trust-split {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(0, 1.14fr);
  gap: clamp(36px, 5vw, 80px);
  align-items: start;
}
.trust-split .lead { margin-top: 22px; }
.trust-split-light {
  padding-top: 56px;
  border-top: 1px solid var(--line);
}
.gate-list,
.control-list,
.deny-list,
.doc-lines {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,.14);
}
.gate-list div {
  display: grid;
  grid-template-columns: minmax(120px, .32fr) minmax(0, 1fr);
  gap: 28px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.gate-list span,
.trust-controls span {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--cyan);
}
.gate-list p,
.trust-controls p {
  font-size: 15.5px;
  line-height: 1.62;
  color: var(--tx-inv-soft);
}
.trust-matrix {
  margin-top: 48px;
  border-top: 1px solid var(--line);
}
.tm-row {
  display: grid;
  grid-template-columns: minmax(150px, .8fr) minmax(0, 1.25fr) minmax(0, 1.2fr);
  gap: 28px;
  padding: 21px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.tm-row span {
  font-size: 15px;
  line-height: 1.58;
  color: var(--tx-muted);
}
.tm-row span:first-child {
  font-weight: 650;
  color: var(--tx);
}
.tm-head span {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--violet);
}
.control-list,
.deny-list,
.doc-lines {
  border-top-color: var(--line);
}
.control-list p,
.deny-list p,
.doc-lines p {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15.5px;
  line-height: 1.62;
  color: var(--tx-muted);
}
.deny-list p::before,
.control-list p::before,
.doc-lines p::before {
  content: "";
  display: block;
  width: 22px;
  height: 22px;
  margin-top: 2px;
  border-radius: 50%;
  background-color: rgba(91,75,255,.1);
  border: 1px solid rgba(91,75,255,.28);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='11' viewBox='0 0 12 12' fill='none' stroke='%235B4BFF' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M2.2 6.2l2.4 2.3 5-5.4'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
}
.deny-list p::before {
  background-color: rgba(245,165,56,.13);
  border-color: rgba(245,165,56,.38);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='11' viewBox='0 0 12 12' fill='none' stroke='%23D88916' stroke-width='1.7' stroke-linecap='round'%3E%3Cpath d='M3.3 3.3l5.4 5.4M8.7 3.3L3.3 8.7'/%3E%3C/svg%3E");
}
.doc-lines p::before {
  border-radius: 7px;
  background-color: rgba(27,199,180,.1);
  border-color: rgba(27,199,180,.34);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='11' viewBox='0 0 12 12' fill='none' stroke='%2315A99B' stroke-width='1.5' stroke-linecap='round'%3E%3Cpath d='M3 3.5h6M3 6h6M3 8.5h4'/%3E%3C/svg%3E");
}
.doc-lines {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0 36px;
  margin-top: 46px;
}
.trust-controls {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0 34px;
  margin-top: 52px;
  border-top: 1px solid rgba(255,255,255,.14);
}
.trust-controls div {
  padding: 24px 0;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.trust-controls p { margin-top: 10px; }
.trust-request-inner {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}
.trust-request-inner .lead { margin-top: 20px; }
.request-links {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,.14);
}
.request-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,.12);
  transition: color .2s var(--ease);
}
.request-links a:hover { color: var(--cyan); }
.request-links span {
  font-size: clamp(18px, 1.9vw, 24px);
  font-weight: 600;
  letter-spacing: -0.035em;
}
.request-links small {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--tx-inv-soft);
  white-space: nowrap;
}

/* ---------- Logos strip ---------- */
.logos { display: flex; flex-wrap: wrap; align-items: center; gap: 14px 44px; }
.logo-chip { font-size: 17px; font-weight: 650; letter-spacing: -0.03em; opacity: .42; transition: opacity .3s; }
.logo-chip:hover { opacity: .85; }

/* ---------- Insights ---------- */
.insight-hero {
  display: grid; grid-template-columns: minmax(0,1.15fr) minmax(0,.85fr); gap: 28px;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-xl); overflow: hidden;
}
.insight-hero .txt { padding: clamp(28px, 3.4vw, 46px); display: flex; flex-direction: column; }
.insight-hero .art { min-height: 260px; position: relative; background: var(--ink); }
.insight-list { display: grid; gap: 0; margin-top: 24px; border-top: 1px solid var(--line); }
.insight-row {
  display: flex; align-items: center; gap: 22px; padding: 22px 4px;
  border-bottom: 1px solid var(--line); transition: padding .3s var(--ease), background .3s;
}
.insight-row:hover { padding-left: 16px; padding-right: 0; background: rgba(255,255,255,.6); }
.insight-row .cat { font-family: var(--mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--violet); width: 110px; flex: none; }
.insight-row .ttl { font-size: 17.5px; font-weight: 600; letter-spacing: -0.028em; }
.insight-row .go { margin-left: auto; color: var(--tx-muted); flex: none; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--violet); color: #fff; position: relative; overflow: hidden; }
.cta-band::after {
  content: ""; position: absolute; width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.16), transparent 65%);
  top: -300px; right: -180px;
}
.cta-inner { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0,1.2fr) minmax(0,.8fr); gap: 40px; align-items: center; }
.cta-band .lead { color: rgba(255,255,255,.82); }
.cta-band .btn-ghost-inv { border-color: rgba(255,255,255,.4); }

/* ---------- Solution closing sections ---------- */
.solution-assurance {
  padding: clamp(70px, 7vw, 112px) 0;
}
.solution-assurance::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(34,211,238,.08), transparent 38%),
    radial-gradient(circle at 78% 22%, rgba(91,75,255,.16), transparent 34%);
  pointer-events: none;
}
.solution-assurance .wrap {
  position: relative;
  z-index: 1;
}
.solution-assurance-inner {
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(380px, 1fr);
  gap: clamp(42px, 7vw, 108px);
  align-items: start;
}
.solution-assurance-copy {
  max-width: 560px;
}
.solution-assurance-copy .h-m {
  margin-top: 22px;
  max-width: 13ch;
}
.solution-assurance-copy .lead {
  margin-top: 22px;
  max-width: 520px;
  font-size: clamp(16px, 1.12vw, 18px);
  line-height: 1.72;
}
.assurance-list {
  border-top: 1px solid rgba(255,255,255,.16);
}
.assurance-row {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255,255,255,.14);
}
.assurance-mark {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  border: 1px solid rgba(34,211,238,.52);
  background: rgba(34,211,238,.08);
}
.assurance-mark svg {
  width: 14px;
  height: 14px;
}
.assurance-row h3 {
  font-size: clamp(17px, 1.35vw, 21px);
  line-height: 1.18;
  letter-spacing: -0.025em;
  color: var(--tx-inv);
  max-width: 22ch;
}
.assurance-row p {
  margin-top: 9px;
  max-width: 660px;
  font-size: 15px;
  line-height: 1.68;
  color: var(--tx-inv-soft);
  overflow-wrap: normal;
  word-break: normal;
}

.solution-cta {
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: clamp(56px, 6vw, 88px) 0;
}
.solution-cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, auto);
  gap: clamp(28px, 5vw, 76px);
  align-items: end;
}
.solution-cta-copy {
  max-width: 760px;
}
.solution-cta-copy .h-m {
  margin-top: 18px;
  max-width: 18ch;
}
.solution-cta-copy .lead {
  margin-top: 16px;
  max-width: 720px;
  font-size: clamp(16px, 1.15vw, 18px);
  line-height: 1.68;
}
.solution-cta-actions {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  justify-self: end;
}
.solution-cta-actions .link-arrow {
  color: var(--tx);
}

/* ---------- Forms ---------- */
.form-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-m); padding: clamp(24px, 3vw, 38px); }
.field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.field label { font-size: 13px; font-weight: 600; letter-spacing: -0.01em; }
.field label .req { color: var(--rose); }
.field input, .field select, .field textarea {
  font: inherit; font-size: 15px; padding: 13px 15px; border: 1px solid var(--line);
  border-radius: var(--r-s); background: var(--paper-2); color: var(--tx); transition: .2s;
  width: 100%;
}
.field textarea { min-height: 122px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--violet); background: #fff; box-shadow: 0 0 0 3px rgba(91,75,255,.13);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.consent { display: flex; gap: 11px; align-items: flex-start; margin: 6px 0 22px; }
.consent input { width: 17px; height: 17px; margin-top: 2px; flex: none; accent-color: var(--violet); }
.consent p { font-size: 13px; line-height: 1.55; color: var(--tx-muted); }
.consent a { color: var(--violet); text-decoration: underline; text-underline-offset: 2px; }
.notice-collection {
  margin: 8px 0 24px;
  padding: 18px 20px;
  border: 1px solid rgba(91,75,255,.18);
  border-radius: 8px;
  background: rgba(91,75,255,.055);
}
.notice-collection h4 {
  font-size: 14px;
  letter-spacing: -0.01em;
}
.notice-collection p {
  margin-top: 8px;
  font-size: 13px;
  line-height: 1.6;
  color: var(--tx-muted);
}
.notice-collection a {
  display: inline-block;
  margin-top: 10px;
  font-size: 13px;
  font-weight: 650;
  color: var(--violet);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.form-note { margin-top: 16px; font-size: 12.5px; color: var(--tx-muted); }
.form-ok {
  display: none; margin-top: 18px; padding: 14px 16px; border-radius: var(--r-s);
  background: #E6F9F6; color: #067A6C; font-size: 14px; font-weight: 500;
}
.form-ok.show { display: block; }

/* ---------- Page hero (inner pages) ---------- */
.phero {
  background: var(--ink); color: var(--tx-inv); position: relative; overflow: hidden;
  padding: calc(var(--nav-h) + clamp(56px, 7vw, 96px)) 0 clamp(56px, 7vw, 92px);
}
.phero .wrap { position: relative; z-index: 2; }
.phero h1 { margin-top: 22px; max-width: 15ch; }
.phero .lead { margin-top: 22px; max-width: 620px; }
.phero-meta { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 32px; }

/* ---------- Split feature ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 76px); align-items: center; }
.split.rev .split-txt { order: 2; }
.split-art {
  border-radius: 0; overflow: hidden; border: 0;
  background: transparent; aspect-ratio: auto; position: relative;
  min-height: 260px;
}
.split-art.dark { background: transparent; border-color: transparent; }

/* ---------- Timeline ---------- */
.timeline { display: grid; gap: 0; border-left: 2px solid var(--line); margin-top: 48px; padding-left: 0; }
.tl-item { position: relative; padding: 0 0 48px 36px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-item::before { content: ""; position: absolute; left: -8px; top: 4px; width: 14px; height: 14px; border-radius: 50%; background: var(--violet); border: 3px solid var(--paper-2); }
.tl-item .yr { font-family: var(--mono); font-size: 13px; color: var(--violet); letter-spacing: .1em; }
.tl-item h4 { margin-top: 8px; font-size: 20px; letter-spacing: -0.03em; }
.tl-item p { margin-top: 8px; font-size: 15px; color: var(--tx-muted); line-height: 1.6; max-width: 540px; }

/* ---------- Values ---------- */
.val-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.val-card { padding: 32px; border: 1px solid var(--line); border-radius: var(--r-l); background: var(--paper); }
.val-card .vn { display: none; }
.val-card h3 { margin-top: 0; font-size: 22px; letter-spacing: -0.032em; }
.val-card p { margin-top: 12px; font-size: 15px; color: var(--tx-muted); line-height: 1.62; }

/* ---------- Contact info ---------- */
.contact-grid { display: grid; grid-template-columns: minmax(0,1.25fr) minmax(260px,.75fr); gap: clamp(28px, 4vw, 54px); align-items: start; }
.contact-grid.reveal { opacity: 1; transform: none; }
.contact-side { display: grid; gap: 22px; }
.contact-flow {
  padding: 24px 0 4px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.contact-flow h3 {
  margin-top: 12px;
  margin-bottom: 16px;
  max-width: 18ch;
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.15;
  letter-spacing: -0.035em;
}
.contact-flow div {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 8px;
  padding: 15px 0;
  border-top: 1px solid var(--line);
}
.contact-flow div span {
  display: none;
}
.contact-flow div p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.58;
  color: var(--tx-muted);
}
.contact-block { padding: 0 0 20px; border: 0; border-bottom: 1px solid var(--line); border-radius: 0; background: transparent; }
.contact-block h4 { font-size: 16px; letter-spacing: -0.028em; }
.contact-block p { margin-top: 10px; font-size: 14.5px; color: var(--tx-muted); line-height: 1.6; }
.contact-block a { color: var(--violet); }

/* ---------- FAQ Accordion ---------- */
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; text-align: left; background: none; border: 0; cursor: pointer;
  padding: 20px 0; display: flex; justify-content: space-between; align-items: center; gap: 16px;
  font-size: 15.5px; font-weight: 500; letter-spacing: -0.015em; color: var(--tx); transition: color .2s;
}
.faq-q:hover { color: var(--violet); }
.faq-q .faq-ico { flex: none; width: 20px; height: 20px; position: relative; }
.faq-q .faq-ico::before, .faq-q .faq-ico::after {
  content: ""; position: absolute; background: currentColor; transition: transform .25s;
}
.faq-q .faq-ico::before { top: 50%; left: 2px; right: 2px; height: 1.5px; transform: translateY(-50%); }
.faq-q .faq-ico::after { left: 50%; top: 2px; bottom: 2px; width: 1.5px; transform: translateX(-50%); }
.faq-item.open .faq-ico::after { transform: translateX(-50%) scaleY(0); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-item.open .faq-a { max-height: 300px; }
.faq-a p { padding: 0 0 20px; font-size: 14.5px; line-height: 1.65; color: var(--tx-muted); }

/* ---------- Prompt / Scan Demo Stage ---------- */
.hero-scan {
  position: relative;
  z-index: 1;
  margin-top: clamp(38px, 5.5vw, 70px);
  margin-left: calc(var(--gut) * -1);
  margin-right: calc(var(--gut) * -1);
}
.scan-stage {
  position: relative;
  height: clamp(310px, 31vw, 420px);
  border-radius: 0;
  overflow: hidden;
  background: transparent;
  border: 0;
  box-shadow: none;
  isolation: isolate;
  margin-top: 0;
}
.scan-stage::after {
  content: none;
}
.scan-head {
  position: absolute;
  top: 18px; left: 22px; right: 22px;
  display: flex; align-items: center; gap: 10px;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(229,242,255,.6);
  z-index: 30;
  pointer-events: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  background: none;
}
.scan-status-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #8BE7BA;
  box-shadow: 0 0 12px rgba(139,231,186,.86);
}
.scan-divider { width: 1px; height: 12px; background: rgba(151,178,202,.22); }
.scan-head .c-com { color: rgba(255,255,255,.3); font-style: italic; }
.scan-head .c-key { color: #A79DFF; }
.scan-head .c-str { color: #FFB454; }
.scan-marquee {
  position: absolute;
  inset: 0;
  z-index: 10;
  transform: translate3d(0, 0, 0);
  will-change: transform;
}
.scan-card {
  position: absolute;
  width: min(400px, 34vw);
  height: min(250px, 21.25vw);
  min-width: 280px;
  min-height: 175px;
  top: 56%;
  border-radius: 15px;
  overflow: hidden;
  background: #040b12;
  box-shadow:
    0 24px 68px rgba(0,0,0,.54),
    0 7px 20px rgba(0,0,0,.45),
    0 0 0 1px rgba(182,224,243,.17);
  transform: translate3d(0, -50%, 0);
  backface-visibility: hidden;
  contain: layout paint style;
}
.scan-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 4;
  border-radius: inherit;
  border: 1px solid rgba(222,247,255,.26);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.17), inset 0 -1px 0 rgba(0,0,0,.7);
  pointer-events: none;
}
.scan-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 5;
  border-radius: inherit;
  background: linear-gradient(115deg, rgba(255,255,255,.1), transparent 16%, transparent 72%, rgba(64,231,255,.06));
  mix-blend-mode: screen;
  pointer-events: none;
}
.scan-card .card-layer {
  position: absolute; inset: 0; border-radius: inherit;
  width: 100%; height: 100%;
  transform: translateZ(0);
  backface-visibility: hidden;
}
.scan-card .card-code-layer { z-index: 1; }
.scan-card .card-image-layer { z-index: 2; will-change: clip-path; }
.scan-card .card-video-layer {
  z-index: 3;
  display: block;
  opacity: 0;
  overflow: hidden;
  transition: opacity .18s ease;
  transform: translateZ(0);
  will-change: clip-path, opacity;
}
.scan-card.is-video-active .card-video-layer.is-video-ready {
  opacity: 1;
}
.scan-card .card-video-media {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translateZ(0) scale(var(--scan-media-scale, 1));
  transform-origin: center;
}
.scan-card .card-img { z-index: 1; display: block; width: 100%; height: 100%; }
.scan-card .card-code {
  z-index: 2;
  background: #07080E;
  overflow: hidden;
  font-family: var(--mono);
  font-size: 10.5px;
  line-height: 1.45;
  color: #B6F4EC;
  padding: 14px 16px;
  box-sizing: border-box;
  white-space: pre;
  width: 0;
  text-shadow: 0 0 6px rgba(18, 217, 197, .35);
}
.scan-card .card-code .c-pur { color: #A79DFF; }
.scan-card .card-code .c-yel { color: #FFB454; }
.scan-card .card-code .c-grn { color: #6EE7B7; }
.scan-card .card-code .c-com { color: rgba(255,255,255,.32); font-style: italic; }
.scan-card .card-code .c-str { color: #FFB454; }
.scan-card .card-code .c-num { color: #fff; }
.scan-card .card-code .c-fn  { color: #12D9C5; }
.scan-beam {
  position: absolute;
  top: 26px; bottom: 26px;
  left: 34%;
  width: 0;
  pointer-events: none;
  z-index: 25;
}
.scan-beam .beam-glow {
  position: absolute;
  top: 0; bottom: 0;
  left: -70px; width: 140px;
  background: linear-gradient(90deg, transparent 0%, rgba(94,234,212,.04) 24%, rgba(94,234,212,.18) 49%, rgba(223,255,255,.25) 50%, rgba(94,234,212,.18) 51%, rgba(94,234,212,.04) 76%, transparent 100%);
  filter: blur(5px);
}
.scan-beam .beam-line {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 2px;
  background: linear-gradient(180deg, transparent 0%, rgba(94,234,212,.28) 8%, #dfffff 44%, #65f8ff 58%, rgba(94,234,212,.28) 92%, transparent 100%);
  box-shadow: 0 0 4px #fff, 0 0 12px rgba(93,248,255,.88), 0 0 30px rgba(45,225,239,.58);
  transform: translateX(-50%);
  border-radius: 2px;
}
.scan-beam .beam-cap {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 4px;
  background: linear-gradient(90deg, transparent, #5EEAD4 40%, #DFFFFF 50%, #5EEAD4 60%, transparent);
  box-shadow: 0 0 12px rgba(94,234,212,.8);
  border-radius: 2px;
}
.scan-beam .beam-cap.t { top: 0; }
.scan-beam .beam-cap.b { bottom: 0; }
.scan-beam .beam-label {
  position: absolute;
  top: calc(61% + 150px);
  left: 16px;
  display: grid;
  gap: 3px;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  font-family: var(--mono);
  font-size: 9px;
  color: #8CA8BB;
  letter-spacing: .14em;
  white-space: nowrap;
}
.scan-beam .beam-label strong {
  color: #C9FDFF;
  font-size: 13px;
  text-shadow: 0 0 12px rgba(84,244,255,.75);
}
.scan-beam .beam-label small {
  color: #6E879A;
  font-size: 8px;
  font-weight: 700;
}
.scan-edge {
  position: absolute;
  top: calc(56% - 157px);
  bottom: calc(44% - 157px);
  z-index: 22;
  width: min(12vw, 180px);
  pointer-events: none;
}
.scan-edge.left { left: 0; background: linear-gradient(90deg, var(--ink) 0%, rgba(10,14,23,.7) 32%, transparent 100%); }
.scan-edge.right { right: 0; background: linear-gradient(270deg, var(--ink) 0%, rgba(10,14,23,.7) 32%, transparent 100%); }
.scan-caption {
  margin-top: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 11px;
  color: rgba(255,255,255,.5);
  letter-spacing: .02em;
  flex-wrap: wrap;
}
.scan-caption .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 8px var(--cyan);
  animation: scanPulse 1.6s infinite;
}
.scan-caption .sep { color: rgba(255,255,255,.2); margin: 0 4px; }
@keyframes scanPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .35; transform: scale(.8); }
}
@media (max-width: 960px) {
  .hero-scan { margin-top: 36px; }
  .scan-stage { height: 300px; }
  .scan-card { width: 280px; height: 175px; }
  .scan-beam { left: 50%; top: 24px; bottom: 24px; }
  .scan-beam .beam-label { display: none; }
  .scan-head { left: 16px; right: 16px; font-size: 9px; }
  .scan-edge { top: calc(56% - 118px); bottom: calc(44% - 118px); }
}

/* ---------- Footer ---------- */
.ftr { background: var(--ink); color: var(--tx-inv); padding: clamp(56px, 6vw, 84px) 0 32px; }
.ftr-top { display: grid; grid-template-columns: minmax(0,1.3fr) repeat(3, minmax(0,.9fr)); gap: 40px; }
.ftr-brand .logo-tx { color: var(--tx-inv); }
.ftr-brand p { margin-top: 18px; font-size: 14.5px; line-height: 1.62; color: var(--tx-inv-soft); max-width: 320px; }
.ftr-col h5 { font-size: 11.5px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: rgba(246,245,241,.6); }
.ftr-col ul { margin-top: 18px; display: grid; gap: 11px; }
.ftr-col a { font-size: 14.5px; color: var(--tx-inv-soft); transition: color .25s; }
.ftr-col a:hover { color: var(--tx-inv); }
.ftr-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 26px; }
.ftr-compliance {
  display: block;
  margin-top: 22px;
  max-width: 320px;
  padding: 14px 16px;
  border: 1px solid rgba(246,245,241,.14);
  border-radius: 8px;
  background: rgba(255,255,255,.04);
  color: var(--tx-inv-soft);
  transition: border-color .2s var(--ease), background .2s var(--ease), color .2s var(--ease);
}
.ftr-compliance:hover {
  border-color: rgba(246,245,241,.28);
  background: rgba(255,255,255,.07);
  color: var(--tx-inv);
}
.ftr-compliance strong {
  display: block;
  font-size: 13px;
  color: var(--tx-inv);
}
.ftr-compliance span {
  display: block;
  margin-top: 5px;
  font-size: 12.5px;
  line-height: 1.45;
}
.ftr-bot {
  margin-top: 54px; padding-top: 24px; border-top: 1px solid var(--line-dark);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px 28px;
  align-items: start;
  font-size: 13px; color: rgba(246,245,241,.5);
}
.ftr-bot .sp { margin-left: auto; display: flex; gap: 22px; flex-wrap: wrap; }
.ftr-bot a:hover { color: var(--tx-inv); }
.ftr-disclaimer { margin-top: 18px; font-size: 12px; line-height: 1.6; color: rgba(246,245,241,.38); max-width: none; }

/* ---------- Cookie banner ---------- */
.cookie {
  position: fixed; left: 20px; bottom: 20px; right: 20px; max-width: 560px; z-index: 300;
  background: rgba(255,255,255,.96); border: 1px solid rgba(20,24,38,.12); border-radius: 18px;
  padding: 20px 22px; box-shadow: 0 28px 70px -24px rgba(10,14,23,.42);
  backdrop-filter: blur(14px);
  transform: translateY(18px); opacity: 0; pointer-events: none; transition: .42s var(--ease);
}
.cookie.show { transform: none; opacity: 1; pointer-events: auto; }
body.menu-open .cookie { opacity: 0; pointer-events: none; }
.cookie.preferences { max-width: 640px; }
.cookie.preferences .cookie-main { display: none; }
.cookie h4 { font-size: 16px; letter-spacing: -0.02em; }
.cookie p { margin-top: 9px; font-size: 13.2px; line-height: 1.58; color: var(--tx-muted); max-width: 58ch; }
.cookie p a { color: var(--violet); text-decoration: underline; text-underline-offset: 2px; }
.cookie .row { display: flex; gap: 9px; margin-top: 16px; flex-wrap: wrap; }
.cookie .btn { height: 40px; padding: 0 16px; font-size: 13px; }
.cookie-panel[hidden] { display: none; }
.cookie-panel-head { display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.cookie-close {
  display: inline-flex; align-items: center; justify-content: center;
  height: 32px; padding: 0 12px; border: 1px solid var(--line); border-radius: 999px;
  font-size: 12px; font-weight: 600; color: var(--tx-muted); background: transparent;
}
.cookie-close:hover { color: var(--tx); border-color: rgba(10,14,23,.28); }
.consent-list { margin-top: 16px; border-top: 1px solid var(--line); }
.consent-row {
  min-height: 76px; display: grid; grid-template-columns: minmax(0,1fr) auto; gap: 20px; align-items: center;
  padding: 16px 0; border-bottom: 1px solid var(--line); cursor: pointer;
}
.consent-row strong { display: block; font-size: 14px; letter-spacing: -0.012em; }
.consent-row small { display: block; margin-top: 5px; font-size: 12.6px; line-height: 1.48; color: var(--tx-muted); max-width: 54ch; }
.consent-row input { position: absolute; opacity: 0; pointer-events: none; }
.consent-row .always {
  display: inline-flex; align-items: center; height: 28px; padding: 0 10px; border-radius: 999px;
  background: rgba(18,217,197,.11); color: #058C7E; font-size: 11.5px; font-weight: 700; white-space: nowrap;
}
.switch {
  position: relative; width: 46px; height: 26px; border-radius: 999px;
  background: #D8DCE7; box-shadow: inset 0 0 0 1px rgba(10,14,23,.08);
  transition: background .2s var(--ease);
}
.switch::after {
  content: ""; position: absolute; top: 3px; left: 3px; width: 20px; height: 20px; border-radius: 50%;
  background: #fff; box-shadow: 0 2px 8px rgba(10,14,23,.18); transition: transform .2s var(--ease);
}
.consent-row input:checked + .switch { background: var(--violet); }
.consent-row input:checked + .switch::after { transform: translateX(20px); }

/* ---------- Nav dropdown ---------- */
.nav-drop { position: relative; }
.nav-drop-btn {
  display: flex; align-items: center; gap: 4px; padding: 9px 15px; border-radius: 100px;
  font-size: 14.5px; font-weight: 500; letter-spacing: -0.012em;
  color: inherit; transition: color .3s, background .25s;
  min-width: 106px;
  justify-content: center;
  white-space: nowrap;
}
.nav-drop-btn::after { content: ""; width: 7px; height: 7px; border-right: 1.6px solid currentColor; border-bottom: 1.6px solid currentColor; transform: rotate(45deg) translateY(-2px); opacity: .55; }
.nav-drop-btn:hover { background: rgba(120,120,140,.12); }
.hdr.on-dark-nav .nav-drop-btn:hover { background: rgba(255,255,255,.1); }
.nav-drop.active > .nav-drop-btn { color: var(--violet); }
.hdr.on-dark-nav .nav-drop.active > .nav-drop-btn { color: var(--cyan); }
.hdr.is-solid .nav-drop.active > .nav-drop-btn { color: var(--violet); }
.nav-drop-menu {
  position: absolute; top: calc(100% + 6px); left: 0;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-m);
  padding: 8px; min-width: 300px;
  box-shadow: 0 16px 48px -16px rgba(10,14,23,.22);
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: all .22s var(--ease); z-index: 100;
}
.nav-drop:hover .nav-drop-menu, .nav-drop.open .nav-drop-menu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.nav-drop-menu a {
  display: block; padding: 9px 12px; border-radius: var(--r-s);
  font-size: 14px; font-weight: 500; color: var(--tx); transition: .18s;
}
.nav-drop-menu a:hover { background: var(--paper-2); color: var(--violet); }
.nav-drop-menu a.active { color: var(--violet); background: var(--violet-l); }

/* ---------- Footer address ---------- */
.ftr-address {
  display: block;
  max-width: none;
  line-height: 1.55;
  color: rgba(246,245,241,.45);
}

/* ---------- Policy pages ---------- */
.policy-page .hero { min-height: auto; padding-bottom: clamp(58px, 8vw, 104px); }
.policy-page .hero-layout { grid-template-columns: minmax(0, 850px); }
.policy-page .hero .lead { max-width: 780px; }
.policy-zh { display: none; }
html[lang="zh-CN"] .policy-en { display: none; }
html[lang="zh-CN"] .policy-zh { display: block; }
html[lang="zh-CN"] .policy-en, html:not([lang="zh-CN"]) .policy-zh { display: none !important; }
.policy-doc-sec { padding-top: clamp(58px, 7vw, 92px); }
.policy-layout {
  display: grid; grid-template-columns: minmax(190px, .26fr) minmax(0, 1fr);
  gap: clamp(36px, 6vw, 82px); align-items: start;
}
.policy-nav {
  position: sticky; top: calc(var(--nav-h) + 28px);
  border-left: 1px solid var(--line); padding-left: 18px;
}
.policy-nav span {
  display: block; margin-bottom: 15px; font-size: 11px; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase; color: var(--violet);
}
.policy-nav a {
  display: block; padding: 7px 0; font-size: 14px; line-height: 1.35; color: var(--tx-muted);
}
.policy-nav a:hover { color: var(--violet); }
.policy-doc { max-width: 850px; }
.policy-meta {
  display: flex; flex-wrap: wrap; gap: 10px 18px; margin-bottom: 28px;
  font-size: 13px; color: var(--tx-muted);
}
.policy-meta strong { color: var(--tx); font-weight: 600; }
.policy-section {
  padding: 30px 0; border-top: 1px solid var(--line);
}
.policy-section:first-child { border-top: 0; padding-top: 0; }
.policy-section h2 { font-size: clamp(26px, 3.2vw, 42px); line-height: 1.05; letter-spacing: -0.045em; }
.policy-section h3 { margin-top: 26px; font-size: 18px; letter-spacing: -0.02em; }
.policy-section p { margin-top: 14px; font-size: 16px; line-height: 1.72; color: var(--tx-muted); text-wrap: pretty; }
.policy-section ul { margin-top: 15px; display: grid; gap: 10px; }
.policy-section li {
  position: relative; padding-left: 22px; font-size: 15.5px; line-height: 1.68; color: var(--tx-muted);
  text-wrap: pretty;
}
.policy-section a { white-space: nowrap; }
.policy-section li::before {
  content: ""; position: absolute; left: 0; top: .68em; width: 6px; height: 6px; border-radius: 50%; background: var(--violet);
}
.policy-callout {
  margin: 28px 0 4px; padding: 20px 22px; border-left: 3px solid var(--cyan);
  background: linear-gradient(90deg, rgba(27,199,180,.1), rgba(27,199,180,0));
}
.policy-callout p { margin-top: 0; color: var(--tx); }
.policy-table { margin-top: 18px; border-top: 1px solid var(--line); }
.policy-table div {
  display: grid; grid-template-columns: minmax(140px, .32fr) minmax(0, 1fr);
  gap: 22px; padding: 15px 0; border-bottom: 1px solid var(--line);
  font-size: 15px; line-height: 1.55;
}
.policy-table strong { font-weight: 650; color: var(--tx); }
.policy-table span { color: var(--tx-muted); }
.policy-matrix {
  margin-top: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}
.policy-matrix > div {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1.25fr;
  border-top: 1px solid var(--line);
}
.policy-matrix > div:first-child {
  border-top: 0;
  background: rgba(10,14,23,.035);
}
.policy-matrix strong,
.policy-matrix span {
  min-width: 0;
  padding: 13px 14px;
  border-left: 1px solid var(--line);
  font-size: 13.5px;
  line-height: 1.5;
}
.policy-matrix strong:first-child,
.policy-matrix span:first-child { border-left: 0; }
.policy-matrix strong { color: var(--tx); font-weight: 700; }
.policy-matrix span { color: var(--tx-muted); }

/* ---------- Delivery methods ---------- */
.delivery-sec {
  background: var(--paper);
}
.delivery-layout {
  display: grid;
  grid-template-columns: minmax(280px, .72fr) minmax(0, 1fr);
  gap: clamp(42px, 7vw, 112px);
  align-items: start;
  padding: clamp(8px, 1.5vw, 18px) 0;
}
.delivery-copy {
  max-width: 560px;
}
.delivery-copy .h-m {
  margin-top: 22px;
  max-width: 12ch;
}
.delivery-copy .lead {
  margin-top: 24px;
  max-width: 520px;
  font-size: clamp(16px, 1.12vw, 18px);
  line-height: 1.72;
}
.delivery-board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(32px, 4.8vw, 72px);
  border-top: 1px solid var(--line);
}
.delivery-group {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 18px;
  padding: 26px 0 28px;
  border-bottom: 1px solid var(--line);
}
.delivery-num {
  margin-top: 3px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .1em;
  color: rgba(10,14,23,.36);
}
.delivery-group h3 {
  font-size: clamp(18px, 1.45vw, 22px);
  line-height: 1.18;
  letter-spacing: -0.03em;
}
.delivery-group p {
  margin-top: 10px;
  max-width: 420px;
  font-size: 14.6px;
  line-height: 1.62;
  color: var(--tx-muted);
}
.delivery-items {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-top: 18px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(10,14,23,.58);
}
.delivery-items span {
  position: relative;
  white-space: nowrap;
}
.delivery-items span + span::before {
  content: "";
  position: absolute;
  left: -10px;
  top: 50%;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(10,14,23,.26);
}

/* ---------- Deliverable scope list ---------- */
.deliverable-sec {
  background: var(--paper);
}
.deliverable-layout {
  display: grid;
  grid-template-columns: minmax(260px, .62fr) minmax(0, 1fr);
  gap: clamp(38px, 7vw, 112px);
  align-items: start;
  padding: clamp(34px, 4.6vw, 62px) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.deliverable-copy {
  max-width: 500px;
}
.deliverable-copy .h-l {
  margin-top: 22px;
  max-width: 9ch;
}
.deliverable-copy .lead {
  margin-top: 24px;
  max-width: 480px;
  font-size: clamp(16px, 1.12vw, 18px);
  line-height: 1.72;
}
.deliverable-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(28px, 4vw, 58px);
  border-top: 1px solid var(--line);
}
.deliverable-row {
  min-height: 58px;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  color: var(--tx);
}
.deliverable-row > span:last-child {
  font-size: clamp(14.5px, 1.08vw, 16px);
  line-height: 1.45;
  letter-spacing: -0.012em;
}
.deliverable-num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .08em;
  color: rgba(10,14,23,.38);
}

/* ---------- Form section heading ---------- */
.form-section { margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--line); }
.form-section:first-child { margin-top: 0; padding-top: 0; border-top: 0; }
.form-section h4 { font-size: 16px; font-weight: 600; letter-spacing: -0.02em; margin-bottom: 18px; }

/* ---------- Checkbox grid ---------- */
.check-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 26px; border-top: 1px solid var(--line); }
.check-item {
  display: flex; gap: 10px; align-items: flex-start;
  padding: 14px 0;
  border: 0; border-bottom: 1px solid var(--line); border-radius: 0;
  cursor: pointer; transition: color .18s, border-color .18s;
}
.check-item:hover { border-color: rgba(49,87,200,.45); background: transparent; color: var(--violet); }
.check-item input { width: 17px; height: 17px; margin-top: 2px; flex: none; accent-color: var(--violet); }
.check-item svg {
  width: 22px;
  height: 22px;
  margin-top: 0;
  padding: 4px;
  flex: none;
  stroke: var(--violet);
  stroke-width: 2.5;
  border: 1px solid rgba(91,75,255,.24);
  border-radius: 50%;
  background: rgba(91,75,255,.08);
  box-sizing: border-box;
}
.check-item.is-x svg { stroke: #D14343; }
.check-item.is-x:hover { border-color: #D14343; background: #FCEAEA; }
.check-item span { font-size: 14.5px; line-height: 1.5; }
.check-item.checked { border-color: var(--violet); background: transparent; color: var(--violet); }

/* ---------- Feature list (checklist) ---------- */
.feat-list { display: grid; gap: 10px; margin-top: 20px; }
.feat-list li {
  padding-left: 26px; position: relative; font-size: 15px; line-height: 1.6; color: var(--tx-muted);
}
.feat-list li::before {
  content: ""; position: absolute; left: 0; top: 7px; width: 16px; height: 16px;
  border-radius: 50%; background: var(--violet-l);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10' fill='none' stroke='%235B4BFF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M1.5 5l2.5 2.5L8.5 2.5'/%3E%3C/svg%3E");
  background-position: center; background-repeat: no-repeat;
}

/* ---------- Split text list ---------- */
.split-list { display: grid; gap: 10px; margin-top: 20px; }
.split-list li { padding-left: 20px; position: relative; font-size: 15px; line-height: 1.6; color: var(--tx-muted); }
.split-list li::before { content: ""; position: absolute; left: 0; top: 10px; width: 6px; height: 6px; border-radius: 50%; background: var(--violet); }

/* ---------- Reveal animation ---------- */
.rv, .reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.rv.in, .reveal.in { opacity: 1; transform: none; }
.rv.stagger > *, .reveal.stagger > * { transition-delay: calc(var(--i, 0) * 60ms); }
@media (prefers-reduced-motion: reduce) {
  .rv, .reveal { opacity: 1; transform: none; transition: none; }
  .marquee-track { animation: none; }
  .scan-caption .dot { animation: none; }
  .scan-card { transition: none !important; }
  html { scroll-behavior: auto; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .g-3:has(> :nth-child(4):last-child),
  .g-3:has(> :nth-child(5):last-child) { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .g-3:has(> :nth-child(5):last-child) > *,
  .g-3:has(> :nth-child(5):last-child) > :nth-child(n+4) { grid-column: auto; }
  .g-3:has(> :nth-child(5):last-child) > :last-child { grid-column: 1 / -1; }
  .g-4 { grid-template-columns: repeat(2, 1fr); }
  .g-5 { grid-template-columns: repeat(3, 1fr); }
  .stats, .steps { grid-template-columns: repeat(2, 1fr); }
  .steps.g-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .trust-compact, .trust-controls, .doc-lines { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .trust-compact div:nth-child(2) { border-right: 0; }
  .trust-compact div:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.12); }
  .stat { border-right: 0; padding-left: 0 !important; border-bottom: 1px solid var(--line-dark); }
  .stats.light .stat { border-bottom-color: var(--line); }
  .val-grid { grid-template-columns: 1fr; }
}
@media (max-width: 960px) {
  .nav-l, .hdr-cta .btn-ghost, .hdr-cta .lang-select { display: none; }
  .burger { display: flex; }
  .hero-layout, .comp-grid, .split, .cta-inner, .insight-hero, .ftr-top, .contact-grid, .trust-intro, .trust-split, .trust-request-inner, .policy-layout, .solution-assurance-inner, .solution-cta-inner, .deliverable-layout, .delivery-layout { grid-template-columns: 1fr; }
  .hero-layout:has(.hero-art) { grid-template-columns: 1fr; max-width: 920px; text-align: center; }
  .hero-layout:has(.hero-art) h1.h-l,
  .hero-layout:has(.hero-art) .lead { margin-left: auto; margin-right: auto; }
  .hero-layout:has(.hero-art) .btn-row { justify-content: center; }
  .hero-illust {
    width: min(100%, 760px);
    margin: 34px auto 0;
  }
  .hero-illust img { object-position: center center; }
  .split.rev .split-txt { order: 0; }
  .frame-stack { max-width: 430px; margin: 8px auto 0; }
  .ftr-top { gap: 36px; }
  .policy-nav { position: static; display: flex; flex-wrap: wrap; gap: 7px 16px; padding-left: 0; border-left: 0; border-bottom: 1px solid var(--line); padding-bottom: 18px; }
  .policy-nav span { width: 100%; margin-bottom: 4px; }
  .policy-nav a { padding: 2px 0; }
  .statement-cols { grid-template-columns: 1fr; }
  .deliverable-copy .h-l { max-width: 12ch; }
  .delivery-copy .h-m { max-width: 16ch; }
  .delivery-board { column-gap: 28px; }
  .sec-head:has(.lead) { grid-template-columns: 1fr; gap: 18px; }
  .sec-head:has(.lead) .lead { grid-column: 1; grid-row: auto; max-width: 720px; }
  .solution-assurance-copy .h-m,
  .solution-assurance-copy .lead,
  .solution-cta-copy .h-m,
  .solution-cta-copy .lead { max-width: 720px; }
  .solution-cta-actions { justify-self: start; }
  .check-grid { grid-template-columns: 1fr; }
  .tm-row { grid-template-columns: 1fr; gap: 8px; padding: 22px 0; }
  .tm-head { display: none; }
}
@media (max-width: 680px) {
  :root { --gut: 20px; }
  body { font-size: 16px; }
  .h-l { font-size: clamp(30px, 9vw, 44px); }
  .h-m { font-size: clamp(28px, 8vw, 38px); }
  .g-2, .g-3, .g-4, .g-5, .field-row { grid-template-columns: 1fr; }
  .g-3:has(> :nth-child(5):last-child) > :last-child { grid-column: auto; }
  .stats, .steps { grid-template-columns: 1fr; }
  .steps.g-4 { grid-template-columns: 1fr; }
  .insight-row { flex-wrap: wrap; gap: 8px; }
  .insight-row .cat { width: auto; }
  .cookie { left: 12px; right: 12px; bottom: 12px; }
  .cookie .row { display: grid; grid-template-columns: 1fr; }
  .cookie .btn { width: 100%; }
  .consent-row { grid-template-columns: minmax(0,1fr); gap: 12px; }
  .switch, .consent-row .always { justify-self: start; }
  .policy-table div { grid-template-columns: 1fr; gap: 6px; }
  .policy-matrix,
  .policy-matrix > div,
  .policy-matrix strong,
  .policy-matrix span {
    display: block;
  }
  .policy-matrix > div { padding: 12px 0; }
  .policy-matrix > div:first-child { display: none; }
  .policy-matrix span {
    border-left: 0;
    padding: 6px 14px;
  }
  .policy-matrix span:first-child {
    color: var(--tx);
    font-weight: 650;
  }
  .policy-section p { font-size: 15.5px; line-height: 1.68; }
  .policy-section li { font-size: 15px; line-height: 1.62; }
  .deliverable-list { grid-template-columns: 1fr; }
  .deliverable-row { grid-template-columns: 38px minmax(0, 1fr); }
  .delivery-board { grid-template-columns: 1fr; }
  .delivery-group { grid-template-columns: 38px minmax(0, 1fr); padding: 22px 0 24px; }
  .delivery-items { gap: 8px 16px; font-size: 10.5px; }
  .tbl-wrap { overflow-x: auto; }
  table.tbl { min-width: 620px; }
  .ftr-bot { grid-template-columns: 1fr; }
  .ftr-bot .sp { margin-left: 0; }
  .hero-proof { display: grid; gap: 8px; }
  .hero-proof span + span::before { display: none; }
  .hero { padding: calc(var(--nav-h) + 42px) 0 36px; }
  .home-hero {
    min-height: 650px;
    align-items: center;
    padding: calc(var(--nav-h) + 38px) 0 56px;
  }
  .hero:has(.hero-scan) { padding: calc(var(--nav-h) + 50px) 0 28px; }
  .hero + .sec { padding-top: 46px; }
  .hero h1.h-l { font-size: clamp(32px, 9.4vw, 46px); line-height: 1.04; }
  .home-hero .hero-layout-single h1.h-l { font-size: clamp(36px, 10.2vw, 48px); }
  .hero-layout:has(.hero-art) h1.h-l { max-width: 100%; }
  .hero-illust { margin-top: 26px; }
  .hero-illust img { aspect-ratio: 4 / 3; }
  .card h3 { font-size: 18.5px; }
  .hero .lead { font-size: 16px; }
  .home-hero h1 { margin-top: 20px; }
  .home-hero .lead { margin-top: 20px; max-width: 36rem; }
  .home-hero .btn-row { margin-top: 30px; }
  .solution-assurance-inner { gap: 34px; }
  .assurance-row { grid-template-columns: 28px minmax(0, 1fr); gap: 14px; padding: 19px 0; }
  .solution-cta-actions { width: 100%; }
  .solution-cta-actions .btn { width: 100%; }
  .trust-compact, .trust-rail, .trust-controls, .doc-lines { grid-template-columns: 1fr; }
  .trust-compact div { border-right: 0; }
  .trust-compact div:nth-child(3) { border-bottom: 1px solid rgba(255,255,255,.12); }
  .trust-rail { gap: 0; }
  .trust-rail div { grid-template-columns: 1fr; gap: 8px; }
  .gate-list div { grid-template-columns: 1fr; gap: 8px; }
  .request-links a { display: grid; justify-content: stretch; gap: 6px; }
  .request-links small { white-space: normal; }
  .scan-stage {
    height: 280px;
  }
  .scan-caption { font-size: 10px; align-items: flex-start; }
}
@media (max-width: 360px) {
  .hdr-inner { gap: 12px; }
  .hdr-cta .btn-dark { display: none; }
}
