:root {
  color-scheme: dark;
  --canvas: #050914;
  --canvas-soft: #09111f;
  --surface: rgba(18, 29, 48, .76);
  --surface-solid: #101c30;
  --surface-raised: #15233a;
  --stroke: rgba(151, 179, 225, .18);
  --stroke-strong: rgba(133, 173, 239, .38);
  --text: #f7faff;
  --muted: #9facc2;
  --muted-strong: #c1cad9;
  --signal: #7da6ff;
  --signal-deep: #365ea8;
  --gold: #e0b85a;
  --gold-soft: rgba(224, 184, 90, .14);
  --mint: #4fe0c2;
  --mint-soft: rgba(79, 224, 194, .12);
  --danger: #ff7182;
  --shadow: 0 28px 80px rgba(0, 0, 0, .32);
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-xl: 34px;
  --container: 1240px;
  --header-height: 78px;
  --font-body: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-height) + 24px); }
body {
  margin: 0;
  background: var(--canvas);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
body.nav-open { overflow: hidden; }
img { max-width: 100%; height: auto; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; }
p, h1, h2, h3 { margin-top: 0; }
h1, h2, h3 { text-wrap: balance; }
section[id] { scroll-margin-top: calc(var(--header-height) + 24px); }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: 112px 0; position: relative; }
.section-tight { padding: 72px 0; }
.section-contrast {
  background:
    linear-gradient(180deg, rgba(125, 166, 255, .025), transparent 24%, transparent 78%, rgba(125, 166, 255, .025)),
    var(--canvas-soft);
  border-block: 1px solid var(--stroke);
}
.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 1000;
  padding: 12px 18px;
  border-radius: 10px;
  background: var(--text);
  color: var(--canvas);
  font-weight: 800;
  transition: top .2s ease;
}
.skip-link:focus { top: 14px; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 4px; }
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-height);
  background: rgba(5, 9, 20, .76);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  transition: background .25s ease, border-color .25s ease;
}
.site-header.is-scrolled { background: rgba(5, 9, 20, .94); border-color: var(--stroke); }
.nav-shell { height: 100%; display: flex; align-items: center; gap: 32px; }
.brand { display: inline-flex; align-items: center; flex: 0 0 auto; }
.brand-logo { display: block; width: 172px; }
.primary-nav { display: flex; flex-wrap: nowrap; align-items: center; gap: 26px; margin-left: auto; }
.primary-nav a {
  position: relative;
  color: var(--muted-strong);
  font-size: .9rem;
  font-weight: 650;
  text-decoration: none;
  transition: color .2s ease;
}
.primary-nav a:not(.mobile-nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -10px;
  height: 2px;
  border-radius: 99px;
  background: var(--gold);
  transition: right .22s ease;
}
.primary-nav a:hover,
.primary-nav a[aria-current="location"] { color: var(--text); }
.primary-nav a:hover::after,
.primary-nav a:focus-visible::after,
.primary-nav a[aria-current="location"]::after { right: 0; }
.mobile-nav-cta { display: none !important; }
.language-switch {
  display: inline-flex;
  flex: 0 0 auto;
  gap: 2px;
  padding: 3px;
  border: 1px solid var(--stroke-strong);
  border-radius: 999px;
  background: rgba(255, 255, 255, .04);
}
.language-switch a {
  min-width: 44px;
  min-height: 44px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: var(--muted-strong);
  font-size: .68rem;
  font-weight: 850;
  letter-spacing: .06em;
  text-decoration: none;
  transition: color .2s ease, background .2s ease;
}
.language-switch a:hover { color: var(--text); }
.language-switch a.is-active {
  background: var(--text);
  color: var(--canvas);
}
.nav-cta { flex: 0 0 auto; }
.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 44px;
  min-height: 44px;
  border: 0;
  background: transparent;
  color: var(--text);
  padding: 10px 0;
  font-weight: 750;
}
.nav-toggle-lines { width: 22px; display: grid; gap: 6px; }
.nav-toggle-lines i { width: 100%; height: 2px; background: currentColor; transition: transform .2s ease; }

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button:active { transform: translateY(0) scale(.985); }
.button-small { min-height: 44px; padding: 0 18px; font-size: .88rem; }
.button-primary {
  background: var(--text);
  color: var(--canvas);
  box-shadow: 0 10px 30px rgba(247, 250, 255, .1);
}
.button-primary:hover { box-shadow: 0 14px 38px rgba(125, 166, 255, .22); }
.button-secondary {
  border-color: var(--stroke-strong);
  background: rgba(255, 255, 255, .025);
  color: var(--text);
}
.button-secondary:hover { border-color: var(--signal); background: rgba(125, 166, 255, .08); }

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  color: var(--signal);
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .16em;
}
.eyebrow > span { width: 30px; height: 1px; background: currentColor; }
.mini-label {
  margin: 0;
  color: var(--signal);
  font-size: .7rem;
  font-weight: 850;
  letter-spacing: .14em;
}
.status-chip {
  min-height: 27px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid var(--stroke);
  font-size: .68rem;
  font-weight: 850;
  letter-spacing: .06em;
  text-transform: uppercase;
  white-space: nowrap;
}
[data-browser-status] { gap: 7px; }
[data-browser-status]::before {
  content: "";
  width: 6px;
  height: 6px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: currentColor;
  opacity: .68;
  box-shadow: 0 0 0 3px currentColor;
}
.status-neutral { color: var(--muted-strong); background: rgba(255, 255, 255, .035); }
.status-verified { color: var(--mint); background: var(--mint-soft); border-color: rgba(79, 224, 194, .34); }
.status-accent { color: var(--gold); background: var(--gold-soft); border-color: rgba(224, 184, 90, .34); }
.status-qualify { color: var(--signal); background: rgba(125, 166, 255, .11); border-color: rgba(125, 166, 255, .34); }
.status-muted { color: var(--muted-strong); background: rgba(159, 172, 194, .08); }

.hero {
  min-height: 890px;
  padding: calc(var(--header-height) + 86px) 0 0;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 29%, rgba(125, 166, 255, .13), transparent 28%),
    radial-gradient(circle at 67% 60%, rgba(224, 184, 90, .07), transparent 25%),
    var(--canvas);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, var(--canvas) 0%, transparent 32%, transparent 72%, rgba(5, 9, 20, .5) 100%);
}
.hero-grid-lines {
  position: absolute;
  inset: 0;
  opacity: .13;
  background-image:
    linear-gradient(rgba(125, 166, 255, .14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(125, 166, 255, .14) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(to bottom, transparent, black 18%, black 72%, transparent);
}
.hero-layout {
  min-height: 645px;
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(600px, 1.12fr);
  align-items: center;
  gap: 56px;
  position: relative;
  z-index: 2;
}
.hero-copy { padding-bottom: 48px; }
.hero h1 {
  max-width: 680px;
  margin-bottom: 28px;
  font-size: clamp(3.25rem, 5.7vw, 5.25rem);
  line-height: .98;
  letter-spacing: -.055em;
}
.hero h1 span {
  display: block;
  color: transparent;
  background: linear-gradient(100deg, var(--gold), #f5d991 72%);
  -webkit-background-clip: text;
  background-clip: text;
}
.hero-lead { max-width: 620px; margin-bottom: 32px; color: var(--muted-strong); font-size: clamp(1.05rem, 1.4vw, 1.24rem); line-height: 1.65; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 40px; }
.hero-stage {
  min-height: 610px;
  position: relative;
  display: grid;
  grid-template-columns: minmax(300px, 1fr) 56px 258px;
  align-items: center;
  gap: 0;
}
.hero-stage-glow {
  position: absolute;
  inset: 14% 2% 10% 10%;
  background: radial-gradient(circle, rgba(125, 166, 255, .18), transparent 61%);
  filter: blur(22px);
}
.partner-login-card {
  position: relative;
  z-index: 2;
  padding: 28px;
  border: 1px solid var(--stroke-strong);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(20, 34, 57, .96), rgba(10, 18, 32, .96));
  box-shadow: var(--shadow);
  transition: border-color .28s ease, box-shadow .28s ease;
}
.surface-top, .surface-brand { display: flex; align-items: center; }
.surface-top { justify-content: space-between; gap: 16px; margin-bottom: 42px; }
.surface-brand { gap: 11px; }
.surface-brand strong, .surface-brand small { display: block; }
.surface-brand strong { font-size: .92rem; }
.surface-brand small { color: var(--muted); font-size: .7rem; }
.flow-logo {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(125, 166, 255, .12);
  border: 1px solid rgba(125, 166, 255, .28);
  color: var(--signal);
  font-weight: 900;
}
.login-copy h2 { margin: 12px 0 10px; font-size: 1.85rem; letter-spacing: -.03em; }
.login-copy p { margin-bottom: 24px; color: var(--muted); font-size: .92rem; }
.flow-field { display: grid; gap: 8px; margin-bottom: 14px; color: var(--muted-strong); font-size: .72rem; font-weight: 700; }
.flow-field input {
  min-height: 50px;
  width: 100%;
  border: 1px solid var(--stroke);
  border-radius: var(--radius-sm);
  background: rgba(5, 9, 20, .48);
  color: var(--text);
  padding: 0 15px;
}
.inside-login-button {
  width: 100%;
  min-height: 58px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(224, 184, 90, .36);
  border-radius: 15px;
  background: linear-gradient(100deg, rgba(224, 184, 90, .15), rgba(125, 166, 255, .11));
  color: var(--text);
  padding: 8px 15px 8px 10px;
  text-align: left;
  font-weight: 800;
  cursor: pointer;
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.inside-login-button:hover { transform: translateY(-2px); border-color: var(--gold); box-shadow: 0 14px 30px rgba(0, 0, 0, .2); }
.inside-login-button:active { transform: translateY(0) scale(.99); }
.inside-login-button.static { cursor: default; }
.inside-login-button.static:hover { transform: none; box-shadow: none; }
.inside-mark {
  min-width: 98px;
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  padding: 9px 11px;
  border: 1px solid rgba(224, 184, 90, .5);
  border-radius: 11px 11px 20px 11px;
  background: linear-gradient(145deg, rgba(224, 184, 90, .15), rgba(10, 18, 32, .8));
  color: var(--text);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .035);
}
.inside-mark b { font-size: .82rem; letter-spacing: -.02em; }
.inside-mark small { color: var(--gold); font-size: .56rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.inside-mark-compact { min-width: 82px; padding: 7px 8px; }
.inside-mark-compact b { font-size: .72rem; }
.inside-mark-compact small { font-size: .49rem; }
.login-result { min-height: 30px; display: flex; align-items: center; gap: 9px; margin-top: 14px; color: var(--muted); font-size: .72rem; }
.result-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--muted); box-shadow: 0 0 0 4px rgba(159, 172, 194, .08); }
.login-result.is-pending .result-dot { background: var(--gold); box-shadow: 0 0 0 4px var(--gold-soft); animation: pulse 1.3s infinite; }
.login-result.is-success { color: var(--mint); }
.login-result.is-success .result-dot { background: var(--mint); box-shadow: 0 0 0 4px var(--mint-soft); }
.login-result.is-denied { color: var(--danger); }
.login-result.is-denied .result-dot { background: var(--danger); }

.signal-path {
  height: 220px;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.signal-path::before { content: ""; position: absolute; left: 0; right: 0; top: 50%; height: 1px; background: linear-gradient(90deg, var(--stroke-strong), var(--gold)); }
.signal-path i { width: 4px; height: 4px; border-radius: 50%; background: var(--signal); box-shadow: 0 0 12px var(--signal); }
.signal-dot {
  position: absolute;
  top: calc(50% - 5px);
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 18px var(--gold);
  opacity: 0;
}
.hero-stage.is-pending .signal-dot { opacity: 1; animation: travel 1.3s ease-in-out infinite; }

.phone-shell {
  position: relative;
  z-index: 2;
  padding: 7px;
  border: 1px solid rgba(247, 250, 255, .28);
  border-radius: 42px;
  background: #05070b;
  box-shadow: 0 34px 100px rgba(0, 0, 0, .5);
  transition: border-color .28s ease, box-shadow .28s ease;
}
.hero-stage[data-state="pending"] .partner-login-card { border-color: rgba(224, 184, 90, .62); }
.hero-stage[data-state="approved"] .partner-login-card,
.hero-stage[data-state="approved"] .phone-shell {
  border-color: rgba(79, 224, 194, .68);
  box-shadow: 0 28px 80px rgba(14, 86, 73, .2);
}
.hero-stage[data-state="denied"] .partner-login-card,
.hero-stage[data-state="denied"] .phone-shell { border-color: rgba(255, 113, 130, .52); }
.phone-screen {
  min-height: 520px;
  position: relative;
  overflow: hidden;
  border-radius: 35px;
  background:
    radial-gradient(circle at 50% 12%, rgba(125, 166, 255, .13), transparent 25%),
    linear-gradient(180deg, #121c2e, #07101e);
  padding: 18px 17px 16px;
}
.phone-top {
  position: absolute;
  left: 50%;
  top: 12px;
  z-index: 4;
  width: 78px;
  height: 22px;
  transform: translateX(-50%);
  border-radius: 99px;
  background: #05070b;
}
.phone-status { display: flex; justify-content: space-between; padding: 3px 4px 18px; color: var(--muted); font-size: .55rem; }
.phone-mark { min-width: 84px; padding: 7px 8px; margin-bottom: 20px; }
.phone-content h3 { margin: 9px 0; font-size: 1.38rem; line-height: 1.13; }
.phone-content > p:not(.mini-label):not(.flow-note) { min-height: 59px; margin-bottom: 17px; color: var(--muted-strong); font-size: .78rem; }
.phone-content:focus-visible { outline: 2px solid var(--signal); outline-offset: 7px; border-radius: 10px; }
.flow-note { margin: 8px 0 0; color: var(--muted-strong); font-size: .66rem; line-height: 1.45; }
.request-facts { display: grid; gap: 7px; margin-bottom: 17px; }
.request-facts span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 8px 10px;
  border: 1px solid var(--stroke);
  border-radius: 9px;
  background: rgba(5, 9, 20, .38);
}
.request-facts small { color: var(--muted); font-size: .68rem; }
.request-facts b { font-size: .72rem; }
.phone-pin { display: grid; gap: 7px; color: var(--muted); font-size: .68rem; }
.pin-dots {
  min-height: 39px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--stroke);
  border-radius: 9px;
  background: rgba(5, 9, 20, .5);
  color: var(--text);
  font-size: .7rem;
  letter-spacing: .13em;
  transition: border-color .24s ease, color .24s ease, box-shadow .24s ease;
}
.pin-dots::after {
  content: "✓";
  width: 20px;
  height: 20px;
  position: absolute;
  right: 9px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--mint);
  color: #04130f;
  font-size: .68rem;
  font-weight: 900;
  opacity: 0;
  transform: scale(.7);
  transition: opacity .24s ease, transform .24s ease;
}
.hero-stage[data-state="approved"] .pin-dots {
  border-color: rgba(79, 224, 194, .65);
  color: var(--mint);
  box-shadow: 0 0 0 4px var(--mint-soft);
}
.hero-stage[data-state="approved"] .pin-dots::after { opacity: 1; transform: scale(1); }
.phone-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 13px; }
.phone-actions button {
  min-height: 44px;
  border: 1px solid var(--stroke);
  border-radius: 9px;
  font-size: .72rem;
  font-weight: 850;
  cursor: pointer;
  transition: border-color .18s ease, filter .18s ease, transform .18s ease;
}
.phone-actions button:disabled { cursor: not-allowed; opacity: .38; }
.phone-actions .approve { background: var(--mint); border-color: var(--mint); color: #04130f; }
.phone-actions .deny { background: transparent; color: var(--muted-strong); }
.phone-actions button:not(:disabled):active { transform: scale(.97); }
.phone-home { position: absolute; left: 50%; bottom: 8px; width: 70px; height: 3px; transform: translateX(-50%); border-radius: 9px; background: rgba(247, 250, 255, .4); }

.hero-footnote {
  min-height: 88px;
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  border-top: 1px solid var(--stroke);
  color: var(--muted);
  font-size: .76rem;
}
.hero-footnote span { min-height: 40px; display: flex; align-items: center; padding: 0 24px; border-right: 1px solid var(--stroke); }
.hero-footnote span:first-child { padding-left: 0; color: var(--text); font-weight: 750; }
.hero-footnote span:last-child { border-right: 0; }
.visitor-paths {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 40px;
  border: 1px solid var(--stroke);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: rgba(255, 255, 255, .018);
}
.visitor-paths-label {
  grid-column: 1 / -1;
  margin: 0;
  padding: 12px 18px;
  border-bottom: 1px solid var(--stroke);
  color: var(--muted);
  font-size: .68rem;
  font-weight: 850;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.visitor-paths a {
  min-height: 86px;
  display: grid;
  align-content: center;
  gap: 5px;
  padding: 16px 18px;
  border-right: 1px solid var(--stroke);
  color: var(--text);
  text-decoration: none;
  transition: background .2s ease, color .2s ease;
}
.visitor-paths a:last-child { border-right: 0; }
.visitor-paths a:hover,
.visitor-paths a:focus-visible,
.visitor-paths a.is-active { background: var(--gold-soft); }
.visitor-paths a strong { font-size: .88rem; }
.visitor-paths a span { color: var(--muted); font-size: .72rem; }
.visitor-paths-mobile { display: none; margin: 8px 0 0; }

.manifesto { background: var(--text); color: var(--canvas); }
.manifesto-layout { display: grid; grid-template-columns: 250px 1fr; gap: 60px; }
.manifesto-index { color: #536079; font-size: .73rem; font-weight: 850; letter-spacing: .13em; }
.manifesto h2 { max-width: 950px; margin-bottom: 20px; font-size: clamp(2rem, 3.4vw, 3.65rem); line-height: 1.05; letter-spacing: -.045em; }
.manifesto h2 span { color: var(--signal-deep); }
.manifesto-layout > div > p { max-width: 760px; margin: 0; color: #526078; font-size: 1.08rem; }
.identity-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}
.identity-points li {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border: 1px solid #cad5e6;
  border-radius: 999px;
  background: #f3f6fb;
  color: #26344a;
  font-size: .78rem;
  font-weight: 800;
}

.section-heading { max-width: 950px; margin-bottom: 58px; }
.section-heading h2, .faq-heading h2, .contact-copy h2 {
  margin-bottom: 22px;
  font-size: clamp(2.4rem, 4.6vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: -.05em;
}
.section-intro { max-width: 760px; margin: 0; color: var(--muted-strong); font-size: 1.08rem; }
.two-column-heading {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(340px, .8fr);
  align-items: end;
  gap: 80px;
}
.two-column-heading h2 { margin-bottom: 0; }
.heading-aside { align-self: end; }
.heading-aside > p, .heading-aside.plain { color: var(--muted-strong); }
.heading-aside > p { margin: 15px 0 12px; }
.text-link { color: var(--gold); font-weight: 800; text-decoration-thickness: 1px; text-underline-offset: 4px; }
.centered-heading { margin-inline: auto; text-align: center; }
.centered-heading .eyebrow { justify-content: center; }
.centered-heading .section-intro { margin-inline: auto; }

.proof-composition { display: grid; grid-template-columns: .76fr 1.24fr; gap: 30px; }
.proof-story { border-top: 1px solid var(--stroke); }
.proof-step {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  padding: 23px 0;
  border-bottom: 1px solid var(--stroke);
}
.proof-step > span { color: var(--gold); font-size: .72rem; font-weight: 850; letter-spacing: .08em; }
.proof-step strong { display: block; margin-bottom: 5px; font-size: 1.02rem; }
.proof-step p { margin: 0; color: var(--muted); font-size: .87rem; }
.proof-details {
  min-width: 0;
  align-self: start;
  overflow: hidden;
  border: 1px solid var(--stroke);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(19, 31, 52, .8), rgba(8, 15, 27, .86));
}
.proof-details summary {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  cursor: pointer;
  list-style: none;
  transition: background .2s ease;
}
.proof-details summary::-webkit-details-marker,
.tech-details summary::-webkit-details-marker { display: none; }
.proof-details summary > span { display: grid; gap: 5px; }
.proof-details summary small {
  color: var(--signal);
  font-size: .62rem;
  font-weight: 850;
  letter-spacing: .13em;
}
.proof-details summary strong { font-size: 1.05rem; }
.proof-details summary::after {
  content: "+";
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  margin-left: 18px;
  border: 1px solid var(--stroke-strong);
  border-radius: 50%;
  color: var(--signal);
  font-size: 1.25rem;
}
.proof-details[open] summary::after { content: "−"; }
.proof-details .trust-boundaries {
  border: 0;
  border-top: 1px solid var(--stroke);
  border-radius: 0;
  background: transparent;
}
.trust-boundaries {
  display: grid;
  grid-template-columns: 1fr 84px 1fr 84px 1fr;
  align-items: stretch;
  padding: 24px;
  border: 1px solid var(--stroke);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(19, 31, 52, .8), rgba(8, 15, 27, .86));
}
.boundary { min-height: 270px; display: flex; flex-direction: column; justify-content: flex-end; position: relative; padding: 22px; border: 1px solid var(--stroke); border-radius: 20px; overflow: hidden; }
.boundary::before { content: ""; position: absolute; inset: 0; opacity: .45; background: linear-gradient(180deg, rgba(125, 166, 255, .09), transparent 55%); }
.boundary > * { position: relative; z-index: 1; }
.boundary-label { margin-bottom: auto; color: var(--signal); font-size: .66rem; font-weight: 850; letter-spacing: .14em; }
.boundary strong { margin-bottom: 9px; font-size: 1.12rem; }
.boundary p { margin: 0; color: var(--muted); font-size: .78rem; }
.boundary-lab { border-color: rgba(125, 166, 255, .34); }
.boundary-esim { border-color: rgba(224, 184, 90, .38); background: var(--gold-soft); }
.boundary-esim .boundary-label { color: var(--gold); }
.boundary-arrow { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 13px; color: var(--muted); font-size: .58rem; text-align: center; }
.boundary-arrow span { width: 100%; height: 1px; position: relative; background: var(--stroke-strong); }
.boundary-arrow span::after { content: ""; position: absolute; right: 0; top: -3px; width: 7px; height: 7px; border-top: 1px solid var(--signal); border-right: 1px solid var(--signal); transform: rotate(45deg); }
.proof-note {
  display: flex;
  gap: 17px;
  margin-top: 30px;
  padding: 20px 24px;
  border: 1px solid rgba(79, 224, 194, .28);
  border-radius: var(--radius-md);
  background: var(--mint-soft);
}
.proof-note-icon { width: 30px; height: 30px; flex: 0 0 auto; display: grid; place-items: center; border-radius: 50%; background: var(--mint); color: #04130f; font-weight: 900; }
.proof-note strong { display: block; margin-bottom: 4px; }
.proof-note p { margin: 0; color: var(--muted-strong); font-size: .83rem; }

.action-headline {
  display: grid;
  gap: 10px;
}
.action-headline span {
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: baseline;
}
.action-headline small {
  color: var(--muted);
  font-family: var(--font-body);
  font-size: .65rem;
  font-weight: 850;
  letter-spacing: .12em;
}
.action-headline .action-result { color: var(--gold); }

.key-journey {
  display: grid;
  grid-template-columns: minmax(190px, .8fr) minmax(220px, 1.4fr) minmax(230px, .9fr);
  align-items: center;
  gap: 28px;
  margin: -22px 0 52px;
  padding: 26px;
  border: 1px solid var(--stroke);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(125, 166, 255, .07), rgba(255, 255, 255, .018));
}
.key-journey-endpoint,
.key-vault {
  min-height: 150px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  border: 1px solid var(--stroke);
  border-radius: 20px;
  background: rgba(5, 9, 20, .62);
}
.key-journey-icon {
  position: absolute;
  inset: 20px 20px auto auto;
  color: var(--signal);
  font-size: 1.35rem;
  font-weight: 900;
}
.key-journey small,
.key-vault small {
  margin-bottom: 7px;
  color: var(--muted);
  font-size: .64rem;
  font-weight: 850;
  letter-spacing: .12em;
}
.key-journey strong { font-size: 1.08rem; }
.key-journey-path {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 11px;
  color: var(--muted-strong);
  font-size: .68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.key-journey-path i {
  height: 1px;
  position: relative;
  background: var(--stroke-strong);
}
.key-journey-path i::before,
.key-journey-path i::after {
  content: "";
  position: absolute;
  right: 0;
  width: 8px;
  height: 8px;
  border-top: 1px solid var(--signal);
  border-right: 1px solid var(--signal);
  transform: translateY(-4px) rotate(45deg);
}
.key-journey-path i::before {
  left: 0;
  right: auto;
  border-color: var(--gold);
  transform: translateY(-4px) rotate(-135deg);
}
.key-vault {
  border-color: rgba(224, 184, 90, .44);
  background: linear-gradient(145deg, rgba(224, 184, 90, .15), rgba(5, 9, 20, .78));
  box-shadow: inset 0 0 0 1px rgba(224, 184, 90, .06);
}
.key-vault-lock {
  width: 38px;
  height: 38px;
  position: absolute;
  inset: 20px 20px auto auto;
  display: grid;
  place-items: center;
  border: 1px solid rgba(224, 184, 90, .4);
  border-radius: 50%;
  color: var(--gold);
  font-size: .58rem;
  box-shadow: 0 0 24px rgba(224, 184, 90, .15);
}
.key-vault em {
  margin-top: 4px;
  color: var(--gold);
  font-size: .8rem;
  font-style: normal;
  font-weight: 800;
}

.process-grid { list-style: none; display: grid; grid-template-columns: repeat(4, 1fr); margin: 0 0 90px; padding: 0; border-block: 1px solid var(--stroke); }
.process-grid li { min-height: 245px; position: relative; padding: 28px 28px 30px; border-right: 1px solid var(--stroke); }
.process-grid li:last-child { border-right: 0; }
.process-number { position: absolute; right: 20px; top: 18px; color: var(--muted); font-size: .68rem; font-weight: 800; }
.process-icon { width: 44px; height: 44px; display: grid; place-items: center; margin-bottom: 38px; border: 1px solid var(--stroke-strong); border-radius: 14px; background: rgba(125, 166, 255, .08); color: var(--signal); font-weight: 900; }
.process-grid li:nth-child(3) .process-icon { background: var(--gold-soft); border-color: rgba(224, 184, 90, .32); color: var(--gold); }
.process-grid h3 { margin-bottom: 10px; font-size: 1.14rem; }
.process-grid p { margin: 0; color: var(--muted); font-size: .86rem; }

.technology-split { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 80px; }
.technology-split > * { min-width: 0; }
.chip-panel { min-width: 0; min-height: 500px; position: relative; display: grid; place-items: center; overflow: hidden; }
.chip-halo { position: absolute; width: min(86vw, 390px); height: min(86vw, 390px); border-radius: 50%; background: radial-gradient(circle, rgba(224, 184, 90, .18), rgba(125, 166, 255, .07) 45%, transparent 70%); filter: blur(12px); }
.chip {
  width: min(calc(100% - 28px), 330px);
  aspect-ratio: 1;
  position: relative;
  display: grid;
  place-items: center;
  border: 1px solid rgba(224, 184, 90, .45);
  border-radius: 52px;
  background:
    linear-gradient(90deg, rgba(224, 184, 90, .11) 1px, transparent 1px),
    linear-gradient(rgba(224, 184, 90, .11) 1px, transparent 1px),
    linear-gradient(145deg, rgba(23, 36, 57, .94), rgba(6, 11, 21, .98));
  background-size: 34px 34px, 34px 34px, auto;
  box-shadow: inset 0 0 50px rgba(224, 184, 90, .08), var(--shadow);
  transform: rotate(-4deg);
}
.chip::before, .chip::after { content: ""; position: absolute; background: repeating-linear-gradient(90deg, var(--gold) 0 16px, transparent 16px 28px); opacity: .48; }
.chip::before { left: 30px; right: 30px; top: -10px; height: 10px; }
.chip::after { left: 30px; right: 30px; bottom: -10px; height: 10px; }
.chip-contact { position: absolute; width: 10px; height: 180px; top: 75px; background: repeating-linear-gradient(var(--gold) 0 16px, transparent 16px 28px); opacity: .48; }
.chip-contact.c1 { left: -10px; }
.chip-contact.c2 { right: -10px; }
.chip-contact.c3, .chip-contact.c4 { display: none; }
.chip-core { width: 210px; height: 210px; display: flex; flex-direction: column; align-items: center; justify-content: center; border: 1px solid rgba(224, 184, 90, .36); border-radius: 34px; background: rgba(5, 9, 20, .82); text-align: center; transform: rotate(4deg); }
.chip-core small { margin-bottom: 15px; color: var(--gold); font-size: .67rem; font-weight: 850; letter-spacing: .12em; }
.chip-core strong { margin-bottom: 15px; font-size: 1.55rem; line-height: 1.08; }
.chip-core span { color: var(--muted); font-size: .65rem; }
.chip-caption { position: absolute; bottom: 0; display: flex; align-items: center; gap: 9px; color: var(--muted); font-size: .72rem; }
.chip-caption span { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 12px var(--gold); }
.technical-copy h3 { margin-bottom: 20px; font-size: clamp(2rem, 3.2vw, 3.1rem); line-height: 1.07; letter-spacing: -.04em; }
.technical-copy > p:not(.eyebrow) { color: var(--muted-strong); }
.decision-list { list-style: none; display: grid; gap: 0; margin: 32px 0 0; padding: 0; border-top: 1px solid var(--stroke); }
.decision-list li { display: grid; grid-template-columns: 38px 1fr; gap: 14px; align-items: start; padding: 18px 0; border-bottom: 1px solid var(--stroke); }
.decision-list li > span { color: var(--gold); font-size: .68rem; font-weight: 850; letter-spacing: .1em; }
.decision-list strong { display: block; margin-bottom: 3px; font-size: .98rem; }
.decision-list p { margin: 0; color: var(--muted); font-size: .83rem; }
.tech-details { border: 1px solid var(--stroke); border-radius: var(--radius-sm); background: rgba(255, 255, 255, .025); }
.tech-details summary {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  cursor: pointer;
  font-weight: 750;
  list-style: none;
  transition: background .2s ease;
}
.tech-details summary::after { content: "+"; color: var(--signal); font-size: 1.35rem; }
.tech-details[open] summary::after { content: "−"; }
.tech-details > div { padding: 0 16px 16px; color: var(--muted); font-size: .84rem; }
.tech-details p { margin: 0; }
.technical-deep-dive {
  margin-top: 70px;
  overflow: hidden;
  border-color: var(--stroke-strong);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(125, 166, 255, .07), rgba(224, 184, 90, .045));
}
.technical-deep-dive summary {
  min-height: 106px;
  padding: 22px 28px;
}
.technical-deep-dive summary > span { display: grid; gap: 6px; }
.technical-deep-dive summary small {
  color: var(--signal);
  font-size: .65rem;
  font-weight: 850;
  letter-spacing: .13em;
}
.technical-deep-dive summary strong {
  color: var(--text);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}
.technical-deep-dive summary::after {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  margin-left: 20px;
  border: 1px solid var(--stroke-strong);
  border-radius: 50%;
}
.technical-deep-dive > .technical-deep-dive-body {
  padding: 0 28px 28px;
  color: var(--muted-strong);
  font-size: .9rem;
}
.technical-deep-dive-intro {
  max-width: 800px;
  padding-top: 24px;
  border-top: 1px solid var(--stroke);
  line-height: 1.7;
}
.technical-deep-dive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 26px;
  overflow: hidden;
  border: 1px solid var(--stroke);
  border-radius: 18px;
  background: var(--stroke);
}
.technical-deep-dive-grid article {
  min-height: 220px;
  padding: 24px;
  background: rgba(5, 9, 20, .94);
}
.technical-deep-dive-grid article > span {
  display: block;
  margin-bottom: 32px;
  color: var(--gold);
  font-size: .66rem;
  font-weight: 850;
  letter-spacing: .1em;
}
.technical-deep-dive-grid h3 { margin-bottom: 10px; color: var(--text); font-size: 1rem; }
.technical-deep-dive-grid p { color: var(--muted); line-height: 1.65; }

.inside-system { overflow: hidden; }
.inside-surfaces { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.inside-surface {
  min-width: 0;
  padding: 15px;
  border: 1px solid var(--stroke);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, .02);
}
.surface-label { display: flex; align-items: center; gap: 10px; padding: 4px 5px 15px; color: var(--muted); font-size: .64rem; font-weight: 850; letter-spacing: .1em; }
.surface-label span { color: var(--gold); }
.offer-preview, .account-preview, .login-preview { min-height: 380px; border-radius: 20px; overflow: hidden; }
.offer-preview { padding: 30px; background: linear-gradient(145deg, #f6f1e6, #dfe7f5); color: #0a1020; }
.preview-brand { margin-bottom: 65px; font-size: .75rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.offer-preview h3 { margin-bottom: 15px; font-size: 2.2rem; line-height: 1; letter-spacing: -.045em; }
.offer-preview > p { color: #59637a; font-size: .85rem; }
.included-row { display: flex; align-items: center; gap: 12px; margin-top: 43px; padding-top: 20px; border-top: 1px solid rgba(10, 16, 32, .15); }
.included-row .inside-mark { background: #0b1424; }
.included-row strong, .included-row small { display: block; }
.included-row strong { font-size: .77rem; }
.included-row small { margin-top: 2px; color: #687289; font-size: .62rem; }
.account-preview { padding: 24px; background: linear-gradient(145deg, #111d30, #08101d); }
.account-preview-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 65px; font-size: .77rem; font-weight: 800; }
.avatar { width: 35px; height: 35px; display: grid; place-items: center; border-radius: 50%; background: rgba(125, 166, 255, .17); color: var(--signal); font-size: .67rem; }
.account-security { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 12px; margin-top: 13px; padding: 15px; border: 1px solid rgba(79, 224, 194, .26); border-radius: 15px; background: var(--mint-soft); }
.account-security strong, .account-security small { display: block; }
.account-security strong { font-size: .79rem; }
.account-security small { color: var(--muted); font-size: .61rem; }
.account-lines { display: grid; gap: 11px; margin-top: 28px; }
.account-lines span { height: 10px; border-radius: 99px; background: rgba(159, 172, 194, .08); }
.account-lines span:nth-child(2) { width: 72%; }
.account-lines span:nth-child(3) { width: 88%; }
.login-preview { padding: 30px; background: #f7faff; color: #10182a; }
.login-preview h3 { margin: 14px 0 36px; font-size: 2rem; }
.login-preview .fake-field { display: grid; gap: 7px; margin-bottom: 13px; color: #657086; font-size: .67rem; font-weight: 750; }
.fake-input { min-height: 48px; display: flex; align-items: center; padding: 0 13px; border: 1px solid #ced6e5; border-radius: 11px; color: #222b3e; font-size: .82rem; }
.login-preview .inside-login-button { background: #0a1324; color: #fff; }
.protected-note { display: block; margin-top: 12px; color: #657086; text-align: center; font-size: .62rem; }
.surface-caption { margin: 15px 6px 4px; color: var(--muted); font-size: .73rem; }
.audience-grid { display: grid; grid-template-columns: repeat(2, 1fr); border-left: 1px solid var(--stroke); border-top: 1px solid var(--stroke); }
.audience-card {
  min-height: 450px;
  position: relative;
  padding: 36px;
  border-right: 1px solid var(--stroke);
  border-bottom: 1px solid var(--stroke);
  background: rgba(255, 255, 255, .01);
  transition: background .22s ease, border-color .22s ease;
}
.audience-card.featured { background: linear-gradient(145deg, var(--gold-soft), rgba(125, 166, 255, .05)); }
.audience-number { position: absolute; right: 28px; top: 27px; color: var(--muted); font-size: .72rem; font-weight: 850; }
.audience-card h3 { max-width: 480px; margin: 20px 0 24px; font-size: 1.65rem; line-height: 1.15; letter-spacing: -.025em; }
.audience-card ul { list-style: none; display: grid; gap: 11px; margin: 0 0 34px; padding: 0; color: var(--muted-strong); font-size: .88rem; }
.audience-card li { position: relative; padding-left: 18px; }
.audience-card li::before { content: ""; position: absolute; left: 0; top: .68em; width: 6px; height: 6px; border-radius: 50%; background: var(--signal); }
.audience-card.featured li::before { background: var(--gold); }
.card-link { min-height: 44px; position: absolute; left: 36px; right: 36px; bottom: 33px; display: flex; align-items: center; justify-content: space-between; padding-top: 17px; border-top: 1px solid var(--stroke); color: var(--text); font-weight: 800; text-decoration: none; }
.card-link span { color: var(--gold); transition: transform .2s ease; }
.audience-card:focus-within { background: rgba(125, 166, 255, .045); }
.audience-card.featured:focus-within { background: linear-gradient(145deg, rgba(224, 184, 90, .19), rgba(125, 166, 255, .07)); }
.card-link:focus-visible span { transform: translateX(4px); }

.partner-journey { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 70px; border-top: 1px solid var(--stroke); }
.partner-journey article { min-height: 330px; padding: 26px; border-right: 1px solid var(--stroke); }
.partner-journey article:last-child { border-right: 0; }
.partner-journey article > span { color: var(--gold); font-size: .68rem; font-weight: 850; }
.journey-visual { height: 112px; display: flex; align-items: center; justify-content: center; gap: 14px; margin: 24px 0 20px; border: 1px solid var(--stroke); border-radius: var(--radius-md); background: rgba(255, 255, 255, .02); }
.journey-visual > i { font-style: normal; font-size: .67rem; font-weight: 900; }
.co-brand-visual > i { padding: 8px 10px; border: 1px solid var(--stroke-strong); border-radius: 9px; color: var(--signal); }
.co-brand-visual > b { color: var(--muted); }
.profile-visual { position: relative; }
.profile-visual i { position: absolute; inset: 24px; border: 1px solid var(--stroke); border-radius: 12px; }
.profile-visual i:nth-child(2) { inset: 31px; }
.profile-visual i:nth-child(3) { inset: 38px; border-color: rgba(224, 184, 90, .35); }
.profile-visual b { position: relative; color: var(--gold); font-size: .8rem; }
.api-visual i { padding: 9px 12px; border: 1px solid var(--stroke-strong); border-radius: 10px; color: var(--signal); }
.api-visual i:last-child { border-color: rgba(224, 184, 90, .4); color: var(--gold); }
.api-visual b { color: var(--muted); }
.measure-visual { align-items: flex-end; gap: 7px; padding-bottom: 26px; }
.measure-visual i { width: 18px; border-radius: 5px 5px 1px 1px; background: var(--signal-deep); }
.measure-visual i:nth-child(1) { height: 28px; }
.measure-visual i:nth-child(2) { height: 44px; }
.measure-visual i:nth-child(3) { height: 60px; }
.measure-visual i:nth-child(4) { height: 76px; background: var(--gold); }
.partner-journey h3 { margin-bottom: 10px; font-size: 1.2rem; }
.partner-journey p { margin: 0; color: var(--muted); font-size: .82rem; }
.partner-cta { display: flex; align-items: center; justify-content: space-between; gap: 30px; margin-top: 35px; padding: 23px; border: 1px solid rgba(224, 184, 90, .3); border-radius: var(--radius-lg); background: var(--gold-soft); }
.partner-cta > div { display: flex; align-items: center; gap: 18px; }
.partner-cta strong, .partner-cta p { display: block; }
.partner-cta p { margin: 3px 0 0; color: var(--muted-strong); font-size: .82rem; }

.status-rail { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--stroke); border-left: 1px solid var(--stroke); }
.status-rail article { min-height: 285px; display: flex; flex-direction: column; align-items: flex-start; padding: 28px; border-right: 1px solid var(--stroke); border-bottom: 1px solid var(--stroke); }
.status-rail article.verified { background: var(--mint-soft); }
.status-rail h3 { margin: 52px 0 12px; font-size: 1.15rem; }
.status-rail p { margin: 0; color: var(--muted); font-size: .82rem; }
.status-link { display: inline-flex; align-items: center; gap: 8px; min-height: 44px; margin-top: auto; padding-top: 18px; color: var(--text); font-size: .78rem; font-weight: 800; text-decoration: none; }
.status-link span { color: var(--gold); }

.contact-section { background: linear-gradient(135deg, rgba(125, 166, 255, .07), rgba(224, 184, 90, .035) 52%, transparent); border-top: 1px solid var(--stroke); }
.contact-layout { display: grid; grid-template-columns: .83fr 1.17fr; gap: 76px; align-items: start; }
.contact-copy { position: sticky; top: calc(var(--header-height) + 28px); }
.contact-copy > p:not(.eyebrow) { color: var(--muted-strong); }
.interest-buttons { display: flex; flex-wrap: wrap; gap: 8px; margin: 30px 0; }
.interest-buttons button, .copy-button {
  min-height: 44px;
  border: 1px solid var(--stroke);
  border-radius: 999px;
  background: rgba(255, 255, 255, .025);
  color: var(--muted-strong);
  padding: 0 13px;
  font-size: .72rem;
  font-weight: 750;
  cursor: pointer;
  transition: border-color .18s ease, color .18s ease, background .18s ease, transform .18s ease;
}
.interest-buttons button:hover, .interest-buttons button.is-active { border-color: var(--gold); color: var(--text); background: var(--gold-soft); }
.interest-buttons button:active, .copy-button:active { transform: scale(.98); }
.interest-selection-status {
  min-height: 1.35em;
  margin: -18px 0 0;
  color: var(--muted-strong);
  font-size: .72rem;
  font-weight: 700;
}
.consumer-request { margin-top: 38px; padding: 20px; border: 1px solid var(--stroke); border-radius: var(--radius-md); background: rgba(255, 255, 255, .025); }
.consumer-request p { margin: 12px 0 17px; color: var(--muted-strong); font-size: .82rem; }
.copy-status { margin-left: 9px; color: var(--mint); font-size: .72rem; }
.contact-form { padding: 34px; border: 1px solid var(--stroke-strong); border-radius: var(--radius-lg); background: rgba(10, 18, 32, .82); box-shadow: var(--shadow); transition: opacity .18s ease; }
.contact-form[aria-busy="true"] { opacity: .78; }
.contact-form[aria-busy="true"] button[type="submit"] { cursor: wait; }
.form-intro { margin-bottom: 28px; }
.form-intro h3 { margin: 16px 0 6px; font-size: 1.55rem; }
.form-intro p { margin: 0; color: var(--muted); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-grid label, .checkbox-line { display: grid; gap: 8px; color: var(--muted-strong); font-size: .76rem; font-weight: 700; }
.form-grid label.wide { grid-column: 1 / -1; }
.form-grid input, .form-grid select, .form-grid textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid var(--stroke);
  border-radius: var(--radius-sm);
  background: rgba(5, 9, 20, .55);
  color: var(--text);
  padding: 0 14px;
  transition: border-color .18s ease, box-shadow .18s ease;
}
.form-grid input:focus-visible,
.form-grid select:focus-visible,
.form-grid textarea:focus-visible,
.flow-field input:focus-visible {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px var(--gold-soft);
}
.form-grid textarea { min-height: 115px; padding-top: 13px; resize: vertical; }
.form-grid input::placeholder, .form-grid textarea::placeholder { color: #6f7c92; }
.checkbox-line { grid-template-columns: auto 1fr; gap: 11px; margin: 20px 0; font-weight: 500; line-height: 1.45; }
.checkbox-line input { width: 18px; height: 18px; accent-color: var(--signal); }
.checkbox-line a { color: var(--signal); text-underline-offset: 3px; }
.form-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.sent-message { display: none; margin-top: 28px; padding: 18px 22px; border: 1px solid rgba(79, 224, 194, .3); border-radius: var(--radius-md); background: var(--mint-soft); }
.sent-message:target { display: flex; flex-direction: column; }
.form-alert {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 22px;
  padding: 15px 17px;
  border: 1px solid rgba(255, 132, 132, .34);
  border-radius: 14px;
  background: rgba(255, 92, 92, .08);
  color: #ffd6d6;
  font-size: .86rem;
}
.form-alert[hidden] { display: none; }
.sent-message span { color: var(--muted-strong); }

.faq-layout { display: grid; grid-template-columns: .74fr 1.26fr; gap: 90px; }
.faq-heading { position: sticky; top: calc(var(--header-height) + 28px); align-self: start; }
.faq-heading > p:not(.eyebrow) { color: var(--muted); }
.faq-list { border-top: 1px solid var(--stroke); }
.faq-list details { border-bottom: 1px solid var(--stroke); }
.faq-list summary { min-height: 84px; display: flex; align-items: center; justify-content: space-between; gap: 20px; cursor: pointer; font-size: 1rem; font-weight: 750; list-style: none; transition: background .2s ease, color .2s ease; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { color: var(--signal); font-size: 1.5rem; font-weight: 400; transition: transform .2s ease; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { margin: -4px 54px 26px 0; color: var(--muted-strong); }

.site-footer { padding: 76px 0 24px; border-top: 1px solid var(--stroke); background: #03060d; }
.footer-main { display: grid; grid-template-columns: 1.55fr repeat(3, .82fr); gap: 45px; }
.footer-logo { width: 184px; }
.footer-brand-block > p { max-width: 350px; margin: 22px 0; color: var(--muted); font-size: .85rem; }
.footer-main > div:not(.footer-brand-block) { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.footer-main strong { margin-bottom: 7px; font-size: .76rem; letter-spacing: .08em; text-transform: uppercase; }
.footer-main a { color: var(--muted); font-size: .8rem; text-decoration: none; }
.footer-main a:hover { color: var(--text); text-decoration: underline; text-underline-offset: 4px; }
.footer-bottom { min-height: 72px; display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-top: 48px; padding-top: 22px; border-top: 1px solid var(--stroke); color: #6f7c92; font-size: .68rem; }
.footer-bottom div { display: flex; gap: 20px; }
.footer-bottom a { text-decoration: none; }

@media (hover: hover) {
  .phone-actions .approve:not(:disabled):hover { filter: brightness(1.08); }
  .phone-actions .deny:not(:disabled):hover { border-color: var(--signal); color: var(--text); }
  .proof-details summary:hover,
  .tech-details summary:hover,
  .faq-list summary:hover { background: rgba(125, 166, 255, .055); }
  .audience-card:hover { background: rgba(125, 166, 255, .045); }
  .audience-card.featured:hover { background: linear-gradient(145deg, rgba(224, 184, 90, .19), rgba(125, 166, 255, .07)); }
  .card-link:hover span { transform: translateX(4px); }
}

@keyframes travel { 0% { left: 0; opacity: 0; } 18% { opacity: 1; } 82% { opacity: 1; } 100% { left: calc(100% - 10px); opacity: 0; } }
@keyframes pulse { 50% { opacity: .45; transform: scale(.82); } }

@media (max-width: 1160px) {
  .nav-shell { gap: 20px; }
  .primary-nav { gap: 17px; }
  .primary-nav a { font-size: .82rem; }
  .hero-layout { grid-template-columns: minmax(0, .8fr) minmax(540px, 1.2fr); gap: 30px; }
  .hero-stage { grid-template-columns: minmax(270px, 1fr) 38px 236px; }
  .trust-boundaries { grid-template-columns: 1fr 44px 1fr 44px 1fr; padding: 15px; }
  .boundary { padding: 16px; }
  .inside-mark { min-width: 85px; }
  .inside-mark b { font-size: .72rem; }
  .inside-mark small { font-size: .48rem; }
}

@media (max-width: 1080px) {
  :root { --header-height: 70px; }
  .section { padding: 88px 0; }
  .nav-toggle { display: inline-flex; margin-left: auto; }
  .nav-cta { display: none; }
  .primary-nav {
    position: fixed;
    inset: var(--header-height) 0 auto;
    display: grid;
    gap: 0;
    max-height: calc(100vh - var(--header-height));
    max-height: calc(100dvh - var(--header-height));
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 16px 20px 24px;
    background: rgba(5, 9, 20, .98);
    border-bottom: 1px solid var(--stroke);
    transform: translateY(-125%);
    opacity: 0;
    pointer-events: none;
    transition: transform .25s ease, opacity .25s ease;
  }
  .primary-nav.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .primary-nav a { min-height: 52px; display: flex; align-items: center; border-bottom: 1px solid var(--stroke); font-size: 1rem; }
  .primary-nav a:not(.mobile-nav-cta)::after { bottom: 0; }
  .language-switch a { min-width: 44px; min-height: 44px; }
  .primary-nav .mobile-nav-cta {
    display: flex !important;
    justify-content: center;
    min-height: 50px;
    margin-top: 14px;
    border: 1px solid rgba(125, 166, 255, .42);
    border-radius: 999px;
    background: var(--text);
    color: var(--canvas);
    font-weight: 850;
  }
  .hero { min-height: auto; padding-top: calc(var(--header-height) + 64px); }
  .hero-layout { grid-template-columns: 1fr; gap: 24px; }
  .hero-copy { padding-bottom: 0; }
  .visitor-paths-mobile { display: grid; }
  .hero > .visitor-paths-desktop { display: none; }
  .hero h1 { max-width: 800px; }
  .hero-stage { width: min(100%, 720px); min-height: 560px; margin: 0 auto; grid-template-columns: 1fr 50px 250px; }
  .hero-footnote { margin-top: 36px; }
  .manifesto-layout { grid-template-columns: 1fr; gap: 18px; }
  .two-column-heading { grid-template-columns: 1fr; gap: 26px; align-items: start; }
  .proof-composition { grid-template-columns: 1fr; }
  .key-journey { grid-template-columns: minmax(170px, .8fr) minmax(190px, 1fr) minmax(210px, .9fr); gap: 18px; }
  .trust-boundaries { min-height: 340px; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid li:nth-child(2) { border-right: 0; }
  .process-grid li:nth-child(-n+2) { border-bottom: 1px solid var(--stroke); }
  .technology-split { grid-template-columns: 1fr; gap: 50px; }
  .chip-panel { min-height: 460px; }
  .technical-deep-dive-grid { grid-template-columns: repeat(2, 1fr); }
  .inside-surfaces { grid-template-columns: 1fr; }
  .inside-surface { display: grid; grid-template-columns: 1fr minmax(300px, .9fr); align-items: center; gap: 25px; }
  .surface-label { grid-column: 1 / -1; }
  .surface-caption { font-size: .85rem; }
  .partner-journey { grid-template-columns: repeat(2, 1fr); }
  .partner-journey article:nth-child(2) { border-right: 0; }
  .partner-journey article:nth-child(-n+2) { border-bottom: 1px solid var(--stroke); }
  .status-rail { grid-template-columns: repeat(2, 1fr); }
  .contact-layout { grid-template-columns: 1fr; gap: 42px; }
  .contact-copy, .faq-heading { position: static; }
  .faq-layout { grid-template-columns: 1fr; gap: 32px; }
  .footer-main { grid-template-columns: 1.3fr 1fr 1fr; }
  .footer-main > div:last-child { grid-column: 2; }
}

@media (max-width: 720px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 64px 0; }
  .brand-logo { width: 150px; }
  .nav-toggle span:last-child { display: none; }
  .hero { padding-top: calc(var(--header-height) + 44px); }
  .hero h1 { font-size: clamp(3.1rem, 14vw, 4.2rem); }
  .hero-lead { font-size: 1rem; }
  .hero-actions .button { width: 100%; }
  .hero-stage { min-height: 840px; grid-template-columns: 1fr; grid-template-rows: auto 42px auto; }
  .partner-login-card { width: min(100%, 390px); justify-self: start; padding: 22px; }
  .signal-path { width: 1px; height: 42px; justify-self: center; }
  .signal-path::before { inset: 0 auto 0 0; width: 1px; height: 100%; background: linear-gradient(var(--stroke-strong), var(--gold)); }
  .signal-path i { display: none; }
  .signal-dot { left: -4px; top: 0; }
  .hero-stage.is-pending .signal-dot { animation: travelVertical 1.3s ease-in-out infinite; }
  .phone-shell { width: 252px; justify-self: end; }
  .hero-footnote { grid-template-columns: 1fr; padding: 18px 0; }
  .hero-footnote span { min-height: 34px; padding: 0; border-right: 0; }
  .visitor-paths { grid-template-columns: repeat(2, 1fr); margin-bottom: 28px; }
  .visitor-paths a { min-height: 76px; }
  .visitor-paths a:nth-of-type(2) { border-right: 0; }
  .visitor-paths a:nth-of-type(-n+2) { border-bottom: 1px solid var(--stroke); }
  .manifesto h2 { font-size: 2.35rem; }
  .section-heading h2, .faq-heading h2, .contact-copy h2 { font-size: clamp(2.3rem, 11vw, 3.4rem); }
  .key-journey {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: -12px;
    padding: 18px;
  }
  .key-journey-endpoint,
  .key-vault { min-height: 128px; }
  .key-journey-path {
    min-height: 78px;
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr auto;
    justify-items: center;
  }
  .key-journey-path i { width: 1px; height: 100%; }
  .key-journey-path i::before,
  .key-journey-path i::after {
    left: -3px;
    right: auto;
    top: auto;
    bottom: 0;
    transform: rotate(135deg);
  }
  .key-journey-path i::before {
    top: 0;
    bottom: auto;
    transform: rotate(-45deg);
  }
  .trust-boundaries { grid-template-columns: 1fr; gap: 12px; }
  .boundary { min-height: 180px; }
  .boundary-arrow { min-height: 46px; }
  .boundary-arrow span { width: 1px; height: 36px; background: var(--stroke-strong); }
  .boundary-arrow span::after { right: -3px; top: auto; bottom: 0; transform: rotate(135deg); }
  .proof-details summary { min-height: 76px; padding: 15px 17px; }
  .proof-details .trust-boundaries { padding: 14px; }
  .process-grid { grid-template-columns: 1fr; }
  .process-grid li { min-height: 210px; border-right: 0; border-bottom: 1px solid var(--stroke); }
  .process-grid li:last-child { border-bottom: 0; }
  .chip-panel { min-height: 370px; }
  .technical-deep-dive { margin-top: 48px; }
  .technical-deep-dive summary { min-height: 94px; padding: 18px; }
  .technical-deep-dive > .technical-deep-dive-body { padding: 0 18px 18px; }
  .technical-deep-dive-grid { grid-template-columns: 1fr; }
  .technical-deep-dive-grid article { min-height: 0; }
  .inside-surface { display: block; }
  .offer-preview, .account-preview, .login-preview { min-height: 350px; }
  .inside-surface .surface-caption { margin-top: 16px; }
  .audience-grid { grid-template-columns: 1fr; }
  .audience-card { min-height: 0; padding: 28px 24px; }
  .card-link { position: static; margin-top: 24px; }
  .partner-journey { grid-template-columns: 1fr; }
  .partner-journey article { min-height: 0; border-right: 0; border-bottom: 1px solid var(--stroke); }
  .partner-journey article:last-child { border-bottom: 0; }
  .partner-cta, .partner-cta > div { align-items: flex-start; flex-direction: column; }
  .partner-cta .button { width: 100%; }
  .status-rail { grid-template-columns: 1fr; }
  .status-rail article { min-height: 0; }
  .status-rail h3 { margin-top: 34px; }
  .contact-form { padding: 24px 18px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-grid label.wide { grid-column: auto; }
  .form-actions .button { width: 100%; }
  .faq-list summary { min-height: 94px; font-size: .92rem; }
  .faq-list details p { margin-right: 20px; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-brand-block { grid-column: 1 / -1; }
  .footer-main > div:last-child { grid-column: auto; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 430px) {
  .nav-shell { gap: 8px; }
  .brand-logo { width: 132px; }
  .footer-main { grid-template-columns: 1fr; gap: 32px; }
  .footer-brand-block { grid-column: auto; }
  .visitor-paths { grid-template-columns: 1fr; }
  .visitor-paths a { border-right: 0; border-bottom: 1px solid var(--stroke); }
  .visitor-paths a:last-child { border-bottom: 0; }
  .language-switch { padding: 2px; }
  .language-switch a { min-width: 44px; min-height: 44px; font-size: .62rem; }
  .inside-mark { min-width: 78px; padding-inline: 7px; }
  .inside-mark b { font-size: .66rem; }
  .inside-mark small,
  .mini-label,
  .phone-status,
  .request-facts small,
  .phone-pin > span:first-child { font-size: .75rem; }
  .surface-top {
    display: grid;
    grid-template-columns: 1fr;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 32px;
  }
  .surface-top [data-browser-status] { justify-self: start; }
  .status-chip { font-size: .75rem; }
  .request-facts b,
  .phone-actions button,
  .pin-dots { font-size: .75rem; }
  .inside-login-button { font-size: .78rem; }
  .phone-shell { width: 238px; }
  .phone-screen { min-height: 505px; }
  .included-row, .account-security { gap: 8px; }
  .account-security { grid-template-columns: auto 1fr; }
  .account-security .status-chip { grid-column: 2; }
}

@keyframes travelVertical { 0% { top: 0; opacity: 0; } 18% { opacity: 1; } 82% { opacity: 1; } 100% { top: calc(100% - 10px); opacity: 0; } }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .button:hover,
  .button:active,
  .inside-login-button:hover,
  .inside-login-button:active,
  .card-link:hover span { transform: none; }
}

@media (forced-colors: active) {
  .inside-mark, .status-chip, .process-icon, .boundary, .inside-surface { border: 1px solid CanvasText; }
  .result-dot { forced-color-adjust: none; }
}
