:root {
  --lime: #ccff00;
  --lime-dim: #a8d400;
  --red: #ff2d2d;
  --red-deep: #c8141c;
  --ink: #0a0a0a;
  --ink-2: #111110;
  --ink-3: #1a1a18;
  --line: #2a2a26;
  --line-2: #3a3a34;
  --paper: #f2efe6;
  --muted: #9b9a90;
  --faint: #6b6a62;
  --serif: "Instrument Serif", "Times New Roman", serif;
  --sans: "Archivo", system-ui, -apple-system, "Segoe UI", sans-serif;
  --mono: "JetBrains Mono", ui-monospace, "Cascadia Mono", monospace;
  --radius: 4px;
  --wrap: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
button { font: inherit; color: inherit; }
::selection { background: var(--lime); color: var(--ink); }
:focus-visible { outline: 2px solid var(--lime); outline-offset: 3px; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.mono { font-family: var(--mono); }
.serif { font-family: var(--serif); font-weight: 400; font-style: italic; }
.lime { color: var(--lime); }
.red { color: var(--red); }
.muted { color: var(--muted); }

/* ---------- Ticker ---------- */
.ticker {
  background: var(--red);
  color: var(--ink);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  overflow: hidden;
  white-space: nowrap;
  border-bottom: 1px solid var(--ink);
}
.ticker-track { display: inline-flex; gap: 48px; padding: 7px 0; animation: tick 40s linear infinite; }
.ticker-track span::before { content: "◆"; margin-right: 12px; }
@keyframes tick { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .ticker-track { animation: none; } }

/* ---------- Masthead / nav ---------- */
.nav { position: sticky; top: 0; z-index: 50; background: rgba(10,10,10,.92); backdrop-filter: blur(10px); border-bottom: 1px solid var(--line); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; height: 68px; }
.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; font-weight: 900; font-size: 24px; letter-spacing: -.04em; }
.brand img { border-radius: 6px; }
.nav-links { display: flex; gap: 28px; }
.nav-links a { text-decoration: none; font-size: 14px; color: var(--muted); transition: color .15s; }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--paper); }
.nav-cta { display: flex; align-items: center; gap: 10px; }
.menu-btn { display: none; background: none; border: 1px solid var(--line-2); border-radius: var(--radius); width: 40px; height: 40px; cursor: pointer; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: 42px; padding: 0 18px; border-radius: var(--radius);
  font-weight: 700; font-size: 14px; text-decoration: none; cursor: pointer;
  border: 1px solid transparent; transition: transform .12s, background .15s, color .15s, border-color .15s;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-lime { background: var(--lime); color: var(--ink); }
.btn-lime:hover { background: #dbff4d; }
.btn-red { background: var(--red); color: var(--ink); }
.btn-red:hover { background: #ff5050; }
.btn-ghost { border-color: var(--line-2); color: var(--paper); background: transparent; }
.btn-ghost:hover { border-color: var(--paper); }
.btn-lg { height: 52px; padding: 0 26px; font-size: 15px; }
.btn[disabled] { opacity: .45; cursor: not-allowed; }
.icon-btn { display: inline-grid; place-items: center; width: 42px; height: 42px; border: 1px solid var(--line-2); border-radius: var(--radius); color: var(--paper); text-decoration: none; }
.icon-btn:hover { border-color: var(--paper); }

/* ---------- Hero ---------- */
.hero { border-bottom: 1px solid var(--line); position: relative; }
.dateline {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px;
  font-family: var(--mono); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--muted);
  border-bottom: 1px solid var(--line); padding: 12px 0;
}
.dateline b { color: var(--paper); font-weight: 600; }
.live-dot { display: inline-block; width: 7px; height: 7px; border-radius: 50%; background: var(--red); margin-right: 6px; box-shadow: 0 0 0 0 rgba(255,45,45,.6); animation: pulse 1.8s infinite; vertical-align: 1px; }
@keyframes pulse { 70% { box-shadow: 0 0 0 8px rgba(255,45,45,0); } 100% { box-shadow: 0 0 0 0 rgba(255,45,45,0); } }

.hero-grid { display: grid; grid-template-columns: 1.25fr 1fr; gap: 56px; padding: 64px 0 72px; align-items: center; }
.hero h1 {
  font-size: clamp(48px, 7.6vw, 104px); line-height: .92; letter-spacing: -.045em; font-weight: 900; margin: 0 0 28px;
}
.hero h1 .serif { letter-spacing: -.02em; color: var(--lime); }
.hero h1 .strike { position: relative; white-space: nowrap; }
.hero h1 .strike::after { content: ""; position: absolute; left: -2%; right: -2%; top: 54%; height: .09em; background: var(--red); transform: rotate(-3deg); }
.lede { font-size: 19px; line-height: 1.55; color: #cfcdc3; max-width: 34em; margin: 0 0 32px; }
.lede strong { color: var(--paper); }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; }

.plate { margin: 0; border: 1px solid var(--line-2); background: var(--ink-2); padding: 12px; transform: rotate(1.2deg); box-shadow: -14px 14px 0 var(--red); }
.plate img { width: 100%; aspect-ratio: 3/1; object-fit: cover; }
.plate figcaption { display: flex; justify-content: space-between; font-family: var(--mono); font-size: 11px; color: var(--muted); padding: 10px 2px 0; text-transform: uppercase; letter-spacing: .06em; }

.launch-card { margin-top: 40px; border: 1px solid var(--line-2); background: var(--ink-2); padding: 20px; transform: rotate(-.6deg); }
.launch-card .lc-top { display: flex; justify-content: space-between; align-items: center; gap: 12px; font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); }
.countdown { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin: 14px 0 12px; }
.countdown div { border: 1px solid var(--line); padding: 12px 10px; text-align: center; }
.countdown span { display: block; font-family: var(--mono); font-size: 36px; font-weight: 600; line-height: 1; color: var(--lime); }
.countdown small { font-family: var(--mono); font-size: 10px; color: var(--muted); text-transform: uppercase; letter-spacing: .1em; }
.launch-card .btn { width: 100%; }

/* ---------- Stats ---------- */
.stats { border-bottom: 1px solid var(--line); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { padding: 26px 24px; border-left: 1px solid var(--line); }
.stat:first-child { border-left: 0; padding-left: 0; }
.stat-k { font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); }
.stat-v { font-family: var(--mono); font-size: 28px; font-weight: 600; margin-top: 6px; line-height: 1.1; }

/* ---------- Sections ---------- */
.section { padding: 104px 0; border-bottom: 1px solid var(--line); }
.sec-head { display: grid; grid-template-columns: 180px 1fr; gap: 32px; margin-bottom: 56px; }
.sec-num { font-family: var(--mono); font-size: 12px; color: var(--red); text-transform: uppercase; letter-spacing: .1em; padding-top: 14px; border-top: 2px solid var(--red); }
.sec-head h2 { font-size: clamp(36px, 5vw, 64px); line-height: 1; letter-spacing: -.04em; font-weight: 900; margin: 0; }
.sec-head h2 .serif { color: var(--lime); letter-spacing: -.01em; }
.sec-head p { color: var(--muted); font-size: 17px; max-width: 40em; margin: 18px 0 0; }

.columns { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid var(--line); }
.columns > div { padding: 28px 28px 0 0; }
.columns > div + div { padding-left: 28px; border-left: 1px solid var(--line); }
.columns h3 { font-size: 20px; letter-spacing: -.02em; margin: 0 0 10px; }
.columns p { color: #c5c3b9; margin: 0; }
.dropcap::first-letter { float: left; font-family: var(--serif); font-size: 72px; line-height: .8; padding: 6px 10px 0 0; color: var(--lime); }

/* How it works steps */
.steps { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); }
.steps li { padding: 28px 24px 32px; border-left: 1px solid var(--line); position: relative; background: var(--ink); transition: background .2s; }
.steps li:first-child { border-left: 0; }
.steps li:hover { background: var(--ink-2); }
.step-n { font-family: var(--serif); font-style: italic; font-size: 56px; line-height: 1; color: var(--lime); }
.steps h3 { font-size: 20px; margin: 16px 0 8px; letter-spacing: -.02em; }
.steps p { color: #bebcb2; font-size: 15px; margin: 0; }
.steps li:last-child .step-n { color: var(--red); }

.diagram { margin: 48px 0 0; border: 1px solid var(--line); background: var(--ink-2); padding: 28px; }
.diagram svg { width: 100%; height: auto; color: var(--muted); }
.dg-box rect { fill: var(--ink); stroke: var(--line-2); }
.dg-box text { fill: var(--paper); font-family: var(--sans); font-weight: 700; font-size: 15px; text-anchor: middle; }
.dg-box .dg-sub { fill: var(--muted); font-family: var(--mono); font-weight: 400; font-size: 11px; }
.dg-hook rect { stroke: var(--lime); stroke-width: 2; }
.dg-lp rect { stroke: var(--lime); }
.dg-burn rect, .dg-dead rect { stroke: var(--red); }
.dg-dead rect { fill: var(--red); }
.dg-dead text { fill: var(--ink); }
.dg-lines path { fill: none; stroke: currentColor; stroke-width: 1.5; stroke-dasharray: 5 5; animation: dash 1.2s linear infinite; }
@keyframes dash { to { stroke-dashoffset: -20; } }
.diagram figcaption { font-family: var(--mono); font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; margin-top: 16px; }

/* Simulator */
.sim { display: grid; grid-template-columns: 1fr 1.2fr; border: 1px solid var(--line); }
.sim-controls { padding: 32px; border-right: 1px solid var(--line); display: flex; flex-direction: column; gap: 28px; }
.field-row { display: flex; justify-content: space-between; font-size: 14px; color: var(--muted); margin-bottom: 10px; }
.field output { font-family: var(--mono); color: var(--paper); font-weight: 600; }
input[type=range] { -webkit-appearance: none; appearance: none; width: 100%; height: 4px; background: var(--line-2); border-radius: 2px; outline-offset: 6px; }
input[type=range]::-webkit-slider-thumb { -webkit-appearance: none; width: 20px; height: 20px; background: var(--lime); border: 3px solid var(--ink); border-radius: 50%; cursor: pointer; box-shadow: 0 0 0 1px var(--lime); }
input[type=range]::-moz-range-thumb { width: 16px; height: 16px; background: var(--lime); border: 3px solid var(--ink); border-radius: 50%; cursor: pointer; }
.sim-note { font-family: var(--mono); font-size: 12px; color: var(--faint); margin: auto 0 0; }
.sim-out { padding: 32px; background: var(--ink-2); }
.bar { display: flex; height: 18px; background: var(--ink-3); margin-bottom: 28px; overflow: hidden; }
.seg { height: 100%; transition: width .25s; }
.seg-lp { background: var(--lime); }
.seg-burn { background: var(--red); }
.seg-arb { background: var(--line-2); }
.sim-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; margin: 0; }
.sim-grid div { padding: 14px 0; border-top: 1px solid var(--line); }
.sim-grid div:nth-child(odd) { padding-right: 16px; }
.sim-grid dt { font-size: 13px; color: var(--muted); }
.sim-grid dd { margin: 4px 0 0; font-family: var(--mono); font-size: 22px; font-weight: 600; }
.k-lp dt::before, .k-burn dt::before, .k-arb dt::before { content: ""; display: inline-block; width: 8px; height: 8px; margin-right: 8px; vertical-align: 1px; }
.k-lp dt::before { background: var(--lime); }
.k-burn dt::before { background: var(--red); }
.k-arb dt::before { background: var(--line-2); }

/* Flywheel (lime section) */
.section-lime { background: var(--lime); color: var(--ink); border-bottom: 0; }
.section-lime .sec-num { color: var(--ink); border-color: var(--ink); }
.section-lime .sec-head h2 .serif { color: var(--red-deep); }
.section-lime .sec-head p { color: #2b3300; }
.wheel { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); border-top: 2px solid var(--ink); counter-reset: w; }
.wheel li { padding: 24px 24px 0 0; counter-increment: w; font-size: 16px; }
.wheel li + li { padding-left: 24px; border-left: 1px solid rgba(0,0,0,.25); }
.wheel li::before { content: counter(w, upper-roman) "."; display: block; font-family: var(--serif); font-style: italic; font-size: 44px; line-height: 1; margin-bottom: 12px; }
.wheel strong { display: block; font-size: 20px; letter-spacing: -.02em; }

/* Token */
.token-grid { display: grid; grid-template-columns: 320px 1fr; gap: 56px; align-items: start; }
.coin { position: relative; aspect-ratio: 1; border-radius: 50%; overflow: hidden; border: 6px solid var(--ink-3); box-shadow: 0 0 0 1px var(--line-2), 16px 16px 0 var(--red); }
.coin img { width: 100%; height: 100%; object-fit: cover; }
.facts { border-top: 1px solid var(--line); margin: 0 0 28px; }
.facts div { display: grid; grid-template-columns: 200px 1fr; gap: 16px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.facts dt { font-family: var(--mono); font-size: 12px; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); padding-top: 3px; }
.facts dd { margin: 0; }
.facts code, .addr code { font-family: var(--mono); font-size: 13px; word-break: break-all; }
.token-ctas { display: flex; flex-wrap: wrap; gap: 12px; }

/* Contracts */
.contracts { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--line); }
.contract { padding: 28px; display: flex; flex-direction: column; gap: 12px; }
.contract + .contract { border-left: 1px solid var(--line); }
.c-head { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.c-head h3 { margin: 0; font-size: 22px; letter-spacing: -.02em; }
.tag { font-family: var(--mono); font-size: 10px; text-transform: uppercase; letter-spacing: .08em; color: var(--lime); border: 1px solid var(--lime); padding: 2px 6px; white-space: nowrap; }
.contract p { color: #bebcb2; margin: 0; flex: 1; }
.addr { display: flex; align-items: center; gap: 8px; min-height: 40px; border: 1px dashed var(--line-2); padding: 8px 10px; font-family: var(--mono); font-size: 12px; color: var(--muted); }
.addr a { color: var(--paper); text-decoration: none; flex: 1; word-break: break-all; }
.addr a:hover { color: var(--lime); }
.copy-btn { background: none; border: 1px solid var(--line-2); color: var(--muted); font-family: var(--mono); font-size: 11px; padding: 4px 8px; cursor: pointer; border-radius: 2px; }
.copy-btn:hover { color: var(--paper); border-color: var(--paper); }

/* FAQ */
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { list-style: none; cursor: pointer; padding: 22px 40px 22px 0; font-size: 19px; font-weight: 700; letter-spacing: -.01em; position: relative; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 4px; top: 16px; font-family: var(--mono); font-size: 24px; color: var(--lime); transition: transform .2s; }
.faq details[open] summary::after { transform: rotate(45deg); color: var(--red); }
.faq details p { color: #c5c3b9; margin: 0 0 24px; max-width: 46em; }
.faq code { font-family: var(--mono); font-size: 14px; color: var(--lime); }

/* Footer */
.footer { padding: 56px 0 40px; }
.footer-top { display: flex; justify-content: space-between; align-items: flex-end; gap: 32px; flex-wrap: wrap; border-bottom: 1px solid var(--line); padding-bottom: 32px; }
.footer-word { font-size: clamp(80px, 16vw, 220px); font-weight: 900; letter-spacing: -.06em; line-height: .78; color: var(--lime); margin: 0; }
.footer-links { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-links a { text-decoration: none; font-size: 14px; color: var(--muted); }
.footer-links a:hover { color: var(--paper); }
.footer-bottom { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding-top: 20px; font-family: var(--mono); font-size: 11px; color: var(--faint); text-transform: uppercase; letter-spacing: .06em; }

/* Toast */
.toast { position: fixed; left: 50%; bottom: 24px; transform: translate(-50%, 20px); background: var(--lime); color: var(--ink); font-weight: 700; font-size: 14px; padding: 10px 16px; border-radius: var(--radius); opacity: 0; pointer-events: none; transition: opacity .2s, transform .2s; z-index: 100; max-width: calc(100vw - 32px); }
.toast.show { opacity: 1; transform: translate(-50%, 0); }
.toast.err { background: var(--red); }

/* ---------- App ---------- */
.app-shell { display: grid; grid-template-columns: 240px 1fr; min-height: calc(100vh - 68px); }
.side { border-right: 1px solid var(--line); padding: 28px 16px; position: sticky; top: 68px; align-self: start; height: calc(100vh - 68px); display: flex; flex-direction: column; gap: 6px; }
.side-label { font-family: var(--mono); font-size: 10px; text-transform: uppercase; letter-spacing: .12em; color: var(--faint); padding: 14px 12px 6px; }
.side a { display: flex; align-items: center; gap: 10px; padding: 9px 12px; border-radius: var(--radius); text-decoration: none; color: var(--muted); font-size: 14px; }
.side a:hover { color: var(--paper); background: var(--ink-2); }
.side a.active { color: var(--ink); background: var(--lime); font-weight: 700; }
.side .net { margin-top: auto; font-family: var(--mono); font-size: 11px; color: var(--muted); padding: 12px; border: 1px solid var(--line); }
.main { padding: 32px 36px 64px; min-width: 0; }
.main h1 { font-size: 40px; letter-spacing: -.04em; margin: 0 0 4px; font-weight: 900; }
.main .sub { color: var(--muted); margin: 0 0 28px; }
.panel-grid { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); margin-bottom: 24px; }
.panel-grid .stat { padding: 20px; }
.panel-grid .stat:first-child { padding-left: 20px; }
.panel { border: 1px solid var(--line); margin-bottom: 24px; }
.panel-h { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 14px 20px; border-bottom: 1px solid var(--line); flex-wrap: wrap; }
.panel-h h2 { font-size: 16px; margin: 0; letter-spacing: -.01em; }
.panel-h .hint { font-family: var(--mono); font-size: 11px; color: var(--faint); }
.panel-b { padding: 20px; }
.empty { color: var(--muted); font-size: 14px; }
.empty strong { color: var(--paper); display: block; font-size: 15px; margin-bottom: 4px; }
table.tbl { width: 100%; border-collapse: collapse; font-size: 14px; }
.tbl th { text-align: left; font-family: var(--mono); font-weight: 400; font-size: 11px; text-transform: uppercase; letter-spacing: .06em; color: var(--faint); padding: 10px 20px; border-bottom: 1px solid var(--line); }
.tbl td { padding: 14px 20px; border-bottom: 1px solid var(--line); font-family: var(--mono); font-size: 13px; }
.tbl tr:last-child td { border-bottom: 0; }
.tbl a { color: var(--paper); }
.tbl a:hover { color: var(--lime); }
.table-scroll { overflow-x: auto; }
.pair { display: inline-flex; align-items: center; gap: 10px; font-family: var(--sans); font-weight: 700; }
.tok-icons { display: inline-flex; }
.tok { width: 24px; height: 24px; border-radius: 50%; border: 2px solid var(--ink); background: var(--ink-3); display: inline-grid; place-items: center; font-size: 10px; font-weight: 800; color: var(--ink); overflow: hidden; }
.tok + .tok { margin-left: -8px; }
.tok img { width: 100%; height: 100%; object-fit: cover; }
.pill { font-family: var(--mono); font-size: 11px; color: var(--muted); border: 1px solid var(--line-2); padding: 2px 6px; border-radius: 2px; }
.actions { display: flex; flex-wrap: wrap; gap: 10px; }
.kv { display: grid; grid-template-columns: 1fr auto; gap: 8px 16px; font-size: 14px; }
.kv dt { color: var(--muted); }
.kv dd { margin: 0; font-family: var(--mono); text-align: right; }
.two { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.warn { border: 1px solid var(--red); color: #ffd6d6; background: rgba(255,45,45,.08); padding: 14px 18px; font-size: 14px; margin-bottom: 24px; }
.warn a { color: var(--paper); }
.wallet-btn.connected { background: transparent; color: var(--lime); border-color: var(--lime); font-family: var(--mono); }

/* ---------- Responsive ---------- */
@media (max-width: 1000px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; padding: 48px 0 56px; }
  .steps, .wheel { grid-template-columns: 1fr 1fr; }
  .steps li:nth-child(3) { border-left: 0; }
  .steps li:nth-child(n+3) { border-top: 1px solid var(--line); }
  .wheel li:nth-child(3) { padding-left: 0; border-left: 0; }
  .wheel li:nth-child(n+3) { padding-top: 28px; }
  .sim { grid-template-columns: 1fr; }
  .sim-controls { border-right: 0; border-bottom: 1px solid var(--line); }
  .token-grid { grid-template-columns: 1fr; }
  .coin { max-width: 240px; }
  .panel-grid { grid-template-columns: 1fr 1fr; }
  .panel-grid .stat:nth-child(3) { border-left: 0; }
  .panel-grid .stat:nth-child(n+3) { border-top: 1px solid var(--line); }
}
@media (max-width: 820px) {
  .nav-links { display: none; position: absolute; top: 68px; left: 0; right: 0; flex-direction: column; gap: 0; background: var(--ink); border-bottom: 1px solid var(--line); }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 16px 24px; border-top: 1px solid var(--line); }
  .menu-btn { display: inline-grid; place-items: center; }
  .nav-cta .icon-btn { display: none; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(3) { border-left: 0; padding-left: 0; }
  .stat:nth-child(n+3) { border-top: 1px solid var(--line); }
  .sec-head { grid-template-columns: 1fr; gap: 20px; }
  .sec-num { width: max-content; }
  .columns, .contracts { grid-template-columns: 1fr; }
  .columns > div + div { padding-left: 0; border-left: 0; border-top: 1px solid var(--line); margin-top: 24px; }
  .contract + .contract { border-left: 0; border-top: 1px solid var(--line); }
  .facts div { grid-template-columns: 1fr; gap: 4px; }
  .section { padding: 72px 0; }
  .app-shell { grid-template-columns: 1fr; }
  .side { position: static; height: auto; flex-direction: row; flex-wrap: wrap; border-right: 0; border-bottom: 1px solid var(--line); padding: 12px 16px; }
  .side-label, .side .net { display: none; }
  .main { padding: 24px 16px 48px; }
  .two { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .wrap { padding: 0 16px; }
  .steps, .wheel { grid-template-columns: 1fr; }
  .steps li { border-left: 0 !important; }
  .steps li + li { border-top: 1px solid var(--line); }
  .wheel li { padding-left: 0 !important; border-left: 0 !important; padding-top: 24px; }
  .sim-grid { grid-template-columns: 1fr; }
  .sim-grid div:nth-child(odd) { padding-right: 0; }
  .countdown span { font-size: 28px; }
  .nav-cta .btn { padding: 0 12px; }
  .panel-grid { grid-template-columns: 1fr; }
  .panel-grid .stat { border-left: 0 !important; }
  .panel-grid .stat + .stat { border-top: 1px solid var(--line); }
}
