/* ============ PUFF DOG — cinematic ============ */
:root {
  --bg: #07080f;
  --bg-2: #0d0f1a;
  --bg-3: #13162a;
  --line: rgba(255, 255, 255, .1);
  --paper: #f4f1e8;
  --dim: #8b90a8;
  --yellow: #ffd23f;
  --orange: #ff8c1a;
  --ink: #0a0b14;
  --green: #35d07f;
  --red: #ff5c5c;
  --display: 'Anton', Impact, sans-serif;
  --body: 'Inter', system-ui, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, Menlo, monospace;
  --ease: cubic-bezier(.16, 1, .3, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: auto; -webkit-font-smoothing: antialiased; }
html.lenis { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
body { font-family: var(--body); background: var(--bg); color: var(--paper); line-height: 1.6; overflow-x: hidden; }
main { overflow-x: clip; }
img { max-width: 100%; display: block; height: auto; } /* width/height attrs only hint the aspect ratio; never stretch */
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
h1, h2, h3 { font-family: var(--display); font-weight: 400; line-height: .95; letter-spacing: .01em; text-transform: uppercase; }
h3 { font-size: 28px; }
em { font-style: normal; color: var(--yellow); }
strong { color: var(--yellow); font-weight: 600; }
.mono { font-family: var(--mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; font-weight: 500; }
.dim { color: var(--dim); }
.acc { color: var(--yellow); }
.wrap { max-width: 1320px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 56px); }
.sec { padding: clamp(96px, 12vw, 180px) 0; position: relative; }
.label { display: block; color: var(--yellow); margin-bottom: 22px; }
.sec-head { max-width: 900px; margin-bottom: clamp(48px, 6vw, 88px); }
.sec-head p { font-size: 18px; color: var(--dim); max-width: 560px; margin-top: 22px; }
.sec-head.row { display: flex; justify-content: space-between; align-items: flex-end; max-width: none; gap: 24px; flex-wrap: wrap; }
.right { text-align: right; }
.h-xl { font-size: clamp(48px, 7vw, 108px); }
.h-xxl { font-size: clamp(64px, 14vw, 240px); line-height: .92; }

/* text split */
.char { display: inline-block; will-change: transform, opacity; }
.word { display: inline-block; white-space: nowrap; } /* keeps split headlines from breaking mid-word */
.line-mask { display: block; overflow: hidden; }
.line-mask > span { display: block; will-change: transform; }

/* ---------- buttons / pills ---------- */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 13px 22px; border-radius: 999px; border: 1px solid var(--line); transition: background .25s, color .25s, border-color .25s, transform .25s var(--ease); white-space: nowrap; }
.btn:hover { transform: translateY(-2px); }
.btn-solid { background: var(--yellow); color: var(--ink); border-color: var(--yellow); font-weight: 700; }
.btn-solid:hover { background: #fff; border-color: #fff; }
.btn-outline { background: rgba(7, 8, 15, .35); backdrop-filter: blur(8px); color: var(--paper); }
.btn-outline:hover { border-color: var(--paper); }
.pill { display: inline-flex; align-items: center; gap: 8px; padding: 7px 12px; border-radius: 999px; border: 1px solid var(--line); background: rgba(255,255,255,.04); }
.pill .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); box-shadow: 0 0 10px var(--green); animation: blink 2s infinite; }
@keyframes blink { 50% { opacity: .3; } }
.pill b { font-weight: 700; }
.pill b.up { color: var(--green); }
.pill b.down { color: var(--red); }

/* ---------- intro ---------- */
.intro { position: fixed; inset: 0; z-index: 1000; background: var(--yellow); overflow: hidden; display: grid; place-items: center; }
.intro.done { display: none; }
.intro-tiles { position: absolute; inset: 0; }
.intro-tiles img { position: absolute; opacity: 0; object-fit: contain; filter: drop-shadow(0 10px 0 rgba(10,11,20,.12)); }
.intro-word { position: relative; text-align: center; opacity: 0; transform: scale(.85); }
.intro-word img { width: min(70vw, 520px); filter: drop-shadow(0 16px 0 rgba(10,11,20,.18)); }
.intro-word .mono { display: block; margin-top: 18px; color: var(--ink); }
.intro-skip { position: absolute; right: 24px; bottom: 24px; color: var(--ink); border: 1px solid rgba(10,11,20,.4); border-radius: 999px; padding: 9px 14px; background: rgba(255,255,255,.35); }
.intro-skip kbd { font: inherit; opacity: .6; margin-left: 6px; }

/* ---------- nav ---------- */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; display: flex; align-items: center; gap: 24px; padding: 0 clamp(20px, 3vw, 40px); height: 68px; transition: background .4s, border-color .4s; border-bottom: 1px solid transparent; }
.nav.solid { background: rgba(7, 8, 15, .75); backdrop-filter: blur(14px); border-color: var(--line); }
.nav-brand { display: flex; align-items: center; gap: 10px; font-family: var(--display); font-size: 18px; letter-spacing: .04em; }
.nav-brand img { width: 30px; height: 30px; border-radius: 50%; }
.nav-links { display: flex; gap: 26px; margin: 0 auto; }
.nav-links a { color: var(--dim); transition: color .2s; position: relative; }
.nav-links a:hover, .nav-links a.active { color: var(--paper); }
.nav-right { display: flex; align-items: center; gap: 10px; margin-left: auto; }
.nav-buy { padding: 9px 18px; }
.burger { display: none; width: 40px; height: 40px; border: 1px solid var(--line); border-radius: 50%; flex-direction: column; justify-content: center; align-items: center; gap: 5px; }
.burger span { width: 16px; height: 1.5px; background: var(--paper); transition: transform .3s; }
.burger.open span:first-child { transform: translateY(3.25px) rotate(45deg); }
.burger.open span:last-child { transform: translateY(-3.25px) rotate(-45deg); }
@media (max-width: 960px) {
  .nav-links { display: none; position: fixed; top: 68px; left: 0; right: 0; bottom: 0; flex-direction: column; gap: 0; background: var(--bg); padding: 20px; }
  .nav-links.open { display: flex; }
  .nav-links a { font-family: var(--display); font-size: 44px; letter-spacing: 0; padding: 12px 0; border-bottom: 1px solid var(--line); color: var(--paper); }
  .burger { display: flex; }
  #navPrice { display: none; }
}

/* ---------- hero ---------- */
.hero { position: relative; min-height: 100svh; display: flex; flex-direction: column; justify-content: flex-end; overflow: hidden; }
.hero-media { position: absolute; inset: -10% 0 0; z-index: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: 60% 30%; transform: scale(1.08); }
.hero-shade { position: absolute; inset: 0; z-index: 1; background:
  linear-gradient(180deg, rgba(7,8,15,.55) 0%, rgba(7,8,15,0) 30%, rgba(7,8,15,.15) 55%, rgba(7,8,15,.96) 100%),
  linear-gradient(90deg, rgba(7,8,15,.7) 0%, rgba(7,8,15,0) 60%); }
.hero-grain { position: absolute; inset: 0; z-index: 2; pointer-events: none; opacity: .12; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); }
.hero-content { position: relative; z-index: 3; padding: 140px clamp(20px, 4vw, 56px) 40px; max-width: 1100px; }
.eyebrow { display: inline-block; color: var(--yellow); margin-bottom: 20px; }
.hero-title { font-size: clamp(88px, 17vw, 260px); line-height: .82; margin-bottom: 24px; }
.hero-title .line { display: block; }
.hero-title .line-2 { color: transparent; -webkit-text-stroke: 2px var(--paper); }
.hero-title .char { display: inline-block; }
.hero-sub { font-size: clamp(17px, 1.6vw, 21px); max-width: 560px; color: #d7d9e6; margin-bottom: 30px; }
.hero-actions { display: flex; flex-direction: column; gap: 16px; align-items: flex-start; }
.hero-btns { display: flex; gap: 10px; flex-wrap: wrap; }

.ca { display: inline-flex; align-items: center; gap: 12px; padding: 6px 6px 6px 14px; border: 1px solid var(--line); border-radius: 999px; background: rgba(7,8,15,.55); backdrop-filter: blur(10px); max-width: 100%; }
.ca-k { color: var(--yellow); }
.ca-v { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; min-width: 0; letter-spacing: .02em; text-transform: none; }
.ca-copy { background: var(--orange); color: var(--ink); font: inherit; font-weight: 700; padding: 8px 12px; border-radius: 999px; transition: background .2s; flex-shrink: 0; }
.ca-copy:hover { background: var(--yellow); }
.ca-dark { background: var(--bg); width: 100%; }

.hero-foot { position: relative; z-index: 3; display: flex; justify-content: space-between; align-items: center; padding: 0 clamp(20px, 4vw, 56px) 24px; color: var(--dim); }
.scroll-cue { display: inline-flex; align-items: center; gap: 10px; }
.scroll-cue i { width: 1px; height: 36px; background: var(--dim); position: relative; overflow: hidden; }
.scroll-cue i::after { content: ''; position: absolute; left: 0; top: -100%; width: 100%; height: 100%; background: var(--yellow); animation: cue 1.8s infinite; }
@keyframes cue { to { top: 100%; } }
@media (max-width: 760px) {
  .hero-media img { object-position: 62% 40%; }
  .hero-content { padding-top: 110px; }
  .hero-meta { display: none; }
  .ca { width: 100%; }
}

/* ---------- marquee ---------- */
.marquee { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); overflow: hidden; padding: 16px 0; color: var(--dim); background: var(--bg); }
.marquee-drift { will-change: transform; }
.marquee-track { display: flex; gap: 48px; width: max-content; animation: marquee 40s linear infinite; font-size: 12px; }
.marquee-track span { transition: color .3s; }
.marquee:hover .marquee-track span { color: var(--paper); }
.marquee-track span::after { content: '·'; margin-left: 48px; color: var(--yellow); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- lore ---------- */
.lore { background: var(--bg); }
.lore-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(40px, 6vw, 100px); align-items: center; }
.lore-copy p { font-size: 18px; color: #c8cbd9; max-width: 520px; margin-top: 22px; }
.lore-copy .h-xl { margin-bottom: 10px; }
.frame { position: relative; border: 1px solid var(--line); padding: 10px; background: var(--bg-2); }
.frame img { aspect-ratio: 1; object-fit: cover; }
.frame figcaption { position: absolute; left: 20px; bottom: 20px; color: var(--paper); background: rgba(7,8,15,.7); padding: 6px 10px; backdrop-filter: blur(6px); }
@media (max-width: 860px) { .lore-grid { grid-template-columns: 1fr; } }

/* ---------- scene band ---------- */
.scene-band { position: relative; min-height: 80vh; display: flex; align-items: flex-end; overflow: hidden; }
.scene-media { position: absolute; inset: -15% 0; z-index: 0; }
.scene-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; }
.scene-shade { position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, var(--bg) 0%, rgba(7,8,15,.1) 35%, rgba(7,8,15,.2) 65%, var(--bg) 100%); }
.scene-copy { position: relative; z-index: 2; padding-bottom: 60px; width: 100%; }
.scene-copy .mono { color: var(--yellow); margin-top: 14px; }
@media (max-width: 760px) { .scene-band { min-height: 70vh; } .scene-media img { object-position: 50% 30%; } }

/* ---------- laws (yellow) ---------- */
.laws { background: var(--yellow); color: var(--ink); }
.laws .label { color: var(--ink); opacity: .6; }
.laws em { color: var(--ink); }
.law-list { list-style: none; border-top: 1px solid rgba(10,11,20,.25); }
.law { display: grid; grid-template-columns: 90px 1fr 140px; gap: 24px; align-items: center; padding: 34px 0; border-bottom: 1px solid rgba(10,11,20,.25); transition: padding-left .4s var(--ease); }
.law:hover { padding-left: 16px; }
.law-n { font-size: 14px; opacity: .6; }
.law h3 { font-size: clamp(30px, 4vw, 54px); margin-bottom: 8px; }
.law p { font-size: 17px; max-width: 620px; color: rgba(10,11,20,.75); }
.law img { width: 140px; justify-self: end; transition: transform .5s var(--ease); filter: drop-shadow(0 10px 0 rgba(10,11,20,.15)); }
.law:hover img { transform: rotate(-8deg) scale(1.12); }
@media (max-width: 700px) { .law { grid-template-columns: 1fr 90px; } .law-n { grid-column: 1 / -1; } .law img { width: 90px; } }

/* ---------- tape ---------- */
.tape { background: var(--bg-2); border-top: 1px solid var(--line); }
.stats { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); margin-bottom: 40px; }
.stat { padding: 26px 24px; border-right: 1px solid var(--line); display: flex; flex-direction: column; gap: 8px; }
.stat:last-child, .stat:nth-child(4) { border-right: 0; }
.stat .k { color: var(--dim); }
.stat .v { font-family: var(--display); font-size: clamp(30px, 3.4vw, 46px); line-height: 1; }
@media (max-width: 760px) { .stats { grid-template-columns: 1fr 1fr; } .stat:nth-child(2) { border-right: 0; } .stat:nth-child(-n+2) { border-bottom: 1px solid var(--line); } }

.tape-grid { display: grid; grid-template-columns: 420px 1fr; gap: 24px; align-items: start; }
.spec { border: 1px solid var(--line); padding: 8px 24px 24px; background: var(--bg); }
.spec-row { display: flex; justify-content: space-between; align-items: baseline; padding: 14px 0; border-bottom: 1px solid var(--line); }
.spec-row span { color: var(--dim); }
.spec-row b { font-family: var(--display); font-size: 22px; font-weight: 400; letter-spacing: .02em; }
.bar { position: relative; height: 34px; border: 1px solid var(--line); margin: 22px 0; display: flex; }
.bar i { display: block; width: var(--w); background: var(--yellow); }
.bar em { position: absolute; top: 50%; transform: translateY(-50%); font-size: 10px; }
.bar em:first-of-type { left: 12px; color: var(--ink); }
.bar em:last-of-type { right: 12px; color: var(--dim); }
.warn { color: var(--orange); margin-top: 16px; font-size: 10px; line-height: 1.7; }

.chart { border: 1px solid var(--line); background: var(--bg); }
.chart-bar { display: flex; justify-content: space-between; align-items: center; padding: 10px 14px; border-bottom: 1px solid var(--line); }
.chart-tabs { display: flex; gap: 4px; }
.chart-tabs button { font: inherit; letter-spacing: inherit; text-transform: inherit; padding: 7px 12px; border-radius: 999px; color: var(--dim); }
.chart-tabs button.on { background: rgba(255,255,255,.08); color: var(--paper); }
.chart-bar a { color: var(--yellow); }
.chart-frame { position: relative; background: #0b0e1c; }
.chart-frame iframe { width: 100%; height: 520px; border: 0; display: block; }
@media (max-width: 1000px) { .tape-grid { grid-template-columns: 1fr; } .chart-frame iframe { height: 440px; } }

/* ---------- buy ---------- */
.buy { background: var(--bg); }
.steps { list-style: none; display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); }
.step { padding: 32px 26px 30px; border-right: 1px solid var(--line); display: flex; flex-direction: column; gap: 12px; min-height: 300px; transition: background .3s; }
.step:hover { background: var(--bg-2); }
.step:last-child { border-right: 0; }
.step .n { color: var(--yellow); }
.step h3 { font-size: 32px; }
.step p { color: var(--dim); font-size: 15px; flex: 1; }
.step .btn { align-self: flex-start; padding: 10px 16px; }
.risk { margin-top: 24px; color: var(--dim); font-size: 10px; line-height: 1.8; max-width: 900px; }
@media (max-width: 1000px) { .steps { grid-template-columns: 1fr 1fr; } .step:nth-child(2) { border-right: 0; } .step:nth-child(-n+2) { border-bottom: 1px solid var(--line); } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } .step { border-right: 0; border-bottom: 1px solid var(--line); min-height: 0; } .step:last-child { border-bottom: 0; } }

/* ---------- sightings (horizontal scroll) ---------- */
.sightings { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.sight-pin { height: 100vh; display: flex; flex-direction: column; justify-content: center; gap: 30px; overflow: hidden; }
.sight-head { display: flex; align-items: flex-end; gap: 28px; width: 100%; }
.sight-head .label { margin: 0 0 6px; }
.sight-head .h-xl { font-size: clamp(40px, 5vw, 76px); }
.sight-count { margin-left: auto; font-size: 14px; }
.sight-count b { color: var(--yellow); }
.sight-track { display: flex; gap: 24px; padding: 0 clamp(20px, 4vw, 56px); width: max-content; will-change: transform; }
.sight { width: min(62vh, 520px); flex-shrink: 0; }
.sight img { width: 100%; aspect-ratio: 1; object-fit: cover; border: 1px solid var(--line); background: var(--bg); transition: transform .5s var(--ease); }
.sight:hover img { transform: scale(1.02); }
.sight figcaption { margin-top: 12px; color: var(--dim); }
@media (max-width: 760px) {
  .sight-pin { height: auto; padding: 80px 0; overflow: visible; }
  .sight-track { overflow-x: auto; width: auto; scroll-snap-type: x mandatory; padding-bottom: 8px; -webkit-overflow-scrolling: touch; }
  .sight { width: 78vw; scroll-snap-align: start; }
  .sight-head { flex-wrap: wrap; }
}

/* ---------- moods ---------- */
.moods { background: var(--bg); }
.mood-row { display: flex; justify-content: space-between; align-items: flex-end; gap: 8px; flex-wrap: wrap; border-top: 1px solid var(--line); padding-top: 40px; }
.mood-row img { height: 140px; width: auto; transition: transform .5s var(--ease); filter: drop-shadow(0 0 0 transparent); }
.mood-row img:hover { transform: translateY(-14px) rotate(-6deg) scale(1.15); filter: drop-shadow(0 20px 30px rgba(255,210,63,.25)); }
@media (max-width: 760px) { .mood-row { justify-content: center; } .mood-row img { height: 90px; } }

/* ---------- universe ---------- */
.universe { background: var(--bg-2); border-top: 1px solid var(--line); }
.uni-banner { border: 1px solid var(--line); overflow: hidden; margin-bottom: 24px; }
.uni-banner img { width: 100%; }
.uni-grid { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--line); }
.uni { padding: 28px 26px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); display: flex; flex-direction: column; gap: 10px; transition: background .3s; background: var(--bg); }
.uni:nth-child(3n) { border-right: 0; }
.uni:nth-last-child(-n+3) { border-bottom: 0; }
.uni:hover { background: var(--yellow); color: var(--ink); }
.uni:hover .go, .uni:hover p, .uni:hover > .mono { color: var(--ink); }
.uni > .mono { color: var(--dim); }
.uni h3 { font-size: 32px; }
.uni p { color: var(--dim); font-size: 15px; flex: 1; }
.uni .go { color: var(--yellow); margin-top: 10px; }
@media (max-width: 900px) { .uni-grid { grid-template-columns: 1fr 1fr; } .uni:nth-child(3n) { border-right: 1px solid var(--line); } .uni:nth-child(2n) { border-right: 0; } .uni:nth-last-child(-n+3) { border-bottom: 1px solid var(--line); } .uni:nth-last-child(-n+2) { border-bottom: 0; } }
@media (max-width: 560px) { .uni-grid { grid-template-columns: 1fr; } .uni { border-right: 0 !important; border-bottom: 1px solid var(--line) !important; } .uni:last-child { border-bottom: 0 !important; } }

/* ---------- faq ---------- */
.faq { background: var(--bg); }
.faq-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; }
.faq-grid .sec-head { margin-bottom: 0; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { list-style: none; cursor: pointer; padding: 22px 50px 22px 0; font-family: var(--display); font-size: clamp(20px, 2.2vw, 28px); text-transform: uppercase; position: relative; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: '+'; position: absolute; right: 4px; top: 50%; transform: translateY(-50%); color: var(--yellow); font-size: 28px; transition: transform .3s; }
.faq-list details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-list p { padding: 0 0 24px; color: #c8cbd9; max-width: 640px; }
@media (max-width: 860px) { .faq-grid { grid-template-columns: 1fr; gap: 30px; } }

/* ---------- join (yellow) ---------- */
.join { background: var(--yellow); color: var(--ink); overflow: hidden; }
.join .label { color: var(--ink); opacity: .6; }
.join .wrap { position: relative; z-index: 1; }
.join .mono { color: var(--ink); }
.join .h-xxl { margin-bottom: 20px; }
.join-mascot { position: absolute; right: -4%; bottom: -12%; width: clamp(280px, 38vw, 620px); opacity: .95; filter: drop-shadow(0 20px 0 rgba(10,11,20,.15)); pointer-events: none; }
.social-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 36px; max-width: 760px; }
.social-row a { border: 1px solid rgba(10,11,20,.5); padding: 12px 18px; border-radius: 999px; transition: background .25s, color .25s; }
.social-row a:hover { background: var(--ink); color: var(--yellow); }
@media (max-width: 760px) { .join-mascot { width: 260px; right: -60px; bottom: -40px; opacity: .5; } }

/* ---------- footer ---------- */
.footer { background: var(--bg); color: var(--dim); padding: 60px 0 30px; border-top: 1px solid var(--line); }
.foot-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 40px; margin-bottom: 44px; }
.foot-grid p { margin-top: 14px; }
.foot-col { display: flex; flex-direction: column; gap: 12px; }
.foot-col a:hover { color: var(--yellow); }
.foot-legal { border-top: 1px solid var(--line); padding-top: 22px; font-size: 10px; line-height: 1.8; }
.foot-legal p + p { margin-top: 10px; }
@media (max-width: 760px) { .foot-grid { grid-template-columns: 1fr; gap: 24px; } }

/* ---------- toast ---------- */
.toast { position: fixed; bottom: 26px; left: 50%; transform: translate(-50%, 80px); background: var(--yellow); color: var(--ink); padding: 12px 20px; border-radius: 999px; transition: transform .4s var(--ease); z-index: 500; pointer-events: none; font-weight: 700; }
.toast.show { transform: translate(-50%, 0); }

/* ---------- reveal defaults (JS animates) ---------- */
[data-fade] { opacity: 0; transform: translateY(24px); }
.no-js [data-fade], .reduced [data-fade] { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  [data-fade] { opacity: 1; transform: none; }
  .marquee-track, .scroll-cue i::after, .pill .dot { animation: none; }
}

/* ---------- sticker press (meme generator) ---------- */
.press { background: var(--bg-2); border-top: 1px solid var(--line); }
.press-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; border: 1px solid var(--line); background: var(--bg); }
.press-controls { padding: 28px; display: flex; flex-direction: column; gap: 22px; border-right: 1px solid var(--line); }
.ctrl { display: flex; flex-direction: column; gap: 10px; }
.ctrl > .mono { color: var(--dim); }
.mood-pick { display: grid; grid-template-columns: repeat(8, minmax(0, 1fr)); gap: 6px; }
.mood-pick button { min-width: 0; border: 1px solid var(--line); padding: 6px; background: var(--bg-2); transition: border-color .2s, background .2s; aspect-ratio: 1; display: grid; place-items: center; }
.mood-pick button img { width: 100%; height: 100%; object-fit: contain; }
.mood-pick button.on, .mood-pick button:hover { border-color: var(--yellow); background: rgba(255,210,63,.1); }
.bg-pick { display: flex; gap: 8px; }
.bg-pick button { width: 44px; height: 44px; border: 2px solid var(--line); border-radius: 50%; transition: border-color .2s, transform .2s; }
.bg-pick button.on { border-color: var(--yellow); transform: scale(1.1); }
.press-input { width: 100%; background: var(--bg-2); border: 1px solid var(--line); color: var(--paper); font-family: var(--display); font-size: 26px; text-transform: uppercase; padding: 12px 14px; letter-spacing: .02em; outline: none; transition: border-color .2s; }
.press-input:focus { border-color: var(--yellow); }
.press-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 6px; }
.press-note { font-size: 10px; }
.press-preview { position: relative; padding: 28px; display: grid; place-items: center; background: var(--bg-2); }
.press-preview canvas { width: 100%; max-width: 520px; height: auto; aspect-ratio: 1; border: 1px solid var(--line); background: #000; }
.press-stamp { position: absolute; right: 28px; bottom: 12px; color: var(--dim); font-size: 9px; }
@media (max-width: 960px) { .press-grid { grid-template-columns: 1fr; } .press-controls { border-right: 0; border-bottom: 1px solid var(--line); } .mood-pick { grid-template-columns: repeat(4, minmax(0, 1fr)); } }

/* ---------- the wall ---------- */
.wall { background: var(--bg); }
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--line); }
.q { padding: 34px 30px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); display: flex; flex-direction: column; gap: 18px; transition: background .3s; }
.q:nth-child(3n) { border-right: 0; }
.q:nth-last-child(-n+3) { border-bottom: 0; }
.q:hover { background: var(--bg-2); }
.q p { font-family: var(--display); font-size: clamp(22px, 2.2vw, 30px); line-height: 1.1; text-transform: uppercase; flex: 1; }
.q footer { color: var(--yellow); }
@media (max-width: 900px) { .quotes { grid-template-columns: 1fr 1fr; } .q:nth-child(3n) { border-right: 1px solid var(--line); } .q:nth-child(2n) { border-right: 0; } .q:nth-last-child(-n+3) { border-bottom: 1px solid var(--line); } .q:nth-last-child(-n+2) { border-bottom: 0; } }
@media (max-width: 560px) { .quotes { grid-template-columns: 1fr; } .q { border-right: 0 !important; border-bottom: 1px solid var(--line) !important; } .q:last-child { border-bottom: 0 !important; } }

/* ---------- chill-o-meter ---------- */
.chill { margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--line); display: flex; flex-direction: column; gap: 8px; }
.chill-head { display: flex; justify-content: space-between; color: var(--dim); }
.chill-head span:last-child { color: var(--green); }
.chill-bar { height: 8px; border: 1px solid var(--line); overflow: hidden; }
.chill-bar i { display: block; height: 100%; width: 100%; background: linear-gradient(90deg, var(--yellow), var(--green)); transform-origin: left; animation: chillpulse 3s ease-in-out infinite; }
@keyframes chillpulse { 50% { opacity: .75; } }
.chill p { font-size: 10px; }

/* ---------- geo gate ---------- */
.geo-note { border: 1px solid var(--orange); padding: 22px 24px; display: flex; flex-direction: column; gap: 8px; max-width: 760px; }
.geo-note .mono { color: var(--orange); }
.geo-note p { color: #c8cbd9; font-size: 15px; }
html.geo-restricted .buy-only { display: none !important; }
html.geo-restricted .geo-note { display: flex; }
.geo-note[hidden] { display: none; }

/* ---------- audio toggle ---------- */
.audio-toggle { position: fixed; right: 20px; bottom: 20px; z-index: 400; display: inline-flex; align-items: center; gap: 10px; padding: 10px 14px; border-radius: 999px; border: 1px solid var(--line); background: rgba(7,8,15,.7); backdrop-filter: blur(10px); color: var(--dim); transition: color .2s, border-color .2s; }
.audio-toggle:hover { color: var(--paper); border-color: var(--paper); }
.audio-toggle[aria-pressed="true"] { color: var(--yellow); border-color: var(--yellow); }
.eq { display: inline-flex; align-items: flex-end; gap: 2px; height: 12px; }
.eq b { width: 2px; height: 4px; background: currentColor; }
.audio-toggle[aria-pressed="true"] .eq b { animation: eq .8s ease-in-out infinite; }
.audio-toggle[aria-pressed="true"] .eq b:nth-child(2) { animation-delay: -.25s; }
.audio-toggle[aria-pressed="true"] .eq b:nth-child(3) { animation-delay: -.5s; }
@keyframes eq { 50% { height: 12px; } }
@media (max-width: 760px) { .audio-toggle { bottom: 14px; right: 14px; padding: 9px 12px; } }

/* ---------- cursor smoke + sticker rain ---------- */
.smoke { position: fixed; inset: 0; width: 100vw; height: 100vh; z-index: 300; pointer-events: none; mix-blend-mode: screen; }
@media (pointer: coarse) { .smoke { display: none; } }
.rain { position: fixed; inset: 0; z-index: 350; pointer-events: none; overflow: hidden; }
.rain img { position: absolute; top: -140px; width: 90px; animation: fall linear forwards; }
@keyframes fall { to { transform: translateY(120vh) rotate(var(--r, 360deg)); } }

/* ---------- custom cursor ---------- */
@media (pointer: fine) {
  html.has-cursor, html.has-cursor a, html.has-cursor button, html.has-cursor input, html.has-cursor summary, html.has-cursor canvas, html.has-cursor label, html.has-cursor * { cursor: none !important; }
  .cur { position: fixed; left: 0; top: 0; z-index: 1200; pointer-events: none; opacity: 0; transition: opacity .3s; }
  html.has-cursor .cur { opacity: 1; }
  .cur-dot { position: absolute; left: 0; top: 0; width: 8px; height: 8px; margin: -4px 0 0 -4px; border-radius: 50%; background: var(--yellow); box-shadow: 0 0 12px rgba(255,210,63,.8); transition: transform .2s var(--ease), background .2s; }
  .cur-ring { position: absolute; left: 0; top: 0; width: 38px; height: 38px; margin: -19px 0 0 -19px; border-radius: 50%; border: 1.5px solid var(--yellow); display: grid; place-items: center; transition: width .35s var(--ease), height .35s var(--ease), margin .35s var(--ease), background .3s, border-color .3s, opacity .3s; mix-blend-mode: difference; }
  .cur-label { color: var(--ink); font-size: 9px; letter-spacing: .12em; opacity: 0; transition: opacity .2s; white-space: nowrap; }
  /* hovering links/buttons */
  .cur.is-link .cur-ring { width: 56px; height: 56px; margin: -28px 0 0 -28px; background: rgba(255,210,63,.22); border-color: transparent; }
  .cur.is-link .cur-dot { transform: scale(.5); }
  /* labelled targets (data-cursor="VIEW") */
  .cur.is-label .cur-ring { width: 84px; height: 84px; margin: -42px 0 0 -42px; background: var(--yellow); border-color: var(--yellow); mix-blend-mode: normal; }
  .cur.is-label .cur-label { opacity: 1; }
  .cur.is-label .cur-dot { transform: scale(0); }
  /* text inputs */
  .cur.is-text .cur-ring { width: 3px; height: 28px; margin: -14px 0 0 -1.5px; border-radius: 2px; background: var(--yellow); border-color: transparent; }
  .cur.is-text .cur-dot { transform: scale(0); }
  /* pressed */
  .cur.is-down .cur-ring { transform: scale(.85); }
  /* over yellow sections the ring inverts via difference; dot goes ink */
  .cur.on-yellow .cur-dot { background: var(--ink); box-shadow: none; }
}

/* ============ POLISH PASS ============ */
::selection { background: var(--yellow); color: var(--ink); }
html { scrollbar-color: #2a2f4a var(--bg); }
::-webkit-scrollbar { width: 10px; } ::-webkit-scrollbar-track { background: var(--bg); } ::-webkit-scrollbar-thumb { background: #2a2f4a; border-radius: 10px; border: 2px solid var(--bg); }
::-webkit-scrollbar-thumb:hover { background: var(--yellow); }

/* keyboard focus (cursor is hidden, so this matters) */
:focus-visible { outline: 2px solid var(--yellow); outline-offset: 3px; border-radius: 4px; }
.btn:focus-visible, .pill:focus-visible, .ca-copy:focus-visible { outline-offset: 2px; }

/* skip link */
.skip { position: fixed; top: 10px; left: 10px; z-index: 2000; background: var(--yellow); color: var(--ink); padding: 10px 14px; border-radius: 999px; transform: translateY(-200%); transition: transform .2s; }
.skip:focus { transform: none; }

/* scroll progress */
.progress { position: fixed; top: 0; left: 0; right: 0; height: 2px; z-index: 150; background: transparent; pointer-events: none; }
.progress i { display: block; height: 100%; width: 100%; background: linear-gradient(90deg, var(--yellow), var(--orange)); transform: scaleX(0); transform-origin: left; }

/* nav price pill hover */
a.pill:hover { border-color: var(--yellow); }
.menu-extra { display: none; }
@media (max-width: 960px) {
  .menu-extra { display: flex; flex-direction: column; gap: 16px; margin-top: auto; padding-top: 20px; }
  .menu-socials { display: flex; flex-wrap: wrap; gap: 8px; }
  .menu-socials a { font-family: var(--mono); font-size: 11px; letter-spacing: .14em; padding: 10px 14px; border: 1px solid var(--line); border-radius: 999px; }
  .nav-links a { border-bottom: 1px solid var(--line); }
  .nav-links .menu-socials a { border-bottom: 1px solid var(--line); font-family: var(--mono); font-size: 11px; padding: 10px 14px; }
}

/* hero trust row */
.trust { display: flex; flex-wrap: wrap; align-items: center; gap: 6px 14px; color: var(--dim); }
.trust a { color: var(--paper); border-bottom: 1px solid var(--line); padding-bottom: 2px; transition: color .2s, border-color .2s; }
.trust a:hover { color: var(--yellow); border-color: var(--yellow); }

/* marquee pause */
.marquee:hover .marquee-track { animation-play-state: paused; }

/* sparkline */
.stats { grid-template-columns: repeat(4, 1fr); }
.stat.spark { grid-column: 1 / -1; border-right: 0; border-top: 1px solid var(--line); padding: 18px 24px 14px; }
.stat.spark .k b { color: var(--paper); font-weight: 500; }
.stat.spark canvas { width: 100%; height: 80px; display: block; }
@media (max-width: 760px) { .stat.spark { border-top: 0; } .stat:nth-child(3), .stat:nth-child(4) { border-bottom: 1px solid var(--line); } .stat:nth-child(4) { border-right: 0; } }

/* verify links */
.verify { display: flex; flex-direction: column; gap: 8px; margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--line); }
.verify a { color: var(--paper); display: flex; justify-content: space-between; transition: color .2s; }
.verify a:hover { color: var(--yellow); }

/* image reveal */
[data-reveal] { clip-path: inset(0 0 100% 0); }
[data-reveal] img { transform: scale(1.15); }
.reduced [data-reveal], .no-js [data-reveal] { clip-path: none; } .reduced [data-reveal] img { transform: none; }

/* swap panel */
.swap { margin-top: 24px; border: 1px solid var(--line); background: var(--bg-2); }
.swap-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 24px; padding: 28px; border-bottom: 1px solid var(--line); flex-wrap: wrap; }
.swap-head h3 { font-size: 34px; margin-bottom: 8px; }
.swap-head p { max-width: 520px; font-size: 15px; }
.swap-body { position: relative; min-height: 520px; display: grid; place-items: center; padding: 24px; }
.jup-target { width: 100%; max-width: 480px; min-height: 480px; }

.swap-fallback { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px; color: var(--dim); text-align: center; padding: 24px; }
.swap-fallback .btn { margin-top: 6px; }
.swap.ready .swap-fallback { display: none; }
.spin { width: 16px; height: 16px; border: 1.5px solid var(--line); border-top-color: var(--yellow); border-radius: 50%; animation: spin 1s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* sightings */
.drag-hint { display: none; color: var(--yellow); }
@media (max-width: 760px) { .drag-hint { display: inline; } }
.sight:focus-visible img { outline: 2px solid var(--yellow); }

/* lightbox */
.lightbox { position: fixed; inset: 0; z-index: 1500; background: rgba(7,8,15,.94); backdrop-filter: blur(10px); display: grid; place-items: center; padding: 60px 70px; animation: fade .25s; }
.lightbox[hidden] { display: none; }
.lightbox figure { max-width: min(90vw, 980px); max-height: 82vh; display: flex; flex-direction: column; gap: 14px; align-items: center; }
.lightbox img { max-width: 100%; max-height: 72vh; object-fit: contain; border: 1px solid var(--line); animation: lbin .35s var(--ease); }
.lightbox figcaption { color: var(--dim); }
.lb-close, .lb-prev, .lb-next { position: absolute; color: var(--paper); border: 1px solid var(--line); border-radius: 999px; background: rgba(255,255,255,.04); transition: border-color .2s, color .2s; }
.lb-close { top: 20px; right: 20px; padding: 10px 14px; }
.lb-prev, .lb-next { top: 50%; transform: translateY(-50%); width: 48px; height: 48px; font-size: 20px; }
.lb-prev { left: 16px; } .lb-next { right: 16px; }
.lb-close:hover, .lb-prev:hover, .lb-next:hover { border-color: var(--yellow); color: var(--yellow); }
@keyframes fade { from { opacity: 0; } } @keyframes lbin { from { transform: scale(.96); opacity: 0; } }
@media (max-width: 760px) { .lightbox { padding: 70px 12px 40px; } .lb-prev, .lb-next { top: auto; bottom: 14px; transform: none; } }

/* back to top */
.totop { position: fixed; left: 20px; bottom: 20px; z-index: 400; padding: 10px 14px; border-radius: 999px; border: 1px solid var(--line); background: rgba(7,8,15,.7); backdrop-filter: blur(10px); color: var(--dim); opacity: 0; transform: translateY(10px); transition: opacity .3s, transform .3s, color .2s, border-color .2s; pointer-events: none; }
.totop.show { opacity: 1; transform: none; pointer-events: auto; }
.totop:hover { color: var(--yellow); border-color: var(--yellow); }
@media (max-width: 760px) { .totop { display: none; } }

/* universe card arrow motion */
.uni .go { transition: transform .3s var(--ease); }
.uni:hover .go { transform: translateX(6px); }

/* step number accent line */
.step { position: relative; }
.step::before { content: ''; position: absolute; left: 0; top: 0; width: 0; height: 2px; background: var(--yellow); transition: width .4s var(--ease); }
.step:hover::before { width: 100%; }

/* law rows: number goes bold on hover */
.law:hover .law-n { opacity: 1; font-weight: 700; }

/* faq answers slide */
.faq-list details p { animation: faqin .35s var(--ease); }
@keyframes faqin { from { opacity: 0; transform: translateY(-6px); } }

/* hero: subtle vignette pulse on the neon */
.hero-media::after { content: ''; position: absolute; inset: 0; background: radial-gradient(60% 60% at 68% 45%, rgba(255,140,26,.18), transparent 70%); animation: glow 6s ease-in-out infinite; }
@keyframes glow { 50% { opacity: .5; } }

/* ---------- arcade ---------- */
.arcade { background: var(--bg-2); border-top: 1px solid var(--line); }
.game-featured { margin-bottom: 24px; }
.game-stage { position: relative; aspect-ratio: 16 / 9; border: 1px solid var(--line); background: #000; overflow: hidden; }
.game-poster { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 30%; transform: scale(1.03); transition: transform 1s var(--ease), filter .5s; }
.game-stage:hover .game-poster { transform: scale(1.06); }
.game-overlay { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end; gap: 10px; padding: clamp(24px, 4vw, 56px); background: linear-gradient(180deg, rgba(7,8,15,.1) 0%, rgba(7,8,15,.35) 50%, rgba(7,8,15,.95) 100%); }
.game-overlay > .mono { color: var(--yellow); }
.game-overlay h3 { font-size: clamp(40px, 6vw, 84px); line-height: .9; }
.game-overlay p { max-width: 520px; color: #d7d9e6; font-size: 16px; }
.game-btns { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 6px; }
.game-note { font-size: 10px; }
.game-stage.playing .game-poster, .game-stage.playing .game-overlay { display: none; }
.game-frame { position: absolute; inset: 0; display: flex; flex-direction: column; }
.game-frame[hidden] { display: none; }
.game-bar { display: flex; justify-content: space-between; align-items: center; padding: 8px 14px; background: var(--bg); border-bottom: 1px solid var(--line); color: var(--dim); }
.game-bar span { display: inline-flex; align-items: center; gap: 8px; }
.game-bar .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); box-shadow: 0 0 8px var(--green); }
.game-bar button { font: inherit; letter-spacing: inherit; color: var(--paper); margin-left: 14px; }
.game-bar button:hover { color: var(--yellow); }
.game-frame iframe { flex: 1; width: 100%; border: 0; background: #000; }
.game-grid { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--line); }
.game-card { padding: 28px 26px; border-right: 1px solid var(--line); display: flex; flex-direction: column; gap: 10px; background: var(--bg); transition: background .3s; }
.game-card:last-child { border-right: 0; }
.game-card:hover { background: var(--bg-3); }
.game-card > .mono { color: var(--dim); }
.game-card h3 { font-size: 30px; }
.game-card p { color: var(--dim); font-size: 15px; flex: 1; }
.game-links { display: flex; gap: 16px; margin-top: 8px; }
.game-links button, .game-links a { font: inherit; letter-spacing: inherit; color: var(--yellow); border-bottom: 1px solid transparent; transition: border-color .2s; }
.game-links button:hover, .game-links a:hover { border-color: var(--yellow); }
.game-links a { color: var(--paper); }
.ways .way { padding: 12px 0; border-top: 1px solid var(--line); }
.ways .way b { font-family: var(--display); font-size: 20px; font-weight: 400; text-transform: uppercase; color: var(--paper); display: block; margin-bottom: 4px; }
.ways .way p { flex: none; }
.ways .go { color: var(--yellow); margin-top: 8px; }
@media (max-width: 900px) { .game-grid { grid-template-columns: 1fr; } .game-card { border-right: 0; border-bottom: 1px solid var(--line); } .game-card:last-child { border-bottom: 0; } .game-stage { aspect-ratio: 4 / 3; } .game-note { display: none; } }

/* ---------- puff tv ---------- */
.tv { background: var(--bg); }
.tv .sec-head a { display: block; transition: color .2s; } .tv .sec-head a:hover { color: var(--yellow); }

/* ============ POLISH PASS ============ */
::selection { background: var(--yellow); color: var(--ink); }
html { scrollbar-color: #2a2f4a var(--bg); }
::-webkit-scrollbar { width: 10px; } ::-webkit-scrollbar-track { background: var(--bg); } ::-webkit-scrollbar-thumb { background: #2a2f4a; border-radius: 10px; border: 2px solid var(--bg); }
::-webkit-scrollbar-thumb:hover { background: var(--yellow); }

/* keyboard focus (cursor is hidden, so this matters) */
:focus-visible { outline: 2px solid var(--yellow); outline-offset: 3px; border-radius: 4px; }
.btn:focus-visible, .pill:focus-visible, .ca-copy:focus-visible { outline-offset: 2px; }

/* skip link */
.skip { position: fixed; top: 10px; left: 10px; z-index: 2000; background: var(--yellow); color: var(--ink); padding: 10px 14px; border-radius: 999px; transform: translateY(-200%); transition: transform .2s; }
.skip:focus { transform: none; }

/* scroll progress */
.progress { position: fixed; top: 0; left: 0; right: 0; height: 2px; z-index: 150; background: transparent; pointer-events: none; }
.progress i { display: block; height: 100%; width: 100%; background: linear-gradient(90deg, var(--yellow), var(--orange)); transform: scaleX(0); transform-origin: left; }

/* nav price pill hover */
a.pill:hover { border-color: var(--yellow); }
.menu-extra { display: none; }
@media (max-width: 960px) {
  .menu-extra { display: flex; flex-direction: column; gap: 16px; margin-top: auto; padding-top: 20px; }
  .menu-socials { display: flex; flex-wrap: wrap; gap: 8px; }
  .menu-socials a { font-family: var(--mono); font-size: 11px; letter-spacing: .14em; padding: 10px 14px; border: 1px solid var(--line); border-radius: 999px; }
  .nav-links a { border-bottom: 1px solid var(--line); }
  .nav-links .menu-socials a { border-bottom: 1px solid var(--line); font-family: var(--mono); font-size: 11px; padding: 10px 14px; }
}

/* hero trust row */
.trust { display: flex; flex-wrap: wrap; align-items: center; gap: 6px 14px; color: var(--dim); }
.trust a { color: var(--paper); border-bottom: 1px solid var(--line); padding-bottom: 2px; transition: color .2s, border-color .2s; }
.trust a:hover { color: var(--yellow); border-color: var(--yellow); }

/* marquee pause */
.marquee:hover .marquee-track { animation-play-state: paused; }

/* sparkline */
.stats { grid-template-columns: repeat(4, 1fr); }
.stat.spark { grid-column: 1 / -1; border-right: 0; border-top: 1px solid var(--line); padding: 18px 24px 14px; }
.stat.spark .k b { color: var(--paper); font-weight: 500; }
.stat.spark canvas { width: 100%; height: 80px; display: block; }
@media (max-width: 760px) { .stat.spark { border-top: 0; } .stat:nth-child(3), .stat:nth-child(4) { border-bottom: 1px solid var(--line); } .stat:nth-child(4) { border-right: 0; } }

/* verify links */
.verify { display: flex; flex-direction: column; gap: 8px; margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--line); }
.verify a { color: var(--paper); display: flex; justify-content: space-between; transition: color .2s; }
.verify a:hover { color: var(--yellow); }

/* image reveal */
[data-reveal] { clip-path: inset(0 0 100% 0); }
[data-reveal] img { transform: scale(1.15); }
.reduced [data-reveal], .no-js [data-reveal] { clip-path: none; } .reduced [data-reveal] img { transform: none; }

/* swap panel */
.swap { margin-top: 24px; border: 1px solid var(--line); background: var(--bg-2); }
.swap-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 24px; padding: 28px; border-bottom: 1px solid var(--line); flex-wrap: wrap; }
.swap-head h3 { font-size: 34px; margin-bottom: 8px; }
.swap-head p { max-width: 520px; font-size: 15px; }
.swap-body { position: relative; min-height: 520px; display: grid; place-items: center; padding: 24px; }
.jup-target { width: 100%; max-width: 480px; min-height: 480px; }

.swap-fallback { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px; color: var(--dim); text-align: center; padding: 24px; }
.swap-fallback .btn { margin-top: 6px; }
.swap.ready .swap-fallback { display: none; }
.spin { width: 16px; height: 16px; border: 1.5px solid var(--line); border-top-color: var(--yellow); border-radius: 50%; animation: spin 1s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* sightings */
.drag-hint { display: none; color: var(--yellow); }
@media (max-width: 760px) { .drag-hint { display: inline; } }
.sight:focus-visible img { outline: 2px solid var(--yellow); }

/* lightbox */
.lightbox { position: fixed; inset: 0; z-index: 1500; background: rgba(7,8,15,.94); backdrop-filter: blur(10px); display: grid; place-items: center; padding: 60px 70px; animation: fade .25s; }
.lightbox[hidden] { display: none; }
.lightbox figure { max-width: min(90vw, 980px); max-height: 82vh; display: flex; flex-direction: column; gap: 14px; align-items: center; }
.lightbox img { max-width: 100%; max-height: 72vh; object-fit: contain; border: 1px solid var(--line); animation: lbin .35s var(--ease); }
.lightbox figcaption { color: var(--dim); }
.lb-close, .lb-prev, .lb-next { position: absolute; color: var(--paper); border: 1px solid var(--line); border-radius: 999px; background: rgba(255,255,255,.04); transition: border-color .2s, color .2s; }
.lb-close { top: 20px; right: 20px; padding: 10px 14px; }
.lb-prev, .lb-next { top: 50%; transform: translateY(-50%); width: 48px; height: 48px; font-size: 20px; }
.lb-prev { left: 16px; } .lb-next { right: 16px; }
.lb-close:hover, .lb-prev:hover, .lb-next:hover { border-color: var(--yellow); color: var(--yellow); }
@keyframes fade { from { opacity: 0; } } @keyframes lbin { from { transform: scale(.96); opacity: 0; } }
@media (max-width: 760px) { .lightbox { padding: 70px 12px 40px; } .lb-prev, .lb-next { top: auto; bottom: 14px; transform: none; } }

/* back to top */
.totop { position: fixed; left: 20px; bottom: 20px; z-index: 400; padding: 10px 14px; border-radius: 999px; border: 1px solid var(--line); background: rgba(7,8,15,.7); backdrop-filter: blur(10px); color: var(--dim); opacity: 0; transform: translateY(10px); transition: opacity .3s, transform .3s, color .2s, border-color .2s; pointer-events: none; }
.totop.show { opacity: 1; transform: none; pointer-events: auto; }
.totop:hover { color: var(--yellow); border-color: var(--yellow); }
@media (max-width: 760px) { .totop { display: none; } }

/* universe card arrow motion */
.uni .go { transition: transform .3s var(--ease); }
.uni:hover .go { transform: translateX(6px); }

/* step number accent line */
.step { position: relative; }
.step::before { content: ''; position: absolute; left: 0; top: 0; width: 0; height: 2px; background: var(--yellow); transition: width .4s var(--ease); }
.step:hover::before { width: 100%; }

/* law rows: number goes bold on hover */
.law:hover .law-n { opacity: 1; font-weight: 700; }

/* faq answers slide */
.faq-list details p { animation: faqin .35s var(--ease); }
@keyframes faqin { from { opacity: 0; transform: translateY(-6px); } }

/* hero: subtle vignette pulse on the neon */
.hero-media::after { content: ''; position: absolute; inset: 0; background: radial-gradient(60% 60% at 68% 45%, rgba(255,140,26,.18), transparent 70%); animation: glow 6s ease-in-out infinite; }
@keyframes glow { 50% { opacity: .5; } }

/* ---------- arcade ---------- */
.arcade { background: var(--bg-2); border-top: 1px solid var(--line); }
.game-featured { margin-bottom: 24px; }
.game-stage { position: relative; aspect-ratio: 16 / 9; border: 1px solid var(--line); background: #000; overflow: hidden; }
.game-poster { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 30%; transform: scale(1.03); transition: transform 1s var(--ease), filter .5s; }
.game-stage:hover .game-poster { transform: scale(1.06); }
.game-overlay { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end; gap: 10px; padding: clamp(24px, 4vw, 56px); background: linear-gradient(180deg, rgba(7,8,15,.1) 0%, rgba(7,8,15,.35) 50%, rgba(7,8,15,.95) 100%); }
.game-overlay > .mono { color: var(--yellow); }
.game-overlay h3 { font-size: clamp(40px, 6vw, 84px); line-height: .9; }
.game-overlay p { max-width: 520px; color: #d7d9e6; font-size: 16px; }
.game-btns { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 6px; }
.game-note { font-size: 10px; }
.game-stage.playing .game-poster, .game-stage.playing .game-overlay { display: none; }
.game-frame { position: absolute; inset: 0; display: flex; flex-direction: column; }
.game-frame[hidden] { display: none; }
.game-bar { display: flex; justify-content: space-between; align-items: center; padding: 8px 14px; background: var(--bg); border-bottom: 1px solid var(--line); color: var(--dim); }
.game-bar span { display: inline-flex; align-items: center; gap: 8px; }
.game-bar .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); box-shadow: 0 0 8px var(--green); }
.game-bar button { font: inherit; letter-spacing: inherit; color: var(--paper); margin-left: 14px; }
.game-bar button:hover { color: var(--yellow); }
.game-frame iframe { flex: 1; width: 100%; border: 0; background: #000; }
.game-grid { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--line); }
.game-card { padding: 28px 26px; border-right: 1px solid var(--line); display: flex; flex-direction: column; gap: 10px; background: var(--bg); transition: background .3s; }
.game-card:last-child { border-right: 0; }
.game-card:hover { background: var(--bg-3); }
.game-card > .mono { color: var(--dim); }
.game-card h3 { font-size: 30px; }
.game-card p { color: var(--dim); font-size: 15px; flex: 1; }
.game-links { display: flex; gap: 16px; margin-top: 8px; }
.game-links button, .game-links a { font: inherit; letter-spacing: inherit; color: var(--yellow); border-bottom: 1px solid transparent; transition: border-color .2s; }
.game-links button:hover, .game-links a:hover { border-color: var(--yellow); }
.game-links a { color: var(--paper); }
.ways .way { padding: 12px 0; border-top: 1px solid var(--line); }
.ways .way b { font-family: var(--display); font-size: 20px; font-weight: 400; text-transform: uppercase; color: var(--paper); display: block; margin-bottom: 4px; }
.ways .way p { flex: none; }
.ways .go { color: var(--yellow); margin-top: 8px; }
@media (max-width: 900px) { .game-grid { grid-template-columns: 1fr; } .game-card { border-right: 0; border-bottom: 1px solid var(--line); } .game-card:last-child { border-bottom: 0; } .game-stage { aspect-ratio: 4 / 3; } .game-note { display: none; } }

/* ---------- puff tv ---------- */
.tv { background: var(--bg); }
.tv .sec-head a { display: block; transition: color .2s; } .tv .sec-head a:hover { color: var(--yellow); }

/* ============ CONVERSION PASS ============ */
.nav-buy.btn-solid { padding: 9px 16px; }
.stat.launch { grid-column: 1 / -1; border-right: 0; border-top: 1px solid var(--line); flex-direction: row; align-items: center; gap: 28px; flex-wrap: wrap; }
.stat.launch .v { color: var(--orange); }
.stat.launch .v small { font-family: var(--mono); font-size: 11px; letter-spacing: .14em; color: var(--dim); }
.stat.launch p { flex: 1; min-width: 240px; color: var(--dim); font-size: 10px; line-height: 1.7; }
.stat.launch a { color: var(--yellow); white-space: nowrap; }
.stat.launch a:hover { text-decoration: underline; }
.why { background: var(--bg); border-top: 1px solid var(--line); }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); }
.why-card { padding: 30px 26px; border-right: 1px solid var(--line); display: flex; flex-direction: column; gap: 12px; background: var(--bg-2); transition: background .3s; }
.why-card:last-child { border-right: 0; }
.why-card:hover { background: var(--bg-3); }
.why-card > .mono { color: var(--dim); }
.why-card h3 { font-size: 28px; }
.why-card p { color: var(--dim); font-size: 15px; flex: 1; }
.why-card .go { color: var(--yellow); transition: transform .3s var(--ease); display: inline-block; }
.why-card:hover .go { transform: translateX(6px); }
@media (max-width: 1000px) { .why-grid { grid-template-columns: 1fr 1fr; } .why-card:nth-child(2) { border-right: 0; } .why-card:nth-child(-n+2) { border-bottom: 1px solid var(--line); } }
@media (max-width: 560px) { .why-grid { grid-template-columns: 1fr; } .why-card { border-right: 0 !important; border-bottom: 1px solid var(--line); } .why-card:last-child { border-bottom: 0; } }
.cta-strip { display: flex; justify-content: space-between; align-items: center; gap: 24px; padding: 28px 32px; border: 1px solid var(--line); border-top: 0; background: var(--bg-2); flex-wrap: wrap; }
.cta-strip h3 { font-size: clamp(24px, 2.6vw, 34px); margin-bottom: 4px; }
.steps-intro { margin: 40px 0 16px; }
.swap { margin-top: 0; }
.buybar { display: none; }
@media (max-width: 760px) {
  .buybar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 390; display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 10px 14px calc(10px + env(safe-area-inset-bottom)); background: rgba(7,8,15,.85); backdrop-filter: blur(14px); border-top: 1px solid var(--line); transform: translateY(110%); transition: transform .4s var(--ease); }
  .buybar.show { transform: none; }
  .buybar .btn { flex: 1; justify-content: center; }
  .buybar-price { display: flex; flex-direction: column; color: var(--paper); font-size: 12px; }
  .buybar-price b.up { color: var(--green); } .buybar-price b.down { color: var(--red); }
  .audio-toggle { bottom: calc(74px + env(safe-area-inset-bottom)); }
  html.geo-restricted .audio-toggle { bottom: 14px; }
}
.join-buy { margin-top: 28px; }
.join .join-buy + .social-row { margin-top: 20px; }

/* ============ FINISH ============ */
/* tape: chart fills the column height */
.tape-grid { align-items: stretch; }
.chart { display: flex; flex-direction: column; }
.chart-frame { flex: 1; min-height: 520px; }
.chart-frame iframe { height: 100%; min-height: 520px; }
@media (max-width: 1000px) { .chart-frame, .chart-frame iframe { min-height: 440px; } }

/* sheet index (top-right of every numbered section) */
.sec { position: relative; }
.sheet { position: absolute; top: clamp(28px, 4vw, 48px); right: clamp(20px, 4vw, 56px); color: var(--dim); opacity: .7; display: flex; align-items: center; gap: 10px; }
.sheet::before { content: ''; width: 28px; height: 1px; background: var(--dim); }
.laws .sheet, .join .sheet { color: var(--ink); opacity: .55; } .laws .sheet::before, .join .sheet::before { background: var(--ink); }
@media (max-width: 760px) { .sheet { display: none; } }

/* global grain */
.grain { position: fixed; inset: 0; z-index: 1100; pointer-events: none; opacity: .055; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); }
@media (prefers-reduced-motion: reduce) { .grain { display: none; } }

/* ============ MOBILE PASS ============ */
/* three-line burger -> X */
.burger { gap: 4px; }
.burger span { transition: transform .3s var(--ease), opacity .2s; }
.burger.open span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.open span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

@media (max-width: 960px) {
  /* menu: explicit height so it survives the nav becoming a containing block (backdrop-filter) */
  .nav-links { top: 68px; bottom: auto; height: calc(100dvh - 68px); height: calc(100vh - 68px); overflow-y: auto; padding: 8px 20px 24px; -webkit-overflow-scrolling: touch; }
  .nav.menu-open { background: var(--bg); backdrop-filter: none; border-color: var(--line); }
  .nav-links a { font-size: clamp(34px, 9vw, 44px); padding: 10px 0; }
  .nav-links .menu-extra a, .nav-links .menu-socials a { font-size: 11px; padding: 10px 14px; border-bottom: 1px solid var(--line); }
  .nav-links .ca { margin-top: 8px; }
  .nav-buy { display: inline-flex; font-size: 10px; padding: 9px 12px; }
}

@media (max-width: 760px) {
  /* rhythm */
  .sec { padding: 72px 0; }
  .sec-head { margin-bottom: 36px; }
  .sec-head.row { flex-direction: column; align-items: flex-start; gap: 12px; }
  .sec-head.row .right, .right { text-align: left; }
  .sec-head p { font-size: 16px; }
  .label { margin-bottom: 14px; }
  .h-xl { font-size: clamp(44px, 12vw, 64px); }
  .h-xxl { font-size: clamp(56px, 17vw, 110px); }

  /* hero */
  .hero-media img { object-position: 58% 22%; }
  .hero-shade { background: linear-gradient(180deg, rgba(7,8,15,.7) 0%, rgba(7,8,15,.05) 28%, rgba(7,8,15,.35) 55%, rgba(7,8,15,.97) 100%); }
  .hero-content { padding: 120px 20px 28px; }
  .hero-title { font-size: clamp(84px, 24vw, 120px); }
  .eb-more { display: none; }
  .hero-sub { font-size: 16px; margin-bottom: 20px; }
  .trust { gap: 6px 10px; font-size: 10px; }
  .hero-btns { gap: 8px; }
  .hero-btns .btn { padding: 12px 16px; font-size: 10px; }
  .hero-foot { padding-bottom: 18px; }

  /* stats: 2 cols + full-width rows (later rules were overriding the breakpoint) */
  .stats { grid-template-columns: 1fr 1fr !important; }
  .stat { padding: 18px 16px; }
  .stat .v { font-size: 26px; }
  .stat:nth-child(2), .stat:nth-child(4) { border-right: 0; }
  .stat:nth-child(-n+4) { border-bottom: 1px solid var(--line); }
  .stat.spark { border-top: 0; }
  .stat.launch { flex-direction: column; align-items: flex-start; gap: 10px; }
  .stat.launch .v { font-size: 34px; }
  .stat.launch p { min-width: 0; }

  /* spec + chart */
  .spec { padding: 4px 18px 18px; }
  .spec-row b { font-size: 19px; }
  .chart-bar { flex-wrap: wrap; gap: 8px; }

  /* cards */
  .why-card, .step, .uni, .q, .game-card, .law { padding-left: 18px; padding-right: 18px; }
  .cta-strip { padding: 22px 18px; }
  .cta-strip .btn { width: 100%; justify-content: center; }
  .swap-head { padding: 22px 18px; }
  .swap-body { padding: 14px; min-height: 560px; }
  .game-overlay { padding: 18px; }
  .game-overlay p { font-size: 14px; }
  .press-controls, .press-preview { padding: 18px; }
  .social-row a { padding: 11px 14px; }

  /* footer breathing room above the sticky buy bar */
  .footer { padding-bottom: 96px; }
}

@media (max-width: 400px) {
  .hero-title { font-size: 76px; }
  .nav-brand span { display: none; }
}

/* ---------- instant estimator ---------- */
.est { display: grid; grid-template-columns: 1fr auto 1fr; gap: 20px; align-items: center; padding: 22px 28px; border-bottom: 1px solid var(--line); background: var(--bg); }
.est > div > .mono { color: var(--dim); display: block; margin-bottom: 8px; }
.est-field { display: flex; align-items: baseline; gap: 10px; border-bottom: 1px solid var(--line); padding-bottom: 6px; transition: border-color .2s; }
.est-field:focus-within { border-color: var(--yellow); }
.est-field input { width: 100%; background: none; border: 0; color: var(--paper); font-family: var(--display); font-size: clamp(30px, 3.4vw, 44px); line-height: 1; outline: none; -moz-appearance: textfield; }
.est-field input::-webkit-outer-spin-button, .est-field input::-webkit-inner-spin-button { -webkit-appearance: none; }
.est-field b { font-family: var(--mono); font-size: 12px; letter-spacing: .14em; color: var(--dim); }
.est-chips { display: flex; gap: 6px; margin-top: 10px; }
.est-chips button { font: inherit; letter-spacing: inherit; padding: 6px 10px; border: 1px solid var(--line); border-radius: 999px; color: var(--dim); transition: border-color .2s, color .2s; }
.est-chips button:hover, .est-chips button.on { border-color: var(--yellow); color: var(--yellow); }
.est-arrow { font-family: var(--display); font-size: 34px; color: var(--yellow); }
.est-out .mono em { color: var(--yellow); font-style: normal; }
.est-val { display: flex; align-items: baseline; gap: 10px; }
.est-val b { font-family: var(--display); font-size: clamp(30px, 3.4vw, 44px); line-height: 1; font-weight: 400; color: var(--yellow); transition: opacity .15s; }
.est-val b.busy { opacity: .5; }
.est-val span { font-family: var(--mono); font-size: 12px; letter-spacing: .14em; color: var(--dim); }
.est-out > .mono.dim { display: block; margin-top: 8px; font-size: 10px; }
@media (max-width: 700px) { .est { grid-template-columns: 1fr; gap: 12px; padding: 18px; } .est-arrow { transform: rotate(90deg); justify-self: start; font-size: 26px; } }

/* ---------- hero: copy sits mid-viewport (references), foot stays pinned ---------- */
@media (min-width: 761px) {
  .hero { justify-content: center; }
  .hero-content { padding: 120px clamp(20px, 4vw, 56px) 110px; }
  .hero-foot { position: absolute; left: 0; right: 0; bottom: 0; }
  .hero-shade { background:
    linear-gradient(180deg, rgba(7,8,15,.55) 0%, rgba(7,8,15,.05) 30%, rgba(7,8,15,.25) 60%, rgba(7,8,15,.92) 100%),
    linear-gradient(90deg, rgba(7,8,15,.8) 0%, rgba(7,8,15,.35) 40%, rgba(7,8,15,0) 65%); }
}
@media (min-width: 761px) {
  .hero-title { font-size: clamp(72px, 11.5vw, 176px); line-height: .84; margin-bottom: 18px; }
  .hero-sub { font-size: clamp(16px, 1.35vw, 19px); margin-bottom: 22px; max-width: 520px; }
  .eyebrow { margin-bottom: 16px; }
  .hero-actions { gap: 12px; }
  .hero-content { padding: 100px clamp(20px, 4vw, 56px) 100px; }
}
@media (min-width: 761px) { .hero-foot { padding-right: 190px; } }

/* reserve the swap widget's space so lazy-loading never shifts layout */
.swap-body { min-height: 568px; }
.jup-target { min-height: 520px; }

/* intrinsic sizes: keep aspect from width/height attrs, never stretch */
.mood-row img { height: 140px; width: auto; }
@media (max-width: 760px) { .mood-row img { height: 90px; } }
.uni-banner img { aspect-ratio: 3 / 1; object-fit: cover; }
.law img { height: auto; }
.chart-frame iframe { min-height: 520px; }

/* ---------- marquee: big band ---------- */
.marquee { padding: 18px 0; }
.marquee-track { font-family: var(--display); font-size: clamp(26px, 3.2vw, 44px); letter-spacing: .02em; gap: 40px; color: var(--paper); animation-duration: 60s; }
.marquee-track span { opacity: .9; }
.marquee-track span:nth-child(even) { color: var(--dim); }
.marquee-track span::after { content: '·'; margin-left: 40px; color: var(--yellow); }
.marquee:hover .marquee-track span { color: var(--paper); opacity: 1; }
@media (max-width: 760px) { .marquee { padding: 12px 0; } .marquee-track { font-size: 24px; gap: 24px; animation-duration: 40s; } .marquee-track span::after { margin-left: 24px; } }

/* ============ PUFF TV — cinema (cta6-style) ============ */
.tv .sec-head { margin-bottom: 28px; }
.cinema { position: relative; aspect-ratio: 16 / 9; background: #000; overflow: hidden; cursor: pointer; border: 1px solid var(--line); }
.cine-stage { position: absolute; inset: 0; will-change: transform, filter; }
.cine-stage img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cine-grade { position: absolute; inset: 0; pointer-events: none; background: radial-gradient(120% 90% at 50% 30%, transparent 40%, rgba(7,8,15,.55) 100%), linear-gradient(180deg, rgba(7,8,15,.35), transparent 30%, transparent 60%, rgba(7,8,15,.85)); }
.cine-copy { position: absolute; left: clamp(20px, 4vw, 48px); bottom: clamp(20px, 4vw, 44px); z-index: 2; pointer-events: none; max-width: 70%; }
.cine-copy .mono { color: var(--yellow); display: block; margin-bottom: 8px; }
.cine-copy h3 { font-size: clamp(30px, 5vw, 76px); line-height: .92; text-shadow: 0 8px 40px rgba(0,0,0,.6); }
.tv-play { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); z-index: 3; display: inline-flex; align-items: center; gap: 14px; padding: 14px 24px 14px 16px; border-radius: 999px; background: rgba(7,8,15,.55); border: 1px solid rgba(244,241,232,.35); backdrop-filter: blur(10px); color: var(--paper); transition: transform .35s var(--ease), background .25s, border-color .25s; }
.tv-play i { width: 44px; height: 44px; border-radius: 50%; background: var(--yellow); display: grid; place-items: center; transition: transform .35s var(--ease); }
.tv-play i::after { content: ''; width: 0; height: 0; border-left: 14px solid var(--ink); border-top: 8px solid transparent; border-bottom: 8px solid transparent; margin-left: 4px; }
.cinema:hover .tv-play { transform: translate(-50%, -50%) scale(1.06); background: rgba(7,8,15,.75); border-color: var(--yellow); }
.cinema:hover .tv-play i { transform: scale(1.1); }
.cine-corner { position: absolute; width: 22px; height: 22px; border: 2px solid var(--yellow); z-index: 3; pointer-events: none; opacity: .9; }
.cine-corner.tl { top: 14px; left: 14px; border-right: 0; border-bottom: 0; }
.cine-corner.tr { top: 14px; right: 14px; border-left: 0; border-bottom: 0; }
.cine-corner.bl { bottom: 14px; left: 14px; border-right: 0; border-top: 0; }
.cine-corner.br { bottom: 14px; right: 14px; border-left: 0; border-top: 0; }
.cine-cap { position: absolute; top: 18px; right: 48px; z-index: 3; color: var(--dim); font-size: 9px; pointer-events: none; }
.cinema iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; z-index: 4; }
.cinema.playing .cine-stage, .cinema.playing .cine-copy, .cinema.playing .tv-play, .cinema.playing .cine-cap { display: none; }
.cinema.playing { cursor: auto; }

.eps { display: grid; grid-template-columns: repeat(7, 1fr); border: 1px solid var(--line); border-top: 0; background: var(--bg-2); }
.tv-item { display: flex; flex-direction: column; gap: 8px; padding: 14px; border-right: 1px solid var(--line); text-align: left; color: var(--dim); background: none; transition: background .25s, color .25s; font-family: var(--body); font-weight: 600; font-size: 14px; }
.tv-item:last-child { border-right: 0; }
.tv-item img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; border: 1px solid var(--line); filter: saturate(.7); transition: filter .3s, transform .5s var(--ease); }
.tv-item:hover { background: var(--bg-3); color: var(--paper); }
.tv-item:hover img { filter: none; transform: scale(1.03); }
.tv-item.on { background: var(--bg-3); color: var(--paper); box-shadow: inset 0 2px 0 var(--yellow); }
.tv-item.on img { filter: none; }
.ep-no { color: var(--yellow); font-size: 10px; }
.ep-t { font-family: var(--display); font-size: 18px; line-height: 1; text-transform: uppercase; letter-spacing: .01em; }
.ep-state { font-size: 9px; margin-top: auto; }
.tv-item.on .ep-state { color: var(--green); }
@media (max-width: 1100px) { .eps { grid-template-columns: repeat(4, 1fr); } .tv-item:nth-child(4) { border-right: 0; } .tv-item:nth-child(-n+4) { border-bottom: 1px solid var(--line); } }
@media (max-width: 760px) { .eps { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; } .tv-item { min-width: 62vw; scroll-snap-align: start; border-bottom: 0 !important; border-right: 1px solid var(--line) !important; } .cine-copy { max-width: 85%; } .cine-copy h3 { font-size: 28px; } .tv-play { padding: 10px 16px 10px 10px; gap: 10px; } .tv-play i { width: 36px; height: 36px; } .tv-play .mono { display: none; } .cine-cap { display: none; } .cine-corner { width: 14px; height: 14px; } }
.cine-grade { background: radial-gradient(120% 90% at 50% 30%, transparent 40%, rgba(7,8,15,.6) 100%), linear-gradient(180deg, rgba(7,8,15,.6), transparent 32%, transparent 58%, rgba(7,8,15,.9)); }
.cine-cap { background: rgba(7,8,15,.55); padding: 5px 9px; border-radius: 999px; color: var(--paper); opacity: .8; }

/* ============ ORBIT — sticky full-screen video slide ============ */
.orbit { position: relative; height: 220vh; background: var(--bg); }
.orbit-sticky { position: sticky; top: 0; height: 100vh; height: 100svh; overflow: hidden; display: grid; place-items: center; background: #000; }
.orbit-stage { position: absolute; inset: 0; will-change: transform, filter; }
.orbit-stage > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.orbit-video { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
/* 16:9 iframe scaled to cover the viewport, centred */
.orbit-video iframe { position: absolute; top: 50%; left: 50%; width: max(100vw, 177.78vh); height: max(100vh, 56.25vw); transform: translate(-50%, -50%); border: 0; opacity: 0; transition: opacity 1.2s ease; }
.orbit-video.ready iframe { opacity: 1; }
.orbit-grade { position: absolute; inset: 0; pointer-events: none; background: radial-gradient(120% 90% at 50% 30%, transparent 40%, rgba(7,8,15,.6) 100%), linear-gradient(180deg, rgba(7,8,15,.45), transparent 30%, transparent 65%, rgba(7,8,15,.85)); }
.orbit-copy { position: relative; z-index: 2; text-align: center; padding: 0 6vw; max-width: 960px; }
.orbit-kicker { color: var(--yellow); margin-bottom: 18px; letter-spacing: .3em; }
.orbit-title { font-size: clamp(48px, 9vw, 150px); line-height: .9; text-shadow: 0 10px 50px rgba(0,0,0,.6); margin-bottom: 18px; }
.orbit-sub { color: #e8e6f0; font-size: clamp(15px, 1.6vw, 19px); max-width: 52ch; margin: 0 auto 26px; text-shadow: 0 2px 20px rgba(0,0,0,.7); }
[data-orbit] { opacity: 0; transform: translateY(24px); }
.reduced [data-orbit] { opacity: 1; transform: none; }
.orbit-hud { position: absolute; z-index: 2; color: var(--paper); opacity: .7; font-size: 10px; }
.orbit-hud.tl { top: 90px; left: clamp(20px, 4vw, 56px); }
.orbit-hud.br { bottom: 26px; left: clamp(20px, 4vw, 56px); }
@media (max-width: 760px) { .orbit { height: 180vh; } .orbit-hud.tl { top: 80px; } .orbit-title { font-size: 14vw; } }
@media (prefers-reduced-motion: reduce) { .orbit { height: 100vh; } }

/* ============ PLATE WIPES (cta6): scrub-linked clip-path reveals ============ */
[data-wipe="x"] { clip-path: inset(0% 100% 0% 0%); }
[data-wipe="y"] { clip-path: inset(0% 0% 100% 0%); }
.reduced [data-wipe], .no-js [data-wipe] { clip-path: none; }
@media (prefers-reduced-motion: reduce) { [data-wipe] { clip-path: none; } }

/* grid children must be allowed to shrink below their min-content, or a 1fr track blows past the viewport on phones */
.tape-grid > *, .press-grid > *, .why-grid > *, .uni-grid > *, .game-grid > *, .lore-grid > *, .faq-grid > *, .foot-grid > *, .quotes > *, .steps > *, .stats > *, .eps > *, .est > * { min-width: 0; }
@media (max-width: 1000px) { .tape-grid { grid-template-columns: minmax(0, 1fr); } }
.chart-bar { flex-wrap: wrap; gap: 8px; }

/* ---------- episodes: always a full grid, nothing hidden off-screen ---------- */
@media (max-width: 1100px) { .eps { grid-template-columns: repeat(4, minmax(0, 1fr)); } .tv-item { border-bottom: 1px solid var(--line); } .tv-item:nth-child(4n) { border-right: 0; } .tv-item:nth-last-child(-n+3) { border-bottom: 0; } }
@media (max-width: 760px) {
  .eps { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); overflow: visible; scroll-snap-type: none; }
  .tv-item { min-width: 0; padding: 12px; border-right: 1px solid var(--line) !important; border-bottom: 1px solid var(--line) !important; scroll-snap-align: none; }
  .tv-item:nth-child(2n) { border-right: 0 !important; }
  .tv-item:last-child { grid-column: 1 / -1; flex-direction: row; align-items: center; gap: 14px; border-bottom: 0 !important; }
  .tv-item:last-child img { width: 45%; }
  .tv-item:last-child .ep-state { margin-top: 0; margin-left: auto; }
  .ep-t { font-size: 16px; }
}
.ep-no { white-space: nowrap; }

/* ============ MOBILE FEEDBACK PASS ============ */
/* footer: horizontal link rows */
.foot-grid { display: flex; flex-direction: column; gap: 22px; margin-bottom: 36px; }
.foot-row { display: flex; flex-wrap: wrap; gap: 10px 22px; padding-top: 18px; border-top: 1px solid var(--line); }
.foot-row a { white-space: nowrap; }
.foot-row a:hover { color: var(--yellow); }
.foot-grid p { margin-top: 12px; }

/* cinema: pieces live inside the stage now (positions unchanged on desktop) */
.cine-stage .tv-play, .cine-stage .cine-corner, .cine-stage .cine-cap { z-index: 3; }

@media (max-width: 760px) {
  /* no scrubbed motion on phones: everything is where it should be, immediately */
  html.phone [data-wipe], html.phone [data-reveal] { clip-path: none !important; }
  html.phone [data-reveal] img { transform: none !important; }
  html.phone [data-fade] { transform: translateY(12px); }

  /* four laws: compact rows */
  .law { grid-template-columns: 1fr 64px; gap: 14px; padding: 20px 0; align-items: center; }
  .law-n { grid-column: auto; grid-row: 1; font-size: 11px; opacity: .6; }
  .law-body { grid-column: 1; }
  .law h3 { font-size: 24px; margin-bottom: 4px; letter-spacing: 0; }
  .law p { font-size: 14px; line-height: 1.5; }
  .law img { width: 64px; grid-column: 2; grid-row: 1 / span 2; align-self: center; }
  .law:hover { padding-left: 0; }
  .law:hover img { transform: none; }
  #laws .h-xl { font-size: 40px; }

  /* sightings: tighter, no reveal motion */
  .sight-pin { padding: 56px 0; }
  .sight { width: 72vw; }
  .sight img { transition: none; }

  /* orbit: same 16:9 video as desktop, in flow, not sticky, not cropped */
  .orbit { height: auto; background: var(--bg); padding: 56px 0 0; }
  .orbit-sticky { position: relative; height: auto; display: block; overflow: visible; background: var(--bg); }
  .orbit-stage { position: relative; aspect-ratio: 16 / 9; margin: 0 20px; border: 1px solid var(--line); overflow: hidden; background: #000; transform: none !important; filter: none !important; }
  .orbit-video iframe { width: 100%; height: 100%; top: 0; left: 0; transform: none; }
  .orbit-grade { background: linear-gradient(180deg, transparent 60%, rgba(7,8,15,.6)); }
  .orbit-copy { text-align: left; padding: 22px 20px 0; max-width: none; }
  .orbit-title { font-size: 40px; text-shadow: none; }
  .orbit-sub { margin: 0 0 18px; text-shadow: none; font-size: 15px; }
  .orbit-hud { display: none; }
  html.phone [data-orbit] { opacity: 1; transform: none; }

  /* cinema: title below the frame, play pill centred on the frame */
  .cinema { aspect-ratio: auto; display: flex; flex-direction: column; }
  .cine-stage { position: relative; aspect-ratio: 16 / 9; }
  .cine-stage img { position: absolute; inset: 0; }
  .cine-copy { position: static; max-width: none; padding: 14px 16px 16px; background: var(--bg-2); border-top: 1px solid var(--line); }
  .cine-copy h3 { font-size: 24px; text-shadow: none; }
  .cinema.playing { aspect-ratio: 16 / 9; }
  .cinema.playing .cine-copy { display: none; }
  .cine-stage .cine-cap { display: none; }
}

/* phones / mid-range Android: drop expensive compositing layers */
@media (max-width: 760px), (pointer: coarse) {
  .grain, .hero-grain { display: none; }
  .nav.solid, .buybar, .audio-toggle, .btn-outline, .ca, .tv-play, .lightbox { backdrop-filter: none; -webkit-backdrop-filter: none; }
  .nav.solid { background: rgba(7,8,15,.96); }
  .buybar { background: rgba(7,8,15,.96); }
  .hero-media img { transform: none; }
  .hero-media::after { animation: none; }
  .marquee-track { animation-duration: 48s; }
  .cine-stage, .orbit-stage, .game-poster, .tv-item img, .sight img, .uni .go, .why-card .go { transition: none; }
}

/* ============ PUFF CHART (own candlesticks) ============ */
.chart-ranges { display: flex; gap: 4px; }
.chart-ranges button { font: inherit; letter-spacing: inherit; text-transform: inherit; padding: 7px 10px; border-radius: 999px; color: var(--dim); }
.chart-ranges button.on { background: rgba(255,210,63,.12); color: var(--yellow); }
.pchart { position: relative; height: 100%; min-height: 520px; display: flex; flex-direction: column; background: var(--bg); }
.pchart[hidden] { display: none; }
.pchart-head { display: flex; gap: 18px; padding: 12px 16px 0; color: var(--dim); flex-wrap: wrap; }
.pchart-head #pchartLast { color: var(--paper); font-weight: 700; }
.pchart canvas { flex: 1; width: 100%; height: 100%; display: block; cursor: crosshair; touch-action: pan-y; }
.pchart-tip { position: absolute; z-index: 2; pointer-events: none; background: rgba(7,8,15,.92); border: 1px solid var(--line); padding: 8px 10px; color: var(--paper); font-size: 10px; line-height: 1.7; white-space: nowrap; transform: translate(12px, -50%); }
.pchart-tip[hidden] { display: none; }
.pchart-tip b { color: var(--yellow); font-weight: 500; }
.pchart-empty { position: absolute; inset: 0; display: grid; place-items: center; color: var(--dim); text-align: center; padding: 20px; }
.pchart-empty[hidden] { display: none; }
.chart-frame iframe[hidden] { display: none; }
@media (max-width: 1000px) { .pchart { min-height: 420px; } }
@media (max-width: 760px) { .pchart { min-height: 340px; } .chart-bar { padding: 8px 10px; } .chart-tabs button, .chart-ranges button { padding: 6px 8px; font-size: 9px; } .pchart-head { gap: 10px; font-size: 9px; } }

/* older engines without aspect-ratio: keep the 16:9 stages from collapsing */
@supports not (aspect-ratio: 16 / 9) {
  .game-stage::before, .cine-stage::before, .orbit-stage::before, .tv-player::before { content: ''; display: block; padding-top: 56.25%; }
  .cinema { aspect-ratio: auto; }
  .sight img, .frame img { height: 0; padding-top: 100%; box-sizing: border-box; }
  .tv-item img { height: 0; padding-top: 56.25%; box-sizing: border-box; }
  .uni-banner img { height: auto; }
}
@media (max-width: 760px) {
  .orbit-stage { inset: auto; height: auto; aspect-ratio: auto; }
  .orbit-stage::before { content: ''; display: block; padding-top: 56.25%; }
  .orbit-stage > img, .orbit-video, .orbit-grade { position: absolute; inset: 0; }
}
@media (max-width: 760px) {
  .orbit-sticky { place-items: initial; justify-items: initial; align-items: initial; }
  .orbit-stage { width: calc(100% - 40px); margin: 0 auto; }
}

.lightbox { touch-action: none; overscroll-behavior: contain; }

/* ============ PRE-LAUNCH MODE (config.js LAUNCHED:false) ============ */
.prelaunch-note { border: 1px solid var(--yellow); padding: 26px 28px; display: flex; flex-direction: column; gap: 10px; background: var(--bg-2); margin-bottom: 24px; }
.prelaunch-note[hidden] { display: none; }
.prelaunch-note > .mono { color: var(--yellow); } /* the label only — buttons inside also carry .mono */
.prelaunch-note h3 { font-size: clamp(26px, 3vw, 40px); }
.prelaunch-note p { color: #c8cbd9; max-width: 640px; font-size: 15px; }
html.prelaunch .swap, html.prelaunch #navPrice, html.prelaunch .buybar-price, html.prelaunch .stat.spark, html.prelaunch .trust { display: none !important; }
html.prelaunch .ca-copy[disabled] { opacity: .5; cursor: not-allowed; }
html.prelaunch .stat .v[data-stat] { color: var(--dim); }

/* orbit: "continue" is a real control */
.orbit-next { pointer-events: auto; opacity: .85; padding: 9px 14px; border: 1px solid rgba(244,241,232,.35); border-radius: 999px; background: rgba(7,8,15,.45); backdrop-filter: blur(8px); transition: color .2s, border-color .2s, opacity .2s; }
.orbit-next:hover { color: var(--yellow); border-color: var(--yellow); opacity: 1; }

/* ---------- sticker press: preview -> actions -> controls on phones; controls | preview+actions on desktop ---------- */
.press-grid { grid-template-columns: 1fr 1fr; grid-template-areas: "controls preview" "controls cta"; grid-template-rows: 1fr auto; gap: 0; }
.press-controls { grid-area: controls; }
.press-preview { grid-area: preview; }
.press-cta { grid-area: cta; padding: 0 28px 24px; background: var(--bg-2); display: flex; flex-direction: column; gap: 10px; }
.press-cta .press-actions { margin-top: 0; }
@media (max-width: 960px) {
  .press-grid { grid-template-columns: 1fr; grid-template-areas: "preview" "cta" "controls"; grid-template-rows: auto; }
  .press-controls { border-right: 0; border-bottom: 0; border-top: 1px solid var(--line); }
  .press-cta { padding: 0 18px 18px; border-bottom: 1px solid var(--line); }
  .press-cta .press-actions .btn { flex: 1; justify-content: center; }
}
@media (max-width: 760px) {
  /* smaller preview + compact mood/backdrop pickers on phones */
  .press-preview { padding: 16px; }
  .press-preview canvas { max-width: 240px; }
  .press-stamp { display: none; }
  .mood-pick { grid-template-columns: repeat(8, minmax(0, 1fr)); gap: 4px; }
  .mood-pick button { padding: 3px; }
  .bg-pick button { width: 32px; height: 32px; }
  .press-input { font-size: 20px; padding: 9px 12px; }
  .ctrl { gap: 6px; }
  .press-controls { gap: 14px; padding: 18px; }
}
@media (max-width: 760px) {
  /* caption inputs: compact on phones */
  .press-controls .ctrl > .mono { font-size: 9px; letter-spacing: .12em; }
  .press-input { font-size: 16px; padding: 7px 10px; line-height: 1.2; }
  .press-controls { gap: 10px; padding: 14px 16px 16px; }
  .press-note { font-size: 9px; }
}

/* ============ HOLDER REWARDS (tokenomics) ============ */
.rewards { margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--line); display: flex; flex-direction: column; gap: 12px; }
.rewards-head { display: flex; justify-content: space-between; gap: 12px; color: var(--dim); flex-wrap: wrap; }
.rewards p { font-size: 14px; color: #c8cbd9; }
.rewards > .mono.dim { font-size: 10px; line-height: 1.7; }
.rewards-list { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.rewards-list li { display: flex; justify-content: space-between; gap: 14px; padding: 7px 0; border-bottom: 1px dashed var(--line); }
.rewards-list li:last-child { border-bottom: 0; }
.rewards-list span { color: var(--dim); }
.rewards-list b { color: var(--paper); font-weight: 500; text-align: right; }

/* ============ THE PROMISE (Roblox) ============ */
.promise { background: var(--bg); border-top: 1px solid var(--line); }
.promise-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); border: 1px solid var(--line); }
.promise-card { padding: 28px 26px; border-right: 1px solid var(--line); display: flex; flex-direction: column; gap: 10px; background: var(--bg-2); transition: background .3s; }
.promise-card:last-child { border-right: 0; }
.promise-card:hover { background: var(--bg-3); }
.promise-card > .mono { color: var(--yellow); }
.promise-card h3 { font-size: 26px; }
.promise-card p { color: var(--dim); font-size: 15px; }
.promise-note { border: 1px solid var(--line); border-top: 0; padding: 24px 26px; display: flex; flex-direction: column; gap: 12px; background: var(--bg-2); }
.promise-note p { color: #c8cbd9; font-size: 15px; max-width: 760px; }
.promise-note em { font-style: italic; color: var(--yellow); }
.promise-note .mono { font-size: 10px; line-height: 1.8; color: var(--orange); }
.promise .cta-strip { border-top: 0; }
@media (max-width: 1000px) { .promise-grid { grid-template-columns: 1fr 1fr; } .promise-card:nth-child(2) { border-right: 0; } .promise-card:nth-child(-n+2) { border-bottom: 1px solid var(--line); } }
@media (max-width: 560px) { .promise-grid { grid-template-columns: 1fr; } .promise-card { border-right: 0 !important; border-bottom: 1px solid var(--line); } .promise-card:last-child { border-bottom: 0; } }
@media (max-width: 760px) { .promise-card, .promise-note { padding-left: 18px; padding-right: 18px; } }

/* ============ JOIN: headline fit + button contrast on the yellow plate ============ */
/* "STAY CHILLED." is the longest display string on the site: size it so it always keeps a gutter */
.join .h-xxl { font-size: clamp(40px, 11.5vw, 190px); }
/* the solid (yellow) button is invisible on the yellow plate — invert it */
.join .btn-solid { background: var(--ink); color: var(--yellow); border-color: var(--ink); }
.join .btn-solid:hover { background: #000; border-color: #000; color: #fff; }
@media (max-width: 760px) {
  .join .h-xxl { font-size: 10.5vw; line-height: .9; }
  .join-mascot { width: 200px; right: -50px; bottom: -20px; opacity: .28; }
  .social-row { gap: 8px; }
}

/* ============ HOLDER REWARDS — yellow plate ============ */
.rewards-sec { background: var(--yellow); color: var(--ink); overflow: hidden; }
.rewards-sec .label { color: var(--ink); opacity: .6; }
.rewards-sec .wrap { position: relative; z-index: 1; }
.rewards-sec .sec-head { max-width: 780px; }
.rewards-sec .sec-head p { color: rgba(10,11,20,.8); font-size: clamp(16px, 1.7vw, 20px); }
.rewards-sec strong { color: var(--ink); font-weight: 700; }
.rewards-sec em { color: var(--ink); font-style: italic; }
.rewards-title { font-size: clamp(44px, 10vw, 170px); margin-bottom: 18px; }
.rewards-mascot { position: absolute; right: -5%; top: 50%; transform: translateY(-50%); width: clamp(260px, 34vw, 520px); opacity: .9; filter: drop-shadow(0 20px 0 rgba(10,11,20,.12)); pointer-events: none; }
.rw-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); border: 2px solid var(--ink); background: rgba(255,255,255,.35); }
.rw-stat { padding: 22px 20px; border-right: 2px solid var(--ink); display: flex; flex-direction: column; gap: 8px; }
.rw-stat:last-child { border-right: 0; }
.rw-stat .k { color: rgba(10,11,20,.6); }
.rw-stat .v { font-family: var(--display); font-size: clamp(28px, 3.4vw, 46px); line-height: 1; display: flex; flex-direction: column; gap: 8px; }
.rw-stat .v small { font-family: var(--body); font-size: 13px; font-weight: 600; line-height: 1.45; color: rgba(10,11,20,.7); letter-spacing: 0; text-transform: none; }
.rw-foot { display: flex; align-items: center; gap: 22px; margin-top: 22px; flex-wrap: wrap; }
.rw-foot .btn-solid { background: var(--ink); color: var(--yellow); border-color: var(--ink); }
.rw-foot .btn-solid:hover { background: #000; border-color: #000; color: #fff; }
.rw-foot p { flex: 1; min-width: 260px; font-size: 10px; line-height: 1.8; color: rgba(10,11,20,.72); }
@media (max-width: 1000px) { .rw-grid { grid-template-columns: 1fr 1fr; } .rw-stat:nth-child(2) { border-right: 0; } .rw-stat:nth-child(-n+2) { border-bottom: 2px solid var(--ink); } }
@media (max-width: 760px) {
  .rewards-title { font-size: 12.5vw; line-height: .9; }
  .rewards-mascot { width: 220px; right: -60px; top: auto; bottom: -30px; transform: none; opacity: .25; }
  .rw-stat { padding: 16px 14px; }
  .rw-foot .btn { width: 100%; justify-content: center; }
}
@media (max-width: 420px) { .rw-grid { grid-template-columns: 1fr; } .rw-stat { border-right: 0 !important; border-bottom: 2px solid var(--ink); } .rw-stat:last-child { border-bottom: 0; } }

/* ============ PROMISE — stage ============ */
.promise-stage { position: relative; min-height: clamp(320px, 42vw, 520px); border: 1px solid var(--line); background: var(--bg-2); overflow: hidden; display: flex; align-items: flex-end; margin-bottom: 0; }
.promise-art { position: absolute; right: 4%; bottom: 0; width: clamp(180px, 26vw, 340px); opacity: .85; }
.promise-grade { position: absolute; inset: 0; background: radial-gradient(90% 90% at 20% 50%, rgba(255,210,63,.12), transparent 60%), linear-gradient(90deg, var(--bg-2) 35%, transparent 75%); }
.promise-copy { position: relative; z-index: 2; padding: clamp(24px, 4vw, 52px); max-width: 720px; }
.promise-title { font-size: clamp(56px, 11vw, 150px); margin-bottom: 14px; }
.promise-lede { color: #d7d9e6; font-size: clamp(15px, 1.6vw, 19px); max-width: 520px; }
.promise-status { position: absolute; top: 18px; left: 18px; right: 18px; z-index: 2; display: flex; gap: 18px; flex-wrap: wrap; color: var(--dim); font-size: 9px; }
.promise-status .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--orange); display: inline-block; margin-right: 7px; }
.promise-status span:first-child { color: var(--orange); }
.promise-grid { border-top: 0; }
.promise-card img { width: 64px; height: 64px; object-fit: contain; margin-bottom: 2px; transition: transform .4s var(--ease); }
.promise-card:hover img { transform: rotate(-8deg) scale(1.12); }
@media (max-width: 760px) { .promise-art { width: 140px; right: -10px; opacity: .5; } .promise-grade { background: linear-gradient(0deg, var(--bg-2) 30%, transparent 85%); } .promise-status { font-size: 8px; gap: 10px; } .promise-card img { width: 48px; height: 48px; } }

/* rewards plate: keep the mascot clear of the stats */
.rewards-mascot { right: -8%; top: 42%; width: clamp(220px, 26vw, 400px); opacity: .55; }
.rw-grid { background: rgba(255,255,255,.62); backdrop-filter: blur(2px); position: relative; }
@media (max-width: 1200px) { .rewards-mascot { display: none; } }

/* rewards headline: sized so it wraps to two balanced lines without colliding */
.rewards-title { font-size: clamp(42px, 8.4vw, 132px); line-height: .94; max-width: 12ch; }
@media (max-width: 760px) { .rewards-title { font-size: 11.5vw; line-height: .95; max-width: none; } }
/* pre-launch CTA: black text on the yellow button, explicitly */
.prelaunch-note .btn-solid { color: var(--ink); }
.prelaunch-note .btn-solid:hover { color: var(--ink); }
