/* ==========================================================================
   Rewind Static — design tokens
   ========================================================================== */
:root{
  --bg: #08090d;
  --bg-alt: #0c0e14;
  --panel: #101319;
  --panel-2: #161b24;
  --ink: #f6f0df;
  --muted: #a9a39a;
  --orange: #f47b21;
  --amber: #ffbd5c;
  --teal: #38c7bc;
  --purple: #7544d8;
  --line: rgba(246,240,223,.12);
  --shadow: 0 30px 80px rgba(0,0,0,.45);

  --font-display: "Bebas Neue", Impact, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --font-hand: "Permanent Marker", cursive;

  --container: 1180px;
  --radius: 18px;
  --radius-sm: 10px;
}

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *, *::before, *::after{ animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
}

body{
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none; }
button{ font: inherit; cursor: pointer; }
code{ font-family: ui-monospace, "Courier New", monospace; }

.wrap{ max-width: var(--container); margin: 0 auto; padding: 0 24px; position: relative; }
.wrap-narrow{ max-width: 820px; }

.skip-link{
  position: absolute; left: -999px; top: 0; background: var(--amber); color: var(--bg);
  padding: 10px 16px; z-index: 999; border-radius: 0 0 8px 0; font-weight: 700;
}
.skip-link:focus{ left: 0; }

.hl{ color: var(--orange); }
.hl-teal{ color: var(--teal); }

/* ==========================================================================
   Screen FX — scanlines / grain / vignette
   ========================================================================== */
.fx-scanlines{
  position: fixed; inset: 0; pointer-events: none; z-index: 40;
  background: repeating-linear-gradient(0deg, rgba(0,0,0,0) 0px, rgba(0,0,0,0) 3px, rgba(255,255,255,.025) 4px);
  mix-blend-mode: overlay;
}
.fx-grain{
  position: fixed; inset: -50%; width: 200%; height: 200%; pointer-events: none; z-index: 39;
  opacity: .04; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
  animation: grain-shift 1.2s steps(4) infinite;
}
@keyframes grain-shift{
  0%{ transform: translate(0,0); } 25%{ transform: translate(-2%,1%); }
  50%{ transform: translate(1%,-2%); } 75%{ transform: translate(-1%,2%); } 100%{ transform: translate(0,0); }
}
.fx-vignette{
  position: fixed; inset: 0; pointer-events: none; z-index: 38;
  background: radial-gradient(ellipse at center, rgba(0,0,0,0) 55%, rgba(0,0,0,.55) 100%);
}

/* ==========================================================================
   Boot screen
   ========================================================================== */
.boot-screen{
  position: fixed; inset: 0; z-index: 200; background: #000;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 18px;
  animation: boot-fade 1.6s ease forwards;
}
.boot-bars{
  width: 220px; height: 6px; border-radius: 4px; overflow: hidden; background: var(--panel);
  position: relative;
}
.boot-bars::after{
  content: ""; position: absolute; inset: 0; width: 40%;
  background: linear-gradient(90deg, var(--orange), var(--amber));
  animation: boot-scan 1.1s ease-in-out infinite;
}
@keyframes boot-scan{ 0%{ left: -40%; } 100%{ left: 100%; } }
.boot-text{
  font-family: var(--font-display); letter-spacing: .18em; color: var(--muted); font-size: 14px; margin: 0;
}
@keyframes boot-fade{
  0%{ opacity: 1; } 70%{ opacity: 1; } 100%{ opacity: 0; visibility: hidden; pointer-events: none; }
}

/* ==========================================================================
   Header
   ========================================================================== */
.site-header{
  position: sticky; top: 0; z-index: 100;
  background: rgba(8,9,13,.72);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-row{ display: flex; align-items: center; justify-content: space-between; height: 76px; gap: 20px; }

.brand{ display: flex; align-items: center; gap: 10px; }
.brand-mark{ width: 34px; height: 34px; border-radius: 8px; object-fit: cover; border: 1px solid var(--line); }
.brand-name{ font-family: var(--font-display); letter-spacing: .04em; font-size: 20px; }
.brand-name span{ color: var(--orange); }

.main-nav{ display: flex; gap: 28px; }
.nav-link{
  font-weight: 600; font-size: 14px; color: var(--muted); letter-spacing: .02em;
  transition: color .2s ease; position: relative;
}
.nav-link:hover{ color: var(--ink); }
.nav-link::after{
  content: ""; position: absolute; left: 0; bottom: -6px; width: 0; height: 2px; background: var(--orange);
  transition: width .2s ease;
}
.nav-link:hover::after{ width: 100%; }

.header-actions{ display: flex; align-items: center; gap: 12px; }

.icon-btn{
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--line); color: var(--ink);
  transition: border-color .2s ease, transform .2s ease, color .2s ease;
}
.icon-btn:hover{ border-color: var(--orange); color: var(--orange); transform: translateY(-2px); }

.hamburger{
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 36px; height: 36px; background: none; border: 1px solid var(--line); border-radius: 8px;
}
.hamburger span{ display: block; width: 16px; height: 2px; background: var(--ink); margin: 0 auto; transition: transform .25s ease, opacity .25s ease; }
.hamburger[aria-expanded="true"] span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2){ opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

.mobile-menu{
  position: fixed; inset: 76px 0 0 0; z-index: 90; background: var(--bg);
  transform: translateY(-8px); opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
  display: flex; flex-direction: column; justify-content: space-between; padding: 32px 24px 40px;
}
.mobile-menu.open{ transform: translateY(0); opacity: 1; visibility: visible; pointer-events: auto; }
.mobile-menu nav{ display: flex; flex-direction: column; gap: 6px; }
.mobile-menu .nav-link{ font-family: var(--font-display); font-size: 28px; padding: 14px 4px; border-bottom: 1px solid var(--line); letter-spacing: .03em; }
.mobile-menu-actions{ display: flex; flex-direction: column; gap: 12px; }

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn{
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 24px; border-radius: 999px; font-weight: 700; font-size: 14px;
  letter-spacing: .02em; border: 1px solid transparent; transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease, opacity .18s ease;
  white-space: nowrap;
}
.btn:hover{ transform: translateY(-2px); }
.btn:active{ transform: translateY(0); }
.btn-sm{ padding: 9px 16px; font-size: 13px; }
.btn-lg{ padding: 16px 30px; font-size: 15px; }

.btn-primary{
  background: linear-gradient(135deg, var(--orange), var(--amber));
  color: var(--bg);
  box-shadow: 0 12px 30px rgba(244,123,33,.28);
}
.btn-primary:hover{ box-shadow: 0 16px 36px rgba(244,123,33,.4); }

.btn-outline{
  background: transparent; color: var(--ink); border-color: var(--line);
}
.btn-outline:hover{ border-color: var(--orange); color: var(--orange); }

.btn-ghost{
  background: var(--panel); color: var(--ink); border-color: var(--line);
}
.btn-ghost:hover{ border-color: var(--teal); color: var(--teal); }
.btn:disabled{ opacity: .5; cursor: not-allowed; transform: none; }

/* ==========================================================================
   Reveal-on-scroll
   ========================================================================== */
.reveal{ opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in-view{ opacity: 1; transform: translateY(0); }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero{ position: relative; padding: 70px 0 0; overflow: hidden; }
.hero-glow{
  position: absolute; inset: -20% -10% auto -10%; height: 700px; z-index: 0; pointer-events: none;
  background:
    radial-gradient(circle at 70% 12%, rgba(117,68,216,.18), rgba(0,0,0,0) 32%),
    radial-gradient(circle at 20% 55%, rgba(56,199,188,.10), rgba(0,0,0,0) 32%),
    radial-gradient(circle at 85% 70%, rgba(244,123,33,.10), rgba(0,0,0,0) 30%);
}
.hero-grid{
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center;
  padding-bottom: 70px;
}
.eyebrow{
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 700; letter-spacing: .12em; color: var(--amber);
  margin: 0 0 18px;
}
.dot-live{ width: 8px; height: 8px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 0 rgba(244,123,33,.6); animation: pulse 1.8s infinite; }
@keyframes pulse{
  0%{ box-shadow: 0 0 0 0 rgba(244,123,33,.55); } 70%{ box-shadow: 0 0 0 10px rgba(244,123,33,0); } 100%{ box-shadow: 0 0 0 0 rgba(244,123,33,0); }
}

.hero-title{
  font-family: var(--font-display); font-size: clamp(52px, 8vw, 104px); line-height: .95;
  letter-spacing: .01em; margin: 0; position: relative;
}
.glitch{ position: relative; }
.glitch::before, .glitch::after{
  content: attr(data-text); position: absolute; left: 0; top: 0; width: 100%; overflow: hidden;
  opacity: 0;
}
.glitch:hover::before, .glitch:hover::after{ opacity: .8; }
.glitch::before{ color: var(--teal); transform: translate(-3px, -1px); animation: glitch-a 2.2s infinite linear; }
.glitch::after{ color: var(--purple); transform: translate(3px, 1px); animation: glitch-b 2.6s infinite linear; }
@keyframes glitch-a{ 0%,100%{ clip-path: inset(0 0 90% 0); } 20%{ clip-path: inset(20% 0 60% 0); } 40%{ clip-path: inset(60% 0 10% 0); } 60%{ clip-path: inset(10% 0 70% 0); } 80%{ clip-path: inset(80% 0 5% 0); } }
@keyframes glitch-b{ 0%,100%{ clip-path: inset(85% 0 0 0); } 25%{ clip-path: inset(15% 0 65% 0); } 50%{ clip-path: inset(55% 0 25% 0); } 75%{ clip-path: inset(5% 0 85% 0); } }

.hero-sub{
  font-family: var(--font-display); font-size: clamp(24px, 3.4vw, 36px); letter-spacing: .04em;
  margin: 10px 0 20px; color: var(--muted);
}
.hero-desc{ max-width: 46ch; color: var(--muted); font-size: 16px; margin: 0 0 30px; }
.hero-cta{ display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 26px; }
.hero-badges{ display: flex; flex-wrap: wrap; gap: 10px; }
.badge{
  font-size: 12px; font-weight: 700; letter-spacing: .05em; color: var(--muted);
  border: 1px solid var(--line); border-radius: 999px; padding: 7px 14px;
}

/* TV frame */
.hero-tv{ display: flex; flex-direction: column; align-items: center; gap: 14px; }
.tv-frame{
  position: relative;
  width: 100%; max-width: 380px; background: linear-gradient(160deg, #1c1f27, #0c0e13);
  border-radius: 26px; padding: 16px; box-shadow: var(--shadow), inset 0 0 0 1px rgba(255,255,255,.04);
  border: 1px solid var(--line);
}
.tv-topbar, .tv-bottombar{
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-display); font-size: 13px; letter-spacing: .08em; color: var(--muted);
  padding: 4px 6px;
}
.tv-rec{ color: var(--orange); }
.tv-rec::before{ content: ""; display: inline-block; width: 7px; height: 7px; border-radius: 50%; background: var(--orange); margin-right: 6px; animation: pulse 1.6s infinite; }
.tv-play{ color: var(--teal); }

.tv-screen{
  position: relative; margin-top: 8px; border-radius: 14px; overflow: hidden; aspect-ratio: 1 / 1;
  background: radial-gradient(circle at 50% 40%, #f4a02d 0%, #3b665d 33%, #0d1820 72%);
}
.tv-logo{ position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; mix-blend-mode: luminosity; opacity: .92; }
.tv-static{
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: .18; mix-blend-mode: overlay; animation: grain-shift 1s steps(3) infinite;
}
.tv-tracking{
  position: absolute; left: 0; right: 0; height: 22px; background: rgba(255,255,255,.18);
  filter: blur(1px); animation: tracking-move 5s linear infinite;
}
@keyframes tracking-move{ 0%{ top: -10%; opacity: 0; } 5%{ opacity: .5; } 12%{ opacity: 0; } 100%{ top: 110%; opacity: 0; } }

.tv-caption{ font-size: 12px; letter-spacing: .1em; color: var(--muted); font-weight: 700; text-align: center; }

/* Ticker */
.ticker{ border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--panel); overflow: hidden; }
.ticker-track{ display: flex; width: max-content; animation: ticker-scroll 26s linear infinite; }
.ticker-track span, .ticker-probe{
  display: inline-block; padding: 14px 0; font-family: var(--font-display); font-size: 16px;
  letter-spacing: .12em; color: var(--muted); white-space: nowrap;
}
.ticker-probe{ position: absolute; left: -9999px; top: -9999px; visibility: hidden; }
@keyframes ticker-scroll{ from{ transform: translateX(0); } to{ transform: translateX(-50%); } }

/* ==========================================================================
   Sections (generic)
   ========================================================================== */
.section{ padding: 100px 0; }
.section-alt{ background: var(--bg-alt); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-tag{
  font-family: var(--font-hand); color: var(--teal); font-size: 18px; margin: 0 0 6px; letter-spacing: .02em;
}
.section-title{
  font-family: var(--font-display); font-size: clamp(34px, 5vw, 58px); line-height: 1.02; margin: 0 0 18px; letter-spacing: .01em;
}
.section-lede{ color: var(--muted); font-size: 17px; max-width: 60ch; margin: 0 0 50px; }

/* Story */
.story-grid{ display: grid; grid-template-columns: 1.2fr .8fr; gap: 48px; align-items: start; }
.story-copy p{ color: var(--muted); font-size: 17px; max-width: 58ch; }
.story-highlight{ color: var(--ink) !important; font-size: 18px !important; }

.story-tape{
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px;
  box-shadow: var(--shadow);
}
.tape-readout{ display: flex; align-items: center; gap: 10px; font-family: var(--font-display); letter-spacing: .06em; font-size: 15px; color: var(--amber); margin-bottom: 18px; flex-wrap: wrap; }
.tape-dot{ width: 8px; height: 8px; border-radius: 50%; background: var(--orange); animation: pulse 1.8s infinite; }
.tape-time{ color: var(--muted); font-size: 12px; margin-left: auto; }
.tape-bars{ display: flex; align-items: flex-end; gap: 5px; height: 60px; margin-bottom: 20px; }
.tape-bars span{ flex: 1; background: linear-gradient(180deg, var(--teal), var(--purple)); border-radius: 3px; animation: bar-bounce 1.4s ease-in-out infinite; }
.tape-bars span:nth-child(odd){ animation-delay: .2s; }
.tape-bars span:nth-child(1){ height: 40%; } .tape-bars span:nth-child(2){ height: 80%; }
.tape-bars span:nth-child(3){ height: 55%; } .tape-bars span:nth-child(4){ height: 95%; }
.tape-bars span:nth-child(5){ height: 35%; } .tape-bars span:nth-child(6){ height: 70%; }
.tape-bars span:nth-child(7){ height: 50%; } .tape-bars span:nth-child(8){ height: 85%; }
@keyframes bar-bounce{ 0%,100%{ transform: scaleY(.5); } 50%{ transform: scaleY(1); } }
.tape-note{ font-family: var(--font-display); font-size: 20px; letter-spacing: .04em; margin: 0; }

/* Plan */
.plan-grid{ display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.plan-card{
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 22px;
  position: relative; transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.plan-card:hover{ transform: translateY(-6px); border-color: var(--orange); box-shadow: var(--shadow); }
.plan-num{ position: absolute; top: 20px; right: 22px; font-family: var(--font-display); font-size: 15px; color: var(--muted); }
.plan-icon{ font-size: 34px; display: block; margin-bottom: 16px; }
.plan-card h3{ font-family: var(--font-display); font-size: 22px; letter-spacing: .02em; margin: 0 0 8px; }
.plan-card p{ color: var(--muted); font-size: 14.5px; margin: 0; }

/* Trivia */
.trivia-card{
  position: relative;
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 34px;
  max-width: 640px; box-shadow: var(--shadow);
}
.trivia-head{ display: flex; justify-content: space-between; font-family: var(--font-display); letter-spacing: .05em; color: var(--amber); font-size: 15px; margin-bottom: 18px; }
.trivia-clues{ display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.trivia-clue{ color: var(--ink); font-size: 15.5px; background: var(--panel-2); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 12px 16px; }
.trivia-options{ display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 18px; }
.trivia-opt{
  background: var(--panel-2); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 14px 16px;
  color: var(--ink); font-weight: 600; font-size: 14.5px; text-align: left; transition: border-color .2s ease, transform .15s ease, background .2s ease;
}
.trivia-opt:hover:not(:disabled){ border-color: var(--teal); transform: translateY(-2px); }
.trivia-opt:disabled{ cursor: default; }
.trivia-opt.correct{ border-color: var(--teal); background: rgba(56,199,188,.14); }
.trivia-opt.wrong{ border-color: var(--orange); background: rgba(244,123,33,.12); }
.trivia-feedback{ min-height: 24px; font-weight: 700; font-size: 14.5px; margin-bottom: 10px; }
.trivia-feedback.is-correct{ color: var(--teal); }
.trivia-feedback.is-wrong{ color: var(--orange); }
.trivia-actions{ display: flex; gap: 12px; flex-wrap: wrap; }

.trivia-result{ text-align: center; margin-top: 20px; }
.trivia-result-emoji{ font-size: 40px; margin: 0 0 6px; }
.trivia-result h3{ font-family: var(--font-display); font-size: 30px; letter-spacing: .04em; margin: 0 0 8px; }
.trivia-result p{ color: var(--muted); margin: 0 0 20px; }
.trivia-result .trivia-actions{ justify-content: center; }

/* PFP Studio */
.section-pfp{ overflow: hidden; position: relative; }
.pfp-grid{ display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; }
.pfp-copy .section-tag, .pfp-copy .section-title{ margin-bottom: 14px; }

.pfp-features{ display: flex; flex-direction: column; gap: 12px; margin-bottom: 30px; }
.pfp-feature{
  display: flex; align-items: center; gap: 12px; color: var(--ink); font-size: 14.5px; font-weight: 600;
}
.pfp-feature span{ font-size: 18px; }

.pfp-mockup{ display: block; text-align: center; }
.pfp-mockup-frame{
  position: relative;
  max-width: 380px; margin: 0 auto; background: linear-gradient(155deg, #1c1c20, #101319 60%, #0b0c10);
  border-radius: 30px; padding: 18px; border: 1px solid var(--line); box-shadow: var(--shadow);
  transition: transform .3s ease, box-shadow .3s ease;
}
.pfp-mockup:hover .pfp-mockup-frame{ transform: translateY(-6px) scale(1.01); box-shadow: 0 40px 90px rgba(0,0,0,.55); }

.pfp-mockup-led{
  display: flex; align-items: center; gap: 6px; font-family: var(--font-display); font-size: 12px;
  letter-spacing: .1em; color: var(--muted); margin-bottom: 10px;
}
.pfp-mockup-led::before{ content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 6px var(--orange); animation: pulse 1.6s infinite; }

.pfp-mockup-screen{
  position: relative; aspect-ratio: 1 / 1; border-radius: 18px; overflow: hidden;
  background: radial-gradient(circle at 50% 40%, #f4a02d 0%, #3b665d 33%, #0d1820 72%);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.pfp-mockup-static{
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: .22; mix-blend-mode: overlay; animation: grain-shift 1s steps(3) infinite;
}
.pfp-mockup-bar{
  position: absolute; left: 0; right: 0; height: 26px; background: rgba(255,255,255,.16); filter: blur(1px);
  animation: tracking-move 4.2s linear infinite;
}
.pfp-mockup-osd{
  position: absolute; top: 14px; left: 16px; font-family: var(--font-display); font-size: 13px; letter-spacing: .06em;
  color: var(--ink); text-shadow: 0 0 8px var(--teal);
}
.pfp-mockup-title{
  font-family: var(--font-display); font-size: clamp(26px, 5vw, 34px); line-height: 1; letter-spacing: .03em;
  color: var(--ink); text-shadow: 0 4px 24px rgba(0,0,0,.5); position: relative; z-index: 1;
}
.pfp-mockup-dots{ display: flex; justify-content: center; gap: 10px; margin-top: 14px; }
.pfp-mockup-dots span{ width: 10px; height: 10px; border-radius: 3px; background: var(--dot); box-shadow: 0 0 8px var(--dot); }

.pfp-mockup-cta{
  display: inline-block; margin-top: 18px; font-weight: 700; font-size: 14px; color: var(--teal);
}
.pfp-mockup:hover .pfp-mockup-cta{ color: var(--amber); }

@media (max-width: 980px){
  .pfp-grid{ grid-template-columns: 1fr; }
  .pfp-mockup{ order: -1; }
}

/* Fair launch pledge */
.pledge-grid{ display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 36px; }
.pledge-card{ background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 20px; transition: transform .25s ease, border-color .25s ease; }
.pledge-card:hover{ transform: translateY(-6px); border-color: var(--teal); }
.pledge-icon{ font-size: 30px; display: block; margin-bottom: 14px; }
.pledge-card h3{ font-family: var(--font-display); font-size: 19px; letter-spacing: .02em; margin: 0 0 8px; }
.pledge-card p{ color: var(--muted); font-size: 14px; margin: 0; }

.scam-note{
  position: relative;
  display: flex; gap: 14px; align-items: flex-start; background: rgba(244,123,33,.08);
  border: 1px solid rgba(244,123,33,.35); border-radius: var(--radius); padding: 20px 24px;
}
.scam-note-icon{ font-size: 20px; }
.scam-note p{ margin: 0; color: var(--ink); font-size: 14.5px; }

/* Community */
.community-quote{
  font-family: var(--font-hand); font-size: 24px; color: var(--amber); margin: 0 0 44px; max-width: 500px;
}
.community-grid{ display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.community-card{
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.community-card:hover{ transform: translateY(-6px); border-color: var(--purple); box-shadow: var(--shadow); }
.community-icon{ font-size: 28px; display: block; margin-bottom: 14px; }
.community-card h3{ font-family: var(--font-display); font-size: 24px; letter-spacing: .02em; margin: 0 0 8px; }
.community-card p{ color: var(--muted); font-size: 14.5px; margin: 0 0 16px; }
.community-link{ color: var(--teal); font-weight: 700; font-size: 14px; }

/* Tape deck / countdown */
.section-deck{ text-align: center; }
.section-deck .section-lede{ margin-left: auto; margin-right: auto; }
.deck-panel{
  position: relative;
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 44px 30px; max-width: 720px; margin: 0 auto; box-shadow: var(--shadow);
}
.deck-ca{ margin-bottom: 34px; }
.deck-ca-label{ font-family: var(--font-display); letter-spacing: .12em; font-size: 13px; color: var(--muted); }
.deck-ca-row{ display: flex; align-items: center; justify-content: center; gap: 12px; margin: 10px 0; flex-wrap: wrap; }
.deck-ca-value{ font-size: 15px; color: var(--muted); letter-spacing: .05em; }
.deck-ca-hint{ font-size: 12.5px; color: var(--muted); }

.countdown{ display: flex; align-items: center; justify-content: center; gap: 14px; margin-bottom: 22px; }
.countdown-unit{ display: flex; flex-direction: column; align-items: center; min-width: 66px; }
.countdown-num{
  font-family: var(--font-display); font-size: clamp(36px, 6vw, 54px); line-height: 1;
  background: linear-gradient(135deg, var(--orange), var(--amber)); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.countdown-label{ font-size: 11px; letter-spacing: .1em; color: var(--muted); margin-top: 4px; }
.countdown-colon{ font-family: var(--font-display); font-size: 34px; color: var(--muted); }
.deck-when{ font-weight: 700; letter-spacing: .04em; color: var(--ink); margin: 0; }

.buy-panel{ border-color: rgba(56,199,188,.4); box-shadow: var(--shadow), 0 0 0 1px rgba(56,199,188,.12); }
.buy-panel .deck-ca-value{ color: var(--ink); }
.buy-actions{ display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }

/* FAQ */
.faq-list{ display: flex; flex-direction: column; gap: 12px; }
.faq-item{ background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; }
.faq-q{
  width: 100%; display: flex; align-items: center; justify-content: space-between; text-align: left;
  background: none; border: none; color: var(--ink); font-weight: 700; font-size: 16px; padding: 18px 22px;
}
.faq-plus{ color: var(--orange); font-size: 20px; transition: transform .25s ease; }
.faq-item.open .faq-plus{ transform: rotate(45deg); }
.faq-a{ max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a p{ margin: 0; padding: 0 22px 20px; color: var(--muted); font-size: 14.5px; }
.faq-a a{ color: var(--teal); text-decoration: underline; }

/* ==========================================================================
   Rewind Crew — decorative characters, cropped from the project pfp,
   hanging off cards and peeking around sections
   ========================================================================== */
.deco-kid{
  position: absolute;
  width: 92px; height: 92px;
  object-fit: contain;
  pointer-events: none;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,.55));
  z-index: 3;
  animation: deco-bob 4.5s ease-in-out infinite;
  transform: rotate(var(--tilt, 0deg));
}
@keyframes deco-bob{
  0%, 100%{ transform: translateY(0) rotate(var(--tilt, 0deg)); }
  50%{ transform: translateY(-8px) rotate(var(--tilt, 0deg)); }
}
@media (prefers-reduced-motion: reduce){ .deco-kid{ animation: none; } }
@media (max-width: 760px){ .deco-kid, .rewind-combo{ display: none; } }

.deco-hero-peek{ top: -30px; right: 30px; width: 108px; height: 108px; --tilt: -3deg; z-index: 5; }
.deco-plan-pizza{ top: -34px; left: -18px; width: 96px; height: 96px; --tilt: -9deg; }
.deco-trivia-controller{ bottom: -30px; right: -20px; width: 100px; height: 100px; --tilt: 7deg; }
.deco-fair-shocked{ top: -32px; right: 26px; width: 88px; height: 88px; --tilt: 8deg; }
.deco-tapedeck-lightning{ top: -30px; left: 14px; width: 92px; height: 92px; --tilt: -6deg; }

/* the "trying to rewind" bit — a kid with fists up next to a floating
   VHS tape, a pencil spinning in its reel like the old rewind-by-hand trick */
.rewind-combo{
  position: absolute; top: -46px; left: -22px; width: 170px; height: 120px;
  pointer-events: none; z-index: 4;
}
.rewind-combo .deco-kid{ position: absolute; top: 6px; left: 0; width: 96px; height: 96px; --tilt: -5deg; }
.rewind-combo .rewind-tape{
  position: absolute; top: 46px; left: 66px; width: 104px; height: auto;
  filter: drop-shadow(0 8px 16px rgba(0,0,0,.55));
  animation: deco-bob 4.5s ease-in-out infinite;
  animation-delay: .3s;
}
@media (prefers-reduced-motion: reduce){ .rewind-combo .rewind-tape{ animation: none; } }
.rewind-combo .rewind-pencil{
  position: absolute; top: 74px; left: 96px; font-size: 20px; line-height: 1;
  animation: pencil-spin 1s linear infinite;
  transform-origin: 50% 50%;
}
@keyframes pencil-spin{ to{ transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce){ .rewind-combo .rewind-pencil{ animation: none; } }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer{ background: var(--bg-alt); border-top: 1px solid var(--line); padding: 56px 0 0; }
.footer-grid{ display: grid; grid-template-columns: 1.3fr 1fr auto; gap: 30px; align-items: start; padding-bottom: 40px; }
.footer-brand{ display: flex; flex-direction: column; gap: 8px; }
.footer-brand .brand-mark{ margin-bottom: 6px; }
.footer-brand p{ color: var(--muted); font-size: 13.5px; margin: 4px 0 0; }
.footer-nav{ display: flex; flex-direction: column; gap: 10px; }
.footer-nav a{ color: var(--muted); font-size: 14px; transition: color .2s ease; }
.footer-nav a:hover{ color: var(--orange); }
.footer-social{ display: flex; gap: 10px; align-self: start; }
.footer-bottom{ border-top: 1px solid var(--line); padding: 20px 24px; }
.footer-bottom p{ margin: 0; color: var(--muted); font-size: 12.5px; text-align: center; }

.back-to-top{
  position: fixed; right: 22px; bottom: 22px; z-index: 80;
  width: 46px; height: 46px; border-radius: 50%; background: var(--panel); border: 1px solid var(--line);
  color: var(--ink); font-size: 18px; opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: opacity .25s ease, transform .25s ease, border-color .2s ease, visibility .25s ease;
}
.back-to-top.visible{ opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover{ border-color: var(--orange); color: var(--orange); }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 980px){
  .main-nav{ display: none; }
  .hamburger{ display: flex; }
  .hero-grid{ grid-template-columns: 1fr; }
  .hero-tv{ order: -1; max-width: 340px; margin: 0 auto; }
  .story-grid{ grid-template-columns: 1fr; }
  .plan-grid{ grid-template-columns: 1fr 1fr; }
  .pledge-grid{ grid-template-columns: 1fr 1fr; }
  .community-grid{ grid-template-columns: 1fr; }
  .footer-grid{ grid-template-columns: 1fr; }
  .footer-social{ align-self: auto; }
}

@media (max-width: 620px){
  .section{ padding: 70px 0; }
  .plan-grid{ grid-template-columns: 1fr; }
  .pledge-grid{ grid-template-columns: 1fr; }
  .trivia-options{ grid-template-columns: 1fr; }
  .countdown{ gap: 8px; }
  .countdown-unit{ min-width: 54px; }
  .countdown-colon{ font-size: 24px; }
  .header-actions .btn-sm{ display: none; }
}
