/* =========================================================
   CURB FINANCE - design system
   Asphalt and amber. Square edges, chalk rules, dense data.
   Display: Archivo Black. Body: IBM Plex Sans. Data: IBM Plex Mono.
   ========================================================= */

:root {
  --asphalt: #0E1013;
  --panel: #15181D;
  --panel-2: #1B1F26;
  --line: #262B33;
  --line-soft: rgba(237, 234, 227, .08);
  --chalk: #EDEAE3;
  --muted: #9BA3AE;
  --dim: #6B727C;
  --amber: #FFB020;
  --amber-dim: #B87C12;
  --amber-ink: #1A1200;
  --up: #35C27A;
  --down: #FF5C5C;
  --font-display: "Archivo Black", "Arial Black", Impact, sans-serif;
  --font-body: "IBM Plex Sans", "Segoe UI", system-ui, sans-serif;
  --font-mono: "IBM Plex Mono", Consolas, monospace;
  --r: 4px;
  --max: 1280px;
  --hdr: 64px;
  --stripe: repeating-linear-gradient(135deg, var(--amber) 0 10px, #0E1013 10px 20px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; background: var(--asphalt); color: var(--chalk);
  font-family: var(--font-body); font-size: 15px; line-height: 1.55;
  -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
img { max-width: 100%; display: block; }
::selection { background: var(--amber); color: var(--amber-ink); }
:focus-visible { outline: 2px solid var(--amber); outline-offset: 2px; }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 20px; }
.sec { padding: 72px 0; border-top: 1px solid var(--line); }
.sec:first-of-type { border-top: 0; }

/* ---------- Type ---------- */
h1, h2, h3 { font-family: var(--font-display); font-weight: 400; line-height: 1.02; margin: 0; letter-spacing: -.01em; text-wrap: balance; }
h1 { font-size: clamp(34px, 5vw, 62px); text-transform: uppercase; }
h2 { font-size: clamp(24px, 3.2vw, 40px); text-transform: uppercase; }
h3 { font-size: clamp(16px, 1.8vw, 20px); text-transform: uppercase; letter-spacing: .02em; }
p { margin: 0; }
.lede { color: var(--muted); font-size: clamp(15px, 1.4vw, 18px); max-width: 64ch; }
.eyebrow { font-family: var(--font-mono); font-size: 11px; letter-spacing: .24em; text-transform: uppercase; color: var(--amber); }
.mono { font-family: var(--font-mono); }
.muted { color: var(--muted); }
.dim { color: var(--dim); }
.num { font-family: var(--font-mono); font-variant-numeric: tabular-nums; }
.up { color: var(--up); }
.down { color: var(--down); }
.sec-head { display: grid; gap: 12px; margin-bottom: 32px; max-width: 760px; }
.sec-head.row { max-width: none; grid-template-columns: 1fr auto; align-items: end; }
@media (max-width: 700px) { .sec-head.row { grid-template-columns: 1fr; } }

/* curb stripe: the hazard edge of a curbstone */
.stripe { height: 6px; background: var(--stripe); }
.stripe.thin { height: 3px; }

/* ---------- Header ---------- */
.hdr {
  position: sticky; top: 0; z-index: 50; height: var(--hdr);
  display: flex; align-items: center; gap: 24px; padding: 0 20px;
  background: rgba(14,16,19,.92); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.brand { display: flex; align-items: center; gap: 10px; flex: none; }
.brand img { width: 30px; height: 30px; }
.brand b { font-family: var(--font-display); font-size: 16px; letter-spacing: .08em; text-transform: uppercase; }
.brand small { font-family: var(--font-mono); font-size: 9px; letter-spacing: .3em; color: var(--amber); display: block; margin-top: 2px; }
.nav { display: flex; gap: 2px; margin-left: 8px; }
.nav a { padding: 8px 12px; font-size: 13px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--muted); border-bottom: 2px solid transparent; }
.nav a:hover { color: var(--chalk); }
.nav a.on { color: var(--amber); border-color: var(--amber); }
.hdr-right { margin-left: auto; display: flex; gap: 8px; align-items: center; }
.burger { display: none; width: 40px; height: 40px; border: 1px solid var(--line); border-radius: var(--r); }
@media (max-width: 980px) {
  .nav { display: none; }
  .burger { display: grid; place-items: center; }
  .hdr.open .nav { display: grid; position: absolute; top: var(--hdr); left: 0; right: 0; background: var(--panel); border-bottom: 1px solid var(--line); padding: 8px; margin: 0; }
  .hdr.open .nav a { border-bottom: 0; }
  .hdr { gap: 12px; }
}

/* Phones: the header has to fit 375px without sliding sideways. */
@media (max-width: 700px) {
  .hdr { padding: 0 14px; gap: 10px; }
  .brand img { width: 26px; height: 26px; }
  .brand b { font-size: 14px; letter-spacing: .06em; }
  .brand small { font-size: 8px; letter-spacing: .22em; }
  .hdr-right .btn { height: 36px; padding: 0 11px; font-size: 12px; letter-spacing: .04em; }
  .burger { width: 36px; height: 36px; }
}
.nav a.nav-cta { display: none; }
@media (max-width: 480px) {
  /* the amber call to action lives in the menu at this width */
  .hdr-right .btn-amber { display: none; }
  .hdr.open .nav a.nav-cta { display: block; color: var(--amber); font-weight: 700; }
}
html, body { max-width: 100%; overflow-x: hidden; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: 40px; padding: 0 16px; border-radius: var(--r); font-weight: 700; font-size: 13px;
  letter-spacing: .06em; text-transform: uppercase; border: 1px solid transparent; transition: .15s;
  white-space: nowrap;
}
.btn-amber { background: var(--amber); color: var(--amber-ink); }
.btn-amber:hover { background: #ffc451; }
.btn-line { border-color: var(--line); color: var(--chalk); }
.btn-line:hover { border-color: var(--chalk); }
.btn-lg { height: 48px; padding: 0 22px; font-size: 14px; }
.btn-sm { height: 32px; padding: 0 10px; font-size: 12px; }
.btn:disabled { opacity: .4; cursor: not-allowed; }
.btn .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--up); }
.btn .dot.bad { background: var(--amber); }

/* ---------- Surfaces ---------- */
.card { background: var(--panel); border: 1px solid var(--line); border-radius: var(--r); padding: 20px; }
.grid { display: grid; gap: 16px; }
.g2 { grid-template-columns: repeat(2, 1fr); }
.g3 { grid-template-columns: repeat(3, 1fr); }
.g4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) { .g3, .g4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .g2, .g3, .g4 { grid-template-columns: 1fr; } }
.tag { display: inline-flex; align-items: center; gap: 6px; padding: 3px 8px; border: 1px solid var(--line); border-radius: var(--r); font-family: var(--font-mono); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.tag.live { border-color: rgba(53,194,122,.45); color: var(--up); }
.tag.amber { border-color: rgba(255,176,32,.5); color: var(--amber); }

/* ---------- Asset coin ---------- */
.coin { --s: 34px; width: var(--s); height: var(--s); border-radius: 50%; overflow: hidden; flex: none; background: #fff; display: grid; place-items: center; box-shadow: 0 0 0 1px var(--line); }
.coin img { width: 100%; height: 100%; object-fit: cover; }
.coin .fb { font-family: var(--font-display); font-size: calc(var(--s) * .3); }

/* ---------- Hero ---------- */
.hero { padding: 56px 0 40px; position: relative; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 40px; align-items: center; }
@media (max-width: 980px) { .hero-grid { grid-template-columns: 1fr; gap: 28px; } }
.hero h1 { margin: 14px 0 18px; }
.hero h1 .amber { color: var(--amber); }
.hero-cta { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 24px; }
.hero-note { margin-top: 14px; font-family: var(--font-mono); font-size: 12px; color: var(--dim); }
.board { border: 1px solid var(--line); border-radius: var(--r); background: var(--panel); overflow: hidden; }
.board .board-head { display: flex; justify-content: space-between; align-items: center; padding: 10px 14px; border-bottom: 1px solid var(--line); font-family: var(--font-mono); font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--dim); }
.board .row { display: grid; grid-template-columns: auto 1fr auto; gap: 12px; align-items: center; padding: 10px 14px; border-bottom: 1px solid var(--line-soft); }
.board .row:last-child { border-bottom: 0; }
.board .row b { font-family: var(--font-mono); font-size: 13px; font-weight: 600; }
.board .row .n { font-size: 12px; color: var(--dim); }
.board .px { font-family: var(--font-mono); font-variant-numeric: tabular-nums; font-size: 14px; }

/* ---------- Ticker ---------- */
.tape { border-block: 1px solid var(--line); background: var(--panel); overflow: hidden; }
.tape .track { display: flex; width: max-content; animation: tape 90s linear infinite; }
.tape:hover .track { animation-play-state: paused; }
.tape .it { display: flex; align-items: center; gap: 8px; padding: 9px 18px; border-right: 1px solid var(--line-soft); font-family: var(--font-mono); font-size: 12px; }
@keyframes tape { to { transform: translateX(-50%); } }

/* ---------- Vault cards ---------- */
.vault { display: grid; gap: 14px; align-content: start; padding: 18px; border: 1px solid var(--line); border-radius: var(--r); background: var(--panel); transition: border-color .15s; }
.vault:hover { border-color: var(--amber-dim); }
.vault .top { display: flex; justify-content: space-between; align-items: start; gap: 10px; }
.vault h3 { font-size: 19px; }
.vault .sym { font-family: var(--font-mono); font-size: 11px; color: var(--muted); margin-top: 4px; }
.vault .coins { display: flex; }
.vault .coins .coin { --s: 26px; margin-right: -6px; box-shadow: 0 0 0 1px var(--panel); }
.vault .bar { display: flex; height: 6px; border-radius: 2px; overflow: hidden; background: var(--asphalt); }
.vault .bar i { height: 100%; }
.vault p { color: var(--muted); font-size: 13px; }
.vault .nav-line { display: flex; justify-content: space-between; align-items: baseline; border-top: 1px solid var(--line-soft); padding-top: 10px; }
.vault .nav-line .k { font-family: var(--font-mono); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: var(--dim); }
.vault .nav-line .v { font-family: var(--font-mono); font-size: 18px; font-variant-numeric: tabular-nums; }
.vault .foot { display: flex; gap: 8px; }

/* ---------- Tables ---------- */
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--r); }
table.data { width: 100%; border-collapse: collapse; font-size: 13px; }
table.data th, table.data td { text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--line-soft); white-space: nowrap; }
table.data th { font-family: var(--font-mono); font-size: 10px; letter-spacing: .16em; text-transform: uppercase; color: var(--dim); background: var(--panel-2); position: sticky; top: 0; }
table.data tbody tr:hover { background: var(--panel); }
table.data td.num, table.data th.num { text-align: right; font-family: var(--font-mono); font-variant-numeric: tabular-nums; }
table.data .asset { display: flex; align-items: center; gap: 10px; }
table.data .asset .t { font-family: var(--font-mono); font-weight: 600; }
table.data .asset .n { color: var(--dim); font-size: 12px; }
tr.hide { display: none; }

/* ---------- Filters ---------- */
.toolbar { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; margin-bottom: 18px; }
.search { flex: 1 1 240px; display: flex; align-items: center; gap: 8px; height: 40px; padding: 0 12px; border: 1px solid var(--line); border-radius: var(--r); background: var(--panel); }
.search input { flex: 1; min-width: 0; background: none; border: 0; outline: none; color: var(--chalk); font: inherit; }
.chips { display: flex; gap: 6px; flex-wrap: wrap; }
.chip { height: 32px; padding: 0 10px; border: 1px solid var(--line); border-radius: var(--r); font-size: 12px; font-weight: 600; letter-spacing: .04em; color: var(--muted); text-transform: uppercase; }
.chip:hover { color: var(--chalk); }
.chip.on { background: var(--amber); color: var(--amber-ink); border-color: var(--amber); }

/* ---------- App ---------- */
.app { display: grid; grid-template-columns: 280px 1fr; gap: 18px; padding: 28px 0 72px; }
@media (max-width: 980px) { .app { grid-template-columns: 1fr; } }
.side { display: grid; gap: 6px; align-content: start; }
.vbtn { display: grid; grid-template-columns: 1fr auto; gap: 2px 8px; padding: 12px 14px; border: 1px solid var(--line); border-radius: var(--r); background: var(--panel); text-align: left; }
.vbtn b { font-family: var(--font-display); font-size: 13px; letter-spacing: .06em; }
.vbtn span { font-family: var(--font-mono); font-size: 11px; color: var(--dim); }
.vbtn .st { grid-row: span 2; align-self: center; font-family: var(--font-mono); font-size: 10px; letter-spacing: .1em; color: var(--dim); }
.vbtn.on { border-color: var(--amber); }
.vbtn.on b, .vbtn.on .st { color: var(--amber); }
.main { display: grid; gap: 16px; align-content: start; min-width: 0; }
.vhead { display: grid; grid-template-columns: 1fr auto; gap: 16px; align-items: center; }
@media (max-width: 640px) { .vhead { grid-template-columns: 1fr; } }
.donut { width: 112px; height: 112px; border-radius: 50%; position: relative; flex: none; }
.donut::after { content: ""; position: absolute; inset: 24px; border-radius: 50%; background: var(--panel); }
.comps { display: grid; gap: 4px; }
.comprow { display: grid; grid-template-columns: auto 1fr auto auto auto; gap: 10px; align-items: center; padding: 8px 10px; border: 1px solid var(--line-soft); border-radius: var(--r); background: var(--panel-2); font-size: 13px; }
.comprow .w { font-family: var(--font-mono); color: var(--dim); }
.comprow .amt, .comprow .usd { font-family: var(--font-mono); font-variant-numeric: tabular-nums; }
.comprow .usd { color: var(--muted); }
.tabs { display: flex; gap: 4px; border-bottom: 1px solid var(--line); }
.tabs button { padding: 10px 14px; font-weight: 700; font-size: 13px; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); border-bottom: 2px solid transparent; margin-bottom: -1px; }
.tabs button.on { color: var(--amber); border-color: var(--amber); }
.pane { display: none; } .pane.on { display: grid; gap: 14px; }
.field { display: grid; gap: 6px; }
.field label { font-family: var(--font-mono); font-size: 10px; letter-spacing: .16em; text-transform: uppercase; color: var(--dim); }
.field .in { display: flex; align-items: center; gap: 10px; height: 50px; padding: 0 14px; border: 1px solid var(--line); border-radius: var(--r); background: var(--panel-2); }
.field input { flex: 1; min-width: 0; background: none; border: 0; outline: none; color: var(--chalk); font-family: var(--font-mono); font-size: 20px; }
.field .unit { font-family: var(--font-mono); font-size: 12px; color: var(--muted); }
.summary { display: grid; gap: 6px; padding: 12px 14px; border: 1px solid var(--line-soft); border-radius: var(--r); background: var(--panel-2); font-size: 13px; }
.summary div { display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.summary .k { color: var(--muted); }
.summary .v { font-family: var(--font-mono); font-variant-numeric: tabular-nums; text-align: right; }
.status { display: flex; gap: 8px; align-items: center; padding: 10px 12px; border: 1px solid var(--line); border-radius: var(--r); font-size: 12px; color: var(--muted); }
.status.warn { border-color: rgba(255,176,32,.4); color: var(--amber); }
.status.ok { border-color: rgba(53,194,122,.4); color: var(--up); }
.status.err { border-color: rgba(255,92,92,.4); color: var(--down); }
.actions { display: flex; gap: 8px; flex-wrap: wrap; }

/* ---------- Stats ---------- */
.stat { padding: 16px; border: 1px solid var(--line); border-radius: var(--r); background: var(--panel); }
.stat b { display: block; font-family: var(--font-display); font-size: 26px; line-height: 1; margin-bottom: 6px; }
.stat span { font-family: var(--font-mono); font-size: 10px; letter-spacing: .16em; text-transform: uppercase; color: var(--dim); }

/* ---------- Docs ---------- */
.docs { display: grid; grid-template-columns: 220px 1fr; gap: 36px; padding: 32px 0 80px; }
@media (max-width: 980px) { .docs { grid-template-columns: 1fr; } .toc { position: static; display: flex; flex-wrap: wrap; } }
.toc { position: sticky; top: calc(var(--hdr) + 20px); align-self: start; display: grid; gap: 2px; }
.toc a { padding: 6px 10px; font-size: 13px; color: var(--muted); border-left: 2px solid transparent; }
.toc a:hover, .toc a.on { color: var(--chalk); border-color: var(--amber); }
.doc { display: grid; gap: 44px; max-width: 760px; min-width: 0; }
.doc section { display: grid; gap: 14px; scroll-margin-top: calc(var(--hdr) + 16px); }
.doc p, .doc li { color: var(--muted); }
.doc ul, .doc ol { margin: 0; padding-left: 18px; display: grid; gap: 6px; }
.doc code { font-family: var(--font-mono); font-size: 12px; background: var(--panel-2); border: 1px solid var(--line); padding: 1px 5px; border-radius: 3px; }
.faq details { border-bottom: 1px solid var(--line); padding: 12px 0; }
.faq summary { cursor: pointer; font-weight: 700; list-style: none; display: flex; justify-content: space-between; gap: 10px; }
.faq summary::after { content: "+"; color: var(--amber); font-family: var(--font-mono); }
.faq details[open] summary::after { content: "-"; }
.faq p { margin-top: 8px; }

/* ---------- Hook page ---------- */
.fee-meter { display: grid; gap: 10px; padding: 18px; border: 1px solid var(--line); border-radius: var(--r); background: var(--panel); }
.fee-meter .bar { height: 10px; background: var(--panel-2); border-radius: 2px; overflow: hidden; }
.fee-meter .bar i { display: block; height: 100%; background: var(--stripe); }
.fee-meter .scale { display: flex; justify-content: space-between; font-family: var(--font-mono); font-size: 10px; color: var(--dim); }
.step { display: grid; gap: 8px; padding: 18px; border: 1px solid var(--line); border-radius: var(--r); background: var(--panel); align-content: start; }
.step .k { font-family: var(--font-mono); font-size: 10px; letter-spacing: .18em; text-transform: uppercase; color: var(--amber); }
.step p { color: var(--muted); font-size: 13px; }

/* ---------- Risk ---------- */
.risk { border: 1px solid rgba(255,176,32,.35); border-left: 4px solid var(--amber); border-radius: var(--r); background: rgba(255,176,32,.04); padding: 18px 20px; display: grid; gap: 10px; }
.risk h3 { font-size: 13px; color: var(--amber); letter-spacing: .12em; }
.risk p { color: var(--muted); font-size: 13px; }

/* ---------- Footer ---------- */
.ftr { border-top: 1px solid var(--line); background: var(--panel); padding: 40px 0 24px; margin-top: 40px; }
.ftr-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 24px; margin: 24px 0; }
@media (max-width: 980px) { .ftr-grid { grid-template-columns: 1fr 1fr; } }
.ftr h5 { font-family: var(--font-mono); font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: var(--dim); margin: 0 0 10px; }
.ftr a.l { display: block; margin-bottom: 7px; font-size: 13px; color: var(--muted); }
.ftr a.l:hover { color: var(--amber); }
.ftr .fine { font-size: 12px; color: var(--dim); max-width: 52ch; line-height: 1.6; }
.ftr .bottom { display: flex; justify-content: space-between; gap: 10px; flex-wrap: wrap; border-top: 1px solid var(--line); padding-top: 16px; font-family: var(--font-mono); font-size: 11px; color: var(--dim); }

/* ---------- Bits ---------- */
.modal { position: fixed; inset: 0; z-index: 90; display: none; place-items: center; padding: 20px; }
.modal.open { display: grid; }
.modal .bg { position: absolute; inset: 0; background: rgba(5,6,8,.8); }
.modal .box { position: relative; width: min(420px, 100%); background: var(--panel); border: 1px solid var(--line); border-radius: var(--r); padding: 22px; display: grid; gap: 12px; }
.wl { display: grid; gap: 6px; }
.wl a, .wl button { display: flex; justify-content: space-between; padding: 11px 12px; border: 1px solid var(--line); border-radius: var(--r); font-weight: 600; font-size: 13px; }
.wl a:hover, .wl button:hover { border-color: var(--amber); }
.wmenu { position: fixed; top: calc(var(--hdr) - 4px); right: 20px; width: 250px; background: var(--panel); border: 1px solid var(--line); border-radius: var(--r); padding: 6px; display: none; z-index: 60; }
.wmenu.open { display: grid; gap: 2px; }
.wmenu button, .wmenu a { display: flex; justify-content: space-between; padding: 9px 10px; border-radius: 3px; font-size: 12px; font-weight: 600; text-align: left; }
.wmenu button:hover, .wmenu a:hover { background: var(--panel-2); }
.wmenu .net { font-family: var(--font-mono); font-size: 10px; color: var(--dim); padding: 7px 10px; }
.toast { position: fixed; bottom: 20px; left: 50%; transform: translate(-50%, 12px); opacity: 0; padding: 11px 16px; border-radius: var(--r); background: var(--amber); color: var(--amber-ink); font-weight: 700; font-size: 13px; z-index: 100; transition: .2s; pointer-events: none; }
.toast.show { opacity: 1; transform: translateX(-50%); }
.addr { display: flex; gap: 8px; align-items: center; padding: 10px 12px; border: 1px solid var(--line); border-radius: var(--r); background: var(--panel-2); font-family: var(--font-mono); font-size: 12px; overflow: hidden; }
.addr code { flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.page-head { padding: 40px 0 24px; display: grid; gap: 12px; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

/* ---------------- Launch bar ----------------
   Appears the moment $CURB is detected on Pons. Sits at the foot of the screen so it
   never covers the header, and wraps to two rows on a phone. */
.launch-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
  display: flex; flex-wrap: wrap; align-items: center; gap: 10px;
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
  background: #16191F; border-top: 2px solid var(--amber);
  box-shadow: 0 -8px 24px rgba(0, 0, 0, .45);
  animation: launch-rise .35s ease-out both;
}
.launch-bar b { font-family: var(--font-display); font-size: 13px; letter-spacing: .06em; text-transform: uppercase; }
.launch-bar code { font-size: 12px; color: var(--muted); }
.launch-bar .launch-x {
  margin-left: auto; background: none; border: 0; color: var(--dim);
  font-size: 20px; line-height: 1; cursor: pointer; padding: 0 4px;
}
.launch-bar .launch-x:hover { color: var(--chalk); }
.launch-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--amber); flex: none;
  box-shadow: 0 0 0 0 rgba(255, 176, 32, .6); animation: launch-pulse 1.8s infinite;
}
body.has-launch-bar .ftr { padding-bottom: 76px; }
@keyframes launch-rise { from { transform: translateY(100%); } to { transform: none; } }
@keyframes launch-pulse {
  70% { box-shadow: 0 0 0 10px rgba(255, 176, 32, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 176, 32, 0); }
}
@media (max-width: 620px) {
  .launch-bar { gap: 8px; padding: 8px 12px calc(8px + env(safe-area-inset-bottom)); }
  .launch-bar code { flex-basis: 100%; order: 3; }
  .launch-bar .launch-x { order: 2; }
}
