/* Obscura — Contour Neon (tokens from the Stitch reference) */
:root {
  --bg: #0f1418;
  --lowest: #0a0f13;
  --low: #171c20;
  --cont: #1b2024;
  --high: #262b2f;
  --highest: #30353a;
  --on: #dfe3e9;
  --on-var: #bfcab0;
  --outline: #8a947c;
  --outline-var: #404a36;
  --lime: #76d300;
  --lime-bright: #90f031;
  --on-lime: #1b3700;
  --on-lime-c: #2d5600;
  --orange: #ff5e36;
  --secondary: #ffb4a2;
  --tertiary: #d1d9e5;
  --hair: rgba(255, 255, 255, .08);
  --r-sm: 12px;
  --r-md: 16px;
  --r-lg: 24px;
  --shadow-lime: 0 4px 25px -2px rgba(118, 211, 0, .4);
  --glow: 0 0 35px -8px rgba(118, 211, 0, .22);
  --font: "Plus Jakarta Sans", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  color-scheme: dark;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0; background: var(--bg); color: var(--on); font-family: var(--font);
  font-size: 16px; line-height: 1.6; -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
::selection { background: var(--lime); color: var(--on-lime-c); }
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
p { margin: 0; }
h1, h2, h3, h4 { margin: 0; line-height: 1.15; letter-spacing: -.02em; }
:focus-visible { outline: 2px solid var(--lime-bright); outline-offset: 3px; border-radius: 6px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

.ms { font-family: "Material Symbols Outlined"; font-weight: normal; font-style: normal; font-size: 20px; line-height: 1;
  display: inline-block; vertical-align: middle; font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
  -webkit-font-feature-settings: "liga"; font-feature-settings: "liga"; user-select: none; }
.ms.fill { font-variation-settings: "FILL" 1, "wght" 500, "GRAD" 0, "opsz" 24; }

.wrap { width: min(1152px, 100% - 48px); margin-inline: auto; }

/* Ambient glow + topographic contours */
.ambient { position: fixed; inset: 0; pointer-events: none; z-index: 0; overflow: hidden; }
.ambient i { position: absolute; border-radius: 50%; filter: blur(140px); }
.ambient i:nth-child(1) { top: -160px; right: 25%; width: 384px; height: 384px; background: rgba(144, 240, 49, .10); }
.ambient i:nth-child(2) { top: 50%; left: -100px; width: 384px; height: 384px; background: rgba(144, 240, 49, .05); }
.ambient i:nth-child(3) { bottom: -80px; right: 33%; width: 320px; height: 320px; background: rgba(118, 211, 0, .05); }
.contours { position: absolute; inset: 0; opacity: .5; background-image: url("contours.svg"); background-size: 1200px auto; background-repeat: repeat; }
main, header, footer { position: relative; z-index: 1; }

/* Header */
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(15, 20, 24, .85); backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px); border-bottom: 1px solid rgba(64, 74, 54, .3); }
.site-header .wrap { height: 80px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand .disc { width: 40px; height: 40px; border-radius: 50%; background: var(--high); border: 1px solid rgba(64, 74, 54, .5);
  display: grid; place-items: center; transition: border-color .2s; }
.brand:hover .disc { border-color: rgba(144, 240, 49, .8); }
.brand .disc img { width: 28px; height: 28px; filter: drop-shadow(0 0 6px rgba(118, 211, 0, .6)); }
.brand b { font-size: 20px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.brand .tag { font-size: 10px; font-weight: 800; letter-spacing: .08em; color: var(--on-lime); background: var(--lime); padding: 2px 6px; border-radius: 4px; }
.nav { display: flex; align-items: center; gap: 28px; font-size: 14px; font-weight: 600; }
.nav a { color: var(--on-var); transition: color .2s; }
.nav a:hover, .nav a[aria-current="page"] { color: var(--lime-bright); }
.nav .legal-pill { display: inline-flex; align-items: center; gap: 4px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em;
  padding: 4px 10px; border-radius: 6px; background: var(--high); border: 1px solid rgba(64, 74, 54, .4); }
.nav .legal-pill .ms { font-size: 15px; color: var(--lime-bright); }
.nav-toggle { display: none; background: var(--high); border: 1px solid var(--hair); color: var(--on); width: 44px; height: 44px; border-radius: 50%; cursor: pointer; }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; height: 48px; padding: 0 24px; border-radius: 999px;
  font: 700 14px/1 var(--font); border: 1px solid transparent; cursor: pointer; transition: transform .15s, background .2s, border-color .2s, box-shadow .2s; white-space: nowrap; }
.btn:active { transform: scale(.97); }
.btn .ms { font-size: 18px; }
.btn-lime { background: var(--lime); color: var(--on-lime-c); box-shadow: var(--shadow-lime); }
.btn-lime:hover { background: var(--lime-bright); }
.btn-dark { background: var(--high); color: var(--on); border-color: rgba(64, 74, 54, .5); }
.btn-dark:hover { border-color: rgba(144, 240, 49, .6); }
.btn-ghost { background: transparent; color: var(--lime-bright); border-color: rgba(144, 240, 49, .5); height: 36px; padding: 0 14px; font-size: 12px; }
.btn-ghost:hover { background: rgba(144, 240, 49, .08); }
.btn-sm { height: 40px; padding: 0 18px; font-size: 13px; }
.btn[aria-disabled="true"] { opacity: .75; cursor: default; }

/* Capsules */
.capsule { display: inline-flex; align-items: center; gap: 8px; padding: 5px 12px; border-radius: 999px; background: var(--cont);
  border: 1px solid rgba(64, 74, 54, .4); font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--lime-bright); }
.capsule .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 10px 1px rgba(144, 240, 49, .6); animation: blink 1.8s ease-in-out infinite; }
@keyframes blink { 50% { opacity: .35; } }

/* Hero */
.hero { padding: 72px 0 96px; }
.hero .wrap { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center; }
.hero h1 { font-size: clamp(38px, 4.9vw, 58px); font-weight: 800; letter-spacing: -.035em; line-height: 1.02; margin: 20px 0 20px; }
.hero h1 span { display: block; color: var(--lime-bright); }
.hero .lede { font-size: 18px; color: var(--tertiary); max-width: 480px; line-height: 1.55; }
.hero .actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 32px 0 28px; }
.trust { display: flex; flex-wrap: wrap; gap: 8px 22px; font-size: 12px; font-weight: 600; color: var(--on-var); }
.trust span { display: inline-flex; align-items: center; gap: 6px; }
.trust .ms { font-size: 15px; color: var(--lime-bright); }

/* Phone mockup */
.stage { position: relative; display: grid; place-items: center; min-height: 560px; }
.stage::before { content: ""; position: absolute; width: 440px; height: 440px; border-radius: 50%; border: 1px solid rgba(64, 74, 54, .35); }
.stage::after { content: ""; position: absolute; width: 330px; height: 330px; border-radius: 50%; border: 1px dashed rgba(64, 74, 54, .3); }
.phone { position: relative; z-index: 2; width: 290px; height: 540px; border-radius: 44px; padding: 10px; background: #121719;
  border: 1px solid rgba(255, 255, 255, .12); box-shadow: var(--glow), 0 30px 80px -20px rgba(0, 0, 0, .7); }
.screen { height: 100%; border-radius: 36px; background: var(--lowest); overflow: hidden; display: flex; flex-direction: column; padding: 16px 14px; position: relative; }
.notch { width: 90px; height: 22px; border-radius: 0 0 14px 14px; background: #121719; margin: -16px auto 10px; }
.tabs { display: flex; gap: 4px; padding: 4px; border-radius: 999px; background: var(--cont); border: 1px solid var(--hair); }
.tabs button { flex: 1; display: flex; align-items: center; justify-content: center; gap: 4px; height: 30px; border-radius: 999px; border: 0;
  background: transparent; color: var(--on-var); font: 700 11px/1 var(--font); cursor: pointer; transition: background .2s, color .2s; }
.tabs button .ms { font-size: 14px; }
.tabs button[aria-selected="true"] { background: var(--lime); color: var(--on-lime-c); }
.panel { flex: 1; display: none; flex-direction: column; padding-top: 14px; }
.panel.on { display: flex; animation: panelIn .35s ease; }
@keyframes panelIn { from { opacity: 0; transform: translateY(6px); } }
.row-mini { display: flex; align-items: center; justify-content: space-between; font-size: 10px; font-weight: 700; color: var(--on-var); }
.row-mini .live { display: inline-flex; align-items: center; gap: 6px; color: var(--lime-bright); }
.row-mini .live i { width: 6px; height: 6px; border-radius: 50%; background: var(--lime); }
.row-mini .pill { padding: 3px 8px; border-radius: 999px; border: 1px solid var(--hair); background: var(--cont); }

.radar { position: relative; width: 190px; height: 190px; margin: 18px auto; border-radius: 50%; }
.radar .ring { position: absolute; inset: 0; border-radius: 50%; border: 1px solid rgba(64, 74, 54, .5); }
.radar .ring:nth-child(2) { inset: 18%; border-style: dashed; }
.radar .ring:nth-child(3) { inset: 36%; border-color: rgba(118, 211, 0, .35); }
.radar .sweep { position: absolute; inset: 0; border-radius: 50%;
  background: conic-gradient(from 0deg, rgba(118, 211, 0, .38), rgba(118, 211, 0, .05) 45deg, transparent 75deg); animation: sweep 4s linear infinite; }
@keyframes sweep { to { transform: rotate(360deg); } }
.radar .pulse { position: absolute; inset: 30%; border-radius: 50%; border: 1px solid var(--lime); animation: wave 2.8s cubic-bezier(.2, .6, .35, 1) infinite; }
@keyframes wave { 0% { transform: scale(.6); opacity: .9; } 70% { transform: scale(1.4); opacity: .15; } 100% { transform: scale(1.8); opacity: 0; } }
.radar .me { position: absolute; left: 50%; top: 50%; width: 30px; height: 30px; transform: translate(-50%, -50%); border-radius: 50%;
  background: var(--lowest); border: 2px solid var(--lime); display: grid; place-items: center; }
.radar .me img { width: 18px; }
.radar .blip { position: absolute; width: 10px; height: 10px; border-radius: 50%; background: var(--lime-bright); box-shadow: 0 0 14px 2px rgba(144, 240, 49, .5); }
.radar .tag { position: absolute; top: 14%; right: -6%; font-size: 9px; font-weight: 800; color: var(--on-lime-c); background: var(--lime); padding: 2px 6px; border-radius: 5px; }
.match-card { display: flex; align-items: center; gap: 10px; padding: 10px; border-radius: 16px; background: var(--cont); border: 1px solid var(--hair); }
.avatar { width: 36px; height: 36px; border-radius: 50%; flex: none; display: grid; place-items: center; font-weight: 800; font-size: 13px; color: var(--on-lime-c);
  background: radial-gradient(circle at 30% 30%, #b6ff6a, var(--lime) 60%, #3f7a00); }
.avatar.alt { background: radial-gradient(circle at 30% 30%, #ffd2c4, #ff8a66 55%, #8a2a0e); color: #3c0700; }
.match-card b { display: block; font-size: 12px; }
.match-card small { display: block; font-size: 10px; color: var(--on-var); }
.match-card .km { margin-left: auto; font-size: 9px; font-weight: 800; color: var(--on-lime-c); background: var(--lime); padding: 3px 7px; border-radius: 999px; }
.screen .btn-lime { height: 38px; margin-top: 10px; font-size: 12px; width: 100%; }

.chat { flex: 1; display: flex; flex-direction: column; gap: 8px; padding: 12px 10px; margin-top: 8px; border-radius: 22px; background: #fff; color: #0e1317; }
.chat .top { display: flex; align-items: center; gap: 8px; font-size: 11px; font-weight: 700; padding-bottom: 8px; border-bottom: 1px solid #eef0f3; }
.chat .top .live { margin-left: auto; font-size: 9px; color: #6b7280; display: inline-flex; align-items: center; gap: 4px; }
.chat .top .live i { width: 6px; height: 6px; border-radius: 50%; background: var(--lime); }
.bubble { max-width: 80%; padding: 8px 11px; font-size: 11px; line-height: 1.4; font-weight: 500; }
.bubble.in { background: #f0f2f5; border-radius: 4px 16px 16px 16px; }
.bubble.out { align-self: flex-end; background: #0e1317; color: #f5f5f5; border-radius: 16px 4px 16px 16px; }
.voice { align-self: flex-end; display: flex; align-items: center; gap: 6px; background: #0e1317; color: #d1d5db; border-radius: 16px 4px 16px 16px; padding: 6px 10px; font-size: 10px; }
.voice .play { width: 20px; height: 20px; border-radius: 50%; background: #fff; color: #0e1317; display: grid; place-items: center; }
.voice .play .ms { font-size: 14px; }
.wave { display: flex; align-items: center; gap: 2px; }
.wave i { width: 2px; border-radius: 2px; background: var(--lime); }
.typing { display: flex; gap: 3px; padding: 9px 12px; background: #f0f2f5; border-radius: 4px 14px 14px 14px; width: max-content; }
.typing i { width: 5px; height: 5px; border-radius: 50%; background: #9ca3af; animation: dot 1.4s infinite both; }
.typing i:nth-child(2) { animation-delay: .2s; } .typing i:nth-child(3) { animation-delay: .4s; }
@keyframes dot { 0%, 80%, 100% { opacity: .25; transform: scale(.8); } 40% { opacity: 1; transform: scale(1.15); } }
.chat .note { margin-top: auto; text-align: center; font-size: 9px; font-weight: 600; color: #6b7280; display: flex; align-items: center; justify-content: center; gap: 4px; }
.chat .note .ms { font-size: 12px; color: #9ca3af; }

.snap { flex: 1; margin-top: 10px; border-radius: 24px; position: relative; overflow: hidden; border: 1px solid var(--hair);
  background: radial-gradient(120% 80% at 20% 10%, #33452a, transparent 60%), radial-gradient(90% 70% at 90% 90%, #3a2a20, transparent 60%), linear-gradient(160deg, #1c2a22, #0c1117); }
.snap::before { content: ""; position: absolute; inset: 0; backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); background: rgba(10, 15, 19, .25); }
.snap .timer { position: absolute; top: 12px; left: 50%; transform: translateX(-50%); width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center;
  font-weight: 800; color: var(--lime-bright); font-size: 13px; background: conic-gradient(var(--lime) calc(var(--p, 70) * 1%), rgba(48, 53, 58, .6) 0); }
.snap .timer::before { content: ""; position: absolute; inset: 3px; border-radius: 50%; background: var(--lowest); }
.snap .timer span { position: relative; }
.snap .center { position: absolute; inset: 0; display: grid; place-items: center; text-align: center; }
.snap .center .lock { width: 44px; height: 44px; border-radius: 50%; background: var(--lime); color: var(--on-lime-c); display: grid; place-items: center; margin: 0 auto 8px; box-shadow: var(--shadow-lime); }
.snap .center b { display: block; font-size: 13px; }
.snap .center small { font-size: 10px; color: var(--on-var); }
.snap .corner { position: absolute; width: 18px; height: 18px; border-color: var(--lime); border-style: solid; }
.snap .c1 { top: 14px; left: 14px; border-width: 2px 0 0 2px; } .snap .c2 { top: 14px; right: 14px; border-width: 2px 2px 0 0; }
.snap .c3 { bottom: 14px; left: 14px; border-width: 0 0 2px 2px; } .snap .c4 { bottom: 14px; right: 14px; border-width: 0 2px 2px 0; }

.float { position: absolute; z-index: 3; display: inline-flex; align-items: center; gap: 6px; padding: 7px 12px; border-radius: 999px; background: rgba(27, 32, 36, .92);
  border: 1px solid rgba(64, 74, 54, .5); font-size: 11px; font-weight: 700; box-shadow: 0 10px 30px -10px rgba(0, 0, 0, .6); animation: bob 4s ease-in-out infinite; }
.float .ms { font-size: 15px; color: var(--lime-bright); }
.float i { width: 7px; height: 7px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 8px var(--lime); }
.float.f1 { top: 34px; left: 4%; } .float.f2 { bottom: 40px; right: 2%; animation-delay: -2s; }
@keyframes bob { 50% { transform: translateY(-6px); } }

/* Sections */
section { padding: 88px 0; }
.sec-head { text-align: center; margin-bottom: 44px; }
.sec-head h2 { font-size: clamp(28px, 3.4vw, 36px); font-weight: 800; }
.sec-head p { color: var(--on-var); margin-top: 8px; }
.split-head { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: end; margin-bottom: 36px; }
.split-head h2 { font-size: clamp(26px, 3vw, 34px); font-weight: 800; margin-top: 10px; }
.split-head p { color: var(--on-var); font-size: 15px; }
.kicker { font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--lime-bright); }
.divider { border-top: 1px solid rgba(64, 74, 54, .3); }

.grid3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.card { background: rgba(27, 32, 36, .7); border: 1px solid rgba(64, 74, 54, .35); border-radius: var(--r-lg); padding: 28px; transition: border-color .25s; }
.card:hover { border-color: rgba(144, 240, 49, .35); }
.card .ic { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; background: rgba(118, 211, 0, .1); border: 1px solid rgba(118, 211, 0, .25); color: var(--lime-bright); margin-bottom: 22px; }
.card h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.card p { font-size: 14px; color: var(--on-var); line-height: 1.6; }

.mode { display: flex; flex-direction: column; }
.mode .top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.mode .badge { font-size: 10px; font-weight: 800; color: var(--lime-bright); background: rgba(118, 211, 0, .12); border: 1px solid rgba(118, 211, 0, .3); padding: 3px 9px; border-radius: 999px; }
.mode .top .ms { color: var(--lime-bright); }
.mode .viz { margin-top: 20px; height: 170px; border-radius: 16px; background: var(--lowest); border: 1px solid var(--hair); position: relative; overflow: hidden; display: grid; place-items: center; }
.viz .orb { position: absolute; border-radius: 50%; border: 1px solid rgba(138, 148, 124, .35); }
.viz .o1 { width: 130px; height: 130px; } .viz .o2 { width: 80px; height: 80px; transform: translate(-22px, 8px); }
.viz .core { width: 26px; height: 26px; border-radius: 50%; border: 2px solid var(--lime); background: var(--lowest); position: relative; z-index: 1; }
.viz .core::after { content: ""; position: absolute; inset: 7px; border-radius: 50%; background: var(--lime); }
.viz .dot { position: absolute; width: 11px; height: 11px; border-radius: 50%; background: var(--lime-bright); top: 34px; right: 36%; box-shadow: 0 0 12px var(--lime); }
.viz.chatv { display: flex; flex-direction: column; justify-content: center; gap: 10px; padding: 16px; }
.viz.chatv .b1 { align-self: flex-start; background: var(--high); color: var(--on); font-size: 12px; padding: 9px 12px; border-radius: 4px 14px 14px 14px; }
.viz.chatv .b2 { align-self: flex-end; background: var(--lime); color: var(--on-lime-c); font-weight: 600; font-size: 12px; padding: 9px 12px; border-radius: 14px 4px 14px 14px; }
.viz.chatv small { align-self: center; font-size: 11px; color: var(--lime-bright); display: flex; align-items: center; gap: 4px; }
.viz.photo { background: radial-gradient(100% 90% at 15% 20%, #4a5a44, transparent 60%), radial-gradient(80% 80% at 90% 80%, #533b2c, transparent 60%), #111820; }
.viz.photo::before { content: ""; position: absolute; inset: 0; backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); background: rgba(10, 15, 19, .35); }
.viz.photo .inner { position: relative; text-align: center; }
.viz.photo .inner .lock { width: 38px; height: 38px; border-radius: 50%; background: var(--lime); color: var(--on-lime-c); display: grid; place-items: center; margin: 0 auto 8px; }
.viz.photo b { display: block; font-size: 13px; } .viz.photo small { font-size: 11px; color: var(--on-var); }

.check { display: flex; gap: 14px; }
.check .tick { width: 30px; height: 30px; border-radius: 50%; flex: none; background: var(--lime); color: var(--on-lime-c); display: grid; place-items: center; }
.check .tick .ms { font-size: 18px; font-weight: 700; }
.legal-banner { margin-top: 20px; display: flex; align-items: center; gap: 16px; padding: 20px 24px; border-radius: 20px; background: rgba(23, 28, 32, .85); border: 1px solid rgba(64, 74, 54, .4); }
.legal-banner .ic { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; color: var(--lime-bright); background: rgba(118, 211, 0, .1); border: 1px solid rgba(118, 211, 0, .25); flex: none; }
.legal-banner b { display: block; font-size: 15px; } .legal-banner p { font-size: 13px; color: var(--on-var); }
.legal-banner .btn { margin-left: auto; }

/* FAQ + contact */
.faq-grid { display: grid; grid-template-columns: 1.35fr 1fr; gap: 32px; align-items: start; }
.faq-grid h2 { font-size: clamp(26px, 3vw, 34px); font-weight: 800; }
.faq-grid > div > p { color: var(--on-var); margin: 6px 0 24px; }
details.faq { background: rgba(27, 32, 36, .7); border: 1px solid rgba(64, 74, 54, .35); border-radius: 18px; padding: 18px 22px; margin-bottom: 12px; }
details.faq[open] { border-color: rgba(144, 240, 49, .3); }
details.faq summary { list-style: none; cursor: pointer; display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 15px; }
details.faq summary::-webkit-details-marker { display: none; }
details.faq summary .ms { color: var(--lime-bright); }
details.faq summary::after { content: "expand_more"; font-family: "Material Symbols Outlined"; margin-left: auto; color: var(--outline); transition: transform .2s; font-size: 22px; }
details.faq[open] summary::after { transform: rotate(180deg); }
details.faq p { margin-top: 10px; padding-left: 30px; color: var(--on-var); font-size: 14px; }
.contact { position: sticky; top: 104px; background: rgba(23, 28, 32, .9); border: 1px solid rgba(118, 211, 0, .25); border-radius: var(--r-lg); padding: 28px; box-shadow: var(--glow); }
.contact h3 { font-size: 22px; font-weight: 800; margin: 8px 0 6px; }
.contact > p { font-size: 14px; color: var(--on-var); }
.mailrow { display: flex; align-items: center; gap: 12px; margin: 20px 0; padding: 14px 16px; border-radius: 14px; background: var(--lowest); border: 1px solid var(--hair); font-weight: 700; }
.mailrow .ms { color: var(--lime-bright); }
.field { display: block; width: 100%; margin-bottom: 12px; padding: 13px 16px; border-radius: 12px; background: var(--lowest); border: 1px solid rgba(64, 74, 54, .5);
  color: var(--on); font: 500 14px/1.4 var(--font); resize: vertical; }
.field::placeholder { color: var(--outline); }
.field:focus { outline: none; border-color: var(--lime); }
.contact .btn { width: 100%; }
.contact .fine { margin-top: 12px; font-size: 12px; color: var(--outline); text-align: center; }

/* Footer */
.site-footer { border-top: 1px solid rgba(64, 74, 54, .3); padding: 40px 0 28px; margin-top: 40px; }
.foot-top { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 20px; }
.foot-top .who { display: flex; align-items: center; gap: 12px; font-size: 13px; color: var(--on-var); flex-wrap: wrap; }
.foot-top .who a { color: var(--lime-bright); }
.foot-links { display: flex; flex-wrap: wrap; gap: 8px 22px; font-size: 13px; font-weight: 600; color: var(--on-var); }
.foot-links a:hover { color: var(--lime-bright); }
.foot-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; margin-top: 26px; padding-top: 20px; border-top: 1px solid rgba(64, 74, 54, .2); font-size: 12px; color: var(--outline); }
.foot-bottom .status { display: inline-flex; align-items: center; gap: 6px; }
.foot-bottom .status i { width: 7px; height: 7px; border-radius: 50%; background: var(--lime); }

/* Legal pages */
.doc-hero { padding: 48px 0 28px; }
.doc-hero .panel-hero { position: relative; overflow: hidden; border-radius: 28px; padding: 36px; background: linear-gradient(160deg, rgba(27, 32, 36, .95), rgba(15, 20, 24, .95));
  border: 1px solid rgba(64, 74, 54, .4); box-shadow: var(--glow); }
.doc-hero h1 { font-size: clamp(32px, 4.4vw, 46px); font-weight: 800; margin: 16px 0 10px; }
.doc-hero .lede { color: var(--tertiary); max-width: 680px; }
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 28px; }
.stat { padding: 14px 16px; border-radius: 14px; background: var(--lowest); border: 1px solid var(--hair); }
.stat small { display: block; font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--outline); }
.stat b { display: block; margin-top: 4px; font-size: 16px; color: var(--lime-bright); }
.jump { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin: 24px 0 8px; padding: 10px; border-radius: 999px; background: rgba(23, 28, 32, .85); border: 1px solid var(--hair); font-size: 12px; font-weight: 700; }
.jump > span { color: var(--outline); padding: 0 8px; }
.jump a { padding: 6px 12px; border-radius: 999px; background: var(--cont); border: 1px solid var(--hair); color: var(--on); }
.jump a:hover { border-color: rgba(144, 240, 49, .5); color: var(--lime-bright); }
.doc { padding: 20px 0 40px; }
.block { margin-top: 24px; border-radius: 28px; padding: 32px; background: rgba(23, 28, 32, .75); border: 1px solid rgba(64, 74, 54, .35); scroll-margin-top: 100px; }
.block-head { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.block-head .ic { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; background: rgba(118, 211, 0, .1); border: 1px solid rgba(118, 211, 0, .3); color: var(--lime-bright); flex: none; }
.block-head .ic.warn { background: rgba(255, 94, 54, .1); border-color: rgba(255, 94, 54, .35); color: var(--orange); }
.block-head small { display: block; font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--lime-bright); }
.block-head h2 { font-size: 24px; font-weight: 800; }
.block p, .block li { color: var(--on-var); font-size: 15px; }
.block p + p { margin-top: 12px; }
.block h3 { font-size: 17px; font-weight: 700; color: var(--on); margin: 26px 0 8px; }
.block ul, .block ol { margin: 8px 0 0; padding-left: 22px; }
.block li { margin: 6px 0; }
.block li::marker { color: var(--lime-bright); }
.block strong { color: var(--on); }
.block a:not(.btn) { color: var(--lime-bright); text-decoration: underline; text-underline-offset: 3px; }
.tiles { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 18px; }
.tile { padding: 20px; border-radius: 18px; background: var(--lowest); border: 1px solid var(--hair); }
.tile .head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.tile .head .ms { color: var(--lime-bright); }
.tile .chip { font-size: 9px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; padding: 3px 8px; border-radius: 999px; background: var(--high); color: var(--on-var); border: 1px solid var(--hair); }
.tile .chip.hot { background: rgba(255, 94, 54, .15); color: var(--secondary); border-color: rgba(255, 94, 54, .35); }
.tile h3 { margin: 0 0 6px; font-size: 16px; }
.tile p { font-size: 13.5px; }
.table-wrap { overflow-x: auto; margin-top: 14px; border-radius: 16px; border: 1px solid var(--hair); }
table { width: 100%; border-collapse: collapse; font-size: 14px; min-width: 620px; }
th, td { text-align: left; padding: 12px 16px; vertical-align: top; border-bottom: 1px solid var(--hair); }
th { background: var(--cont); font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--outline); }
td { color: var(--on-var); } td:first-child { color: var(--on); font-weight: 600; }
tr:last-child td { border-bottom: 0; }
.callout { display: flex; gap: 12px; margin-top: 18px; padding: 16px 18px; border-radius: 16px; background: rgba(118, 211, 0, .07); border: 1px solid rgba(118, 211, 0, .25); }
.callout .ms { color: var(--lime-bright); }
.callout.warn { background: rgba(255, 94, 54, .07); border-color: rgba(255, 94, 54, .3); }
.callout.warn .ms { color: var(--orange); }
.callout p { font-size: 14px; }
.entity { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 10px; }
.entity dl { margin: 0; }
.entity dt { font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--outline); margin-top: 14px; }
.entity dd { margin: 2px 0 0; color: var(--on); font-weight: 600; }
.steps { counter-reset: s; list-style: none; padding: 0 !important; }
.steps li { counter-increment: s; position: relative; padding: 12px 0 12px 46px; margin: 0; border-bottom: 1px solid var(--hair); }
.steps li:last-child { border-bottom: 0; }
.steps li::before { content: counter(s); position: absolute; left: 0; top: 10px; width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center;
  background: var(--lime); color: var(--on-lime-c); font-weight: 800; font-size: 13px; }
.eff { font-size: 12px; color: var(--outline); }

/* 404 */
.center-page { min-height: 70vh; display: grid; place-items: center; text-align: center; padding: 60px 0; }
.center-page h1 { font-size: 44px; font-weight: 800; margin: 18px 0 10px; }
.center-page p { color: var(--on-var); margin-bottom: 24px; }

/* Responsive */
@media (max-width: 960px) {
  .hero .wrap, .faq-grid, .split-head { grid-template-columns: 1fr; }
  .hero { padding-top: 40px; }
  .stage { min-height: 580px; }
  .grid3 { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .contact { position: static; }
}
@media (max-width: 760px) {
  .nav { display: none; position: absolute; top: 80px; left: 0; right: 0; flex-direction: column; align-items: stretch; gap: 0; padding: 8px 24px 20px;
    background: rgba(15, 20, 24, .97); border-bottom: 1px solid rgba(64, 74, 54, .3); }
  .nav.open { display: flex; }
  .nav a { padding: 12px 0; border-bottom: 1px solid var(--hair); }
  .nav .legal-pill { margin-top: 12px; justify-content: center; padding: 10px; }
  .nav-toggle { display: grid; place-items: center; }
  .header-cta { display: none !important; }
  section { padding: 64px 0; }
  .tiles, .entity { grid-template-columns: 1fr; }
  .block { padding: 24px 20px; }
  .doc-hero .panel-hero { padding: 26px 20px; }
  .legal-banner { flex-wrap: wrap; }
  .legal-banner .btn { margin-left: 0; }
  .stage::before { width: 340px; height: 340px; } .stage::after { width: 260px; height: 260px; }
  .float.f1 { left: 0; top: 10px; } .float.f2 { right: 0; bottom: 10px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}
