/* Public pages (landing, terms, privacy, legal notice). One dark world shared with the app. */
:root {
  color-scheme: dark;
  --bg: #04070E; --panel: #080E1B; --panel-2: #0C1426; --raise: #111C33; --line: #15213B; --line-2: #1E2E50;
  --ink: #DCE6FF; --muted: #8397BD; --faint: #56698F;
  --accent: #3DF5FF; --accent-2: #B46CFF; --accent-ink: #03121A;
  --bid: 38, 230, 255; --ask: 255, 70, 170; --cue: #B8FF3C;
  --glow: 0 0 0 1px rgba(61, 245, 255, 0.25), 0 0 24px rgba(61, 245, 255, 0.18);
  --display: "Chakra Petch", "Zen Kaku Gothic New", system-ui, sans-serif;
  --sans: "Zen Kaku Gothic New", "Hiragino Sans", "Yu Gothic UI", system-ui, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, Menlo, monospace;
  --wrap: 1120px;
}
* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } *, *::before, *::after { animation: none !important; transition: none !important; } }
body {
  margin: 0; background: var(--bg); color: var(--ink); font-family: var(--sans); font-size: 16px; line-height: 1.8;
  background-image: radial-gradient(1200px 600px at 75% -10%, rgba(61, 245, 255, 0.08), transparent 60%),
    radial-gradient(900px 600px at -10% 30%, rgba(180, 108, 255, 0.07), transparent 60%);
  background-repeat: no-repeat;
}
a { color: var(--accent); text-underline-offset: 3px; }
img { max-width: 100%; display: block; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 4px; }
.wrap { width: min(var(--wrap), 100% - 32px); margin-inline: auto; }
.num { font-family: var(--mono); font-variant-numeric: tabular-nums; }

/* ---------- header / footer ---------- */
.site-head { position: sticky; top: 0; z-index: 20; backdrop-filter: blur(10px); background: rgba(4, 7, 14, 0.72); border-bottom: 1px solid var(--line); }
.site-head .wrap { display: flex; align-items: center; gap: 16px; min-height: 60px; }
.brand { display: inline-flex; align-items: center; gap: 9px; color: var(--ink); text-decoration: none; font-family: var(--display); font-weight: 700; letter-spacing: 0.18em; font-size: 16px; }
.brand svg { filter: drop-shadow(0 0 6px rgba(61, 245, 255, 0.6)); }
.brand small { font-family: var(--sans); font-weight: 500; letter-spacing: 0.04em; color: var(--muted); font-size: 12px; }
.site-nav { margin-left: auto; display: flex; align-items: center; gap: 22px; font-size: 14px; }
.site-nav a { color: var(--muted); text-decoration: none; }
.site-nav a:hover { color: var(--ink); }
.site-nav a.btn-primary { color: var(--accent-ink); }
@media (max-width: 760px) { .site-nav .opt { display: none; } }
@media (max-width: 420px) { .site-nav .opt-cta { display: none; } }
.site-foot { border-top: 1px solid var(--line); margin-top: 96px; padding: 48px 0 48px; color: var(--faint); font-size: 13px; }
.site-foot .wrap { display: grid; gap: 14px; }
.foot-cols { display: grid; grid-template-columns: 1.6fr repeat(3, minmax(0, 1fr)); gap: 28px; padding-bottom: 20px; margin-bottom: 8px; border-bottom: 1px solid var(--line); }
@media (max-width: 760px) { .foot-cols { grid-template-columns: 1fr 1fr; } .foot-brand { grid-column: 1 / -1; } }
.foot-brand p { margin: 10px 0 0; color: var(--muted); max-width: 300px; }
.site-foot nav { display: grid; gap: 8px; align-content: start; }
.site-foot h4 { margin: 0 0 4px; color: var(--ink); font-size: 13px; letter-spacing: 0.08em; }
.site-foot nav a { color: var(--muted); text-decoration: none; }
.site-foot nav a:hover { color: var(--ink); }
.risk { font-size: 12.5px; line-height: 1.8; color: var(--faint); max-width: 860px; }

/* ---------- buttons ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; min-height: 48px; padding: 0 24px; border-radius: 10px; font-weight: 700; font-size: 15.5px; text-decoration: none; letter-spacing: 0.02em; border: 1px solid transparent; transition: transform 0.15s, box-shadow 0.2s, border-color 0.2s, background 0.2s; }
.btn:hover { transform: translateY(-1px); }
.btn-primary { color: var(--accent-ink); background: linear-gradient(90deg, var(--accent), #8AF7FF 55%, var(--accent-2)); box-shadow: 0 0 0 1px rgba(61, 245, 255, 0.4), 0 10px 30px rgba(61, 245, 255, 0.22); }
.btn-primary:hover { box-shadow: 0 0 0 1px rgba(61, 245, 255, 0.6), 0 14px 36px rgba(61, 245, 255, 0.32); }
.btn-ghost { color: var(--ink); background: var(--panel-2); border-color: var(--line-2); }
.btn-ghost:hover { border-color: var(--accent); box-shadow: var(--glow); }
.btn-sm { min-height: 36px; padding: 0 14px; font-size: 13.5px; border-radius: 8px; }

/* ---------- sections ---------- */
section { padding: 88px 0 0; }
.eyebrow { font-family: var(--display); font-weight: 600; letter-spacing: 0.22em; font-size: 12px; color: var(--accent); text-transform: uppercase; }
h1, h2, h3 { line-height: 1.35; margin: 0; text-wrap: balance; word-break: auto-phrase; }
p, .lead, li, summary { word-break: auto-phrase; }
.nw { white-space: nowrap; }
@media (max-width: 640px) { .hero .lead br { display: none; } }
h2 { font-size: clamp(26px, 3.4vw, 36px); letter-spacing: 0.02em; }
.lead { color: var(--muted); font-size: 17px; max-width: 720px; }
.sec-head { display: grid; gap: 12px; margin-bottom: 36px; }
.sec-head.center { justify-items: center; text-align: center; }
section { scroll-margin-top: 64px; }
#demo { scroll-margin-top: 76px; }

/* scroll reveal (only when JS runs: html.js is set in the head) */
.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1); }
.js .reveal.in { opacity: 1; transform: none; }

/* hero */
.hero { padding-top: 64px; }
.hero-grid { display: grid; gap: 28px; justify-items: center; text-align: center; }
.hero h1 { font-size: clamp(34px, 5.6vw, 60px); letter-spacing: 0.02em; font-weight: 700; }
.hero h1 em { font-style: normal; background: linear-gradient(90deg, var(--accent), var(--accent-2)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero .lead { font-size: clamp(16px, 1.9vw, 19px); }
.cta-row { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.cta-note { color: var(--faint); font-size: 13px; margin-top: -12px; }
.pairs { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.pairs span { font-family: var(--mono); font-size: 12.5px; color: var(--muted); border: 1px solid var(--line-2); border-radius: 999px; padding: 3px 12px; background: rgba(12, 20, 38, 0.6); }
.shot { position: relative; margin-top: 44px; border-radius: 14px; overflow: hidden; border: 1px solid var(--line-2); box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(61, 245, 255, 0.12), 0 0 60px rgba(61, 245, 255, 0.08); }
.shot::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(180deg, transparent 70%, rgba(4, 7, 14, 0.55)); }
.shot .scan { position: absolute; inset: 0; pointer-events: none; background: linear-gradient(90deg, transparent, rgba(61, 245, 255, 0.10), transparent); width: 30%; animation: scan 6s ease-in-out infinite; mix-blend-mode: screen; }
@keyframes scan { 0% { transform: translateX(-120%); } 55%, 100% { transform: translateX(420%); } }

/* demo stage (hero) */
.stage { position: relative; margin: 44px 0 0; border-radius: 14px; overflow: hidden; border: 1px solid var(--line-2); background: var(--bg);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.65), 0 0 0 1px rgba(61, 245, 255, 0.14), 0 0 80px rgba(61, 245, 255, 0.12), 0 0 140px rgba(180, 108, 255, 0.08); }
.stage-bar { display: flex; align-items: center; gap: 7px; height: 34px; padding: 0 14px; background: var(--panel); border-bottom: 1px solid var(--line); }
.stage-bar i { width: 10px; height: 10px; border-radius: 50%; background: var(--line-2); }
.stage-bar span { margin-left: 10px; font-size: 12px; color: var(--faint); letter-spacing: 0.08em; }
.stage canvas { display: block; width: 100%; aspect-ratio: 16 / 9; }
@media (max-width: 640px) { .stage canvas { aspect-ratio: 5 / 4; } }
.stage-note { margin: 12px auto 0; max-width: 760px; text-align: center; color: var(--faint); font-size: 12.5px; line-height: 1.7; }

/* ticker */
.ticker { margin-top: 72px; border-block: 1px solid var(--line); background: rgba(8, 14, 27, 0.6); overflow: hidden; }
.ticker-track { display: flex; width: max-content; animation: ticker 36s linear infinite; }
.ticker-track span { padding: 14px 28px; white-space: nowrap; color: var(--muted); font-size: 14px; letter-spacing: 0.06em; position: relative; }
.ticker-track span::after { content: ""; position: absolute; right: -3px; top: 50%; width: 5px; height: 5px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 8px var(--accent); transform: translateY(-50%); opacity: 0.6; }
@keyframes ticker { to { transform: translateX(-50%); } }

/* product */
#product .shot { margin-top: 0; }
.shot img { width: 100%; height: auto; }
.center-cta { display: flex; justify-content: center; margin-top: 24px; }

/* why liquidity */
.pc { display: inline; }
@media (max-width: 640px) { .pc { display: none; } }
.thesis { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 48px; align-items: end; }
.thesis .eyebrow { grid-column: 1 / -1; }
.thesis h2 { font-size: clamp(26px, 3.6vw, 42px); }
.thesis-body p { margin: 0 0 12px; color: var(--muted); font-size: 16.5px; }
.thesis-body p:first-child { color: var(--ink); }
@media (max-width: 900px) { .thesis { grid-template-columns: 1fr; } }
.movers { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); margin-top: 40px; border-block: 1px solid var(--line); }
.movers div { padding: 26px 24px 24px; border-right: 1px solid var(--line); }
.movers div:last-child { border-right: 0; }
@media (max-width: 860px) { .movers { grid-template-columns: 1fr; } .movers div { border-right: 0; border-bottom: 1px solid var(--line); } .movers div:last-child { border-bottom: 0; } }
.mv-k { font-family: var(--display); font-weight: 700; font-size: 13px; letter-spacing: 0.14em; color: var(--accent-2); }
.movers h3 { font-size: 19px; margin: 4px 0 8px; }
.movers p { margin: 0; color: var(--muted); font-size: 14.5px; }
.versus { display: grid; grid-template-columns: 1fr auto 1fr; gap: 16px; align-items: stretch; margin-top: 40px; }
@media (max-width: 860px) { .versus { grid-template-columns: 1fr; } .vs-arrow { transform: rotate(90deg); justify-self: center; } }
.versus > div:not(.vs-arrow) { padding: 26px 26px 22px; border-radius: 14px; border: 1px solid var(--line); background: var(--panel); }
.vs-old { color: var(--faint); }
.vs-old .vs-quote { color: var(--muted); text-decoration: line-through; text-decoration-color: rgba(255, 79, 123, 0.7); text-decoration-thickness: 2px; }
.vs-new { border-color: rgba(61, 245, 255, 0.45) !important; box-shadow: var(--glow); background: linear-gradient(135deg, rgba(61, 245, 255, 0.07), rgba(180, 108, 255, 0.05)), var(--panel) !important; }
.vs-new .vs-quote { color: var(--ink); }
.vs-label { font-size: 12.5px; font-weight: 700; letter-spacing: 0.08em; color: var(--faint); }
.vs-new .vs-label { color: var(--accent); }
.vs-quote { font-size: clamp(18px, 2.1vw, 22px); font-weight: 700; line-height: 1.6; margin: 8px 0 10px; }
.versus p:last-child { margin: 0; font-size: 14.5px; color: var(--muted); }
.vs-arrow { align-self: center; font-family: var(--mono); font-size: 28px; color: var(--accent); text-shadow: 0 0 16px rgba(61, 245, 255, 0.6); }
.swamp { display: grid; grid-template-columns: 1fr 1.2fr; gap: 40px; margin-top: 40px; padding: 36px; border-radius: 18px; border: 1px solid var(--line-2);
  background: radial-gradient(500px 260px at 100% 0%, rgba(180, 108, 255, 0.12), transparent 70%), var(--panel); }
@media (max-width: 860px) { .swamp { grid-template-columns: 1fr; gap: 24px; padding: 26px 22px; } }
.swamp h3 { font-size: 19px; margin-bottom: 14px; }
.swamp ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 10px; }
.swamp li { padding: 12px 16px 12px 40px; position: relative; border-radius: 10px; background: rgba(255, 79, 123, 0.06); border: 1px solid rgba(255, 79, 123, 0.2); color: var(--ink); font-size: 15px; }
.swamp li::before { content: "×"; position: absolute; left: 15px; top: 11px; color: #FF4F7B; font-weight: 700; }
.swamp-answer { display: grid; gap: 14px; align-content: center; justify-items: start; }
.swamp-answer p { margin: 0; color: var(--muted); }
.swamp-answer .big { color: var(--ink); font-size: clamp(22px, 2.8vw, 30px); font-weight: 700; line-height: 1.45; }
.swamp-answer em { font-style: normal; background: linear-gradient(90deg, var(--accent), var(--accent-2)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.answer { margin-top: 28px; padding: 26px 28px; border-radius: 14px; border: 1px solid rgba(61, 245, 255, 0.35); background: linear-gradient(135deg, rgba(61, 245, 255, 0.07), rgba(180, 108, 255, 0.06)); font-size: 17px; }
.answer b { color: var(--accent); }

/* features */
.feature { display: grid; grid-template-columns: 1.05fr 1fr; gap: 44px; align-items: center; margin-top: 64px; }
.feature:first-of-type { margin-top: 0; }
.feature.rev .media { order: 2; }
@media (max-width: 900px) { .feature, .feature.rev { grid-template-columns: 1fr; gap: 20px; } .feature.rev .media { order: 0; } }
.feature .media { border-radius: 12px; overflow: hidden; border: 1px solid var(--line-2); box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5); background: var(--panel); }
.feature .media img { width: 100%; height: auto; max-height: 480px; object-fit: cover; object-position: 60% 45%; }
.feature .media.narrow { max-width: 420px; justify-self: center; width: 100%; }
.feature .media.narrow img { max-height: none; object-fit: contain; }
.feature h3 { font-size: clamp(22px, 2.6vw, 28px); margin: 8px 0 12px; }
.feature p { color: var(--muted); margin: 0 0 12px; }
.tag { display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: 0.06em; padding: 2px 10px; border-radius: 999px; border: 1px solid var(--line-2); color: var(--muted); }
.tag.pro { color: var(--accent-ink); background: linear-gradient(90deg, var(--accent), var(--accent-2)); border-color: transparent; }
.legend { display: grid; gap: 8px; margin: 14px 0 0; padding: 0; list-style: none; font-size: 14.5px; color: var(--ink); }
.legend li { display: flex; gap: 10px; align-items: baseline; }
.sw { flex: 0 0 auto; width: 22px; height: 10px; border-radius: 3px; transform: translateY(1px); }
.dot { flex: 0 0 auto; width: 10px; height: 10px; border-radius: 50%; background: #fff; box-shadow: 0 0 8px #fff; transform: translateY(1px); }
.dia { flex: 0 0 auto; width: 9px; height: 9px; background: var(--cue); transform: rotate(45deg) translateY(1px); box-shadow: 0 0 8px var(--cue); }

/* mini grid of extras */
/* numbers */
.stats { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); border: 1px solid var(--line-2); border-radius: 16px; overflow: hidden;
  background: linear-gradient(135deg, rgba(61, 245, 255, 0.06), rgba(180, 108, 255, 0.05)), var(--panel); }
@media (max-width: 860px) { .stats { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.stats div { padding: 28px 24px; display: grid; gap: 2px; border-right: 1px solid var(--line); }
.stats div:last-child { border-right: 0; }
@media (max-width: 860px) { .stats div:nth-child(2) { border-right: 0; } .stats div:nth-child(-n + 2) { border-bottom: 1px solid var(--line); } }
.stats b { font-size: clamp(34px, 4.4vw, 48px); line-height: 1.1; color: var(--ink); text-shadow: 0 0 24px rgba(61, 245, 255, 0.35); }
.stats b i { font-style: normal; font-family: var(--sans); font-size: 0.42em; margin-left: 4px; color: var(--muted); }
.stats span { font-weight: 700; }
.stats small { color: var(--faint); font-size: 12.5px; }

/* stance */
.promise { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
@media (max-width: 860px) { .promise { grid-template-columns: 1fr; } }
.promise div { padding: 26px 24px; border-radius: 14px; border: 1px solid var(--line); background: var(--panel); }
.promise .pi { font-family: var(--display); font-weight: 700; color: var(--accent-2); letter-spacing: 0.12em; font-size: 13px; }
.promise h4 { margin: 6px 0 8px; font-size: 17.5px; }
.promise p { margin: 0; color: var(--muted); font-size: 14.5px; }
#promise .steps { margin-top: 16px; }

.extras { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; margin-top: 16px; }
@media (max-width: 860px) { .extras { grid-template-columns: 1fr; } }
.extras div { padding: 22px; border-radius: 12px; border: 1px solid var(--line); background: var(--panel); }
.extras h4 { margin: 0 0 6px; font-size: 16.5px; }
.extras p { margin: 0; color: var(--muted); font-size: 14.5px; }

/* steps */
.steps { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; counter-reset: s; }
@media (max-width: 860px) { .steps { grid-template-columns: 1fr; } }
.steps li { list-style: none; padding: 22px 22px 20px; border-radius: 12px; border: 1px solid var(--line); background: var(--panel); counter-increment: s; }
.steps li::before { content: "0" counter(s); display: block; font-family: var(--display); font-weight: 700; font-size: 28px; color: var(--accent); text-shadow: 0 0 16px rgba(61, 245, 255, 0.5); }
.steps b { display: block; font-size: 16.5px; margin: 4px 0 4px; }
.steps span { color: var(--muted); font-size: 14.5px; }
.steps ol, ol.steps { padding: 0; margin: 0; }

/* plans */
.plans { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; align-items: stretch; }
@media (max-width: 900px) { .plans { grid-template-columns: 1fr; } }
.plan { display: grid; grid-template-rows: auto auto auto 1fr auto; gap: 10px; padding: 26px 24px; border-radius: 14px; border: 1px solid var(--line-2); background: var(--panel); position: relative; }
.plan.featured { border-color: rgba(61, 245, 255, 0.55); box-shadow: var(--glow); background: linear-gradient(180deg, rgba(61, 245, 255, 0.05), var(--panel) 40%); }
.plan .badge { position: absolute; top: -12px; left: 24px; font-size: 12px; font-weight: 700; padding: 2px 12px; border-radius: 999px; color: var(--accent-ink); background: linear-gradient(90deg, var(--accent), var(--accent-2)); }
.plan h3 { font-family: var(--display); letter-spacing: 0.12em; font-size: 18px; }
.plan .price { font-family: var(--mono); font-size: 34px; line-height: 1.2; }
.plan .price small { font-family: var(--sans); font-size: 14px; color: var(--muted); margin-left: 4px; }
.plan .who { color: var(--muted); font-size: 14px; }
.plan ul { margin: 6px 0 8px; padding: 0; list-style: none; display: grid; gap: 8px; font-size: 14.5px; }
.plan li { padding-left: 24px; position: relative; }
.plan li::before { content: ""; position: absolute; left: 2px; top: 0.62em; width: 12px; height: 6px; border-left: 2px solid var(--accent); border-bottom: 2px solid var(--accent); transform: rotate(-45deg); }
.plan li.no { color: var(--faint); }
.plan li.no::before { border: 0; height: 2px; top: 0.85em; background: var(--faint); transform: none; }
.plan .btn { width: 100%; }
.plan-note { color: var(--faint); font-size: 13px; margin-top: 16px; text-align: center; }

/* plan comparison */
.compare { margin-top: 20px; border: 1px solid var(--line); border-radius: 12px; background: var(--panel); }
.compare summary { cursor: pointer; list-style: none; padding: 14px 20px; font-weight: 700; text-align: center; color: var(--muted); }
.compare summary::-webkit-details-marker { display: none; }
.compare summary::after { content: " ＋"; color: var(--accent); }
.compare[open] summary::after { content: " −"; }
.compare-scroll { overflow-x: auto; padding: 0 12px 12px; }
.compare table { width: 100%; min-width: 560px; border-collapse: collapse; font-size: 14px; }
.compare th, .compare td { padding: 12px 14px; border-top: 1px solid var(--line); text-align: center; }
.compare th[scope="row"] { text-align: left; font-weight: 500; color: var(--ink); }
.compare thead th { font-family: var(--display); letter-spacing: 0.1em; border-top: 0; }
.compare td { color: var(--muted); }
.compare td.no { color: var(--faint); }
.compare .hl { background: rgba(61, 245, 255, 0.05); color: var(--ink); }
.compare thead .hl { color: var(--accent); }

/* faq */
.faq-grid { display: grid; grid-template-columns: 1fr 1.8fr; gap: 44px; align-items: start; }
@media (max-width: 900px) { .faq-grid { grid-template-columns: 1fr; gap: 0; } }
.faq { display: grid; gap: 10px; max-width: 860px; }
.faq details { border: 1px solid var(--line); border-radius: 12px; background: var(--panel); padding: 0 20px; }
.faq summary { cursor: pointer; list-style: none; padding: 16px 0; font-weight: 700; display: flex; justify-content: space-between; gap: 16px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--accent); font-family: var(--mono); font-size: 18px; line-height: 1; }
.faq details[open] summary::after { content: "−"; }
.faq details p { margin: 0 0 16px; color: var(--muted); font-size: 15px; }

/* closing */
.closing { text-align: center; }
.closing .box { padding: 64px 24px; border-radius: 18px; border: 1px solid rgba(61, 245, 255, 0.35); background: radial-gradient(600px 240px at 50% 0%, rgba(61, 245, 255, 0.12), transparent 70%), var(--panel); display: grid; gap: 18px; justify-items: center; }

/* ---------- legal documents ---------- */
.doc { max-width: 820px; padding-top: 48px; }
.doc h1 { font-size: clamp(26px, 3.2vw, 34px); margin-bottom: 8px; }
.doc .meta { color: var(--faint); font-size: 13.5px; margin-bottom: 32px; }
.doc h2 { font-size: 19px; margin: 36px 0 10px; padding-top: 4px; border-top: 1px solid var(--line); padding-top: 20px; }
.doc p, .doc li { color: #C4D0EC; font-size: 15px; }
.doc ol, .doc ul { padding-left: 1.4em; }
.doc li { margin: 4px 0; }
.doc table { width: 100%; border-collapse: collapse; margin: 8px 0 0; font-size: 15px; }
.doc th, .doc td { text-align: left; vertical-align: top; padding: 14px 14px; border-bottom: 1px solid var(--line); }
.doc th { width: 30%; color: var(--muted); font-weight: 500; }
@media (max-width: 640px) { .doc th, .doc td { display: block; width: auto; padding: 8px 0; } .doc th { border-bottom: 0; padding-top: 16px; } }
.missing { color: #FFC247; }

/* 404 */
.notfound { text-align: center; padding: 120px 0 40px; display: grid; gap: 16px; justify-items: center; }
.notfound .code { font-family: var(--display); font-size: 72px; font-weight: 700; color: var(--accent); text-shadow: 0 0 30px rgba(61, 245, 255, 0.4); line-height: 1; }
