/* SweetHolo marketing site — shared styles. Mirrors the app theme (src/theme/tokens.ts):
   dark canvas, grape accent, and the signature holo gradient. Static, responsive, no backend. */
:root {
  --canvas: #0d0a16;
  --surface: #1a1626;
  --surface2: #221c32;
  --ink: #f2effa;
  --ink-soft: #a8a1be;
  --ink-faint: #6f6886;
  --grape: #8a6cff;
  --grape-deep: #a98cff;
  --grape-wash: #241d3a;
  --mint: #27c98e;
  --line: #272233;
  --line2: #332c45;
  --holo: linear-gradient(118deg, #7c5cfc 0%, #36d1dc 32%, #ff8ad8 64%, #ffd86b 100%);
  --max: 1080px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--canvas);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--grape-deep); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }

.wrap { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 24px; }

/* ── Top nav ─────────────────────────────────────────────── */
header.nav {
  position: sticky; top: 0; z-index: 10;
  background: rgba(13, 10, 22, 0.82);
  backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav .wrap { display: flex; align-items: center; justify-content: space-between; height: 62px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 19px; letter-spacing: -0.02em; color: var(--ink); }
.brand:hover { text-decoration: none; }
.brand .mark { width: 26px; height: 26px; border-radius: 8px; background: var(--holo); }
.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a { color: var(--ink-soft); font-size: 14.5px; font-weight: 600; letter-spacing: 0.01em; }
.nav-links a:hover { color: var(--ink); text-decoration: none; }
.nav-cta {
  position: relative; overflow: hidden; color: #fff !important;
  padding: 9px 20px; border-radius: 999px; font-size: 14px; font-weight: 800; letter-spacing: 0.01em;
  background: linear-gradient(122deg, #3FD3E3 0%, #6E8BF0 22%, #A97CF0 42%, #F58ED0 66%, #FFC178 100%);
  text-shadow: 0 1px 3px rgba(40,20,80,0.45);
  box-shadow: 0 10px 26px -8px rgba(138,108,255,0.85), inset 0 1px 0 rgba(255,255,255,0.4), inset 0 0 0 1px rgba(255,255,255,0.14);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
/* a light sweep that glides across on hover — the "cool" bit */
.nav-cta::after {
  content: ''; position: absolute; top: 0; left: -60%; width: 45%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,0.55), transparent);
  transform: skewX(-18deg); transition: left 0.55s ease; pointer-events: none;
}
.nav-cta:hover {
  text-decoration: none; transform: translateY(-1px);
  box-shadow: 0 12px 30px -6px rgba(124,92,252,0.9), inset 0 0 0 1px rgba(255,255,255,0.3);
}
.nav-cta:hover::after { left: 120%; }
@media (prefers-reduced-motion: reduce) { .nav-cta::after { transition: none; } }
@media (max-width: 620px) { .nav-links a:not(.nav-cta) { display: none; } }

/* ── Hero ────────────────────────────────────────────────── */
.hero { position: relative; overflow: hidden; padding: 84px 0 72px; }
.hero::before {
  content: ''; position: absolute; inset: -40% 0 auto 0; height: 520px;
  background: var(--holo); filter: blur(120px); opacity: 0.22; pointer-events: none;
}
.hero .wrap { position: relative; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: center; }
.eyebrow {
  display: inline-block; font-size: 12.5px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--grape-deep); background: var(--grape-wash); border: 1px solid var(--line2);
  padding: 6px 12px; border-radius: 999px; margin-bottom: 20px;
}
.hero h1 { font-size: clamp(38px, 6vw, 62px); line-height: 1.04; letter-spacing: -0.03em; margin: 0 0 18px; font-weight: 800; text-wrap: balance; }
.hero h1 .holo {
  background: var(--holo); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero p.lede { font-size: clamp(16px, 2.2vw, 19px); color: var(--ink-soft); margin: 0 0 30px; max-width: 34ch; }
.cta-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

/* Store badges — the real black App Store / Google Play look (coming-soon copy until published) */
.store-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: #000; color: #fff; border: 1px solid rgba(255,255,255,0.22);
  padding: 9px 16px; border-radius: 12px; min-width: 172px;
  transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease;
}
.store-btn:hover {
  text-decoration: none; transform: translateY(-2px); border-color: rgba(255,255,255,0.45);
  box-shadow: 0 12px 28px -12px rgba(0,0,0,0.85);
}
.store-btn .sb-logo { width: 26px; height: 26px; flex: none; display: block; }
/* The Apple mark is a solid, optically heavier shape than the Play triangle — size it down a touch
   and nudge it to sit centered so the two badges feel balanced. */
.store-btn .sb-logo.apple { width: 21px; height: 21px; position: relative; top: -1px; }
.store-btn .sb-txt { display: flex; flex-direction: column; line-height: 1.04; text-align: left; }
.store-btn small { font-size: 10px; font-weight: 500; letter-spacing: 0.01em; opacity: 0.9; color: #fff; }
.store-btn b { font-size: 17px; font-weight: 600; letter-spacing: -0.01em; }
.soon { font-size: 13px; color: var(--ink-faint); }

/* ── Phone device ─────────────────────────────────────────── */
.hero-art { position: relative; justify-self: center; display: grid; place-items: center; perspective: 1200px; padding: 8px 0; }
.device-glow { position: absolute; width: 320px; height: 320px; background: var(--holo); filter: blur(92px); opacity: 0.42; border-radius: 50%; animation: halo 9s ease-in-out infinite; }
.device {
  position: relative; width: 266px; aspect-ratio: 9 / 19.3; border-radius: 44px; padding: 10px;
  background: linear-gradient(160deg, #2b2542, #131020);
  box-shadow: 0 44px 90px -30px rgba(124,92,252,0.55), inset 0 0 0 1.5px rgba(255,255,255,0.07), 0 0 0 1px rgba(0,0,0,0.7);
  transform-style: preserve-3d; will-change: transform;
}
.device.sm { width: 244px; }
.island { position: absolute; top: 17px; left: 50%; transform: translateX(-50%); width: 82px; height: 22px; background: #000; border-radius: 14px; z-index: 3; }
.screen {
  position: relative; width: 100%; height: 100%; border-radius: 34px; overflow: hidden;
  background: radial-gradient(120% 78% at 50% -8%, #241d3a 0%, #0c0913 62%);
  display: flex; flex-direction: column;
}
.shot { width: 100%; height: 100%; object-fit: cover; display: block; }
.statusbar { display: flex; justify-content: space-between; align-items: center; padding: 13px 24px 0; font-size: 12px; font-weight: 700; color: var(--ink); }
.sb-r { display: flex; align-items: center; gap: 5px; }
.wifi { width: 15px; height: 11px; background: currentColor; -webkit-mask: radial-gradient(circle at 50% 100%, #000 34%, transparent 36%); mask: radial-gradient(circle at 50% 100%, #000 34%, transparent 36%); opacity: 0.85; }
.batt { width: 22px; height: 11px; border: 1.4px solid var(--ink-soft); border-radius: 3px; position: relative; }
.batt::before { content: ''; position: absolute; inset: 1.5px; width: 62%; background: var(--mint); border-radius: 1px; }
.batt::after { content: ''; position: absolute; right: -3px; top: 3px; width: 2px; height: 4px; background: var(--ink-soft); border-radius: 1px; }

.home-screen { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; padding: 18px; text-align: center; }
.app-mark { border-radius: 24%; box-shadow: 0 12px 32px -8px rgba(124,92,252,0.6); }
.scr-label { font-size: 10.5px; letter-spacing: 0.07em; text-transform: uppercase; color: var(--ink-faint); margin-top: 8px; }
.scr-worth { font-size: 33px; font-weight: 800; letter-spacing: -0.02em; }
.scr-chip { font-size: 11px; font-weight: 700; color: var(--mint); background: #12302a; padding: 4px 11px; border-radius: 999px; }
.mini-spark { width: 72%; height: 3px; margin-top: 12px; border-radius: 3px; background: var(--holo); box-shadow: 0 0 18px 1px rgba(124,92,252,0.55); }

/* Feature phone placeholder screens (swap .ph for <img class="shot">) */
.ph { flex: 1; padding: 16px; display: flex; flex-direction: column; }
.scan-screen { align-items: center; justify-content: center; gap: 18px; }
.scan-screen .vf { position: relative; width: 130px; height: 168px; }
.scan-screen .vf-card { position: absolute; inset: 12px; border-radius: 10px; background: var(--holo); box-shadow: 0 10px 26px -8px rgba(124,92,252,0.6); }
.vf-corner { position: absolute; width: 22px; height: 22px; border: 3px solid var(--grape-deep); }
.vf-corner.tl { top: 0; left: 0; border-right: 0; border-bottom: 0; border-top-left-radius: 7px; }
.vf-corner.tr { top: 0; right: 0; border-left: 0; border-bottom: 0; border-top-right-radius: 7px; }
.vf-corner.bl { bottom: 0; left: 0; border-right: 0; border-top: 0; border-bottom-left-radius: 7px; }
.vf-corner.br { bottom: 0; right: 0; border-left: 0; border-top: 0; border-bottom-right-radius: 7px; }
.scan-chip { font-size: 11.5px; font-weight: 700; color: var(--mint); background: #12302a; padding: 7px 12px; border-radius: 999px; border: 1px solid rgba(39,201,142,0.3); }

.detail-screen { gap: 10px; }
.det-art { height: 118px; border-radius: 12px; background: var(--holo); box-shadow: 0 10px 26px -10px rgba(124,92,252,0.6); }
.det-row { display: flex; align-items: baseline; justify-content: space-between; }
.det-price { font-size: 26px; font-weight: 800; letter-spacing: -0.02em; }
.det-up { font-size: 11px; font-weight: 700; color: var(--mint); }
.detail-screen .spark { width: 100%; height: auto; }
.det-conds { display: flex; gap: 6px; }
.det-conds .c { font-size: 9.5px; font-weight: 700; color: var(--ink-soft); background: var(--surface2); border: 1px solid var(--line2); padding: 4px 7px; border-radius: 7px; }
.det-conds .c.on { color: var(--grape-deep); border-color: var(--grape); background: var(--grape-wash); }

.grid-screen { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.grid-screen .gt { background: var(--surface); border: 1px solid var(--line); border-radius: 10px; padding: 7px; }
.grid-screen .ga { height: 66px; border-radius: 7px; }
.grid-screen b { display: block; font-size: 12px; font-weight: 800; margin-top: 6px; }

.tally-screen { gap: 8px; }
.trow { display: flex; align-items: center; gap: 9px; background: var(--surface); border: 1px solid var(--line); border-radius: 10px; padding: 8px; }
.trow .ta { width: 26px; height: 34px; border-radius: 5px; flex: none; }
.trow .tn { flex: 1; font-size: 11px; color: var(--ink-soft); }
.trow b { font-size: 12.5px; font-weight: 800; }
.tally-total { margin-top: auto; display: flex; justify-content: space-between; align-items: center; padding: 4px 2px; }
.tally-total span { font-size: 11px; color: var(--ink-faint); text-transform: uppercase; letter-spacing: 0.05em; }
.tally-total b { font-size: 20px; font-weight: 800; }
.g1 { background: linear-gradient(135deg,#f0b24a,#ff6a52); } .g2 { background: linear-gradient(135deg,#36d1dc,#8a6cff); }
.g3 { background: linear-gradient(135deg,#ff8ad8,#7c5cfc); } .g4 { background: linear-gradient(135deg,#27c98e,#36d1dc); }

/* Stats band */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin: 8px auto 8px; padding: 22px 24px; border: 1px solid var(--line); border-radius: 18px; background: rgba(26,22,38,0.5); }
.stat { text-align: center; }
.stat b { display: block; font-size: clamp(22px, 3vw, 30px); font-weight: 800; letter-spacing: -0.02em; }
.stat b:not(:empty) { background: var(--holo); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat span { font-size: 12.5px; color: var(--ink-soft); }
@media (max-width: 620px) { .stats { grid-template-columns: 1fr 1fr; row-gap: 20px; } }

@keyframes halo { 0%,100% { transform: scale(1); opacity: 0.4; } 50% { transform: scale(1.08); opacity: 0.58; } }

@media (max-width: 860px) {
  .hero .wrap { grid-template-columns: 1fr; text-align: center; gap: 36px; }
  .hero p.lede { margin-left: auto; margin-right: auto; }
  .cta-row { justify-content: center; }
  .eyebrow { margin-inline: auto; }
}

/* ── Features ────────────────────────────────────────────── */
.section { padding: 64px 0; }
.section h2 { font-size: clamp(26px, 4vw, 36px); letter-spacing: -0.02em; margin: 0 0 10px; text-align: center; text-wrap: balance; }
.section .sub { color: var(--ink-soft); text-align: center; max-width: 52ch; margin: 0 auto 44px; }
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 820px) { .grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .grid { grid-template-columns: 1fr; } }
.card {
  background: var(--surface); border: 1px solid var(--line); border-radius: 18px; padding: 24px;
}
.card .ico {
  width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; margin-bottom: 16px;
  background: var(--grape-wash); border: 1px solid var(--line2);
}
.card .ico svg { width: 22px; height: 22px; color: var(--grape-deep); }
.card h3 { margin: 0 0 6px; font-size: 17px; letter-spacing: -0.01em; }
.card p { margin: 0; color: var(--ink-soft); font-size: 14.5px; }

/* ── CTA band ────────────────────────────────────────────── */
.band { margin: 24px auto 0; }
.band .inner {
  position: relative; overflow: hidden; border-radius: 24px; border: 1px solid var(--line2);
  background: var(--surface); padding: 48px 32px; text-align: center;
}
.band .inner::before { content: ''; position: absolute; inset: 0; background: var(--holo); opacity: 0.1; }
.band h2 { position: relative; margin: 0 0 8px; }
.band p { position: relative; color: var(--ink-soft); margin: 0 0 26px; }
.band .cta-row { position: relative; justify-content: center; }

/* ── Footer ──────────────────────────────────────────────── */
footer.foot { border-top: 1px solid var(--line); padding: 40px 0; margin-top: 24px; }
footer.foot .wrap { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; justify-content: space-between; }
footer.foot .brand { font-size: 16px; }
.foot-links { display: flex; flex-wrap: wrap; gap: 20px; }
.foot-links a { color: var(--ink-soft); font-size: 14px; font-weight: 600; }
.foot-links a:hover { color: var(--ink); text-decoration: none; }
.copy { color: var(--ink-faint); font-size: 13px; width: 100%; margin-top: 8px; }

/* ── Legal / long-form pages ─────────────────────────────── */
.legal { padding: 56px 0 72px; }
.legal .doc { max-width: 760px; margin: 0 auto; }
.legal h1 { font-size: clamp(30px, 5vw, 44px); letter-spacing: -0.025em; margin: 0 0 6px; }
.legal .updated { color: var(--ink-faint); font-size: 14px; margin: 0 0 28px; }
.legal .intro { color: var(--ink-soft); font-size: 16.5px; margin: 0 0 36px; }
.legal h2 { font-size: 20px; letter-spacing: -0.01em; margin: 40px 0 12px; padding-top: 8px; }
.legal p { color: var(--ink-soft); margin: 0 0 14px; }
.legal ul { color: var(--ink-soft); margin: 0 0 14px; padding-left: 22px; }
.legal li { margin: 0 0 8px; }
.legal .other {
  display: inline-block; margin-top: 40px; padding: 12px 20px; border: 1px solid var(--line2);
  border-radius: 12px; background: var(--surface); font-weight: 700;
}
.legal .other:hover { border-color: var(--grape); text-decoration: none; }

/* ── Animated background (dark-matter blobs) ─────────────────────── */
#bg { position: fixed; inset: 0; width: 100%; height: 100%; z-index: 0; pointer-events: none; }
.grain {
  position: fixed; inset: 0; z-index: 0; pointer-events: none; opacity: 0.05; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
/* Content rides above the canvas */
header.nav, main, footer.foot, .band { position: relative; z-index: 1; }
.hero::before { opacity: 0.12; } /* soften — the canvas now carries the glow */

/* Rounded app-icon marks in nav/footer */
.mark-img { border-radius: 8px; box-shadow: 0 0 0 1px rgba(255,255,255,0.06); }
.brand .mark { display: none; }

/* Scroll hint */
.scroll-hint {
  position: absolute; left: 50%; bottom: 22px; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: 11.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-faint);
}
.scroll-hint span { width: 22px; height: 34px; border: 2px solid var(--line2); border-radius: 12px; position: relative; }
.scroll-hint span::after { content: ''; position: absolute; left: 50%; top: 7px; width: 3px; height: 7px; border-radius: 3px; background: var(--grape-deep); transform: translateX(-50%); animation: wheel 1.6s ease-in-out infinite; }
@keyframes wheel { 0% { opacity: 0; transform: translate(-50%, 0); } 40% { opacity: 1; } 100% { opacity: 0; transform: translate(-50%, 10px); } }
@media (max-width: 860px) { .scroll-hint { display: none; } }

/* ── Scroll reveal ───────────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s cubic-bezier(0.22,0.61,0.36,1), transform 0.7s cubic-bezier(0.22,0.61,0.36,1); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } .icon-halo, .scroll-hint span::after { animation: none; } }

/* ── Feature sections ────────────────────────────────────────────── */
.feature { padding: 68px 0; }
.feature-row { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.feature.alt .feature-copy { order: 2; }
.feature.alt .feature-art { order: 1; }
/* Push each phone to the OUTER edge so it mirrors the copy (copy left ↔ phone right,
   and vice-versa on alternating rows) instead of hugging the centre. */
.feature-art { display: flex; justify-content: flex-end; }
.feature.alt .feature-art { justify-content: flex-start; }
.feature-copy { align-self: center; }
.tag {
  display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--grape-deep); margin-bottom: 12px;
}
.feature h2 { font-size: clamp(26px, 3.6vw, 38px); letter-spacing: -0.025em; margin: 0 0 12px; line-height: 1.1; text-wrap: balance; }
.feature p { color: var(--ink-soft); font-size: 16.5px; margin: 0; max-width: 40ch; }
@media (max-width: 780px) {
  .feature-row { grid-template-columns: 1fr; gap: 28px; }
  .feature.alt .feature-copy { order: 0; } .feature.alt .feature-art { order: 0; }
  .feature-art, .feature.alt .feature-art { justify-content: center; }
  .feature p { max-width: none; }
}

/* Real screenshots carry their own status bar + notch, so drop the drawn one. */
.device:has(.shot) .island { display: none; }

/* Shared mock panel */
.mock {
  position: relative; border-radius: 22px; border: 1px solid var(--line2);
  background: linear-gradient(180deg, var(--surface2), var(--surface));
  box-shadow: 0 30px 70px -34px rgba(124,92,252,0.5); padding: 22px; overflow: hidden;
}
.mock::before { content: ''; position: absolute; inset: 0; background: var(--holo); opacity: 0.05; pointer-events: none; }

/* Scan */
.scan-mock { display: grid; place-items: center; gap: 16px; min-height: 260px; }
.vf { position: relative; width: 160px; height: 200px; }
.vf-card { position: absolute; inset: 14px; border-radius: 12px; background: var(--holo); opacity: 0.9; box-shadow: 0 10px 30px -8px rgba(124,92,252,0.6); }
.vf-corner { position: absolute; width: 26px; height: 26px; border: 3px solid var(--grape-deep); }
.vf-corner.tl { top: 0; left: 0; border-right: 0; border-bottom: 0; border-top-left-radius: 8px; }
.vf-corner.tr { top: 0; right: 0; border-left: 0; border-bottom: 0; border-top-right-radius: 8px; }
.vf-corner.bl { bottom: 0; left: 0; border-right: 0; border-top: 0; border-bottom-left-radius: 8px; }
.vf-corner.br { bottom: 0; right: 0; border-left: 0; border-top: 0; border-bottom-right-radius: 8px; }
.scan-chip { font-size: 13px; font-weight: 700; color: var(--mint); background: var(--mint-wash, #12302a); padding: 8px 14px; border-radius: 999px; border: 1px solid rgba(39,201,142,0.3); }

/* Worth */
.worth-mock { min-height: 260px; display: flex; flex-direction: column; }
.worth-top { display: flex; justify-content: space-between; align-items: center; color: var(--ink-soft); font-size: 13.5px; }
.worth-top .up { color: var(--mint); font-weight: 700; }
.worth-big { font-size: 40px; font-weight: 800; letter-spacing: -0.02em; margin: 8px 0 4px; }
.holo { background: var(--holo); -webkit-background-clip: text; background-clip: text; color: transparent; }
.spark { width: 100%; height: auto; margin-top: auto; }

/* Organize grid */
.grid-mock { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; min-height: 260px; }
.grid-mock .tile { background: var(--canvas); border: 1px solid var(--line); border-radius: 12px; padding: 8px; }
.tile-art { height: 88px; border-radius: 8px; }
.tile-p { font-weight: 800; font-size: 14px; margin-top: 8px; }
.g1 { background: linear-gradient(135deg,#f0b24a,#ff6a52); } .g2 { background: linear-gradient(135deg,#36d1dc,#8a6cff); }
.g3 { background: linear-gradient(135deg,#ff8ad8,#7c5cfc); } .g4 { background: linear-gradient(135deg,#27c98e,#36d1dc); }

/* Trade balance */
.trade-mock { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 14px; min-height: 200px; }
.trade-mock .side { text-align: center; }
.trade-mock .side span { display: block; color: var(--ink-soft); font-size: 12.5px; margin-bottom: 6px; }
.trade-mock .side b { font-size: 26px; letter-spacing: -0.02em; }
.trade-mock .bal { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.bal-bar { width: 90px; height: 6px; border-radius: 999px; background: var(--line2); position: relative; }
.bal-bar i { position: absolute; left: 50%; top: 50%; width: 14px; height: 14px; border-radius: 50%; background: var(--holo); transform: translate(-50%,-50%); box-shadow: 0 0 16px 2px rgba(124,92,252,0.6); }
.trade-mock .even { font-size: 12px; font-weight: 700; color: var(--mint); }

/* Band icon */
.band-icon { display: block; margin: 0 auto 16px; border-radius: 22%; position: relative; box-shadow: 0 20px 50px -20px rgba(124,92,252,0.6); }
.band .inner::before { opacity: 0.14; }

/* ── Get the app (coming-soon hub) ───────────────────────────────── */
.get-wrap { max-width: 640px; margin: 0 auto; text-align: center; display: flex; flex-direction: column; align-items: center; padding: 12px 0 24px; }
.get-mark { border-radius: 24%; box-shadow: 0 20px 60px -18px rgba(124,92,252,0.7); margin-bottom: 20px; }
.get-wrap h1 { font-size: clamp(34px, 6vw, 54px); line-height: 1.04; letter-spacing: -0.03em; margin: 14px 0 0; font-weight: 900; text-wrap: balance; }
.get-wrap .lede { margin: 18px auto 0; max-width: 40ch; }
.get-badges { justify-content: center; margin-top: 30px; flex-wrap: wrap; }
.store-btn.is-soon { cursor: default; opacity: 0.94; }
.store-btn.is-soon:hover { transform: none; }
.get-notify { margin-top: 42px; padding-top: 28px; border-top: 1px solid var(--line); width: 100%; max-width: 480px; }
.notify-q { font-size: 16px; font-weight: 700; color: var(--ink); margin: 0 0 14px; }
.notify-btn { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: 15px; color: var(--ink); background: var(--surface); border: 1px solid var(--line2); border-radius: 999px; padding: 12px 22px; transition: border-color .2s ease, transform .2s ease; }
.notify-btn:hover { border-color: var(--grape); transform: translateY(-1px); text-decoration: none; }
.notify-fine { font-size: 12.5px; color: var(--ink-faint); margin: 16px auto 0; max-width: 420px; line-height: 1.5; }
