/* Blitz — getblitz.xyz
   Type and colour are the app's own (src/bnx/theme.ts): Inter, ink surfaces,
   mint accent, softened long/short greens and reds. */

:root {
  --bg: #0B0D11;
  --app-bg: #181A20;
  --card: #1E2329;
  --input: #2B3139;
  --line: rgba(255,255,255,0.06);
  --line-2: rgba(255,255,255,0.12);
  --text: #EAECEF;
  --sub: #848E9C;
  --muted: #5E6673;
  --mint: #3EFFDC;
  --on-mint: #0B0E14;
  --up: #34A67F;
  --down: #D95062;
  --up-bg: rgba(14,203,129,0.12);
  --down-bg: rgba(246,70,93,0.12);
  --font: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --gutter: clamp(20px, 4vw, 48px);
  --max: 1320px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; background: var(--bg); color: var(--text);
  font-family: var(--font); font-size: 15px; line-height: 1.55;
  font-feature-settings: "tnum" 1, "cv11" 1;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
a:focus-visible, button:focus-visible, input:focus-visible { outline: 1px solid var(--mint); outline-offset: 3px; }
h1, h2, h3 { margin: 0; }
p { margin: 0; }
button { font: inherit; color: inherit; }
.up { color: var(--up); }
.down { color: var(--down); }
.dim { color: var(--muted); }
[hidden] { display: none !important; }

/* ---------- nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 20;
  display: flex; align-items: center; gap: 28px; height: 60px;
  padding: 0 var(--gutter);
  background: rgba(11,13,17,.88); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.brand { display: inline-flex; align-items: center; gap: 9px; font-weight: 700; font-size: 17px; letter-spacing: -.01em; }
.brand .bolt { width: 15px; height: 15px; fill: var(--mint); filter: drop-shadow(0 0 8px rgba(62,255,220,.45)); }
.nav-links { display: flex; gap: 24px; margin-left: auto; font-size: 14px; font-weight: 500; color: var(--sub); }
.nav-links a:hover { color: var(--text); }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  height: 46px; padding: 0 22px; border-radius: 10px;
  font-weight: 600; font-size: 15px; border: 1px solid var(--line-2);
  transition: transform .12s ease, background .12s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-solid { background: var(--mint); color: var(--on-mint); border-color: var(--mint); }
.btn-solid:hover { background: #63FFE4; }
.btn-sm { height: 36px; padding: 0 16px; font-size: 13.5px; border-radius: 8px; }
.nav .btn-sm { margin-left: auto; }

/* ---------- hero ---------- */
.hero {
  max-width: var(--max); margin: 0 auto;
  padding: clamp(40px, 6vw, 80px) var(--gutter) clamp(40px, 6vw, 72px);
  display: grid; grid-template-columns: minmax(0, 1fr) auto; grid-template-rows: auto 1fr; column-gap: clamp(32px, 6vw, 88px); row-gap: 40px; align-items: start;
}
.hero-copy { grid-column: 1; grid-row: 1; }
.hero .hud { grid-column: 1; grid-row: 2; }
.phone-wrap { grid-column: 2; grid-row: 1 / span 2; }
h1 { font-weight: 700; font-size: clamp(44px, 6.4vw, 84px); line-height: .98; letter-spacing: -.035em; }
.lede { margin-top: 22px; font-size: clamp(16px, 1.5vw, 19px); color: var(--sub); max-width: 26em; }
.hero-cta { margin-top: 30px; display: flex; gap: 12px; }

.invite { margin-top: 30px; display: grid; gap: 10px; justify-items: start; }
.invite-label { font-size: 13px; font-weight: 500; color: var(--sub); }
.invite-code {
  display: flex; align-items: baseline; gap: 14px; cursor: pointer;
  background: rgba(62,255,220,.06); border: 1px solid rgba(62,255,220,.4); border-radius: 10px; padding: 12px 20px;
  font-size: 22px; font-weight: 600; letter-spacing: .12em; color: var(--mint);
}
.invite-copy { font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--sub); }
.invite-hint { font-size: 12.5px; color: var(--muted); }

/* live HUD: measured in the visitor's browser */
.hud { max-width: 360px; border: 1px solid var(--line); border-radius: 14px; padding: 14px 16px 12px; background: rgba(255,255,255,.015); }
.hud-row { display: flex; justify-content: space-between; align-items: center; padding: 5px 0; font-size: 13.5px; color: var(--sub); border-bottom: 1px solid var(--line); }
.hud-row:last-of-type { border-bottom: 0; }
.hud-row b { color: var(--text); font-weight: 600; }
.hud-k { color: var(--text); font-weight: 600; }
.hud-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--muted); box-shadow: 0 0 0 0 rgba(62,255,220,.5); }
.hud-dot.live { background: var(--mint); animation: pulse 1.6s ease-out infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(62,255,220,.5); } 100% { box-shadow: 0 0 0 10px rgba(62,255,220,0); } }
.hud-note { margin-top: 10px; font-size: 12.5px; color: var(--muted); }
.hud-note b { color: var(--text); font-weight: 600; }

/* ---------- the phone (the app's Futures tab) ---------- */
.phone-wrap { display: grid; justify-items: center; gap: 14px; }
.phone-cap { font-size: 12.5px; color: var(--muted); text-align: center; max-width: 300px; }
.phone {
  width: 372px; height: 780px;
  background: var(--app-bg); border-radius: 44px;
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 0 0 8px #0F1216, 0 0 0 9px rgba(255,255,255,.06), 0 40px 100px rgba(0,0,0,.65);
  padding: 14px 14px 0; position: relative; overflow: hidden;
  display: flex; flex-direction: column;
  font-size: 12px; line-height: 1.35; color: var(--text); user-select: none;
}
.p-status { display: flex; justify-content: space-between; font-weight: 600; font-size: 13px; padding: 4px 10px 0; }
.p-status-r { font-size: 10px; letter-spacing: .1em; color: var(--sub); }
.p-pair { display: flex; justify-content: space-between; align-items: flex-start; margin: 14px 4px 0; }
.p-pair b { font-size: 15px; font-weight: 700; }
.p-tag { font-size: 9.5px; font-weight: 500; color: var(--sub); background: var(--input); padding: 1px 5px; border-radius: 3px; vertical-align: 2px; }
.p-caret { color: var(--sub); font-size: 10px; }
.p-chg { font-size: 11px; margin-top: 1px; }
.p-pair-r { color: var(--sub); letter-spacing: .2em; font-size: 13px; }

.p-chips { display: grid; grid-template-columns: 1fr 138px; gap: 12px; align-items: center; margin: 10px 4px 0; }
.p-chips-l { display: flex; gap: 6px; }
.chip { flex: 1; text-align: center; background: var(--input); border-radius: 4px; padding: 5px 0; font-size: 11px; font-weight: 500; }
.p-fund { text-align: right; font-size: 9px; color: var(--sub); line-height: 1.3; }
.p-fund b { color: var(--text); font-weight: 500; font-size: 10px; }

.p-body { display: grid; grid-template-columns: 1fr 138px; gap: 12px; margin: 10px 4px 0; }
.p-form { display: grid; gap: 7px; align-content: start; }
.p-select { display: flex; justify-content: space-between; align-items: center; background: var(--input); border-radius: 5px; padding: 8px 10px; font-weight: 500; font-size: 12px; }
.p-amount { display: flex; align-items: center; justify-content: space-between; background: var(--input); border-radius: 5px; padding: 0 10px; height: 34px; }
.p-amount input { width: 60%; background: none; border: 0; color: var(--text); font: inherit; font-weight: 600; font-size: 13px; padding: 0; outline: none; }
.p-amount input:focus, .p-amount input:focus-visible { outline: none; box-shadow: none; }
.p-otype { width: 100%; border: 0; cursor: pointer; text-align: left; }
.p-otype[aria-expanded="true"] { background: #343A44; }
.p-menu { position: absolute; left: 0; right: 0; bottom: 0; z-index: 5; background: var(--card); border-radius: 22px 22px 40px 40px; padding: 16px 18px 26px; box-shadow: 0 -20px 60px rgba(0,0,0,.6); animation: rise .2s ease; }
.p-menu-h { font-weight: 700; font-size: 15px; margin-bottom: 8px; }
.p-menu-i { display: grid; grid-template-columns: 26px 1fr auto; gap: 1px 10px; padding: 10px 0; border-bottom: 1px solid var(--line); }
.p-menu-ic { grid-column: 1; grid-row: 1 / span 2; align-self: center; width: 18px; height: 18px; }
.p-menu-ic svg { width: 18px; height: 18px; }
.p-menu-i b { grid-column: 2; grid-row: 1; font-size: 13px; font-weight: 600; }
.p-menu-i > span:not(.p-menu-ic) { grid-column: 2; grid-row: 2; font-size: 10.5px; color: var(--sub); }
.p-menu-i i { grid-column: 3; grid-row: 1 / span 2; align-self: center; font-style: normal; color: var(--text); font-weight: 700; }
.p-menu-i.on b { color: var(--text); }
.p-menu-i:last-child { border-bottom: 0; }
.p-amount span { font-size: 11px; color: var(--sub); }
.p-slider { width: 100%; height: 18px; margin: 0; accent-color: var(--text); }
.p-kv { display: flex; justify-content: space-between; font-size: 10.5px; color: var(--sub); }
.p-kv b { color: var(--text); font-weight: 500; }
.p-check { display: flex; align-items: center; gap: 6px; font-size: 10.5px; color: var(--sub); }
.p-check .box { width: 11px; height: 11px; border: 1px solid var(--muted); border-radius: 2px; }
.p-buy, .p-sell { border: 0; border-radius: 6px; height: 36px; font-weight: 600; font-size: 13px; color: #fff; cursor: pointer; margin-top: 2px; transition: transform .08s ease, filter .08s ease; }
.p-buy { background: var(--up); }
.p-sell { background: var(--down); }
.p-buy:active, .p-sell:active { transform: scale(.98); filter: brightness(1.1); }
.p-buy[disabled], .p-sell[disabled] { opacity: .55; cursor: default; }

.p-book { font-size: 10.5px; display: grid; align-content: start; gap: 2px; }
.p-book-h { display: flex; justify-content: space-between; color: var(--sub); font-size: 9px; line-height: 1.2; margin-bottom: 4px; }
.p-book-h span:last-child { text-align: right; }
.p-asks, .p-bids { display: grid; gap: 3px; }
.p-asks div, .p-bids div { display: flex; justify-content: space-between; position: relative; padding: 1px 2px; }
.p-asks div::before, .p-bids div::before { content: ""; position: absolute; top: 0; bottom: 0; right: 0; width: var(--w, 0%); border-radius: 2px; }
.p-asks div::before { background: var(--down-bg); }
.p-bids div::before { background: var(--up-bg); }
.p-asks span:first-child { color: var(--down); }
.p-bids span:first-child { color: var(--up); }
.p-asks span, .p-bids span { position: relative; }
.p-mid { text-align: center; padding: 6px 0 5px; }
.p-mid b { display: block; font-size: 15px; font-weight: 600; line-height: 1.1; transition: color .25s ease; }
.p-mid b.upflash { color: var(--up); }
.p-mid b.downflash { color: var(--down); }
.p-mid span { font-size: 9px; color: var(--sub); }
.p-ratio { display: flex; align-items: center; gap: 6px; font-size: 9.5px; margin-top: 4px; }
.p-ratio i { flex: 1; height: 3px; background: var(--down); border-radius: 2px; overflow: hidden; display: block; }
.p-ratio i b { display: block; height: 100%; width: 50%; background: var(--up); }
.p-tick { margin-top: 6px; padding: 5px 8px; font-size: 11px; }

.p-tabs { display: flex; gap: 16px; margin: 14px 4px 0; padding-bottom: 8px; border-bottom: 1px solid var(--line); font-weight: 600; font-size: 12px; color: var(--sub); }
.p-tabs .on { color: var(--text); position: relative; }
.p-tabs .on::after { content: ""; position: absolute; left: 0; right: 0; bottom: -9px; height: 2px; background: var(--mint); border-radius: 1px; }

.p-pos { margin: 10px 4px 0; padding: 10px 10px 8px; border: 1px solid var(--line); border-radius: 8px; background: rgba(255,255,255,.015); animation: rise .28s ease; }
.p-pos-h { font-weight: 700; font-size: 13px; }
.p-pos-g { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 8px 6px; margin-top: 8px; }
.p-pos-g div { display: grid; gap: 2px; font-size: 9.5px; color: var(--sub); }
.p-pos-g div.r { text-align: right; }
.p-pos-g b { color: var(--text); font-weight: 500; font-size: 11px; }
.p-pos-g b.big { font-size: 15px; font-weight: 600; }
.p-pos-g > div:nth-child(1) { grid-column: 1 / span 2; }
.p-pos-btns { display: flex; gap: 6px; margin-top: 10px; }
.p-pos-btns span, .p-pos-btns button { flex: 1; text-align: center; background: var(--input); border: 0; border-radius: 5px; padding: 6px 0; font-size: 11px; font-weight: 500; }
.p-pos-btns button { cursor: pointer; color: var(--text); }
.p-empty { margin: 36px 4px 0; text-align: center; color: var(--sub); font-size: 12px; display: grid; gap: 4px; }
.p-empty-ic { font-size: 30px; color: var(--muted); line-height: 1; margin-bottom: 4px; }
.p-empty b { color: var(--text); font-weight: 600; }
.p-empty small { color: var(--muted); font-size: 11px; }

.p-toast {
  position: absolute; left: 18px; right: 18px; top: 44px;
  background: #22262E; border: 1px solid var(--line-2); border-radius: 10px; padding: 10px 12px;
  font-size: 12px; box-shadow: 0 10px 30px rgba(0,0,0,.5); animation: rise .22s ease;
}
.p-toast b { font-weight: 600; }
.p-toast .t-ms { float: right; color: var(--mint); font-weight: 600; }
.p-toast small { display: block; color: var(--sub); margin-top: 2px; }
@keyframes rise { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

.p-nav { margin-top: auto; display: flex; justify-content: space-around; padding: 10px 6px 20px; border-top: 1px solid var(--line); font-size: 15px; color: var(--sub); }
.p-nav span { display: grid; justify-items: center; gap: 1px; }
.p-nav i { font-style: normal; font-size: 9.5px; }
.p-nav .on { color: var(--text); }

/* ---------- sections ---------- */
.band { max-width: var(--max); margin: 0 auto; padding: clamp(48px, 6vw, 88px) var(--gutter); border-top: 1px solid var(--line); }
h2 { font-weight: 700; font-size: clamp(30px, 4vw, 48px); letter-spacing: -.03em; line-height: 1.05; }

.feats h2 { font-size: clamp(36px, 4.8vw, 60px); font-weight: 600; letter-spacing: -.035em; }
.feats .sub { margin-top: 8px; font-size: clamp(17px, 1.8vw, 22px); color: var(--sub); }
.fgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 44px; }
.fgrid > *, .fcard > *, .fvis > * { min-width: 0; }
.fcard {
  position: relative; aspect-ratio: 1 / 1; overflow: hidden;
  display: flex; flex-direction: column; gap: 10px; padding: 34px 34px 0;
  border-radius: 28px; border: 1px solid rgba(255,255,255,.07);
  background: linear-gradient(180deg, #111318 0%, #0D0F13 100%);
}
.flabel { font-size: 12px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--mint); }
.fcard h3 { font-weight: 500; font-size: clamp(24px, 2.2vw, 30px); letter-spacing: -.025em; line-height: 1.12; }
.fcard h3 span { color: var(--text); }
.fvis { margin-top: auto; display: flex; justify-content: center; align-items: flex-end; }

/* shared excerpt surface: the app's card/sheet colour, with depth */
.x { background: #1E2329; border: 1px solid rgba(255,255,255,.08); box-shadow: 0 24px 60px rgba(0,0,0,.55); }

/* fill receipt (live: updates with the hero's measured fills) */
.fill-card { width: 100%; max-width: 330px; border-radius: 22px 22px 0 0; padding: 20px 22px 26px; background: #1E2329; border: 1px solid rgba(255,255,255,.08); border-bottom: 0; box-shadow: 0 24px 60px rgba(0,0,0,.55); }
.fill-top { display: flex; justify-content: space-between; align-items: baseline; }
.fill-side { color: var(--up); font-weight: 600; font-size: 14px; }
.fill-ms { color: var(--sub); font-size: 13px; }
.fill-ms small { display: block; font-size: 11px; text-align: right; }
.fill-ms b { color: var(--mint); font-size: 28px; font-weight: 700; letter-spacing: -.03em; margin-right: 2px; }
.fill-big { font-size: 34px; font-weight: 600; letter-spacing: -.03em; margin-top: 8px; line-height: 1; }
.fill-sub { color: var(--sub); font-size: 14px; margin-top: 8px; }
.fill-sub span { color: var(--text); }
.fill-foot { display: flex; justify-content: space-between; gap: 10px; margin-top: 18px; padding-top: 12px; border-top: 1px solid var(--line); font-size: 11.5px; color: var(--sub); }

/* order type sheet, cropped at the card's bottom edge */
.sheet { width: 100%; max-width: 330px; border-radius: 22px 22px 0 0; padding: 12px 22px 0; background: #1E2329; border: 1px solid rgba(255,255,255,.08); border-bottom: 0; box-shadow: 0 24px 60px rgba(0,0,0,.55); }
.sheet-bar { width: 36px; height: 4px; border-radius: 2px; background: rgba(255,255,255,.18); margin: 0 auto 12px; }
.sheet-h { font-weight: 700; font-size: 17px; margin-bottom: 4px; }
.sheet-i { display: grid; grid-template-columns: 30px 1fr auto; column-gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--line); }
.sheet-ic { grid-column: 1; grid-row: 1 / span 2; align-self: center; width: 22px; height: 22px; color: var(--text); }
.sheet-ic svg { width: 22px; height: 22px; }
.sheet-i b { grid-column: 2; grid-row: 1; font-size: 15px; font-weight: 600; }
.sheet-i > span:not(.sheet-ic) { grid-column: 2; grid-row: 2; font-size: 12px; color: var(--sub); }
.sheet-i i { grid-column: 3; grid-row: 1 / span 2; align-self: center; font-style: normal; font-weight: 700; }

/* notifications: one large, two stacked behind, one small */
.fv-push { flex-direction: column; align-items: stretch; gap: 12px; padding-bottom: 30px; }
@media (max-width: 640px) { .fv-push { padding-bottom: 26px; } }
.push-stack { position: relative; padding-top: 16px; }
.push { display: grid; grid-template-columns: 38px 1fr; gap: 12px; align-items: start; padding: 13px 14px; border-radius: 20px; background: #262B33; border: 1px solid rgba(255,255,255,.1); box-shadow: 0 18px 40px rgba(0,0,0,.45); }
.push-2, .push-3 { position: absolute; left: 12px; right: 12px; top: 8px; height: 40px; z-index: 0; opacity: .7; }
.push-3 { left: 24px; right: 24px; top: 0; opacity: .4; }
.push-1 { position: relative; z-index: 1; }
.push-ic { width: 38px; height: 38px; border-radius: 10px; background: var(--mint); display: grid; place-items: center; }
.push-ic svg { width: 20px; height: 20px; fill: var(--on-mint); }
.push-t { display: flex; justify-content: space-between; align-items: baseline; }
.push-t b { font-size: 14px; font-weight: 600; }
.push-t span { font-size: 11.5px; color: var(--sub); }
.push p { font-size: 13px; line-height: 1.35; margin-top: 2px; color: var(--text); opacity: .9; }
.push em { font-style: normal; font-weight: 600; }
.push-small { transform: scale(.94); transform-origin: top center; opacity: .8; }

/* withdrawal confirm */
.wd { width: 100%; max-width: 330px; border-radius: 22px 22px 0 0; padding: 18px 22px 0; background: #1E2329; border: 1px solid rgba(255,255,255,.08); border-bottom: 0; box-shadow: 0 24px 60px rgba(0,0,0,.55); }
.wd-h { font-weight: 700; font-size: 15px; }
.wd-amt { font-size: 32px; font-weight: 600; letter-spacing: -.03em; margin: 8px 0 12px; }
.wd-amt small { font-size: 14px; color: var(--sub); font-weight: 500; }
.wd-row { display: flex; justify-content: space-between; padding: 8px 0; border-top: 1px solid var(--line); font-size: 13px; color: var(--sub); }
.wd-row b { color: var(--text); font-weight: 500; }
.wd-slide { display: flex; align-items: center; gap: 12px; margin: 14px -4px 0; padding: 6px; border-radius: 999px; background: var(--input); font-size: 13px; color: var(--sub); }
.wd-knob { width: 40px; height: 40px; border-radius: 50%; background: var(--mint); color: var(--on-mint); display: grid; place-items: center; font-size: 18px; }

/* markets list (live) */
.fv-list { align-items: stretch; }
.mlist { width: 100%; }
.mrow { display: grid; grid-template-columns: 36px 1fr auto; gap: 12px; align-items: center; padding: 11px 0; border-top: 1px solid var(--line); }
.mrow:first-child { border-top: 0; }
.mico { width: 36px; height: 36px; border-radius: 50%; background: var(--input); display: grid; place-items: center; font-size: 11px; font-weight: 700; color: var(--text); }
.mname b { display: block; font-size: 15px; font-weight: 600; }
.mname span { font-size: 11.5px; color: var(--sub); }
.mpx { text-align: right; }
.mpx b { display: block; font-size: 15px; font-weight: 600; }
.mpx span { font-size: 12px; font-weight: 600; }

/* deposit */
.dep { width: 100%; max-width: 330px; border-radius: 22px 22px 0 0; padding: 18px 22px 0; background: #1E2329; border: 1px solid rgba(255,255,255,.08); border-bottom: 0; box-shadow: 0 24px 60px rgba(0,0,0,.55); }
.dep-h { font-weight: 700; font-size: 15px; margin-bottom: 10px; }
.dep-net { display: grid; grid-template-columns: 1fr auto; padding: 12px 14px; border-radius: 12px; border: 1px solid var(--line); margin-bottom: 8px; }
.dep-net.on { border-color: var(--mint); }
.dep-net b { grid-column: 1; grid-row: 1; font-size: 14px; font-weight: 600; }
.dep-net span { grid-column: 1; grid-row: 2; font-size: 12px; color: var(--sub); }
.dep-net i { grid-column: 2; grid-row: 1 / span 2; align-self: center; font-style: normal; color: var(--mint); font-weight: 700; }
.dep-done { display: flex; align-items: center; gap: 10px; margin-top: 12px; padding: 12px 14px 22px; border-top: 1px solid var(--line); font-size: 13px; color: var(--sub); }
.dep-done b { color: var(--up); font-size: 15px; font-weight: 600; }
.dep-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--up); }

.get-sub { margin-top: 14px; color: var(--sub); max-width: 40em; }
.get-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; margin-top: 28px; }
.store { display: inline-grid; grid-template-columns: auto auto; column-gap: 12px; align-items: center; height: 58px; padding: 0 18px; border-radius: 12px; border: 1px solid var(--line-2); background: var(--card); }
.store-k { grid-column: 1; font-size: 10px; letter-spacing: .06em; text-transform: uppercase; color: var(--sub); line-height: 1; }
.store-n { grid-column: 1; font-weight: 600; font-size: 17px; line-height: 1.1; }
.store-soon { grid-column: 2; grid-row: 1 / span 2; font-size: 10px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); border: 1px solid var(--line-2); border-radius: 999px; padding: 4px 8px; }
.store[aria-disabled="true"] { cursor: default; opacity: .7; }
.store.live { opacity: 1; }
.store.live .store-soon { display: none; }
.fees-line { margin-top: 22px; font-size: 13.5px; color: var(--sub); }
.fees-line a { color: var(--mint); }

.foot { max-width: var(--max); margin: 0 auto; padding: 28px var(--gutter) 36px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; font-size: 13px; color: var(--muted); }
.foot-links { display: flex; gap: 18px; }
.foot-links a:hover { color: var(--text); }

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; grid-template-rows: auto auto auto; row-gap: 28px; }
  .hero-copy { grid-row: 1; }
  .phone-wrap { grid-column: 1; grid-row: 2; }
  .hero .hud { grid-row: 3; max-width: none; }
  .fgrid { grid-template-columns: 1fr; }
  /* equal heights: two headline lines reserved, one fixed excerpt window anchored at the bottom */
  .fcard { aspect-ratio: auto; min-height: 0; padding: 26px 26px 0; gap: 8px; }
  .fcard h3 { min-height: 2.24em; }
  .fvis { margin-top: 18px; height: 236px; overflow: hidden; align-items: flex-start; }
  .fv-push, .fv-list { align-items: stretch; justify-content: flex-start; }
  .fill-card, .sheet, .wd, .dep { min-height: 100%; max-width: none; }
}
@media (max-width: 1100px) and (min-width: 641px) { .fgrid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) {
  .nav { gap: 16px; }
  .nav-links { display: none; }
  .nav .btn-sm { margin-left: auto; }
  /* no phone-in-a-phone: the terminal is a full-width card on the same edges as the copy */
  .phone-wrap { justify-items: stretch; }
  .phone { width: 100%; height: auto; border-radius: 16px; border: 1px solid var(--line); box-shadow: none; padding: 12px 12px 0; }
  .p-status, .phone-cap { display: none; }
  .p-pair { margin-top: 4px; }
  .p-nav { margin-top: 16px; padding-bottom: 14px; }
  .p-menu { border-radius: 16px 16px 16px 16px; }
  .foot { flex-direction: column; }
}
@media (prefers-reduced-motion: reduce) {
  .tape-track { animation: none; }
  .hud-dot.live, .p-pos, .p-toast { animation: none; }
  .btn:hover { transform: none; }
}

/* icons */
.coin { width: 28px; height: 28px; border-radius: 50%; vertical-align: -4px; margin-right: 8px; }
.net { width: 20px; height: 20px; border-radius: 50%; vertical-align: -5px; margin-right: 7px; }
.dep-net .net { grid-column: 1; grid-row: 1 / span 2; align-self: center; width: 28px; height: 28px; margin: 0; }
.dep-net { grid-template-columns: 40px 1fr auto; }
.dep-net b, .dep-net span { grid-column: 2; }
.dep-net i { grid-column: 3; }
.wd-knob svg { width: 22px; height: 22px; }
.mico img { width: 36px; height: 36px; border-radius: 50%; display: block; }
.mico { position: relative; overflow: hidden; }
.mico em { position: absolute; inset: 0; display: grid; place-items: center; font-style: normal; z-index: 0; }
.mico img { position: relative; z-index: 1; background: var(--input); }
