:root {
  --bg: #0a0a0b;
  --surface: #131316;
  --surface-2: #1b1b20;
  --line: rgba(255, 255, 255, 0.07);
  --line-2: rgba(255, 255, 255, 0.12);
  --text: #f5f5f7;
  --muted: #8a8a93;
  --brand: #f6337b;
  --tg: #2aabee;
  --teal: #2dd4bf;
  --amber: #f5a524;
  --violet: #8b5cf6;
  --green: #34c759;
  --red: #ff453a;
  --pump: #5ee08f;
  --fomo: #6f7df7;
  --x: #e7e9ea;
  --accent: var(--brand);
  --stage-w: 400px;
  --pink-bottom: max(33.333vw, calc(var(--stage-w) + 64px));
  --pink-top: calc(var(--pink-bottom) + 7vw);
  --stage-left: calc((var(--pink-bottom) - var(--stage-w)) / 2);
  --content-left: calc(var(--pink-top) + 64px);
  --font: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --mono: ui-monospace, "SF Mono", Menlo, monospace;
}

body[data-accent="brand"] { --accent: var(--brand); }
body[data-accent="x"] { --accent: var(--x); }
body[data-accent="pump"] { --accent: var(--pump); }
body[data-accent="fomo"] { --accent: var(--fomo); }
body[data-accent="teal"] { --accent: var(--teal); }
body[data-accent="tg"] { --accent: var(--tg); }
body[data-accent="amber"] { --accent: var(--amber); }
body[data-accent="violet"] { --accent: var(--violet); }
body[data-accent="green"] { --accent: var(--green); }

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.5;
  letter-spacing: -0.01em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  background: var(--brand);
  clip-path: polygon(0 0, var(--pink-top) 0, var(--pink-bottom) 100%, 0 100%);
  transition: transform 0.6s cubic-bezier(0.7, 0, 0.2, 1);
  pointer-events: none;
}
body.stage-off::before { transform: translateX(-110%); }
a { color: inherit; text-decoration: none; }
h1, h2 { margin: 0; letter-spacing: -0.035em; line-height: 1.04; text-wrap: balance; }
h1 { font-size: 64px; font-weight: 800; }
h2 { font-size: 52px; font-weight: 800; }
h1 em { font-style: normal; }
.c-pump { color: var(--pump); }
.c-fomo { color: var(--fomo); }
.c-x { color: var(--x); text-decoration: underline; text-decoration-color: var(--brand); text-decoration-thickness: 5px; text-underline-offset: 7px; }
p { margin: 0; }
button { font: inherit; color: inherit; }
.up { color: var(--green); }
.down { color: var(--red); }
.warn { color: var(--amber); }

.top {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 28px 48px 0 var(--content-left);
  pointer-events: none;
}
.top > * { pointer-events: auto; }
.logo { display: flex; align-items: center; gap: 12px; font-weight: 800; font-size: 26px; letter-spacing: -0.03em; transition: opacity 0.35s; }
.logo img { width: 44px; height: 44px; border-radius: 12px; }
body.past-home .logo { opacity: 0; pointer-events: none; }
.top-right { text-align: center; }
.top-actions { display: flex; align-items: center; gap: 10px; }
.x-link { display: grid; place-items: center; width: 52px; height: 52px; border-radius: 50%; background: var(--surface-2); border: 1px solid var(--line); transition: background 0.2s; }
.x-link:hover { background: #26262b; }
.x-link svg { width: 18px; height: 18px; fill: var(--text); }
.top-right small { display: block; margin-top: 12px; color: var(--muted); font-size: 14px; line-height: 1.35; }

.pill {
  display: inline-block;
  padding: 16px 30px;
  border-radius: 999px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  font-weight: 600;
  font-size: 17px;
  transition: background 0.2s, transform 0.2s;
}
.pill:hover { background: #26262b; transform: translateY(-1px); }
.pill.big { padding: 22px 44px; font-size: 20px; }

.side {
  position: fixed;
  right: 48px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 30;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
  transition: opacity 0.35s;
}
.side a { color: var(--muted); font-size: 16px; transition: color 0.25s; }
.side a:hover, .side a.is-active { color: var(--text); }
body.nav-off .side { opacity: 0; pointer-events: none; }

.stage {
  position: fixed;
  left: var(--stage-left);
  top: 120px;
  bottom: 40px;
  width: var(--stage-w);
  z-index: 20;
  transition: opacity 0.5s, transform 0.5s;
}
.stage::before {
  content: "";
  position: absolute;
  inset: 12% 0;
  background: radial-gradient(closest-side, rgba(90, 0, 35, 0.45), transparent 75%);
  filter: blur(30px);
  z-index: -1;
}
.stage .arrow, .block .screen .arrow { background: linear-gradient(180deg, rgba(255, 255, 255, 0.35), #fff); }
.stage .arrow::after, .block .screen .arrow::after { border-top-color: #fff; }
.stage .arrow span, .block .screen .arrow span { background: #0a0a0b; border-color: #0a0a0b; color: #fff; }
.stage .ours, .block .screen .ours { border-color: rgba(255, 255, 255, 0.18); box-shadow: 0 30px 80px rgba(80, 0, 30, 0.45); }
.stage .board, .stage .panel, .block .screen .board, .block .screen .panel { border-color: rgba(255, 255, 255, 0.1); box-shadow: 0 40px 100px rgba(80, 0, 30, 0.5); }
body.stage-off .stage { opacity: 0; transform: translateY(60px); pointer-events: none; }
.stage-screens { position: absolute; inset: 0; }
.stage-screens .screen {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
  transform: translateY(24px) scale(0.98);
  transition: opacity 0.45s, transform 0.45s;
  pointer-events: none;
}
.stage-screens .screen.is-on { opacity: 1; transform: none; pointer-events: auto; }

.content { position: relative; z-index: 10; padding-left: var(--content-left); padding-right: 230px; }
.block { min-height: 100vh; display: flex; align-items: center; padding: 120px 0; }
.block .copy { max-width: 620px; }
.block p { margin-top: 28px; font-size: 26px; line-height: 1.35; color: var(--muted); letter-spacing: -0.015em; }
.block .screen { display: none; }

.board, .panel {
  position: relative;
  background: rgba(19, 19, 22, 0.94);
  border: 1px solid var(--line-2);
  border-radius: 28px;
  padding: 22px 22px 18px;
  box-shadow: 0 40px 110px rgba(0, 0, 0, 0.55);
}
.board-head { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.tabs { display: inline-flex; padding: 4px; border-radius: 999px; background: var(--surface-2); border: 1px solid var(--line); }
.tab {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 13px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.tab.is-on { background: #2a2a31; color: var(--text); }
.dot { width: 8px; height: 8px; border-radius: 50%; }
.dot.pump { background: var(--pump); }
.dot.fomo { background: var(--fomo); }
.dot.x { background: var(--x); }
.board-meta { font-size: 13px; color: var(--muted); }
.rows { display: none; list-style: none; margin: 14px 0 0; padding: 0; }
.rows.is-on { display: block; animation: rows-in 0.4s ease both; }
@keyframes rows-in { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.rows li { display: grid; grid-template-columns: 40px minmax(0, 1fr) auto auto; align-items: center; gap: 12px; padding: 11px 0; border-top: 1px solid var(--line); }
.av { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; background: var(--surface-2); flex: none; }
.av.ini { display: grid; place-items: center; font-weight: 800; font-size: 13px; color: #fff; letter-spacing: 0; }
.g1 { background: linear-gradient(135deg, #f6337b, #8b5cf6); }
.g2 { background: linear-gradient(135deg, #2aabee, #2dd4bf); }
.g3 { background: linear-gradient(135deg, #f5a524, #f6337b); }
.g4 { background: linear-gradient(135deg, #8b5cf6, #2aabee); }
.g5 { background: linear-gradient(135deg, #34c759, #2aabee); }
.who { display: flex; flex-direction: column; min-width: 0; line-height: 1.3; }
.who b { font-size: 15px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.who small { color: var(--muted); font-size: 12px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.pnl { display: flex; flex-direction: column; align-items: flex-end; line-height: 1.3; }
.pnl b { font-size: 15px; font-variant-numeric: tabular-nums; }
.pnl small { color: var(--muted); font-size: 12px; }
.copy { padding: 7px 13px; border-radius: 999px; background: rgba(246, 51, 123, 0.15); color: #ff7aa9; font-size: 13px; font-weight: 700; }

.pair { display: flex; flex-direction: column; }
.arrow { position: relative; width: 2px; height: 64px; margin: 10px auto; background: linear-gradient(180deg, var(--line-2), var(--brand)); }
.arrow::after { content: ""; position: absolute; left: -5px; bottom: -2px; border: 6px solid transparent; border-top: 8px solid var(--brand); border-bottom: 0; }
.arrow span {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--bg);
  border: 1px solid var(--line-2);
  font-size: 12px;
  font-weight: 700;
  font-family: var(--mono);
  white-space: nowrap;
}

.frag-x { background: #000; border: 1px solid #2f3336; border-radius: 16px; padding: 16px 18px; font-family: -apple-system, "Segoe UI", system-ui, sans-serif; letter-spacing: 0; color: #e7e9ea; }
.fx-head { display: flex; align-items: center; gap: 10px; }
.fx-name { display: flex; flex-direction: column; line-height: 1.25; }
.fx-name b { font-size: 15px; }
.fx-name small { font-size: 14px; color: #71767b; }
.fx-logo { width: 20px; height: 20px; margin-left: auto; fill: #e7e9ea; }
.fx-text { margin: 12px 0 10px; font-size: 17px; line-height: 1.4; }
.fx-time { font-size: 14px; color: #71767b; }

.frag-pump { background: #1b1d23; border: 1px solid #2b2e37; border-radius: 12px; padding: 16px; font-size: 14px; }
.fp-coin { display: flex; align-items: center; gap: 12px; }
.fp-img { width: 48px; height: 48px; border-radius: 8px; display: grid; place-items: center; font-weight: 900; font-size: 20px; color: #0b2e18; background: linear-gradient(135deg, #86efac, #22c55e); }
.fp-name { display: flex; flex-direction: column; line-height: 1.25; }
.fp-name b { font-size: 16px; }
.fp-name small { color: #9ca3af; }
.fp-mc { margin-left: auto; display: flex; flex-direction: column; align-items: flex-end; line-height: 1.25; }
.fp-mc small { color: #9ca3af; font-size: 12px; }
.fp-mc b { color: #86efac; font-size: 16px; }
.fp-bar { height: 8px; margin-top: 14px; border-radius: 99px; background: #2b2e37; overflow: hidden; }
.fp-bar i { display: block; height: 100%; border-radius: 99px; background: linear-gradient(90deg, #22c55e, #86efac); }
.fp-label { display: flex; justify-content: space-between; margin: 6px 0 12px; font-size: 12px; color: #9ca3af; }
.fp-trade { display: grid; grid-template-columns: 22px 1fr auto auto auto; align-items: center; gap: 10px; padding: 8px 10px; margin-top: 6px; border-radius: 8px; background: #22252d; font-size: 13px; }
.fp-trade .av { width: 22px; height: 22px; font-size: 9px; }
.fp-buy { padding: 2px 8px; border-radius: 6px; background: rgba(134, 239, 172, 0.14); color: #86efac; font-weight: 700; }
.fp-ago { color: #9ca3af; }

.frag-fomo { background: linear-gradient(160deg, #6f7df7, #4c58dc); border-radius: 22px; padding: 18px; color: #fff; box-shadow: 0 20px 50px rgba(76, 88, 220, 0.25); }
.ff-head { display: flex; align-items: center; gap: 10px; }
.ff-head .av { width: 38px; height: 38px; box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.35); }
.ff-name { display: flex; flex-direction: column; line-height: 1.25; }
.ff-name small { opacity: 0.75; font-size: 13px; }
.ff-badge { margin-left: auto; padding: 4px 10px; border-radius: 999px; background: #fff; color: #4c58dc; font-size: 12px; font-weight: 800; }
.ff-text { margin: 14px 0 10px; font-size: 22px; letter-spacing: -0.02em; }
.ff-chain { display: inline-block; padding: 3px 10px; border-radius: 999px; background: rgba(255, 255, 255, 0.18); font-size: 12px; font-weight: 600; }

.ours { background: var(--surface); border: 1px solid rgba(246, 51, 123, 0.45); border-radius: 20px; padding: 18px 20px; box-shadow: 0 0 60px rgba(246, 51, 123, 0.16); }
.ours-tag { font-size: 12px; font-weight: 800; letter-spacing: 0.05em; text-transform: uppercase; color: var(--brand); }
.ours > b { display: block; margin: 6px 0 8px; font-size: 18px; }
.kv { display: flex; justify-content: space-between; gap: 12px; padding: 6px 0; border-top: 1px solid var(--line); font-size: 14px; }
.kv span:first-child { color: var(--muted); }
.kv span:last-child { font-weight: 600; text-align: right; }

.panel-title { font-size: 15px; font-weight: 700; color: var(--muted); margin-bottom: 14px; }
.warn-title { color: var(--amber); font-size: 18px; }
.search { display: flex; align-items: center; gap: 10px; padding: 14px 16px; margin-bottom: 18px; border-radius: 14px; background: var(--surface-2); border: 1px solid var(--line); font-weight: 600; }
.caret { width: 2px; height: 20px; background: var(--accent); animation: blink 1s steps(1) infinite; }
@keyframes blink { 50% { opacity: 0; } }
.wallet { display: flex; align-items: center; gap: 12px; padding: 13px 14px; margin-top: 10px; border-radius: 14px; background: rgba(255, 255, 255, 0.03); border: 1px solid var(--line); }
.chain-dot { width: 12px; height: 12px; border-radius: 50%; flex: none; }
.chain-dot.sol { background: linear-gradient(135deg, #9945ff, #14f195); }
.chain-dot.rh { background: #c6f432; }
.addr { font-family: var(--mono); font-weight: 600; font-size: 14px; }
.proof { margin-left: auto; font-size: 12px; color: var(--accent); white-space: nowrap; }
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 14px; }
.stats div { padding: 12px; border-radius: 14px; background: var(--surface-2); }
.stats small, .perm small, .vs small { display: block; font-size: 12px; color: var(--muted); }
.stats b { font-size: 20px; letter-spacing: -0.03em; }
.stats b span { font-size: 13px; color: var(--muted); font-weight: 600; }

.vs { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.vs div { padding: 14px 16px; border-radius: 16px; background: var(--surface-2); border: 1px solid var(--line); }
.vs b { font-size: 36px; letter-spacing: -0.04em; font-weight: 800; }
.vs .you { border-color: color-mix(in srgb, var(--accent) 55%, transparent); background: color-mix(in srgb, var(--accent) 10%, var(--surface-2)); }
.chart { display: block; width: 100%; height: 110px; margin: 14px 0 8px; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.l-them { stroke: #5a5a63; stroke-width: 2; stroke-dasharray: 5 6; }
.l-you { stroke: var(--accent); stroke-width: 3; }
.loss { display: grid; grid-template-columns: 100px 1fr 54px; align-items: center; gap: 12px; padding: 6px 0; font-size: 14px; color: var(--muted); }
.loss i { height: 8px; border-radius: 99px; background: rgba(255, 69, 58, 0.55); }
.loss b { text-align: right; }
.fine { margin-top: 10px; font-size: 12px; color: var(--muted); }

.fan { display: block; width: 100%; height: 120px; margin-bottom: 6px; }
.fan .hub { fill: var(--amber); }
.fan .spokes path { fill: none; stroke: rgba(245, 165, 36, 0.45); stroke-width: 1.5; stroke-dasharray: 260; stroke-dashoffset: 260; transition: stroke-dashoffset 1.2s ease 0.2s; }
.fan .leaves circle { fill: var(--surface-2); stroke: var(--amber); stroke-width: 1.5; }
.screen.is-on .fan .spokes path, .block .screen .fan .spokes path { stroke-dashoffset: 0; }
.flag { display: flex; flex-direction: column; gap: 2px; padding: 9px 0; border-top: 1px solid var(--line); }
.flag b { color: var(--amber); font-size: 15px; }
.flag span { font-size: 13px; color: var(--muted); }
.choice { display: flex; gap: 8px; margin-top: 12px; }
.choice span { flex: 1; text-align: center; padding: 10px 6px; border-radius: 12px; background: var(--surface-2); font-size: 13px; font-weight: 600; color: var(--muted); }
.choice .is-on { background: var(--amber); color: #111; }

.set { display: grid; grid-template-columns: 120px 1fr auto; align-items: center; gap: 14px; padding: 10px 0; border-top: 1px solid var(--line); font-size: 14px; }
.set > span:first-child { color: var(--muted); }
.set > span:first-child + b { grid-column: 2 / 4; text-align: right; }
.set > .toggle { grid-column: 3; }
.slider { height: 6px; border-radius: 99px; background: var(--surface-2); }
.slider i { display: block; height: 100%; border-radius: 99px; background: var(--tg); }
.toggle { position: relative; width: 42px; height: 24px; border-radius: 99px; background: var(--tg); }
.toggle::after { content: ""; position: absolute; right: 3px; top: 3px; width: 18px; height: 18px; border-radius: 50%; background: #fff; }
.panic { display: block; margin-top: 14px; padding: 13px; border-radius: 14px; text-align: center; font-weight: 700; color: var(--red); background: rgba(255, 69, 58, 0.1); border: 1px solid rgba(255, 69, 58, 0.3); }

.perm { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 14px; }
.perm div { padding: 13px; border-radius: 14px; background: var(--surface-2); }
.perm b { font-size: 17px; }

.link-box { padding: 14px 16px; border-radius: 14px; background: var(--surface-2); border: 1px dashed rgba(52, 199, 89, 0.5); font-family: var(--mono); font-size: 14px; color: var(--green); word-break: break-all; }
.payout { display: flex; justify-content: space-between; gap: 12px; margin-top: 14px; padding: 13px 16px; border-radius: 14px; background: rgba(52, 199, 89, 0.1); font-size: 14px; }
.payout span { color: var(--muted); }

.wide { position: relative; padding: 140px 0 60px; margin-left: calc(var(--content-left) * -1); margin-right: -230px; text-align: center; }
.wide h2 { font-size: 64px; }
.wide-sub { max-width: 640px; margin: 24px auto 0; font-size: 22px; color: var(--muted); }
.mosaic {
  display: grid;
  grid-template-columns: repeat(6, 240px);
  gap: 18px;
  width: max-content;
  margin: 72px 0 0 50%;
  transform: translateX(-50%);
}
.mosaic .card:nth-child(3n) { margin-top: 36px; }
.mosaic .card:nth-child(4n + 1) { margin-top: -24px; }
.card { text-align: left; padding: 18px; border-radius: 22px; background: var(--surface); border: 1px solid var(--line); display: flex; flex-direction: column; gap: 6px; min-height: 160px; }
.card b { font-size: 17px; font-weight: 700; }
.card small { color: var(--muted); font-size: 14px; }
.card svg { width: 100%; height: 40px; margin-top: auto; fill: none; stroke: var(--green); stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.card-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 4px; }
.card .av { width: 36px; height: 36px; font-size: 12px; }
.src-tag { padding: 3px 9px; border-radius: 999px; font-size: 12px; font-weight: 700; }
.src-tag.pump { background: rgba(94, 224, 143, 0.14); color: var(--pump); }
.src-tag.fomo { background: rgba(111, 125, 247, 0.2); color: #a3adff; }
.src-tag.x { background: rgba(231, 233, 234, 0.12); color: var(--x); }
.tint-pink { background: linear-gradient(180deg, rgba(246, 51, 123, 0.14), var(--surface) 70%); }
.tint-green { background: linear-gradient(180deg, rgba(52, 199, 89, 0.13), var(--surface) 70%); }
.tint-blue { background: linear-gradient(180deg, rgba(111, 125, 247, 0.18), var(--surface) 70%); }
.tint-amber { background: linear-gradient(180deg, rgba(245, 165, 36, 0.15), var(--surface) 70%); }
.tint-violet { background: linear-gradient(180deg, rgba(139, 92, 246, 0.18), var(--surface) 70%); }
.tint-red { background: linear-gradient(180deg, rgba(255, 69, 58, 0.14), var(--surface) 70%); }

.final {
  position: relative;
  min-height: 100vh;
  margin-left: calc(var(--content-left) * -1);
  margin-right: -230px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  text-align: center;
  padding: 120px 24px;
}
.final::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(60% 50% at 10% 100%, rgba(94, 224, 143, 0.26), transparent 70%),
    radial-gradient(50% 45% at 50% 105%, rgba(246, 51, 123, 0.32), transparent 70%),
    radial-gradient(55% 50% at 90% 100%, rgba(111, 125, 247, 0.32), transparent 70%);
  filter: blur(30px);
}
.final small { color: var(--muted); font-size: 16px; }
.final-logo { width: 88px; height: 88px; border-radius: 22px; margin-top: 56px; box-shadow: 0 0 60px rgba(246, 51, 123, 0.35); }
.qr { margin-top: 32px; padding: 12px; background: #fff; border-radius: 14px; }
.qr img, .qr canvas { display: block; width: 96px; height: 96px; }
.qr-hint { font-size: 13px; }

.foot { position: relative; z-index: 10; display: flex; flex-wrap: wrap; align-items: center; gap: 18px 32px; padding: 32px 48px 40px; color: var(--muted); font-size: 15px; }
.foot nav { display: flex; flex-wrap: wrap; gap: 22px; margin-left: auto; }
.foot p { width: 100%; font-size: 13px; }

@media (max-width: 1280px) {
  :root { --stage-w: 380px; --content-left: calc(var(--pink-top) + 48px); }
  .content { padding-right: 190px; }
  .wide, .final { margin-right: -190px; }
  h1 { font-size: 52px; }
  h2 { font-size: 42px; }
  .block p { font-size: 21px; }
  .side a { font-size: 15px; }
}

@media (max-height: 820px) and (min-width: 981px) {
  .stage { top: 100px; bottom: 20px; }
  .stage-screens .screen { transform-origin: center; }
  .stage-screens .screen > * { zoom: 0.9; }
}

@media (max-width: 980px) {
  :root { --content-left: 0px; }
  body { font-size: 16px; }
  body::before { display: none; }
  h2 br { display: none; }
  .top { padding: 16px; align-items: center; background: linear-gradient(180deg, rgba(10, 10, 11, 0.95), rgba(10, 10, 11, 0)); }
  .logo { font-size: 20px; }
  .logo img { width: 34px; height: 34px; border-radius: 9px; }
  body.past-home .logo { opacity: 1; pointer-events: auto; }
  .top-right small { display: none; }
  .pill { padding: 12px 18px; font-size: 15px; }
  .x-link { width: 44px; height: 44px; }
  .side, .stage { display: none; }
  .content { padding: 80px 16px 0; }
  .block { min-height: 0; flex-direction: column; align-items: stretch; gap: 32px; padding: 56px 0; }
  .block .screen {
    display: block;
    margin: 0 -16px;
    padding: 56px 16px;
    background: var(--brand);
    clip-path: polygon(0 28px, 100% 0, 100% calc(100% - 28px), 0 100%);
  }
  .block .screen > * { max-width: 440px; margin-left: auto; margin-right: auto; }
  h1 { font-size: 40px; }
  h2 { font-size: 32px; }
  .block p { margin-top: 18px; font-size: 18px; }
  .wide { margin: 0 -16px; padding: 64px 16px 24px; }
  .wide h2 { font-size: 36px; }
  .wide-sub { font-size: 17px; }
  .mosaic { grid-template-columns: repeat(2, minmax(0, 1fr)); width: auto; margin: 32px 0 0; transform: none; gap: 12px; }
  .mosaic .card:nth-child(3n), .mosaic .card:nth-child(4n + 1) { margin-top: 0; }
  .final { margin: 0 -16px; min-height: 0; padding: 80px 16px; }
  .pill.big { padding: 18px 28px; font-size: 17px; }
  .foot { padding: 24px 16px 32px; }
  .foot nav { margin-left: 0; }
}

@media (max-width: 420px) {
  .rows li { grid-template-columns: 36px minmax(0, 1fr) auto; gap: 10px; }
  .rows .av { width: 36px; height: 36px; }
  .rows .copy { display: none; }
  .vs b { font-size: 28px; }
  .set { grid-template-columns: 100px 1fr auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .stage, .stage::before, .stage-screens .screen, .side a, .pill, .logo { transition: none; }
  .rows.is-on, .caret { animation: none; }
  .fan .spokes path { stroke-dashoffset: 0; transition: none; }
}
