/* ════════════════════════════════════════════════════════════════════
   VisionPlayer — Landing  ·  standalone stylesheet
   Brand palette mirrors the app: void #05070D, accent cyan #00D4FF
   ════════════════════════════════════════════════════════════════════ */

:root {
  --void: #05070D;
  --bg: #070A12;
  --surface: #0D1320;
  --surface-2: #121A2A;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.16);
  --accent: #00D4FF;
  --accent-2: #3B82F6;
  --accent-3: #7C3AED;
  --text: #FFFFFF;
  --text-dim: #9CA3AF;
  --text-mute: #5B6472;
  --gold: #FBBF24;
  --success: #22C55E;
  --radius: 18px;
  --radius-sm: 12px;
  --maxw: 1180px;
  --shadow-glow: 0 0 40px rgba(0, 212, 255, 0.25);
  --font-display: 'Sora', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
  font-family: var(--font-body);
  background: var(--void);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul { list-style: none; }

/* ── Animated canvas background ──────────────────────────────────────── */
#bg-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

main, .nav, .footer { position: relative; z-index: 1; }

/* ── Layout helpers ──────────────────────────────────────────────────── */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: 800px; }

.section { padding: 110px 0; }
.section--alt { background: linear-gradient(180deg, transparent, rgba(13, 19, 32, 0.6), transparent); }

.section__head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.section__head h2 { font-family: var(--font-display); font-size: clamp(1.9rem, 4vw, 2.9rem); font-weight: 800; line-height: 1.12; letter-spacing: -0.02em; }
.section__head p { color: var(--text-dim); font-size: 1.08rem; margin-top: 16px; }

.eyebrow {
  display: inline-block;
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 14px;
}

.grad-text {
  background: linear-gradient(100deg, var(--accent), var(--accent-2) 60%, var(--accent-3));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}

/* ── Buttons ─────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-display); font-weight: 600; font-size: 0.95rem;
  padding: 12px 22px; border-radius: 999px; cursor: pointer; border: 1px solid transparent;
  transition: transform 0.18s ease, box-shadow 0.25s ease, background 0.25s ease;
  white-space: nowrap;
}
.btn--lg { padding: 16px 30px; font-size: 1.02rem; }
.btn--primary {
  background: linear-gradient(100deg, var(--accent), var(--accent-2));
  color: #04121A; box-shadow: 0 8px 30px rgba(0, 212, 255, 0.3);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(0, 212, 255, 0.45); }
.btn--ghost { background: rgba(255, 255, 255, 0.04); border-color: var(--border-strong); color: var(--text); }
.btn--ghost:hover { background: rgba(255, 255, 255, 0.1); transform: translateY(-2px); }

/* ── Nav ─────────────────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background 0.3s ease, border-color 0.3s ease, backdrop-filter 0.3s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(5, 7, 13, 0.78); backdrop-filter: blur(16px);
  border-bottom-color: var(--border);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 76px; gap: 20px; }
.brand { display: flex; align-items: center; gap: 10px; }
.brand__logo { border-radius: 9px; }
.brand__name { font-family: var(--font-display); font-weight: 800; font-size: 1.2rem; letter-spacing: -0.01em; }
.brand__accent { color: var(--accent); }
.brand__wordmark { height: 38px; width: auto; display: block; }
.footer .brand__wordmark { height: 34px; }
@media (max-width: 760px) { .brand__wordmark { height: 32px; } }
.nav__links { display: flex; gap: 30px; }
.nav__links a { font-size: 0.94rem; color: var(--text-dim); font-weight: 500; transition: color 0.2s; }
.nav__links a:hover { color: var(--text); }
.nav__cta { display: flex; gap: 12px; }
.nav__burger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav__burger span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: 0.3s; }

/* ── Hero ────────────────────────────────────────────────────────────── */
.hero { position: relative; padding: 160px 0 90px; text-align: center; overflow: hidden; }
.hero__canvas { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 1; pointer-events: none; }
.hero__inner { position: relative; z-index: 2; max-width: 880px; }
.hero__title {
  font-family: var(--font-display); font-weight: 800; letter-spacing: -0.025em;
  font-size: clamp(2.4rem, 6vw, 4.3rem); line-height: 1.05; margin: 22px 0;
}
.hero__sub { font-size: clamp(1.05rem, 2vw, 1.28rem); color: var(--text-dim); max-width: 680px; margin: 0 auto 36px; }
.hero__sub strong { color: var(--text); font-weight: 600; }
.hero__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.pill {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 8px 16px; border-radius: 999px; font-size: 0.85rem; font-weight: 500;
  background: rgba(0, 212, 255, 0.08); border: 1px solid rgba(0, 212, 255, 0.25); color: #9fe9ff;
}
.pill__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 10px var(--accent); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }

.hero__stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
  margin-top: 60px; padding-top: 40px; border-top: 1px solid var(--border);
}
.hero__stats b { display: block; font-family: var(--font-display); font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 800; color: var(--text); }
.hero__stats span { font-size: 0.85rem; color: var(--text-mute); }

.hero__glow {
  position: absolute; top: -10%; left: 50%; transform: translateX(-50%);
  width: 900px; height: 600px; z-index: 1; pointer-events: none;
  background: radial-gradient(ellipse at center, rgba(0, 212, 255, 0.18), rgba(59, 130, 246, 0.08) 40%, transparent 70%);
  filter: blur(30px);
}

/* ── Trust bar ───────────────────────────────────────────────────────── */
.trustbar { padding: 26px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.trustbar__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.trustbar__inner > span { color: var(--text-mute); font-size: 0.9rem; }
.trustbar__items { display: flex; gap: 10px; flex-wrap: wrap; }
.chip {
  font-size: 0.82rem; font-weight: 500; padding: 6px 14px; border-radius: 999px;
  background: rgba(255, 255, 255, 0.04); border: 1px solid var(--border); color: var(--text-dim);
}

/* ── Grids ───────────────────────────────────────────────────────────── */
.grid { display: grid; gap: 22px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

/* ── Feature cards ───────────────────────────────────────────────────── */
.fcard {
  background: linear-gradient(180deg, var(--surface), rgba(13, 19, 32, 0.4));
  border: 1px solid var(--border); border-radius: var(--radius); padding: 30px 26px;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.fcard:hover { transform: translateY(-5px); border-color: rgba(0, 212, 255, 0.4); box-shadow: 0 14px 40px rgba(0, 0, 0, 0.5); }
.fcard__ic {
  display: inline-flex; align-items: center; justify-content: center;
  width: 52px; height: 52px; border-radius: 14px; margin-bottom: 18px;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.15), rgba(59, 130, 246, 0.12));
  border: 1px solid rgba(0, 212, 255, 0.25); color: var(--accent);
}
.fcard__ic svg { width: 26px; height: 26px; }
.fcard h3 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; margin-bottom: 9px; }
.fcard p { color: var(--text-dim); font-size: 0.96rem; }

/* ── Technology section ──────────────────────────────────────────────── */
.tech { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 60px; align-items: center; }
.tech__copy h2 { font-family: var(--font-display); font-size: clamp(1.8rem, 3.5vw, 2.7rem); font-weight: 800; line-height: 1.12; letter-spacing: -0.02em; }
.tech__lead { color: var(--text-dim); font-size: 1.08rem; margin: 18px 0 28px; }
.tech__list { display: flex; flex-direction: column; gap: 22px; }
.tech__list li { display: flex; gap: 16px; }
.tech__ic {
  flex-shrink: 0; width: 44px; height: 44px; border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(0, 212, 255, 0.1); border: 1px solid rgba(0, 212, 255, 0.22); color: var(--accent);
}
.tech__ic svg { width: 22px; height: 22px; }
.tech__list b { font-family: var(--font-display); font-size: 1.05rem; }
.tech__list p { color: var(--text-dim); font-size: 0.93rem; }

/* Orbit visual */
.tech__viz { display: flex; justify-content: center; }
.orbit { position: relative; width: 340px; height: 340px; }
.orbit__core {
  position: absolute; inset: 0; margin: auto; width: 92px; height: 92px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: #04121A;
  box-shadow: var(--shadow-glow); z-index: 3;
}
.orbit__core svg { width: 38px; height: 38px; }
.orbit__ring { position: absolute; inset: 0; margin: auto; border: 1px dashed rgba(255, 255, 255, 0.12); border-radius: 50%; }
.orbit__ring--1 { width: 180px; height: 180px; animation: spin 16s linear infinite; }
.orbit__ring--2 { width: 260px; height: 260px; animation: spin 26s linear infinite reverse; }
.orbit__ring--3 { width: 340px; height: 340px; animation: spin 38s linear infinite; }
.orbit__node {
  position: absolute; top: -20px; left: 50%; transform: translateX(-50%);
  width: 40px; height: 40px; border-radius: 11px; display: flex; align-items: center; justify-content: center;
  background: var(--surface-2); border: 1px solid var(--border-strong); color: var(--accent);
}
.orbit__node svg { width: 20px; height: 20px; }
@keyframes spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { .orbit__ring { animation: none; } }

/* ── Steps ───────────────────────────────────────────────────────────── */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; counter-reset: step; }
.step {
  position: relative; background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 34px 28px;
}
.step__n {
  font-family: var(--font-display); font-weight: 800; font-size: 1.1rem;
  width: 44px; height: 44px; border-radius: 12px; display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: #04121A; margin-bottom: 18px;
}
.step h3 { font-family: var(--font-display); font-size: 1.25rem; margin-bottom: 8px; }
.step p { color: var(--text-dim); font-size: 0.97rem; }

/* ── Pricing cards ───────────────────────────────────────────────────── */
.pcard {
  display: flex; flex-direction: column;
  background: linear-gradient(180deg, var(--surface), rgba(13, 19, 32, 0.3));
  border: 1px solid var(--border); border-radius: var(--radius); padding: 28px 24px;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.pcard:hover { transform: translateY(-6px); box-shadow: 0 18px 50px rgba(0, 0, 0, 0.5); }
.pcard--featured { border-color: rgba(0, 212, 255, 0.5); box-shadow: 0 0 0 1px rgba(0, 212, 255, 0.2), 0 18px 50px rgba(0, 212, 255, 0.12); }
.pcard__badge {
  align-self: flex-start; font-size: 0.74rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 999px; margin-bottom: 14px;
  background: linear-gradient(100deg, var(--accent), var(--accent-2)); color: #04121A;
}
.pcard__badge--ghost { background: rgba(255,255,255,0.06); color: var(--text-dim); border: 1px solid var(--border); }
.pcard__family { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-mute); }
.pcard__name { font-family: var(--font-display); font-size: 1.45rem; font-weight: 700; margin: 4px 0 2px; }
.pcard__tag { color: var(--text-dim); font-size: 0.88rem; min-height: 2.4em; }
.pcard__price { margin: 18px 0 6px; display: flex; align-items: baseline; gap: 6px; }
.pcard__price b { font-family: var(--font-display); font-size: 2.5rem; font-weight: 800; }
.pcard__price span { color: var(--text-mute); font-size: 0.95rem; }
.pcard__meta { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 18px; }
.pcard__meta span { font-size: 0.8rem; padding: 5px 11px; border-radius: 8px; background: rgba(255,255,255,0.04); border: 1px solid var(--border); color: var(--text-dim); }
.pcard__feats { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; flex: 1; }
.pcard__feats li { display: flex; gap: 10px; align-items: flex-start; font-size: 0.9rem; color: var(--text-dim); }
.pcard__feats svg { width: 18px; height: 18px; flex-shrink: 0; color: var(--accent); margin-top: 2px; }
.pcard .btn { width: 100%; }

.pricing__more { text-align: center; margin-top: 40px; }

/* ── Tables ──────────────────────────────────────────────────────────── */
.table-wrap { margin-top: 34px; }
.table-scroll { overflow-x: auto; }
.ptable { width: 100%; border-collapse: collapse; font-size: 0.92rem; }
.ptable th, .ptable td { padding: 14px 16px; text-align: left; border-bottom: 1px solid var(--border); }
.ptable thead th { color: var(--text-mute); font-weight: 600; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.05em; }
.ptable tbody tr:hover { background: rgba(255,255,255,0.02); }
.ptable td:first-child { font-weight: 600; color: var(--text); }
.ptable .price-cell { color: var(--accent); font-family: var(--font-display); font-weight: 700; }
.matrix__title { font-family: var(--font-display); font-size: 1.4rem; text-align: center; margin: 50px 0 24px; }
.ptable--matrix th, .ptable--matrix td { text-align: center; white-space: nowrap; }
.ptable--matrix td:first-child, .ptable--matrix th:first-child { text-align: left; }
.ck { color: var(--success); font-weight: 700; }
.x { color: var(--text-mute); }

/* ── Credit packs ────────────────────────────────────────────────────── */
.packcard {
  text-align: center; background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px 26px;
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.packcard:hover { transform: translateY(-5px); border-color: rgba(0, 212, 255, 0.4); }
.packcard__name { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; }
.packcard__credits { font-family: var(--font-display); font-size: 2.6rem; font-weight: 800; margin: 10px 0 2px; color: var(--accent); }
.packcard__credits small { font-size: 0.9rem; color: var(--text-mute); font-weight: 500; }
.packcard__tag { color: var(--text-dim); font-size: 0.9rem; margin: 8px 0 16px; min-height: 2.6em; }
.packcard__price { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; }
.packcard__unit { color: var(--text-mute); font-size: 0.84rem; margin-top: 4px; }
.note { text-align: center; color: var(--text-mute); font-size: 0.9rem; margin-top: 30px; }

/* ── White label highlight ───────────────────────────────────────────── */
.wl { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.wl__copy h2 { font-family: var(--font-display); font-size: clamp(1.8rem, 3.5vw, 2.7rem); font-weight: 800; line-height: 1.12; }
.wl__copy p { color: var(--text-dim); font-size: 1.05rem; margin: 16px 0 24px; }
.wl__list { display: flex; flex-direction: column; gap: 12px; }
.wl__list li { display: flex; align-items: center; gap: 10px; color: var(--text); font-size: 0.98rem; }
.wl__list svg { width: 20px; height: 20px; color: var(--accent); }
.wl__cards { display: flex; justify-content: center; }
.wl__phone {
  width: 230px; height: 420px; border-radius: 36px; padding: 14px;
  background: linear-gradient(160deg, var(--surface-2), var(--surface));
  border: 1px solid var(--border-strong); box-shadow: 0 30px 70px rgba(0,0,0,0.6), var(--shadow-glow);
}
.wl__screen {
  width: 100%; height: 100%; border-radius: 24px; background: radial-gradient(circle at 50% 20%, rgba(0,212,255,0.12), var(--void));
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px;
}
.wl__brandmark { border-radius: 14px; }
.wl__brandtxt { font-family: var(--font-display); font-weight: 800; letter-spacing: 0.12em; color: var(--accent); }
.wl__rows { display: flex; flex-direction: column; gap: 9px; margin-top: 18px; width: 70%; }
.wl__rows i { height: 10px; border-radius: 5px; background: rgba(255,255,255,0.08); }
.wl__rows i:nth-child(2) { width: 80%; }
.wl__rows i:nth-child(3) { width: 55%; }

/* ── FAQ ─────────────────────────────────────────────────────────────── */
.faq { display: flex; flex-direction: column; gap: 12px; }
.faq__item { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; }
.faq__q {
  width: 100%; text-align: left; background: none; border: 0; cursor: pointer; color: var(--text);
  font-family: var(--font-display); font-size: 1.02rem; font-weight: 600; padding: 20px 22px;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq__q::after { content: '+'; font-size: 1.5rem; color: var(--accent); transition: transform 0.3s; }
.faq__item.open .faq__q::after { transform: rotate(45deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; color: var(--text-dim); }
.faq__a p { padding: 0 22px 20px; }

/* ── Final CTA ───────────────────────────────────────────────────────── */
.cta-final { padding: 100px 0; text-align: center; }
.cta-final__inner {
  background: linear-gradient(135deg, rgba(0,212,255,0.1), rgba(124,58,237,0.08));
  border: 1px solid rgba(0,212,255,0.25); border-radius: 28px; padding: 64px 30px;
}
.cta-final h2 { font-family: var(--font-display); font-size: clamp(1.9rem, 4vw, 3rem); font-weight: 800; line-height: 1.1; }
.cta-final p { color: var(--text-dim); font-size: 1.1rem; margin: 16px 0 32px; }

/* ── Footer ──────────────────────────────────────────────────────────── */
.footer { border-top: 1px solid var(--border); padding-top: 60px; margin-top: 40px; }
.footer__inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 44px; }
.footer__brand p { color: var(--text-mute); font-size: 0.92rem; margin-top: 16px; max-width: 280px; }
.footer__col h4 { font-family: var(--font-display); font-size: 0.95rem; margin-bottom: 16px; }
.footer__col a { display: block; color: var(--text-dim); font-size: 0.92rem; margin-bottom: 10px; transition: color 0.2s; }
.footer__col a:hover { color: var(--accent); }
.footer__bottom {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
  padding: 24px 0; border-top: 1px solid var(--border); color: var(--text-mute); font-size: 0.86rem;
}
.footer__legal a:hover { color: var(--accent); }

/* ── Scroll reveal ───────────────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ════════════════════════════════════════════════════════════════════
   Legal & contact pages
   ════════════════════════════════════════════════════════════════════ */
.page-head { padding: 140px 0 50px; text-align: center; }
.page-head .eyebrow { margin-bottom: 16px; }
.page-head h1 { font-family: var(--font-display); font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 800; letter-spacing: -0.02em; line-height: 1.1; }
.page-head p { color: var(--text-dim); margin-top: 14px; font-size: 1.05rem; }

.legal__meta {
  display: flex; flex-wrap: wrap; gap: 10px 26px; justify-content: center;
  margin-top: 26px; padding-top: 24px; border-top: 1px solid var(--border); max-width: 720px;
  margin-left: auto; margin-right: auto;
}
.legal__meta span { font-size: 0.86rem; color: var(--text-mute); }
.legal__meta b { color: var(--text-dim); font-weight: 600; }

.legal { padding-bottom: 90px; }
.legal__wrap { display: grid; grid-template-columns: 250px 1fr; gap: 50px; align-items: start; }

.legal__toc {
  position: sticky; top: 100px;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px;
}
.legal__toc h4 { font-family: var(--font-display); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-mute); margin-bottom: 14px; }
.legal__toc a { display: block; font-size: 0.9rem; color: var(--text-dim); padding: 7px 0; border-left: 2px solid transparent; padding-left: 12px; transition: color 0.2s, border-color 0.2s; }
.legal__toc a:hover { color: var(--accent); border-left-color: var(--accent); }

.legal__doc { max-width: 760px; }
.legal__doc section { scroll-margin-top: 100px; margin-bottom: 44px; }
.legal__doc h2 {
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; letter-spacing: -0.01em;
  margin-bottom: 18px; padding-bottom: 12px; border-bottom: 1px solid var(--border);
  display: flex; align-items: baseline; gap: 12px;
}
.legal__doc h2 .num { color: var(--accent); font-size: 1.1rem; font-weight: 800; }
.legal__doc h3 { font-family: var(--font-display); font-size: 1.08rem; font-weight: 600; margin: 24px 0 10px; color: var(--text); }
.legal__doc p { color: var(--text-dim); margin-bottom: 14px; font-size: 0.98rem; }
.legal__doc p strong { color: var(--text); }
.legal__doc ul { margin: 0 0 16px; padding-left: 4px; }
.legal__doc ul li {
  position: relative; padding-left: 24px; margin-bottom: 10px; color: var(--text-dim); font-size: 0.96rem;
}
.legal__doc ul li::before {
  content: ''; position: absolute; left: 6px; top: 10px; width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
}
.legal__doc a { color: var(--accent); }
.legal__doc a:hover { text-decoration: underline; }
.legal__callout {
  background: rgba(0, 212, 255, 0.06); border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: var(--radius-sm); padding: 18px 20px; margin: 20px 0; color: var(--text-dim); font-size: 0.95rem;
}
.legal__callout b { color: var(--text); }

/* ── Contact page ────────────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.ccard {
  background: linear-gradient(180deg, var(--surface), rgba(13, 19, 32, 0.4));
  border: 1px solid var(--border); border-radius: var(--radius); padding: 28px 26px;
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.ccard:hover { transform: translateY(-5px); border-color: rgba(0, 212, 255, 0.4); }
.ccard__ic {
  width: 48px; height: 48px; border-radius: 13px; display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(0,212,255,0.15), rgba(59,130,246,0.12));
  border: 1px solid rgba(0,212,255,0.25); color: var(--accent); margin-bottom: 16px;
}
.ccard h3 { font-family: var(--font-display); font-size: 1.12rem; margin-bottom: 6px; }
.ccard p { color: var(--text-dim); font-size: 0.92rem; margin-bottom: 14px; min-height: 2.8em; }
.ccard a { color: var(--accent); font-weight: 600; font-size: 0.96rem; word-break: break-all; }
.ccard a:hover { text-decoration: underline; }

/* ── Responsive ──────────────────────────────────────────────────────── */
@media (max-width: 980px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .tech, .wl { grid-template-columns: 1fr; gap: 40px; }
  .tech__viz { order: -1; }
  .steps { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .legal__wrap { grid-template-columns: 1fr; gap: 30px; }
  .legal__toc { position: static; }
  .contact-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  .section { padding: 80px 0; }
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .nav.open .nav__links {
    display: flex; flex-direction: column; position: absolute; top: 76px; left: 0; right: 0;
    background: rgba(5,7,13,0.97); backdrop-filter: blur(16px); padding: 20px 24px; gap: 18px;
    border-bottom: 1px solid var(--border);
  }
  .nav.open .nav__cta { display: flex; position: absolute; top: 230px; left: 24px; right: 24px; flex-direction: column; }
  .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .hero__stats { grid-template-columns: repeat(2, 1fr); gap: 26px; }
  .footer__inner { grid-template-columns: 1fr; }
  .container { padding: 0 18px; }
  .contact-grid { grid-template-columns: 1fr; }
}
