/* Night Hunt palette from brandkit/palette.json. The brand is dark-only. */
:root {
  --bg: #111210;          /* Midnight Kennel */
  --bg-2: #171916;
  --panel: #1b1d1a;
  --smoke: #2a2c27;       /* Smoke: borders, tracks */
  --bone: #f4f1ea;        /* Bone White */
  --bone-2: #a8a69d;
  --bone-3: #75736b;
  --lime: #ccff00;        /* Scent Lime */
  --lime-dim: rgba(204, 255, 0, 0.12);
  --tan: #d98c55;         /* Warm Tan */
  --tan-dim: rgba(217, 140, 85, 0.14);
  --red: #ff7a5c;
  --red-dim: rgba(255, 122, 92, 0.12);
  --display: 'Fredoka', 'Space Grotesk', system-ui, sans-serif;
  --body: 'Space Grotesk', system-ui, -apple-system, sans-serif;
  --radius: 20px;
  color-scheme: dark;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 120px; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body { margin: 0; background: var(--bg); color: var(--bone); font: 16px/1.6 var(--body); -webkit-font-smoothing: antialiased; overflow-x: hidden; }
a { color: inherit; }
img { max-width: 100%; display: block; }
.wrap { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.muted { color: var(--bone-2); }
.lime { color: var(--lime); }
.num { font-variant-numeric: tabular-nums; }
.skip { position: absolute; left: -9999px; }
.skip:focus { left: 16px; top: 16px; z-index: 50; background: var(--lime); color: var(--bg); padding: 8px 14px; border-radius: 999px; }
:focus-visible { outline: 2px solid var(--lime); outline-offset: 3px; border-radius: 6px; }

/* ---------- Top bar ---------- */
.topbar { position: sticky; top: 0; z-index: 20; background: rgba(17, 18, 16, 0.86); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border-bottom: 1px solid var(--smoke); }
.topbar-row { display: flex; align-items: center; gap: 28px; height: 72px; }
.brand { display: inline-flex; align-items: center; gap: 8px; text-decoration: none; font: 700 28px/1 var(--display); letter-spacing: -0.02em; }
/* The logo PNG sits on Midnight Kennel; "lighten" lets it melt into any darker-or-equal surface. */
.brand img { width: 40px; height: 40px; mix-blend-mode: lighten; }
.nav { display: flex; gap: 2px; }
.nav a { text-decoration: none; padding: 8px 14px; border-radius: 999px; color: var(--bone-2); font-weight: 500; font-size: 15px; transition: color .15s, background .15s; }
.nav a:hover { color: var(--bone); background: var(--panel); }
.nav a[aria-current='page'] { color: var(--bg); background: var(--bone); }
.scent-chip { margin-left: auto; display: inline-flex; align-items: center; gap: 8px; padding: 7px 14px; border: 1.5px solid var(--smoke); border-radius: 999px; font-size: 13px; font-weight: 500; white-space: nowrap; }
.scent-chip i { width: 8px; height: 8px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 10px var(--lime); animation: pulse 2s ease-in-out infinite; }
.scent-chip.dry i { background: var(--tan); box-shadow: 0 0 10px var(--tan); }
.topbar-cta { flex: none; }
.scent-chip[hidden] + .x-link { margin-left: auto; }
/* X profile link: same height as the status pill, lime on hover. */
.x-link { flex: none; display: inline-flex; align-items: center; gap: 8px; padding: 7px 14px; border: 1.5px solid var(--smoke); border-radius: 999px; color: var(--bone); text-decoration: none; font-size: 13px; font-weight: 600; transition: border-color .15s, color .15s; }
.x-link:hover { border-color: var(--lime); color: var(--lime); }
@keyframes pulse { 50% { opacity: .35; } }

/* Watchlist tape */
.tape { overflow: hidden; height: 36px; border-top: 1px solid var(--smoke); background: var(--bg-2); mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }
.tape-track { display: flex; gap: 12px; white-space: nowrap; height: 36px; align-items: center; width: max-content; animation: tape 70s linear infinite; padding-left: 12px; }
.tape-track > a, .tape-track > span { text-decoration: none; font-size: 13px; display: inline-flex; gap: 8px; align-items: center; padding: 3px 10px; border-radius: 999px; }
.tape-track .px { font-variant-numeric: tabular-nums; }
.tape-track .chg { font-variant-numeric: tabular-nums; color: var(--bone-2); }
.tape-track .chg.up { color: var(--lime); }
.tape-track .chg.down { color: var(--red); }
.tape-track .sc { font-size: 11px; font-weight: 700; padding: 1px 7px; border-radius: 999px; border: 1px solid var(--smoke); color: var(--bone-2); }
.tape-track .sc.hot { border-color: rgba(204, 255, 0, .5); color: var(--lime); }
.tape-track > a:hover { background: var(--panel); }
.tape-track b { font-weight: 700; }
.tape-track .hot { color: var(--lime); }
.tape:hover .tape-track { animation-play-state: paused; }
@keyframes tape { to { transform: translateX(-50%); } }

/* ---------- Buttons ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; font: 600 16px/1 var(--body); text-decoration: none; padding: 16px 26px; border-radius: 999px; border: 1.5px solid transparent; cursor: pointer; transition: transform .15s, box-shadow .15s, background .15s; }
.btn:hover { transform: translateY(-1px); }
.btn-lime { background: var(--lime); color: var(--bg); }
.btn-lime:hover { box-shadow: 0 0 0 6px var(--lime-dim), 0 8px 30px rgba(204, 255, 0, .25); }
.btn-ghost { border-color: var(--smoke); color: var(--bone); background: transparent; }
.btn-ghost:hover { border-color: var(--bone-3); }
.btn-sm { padding: 10px 18px; font-size: 14px; }

/* ---------- Landing ---------- */
.eyebrow { font-weight: 600; font-size: 13px; letter-spacing: .18em; text-transform: uppercase; color: var(--lime); margin: 0 0 18px; }
.display { font: 700 clamp(44px, 6.6vw, 84px)/0.98 var(--display); letter-spacing: -0.03em; margin: 0; }
.section-title { font: 700 clamp(34px, 4.4vw, 54px)/1.02 var(--display); letter-spacing: -0.025em; margin: 0 0 16px; }
.section-lede { color: var(--bone-2); font-size: 18px; max-width: 58ch; margin: 0; }
section { padding: 96px 0; }
.section-head { margin-bottom: 48px; }

.hero { position: relative; padding: 56px 0 40px; overflow: hidden; }
.hero::before { content: ''; position: absolute; right: -10%; top: -20%; width: 70%; height: 140%; background: radial-gradient(closest-side, rgba(204, 255, 0, .07), transparent 70%); pointer-events: none; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 24px; align-items: center; position: relative; }
.hero .sub { font: 500 clamp(20px, 2.2vw, 26px)/1.35 var(--body); margin: 28px 0 0; }
.hero .sub span { display: block; }
.hero .lede { color: var(--bone-2); font-size: 17px; max-width: 50ch; margin: 22px 0 34px; }
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
/* Mascot: transparent cutouts and a transparent idle loop, grounded by a glow and a soft shadow. */
.mascot-stage { position: relative; aspect-ratio: 760 / 700; isolation: isolate; }
.mascot-stage::before { content: ''; position: absolute; inset: 8% 10% 14%; z-index: -1; border-radius: 50%; background: radial-gradient(closest-side, rgba(204, 255, 0, .16), rgba(204, 255, 0, .05) 55%, transparent); animation: breathe 5s ease-in-out infinite; }
.mascot-stage::after { content: ''; position: absolute; left: 24%; right: 22%; bottom: 3.5%; height: 7%; z-index: -1; border-radius: 50%; background: radial-gradient(closest-side, rgba(0, 0, 0, .7), transparent); }
.mascot-video { display: block; width: 100%; height: 100%; object-fit: contain; background: transparent; }
@keyframes breathe { 50% { transform: scale(1.06); opacity: .75; } }
@keyframes float { 50% { transform: translateY(-12px) rotate(-1deg); } }
@keyframes hop { 0%, 62%, 100% { transform: translateY(0) scaleY(1); } 70% { transform: translateY(2px) scaleY(.97); } 80% { transform: translateY(-16px) scaleY(1.02); } 90% { transform: translateY(0) scaleY(.99); } }
.hero-note { display: inline-flex; align-items: center; gap: 10px; margin-top: 28px; color: var(--bone-2); font-size: 14px; }
.hero-note .scent-chip { margin: 0; }

/* Stat tiles */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.stat { background: var(--panel); border: 1px solid var(--smoke); border-radius: var(--radius); padding: 20px 22px; }
.stat .label { font-size: 13px; font-weight: 500; color: var(--bone-2); }
.stat .value { font: 700 44px/1.05 var(--display); margin-top: 8px; font-variant-numeric: tabular-nums; }
.stat .sub { font-size: 13px; color: var(--bone-3); margin-top: 2px; }
.stat.accent .value { color: var(--lime); }
.hero-stats { margin-top: 40px; }

/* How it works: numbered cards */
.steps5 { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; counter-reset: step; }
.step { grid-column: span 2; background: var(--panel); border: 1px solid var(--smoke); border-radius: var(--radius); padding: 28px; position: relative; overflow: hidden; transition: border-color .2s, transform .2s; }
.step:nth-child(4), .step:nth-child(5) { grid-column: span 3; }
.step:hover { border-color: rgba(204, 255, 0, .45); transform: translateY(-2px); }
.step .n { font: 700 15px/1 var(--display); color: var(--bg); background: var(--lime); width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center; margin-bottom: 22px; }
.step h3 { font: 600 24px/1.15 var(--display); margin: 0 0 10px; }
.step p { color: var(--bone-2); margin: 0; font-size: 15px; }
.step .tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 18px; }
.tag { font-size: 12px; font-weight: 500; padding: 4px 10px; border-radius: 999px; background: var(--bg-2); border: 1px solid var(--smoke); color: var(--bone-2); }

/* Trail: sniff -> score -> launch */
.trail { display: grid; grid-template-columns: 1fr 1.1fr; gap: 48px; align-items: center; }
.trail-art { position: relative; aspect-ratio: 900 / 833; max-width: 560px; margin: 0 auto; width: 100%; isolation: isolate; }
.trail-art::before { content: ''; position: absolute; inset: 10%; z-index: -1; border-radius: 50%; background: radial-gradient(closest-side, rgba(204, 255, 0, .13), transparent); animation: breathe 4s ease-in-out infinite; }
.trail-art::after { content: ''; position: absolute; left: 50%; right: 8%; bottom: 1%; height: 6%; z-index: -1; border-radius: 50%; background: radial-gradient(closest-side, rgba(0, 0, 0, .75), transparent); }
.trail-art img { width: 100%; height: 100%; object-fit: contain; transform-origin: 70% 100%; animation: hop 4s ease-in-out infinite; }
.trail-list { list-style: none; margin: 32px 0 0; padding: 0; position: relative; }
.trail-list::before { content: ''; position: absolute; left: 21px; top: 22px; bottom: 22px; width: 2px; background: repeating-linear-gradient(to bottom, var(--lime) 0 6px, transparent 6px 12px); opacity: .5; }
.trail-list li { display: grid; grid-template-columns: 44px 1fr; gap: 18px; padding: 14px 0; position: relative; }
.trail-list .dot { width: 44px; height: 44px; border-radius: 50%; background: var(--bg); border: 2px solid var(--lime); display: grid; place-items: center; font: 700 14px var(--display); color: var(--lime); }
.trail-list h3 { font: 600 22px/1.2 var(--display); margin: 8px 0 4px; }
.trail-list p { margin: 0; color: var(--bone-2); font-size: 15px; }

/* Launch rules */
.rules { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.rule { border: 1px dashed var(--smoke); border-radius: var(--radius); padding: 22px; }
.rule b { display: block; font: 600 20px/1.2 var(--display); margin-bottom: 6px; }
.rule span { color: var(--bone-2); font-size: 14px; }
.rule.key { border-style: solid; border-color: rgba(204, 255, 0, .5); background: var(--lime-dim); }
.rule.key b { color: var(--lime); }

/* Preview feed on landing */
.preview { background: var(--bg-2); border-top: 1px solid var(--smoke); border-bottom: 1px solid var(--smoke); }
.preview-head { display: flex; justify-content: space-between; align-items: end; gap: 24px; flex-wrap: wrap; margin-bottom: 28px; }

/* FAQ */
.faq-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 56px; align-items: start; }
.faq-art { position: sticky; top: 120px; margin-top: 12px; max-width: 420px; }
.ask-scene { display: block; width: 100%; height: auto; overflow: visible; }
.ask-scene image { animation: float 5s ease-in-out infinite; transform-box: fill-box; transform-origin: 50% 100%; }
.ask-scene .trail { stroke-dasharray: 1; stroke-dashoffset: 1; animation: draw 5s ease-in-out infinite; }
.ask-scene .t2 { animation-delay: .6s; opacity: .7; }
.ask-scene .dot { animation: pop 5s ease-in-out infinite; transform-box: fill-box; transform-origin: center; }
.ask-scene .b1 { animation: bob 3.2s ease-in-out infinite; }
.ask-scene .b2 { animation: bob 3.8s ease-in-out -1.4s infinite; }
@keyframes draw { 0% { stroke-dashoffset: 1; opacity: 0; } 8% { opacity: 1; } 45%, 75% { stroke-dashoffset: 0; opacity: 1; } 100% { stroke-dashoffset: 0; opacity: 0; } }
@keyframes pop { 0%, 40% { transform: scale(0); } 50%, 75% { transform: scale(1); } 100% { transform: scale(0); } }
@keyframes bob { 50% { transform: translateY(-10px); } }
.faq details { border-bottom: 1px solid var(--smoke); }
.faq details:first-of-type { border-top: 1px solid var(--smoke); }
.faq summary { list-style: none; cursor: pointer; padding: 22px 48px 22px 0; font: 600 20px/1.3 var(--display); position: relative; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; position: absolute; right: 4px; top: 50%; transform: translateY(-50%); width: 32px; height: 32px; border-radius: 50%; border: 1.5px solid var(--smoke); display: grid; place-items: center; font: 500 20px/1 var(--body); color: var(--lime); transition: transform .2s, background .2s; }
.faq details[open] summary::after { content: '–'; background: var(--lime); color: var(--bg); border-color: var(--lime); }
.faq summary:hover { color: var(--lime); }
.faq .answer { padding: 0 48px 24px 0; color: var(--bone-2); }
.faq .answer p { margin: 0 0 10px; }

/* Community CTA */
.cta { position: relative; background: var(--panel); border: 1px solid var(--smoke); border-radius: 32px; padding: 64px; overflow: hidden; display: grid; grid-template-columns: 1.2fr 1fr; gap: 32px; align-items: center; }
.cta::after { content: ''; position: absolute; inset: auto -10% -60% 30%; height: 120%; background: radial-gradient(closest-side, rgba(204, 255, 0, .12), transparent); pointer-events: none; }
.cta blockquote { margin: 0 0 24px; font: 600 clamp(26px, 3vw, 36px)/1.2 var(--display); letter-spacing: -0.015em; }
.cta blockquote cite { display: block; margin-top: 12px; font: 500 15px var(--body); color: var(--bone-2); font-style: normal; }
.cta-art { position: relative; z-index: 1; }
.cta-art.mascot-stage { max-width: 420px; width: 100%; margin-left: auto; }
.cta > div:first-child { position: relative; z-index: 1; }

/* ---------- App pages ---------- */
.page { padding: 40px 0 72px; min-height: 60vh; }
.page-head { display: flex; justify-content: space-between; align-items: end; gap: 20px; flex-wrap: wrap; margin-bottom: 28px; }
.page-head h1 { font: 700 44px/1.05 var(--display); letter-spacing: -0.02em; margin: 0 0 6px; }
.page-head p { margin: 0; color: var(--bone-2); max-width: 62ch; }
h2.block { font: 600 22px/1.2 var(--display); margin: 0 0 16px; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
h2.block a { font: 500 14px var(--body); color: var(--lime); text-decoration: none; }

.dash { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: 24px; margin-top: 24px; align-items: start; }
.side { display: flex; flex-direction: column; gap: 16px; }
.panel { background: var(--panel); border: 1px solid var(--smoke); border-radius: var(--radius); padding: 20px; }
.panel h3 { font: 600 17px/1.2 var(--display); margin: 0 0 14px; display: flex; justify-content: space-between; align-items: baseline; }
.panel h3 small { font: 500 12px var(--body); color: var(--bone-3); }

/* Signal rows */
.rows { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.row { display: grid; grid-template-columns: 110px minmax(0, 1fr) 96px; gap: 18px; align-items: center; padding: 16px 18px; border: 1px solid var(--smoke); border-radius: 16px; background: var(--panel); text-decoration: none; transition: border-color .15s, background .15s; }
.row:hover { border-color: var(--bone-3); background: #1f211d; }
.row .time { color: var(--bone-3); font-size: 13px; margin-top: 6px; }
.headline { font: 500 17px/1.35 var(--body); }
.row .meta { font-size: 13px; color: var(--bone-2); margin-top: 4px; }
.ticker { font-weight: 700; color: var(--bone); }
.sym { color: var(--lime); font-weight: 600; }

.badge { display: inline-flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; padding: 4px 10px; border-radius: 999px; }
.badge::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.badge.launched { background: var(--lime); color: var(--bg); }
.badge.dry_run { background: var(--lime-dim); color: var(--lime); }
.badge.rejected, .badge.failed { background: var(--red-dim); color: var(--red); }
.badge.held, .badge.launching { background: var(--tan-dim); color: var(--tan); }

/* Score meter: the tick marks the launch threshold */
.score { display: flex; flex-direction: column; gap: 6px; align-items: flex-end; }
.score .n { font: 700 26px/1 var(--display); font-variant-numeric: tabular-nums; }
.score.pass .n { color: var(--lime); }
.meter { position: relative; width: 100%; height: 6px; background: var(--smoke); border-radius: 3px; }
.meter > span { position: absolute; inset: 0 auto 0 0; border-radius: 3px; background: var(--bone-3); }
.meter.pass > span { background: var(--lime); box-shadow: 0 0 8px rgba(204, 255, 0, .5); }
.meter > i { position: absolute; top: -3px; bottom: -3px; width: 2px; background: var(--bone); border-radius: 1px; }

.chips { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; }
.chip { font: 500 14px var(--body); padding: 8px 16px; border: 1.5px solid var(--smoke); background: transparent; color: var(--bone-2); border-radius: 999px; cursor: pointer; }
.chip:hover { color: var(--bone); border-color: var(--bone-3); }
.chip[aria-pressed='true'] { background: var(--bone); color: var(--bg); border-color: var(--bone); }

/* Sidebar widgets */
.watch { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.watch a { display: grid; grid-template-columns: 58px 1fr 30px; gap: 10px; align-items: center; text-decoration: none; font-size: 14px; }
.watch a:hover b { color: var(--lime); }
.watch .bar { height: 6px; background: var(--smoke); border-radius: 3px; overflow: hidden; }
.watch .bar span { display: block; height: 100%; background: var(--bone-3); border-radius: 3px; }
.watch .bar.pass span { background: var(--lime); }
.watch em { font-style: normal; text-align: right; font-variant-numeric: tabular-nums; color: var(--bone-2); }
.sources-list { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 6px; }
.split { display: flex; height: 10px; border-radius: 5px; overflow: hidden; background: var(--smoke); margin: 4px 0 12px; }
.split span { display: block; height: 100%; }
.legend { display: flex; flex-direction: column; gap: 6px; font-size: 14px; }
.legend div { display: flex; justify-content: space-between; }
.legend i { display: inline-block; width: 10px; height: 10px; border-radius: 3px; margin-right: 8px; vertical-align: -1px; }

/* Launch cards */
.token { display: flex; gap: 12px; align-items: center; }
.token img { width: 48px; height: 48px; border-radius: 14px; background: var(--bg-2); flex: none; }
.token .sym { font: 700 18px/1.2 var(--display); }
.progress { height: 8px; background: var(--smoke); border-radius: 4px; overflow: hidden; }
.progress > span { display: block; height: 100%; background: var(--lime); min-width: 3px; border-radius: 4px; }
.launch-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 14px; }
.card { border: 1px solid var(--smoke); border-radius: var(--radius); padding: 20px; background: var(--panel); display: flex; flex-direction: column; gap: 14px; transition: border-color .2s; }
.card:hover { border-color: rgba(204, 255, 0, .4); }
.card .headline { font-size: 15px; color: var(--bone-2); }
.card-top { display: flex; justify-content: space-between; align-items: start; gap: 12px; }
.links { display: flex; gap: 16px; font-size: 14px; flex-wrap: wrap; margin-top: auto; }
.links a { color: var(--lime); text-decoration: none; font-weight: 500; }
.links a:hover { text-decoration: underline; }
.small { font-size: 13px; }

.launch-banner { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 24px; border: 1px solid var(--smoke); border-radius: 28px; overflow: hidden; background: #161a1b; margin-bottom: 28px; }
.launch-banner > div { padding: 36px; }
.launch-banner img { width: 100%; max-width: 380px; justify-self: center; aspect-ratio: 900 / 833; object-fit: contain; padding: 16px 0 0; animation: hop 4s ease-in-out infinite; transform-origin: 70% 100%; }

/* Signal detail */
.back { display: inline-flex; gap: 6px; color: var(--bone-2); text-decoration: none; margin-bottom: 20px; font-size: 14px; }
.back:hover { color: var(--lime); }
.detail { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: 40px; }
.detail h1 { font: 700 clamp(30px, 3.6vw, 44px)/1.1 var(--display); letter-spacing: -0.02em; margin: 14px 0 20px; }
.rationale { font-size: 19px; line-height: 1.6; max-width: 62ch; border-left: 3px solid var(--lime); padding-left: 18px; margin: 0 0 36px; }
.verdict { position: sticky; top: 130px; align-self: start; }
.verdict .big { font: 700 84px/1 var(--display); margin: 4px 0 12px; }
.verdict.pass .big { color: var(--lime); text-shadow: 0 0 30px rgba(204, 255, 0, .3); }
.verdict hr { border: 0; border-top: 1px solid var(--smoke); margin: 18px 0; }
.src { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.src li { padding: 14px 16px; border: 1px solid var(--smoke); border-radius: 14px; background: var(--panel); }
.src .pub { font-size: 12px; text-transform: uppercase; letter-spacing: .08em; color: var(--bone-3); margin-bottom: 4px; }
.src a { text-decoration: none; font-weight: 500; }
.src a:hover { color: var(--lime); }

.empty { padding: 40px 24px; color: var(--bone-2); text-align: center; border: 1px dashed var(--smoke); border-radius: var(--radius); }
.skeleton { height: 280px; border-radius: var(--radius); background: linear-gradient(90deg, var(--panel), #20221e, var(--panel)); background-size: 200% 100%; animation: shimmer 1.4s linear infinite; }
@keyframes shimmer { to { background-position: -200% 0; } }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--smoke); padding: 48px 0 40px; margin-top: 24px; }
.footer-grid { display: grid; grid-template-columns: 1fr auto; gap: 24px 48px; }
.footer-tag { color: var(--bone-2); margin: 12px 0 0; }
.footer-links { display: flex; flex-wrap: wrap; gap: 8px 24px; align-content: start; justify-content: end; }
.footer-links a { color: var(--bone-2); text-decoration: none; font-size: 14px; }
.footer-links a:hover { color: var(--lime); }
.disclaimer { grid-column: 1 / -1; color: var(--bone-3); font-size: 12px; max-width: 90ch; margin: 12px 0 0; padding-top: 20px; border-top: 1px solid var(--smoke); }
.socials { display: flex; gap: 8px; margin-top: 16px; }
.socials:empty { display: none; }

@media (prefers-reduced-motion: reduce) {
  .tape-track, .scent-chip i, .skeleton, .mascot-stage::before, .trail-art::before, .trail-art img, .launch-banner img,
  .ask-scene image, .ask-scene .b1, .ask-scene .b2, .ask-scene .dot { animation: none; }
  .ask-scene .trail { animation: none; stroke-dashoffset: 0; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .nav a[href^='/#'] { display: none; }
  .dash, .detail { grid-template-columns: 1fr; }
  .verdict { position: static; }
  .side { display: grid; grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  section { padding: 64px 0; }
  .hero-grid, .trail, .faq-grid, .cta, .launch-banner { grid-template-columns: 1fr; }
  .hero-art { max-width: 520px; margin: 0 auto; order: -1; width: 100%; }
  .hero { padding-top: 12px; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .steps5 { grid-template-columns: 1fr; }
  .step, .step:nth-child(4), .step:nth-child(5) { grid-column: auto; }
  .rules { grid-template-columns: 1fr; }
  .faq-art { position: static; max-width: 320px; }
  .cta { padding: 36px 28px; }
  .cta-art.mascot-stage { margin: 0 auto; max-width: 320px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-links { justify-content: start; }
}
@media (max-width: 720px) {
  .wrap { padding: 0 16px; }
  .topbar-row { height: auto; flex-wrap: wrap; gap: 10px 12px; padding-top: 12px; padding-bottom: 10px; }
  .nav { order: 3; width: 100%; overflow-x: auto; scrollbar-width: none; }
  .nav a[href^='/#'] { display: inline-block; }
  .nav a { white-space: nowrap; padding: 7px 12px; font-size: 14px; }
  .topbar-cta { display: none; }
  .x-link { padding: 7px 10px; }
  .x-link span { display: none; }
  .scent-chip { margin-left: auto; }
  .side { grid-template-columns: 1fr; }
  .row { grid-template-columns: minmax(0, 1fr) 64px; gap: 10px 14px; padding: 14px; }
  .row .left { grid-column: 1 / -1; display: flex; gap: 10px; align-items: center; }
  .row .time { margin: 0; }
  .stat { padding: 16px; }
  .stat .value { font-size: 34px; }
  .page-head h1 { font-size: 36px; }
  .faq summary { font-size: 18px; }
  .faq .answer { padding-right: 0; }
  .launch-banner > div { padding: 24px; }
}

/* Bot stopped: grey, still dot. */
.scent-chip.off { color: var(--bone-2); }
.scent-chip.off i { background: var(--bone-3); box-shadow: none; animation: none; }
