/* ==========================================================================
   BLOCK PARTY — SHARED BRAND SHEET
   One source of truth for both sites (public/ and partners/).

   DO NOT EDIT THE COPIES.  This file is the master; a build step copies it
   to public/assets/brand.css and partners/assets/brand.css.
   Run:  ./build.sh
   ========================================================================== */

@font-face {
  font-family: 'Bebas Neue';
  src: url('fonts/BebasNeue-Regular.woff2') format('woff2'),
       url('fonts/BebasNeue-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  /* Ground */
  --bg:        #0B0B0C;
  --bg-raised: #131316;
  --bg-sunk:   #08080A;

  /* Ink */
  --cream:  #F6F4EF;
  --silver: #B7B7BB;
  --muted:  #8A8681;
  --faint:  #67645F;

  /* Accent — the label orange. Muted on purpose so it can sit under text. */
  --accent:      #E2701F;
  --accent-soft: rgba(226, 112, 31, .14);
  --accent-line: rgba(226, 112, 31, .38);

  /* Plaques — taken from the in-app record art, never invented */
  --gold:    #D9A441;
  --diamond: #8FD3E8;

  /* Structure */
  --line:      #26262A;
  --line-soft: #1B1B1F;
  --radius:    14px;
  --radius-lg: 20px;

  /* Type */
  --display: 'Bebas Neue', Impact, 'Arial Narrow', sans-serif;
  --body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
          Helvetica, Arial, sans-serif;

  /* Rhythm */
  --shell: 1080px;
  --read:  720px;
}

/* --------------------------------------------------------------- reset -- */

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; overflow-x: hidden; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--cream);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
h1, h2, h3, h4, p, figure, blockquote { margin: 0; }
ul, ol { margin: 0; padding: 0; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}

/* ------------------------------------------------------- vinyl grooves -- */
/* The motif behind the app's home screen. Decorative only. */

.grooves {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image: repeating-radial-gradient(circle at 50% 26%,
    rgba(226,112,31,.065) 0px, rgba(226,112,31,.065) 1.5px,
    transparent 1.5px, transparent 26px);
  -webkit-mask-image: radial-gradient(circle at 50% 26%, #000 0%, #000 38%, transparent 72%);
          mask-image: radial-gradient(circle at 50% 26%, #000 0%, #000 38%, transparent 72%);
}

/* ------------------------------------------------------------- layout -- */

.shell { width: 100%; max-width: var(--shell); margin: 0 auto; padding: 0 24px; }
.read  { max-width: var(--read); }
.center { text-align: center; margin-left: auto; margin-right: auto; }

section { position: relative; z-index: 1; padding: 84px 0; }
section + section { border-top: 1px solid var(--line-soft); }

/* --------------------------------------------------------------- type -- */

.eyebrow {
  font-family: var(--display);
  font-size: 15px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

h1, .h1 {
  font-family: var(--display);
  font-size: clamp(38px, 7.2vw, 72px);
  line-height: 1.04;
  letter-spacing: .015em;
  text-transform: uppercase;
}

h2, .h2 {
  font-family: var(--display);
  font-size: clamp(28px, 4.6vw, 44px);
  line-height: 1.1;
  letter-spacing: .02em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

h3, .h3 {
  font-family: var(--display);
  font-size: clamp(19px, 2.4vw, 23px);
  line-height: 1.2;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 8px;
}

.lede  { font-size: clamp(17px, 2.1vw, 20px); line-height: 1.62; color: var(--silver); }
.body  { color: var(--silver); }
.small { font-size: 14.5px; color: var(--muted); line-height: 1.7; }
.note  { font-size: 13px; color: var(--faint); line-height: 1.7; }

strong, b { color: var(--cream); font-weight: 600; }
em { font-style: italic; color: var(--cream); }

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------------------------------------------------------- fact rows -- */

.facts { display: flex; gap: 40px; flex-wrap: wrap; }
.facts.center { justify-content: center; }
.fact strong {
  font-family: var(--display);
  display: block;
  font-size: clamp(30px, 6vw, 42px);
  color: var(--accent);
  line-height: 1;
  letter-spacing: .02em;
  font-weight: 400;
}
.fact span {
  display: block;
  font-size: 11.5px;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-top: 8px;
}

/* -------------------------------------------------------------- cards -- */

.grid { display: grid; gap: 18px; }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }

.card {
  background: var(--bg-raised);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
}
.card .num {
  font-family: var(--display);
  font-size: 15px;
  letter-spacing: .16em;
  color: var(--accent);
  display: block;
  margin-bottom: 10px;
}
.card p { color: var(--silver); font-size: 15.5px; line-height: 1.62; }

/* --------------------------------------------------------------- pill -- */

.pill {
  display: inline-block;
  font-family: var(--display);
  border: 1.5px solid var(--accent);
  color: var(--accent);
  border-radius: 999px;
  padding: 12px 28px 8px;
  font-size: 18px;
  letter-spacing: .12em;
}
.pill-soft {
  border-color: var(--line);
  color: var(--silver);
  background: var(--bg-raised);
}

/* ------------------------------------------------------------- tables -- */

.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  /* Make the horizontal scrollbar visible on the dark ground — otherwise the
     table looks truncated rather than scrollable. */
  scrollbar-width: thin;
  scrollbar-color: var(--line) transparent;
}

/* On a phone the tables are wider than the screen by design. Say so, once,
   pinned to the left edge so it stays put while the table moves under it. */
@media (max-width: 720px) {
  .table-wrap::before {
    content: 'Swipe the table sideways →';
    position: sticky;
    left: 0;
    display: block;
    width: max-content;
    font-size: 11.5px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--faint);
    margin-bottom: 12px;
  }
}
table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  font-size: 15px;
  text-align: left;
}
th, td {
  border-bottom: 1px solid var(--line);
  padding: 14px 16px;
  vertical-align: top;
  color: var(--silver);
}
th {
  font-family: var(--display);
  font-size: 13.5px;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--cream);
  border-bottom-color: var(--line);
  white-space: nowrap;
}
td strong { color: var(--cream); }
tbody tr:last-child td { border-bottom: 0; }

/* ------------------------------------------------------------ callout -- */

.callout {
  background: var(--accent-soft);
  border: 1px solid var(--accent-line);
  border-radius: var(--radius);
  padding: 20px 24px;
}
/* A parenthetical inside a display headline: same face, dialled back, so the
   aside reads as an aside without dropping out of the lockup. */
h1 .aside, h2 .aside { color: var(--muted); font-size: .58em; letter-spacing: .04em; }

/* The positioning claim on the partner overview: the one bubble that has to
   land, so it gets a bigger measure and bigger type than a normal callout. */
.callout.big { padding: 34px 38px; border-width: 1.5px; }
.callout.big p { font-size: clamp(18px, 2.3vw, 23px); line-height: 1.5; color: var(--cream); }
.callout.big strong { color: var(--accent); }
@media (max-width: 620px) { .callout.big { padding: 26px 22px; } }

.callout.plain {
  background: var(--bg-raised);
  border-color: var(--line);
}
.callout p { color: var(--silver); font-size: 15.5px; }

/* -------------------------------------------------------------- steps -- */

.steps { list-style: none; display: grid; gap: 2px; }
.step {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line-soft);
}
.step .when {
  font-family: var(--display);
  font-size: 15px;
  letter-spacing: .1em;
  color: var(--accent);
  padding-top: 3px;
}
@media (max-width: 620px) {
  .step { grid-template-columns: 1fr; gap: 6px; }
}

/* ---------------------------------------------------------------- nav -- */

.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(11, 11, 12, .88);
  backdrop-filter: saturate(150%) blur(12px);
  -webkit-backdrop-filter: saturate(150%) blur(12px);
  border-bottom: 1px solid var(--line-soft);
}
.topbar .shell {
  display: flex;
  align-items: center;
  gap: 22px;
  min-height: 60px;
  flex-wrap: wrap;
  padding-top: 8px;
  padding-bottom: 8px;
}
.topbar .mark { width: 118px; flex: 0 0 auto; }
.topbar nav { display: flex; gap: 20px; flex-wrap: wrap; margin-left: auto; }
.topbar nav a {
  font-family: var(--display);
  font-size: 15px;
  letter-spacing: .11em;
  text-transform: uppercase;
  color: var(--silver);
  text-decoration: none;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
}
.topbar nav a:hover { color: var(--cream); text-decoration: none; }
.topbar nav a[aria-current="page"] { color: var(--accent); border-bottom-color: var(--accent); }

/* ------------------------------------------------------------- footer -- */

footer.site {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--line);
  padding: 44px 0 56px;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 2;
}
footer.site nav { margin-bottom: 10px; }
footer.site nav a {
  color: var(--cream);
  border-bottom: 1px solid var(--line);
  padding-bottom: 2px;
  text-decoration: none;
}
footer.site nav a:hover { color: var(--accent); border-color: var(--accent); text-decoration: none; }
footer.site .dot { margin: 0 10px; color: var(--line); }
footer.site .legal {
  font-size: 11.5px;
  color: var(--faint);
  max-width: 560px;
  margin: 14px auto 0;
  line-height: 1.8;
}


/* ============================================================== SCREENS == */
/* App screenshots. Captured from the real build — never a mockup.          */

.phone {
  border-radius: 26px;
  border: 1px solid var(--line);
  overflow: hidden;
  background: var(--bg-sunk);
  box-shadow: 0 24px 60px rgba(0,0,0,.55);
  display: block;
  width: 100%;
}
.phone img { display: block; width: 100%; }

/* A row of phones that scrolls sideways on small screens. */
.screens {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(210px, 1fr);
  gap: 18px;
  overflow-x: auto;
  padding-bottom: 10px;
  scrollbar-width: thin;
  scrollbar-color: var(--line) transparent;
}
.screens figure { margin: 0; }
.screens figcaption {
  margin-top: 12px;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--muted);
}
.screens figcaption b { color: var(--cream); display: block; margin-bottom: 2px; font-weight: 600; }

/* One screenshot beside a block of text. */
.showcase {
  display: grid;
  gap: 40px;
  grid-template-columns: minmax(0,1fr) minmax(240px, 320px);
  align-items: center;
}
.showcase.flip { grid-template-columns: minmax(240px, 320px) minmax(0,1fr); }
@media (max-width: 780px) {
  .showcase, .showcase.flip { grid-template-columns: 1fr; }
  .showcase .phone { max-width: 300px; margin: 0 auto; }
}

/* ================================================================ ART ==== */

.tiles {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(112px, 1fr));
  gap: 12px;
}
.tiles img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--line);
}
.tile-name {
  font-size: 12.5px;
  color: var(--silver);
  margin-top: 7px;
  line-height: 1.35;
}
.tile-name span { display: block; color: var(--faint); font-size: 11.5px; }

/* The avatar wall: 24 looks, one per hairstyle. 24 divides by 8, 6 and 4, so
   every breakpoint lands on full rows and never a stray orphan. */
.face-wall { display: grid; grid-template-columns: repeat(8, 1fr); gap: clamp(8px, 1.3vw, 18px); }
.face-wall img {
  width: 100%; aspect-ratio: 1; border-radius: 50%; object-fit: cover;
  border: 2px solid var(--line); background: var(--bg-raised);
  transition: transform .2s ease, border-color .2s ease;
}
.face-wall img:hover { transform: translateY(-5px); border-color: var(--accent); }
@media (max-width: 900px) { .face-wall { grid-template-columns: repeat(6, 1fr); } }
@media (max-width: 560px) { .face-wall { grid-template-columns: repeat(4, 1fr); } }

/* Store shelves: one row per store category, the same four the app's How to
   Play sheet teaches. Three covers, the shelf name, its hook and a from-price. */
.shelves { display: grid; gap: 12px; }
.shelf-row {
  display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: clamp(14px, 2vw, 26px);
  background: var(--bg-raised); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 16px 20px; transition: border-color .2s, transform .2s;
}
.shelf-row:hover { border-color: var(--accent-line); transform: translateY(-2px); }
.shelf-art { display: flex; }
.shelf-art img {
  width: clamp(44px, 7vw, 62px); aspect-ratio: 1; border-radius: 10px; object-fit: cover;
  border: 1px solid var(--line); margin-left: -14px; box-shadow: 0 6px 14px rgba(0,0,0,.5);
}
.shelf-art img:first-child { margin-left: 0; }
.shelf-name { font-family: var(--display); font-size: clamp(17px, 2.2vw, 22px); letter-spacing: .05em; text-transform: uppercase; color: var(--cream); }
.shelf-hook { font-size: 13.5px; color: var(--muted); margin-top: 2px; }
.shelf-price { font-family: var(--display); font-size: clamp(15px, 2vw, 19px); letter-spacing: .05em; color: var(--accent); white-space: nowrap; }
.shelf-count { font-size: 11px; color: var(--faint); letter-spacing: .1em; text-transform: uppercase; margin-top: 3px; text-align: right; }
@media (max-width: 620px) {
  .shelf-row { grid-template-columns: auto 1fr; row-gap: 10px; }
  .shelf-price, .shelf-count { grid-column: 2; text-align: left; }
}

/* Avatar busts sit on their own warm ground, so they get a round frame. */
.faces { display: flex; flex-wrap: wrap; gap: 12px; }
.faces img {
  width: 74px; height: 74px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--line);
}
@media (max-width: 520px) { .faces img { width: 60px; height: 60px; } }

/* A price, said out loud. */
.price-tag {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  font-family: var(--display);
  color: var(--accent);
  font-size: 26px;
  letter-spacing: .04em;
}
.price-tag s { color: var(--faint); font-size: 17px; }


/* ============================================================= MASTHEAD == */
/* The partner site opens on a branded panel, not a nav bar with a small
   logo in the corner. The disc is the brand's loudest asset — use it big. */

.masthead {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(115% 150% at 80% 22%, rgba(226,112,31,.20) 0%, transparent 60%),
    var(--bg-sunk);
  padding: 76px 0 56px;
}

/* The disc sits behind the type, bled off the right edge, low contrast so it
   reads as texture rather than a picture competing with the headline. */
.masthead .disc-bleed {
  position: absolute;
  top: 50%;
  right: -190px;
  width: 780px;
  transform: translateY(-50%);
  opacity: .38;
  pointer-events: none;
  -webkit-mask-image: radial-gradient(circle at 50% 50%, #000 42%, transparent 74%);
          mask-image: radial-gradient(circle at 50% 50%, #000 42%, transparent 74%);
}
@media (max-width: 900px) { .masthead .disc-bleed { right: -260px; width: 520px; opacity: .20; } }
@media (max-width: 560px) { .masthead .disc-bleed { right: -230px; width: 400px; opacity: .16; } }

.masthead .shell { position: relative; z-index: 2; }

.masthead .mark-lockup {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-bottom: 40px;
  text-decoration: none;
}
.masthead .mark-lockup .spin { width: 108px; flex: 0 0 auto; }
.masthead .mark-lockup .word { width: min(64vw, 440px); }
@media (max-width: 700px) {
  .masthead .mark-lockup { gap: 16px; margin-bottom: 30px; }
  .masthead .mark-lockup .spin { width: 68px; }
  .masthead .mark-lockup .word { width: min(62vw, 300px); }
}

/* The rule under the wordmark that carries the document's name. */
.masthead .doc-line {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.masthead .doc-name {
  font-family: var(--display);
  font-size: clamp(17px, 2.4vw, 21px);
  letter-spacing: .17em;
  text-transform: uppercase;
  color: var(--cream);
}
.masthead .doc-tag {
  font-family: var(--display);
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--faint);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 13px 3px;
}
.masthead .doc-tag.live { color: var(--accent); border-color: var(--accent-line); }

/* ------------------------------------------------------------- navbar --- */
/* Now purely navigation — the branding moved up into the masthead. */

.topbar.slim .shell { min-height: 52px; }
.topbar.slim .mark { width: 108px; opacity: 1; }

/* ------------------------------------------------------- decade strip --- */
/* Seven decades of art, used as a texture band. Decorative only. */

.decade-strip {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
}
.decade-strip img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid var(--line);
}
.decade-strip figcaption {
  font-family: var(--display);
  font-size: 12.5px;
  letter-spacing: .1em;
  color: var(--muted);
  text-align: center;
  margin-top: 6px;
}
@media (max-width: 700px) {
  .decade-strip { grid-template-columns: repeat(4, 1fr); }
}

/* --------------------------------------------------------- branded end -- */

footer.site .end-mark {
  width: 54px;
  margin: 0 auto 18px;
  opacity: .5;
}


/* ================================================================ STAGE == */
/* The public home page, rebuilt 5 Sep 2026 on the Cowork prototype's
   editorial skin: full-height hero, genre ticker, numbered section heads,
   an animated demo round, and a milk crate that fills as you scroll.
   Everything below is used by public/index.html and public/assets/site.js. */

/* film grain, fixed over everything, barely there */
.grain {
  position: fixed; inset: -50%; z-index: 200; pointer-events: none; opacity: .045;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grainShift 1.2s steps(4) infinite;
}
@keyframes grainShift {
  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) }
}
@keyframes rot { to { transform: rotate(360deg) } }
@keyframes tick { to { transform: translateX(-50%) } }

/* buttons */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--display); letter-spacing: .12em; text-transform: uppercase;
  font-size: 16px; color: var(--bg); background: var(--accent);
  border: 0; border-radius: 999px; padding: 15px 30px 11px; cursor: pointer;
  text-decoration: none; transition: transform .18s ease, box-shadow .18s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(226,112,31,.35); text-decoration: none; color: var(--bg); }
.btn.ghost { background: transparent; color: var(--cream); box-shadow: 0 0 0 1px var(--line) inset; }
.btn.ghost:hover { box-shadow: 0 0 0 1px var(--accent) inset; color: var(--accent); }
.btn-row { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }

/* slim sticky nav for the stage page */
.stagebar .shell { min-height: 58px; }
.stagebar .mark { width: 112px; }
.stagebar nav a { font-size: 14px; }
.stagebar .btn { padding: 11px 20px 8px; font-size: 13px; margin-left: 8px; }
@media (max-width: 640px) { .stagebar nav { display: none; } .stagebar .btn { margin-left: auto; } }

/* --------------------------------------------------------------- hero -- */
.stage-hero {
  position: relative; min-height: 100svh; display: flex; align-items: center;
  overflow: hidden; z-index: 1;
  background: radial-gradient(90% 120% at 82% 40%, rgba(226,112,31,.16) 0%, transparent 58%), var(--bg);
}
.stage-hero .vinyl {
  position: absolute; top: 50%; right: 0; z-index: 1;
  width: min(48vw, 700px); aspect-ratio: 1; transform: translate(30%, -52%);
}
.stage-hero .vinyl svg { width: 100%; height: 100%; display: block; animation: rot 16s linear infinite; }
.stage-hero .inner { position: relative; z-index: 2; width: 100%; padding-top: 96px; padding-bottom: 56px; }
.stage-hero .eyebrow { display: flex; align-items: center; gap: 10px; }
.stage-hero .eyebrow::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--accent); animation: pulseDot 2s ease infinite; }
@keyframes pulseDot { 0%,100% { opacity: 1 } 50% { opacity: .3 } }
.stage-hero h1 {
  /* Capped so the two lines clear the record's orange label at every laptop
     width. 132px used to run 393px into the disc at 1440. Re-measure at 1024,
     1280, 1440 and 1680 before raising this. */
  font-size: clamp(56px, 7.6vw, 116px); line-height: .9; letter-spacing: .005em; margin-bottom: 24px;
  max-width: 14ch;
}
.stage-hero h1 b { display: block; color: var(--accent); font-weight: 400; }
.stage-hero .sub { color: var(--silver); font-size: clamp(16px, 1.5vw, 19px); line-height: 1.6; max-width: 470px; margin-bottom: 30px; }
.stage-hero .facts { margin-top: 46px; padding-top: 26px; border-top: 1px solid var(--line); gap: clamp(28px, 5vw, 64px); }
.stage-hero .fact strong { color: var(--cream); font-size: clamp(30px, 3.6vw, 48px); }
@media (max-width: 780px) {
  .stage-hero { align-items: flex-start; }
  .stage-hero .vinyl { width: 120vw; right: auto; left: 50%; top: auto; bottom: -12%; transform: translate(-50%, 42%); opacity: .5; }
  .stage-hero .inner { padding-top: 100px; }
  .stage-hero .facts { margin-top: 40px; }
}

/* ------------------------------------------------------------- ticker -- */
.ticker { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); overflow: hidden; padding: 18px 0; background: var(--bg); position: relative; z-index: 1; }
.ticker-track { display: flex; width: max-content; animation: tick 40s linear infinite; will-change: transform; }
.ticker-track:hover { animation-play-state: paused; }
.ticker span {
  font-family: var(--display); font-size: clamp(30px, 4vw, 54px); line-height: 1; white-space: nowrap;
  color: transparent; -webkit-text-stroke: 1px rgba(246,244,239,.42); padding-right: 28px; text-transform: uppercase;
}
.ticker span b { color: var(--accent); -webkit-text-stroke: 0; font-weight: 400; padding-left: 22px; }

/* ---------------------------------------------------------- sections -- */
.stage section { padding: 0; }
.stage section + section { border-top: 0; }
.sec-head {
  display: flex; align-items: flex-end; justify-content: space-between; gap: 24px;
  padding: 110px 0 60px; flex-wrap: wrap;
}
.sec-head .idx { font-family: var(--display); font-size: 13px; letter-spacing: .22em; color: var(--accent); text-transform: uppercase; white-space: nowrap; }
/* Headlines here run 17 to 34 characters. `balance` evens the line breaks so a
   longer one never leaves a stray word on its own line. Anything past ~36
   characters does not belong at this scale: split it and start the lede with
   the second half, the way the Packs section does. */
.sec-head h2 { font-size: clamp(44px, 6.4vw, 92px); line-height: .92; letter-spacing: .005em; max-width: 14ch; margin: 0; text-wrap: balance; }
.sec-head p { color: var(--muted); font-size: 15.5px; line-height: 1.65; max-width: 340px; }
.sec-head .l { display: grid; gap: 18px; }
@media (max-width: 780px) { .sec-head { padding-top: 84px; } .sec-head p { max-width: none; } }
.sec-body { padding-bottom: 120px; }
.rule { border: 0; border-top: 1px solid var(--line); margin: 0; }

/* numbered beats beside a phone */
.beats-grid { display: flex; gap: clamp(40px, 7vw, 120px); align-items: center; flex-wrap: wrap; }
.beats { flex: 1 1 380px; min-width: 280px; }
.beat { display: grid; grid-template-columns: 44px 1fr; gap: 12px; padding: 24px 0; border-top: 1px solid var(--line); }
.beat:last-child { border-bottom: 1px solid var(--line); }
.beat .num { font-family: var(--display); color: var(--accent); font-size: 14px; letter-spacing: .12em; padding-top: 6px; }
.beat h3 { margin-bottom: 6px; font-size: clamp(20px, 2.4vw, 26px); }
.beat p { color: var(--muted); font-size: 15px; line-height: 1.6; }
.beat.active { background: linear-gradient(90deg, var(--accent-soft), transparent 70%); }
.beat.pick { cursor: pointer; padding-left: 12px; margin-left: -12px; border-left: 3px solid transparent; transition: border-color .2s; }
.beat.pick.active { border-left-color: var(--accent); }
.phone-col { flex: 0 0 auto; margin: 0 auto; }

/* the demo phone: a replica of GameScreen in Music Lover, from the 5 Sep
   screen recording. Header line, two chips, turntable, Play pill, ladder,
   TAP THE SONG YOU HEAR, four titles, then the green answer card. */
.demo-phone {
  width: min(300px, 78vw); aspect-ratio: 280/600; border-radius: 40px; background: #000;
  border: 1px solid rgba(255,255,255,.14); box-shadow: 0 40px 100px rgba(0,0,0,.6), 0 0 0 10px #131215;
  overflow: hidden; position: relative;
}
.game { position: absolute; inset: 0; background: var(--bg); display: flex; flex-direction: column; padding: 18px 14px 0; font-size: 12px; }
.game::before { content: ''; position: absolute; inset: -40% -60% auto -60%; height: 140%; pointer-events: none; z-index: 0;
  background: repeating-radial-gradient(circle at 50% 30%, rgba(226,112,31,.10) 0 1px, transparent 1px 22px); }
.game > * { position: relative; z-index: 1; }
.game .flash { position: absolute; inset: 0; background: rgba(226,112,31,.16); opacity: 0; pointer-events: none; z-index: 40; }
.g-top { display: flex; align-items: center; justify-content: center; position: relative; height: 22px; }
.g-top .x { position: absolute; left: 0; color: var(--muted); font-size: 16px; line-height: 1; }
.g-top img { width: 96px; }
.g-line { text-align: center; font-family: var(--display); font-size: 10.5px; letter-spacing: .16em; color: var(--muted); text-transform: uppercase; margin-top: 8px; }
.g-line b { color: var(--accent); font-weight: 400; }
.g-line .streak { color: var(--accent); margin-left: 4px; opacity: 0; transition: opacity .3s; }
.g-line .streak.show { opacity: 1; }
.g-chips { display: flex; justify-content: center; gap: 6px; margin-top: 8px; }
.g-chips span { font-size: 9.5px; color: var(--accent); border: 1px solid var(--accent-line); border-radius: 999px; padding: 3px 9px; }
.g-turntable { position: relative; width: 118px; height: 118px; margin: 14px auto 0; }
.g-turntable .disc { width: 100%; height: 100%; animation: rot 2.6s linear infinite; animation-play-state: paused; }
.g-turntable.playing .disc { animation-play-state: running; }
.g-tonearm {
  position: absolute; top: -8%; right: -16%; height: 118%; width: auto;
  transform-origin: 50% 22%; transform: rotate(-4deg);
  transition: transform .6s cubic-bezier(.34,1.2,.64,1); z-index: 4;
  filter: drop-shadow(0 6px 10px rgba(0,0,0,.45));
}
.g-turntable.playing .g-tonearm { transform: rotate(16deg); }
.g-play { display: block; margin: 14px auto 0; background: var(--accent); color: #fff; font-weight: 700; font-size: 12px; border-radius: 999px; padding: 9px 26px; min-width: 128px; text-align: center; transition: background .2s; }
.g-play.dim { background: #7a3d12; }
.g-ladder { display: flex; justify-content: center; gap: 5px; margin: 14px 0 0; }
.g-ladder i { font-style: normal; flex: 1; max-width: 64px; text-align: center; background: #1B1B1F; border: 1px solid transparent; border-radius: 9px; padding: 5px 0 4px; line-height: 1.15; color: var(--muted); }
.g-ladder i b { display: block; font-size: 11px; color: var(--silver); font-weight: 700; }
.g-ladder i small { font-size: 8px; }
.g-ladder i.on { background: var(--accent); color: rgba(255,255,255,.85); }
.g-ladder i.on b { color: #fff; }
.g-ladder i.spent { background: var(--accent); border-color: #fff; color: rgba(255,255,255,.85); }
.g-ladder i.spent b { color: #fff; }
.g-tap { text-align: center; font-family: var(--display); font-size: 10px; letter-spacing: .18em; color: var(--muted); margin-top: 12px; }
.g-opts { display: flex; flex-direction: column; gap: 6px; margin-top: 7px; }
.g-opt {
  border: 1px solid #2E2E33; background: #141317; border-radius: 10px; padding: 8px 10px; font-size: 11.5px; color: var(--cream); text-align: center; font-weight: 600;
  opacity: 0; transform: translateY(6px); transition: opacity .3s, transform .3s, background .2s, border-color .2s; position: relative;
}
.g-opt.in { opacity: 1; transform: none; }
.g-opt.scan { border-color: var(--accent); }
.g-opt.correct { background: var(--accent); border-color: var(--accent); color: #fff; }
.g-result { position: absolute; left: 14px; right: 14px; top: 232px; opacity: 0; transform: translateY(8px); transition: opacity .35s, transform .35s; pointer-events: none; z-index: 5; }
.g-result.show { opacity: 1; transform: none; }
.g-result .tick { text-align: center; color: #3DDC84; font-size: 30px; line-height: 1; font-weight: 700; }
.g-result .quip { text-align: center; font-size: 10px; color: var(--silver); margin: 4px 0 8px; }
.g-card { border: 1.5px solid #3DDC84; border-radius: 12px; padding: 12px 10px; text-align: center; background: #101014; }
.g-card .k { font-family: var(--display); font-size: 9.5px; letter-spacing: .2em; color: var(--muted); }
.g-card .t { font-size: 15px; font-weight: 800; color: #fff; margin-top: 4px; line-height: 1.15; }
.g-card .a { font-size: 11px; color: var(--silver); margin-top: 2px; }
.g-card .f { font-size: 9.5px; font-style: italic; color: var(--muted); margin-top: 6px; }
.g-card .c { font-size: 9.5px; color: #3DDC84; margin-top: 6px; font-weight: 600; }
.g-next { position: absolute; left: 0; right: 0; bottom: 0; padding: 12px 14px 16px; background: #0B0B0C; border-top: 1px solid #1B1B1F; transform: translateY(100%); transition: transform .35s; z-index: 6; }
.g-next.show { transform: none; }
.game.done .g-play, .game.done .g-ladder, .game.done .g-tap, .game.done .g-opts { visibility: hidden; }
.g-next span { display: block; background: var(--accent); color: #fff; font-weight: 700; font-size: 13px; border-radius: 999px; padding: 10px; text-align: center; }

/* --------------------------------------------------------------- crate -- */
/* Three milk crates. Records fly in and drop into them as you scroll. The
   lattice is a real mask, so record colour shows through the holes. Layers:
   mouth (behind) < records < crate front. */
.crate-progress { display: flex; align-items: center; gap: 16px; color: var(--muted); font-size: 12px; letter-spacing: .16em; text-transform: uppercase; margin-bottom: 30px; flex-wrap: wrap; }
.crate-progress b { font-family: var(--display); color: var(--accent); font-size: 22px; letter-spacing: .04em; }
.crate-progress .bar { width: 220px; height: 2px; background: var(--line); overflow: hidden; }
.crate-progress .bar i { display: block; height: 100%; width: 0; background: var(--accent); }

.crate-wrap {
  position: relative; height: 520px; overflow: hidden;
  --crateW: clamp(106px, 26.5vw, 300px);
  --crateH: calc(var(--crateW) * .84);
  --recW: calc(var(--crateW) * .52);
}
.crate-row {
  position: absolute; left: 50%; bottom: 46px; transform: translateX(-50%);
  display: flex; gap: clamp(6px, 1.4vw, 16px);
}
.crate-row.back  { z-index: 1; }
.crate-row.front { z-index: 20; pointer-events: none; }
.crate { width: var(--crateW); height: var(--crateH); position: relative; }
/* the dark opening records disappear into */
.crate-mouth {
  position: absolute; inset: 0; border-radius: 9px 9px 13px 13px;
  background: linear-gradient(180deg, #000 0%, #08080A 34%, #0E0D10 100%);
  box-shadow: inset 0 12px 20px rgba(0,0,0,.95), 0 26px 50px rgba(0,0,0,.65);
}
.crate-front { position: absolute; inset: 0; }
.crate-front svg { width: 100%; height: 100%; display: block; }
.crate-front .wm {
  position: absolute; left: 50%; top: 50.5%; transform: translate(-50%,-50%);
  width: 64%; opacity: .58; filter: saturate(.65) brightness(.92);
}
.crate-stage { position: absolute; inset: 0; z-index: 10; }
.vslot { position: absolute; left: 0; top: 0; width: var(--recW); height: var(--recW); will-change: transform, opacity; }
.vslot svg { display: block; width: 100%; height: 100%; filter: drop-shadow(0 12px 20px rgba(0,0,0,.7)); }
@media (max-width: 780px) { .crate-wrap { height: 380px; } .crate-row { bottom: 30px; } }

.crate-cols { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: clamp(28px, 4vw, 64px); margin-top: 40px; border-top: 1px solid var(--line); padding-top: 40px; }
.crate-cols h3 { margin-bottom: 8px; }
.crate-cols p { color: var(--muted); font-size: 15px; line-height: 1.65; }

/* ------------------------------------------------------------- plaques -- */
.plaques { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }
.plaque {
  background: linear-gradient(180deg, #141317, #0E0D10); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 30px 26px 26px; text-align: center; position: relative; overflow: hidden;
}
.plaque::before { content: ''; position: absolute; inset: 0; background: radial-gradient(60% 40% at 50% 0%, var(--pc, var(--accent)) 0%, transparent 70%); opacity: .16; }
.plaque svg { width: 160px; height: 160px; margin: 0 auto 18px; display: block; position: relative; }
.plaque h3 { color: var(--pc); margin-bottom: 4px; }
.plaque .rule-line { font-family: var(--display); font-size: 15px; letter-spacing: .1em; color: var(--silver); margin-bottom: 10px; }
.plaque p { color: var(--muted); font-size: 14.5px; line-height: 1.6; position: relative; }
.plaque.gold { --pc: var(--gold); }
.plaque.platinum { --pc: #C7CBD1; }
.plaque.diamond { --pc: var(--diamond); }

/* -------------------------------------------------------------- badges -- */
.badge-wall { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 14px; }
.badge {
  background: var(--bg-raised); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px 12px 16px; text-align: center;
  position: relative; transition: transform .2s, border-color .2s;
}
.badge:hover { transform: translateY(-3px); border-color: var(--accent-line); }
.badge svg { width: 72px; height: 72px; margin: 0 auto 10px; display: block; }
.badge .bn { font-family: var(--display); font-size: 16px; letter-spacing: .06em; color: var(--faint); }
.badge.on .bn { color: var(--cream); }
.badge .bd { font-size: 12px; color: var(--muted); line-height: 1.45; margin-top: 4px; min-height: 34px; }
.badge .bt { position: absolute; top: 10px; right: 10px; font-family: var(--display); font-size: 10px; letter-spacing: .14em; color: var(--faint); }
.badge.on .bt { color: var(--accent); }
.ladders { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.ladders .pill { font-size: 15px; padding: 10px 20px 7px; }

/* --------------------------------------------------------------- today -- */
.today-grid { display: grid; grid-template-columns: minmax(0,1fr) minmax(260px, 340px); gap: 48px; align-items: center; }
@media (max-width: 780px) { .today-grid { grid-template-columns: 1fr; } .today-grid .phone { max-width: 300px; margin: 0 auto; } }
.share-card {
  background: var(--bg-raised); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 24px 26px; max-width: 420px;
  box-shadow: 0 30px 60px rgba(0,0,0,.5);
}
.share-card .sc-head { font-family: var(--display); font-size: 12px; letter-spacing: .2em; color: var(--muted); text-transform: uppercase; margin-bottom: 12px; }
.share-card .sc-line { font-family: var(--display); font-size: 30px; line-height: 1; color: var(--cream); margin-bottom: 14px; }
.share-card .sc-grid { font-size: 26px; letter-spacing: 4px; line-height: 1; margin-bottom: 14px; }
.share-card .sc-foot { display: flex; justify-content: space-between; align-items: center; font-size: 12.5px; color: var(--muted); border-top: 1px solid var(--line); padding-top: 12px; }
.share-card .sc-foot b { font-family: var(--display); color: var(--accent); font-size: 18px; letter-spacing: .06em; }
.streak-row { display: flex; gap: 8px; margin: 22px 0 6px; flex-wrap: wrap; }
.streak-row i { width: 30px; height: 30px; border-radius: 8px; background: var(--bg-raised); border: 1px solid var(--line); display: grid; place-items: center; font-style: normal; font-size: 13px; color: var(--faint); }
.streak-row i.on { background: var(--accent); border-color: var(--accent); color: var(--bg); font-weight: 700; }

/* --------------------------------------------------------------- party -- */
.guests { display: flex; align-items: center; margin: 24px 0 10px; }
.guests img { width: 64px; height: 64px; border-radius: 50%; border: 3px solid var(--bg); margin-left: -14px; object-fit: cover; box-shadow: 0 6px 16px rgba(0,0,0,.5); }
.guests img:first-child { margin-left: 0; }
.guests .more { margin-left: 14px; font-family: var(--display); font-size: 16px; letter-spacing: .1em; color: var(--accent); }
.party-glow { position: relative; overflow: hidden; }
.party-glow::before {
  content: ''; position: absolute; inset: -60%; border-radius: 50%; pointer-events: none; z-index: 0; opacity: .5;
  background: conic-gradient(from 0deg at 70% 50%, transparent 0 60%, rgba(226,112,31,.18) 66%, rgba(232,75,156,.14) 74%, rgba(63,184,187,.14) 82%, transparent 90%);
  animation: rot 28s linear infinite;
}
.party-glow > * { position: relative; z-index: 1; }

/* -------------------------------------------------------------- modes -- */
.mode-panel { background: var(--bg-raised); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 24px; margin-top: 22px; }
.mode-panel dl { display: grid; grid-template-columns: auto 1fr; gap: 8px 18px; margin: 0; font-size: 15px; }
.mode-panel dt { color: var(--faint); } .mode-panel dd { margin: 0; color: var(--cream); text-align: right; font-family: var(--display); font-size: 20px; letter-spacing: .04em; }

/* ------------------------------------------------------------ numbers -- */
.numbers { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 24px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 44px 0; }
.numbers .fact strong { color: var(--cream); font-size: clamp(40px, 5.6vw, 72px); }

/* ------------------------------------------------------------- notify -- */
.notify { display: flex; gap: 10px; flex-wrap: wrap; max-width: 520px; margin: 26px auto 0; }
.notify input {
  flex: 1 1 240px; background: var(--bg-raised); border: 1px solid var(--line); border-radius: 999px; color: var(--cream);
  font: inherit; font-size: 16px; padding: 14px 22px; outline: 0;
}
.notify input:focus { border-color: var(--accent); }
.notify .hp { position: absolute; left: -9999px; }

/* decades band */
.decade-band { display: grid; grid-template-columns: repeat(7, 1fr); gap: 10px; margin-top: 34px; }
.decade-band figure { position: relative; }
.decade-band img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 12px; border: 1px solid var(--line); transition: transform .25s; }
.decade-band figure:hover img { transform: translateY(-4px); }
.decade-band figcaption { font-family: var(--display); font-size: 14px; letter-spacing: .12em; color: var(--muted); text-align: center; margin-top: 8px; }
@media (max-width: 700px) { .decade-band { grid-template-columns: repeat(4, 1fr); } }
