/* =========================================================
   style.css: how Ape Roulette LOOKS.

   Art direction (same family as Trench Lotto):
   - Near-black with a green tint, off-white text.
   - Mint green means MONEY: the pot, fees coming in, prizes,
     paid out, and the lit numbers on the table. Nothing else
     is green, so the eye goes straight to the money.
   - Flat vector. No gradients, no drop shadows, no 3D.
   - Structure from thin ruled lines, not boxes around everything.
   - Bricolage Grotesque for headlines and reading,
     JetBrains Mono for numbers and wallets.

   Mobile-first: plain rules are for phones; @media blocks at the
   bottom widen things for bigger screens.
   ========================================================= */


/* ---------- 1. Design tokens ---------- */
:root {
  --bg:        #0E1311;   /* page background */
  --bg-deep:   #080C0A;   /* ball track, dark pockets, inputs */
  --surface:   #151D19;   /* panels */
  --edge:      #2A3A31;   /* stronger borders */
  --line:      rgba(220, 255, 232, .12);   /* hairlines */
  --ink:       #EAF5EE;   /* main text, light pockets */
  --muted:     #9DB5A6;   /* secondary text (~8:1 on the background) */
  --dim:       #6F8A7A;   /* tertiary text (~4.8:1) */
  --money:     #7CF29C;   /* mint green: money only */
  --money-lite:#B6FFC8;

  --font: "Bricolage Grotesque", system-ui, -apple-system, "Segoe UI", sans-serif;
  --mono: "JetBrains Mono", ui-monospace, Menlo, monospace;
  --ease: cubic-bezier(.2, .7, .2, 1);

  --gutter: 1.25rem;       /* side padding; grows on big screens */
}


/* ---------- 2. Base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { background: var(--bg); scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font: 400 1rem/1.6 var(--font);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, p { margin: 0; }
a { color: inherit; }
[hidden] { display: none !important; }

h2 {
  font-size: clamp(2.1rem, 6.5vw, 3.4rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.03em;
}
h3 { font-size: 1.15rem; font-weight: 700; }

/* Small labels: quiet, sentence case, not shouty */
.label,
.kicker,
.stats dt,
.inline-stats dt,
.ledger-table th,
.ticker__label {
  font: 500 .8rem/1.3 var(--font);
  color: var(--muted);
}

:focus-visible { outline: 2px solid var(--money-lite); outline-offset: 3px; border-radius: 4px; }

.skip-link {
  position: absolute; left: var(--gutter); top: -4rem; z-index: 50;
  padding: .75rem 1rem; background: var(--money); color: var(--bg); font-weight: 700; border-radius: 8px;
}
.skip-link:focus { top: 1rem; }


/* ---------- 3. Buttons and links ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 1.5rem;
  border: 0;
  border-radius: 10px;
  background: var(--ink);
  color: var(--bg);
  font: 700 1rem var(--font);
  text-decoration: none;
  cursor: pointer;
  transition: background-color .15s;
}
.btn:hover { background: #fff; }

.pill {
  min-height: 44px;
  padding: 0 1.25rem;
  border: 0;
  border-radius: 999px;
  background: var(--ink);
  color: var(--bg);
  font: 700 .9rem var(--font);
  cursor: pointer;
  white-space: nowrap;
}
.pill:hover { background: #fff; }

.textlink {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-weight: 600;
  color: var(--muted);
  text-underline-offset: 6px;
}
.textlink:hover { color: var(--ink); }


/* ---------- 4. Top bar ---------- */
.topbar {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .85rem var(--gutter);
  border-bottom: 1px solid var(--line);
}
.wordmark { display: inline-flex; align-items: center; gap: .55rem; font-size: 1.1rem; font-weight: 800; letter-spacing: -.02em; text-decoration: none; }
.wordmark__ape { width: 34px; height: 34px; }
.topbar__nav { display: none; gap: 2rem; font-size: .95rem; font-weight: 500; }
.topbar__nav a { color: var(--muted); text-decoration: none; }
.topbar__nav a:hover { color: var(--ink); }
.topbar__end { position: relative; }

.wallet-note {
  position: absolute;
  right: 0;
  top: calc(100% + .75rem);
  width: min(18rem, calc(100vw - 2.5rem));
  padding: 1rem;
  border-radius: 12px;
  background: var(--surface);
  box-shadow: inset 0 0 0 1px var(--edge);
  font-size: .9rem;
  line-height: 1.5;
}


/* ---------- 5. Hero ---------- */
.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

/* Faint (5%) casino-chip pattern behind the hero */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .05;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='420' height='420' viewBox='0 0 420 420'%3E%3Cg fill='none' stroke='%23EAF5EE'%3E%3Ccircle cx='70' cy='80' r='40' stroke-width='11' stroke-dasharray='15.7 15.7'/%3E%3Ccircle cx='70' cy='80' r='24' stroke-width='3'/%3E%3Ccircle cx='310' cy='300' r='30' stroke-width='9' stroke-dasharray='11.8 11.8'/%3E%3Ccircle cx='310' cy='300' r='18' stroke-width='3'/%3E%3C/g%3E%3Cpath d='M280 60 L350 30 L350 100 Z M60 330 L130 300 L130 370 Z' fill='%23EAF5EE'/%3E%3C/svg%3E");
}

.hero__copy { position: relative; z-index: 1; padding: 2.5rem var(--gutter) 0; }
.kicker { padding-bottom: 1.25rem; }

/* The ruled headline: three rows, each with a small note */
.ledger { display: block; margin: 0; }
.ledger__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: baseline;
  gap: .25rem 1rem;
  padding: .55rem 0;
  border-top: 1px solid var(--line);
}
.ledger__row:last-child { border-bottom: 1px solid var(--line); }
.ledger__big {
  font-size: clamp(2.4rem, 11vw, 4.6rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.04em;
  white-space: nowrap;
}
.ledger__big em { font-style: normal; color: var(--money); }   /* "pot" is money */
.ledger__note { font: 400 .75rem var(--mono); color: var(--muted); white-space: nowrap; }

.hero__lede { margin-top: 1.5rem; max-width: 29rem; font-size: 1.075rem; color: var(--muted); }
.hero__actions { display: flex; flex-wrap: wrap; align-items: center; gap: .75rem 1.75rem; margin-top: 1.75rem; }

.wheel__status {
  display: flex;
  align-items: center;
  gap: .6rem;
  margin-top: 1.5rem;
  font: 400 .8rem var(--mono);
  color: var(--muted);
}
.wheel__status::before {            /* status light: hollow while waiting, green when spinning */
  content: "";
  flex: none;
  width: .55rem;
  height: .55rem;
  border-radius: 50%;
  box-shadow: inset 0 0 0 1.5px currentColor;
}
.hero.is-live .wheel__status { color: var(--money); }
.hero.is-live .wheel__status::before { background: var(--money); animation: pulse 1s steps(2) infinite; }
@keyframes pulse { 50% { opacity: .2; } }

.hero__wheel {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  padding: 2.5rem var(--gutter) 2rem;
}

.wheel { position: relative; width: min(100%, 34rem); aspect-ratio: 1; }
.wheel__svg { display: block; width: 100%; height: 100%; }
.wheel__pointer {
  position: absolute;
  left: 50%;
  top: -3%;
  width: 6.5%;
  transform: translateX(-50%);
  fill: var(--money);
  stroke: var(--bg);
  stroke-width: 4;
  stroke-linejoin: round;
}

/* Wheel parts (colors live here) */
.w-rim { fill: var(--edge); }
.w-track { fill: var(--bg-deep); }
.w-trackline { fill: none; stroke: var(--line); stroke-width: 1.5; }
.w-diamond { fill: var(--ink); }
.w-ring { fill: var(--edge); }
.w-pocket--red { fill: var(--ink); }
.w-pocket--black { fill: var(--bg-deep); }
.w-pocket--zero { fill: var(--money); }
.w-num { font: 800 21px var(--font); text-anchor: middle; dominant-baseline: middle; }
.w-num--red, .w-num--zero { fill: var(--bg); }
.w-num--black { fill: var(--ink); }
.w-fret { fill: none; stroke: var(--edge); stroke-width: 2; }
.w-inner { fill: none; stroke: var(--edge); stroke-width: 1.5; }
.w-turret { fill: var(--bg); stroke: var(--edge); stroke-width: 3; }
.w-turret-ring { fill: none; stroke: var(--surface); stroke-width: 10; }
.w-spoke { stroke: var(--edge); stroke-width: 6; stroke-linecap: round; }
.w-ball { fill: #FFFFFF; stroke: var(--bg-deep); stroke-width: 2; }
.w-hl { fill: none; stroke: var(--money); stroke-width: 6; stroke-linejoin: round; }   /* the winning pocket */

.wheel__frame,
.wheel__rotor,
.wheel__orbit {
  transform-box: view-box;
  transform-origin: 350px 350px;
}
.wheel__frame { animation: idle 120s linear infinite; }
@keyframes idle { to { transform: rotate(360deg); } }

/* Fee ticker: money in, in green */
.ticker {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  height: 52px;
  padding: 0 var(--gutter);
  border-top: 1px solid var(--line);
  background: var(--bg);
  overflow: hidden;
  white-space: nowrap;
}
.ticker__label { flex: none; }
.ticker__list { display: flex; gap: 2rem; margin: 0; padding: 0; list-style: none; font: 400 .9rem var(--mono); }
.ticker__item strong { font-weight: 700; color: var(--money); }
.ticker__item span { color: var(--dim); margin-left: .5rem; }
.ticker__item.is-new { animation: slidein .5s var(--ease); }
@keyframes slidein { from { opacity: 0; transform: translateX(-16px); } }


/* ---------- 6. Sections ---------- */
.section { padding: 4rem var(--gutter); border-bottom: 1px solid var(--line); }
.section__head { display: grid; gap: .9rem; margin-bottom: 2.5rem; }
.section__head p { max-width: 32rem; font-size: 1.05rem; color: var(--muted); }
.section__head--row { align-items: end; }


/* ---------- 7. The pot + roulette-table meter ---------- */
.pot__top { display: grid; gap: 1.5rem; margin-bottom: 2rem; }
.pot__amount { display: flex; align-items: baseline; gap: .75rem; }
#pot-value {
  font-size: clamp(5rem, 24vw, 11rem);
  font-weight: 800;
  line-height: .85;
  letter-spacing: -.05em;
  color: var(--money);
  font-variant-numeric: tabular-nums;
}
.pot__target { font: 400 clamp(1rem, 4vw, 1.5rem) var(--mono); color: var(--muted); }
.pot__intro { display: grid; gap: .6rem; }
.pot__status { font-size: clamp(1.05rem, 3vw, 1.3rem); line-height: 1.5; max-width: 30rem; }

.table { display: flex; gap: 3px; }
.table__zero,
.table__cell {
  display: flex;
  align-items: center;
  justify-content: center;
  font: 700 .72rem var(--mono);
  color: var(--dim);
  box-shadow: inset 0 0 0 1px var(--edge);
  transition: background-color .4s, color .4s;
}
.table__zero { flex: none; width: 2.2rem; border-radius: 999px 4px 4px 999px; }
.table__grid { flex: 1; display: grid; grid-template-columns: repeat(12, 1fr); gap: 3px; }
.table__cell { height: 2.1rem; border-radius: 4px; }
.table__zero.is-lit,
.table__cell.is-lit { background: var(--money); color: var(--bg); box-shadow: none; }
.table.is-full .table__cell,
.table.is-full .table__zero { animation: blink .5s steps(2) 6; }
@keyframes blink { 50% { background: var(--bg); color: var(--money); } }

.stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 2.5rem 0 0;
  border-top: 1px solid var(--line);
}
.stats > div { padding: 1.25rem 1rem 0 0; }
.stats > div:nth-child(even) { padding-left: 1rem; border-left: 1px solid var(--line); }
.stats > div:nth-child(n+3) { margin-top: 1rem; border-top: 1px solid var(--line); }
.stats dd { margin: .45rem 0 0; font: 400 1.05rem var(--mono); }
.stats dd.stats__big { font: 800 1.6rem var(--font); }


/* ---------- 8. How it works ---------- */
.steps { list-style: none; margin: 0; padding: 0; display: grid; border-top: 1px solid var(--line); }
.steps li { display: grid; gap: .6rem; padding: 1.75rem 0; border-bottom: 1px solid var(--line); }
.steps__n { font: 700 .85rem var(--mono); color: var(--money); }
.steps p { color: var(--muted); }


/* ---------- 9. Winners ledger ---------- */
.inline-stats { display: flex; flex-wrap: wrap; gap: .5rem 2rem; margin: 0; }
.inline-stats div { display: flex; align-items: baseline; gap: .6rem; }
.inline-stats dd { margin: 0; font: 600 1.05rem var(--mono); }
#win-paid { color: var(--money); }

.table-scroll { overflow-x: auto; }
.ledger-table { width: 100%; min-width: 40rem; border-collapse: collapse; font: 400 .95rem var(--mono); }
.ledger-table th { padding: 0 0 .8rem; text-align: left; font-weight: 500; border-bottom: 1px solid var(--edge); }
.ledger-table td { padding: 1.05rem 0; border-bottom: 1px solid var(--line); }
.ledger-table th:last-child, .ledger-table td:last-child { text-align: right; }
.ledger-table td:nth-child(5) { color: var(--money); font-weight: 700; }   /* the prize */
.ledger-table__empty td, .ledger-table__empty td:nth-child(5) { color: var(--dim); font-weight: 400; }
.ledger-table tr.is-new td { animation: flash 2.5s ease-out; }
@keyframes flash { from { background: rgba(124, 242, 156, .14); } }

/* Number chip in pocket colors */
.chip {
  display: inline-grid;
  place-items: center;
  min-width: 2.2rem;
  height: 1.8rem;
  padding: 0 .4rem;
  border-radius: 4px;
  font: 700 .85rem var(--mono);
}
.chip--red { background: var(--ink); color: var(--bg); }
.chip--black { background: var(--bg-deep); color: var(--ink); box-shadow: inset 0 0 0 1px var(--edge); }
.chip--zero { background: var(--money); color: var(--bg); }


/* ---------- 10. Launchpad ---------- */
.launch { display: grid; gap: 3rem; }
.maker { display: grid; gap: 1.6rem; max-width: 40rem; }
.maker__row { display: grid; gap: 1.6rem; }
.field { display: grid; gap: .45rem; }
.field__opt { color: var(--dim); font-weight: 400; margin-left: .35rem; }
.field input[type="text"] {
  width: 100%;
  min-height: 50px;
  padding: 0 1rem;
  border: 1px solid var(--edge);
  border-radius: 10px;
  background: var(--bg-deep);
  color: var(--ink);
  font: 500 1.05rem var(--font);
  transition: border-color .15s;
}
.field--ticker input[type="text"] { font-family: var(--mono); text-transform: uppercase; }
.field input::placeholder { color: #53685C; }
.field input[type="text"]:hover { border-color: var(--muted); }
.field input[type="text"]:focus { outline: none; border-color: var(--money); }
.field input[type="text"]:focus-visible { outline: 2px solid var(--money-lite); outline-offset: 3px; }
.field input[aria-invalid="true"] { border-color: #FF9A9A; }

/* Image picker: a dashed drop area with a round thumbnail */
.dropzone {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 72px;
  padding: .75rem 1rem;
  border: 1px dashed var(--edge);
  border-radius: 10px;
  background: var(--bg-deep);
  cursor: pointer;
  transition: border-color .15s;
}
.dropzone:hover, .dropzone.is-over { border-color: var(--money); }
.dropzone:focus-within { outline: 2px solid var(--money-lite); outline-offset: 3px; }
.dropzone input { position: absolute; inset: 0; opacity: 0; cursor: pointer; }
.dropzone__thumb {
  flex: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--surface) center / cover no-repeat;
  box-shadow: inset 0 0 0 1px var(--edge);
}
.dropzone__text { color: var(--muted); font-size: .95rem; overflow-wrap: anywhere; }

/* Pot size: radio buttons drawn as one joined bar */
.segments { margin: 0; padding: 0; border: 0; min-width: 0; }
.segments legend { padding: 0; margin-bottom: .45rem; }
.segments__bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--edge);
  border-radius: 10px;
  overflow: hidden;
}
.segments label { position: relative; }
.segments label + label { border-left: 1px solid var(--edge); }
.segments input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.segments span { display: grid; place-items: center; min-height: 48px; font: 400 .95rem var(--mono); cursor: pointer; }
.segments input:checked + span { background: var(--money); color: var(--bg); font-weight: 700; }
.segments input:focus-visible + span { outline: 2px solid var(--bg); outline-offset: -5px; }

.maker .btn { justify-self: start; }
.maker__msg { min-height: 1.6em; color: var(--muted); }
.maker__msg.is-ok { color: var(--money); }

.launch__preview {
  display: grid;
  justify-items: center;
  align-content: center;
  gap: .6rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--line);
  text-align: center;
}
.mini-wheel { width: min(300px, 72vw); aspect-ratio: 1; margin-bottom: .75rem; }
.mini-wheel svg { display: block; width: 100%; height: 100%; }
.launch__name { font-size: 1.6rem; font-weight: 800; letter-spacing: -.03em; overflow-wrap: anywhere; }
.launch__meta { font: 400 .9rem var(--mono); color: var(--muted); }
#pv-pot { color: var(--money); }


/* ---------- 11. Footer ---------- */
.footer { padding: 3rem var(--gutter) 2rem; display: grid; gap: 1.75rem; }
.footer__word { display: flex; align-items: center; gap: .12em; font-size: clamp(3rem, 14vw, 11rem); font-weight: 800; line-height: .85; letter-spacing: -.05em; }
.footer__ape { width: .9em; height: .9em; flex: none; }
.footer__row { display: flex; justify-content: space-between; font: 400 .8rem var(--mono); color: var(--muted); }
.footer__row a { color: var(--muted); display: inline-flex; min-height: 44px; align-items: center; }


/* ---------- 12. Admin panel (only built with ?dev=KEY) ---------- */
.admin {
  position: fixed;
  right: max(1rem, env(safe-area-inset-right, 0px));
  bottom: calc(1rem + env(safe-area-inset-bottom, 0px));
  z-index: 60;
  width: min(20rem, calc(100vw - 2rem));
  max-height: calc(100vh - 2rem);
  overflow-y: auto;
  padding: 1rem;
  border-radius: 14px;
  background: var(--surface);
  box-shadow: inset 0 0 0 1px var(--edge);
}
.admin__title { display: flex; justify-content: space-between; align-items: center; margin-bottom: .6rem; font: 500 .8rem var(--font); color: var(--muted); }
.admin__title--sub { margin: .9rem 0 .6rem; padding-top: .8rem; border-top: 1px solid var(--line); }
.admin__toggle { min-height: 44px; margin: -.6rem -.5rem -.6rem 0; padding: 0 .75rem; border: 0; background: none; color: var(--money); font: 700 .8rem var(--font); cursor: pointer; }
.admin__opts { display: grid; grid-template-columns: repeat(3, 1fr); gap: .4rem; }
.admin__opt { min-height: 44px; border: 0; border-radius: 9px; background: var(--bg-deep); box-shadow: inset 0 0 0 1px var(--edge); color: var(--ink); font: 600 .85rem var(--mono); cursor: pointer; }
.admin__opt:hover { box-shadow: inset 0 0 0 1px var(--money); }
.admin__opt[aria-pressed="true"] { background: var(--money); color: var(--bg); box-shadow: none; }
.admin__opt:disabled { opacity: .5; cursor: wait; }
.admin__add { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .1rem; padding: .35rem 0; }
.admin__add span { color: var(--money); }
.admin__add small { font: 500 .62rem var(--font); color: var(--muted); }
.admin__random { width: 100%; margin-top: .4rem; color: var(--money); box-shadow: inset 0 0 0 1px var(--money); }
.admin__custom { display: grid; grid-template-columns: 1fr auto; gap: .4rem; margin-top: .4rem; }
.admin__custom input { min-width: 0; min-height: 44px; padding: 0 .75rem; border: 1px solid var(--edge); border-radius: 9px; background: var(--bg-deep); color: var(--ink); font: 500 .9rem var(--mono); }
.admin__custom .admin__opt { padding: 0 1rem; }
.admin__note { margin-top: .6rem; font-size: .8rem; color: var(--muted); }
.admin__reset { width: 100%; min-height: 44px; margin-top: .75rem; border: 0; border-radius: 9px; background: transparent; box-shadow: inset 0 0 0 1px var(--edge); color: #FF9A9A; font: 700 .85rem var(--font); cursor: pointer; }
.admin__reset.is-armed { background: #FF9A9A; color: var(--bg); }
.admin.is-collapsed { width: auto; padding-block: .6rem; }
.admin.is-collapsed .admin__title:first-child { margin: 0; gap: 1rem; }
.admin.is-collapsed > :not(.admin__title:first-child) { display: none; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }


/* ---------- 13. Bigger screens ---------- */
@media (min-width: 720px) {
  :root { --gutter: 2.5rem; }
  .topbar__nav { display: flex; }
  .stats { grid-template-columns: repeat(4, 1fr); }
  .stats > div { padding: 1.25rem 1.5rem 0; margin-top: 0 !important; border-top: 0 !important; border-left: 1px solid var(--line); }
  .stats > div:first-child { padding-left: 0; border-left: 0; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .steps li:nth-child(even) { padding-left: 1.75rem; border-left: 1px solid var(--line); }
  .maker__row { grid-template-columns: 1fr 1fr; }
  .section { padding-block: 6rem; }
  .table, .table__grid { gap: 4px; }
  .table__zero { width: 4.5rem; font-size: 1.15rem; }
  .table__cell { height: 4rem; font-size: 1.05rem; border-radius: 6px; }
  .section__head--row { grid-template-columns: 1fr auto; }
}

@media (min-width: 1100px) {
  :root { --gutter: 4rem; }

  /* Hero: copy on the left, the whole wheel on the right */
  .hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: center;
  }
  .hero__copy { padding: 4.5rem 0 4.5rem var(--gutter); }
  .hero__wheel { padding: 3.5rem var(--gutter) 3rem 1rem; }
  .wheel { width: min(100%, 40rem); }
  .ticker { grid-column: 1 / -1; }
  .ledger__big { font-size: clamp(3.4rem, 5vw, 5rem); }
  .hero__lede { font-size: 1.15rem; }

  .pot__top { grid-template-columns: 7fr 5fr; align-items: end; }
  .steps { grid-template-columns: repeat(4, 1fr); }
  .steps li { padding: 1.75rem 1.75rem 0; border-bottom: 0; border-left: 1px solid var(--line); }
  .steps li:first-child { padding-left: 0; border-left: 0; }
  .launch { grid-template-columns: 7fr 5fr; gap: 2rem; }
  .launch__preview { border-top: 0; border-left: 1px solid var(--line); padding-top: 0; }
}


/* ---------- 14. Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .wheel__frame { animation: none; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
