/* ═══════════════════════════════════════════════════════════
   GENERAL ECLECTIC — Electric Co. (full-bleed, responsive)
   Cream paper · ink black · cherry / sky / gold primaries
   Mobile-first, desktop-enhanced.
   ═══════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Sniglet:wght@400;800&family=Fredoka:wght@300;400;500;600;700&family=IBM+Plex+Mono:wght@400;500;600&family=IBM+Plex+Serif:ital,wght@0,400;1,400;1,700&family=Noto+Serif+JP:wght@400;500;700&display=swap');

:root {
  /* Surface */
  --paper:    #FBF6E9;
  --paper-2:  #F4ECD8;
  --cream:    #FFFAEC;
  --ink:      #15171A;
  --ink-2:    #2A2C30;

  /* Primaries */
  --cherry:   #E63946;
  --cherry-d: #B0252F;
  --sky:      #6FCBE6;
  --sky-d:    #2C7A93;
  --gold:     #F0B429;
  --gold-d:   #8A6810;
  --green:    #1B4332;
  --green-d:  #0E2419;
  --signal:   #2BA37A;

  /* Type stacks */
  --f-display: 'Sniglet', 'Fredoka', system-ui, sans-serif;
  --f-body:    'Fredoka', 'Sniglet', system-ui, sans-serif;
  --f-mono:    'IBM Plex Mono', monospace;
  --f-serif:   'IBM Plex Serif', Georgia, serif;
  --f-jp:      'Noto Serif JP', serif;

  --ease:    cubic-bezier(.2, .7, .2, 1);
  --bounce:  cubic-bezier(.34, 1.56, .64, 1);

  --max:    1440px;   /* outer desktop max */
  --gutter: 22px;     /* mobile gutter */
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--f-body);
  background: var(--paper);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  overflow-x: hidden;
}
*::selection { background: var(--cherry); color: #fff; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
a { color: inherit; text-decoration: none; }
em { font-style: italic; }

/* paper grain — subtle dotted texture */
body::before {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none; z-index: 0;
  background-image: radial-gradient(rgba(21,23,26,0.05) 1px, transparent 1.2px);
  background-size: 22px 22px;
  opacity: 0.6;
}

.app { position: relative; z-index: 1; }

/* ═══════════════════════════════════════════════════════════
   TICKER — top live tape
   ═══════════════════════════════════════════════════════════ */
.ticker {
  background: var(--ink);
  color: var(--paper);
  height: 28px;
  display: flex; align-items: center;
  font-family: var(--f-mono);
  font-size: 10px; letter-spacing: 0.06em;
  text-transform: uppercase;
  overflow: hidden;
  white-space: nowrap;
  border-bottom: 2px solid var(--ink);
  position: relative;
}
.ticker__track {
  display: inline-flex; gap: 28px;
  padding-left: 28px;
  animation: tick 60s linear infinite;
}
@keyframes tick { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.ticker__item { display: inline-flex; gap: 6px; align-items: center; }
.ticker__item b { color: var(--gold); font-weight: 600; }
.ticker__item .up { color: var(--signal); }
.ticker__item .dn { color: var(--cherry); }
.ticker__item .dot { width: 5px; height: 5px; border-radius: 999px; background: var(--gold); }

/* ═══════════════════════════════════════════════════════════
   TOPBAR — sticky, brand + nav + hit pill
   ═══════════════════════════════════════════════════════════ */
.tb {
  position: sticky; top: 0; z-index: 30;
  background: rgba(251, 246, 233, 0.96);
  backdrop-filter: blur(14px);
  border-bottom: 2.5px solid var(--ink);
  padding: 12px 22px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
}

.tb__brand { display: flex; align-items: center; gap: 10px; cursor: pointer; }
.tb__dot {
  width: 14px; height: 14px; border-radius: 999px;
  background: var(--cherry);
  box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.18);
  transition: transform 0.3s var(--bounce);
}
.tb__brand:hover .tb__dot { transform: scale(1.25) rotate(-15deg); }
.tb__name {
  font-family: var(--f-display); font-weight: 800;
  font-size: 13.5px; letter-spacing: -0.015em;
  text-transform: lowercase;
}

/* desktop nav links */
.tb__nav {
  display: none;
  gap: 6px;
  justify-self: center;
}
.tb__nav a {
  font-family: var(--f-display); font-weight: 800;
  font-size: 12.5px;
  padding: 7px 14px; border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s var(--bounce);
}
.tb__nav a:hover { border-color: var(--ink); transform: translateY(-1px); }
.tb__nav a.is-on { background: var(--ink); color: var(--paper); border-color: var(--ink); }

.tb__right { display: flex; align-items: center; gap: 10px; font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.1em; }

.tb__hit {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 10px; border-radius: 999px;
  background: var(--gold); color: var(--ink);
  border: 2px solid var(--ink);
  font-family: var(--f-mono); font-size: 10px; font-weight: 600; letter-spacing: 0.1em;
}
.tb__hit .pulse { width: 6px; height: 6px; border-radius: 999px; background: var(--signal); animation: pulse 1.4s ease-in-out infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.35; } }

.tb__live { color: var(--cherry); font-weight: 600; }
.tb__clock { display: none; }

/* mobile: hamburger button */
.tb__menu {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  border-radius: 10px;
  border: 2px solid var(--ink);
  background: var(--paper);
  cursor: pointer;
}
.tb__menu span {
  width: 16px; height: 2px; background: var(--ink);
  position: relative;
}
.tb__menu span::before, .tb__menu span::after {
  content: ""; position: absolute; left: 0;
  width: 100%; height: 2px; background: var(--ink);
}
.tb__menu span::before { top: -5px; }
.tb__menu span::after  { top: 5px; }

/* mobile drawer */
.drawer {
  position: fixed; inset: 0;
  background: rgba(21,23,26,0.45);
  backdrop-filter: blur(4px);
  z-index: 50;
  display: flex; align-items: stretch; justify-content: flex-end;
  opacity: 0; pointer-events: none;
  transition: opacity 0.25s var(--ease);
}
.drawer.is-open { opacity: 1; pointer-events: auto; }
.drawer__panel {
  width: min(340px, 86%);
  background: var(--paper);
  border-left: 3px solid var(--ink);
  padding: 24px;
  display: flex; flex-direction: column; gap: 12px;
  transform: translateX(20px);
  transition: transform 0.3s var(--bounce);
}
.drawer.is-open .drawer__panel { transform: translateX(0); }
.drawer__head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 12px;
}
.drawer__close {
  width: 36px; height: 36px; border-radius: 10px;
  border: 2px solid var(--ink); background: var(--paper);
  font-family: var(--f-display); font-weight: 800; font-size: 18px; line-height: 1;
}
.drawer__nav {
  display: flex; flex-direction: column; gap: 8px;
}
.drawer__nav a {
  display: block;
  padding: 14px 18px;
  border: 2.5px solid var(--ink);
  border-radius: 16px;
  background: #fff;
  box-shadow: 4px 4px 0 var(--ink);
  font-family: var(--f-display); font-weight: 800; font-size: 16px;
  cursor: pointer;
  transition: transform 0.18s var(--bounce);
}
.drawer__nav a:hover { transform: translate(-1px, -1px); box-shadow: 5px 5px 0 var(--ink); }
.drawer__nav a.is-on { background: var(--cherry); color: #fff; }

/* ═══════════════════════════════════════════════════════════
   PAGE CONTAINERS
   ═══════════════════════════════════════════════════════════ */
.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section-head {
  display: flex; align-items: baseline; gap: 14px;
  font-family: var(--f-mono);
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  margin-bottom: 24px;
  opacity: 0.75;
}
.section-head::before { content: ""; width: 26px; height: 2.5px; background: var(--ink); }
.section-head__jp { font-family: var(--f-jp); font-size: 12px; letter-spacing: 0.18em; opacity: 0.85; }

/* ═══════════════════════════════════════════════════════════
   HERO
   Mobile: stacked; Desktop: 2-col (wordmark | gauge dashboard)
   ═══════════════════════════════════════════════════════════ */
.hero {
  padding: 36px 0 28px;
  position: relative;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
}
.hero__left { text-align: left; }
.hero__right { display: flex; flex-direction: column; gap: 12px; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--f-mono);
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--ink);
  padding: 5px 12px;
  border-radius: 999px;
  border: 2px solid var(--ink);
  margin-bottom: 14px;
}

.wordmark {
  font-family: var(--f-display);
  font-weight: 800;
  line-height: 0.84;
  letter-spacing: -0.05em;
  text-transform: lowercase;
  font-size: clamp(3.2rem, 14.5vw, 8.6rem);
}
.wordmark__line { display: block; position: relative; }
.wordmark__line + .wordmark__line { margin-top: -0.04em; }
.wordmark .l1 {
  color: var(--sky);
  text-shadow:
    -2px -2px 0 var(--ink),  2px -2px 0 var(--ink),
    -2px  2px 0 var(--ink),  2px  2px 0 var(--ink),
     8px 8px 0 var(--ink);
}
.wordmark .l2 {
  color: var(--cherry);
  text-shadow:
    -2px -2px 0 var(--ink),  2px -2px 0 var(--ink),
    -2px  2px 0 var(--ink),  2px  2px 0 var(--ink),
     8px 8px 0 var(--ink);
}

.tag {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: clamp(1.1rem, 2.2vw, 1.6rem);
  line-height: 1.3;
  margin: 22px 0 8px;
  max-width: 26ch;
}
.tag__strong {
  font-family: var(--f-display); font-weight: 800; font-style: normal;
  letter-spacing: -0.02em;
  color: var(--cherry);
  text-shadow: 3px 3px 0 var(--ink);
  display: inline-block;
  padding: 0 4px;
}

.lede {
  font-family: var(--f-body);
  font-size: clamp(0.95rem, 1.4vw, 1.05rem);
  line-height: 1.5;
  max-width: 42ch;
  margin-bottom: 22px;
  color: var(--ink-2);
}

.cta-row { display: flex; gap: 10px; flex-wrap: wrap; }

/* ═══════════════════════════════════════════════════════════
   HIT INDEX dashboard panel (right side of hero on desktop)
   ═══════════════════════════════════════════════════════════ */
.hit-panel {
  background: #fff;
  border: 3px solid var(--ink);
  border-radius: 24px;
  padding: 22px;
  box-shadow: 8px 8px 0 var(--ink);
  position: relative;
}
.hit-panel__head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 14px;
}
.hit-panel__title {
  font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--ink-2);
}
.hit-panel__live {
  font-family: var(--f-mono); font-size: 9px; letter-spacing: 0.16em;
  color: var(--signal); display: inline-flex; align-items: center; gap: 6px;
}
.hit-panel__live::before {
  content: ""; width: 6px; height: 6px; border-radius: 999px;
  background: var(--signal); animation: pulse 1.4s ease-in-out infinite;
}

.hit-panel__body {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px; align-items: center;
}
.gauge { width: 130px; height: 130px; position: relative; flex-shrink: 0; }
.gauge svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.gauge__bg  { fill: none; stroke: rgba(21,23,26,0.1); stroke-width: 11; }
.gauge__arc { fill: none; stroke: var(--cherry); stroke-width: 11; stroke-linecap: round; stroke-dasharray: 251.3; transition: stroke-dashoffset 1.2s var(--ease); }
.gauge__num { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.gauge__num b {
  font-family: var(--f-display); font-weight: 800;
  font-size: 38px; line-height: 1; letter-spacing: -0.04em;
  color: var(--cherry);
  text-shadow: 3px 3px 0 var(--ink);
}
.gauge__num small {
  font-family: var(--f-mono); font-size: 8.5px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--ink-2); margin-top: 4px;
}

.hit-panel__readout { display: flex; flex-direction: column; gap: 8px; }
.hit-panel__lbl {
  font-family: var(--f-mono); font-size: 9.5px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase; opacity: 0.65;
}
.hit-panel__big {
  font-family: var(--f-display); font-weight: 800;
  font-size: clamp(1.3rem, 2.4vw, 1.8rem);
  letter-spacing: -0.03em; line-height: 1;
}
.hit-panel__sub {
  font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.06em;
  display: flex; gap: 8px; align-items: center; flex-wrap: wrap;
}
.hit-panel__sub .up { color: var(--signal); font-weight: 600; }
.hit-panel__sub .dn { color: var(--cherry); font-weight: 600; }

.spark {
  display: inline-flex; align-items: center; gap: 2px;
  height: 22px;
}
.spark span {
  display: inline-block; width: 3px;
  background: currentColor; opacity: 0.75;
  border-radius: 2px;
}

/* ═══════════════════════════════════════════════════════════
   GUI NAV — six chunky button-tiles
   Mobile: 2 cols | Tablet: 3 | Desktop: 6
   ═══════════════════════════════════════════════════════════ */
.guinav {
  padding: 18px 0 32px;
}
.guinav__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.gtile {
  position: relative;
  padding: 16px;
  border-radius: 18px;
  background: #fff;
  border: 3px solid var(--ink);
  box-shadow: 5px 5px 0 var(--ink);
  cursor: pointer;
  transition: transform 0.18s var(--bounce), box-shadow 0.18s var(--ease);
  text-align: left;
  display: flex; flex-direction: column; gap: 6px;
  min-height: 100px;
}
.gtile:hover { transform: translate(-2px, -2px); box-shadow: 7px 7px 0 var(--ink); }
.gtile:active { transform: translate(2px, 2px); box-shadow: 2px 2px 0 var(--ink); }
.gtile--cherry { background: var(--cherry); color: #fff; }
.gtile--sky    { background: var(--sky);    color: var(--ink); }
.gtile--gold   { background: var(--gold);   color: var(--ink); }
.gtile--cream  { background: var(--cream);  color: var(--ink); }

.gtile__top { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.gtile__icon {
  width: 30px; height: 30px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-display); font-weight: 800; font-size: 16px;
  background: rgba(0,0,0,0.14); color: inherit;
  border-radius: 10px;
  border: 2px solid var(--ink);
}
.gtile--cherry .gtile__icon { background: rgba(255,255,255,0.25); }
.gtile__metric {
  font-family: var(--f-mono); font-size: 9.5px; letter-spacing: 0.06em;
  opacity: 0.8;
}
.gtile__metric .up { color: var(--signal); font-weight: 600; }
.gtile--cherry .gtile__metric .up { color: #fff; }
.gtile__lbl {
  font-family: var(--f-display); font-weight: 800;
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  letter-spacing: -0.02em; line-height: 1.05;
}
.gtile__sub {
  font-family: var(--f-mono); font-size: 9.5px;
  letter-spacing: 0.1em; text-transform: uppercase;
  opacity: 0.65;
}

/* ═══════════════════════════════════════════════════════════
   PROPERTIES — 3 instrumented cards, stacked on mobile, 3-col on desktop
   ═══════════════════════════════════════════════════════════ */
.props { padding: 28px 0 32px; }
.props__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.prop {
  background: #fff;
  border: 3px solid var(--ink);
  border-radius: 22px;
  box-shadow: 6px 6px 0 var(--ink);
  padding: 22px;
  cursor: pointer;
  transition: transform 0.22s var(--bounce), box-shadow 0.22s var(--ease);
  display: flex; flex-direction: column; gap: 10px;
}
.prop:hover {
  transform: translate(-3px, -3px);
  box-shadow: 9px 9px 0 var(--accent, var(--cherry));
}
.prop__head { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.prop__head-l { display: flex; align-items: center; gap: 14px; min-width: 0; }
.prop__num {
  font-family: var(--f-display); font-weight: 800;
  font-size: 44px; line-height: 1; letter-spacing: -0.05em;
  color: var(--accent, var(--cherry));
  text-shadow: 3px 3px 0 var(--ink);
}
.prop__name {
  font-family: var(--f-display); font-weight: 800;
  font-size: clamp(1.4rem, 2.4vw, 1.8rem);
  letter-spacing: -0.025em; line-height: 1;
}
.prop__name--mono { font-family: var(--f-mono); font-weight: 600; font-size: clamp(1.1rem, 2vw, 1.4rem); }

.minimeter { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.minimeter__bar {
  width: 64px; height: 8px; border-radius: 999px;
  background: var(--paper-2); border: 2px solid var(--ink); overflow: hidden;
}
.minimeter__fill { height: 100%; background: var(--accent, var(--cherry)); transition: width 1s var(--ease); }
.minimeter__num {
  font-family: var(--f-mono); font-size: 11.5px; font-weight: 600; letter-spacing: 0.04em;
}

.prop__tag {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--ink);
}
.prop__desc {
  font-family: var(--f-body);
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--ink-2);
}
.prop__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 4px;
}
.statbox {
  padding: 10px 11px;
  border-radius: 12px;
  background: var(--paper-2);
  border: 2px solid var(--ink);
}
.statbox__lbl {
  font-family: var(--f-mono); font-size: 8.5px; letter-spacing: 0.14em;
  text-transform: uppercase; opacity: 0.7; line-height: 1;
}
.statbox__val {
  font-family: var(--f-display); font-weight: 800; font-size: 17px;
  letter-spacing: -0.02em; margin-top: 5px; line-height: 1;
}
.statbox__delta {
  font-family: var(--f-mono); font-size: 9px; opacity: 0.7; margin-top: 3px;
}
.statbox__delta .up { color: var(--signal); font-weight: 600; }
.statbox__delta .dn { color: var(--cherry); font-weight: 600; }

.badge {
  font-family: var(--f-display); font-weight: 800;
  font-size: 10px; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 999px;
  border: 2px solid var(--ink); color: var(--ink);
  white-space: nowrap;
}
.badge--active { background: var(--signal); }
.badge--llm    { background: var(--gold); }
.badge--prod   { background: var(--sky); }
.badge--dev    { background: var(--cherry); color: #fff; }

.prop__foot {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 4px;
}
.prop__foot-link {
  font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.16em;
  text-transform: uppercase; font-weight: 600;
}

/* ═══════════════════════════════════════════════════════════
   AGENTS — 10 A&R cards
   ═══════════════════════════════════════════════════════════ */
.agents-band { padding: 8px 0 32px; }
.agents {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
.agent {
  position: relative;
  padding: 12px 10px;
  border-radius: 14px;
  background: var(--ink);
  color: #fff;
  border: 2.5px solid var(--ink);
  box-shadow: 3px 3px 0 var(--ink);
  text-align: center;
  transition: transform 0.22s var(--bounce), background 0.22s;
  cursor: pointer;
  min-height: 70px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.agent:hover { transform: translate(-1px, -1px) rotate(-2deg); background: var(--cherry); border-color: var(--cherry); box-shadow: 4px 4px 0 var(--ink); }
.agent__n { font-family: var(--f-display); font-weight: 800; font-size: 18px; color: var(--gold); line-height: 1; }
.agent__lbl { font-family: var(--f-display); font-weight: 800; font-size: 11px; margin-top: 4px; letter-spacing: -0.01em; }
.agent__dot {
  position: absolute; top: 7px; right: 7px;
  width: 6px; height: 6px; border-radius: 999px;
  background: var(--signal);
  animation: pulse 1.6s ease-in-out infinite;
}
.agent { font: inherit; }
.agent__open {
  position: absolute; top: 6px; left: 8px;
  font-family: var(--f-mono); font-size: 10px; opacity: 0.55;
  letter-spacing: 0.1em;
}
.agents__hint {
  font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.08em;
  text-align: center; opacity: 0.55; margin-top: 14px;
}

/* ═══════════════════════════════════════════════════════════
   AGENT MODAL — prototype showcase
   ═══════════════════════════════════════════════════════════ */
.agm {
  position: fixed; inset: 0; z-index: 999;
  background: rgba(20, 16, 12, 0.62);
  backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  animation: agm-in 0.2s var(--ease);
}
@keyframes agm-in { from { opacity: 0; } to { opacity: 1; } }
.agm__panel {
  width: min(960px, 100%); max-height: calc(100vh - 48px);
  background: var(--cream);
  border: 3px solid var(--ink);
  border-radius: 20px;
  box-shadow: 8px 8px 0 var(--ink);
  display: flex; flex-direction: column; overflow: hidden;
  animation: agm-pop 0.28s var(--bounce);
}
@keyframes agm-pop { from { transform: translateY(20px) scale(0.96); } to { transform: none; } }
.agm__head {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 16px; padding: 18px 22px;
  border-bottom: 2px solid var(--ink);
  background: linear-gradient(180deg, #fff5e0 0%, var(--cream) 100%);
}
.agm__num {
  font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.16em;
  color: var(--cherry); margin-bottom: 4px;
}
.agm__name {
  font-family: var(--f-display); font-weight: 900; font-size: 30px;
  letter-spacing: -0.02em; line-height: 1; margin-bottom: 6px;
}
.agm__desc { font-size: 13px; max-width: 540px; opacity: 0.78; }
.agm__head-right { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.agm__live {
  font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.14em;
  display: flex; align-items: center; gap: 6px;
  padding: 5px 9px; border: 1.5px solid var(--ink); border-radius: 999px;
}
.agm__live-dot { width: 6px; height: 6px; border-radius: 999px; background: var(--signal); animation: pulse 1.4s ease-in-out infinite; }
.agm__close {
  width: 36px; height: 36px; border-radius: 999px;
  border: 2px solid var(--ink); background: var(--cream);
  font-size: 22px; line-height: 1; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 2px 2px 0 var(--ink);
  transition: transform 0.18s var(--bounce);
}
.agm__close:hover { transform: rotate(90deg); background: var(--cherry); color: var(--cream); }
.agm__body {
  padding: 22px;
  overflow: auto;
  flex: 1;
  background: repeating-linear-gradient(0deg, transparent 0 23px, rgba(20,16,12,0.04) 23px 24px);
}
.agm__foot {
  padding: 10px 22px;
  border-top: 1.5px solid rgba(20,16,12,0.18);
  font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.14em;
  display: flex; justify-content: space-between; opacity: 0.55;
  background: var(--cream);
}
.agm__cta {
  font-family: var(--f-display); font-weight: 800; font-size: 13px;
  background: var(--ink); color: var(--cream);
  border: 2px solid var(--ink); border-radius: 999px;
  padding: 10px 18px; cursor: pointer;
  box-shadow: 3px 3px 0 var(--gold);
  transition: transform 0.18s var(--bounce);
  margin-top: 16px;
}
.agm__cta:hover { transform: translate(-2px, -2px); box-shadow: 5px 5px 0 var(--gold); background: var(--cherry); border-color: var(--cherry); }

/* ── 01 VOICE ── */
.vd { display: grid; gap: 18px; }
.vd__rec {
  display: grid; grid-template-columns: auto 1fr auto; gap: 16px; align-items: center;
  padding: 14px; background: #fff; border: 2px solid var(--ink); border-radius: 14px;
}
.vd__btn {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 16px; border-radius: 999px;
  background: var(--ink); color: var(--cream);
  border: 2px solid var(--ink); cursor: pointer;
  font-family: var(--f-display); font-weight: 800; font-size: 13px;
}
.vd__btn-dot { width: 10px; height: 10px; border-radius: 999px; background: var(--cherry); }
.vd__btn.is-rec { background: var(--cherry); border-color: var(--cherry); animation: pulse 1.2s ease-in-out infinite; }
.vd__waveform {
  display: flex; align-items: center; gap: 2px; height: 38px;
}
.vd__waveform span {
  flex: 1; min-width: 2px; background: var(--ink); border-radius: 1px;
  transition: height 0.08s linear;
}
.vd__time { font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.1em; opacity: 0.7; }
.vd__modes { display: flex; gap: 8px; flex-wrap: wrap; }
.vd__mode {
  font-family: var(--f-display); font-weight: 700; font-size: 12px;
  padding: 7px 13px; border: 2px solid var(--ink); border-radius: 999px;
  background: transparent; cursor: pointer;
}
.vd__mode.is-on { background: var(--gold); }
.vd__output {
  background: #fff; border: 2px solid var(--ink); border-radius: 14px;
  padding: 18px;
}
.vd__output-h {
  font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.18em;
  color: var(--cherry); margin-bottom: 10px;
}
.vd__output-b { font-size: 14px; line-height: 1.55; }
.vd__placeholder { opacity: 0.45; font-style: italic; }

/* ── 02 PERSONA ── */
.pd { display: grid; grid-template-columns: 1.1fr 1fr; gap: 18px; }
.pd__card {
  background: var(--ink); color: var(--cream);
  border-radius: 18px; padding: 18px; border: 2px solid var(--ink);
  display: flex; flex-direction: column; gap: 14px;
}
.pd__card-head { display: flex; justify-content: space-between; align-items: flex-start; }
.pd__card-eyebrow { font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.18em; color: var(--gold); }
.pd__card-adj { font-family: var(--f-display); font-weight: 900; font-size: 30px; letter-spacing: -0.02em; margin-top: 4px; }
.pd__card-id { font-family: var(--f-mono); font-size: 10px; opacity: 0.6; }
.pd__card-palette { display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px; height: 80px; }
.pd__card-palette div { border-radius: 8px; border: 1.5px solid rgba(255,255,255,0.15); transition: background 0.4s; }
.pd__card-body { font-size: 13px; opacity: 0.85; line-height: 1.55; }
.pd__sliders { display: grid; gap: 12px; align-content: start; }
.pd__slider-h { display: flex; justify-content: space-between; font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 4px; }
.pd__slider-v { color: var(--cherry); font-weight: 700; }
.pd__slider-track { position: relative; height: 8px; background: #fff; border: 1.5px solid var(--ink); border-radius: 999px; overflow: hidden; }
.pd__slider-fill { height: 100%; background: var(--gold); transition: width 0.15s; }
.pd__slider-track input { position: absolute; inset: 0; width: 100%; opacity: 0; cursor: pointer; }

/* ── 03 ENGAGE ── */
.ed { display: grid; gap: 12px; }
.ed__filters { display: flex; gap: 6px; flex-wrap: wrap; align-items: center; }
.ed__filter { font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; padding: 6px 10px; border: 1.5px solid var(--ink); border-radius: 999px; background: transparent; cursor: pointer; display: flex; align-items: center; gap: 6px; }
.ed__filter.is-on { background: var(--ink); color: var(--cream); }
.ed__filter-dot { width: 8px; height: 8px; border-radius: 999px; }
.ed__count { margin-left: auto; font-family: var(--f-mono); font-size: 10px; opacity: 0.6; }
.ed__list { display: grid; gap: 8px; }
.ed__row { display: grid; grid-template-columns: auto 1fr auto auto; gap: 12px; align-items: center; padding: 10px 12px; background: #fff; border: 1.5px solid var(--ink); border-radius: 10px; }
.ed__row-cat { font-family: var(--f-mono); font-size: 9px; letter-spacing: 0.14em; padding: 3px 7px; border-radius: 999px; color: var(--ink); text-transform: uppercase; }
.ed__row-who { font-family: var(--f-mono); font-size: 11px; opacity: 0.7; }
.ed__row-msg { font-size: 13px; margin-top: 2px; }
.ed__row-pri { font-family: var(--f-display); font-weight: 800; font-size: 14px; color: var(--cherry); }
.ed__row-acts { display: flex; gap: 6px; }
.ed__row-acts button { padding: 5px 10px; font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.1em; border: 1.5px solid var(--ink); border-radius: 999px; background: var(--ink); color: var(--cream); cursor: pointer; }
.ed__row-acts button.ghost { background: transparent; color: var(--ink); }
.ed__empty { text-align: center; padding: 32px; font-style: italic; opacity: 0.6; }

/* ── 04 STREAM ── */
.sd { display: grid; gap: 14px; }
.sd__strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.sd__strip > div { background: #fff; border: 2px solid var(--ink); border-radius: 12px; padding: 10px 12px; display: flex; flex-direction: column; }
.sd__strip-num { font-family: var(--f-display); font-weight: 900; font-size: 22px; }
.sd__strip > div span:last-child { font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.1em; opacity: 0.6; text-transform: uppercase; }
.sd__list { display: grid; gap: 8px; }
.sd__row { display: grid; grid-template-columns: 1.5fr 0.6fr 1fr 50px; gap: 12px; align-items: center; padding: 9px 12px; background: #fff; border: 1.5px solid var(--ink); border-radius: 10px; }
.sd__row-name { font-weight: 700; font-size: 13px; }
.sd__row-dsp { font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.1em; opacity: 0.65; }
.sd__row-bar { height: 6px; background: #f3ead0; border-radius: 999px; overflow: hidden; }
.sd__row-bar-fill { height: 100%; background: var(--cherry); transition: width 0.6s; }
.sd__row-num { font-family: var(--f-mono); font-size: 12px; text-align: right; display: flex; align-items: center; justify-content: flex-end; gap: 5px; }
.sd__row-pulse { width: 6px; height: 6px; border-radius: 999px; background: var(--signal); animation: pulse 1.3s ease-in-out infinite; }

/* ── 05 TOUR ── */
.td { display: grid; gap: 14px; }
.td__map { position: relative; aspect-ratio: 16/9; background: #fff; border: 2px solid var(--ink); border-radius: 14px; overflow: hidden; background-image: linear-gradient(rgba(20,16,12,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(20,16,12,0.04) 1px, transparent 1px); background-size: 24px 24px; }
.td__map svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.td__pin { position: absolute; transform: translate(-50%, -50%); background: transparent; border: 0; cursor: pointer; padding: 0; display: flex; flex-direction: column; align-items: center; gap: 3px; }
.td__pin-dot { width: var(--size, 10px); height: var(--size, 10px); border-radius: 999px; background: rgba(20,16,12,0.18); border: 2px solid var(--ink); transition: all 0.15s; }
.td__pin.is-on .td__pin-dot { background: var(--cherry); box-shadow: 0 0 0 4px rgba(230, 70, 90, 0.18); }
.td__pin-lbl { font-family: var(--f-mono); font-size: 9px; letter-spacing: 0.12em; }
.td__pin.is-on .td__pin-lbl { color: var(--cherry); font-weight: 700; }
.td__stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.td__stats > div { background: #fff; border: 2px solid var(--ink); border-radius: 12px; padding: 10px 12px; display: flex; flex-direction: column; }
.td__stats-num { font-family: var(--f-display); font-weight: 900; font-size: 22px; }
.td__stats > div span:last-child { font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.1em; opacity: 0.6; text-transform: uppercase; }

/* ── 06 LOCALIZE ── */
.ld { display: grid; gap: 14px; }
.ld__source { background: #fff; border: 2px solid var(--ink); border-radius: 14px; padding: 14px; }
.ld__source-h { font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.16em; color: var(--cherry); margin-bottom: 8px; }
.ld__source-b { font-size: 14px; }
.ld__chips { display: flex; gap: 6px; flex-wrap: wrap; }
.ld__chip { font-family: var(--f-display); font-weight: 700; font-size: 12px; padding: 7px 12px; border: 2px solid var(--ink); border-radius: 999px; background: transparent; cursor: pointer; display: flex; align-items: center; gap: 6px; }
.ld__chip.is-on { background: var(--gold); }
.ld__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.ld__card { background: #fff; border: 2px solid var(--ink); border-radius: 12px; padding: 12px; }
.ld__card-h { font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.1em; color: var(--cherry); margin-bottom: 6px; }
.ld__card-b { font-size: 13px; line-height: 1.5; }
.ld__card-f { font-family: var(--f-mono); font-size: 9px; letter-spacing: 0.12em; opacity: 0.55; margin-top: 8px; }

/* ── 07 LIQUID ── */
.lqd { display: grid; grid-template-columns: 1fr 1.3fr; gap: 16px; }
.lqd__sliders { display: grid; gap: 16px; align-content: start; }
.lqd__slider-h { display: flex; justify-content: space-between; font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.08em; margin-bottom: 6px; }
.lqd__slider-h b { color: var(--cherry); }
.lqd__slider input { width: 100%; }
.lqd__readout { background: var(--ink); color: var(--cream); border-radius: 16px; padding: 18px; }
.lqd__big { display: flex; flex-direction: column; gap: 4px; padding-bottom: 14px; border-bottom: 1.5px solid rgba(255,255,255,0.15); margin-bottom: 14px; }
.lqd__big-lbl { font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.16em; color: var(--gold); }
.lqd__big-num { font-family: var(--f-display); font-weight: 900; font-size: 38px; letter-spacing: -0.02em; }
.lqd__rows { display: grid; gap: 6px; font-family: var(--f-mono); font-size: 12px; }
.lqd__rows > div { display: flex; justify-content: space-between; opacity: 0.85; }
.lqd__rows-em { padding-top: 6px; margin-top: 4px; border-top: 1px solid rgba(255,255,255,0.15); opacity: 1 !important; font-weight: 700; color: var(--gold); }

/* ── 08 SOCIAL ── */
.scd { display: grid; gap: 12px; }
.scd__head { display: flex; justify-content: space-between; align-items: center; font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.12em; }
.scd__legend { display: flex; align-items: center; gap: 4px; opacity: 0.7; }
.scd__legend span { width: 14px; height: 14px; background: var(--gold); border-radius: 3px; }
.scd__legend span:nth-child(1) { opacity: 0.2; } .scd__legend span:nth-child(2) { opacity: 0.45; } .scd__legend span:nth-child(3) { opacity: 0.7; }
.scd__grid { display: grid; gap: 4px; background: #fff; border: 2px solid var(--ink); border-radius: 12px; padding: 12px; }
.scd__hours { display: grid; grid-template-columns: 60px repeat(6, 1fr); gap: 4px; font-family: var(--f-mono); font-size: 10px; opacity: 0.6; }
.scd__hours span:not(:first-child) { text-align: center; }
.scd__plat { display: grid; grid-template-columns: 60px repeat(6, 1fr); gap: 4px; align-items: center; }
.scd__plat-lbl { font-family: var(--f-display); font-weight: 800; font-size: 12px; }
.scd__cell { aspect-ratio: 1.6/1; border: 1px solid rgba(20,16,12,0.15); border-radius: 6px; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 11px; }
.scd__cell.is-peak { border: 1.5px solid var(--ink); }
.scd__queue { background: var(--ink); color: var(--cream); border-radius: 12px; padding: 12px 14px; position: relative; }
.scd__queue-h { font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.14em; color: var(--gold); margin-bottom: 8px; }
.scd__post { display: grid; grid-template-columns: 130px 1fr; gap: 12px; padding: 5px 0; font-size: 13px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.scd__post:last-child { border-bottom: 0; }
.scd__post-when { font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.1em; color: var(--gold); }
.scd__hover { position: absolute; bottom: 8px; right: 12px; font-family: var(--f-mono); font-size: 10px; opacity: 0.7; }

/* ── 09 INTEL ── */
.ind { display: grid; grid-template-columns: 1.1fr 1fr; gap: 18px; }
.ind__h { font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.14em; color: var(--cherry); margin-bottom: 10px; }
.ind__trend { display: grid; grid-template-columns: 1.4fr 1fr 50px; gap: 10px; align-items: center; padding: 6px 0; border-bottom: 1px dashed rgba(20,16,12,0.18); }
.ind__trend-lbl { font-size: 12px; }
.ind__trend-bar { height: 8px; background: #fff; border: 1.5px solid var(--ink); border-radius: 999px; overflow: hidden; }
.ind__trend-fill { height: 100%; transition: width 0.4s; }
.ind__trend-fill.is-up { background: var(--signal); }
.ind__trend-fill.is-down { background: var(--cherry); opacity: 0.5; }
.ind__trend-num { font-family: var(--f-mono); font-size: 11px; font-weight: 700; text-align: right; }
.ind__trend-num.is-up { color: #2a7d4f; }
.ind__trend-num.is-down { color: var(--cherry); }
.ind__adj {
  position: relative; aspect-ratio: 1/1; background: #fff;
  border: 2px solid var(--ink); border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
}
.ind__adj-center {
  font-family: var(--f-display); font-weight: 900; font-size: 14px;
  background: var(--ink); color: var(--cream);
  padding: 8px 14px; border-radius: 999px; z-index: 2;
}
.ind__adj-node {
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%) rotate(var(--angle)) translateX(var(--dist)) rotate(calc(-1 * var(--angle)));
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  z-index: 2;
}
.ind__adj-line {
  position: absolute; left: 50%; top: 50%;
  width: var(--dist); height: 1.5px;
  background: var(--ink);
  opacity: var(--strength);
  transform: translate(0, -50%) rotate(180deg);
  transform-origin: 0 50%;
  z-index: -1;
}
.ind__adj-name { font-family: var(--f-display); font-weight: 700; font-size: 12px; background: var(--cream); padding: 2px 8px; border-radius: 999px; white-space: nowrap; border: 1.5px solid var(--ink); }
.ind__adj-pct { font-family: var(--f-mono); font-size: 9px; letter-spacing: 0.1em; opacity: 0.6; }

/* ── 10 REPORTS ── */
.rpd { display: grid; grid-template-columns: 1fr 1.3fr; gap: 16px; }
.rpd__cfg-h { font-family: var(--f-display); font-weight: 800; font-size: 14px; margin-bottom: 12px; display: flex; justify-content: space-between; align-items: baseline; }
.rpd__cfg-h span { font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.12em; opacity: 0.6; }
.rpd__sec { display: flex; align-items: center; gap: 10px; padding: 8px 10px; border-radius: 8px; cursor: pointer; }
.rpd__sec input { display: none; }
.rpd__sec-box { width: 18px; height: 18px; border: 1.5px solid var(--ink); border-radius: 4px; background: #fff; display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700; flex-shrink: 0; }
.rpd__sec.is-on .rpd__sec-box { background: var(--ink); color: var(--cream); }
.rpd__sec-lbl { font-size: 13px; }
.rpd__sec.is-on { background: rgba(230, 185, 74, 0.18); }
.rpd__pg {
  background: #fff; border: 2px solid var(--ink); border-radius: 8px;
  padding: 24px; aspect-ratio: 8.5/11; display: flex; flex-direction: column;
  font-family: var(--f-mono); position: relative;
}
.rpd__pg-head { display: flex; justify-content: space-between; font-size: 9px; letter-spacing: 0.16em; opacity: 0.6; padding-bottom: 12px; border-bottom: 1.5px solid var(--ink); }
.rpd__pg-h1 { font-family: var(--f-display); font-weight: 900; font-size: 28px; letter-spacing: -0.02em; margin-top: 14px; }
.rpd__pg-tag { font-size: 11px; opacity: 0.6; margin-top: 4px; }
.rpd__pg-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px; margin-top: 16px; padding-top: 12px; border-top: 1px solid rgba(20,16,12,0.15); }
.rpd__pg-stats > div { display: flex; flex-direction: column; }
.rpd__pg-stats b { font-family: var(--f-display); font-weight: 900; font-size: 18px; }
.rpd__pg-stats span { font-size: 8px; letter-spacing: 0.14em; opacity: 0.6; }
.rpd__pg-bars { display: flex; align-items: flex-end; gap: 6px; height: 80px; margin-top: 16px; padding-top: 12px; border-top: 1px solid rgba(20,16,12,0.15); }
.rpd__pg-bars > div { flex: 1; background: linear-gradient(180deg, var(--cherry), var(--gold)); border-radius: 2px 2px 0 0; }
.rpd__pg-foot { margin-top: auto; padding-top: 12px; font-size: 9px; letter-spacing: 0.16em; opacity: 0.6; text-align: center; border-top: 1.5px solid var(--ink); }

/* responsive */
@media (max-width: 720px) {
  .pd, .lqd, .ind, .rpd { grid-template-columns: 1fr; }
  .ld__grid { grid-template-columns: 1fr; }
  .sd__strip, .td__stats { grid-template-columns: repeat(2, 1fr); }
  .agm__panel { max-height: calc(100vh - 24px); }
  .agm__head { flex-direction: column; }
}

/* ═══════════════════════════════════════════════════════════
   ROSTER — sticker artist cards
   ═══════════════════════════════════════════════════════════ */
.roster { padding: 24px 0 36px; }
.roster__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.artist {
  background: #fff;
  border: 3px solid var(--ink);
  border-radius: 22px;
  box-shadow: 5px 5px 0 var(--ink);
  padding: 18px;
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 16px;
  align-items: center;
  cursor: pointer;
  transition: transform 0.2s var(--bounce), box-shadow 0.2s var(--ease);
}
.artist:hover { transform: translate(-2px, -2px) rotate(-0.6deg); box-shadow: 8px 8px 0 var(--accent, var(--cherry)); }
.artist__avatar {
  width: 64px; height: 64px;
  border-radius: 16px;
  background: var(--accent, var(--cherry));
  border: 2.5px solid var(--ink);
  box-shadow: 3px 3px 0 var(--ink);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-display); font-weight: 800; font-size: 28px;
  color: var(--ink);
  letter-spacing: -0.04em;
  flex-shrink: 0;
}
.artist__body { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.artist__name {
  font-family: var(--f-display); font-weight: 800;
  font-size: clamp(1.05rem, 1.7vw, 1.25rem);
  letter-spacing: -0.02em; line-height: 1;
}
.artist__meta {
  font-family: var(--f-mono); font-size: 10px;
  letter-spacing: 0.08em; opacity: 0.7;
}
.artist__tags { display: flex; gap: 4px; flex-wrap: wrap; margin-top: 4px; }
.artist__tag {
  font-family: var(--f-mono); font-size: 9px;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 2px 7px; border-radius: 999px;
  background: var(--paper-2); border: 1.5px solid var(--ink);
}
.artist__right {
  display: flex; flex-direction: column; align-items: flex-end; gap: 4px;
  flex-shrink: 0;
}
.artist__score {
  font-family: var(--f-display); font-weight: 800;
  font-size: 22px; letter-spacing: -0.03em;
  color: var(--accent, var(--cherry));
  text-shadow: 2px 2px 0 var(--ink);
  line-height: 1;
}
.artist__score-lbl {
  font-family: var(--f-mono); font-size: 8.5px;
  letter-spacing: 0.16em; opacity: 0.6; text-transform: uppercase;
}

/* ═══════════════════════════════════════════════════════════
   MAYA — chunky console
   ═══════════════════════════════════════════════════════════ */
.maya { padding: 8px 0 32px; }
.maya__shell {
  background: #fff;
  border: 3px solid var(--ink);
  border-radius: 26px;
  box-shadow: 8px 8px 0 var(--ink);
  padding: 22px;
}
.maya__head { display: flex; justify-content: space-between; align-items: center; gap: 10px; margin-bottom: 14px; flex-wrap: wrap; }
.maya__title { display: flex; align-items: center; gap: 14px; min-width: 0; }
.maya__orb {
  width: 44px; height: 44px; border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, var(--cherry), var(--cherry-d));
  border: 2.5px solid var(--ink);
  position: relative;
  animation: breathe 3s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes breathe { 0%,100% { transform: scale(1); } 50% { transform: scale(1.06); } }
.maya__t-wrap { display: flex; flex-direction: column; gap: 1px; min-width: 0; }
.maya__t-wrap h3 { font-family: var(--f-display); font-weight: 800; font-size: 22px; letter-spacing: -0.03em; line-height: 1; }
.maya__conf { font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.14em; color: var(--signal); text-transform: uppercase; }

.maya__waveform { display: inline-flex; align-items: center; gap: 2px; height: 22px; }
.maya__waveform span {
  display: inline-block; width: 2.5px; background: var(--signal);
  border-radius: 1px; animation: wave 0.9s ease-in-out infinite; opacity: 0.85;
}
.maya__waveform span:nth-child(1) { animation-delay: 0s; }
.maya__waveform span:nth-child(2) { animation-delay: 0.15s; }
.maya__waveform span:nth-child(3) { animation-delay: 0.3s; }
.maya__waveform span:nth-child(4) { animation-delay: 0.45s; }
.maya__waveform span:nth-child(5) { animation-delay: 0.1s; }
@keyframes wave { 0%,100% { height: 4px; } 50% { height: 20px; } }

.maya__transcript {
  background: var(--paper-2);
  border: 2.5px solid var(--ink);
  border-radius: 18px;
  padding: 14px;
  margin-bottom: 14px;
  min-height: 180px;
  max-height: 240px;
  overflow-y: auto;
  display: flex; flex-direction: column; gap: 8px;
}

.bubble {
  max-width: 88%;
  padding: 10px 14px;
  border-radius: 18px;
  font-family: var(--f-body);
  font-size: 13px; line-height: 1.45;
  animation: pop 0.3s var(--bounce);
  border: 2px solid var(--ink);
}
@keyframes pop { 0% { transform: scale(0.9) translateY(6px); opacity: 0; } 100% { transform: scale(1); opacity: 1; } }
.bubble--maya {
  align-self: flex-start;
  background: var(--gold); color: var(--ink);
  border-bottom-left-radius: 4px;
}
.bubble--user {
  align-self: flex-end;
  background: var(--cherry); color: #fff;
  border-bottom-right-radius: 4px;
}
.bubble__who {
  font-family: var(--f-mono);
  font-size: 8.5px; letter-spacing: 0.18em; text-transform: uppercase;
  opacity: 0.85; margin-bottom: 3px; display: block;
}
.bubble__score {
  display: inline-block;
  font-family: var(--f-mono); font-size: 8px; letter-spacing: 0.1em;
  padding: 1px 6px; border-radius: 999px;
  background: var(--ink); color: var(--signal);
  margin-left: 4px;
}
.typing { display: inline-flex; gap: 4px; padding: 2px 0; }
.typing span { width: 6px; height: 6px; border-radius: 999px; background: currentColor; animation: tdot 1.3s ease-in-out infinite; opacity: 0.6; }
.typing span:nth-child(2) { animation-delay: 0.2s; }
.typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes tdot { 0%,80%,100% { transform: translateY(0); opacity: 0.4; } 40% { transform: translateY(-4px); opacity: 1; } }

.maya__pads {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-bottom: 12px;
}
.pad {
  position: relative;
  padding: 13px 12px;
  border-radius: 16px;
  font-family: var(--f-display); font-weight: 800; font-size: 13px;
  letter-spacing: -0.01em; text-align: left;
  transition: transform 0.18s var(--bounce), box-shadow 0.18s var(--ease);
  border: 2.5px solid var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
  background: #fff; color: var(--ink);
  display: flex; flex-direction: column; gap: 4px;
  min-height: 64px;
}
.pad:hover { transform: translate(-1px, -1px); box-shadow: 5px 5px 0 var(--ink); }
.pad:active { transform: translate(2px, 2px); box-shadow: 1px 1px 0 var(--ink); }
.pad--cherry { background: var(--cherry); color: #fff; }
.pad--sky    { background: var(--sky); }
.pad--gold   { background: var(--gold); }
.pad--cream  { background: var(--cream); }
.pad__n { font-family: var(--f-mono); font-size: 9px; font-weight: 600; letter-spacing: 0.14em; opacity: 0.7; }

.maya__input { display: flex; gap: 8px; align-items: center; }
.maya__field {
  flex: 1;
  padding: 12px 16px; border-radius: 999px;
  border: 2.5px solid var(--ink);
  background: var(--paper-2); color: var(--ink);
  font-family: var(--f-body); font-size: 13px; font-weight: 500;
  outline: none; transition: border-color 0.2s, background 0.2s;
}
.maya__field::placeholder { color: rgba(21,23,26,0.5); }
.maya__field:focus { border-color: var(--cherry); background: var(--paper); }

.maya__send {
  padding: 12px 18px; border-radius: 999px;
  font-family: var(--f-display); font-weight: 800; font-size: 13px;
  background: var(--cherry); color: #fff;
  border: 2.5px solid var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
  transition: transform 0.18s var(--bounce);
}
.maya__send:hover { transform: translate(-1px, -1px); box-shadow: 5px 5px 0 var(--ink); }
.maya__send:active { transform: translate(2px, 2px); box-shadow: 1px 1px 0 var(--ink); }

/* ═══════════════════════════════════════════════════════════
   APPLY
   ═══════════════════════════════════════════════════════════ */
.apply {
  max-width: 720px; margin: 0 auto;
  padding: 36px var(--gutter) 60px;
}
.invite-banner {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 18px; border-radius: 16px;
  background: var(--ink); color: var(--bone);
  border: 2.5px solid var(--ink); box-shadow: 5px 5px 0 var(--cherry);
  margin-bottom: 14px;
  font-family: var(--f-mono); font-size: 12px; letter-spacing: 0.04em;
  line-height: 1.45;
}
.invite-banner strong {
  font-family: var(--f-display); font-weight: 800;
  letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--gold); margin-right: 4px;
}
.invite-banner__dot {
  display: inline-block; flex: 0 0 auto;
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--cherry);
  box-shadow: 0 0 0 3px rgba(229,57,70,0.25);
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(229,57,70,0.25); }
  50%      { box-shadow: 0 0 0 8px rgba(229,57,70,0.05); }
}
.apply__scoreband {
  display: flex; justify-content: space-between; align-items: center;
  padding: 13px 18px; border-radius: 16px;
  background: #fff; border: 2.5px solid var(--ink);
  box-shadow: 5px 5px 0 var(--ink);
  margin-bottom: 22px;
  font-family: var(--f-mono);
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  flex-wrap: wrap; gap: 10px;
}
.apply__scoreband b {
  font-family: var(--f-display); font-weight: 800; font-size: 20px;
  color: var(--cherry); text-shadow: 2px 2px 0 var(--ink); letter-spacing: -0.02em;
}

.steps { display: flex; gap: 6px; margin-bottom: 26px; flex-wrap: wrap; }
.step {
  flex: 1 1 120px; padding: 9px 12px; border-radius: 999px;
  border: 2.5px solid var(--ink);
  font-family: var(--f-display); font-weight: 700;
  font-size: 11px; letter-spacing: 0.04em;
  opacity: 0.5;
  transition: all 0.25s var(--bounce);
  text-align: center;
  background: transparent; color: var(--ink);
}
.step.is-on { opacity: 1; background: var(--cherry); color: #fff; transform: scale(1.04); }
.step.is-done { opacity: 0.85; background: var(--signal); color: var(--ink); }

.apply__h {
  font-family: var(--f-display); font-weight: 800;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 0.95; letter-spacing: -0.04em;
  margin-bottom: 12px;
  color: var(--ink);
  text-shadow: 5px 5px 0 var(--gold);
}
.apply__h em {
  font-family: var(--f-serif); font-style: italic; font-weight: 700;
  color: var(--cherry); text-shadow: 5px 5px 0 var(--ink);
}
.apply__sub { font-family: var(--f-body); font-size: 14px; line-height: 1.5; color: var(--ink-2); margin-bottom: 22px; max-width: 50ch; }

.field { margin-bottom: 14px; }
.field__lbl {
  display: block; font-family: var(--f-mono);
  font-size: 10px; font-weight: 600; letter-spacing: 0.16em;
  text-transform: uppercase; margin-bottom: 6px; opacity: 0.75;
}
.field__in {
  width: 100%; padding: 13px 16px; border-radius: 14px;
  background: #fff; border: 2.5px solid var(--ink); color: var(--ink);
  font-family: var(--f-body); font-size: 14px; font-weight: 500;
  outline: none; transition: border-color 0.2s, background 0.2s;
  box-shadow: 3px 3px 0 var(--ink);
}
.field__in::placeholder { color: rgba(21,23,26,0.4); }
.field__in:focus { border-color: var(--cherry); background: var(--paper); box-shadow: 4px 4px 0 var(--cherry); }
.tarea { resize: vertical; min-height: 90px; }

.applyfoot { display: flex; justify-content: space-between; align-items: center; margin-top: 26px; gap: 12px; }

.btn {
  font-family: var(--f-display); font-weight: 800;
  font-size: 13px; letter-spacing: -0.01em;
  padding: 12px 22px; border-radius: 999px;
  border: 2.5px solid var(--ink);
  cursor: pointer;
  transition: all 0.22s var(--bounce);
  display: inline-flex; align-items: center; gap: 6px;
  background: #fff; color: var(--ink);
}
.btn:hover { transform: translate(-1px, -1px); box-shadow: 4px 4px 0 var(--ink); }
.btn--primary {
  background: var(--cherry); color: #fff;
  box-shadow: 4px 4px 0 var(--ink);
}
.btn--primary:hover { transform: translate(-1px, -1px); box-shadow: 5px 5px 0 var(--ink); }
.btn--gold { background: var(--gold); color: var(--ink); box-shadow: 4px 4px 0 var(--ink); }
.btn--gold:hover { box-shadow: 5px 5px 0 var(--ink); }
.btn--ghost { background: transparent; border-color: transparent; box-shadow: none; opacity: 0.7; }
.btn--ghost:hover { opacity: 1; transform: none; box-shadow: none; }

/* ═══════════════════════════════════════════════════════════
   PORTAL — instrument tiles + briefing
   ═══════════════════════════════════════════════════════════ */
.portal { padding: 28px 0 36px; }
.portal__h { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 14px; gap: 12px; flex-wrap: wrap; }
.tiles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 18px;
}
.tile {
  padding: 16px;
  background: #fff;
  border: 3px solid var(--ink);
  border-radius: 18px;
  box-shadow: 5px 5px 0 var(--ink);
  display: flex; flex-direction: column; gap: 4px;
  transition: transform 0.2s var(--bounce), box-shadow 0.2s var(--ease);
  cursor: pointer; min-height: 110px;
}
.tile:hover { transform: translate(-2px, -2px); box-shadow: 7px 7px 0 var(--ink); }
.tile__big {
  font-family: var(--f-display); font-weight: 800;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1; letter-spacing: -0.03em;
  text-shadow: 3px 3px 0 var(--ink);
}
.tile__lbl {
  font-family: var(--f-display); font-weight: 800;
  font-size: 13px; letter-spacing: -0.01em;
}
.tile__sub {
  font-family: var(--f-mono); font-size: 9.5px;
  letter-spacing: 0.14em; opacity: 0.65; text-transform: uppercase;
}
.tile__delta {
  font-family: var(--f-mono); font-size: 10px; font-weight: 600; margin-top: 2px;
}
.tile__delta.up { color: var(--signal); }
.tile__delta.dn { color: var(--cherry); }

.sparkline { width: 100%; height: 26px; margin-top: 4px; }
.sparkline path { fill: none; stroke: currentColor; stroke-width: 2; }
.sparkline .area { fill: currentColor; opacity: 0.18; stroke: none; }

.brief {
  margin-top: 14px; padding: 18px;
  background: #fff; border: 3px solid var(--ink);
  border-radius: 18px;
  box-shadow: 5px 5px 0 var(--ink);
}
.brief__head {
  font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.18em;
  text-transform: uppercase; margin-bottom: 8px;
  display: flex; justify-content: space-between; align-items: center; gap: 8px; flex-wrap: wrap;
}
.brief__body {
  font-family: var(--f-serif); font-size: 14.5px; line-height: 1.55;
}

/* exclusive note pill under hero CTA row */
.exclusive-note {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 18px; padding: 8px 14px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--paper-2);
  font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.14em;
  text-transform: uppercase; font-weight: 600;
  box-shadow: 3px 3px 0 var(--ink);
}
.exclusive-note__dot {
  width: 8px; height: 8px; border-radius: 999px; background: var(--cherry);
  animation: pulse 1.5s ease-in-out infinite;
}
@keyframes pulse { 50% { opacity: 0.4; } }

/* (intro/film legacy styles removed — see REEL below) */


/* ═══════════════════════════════════════════════════════════
   CRT — Now Showing block
   ═══════════════════════════════════════════════════════════ */
.ns { padding: 32px 0 12px; }

.crt {
  position: relative;
  display: flex; flex-direction: column; align-items: center;
  padding-top: 60px; /* room for antenna */
}

/* antenna */
.crt__antenna {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 220px; height: 60px; pointer-events: none;
}
.crt__rod {
  position: absolute; bottom: 8px; left: 50%;
  width: 3px; height: 60px; background: linear-gradient(180deg, #d6d6d6, #888);
  border: 1px solid var(--ink); border-radius: 2px;
  transform-origin: 50% 100%;
}
.crt__rod--l { transform: translateX(-50%) rotate(-32deg); }
.crt__rod--r { transform: translateX(-50%) rotate(32deg); }
.crt__base {
  position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 50px; height: 14px; border-radius: 4px 4px 2px 2px;
  background: linear-gradient(180deg, #333, var(--ink));
  border: 2px solid var(--ink);
}

/* TV body */
.crt__body {
  position: relative;
  width: 100%;
  background: linear-gradient(180deg, #f4ece0 0%, #e8dcc4 50%, #d8c8a8 100%);
  border: 3.5px solid var(--ink);
  border-radius: 26px 26px 18px 18px;
  box-shadow: 8px 8px 0 var(--ink), inset 0 -8px 0 rgba(0,0,0,0.08);
  padding: 14px 16px 18px;
}

/* brand badge strip */
.crt__badge {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 10px;
  padding: 0 6px;
}
.crt__brand {
  font-family: var(--f-display); font-weight: 800; font-size: 13px;
  letter-spacing: 0.04em; color: var(--cherry);
  text-shadow: 1.5px 1.5px 0 var(--ink);
}
.crt__model {
  font-family: var(--f-mono); font-size: 8px; letter-spacing: 0.18em;
  text-transform: uppercase; opacity: 0.65;
}

/* bezel = the chunky black ring around the screen */
.crt__bezel {
  background: #1a1a1c;
  border: 2.5px solid var(--ink);
  border-radius: 18px;
  padding: 18px;
  box-shadow: inset 0 0 0 3px #2a2a2c, inset 0 4px 12px rgba(0,0,0,0.7);
}

/* the screen — curved corners, slight bulge feel */
.crt__screen {
  position: relative;
  background: #050505;
  border-radius: 14px / 18px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: inset 0 0 60px rgba(0,0,0,0.9);
}

/* on-screen display */
.crt__osd {
  position: absolute; top: 10px; left: 10px; right: 10px;
  display: flex; justify-content: space-between; gap: 10px;
  z-index: 5;
  font-family: "VT323", "Courier New", monospace;
  font-size: 18px;
  color: #f7f1d7;
  text-shadow: 0 0 6px rgba(247,241,215,0.6);
  letter-spacing: 0.06em;
  pointer-events: none;
  flex-wrap: wrap;
}

/* 8-bit typing terminal */
.crt__term {
  position: absolute;
  left: 12px; right: 12px; bottom: 12px;
  z-index: 6;
  padding: 8px 12px;
  background: rgba(0, 8, 0, 0.55);
  border: 1px solid rgba(78, 255, 120, 0.35);
  border-radius: 2px;
  font-family: "Press Start 2P", "VT323", monospace;
  font-size: 10px;
  line-height: 1.4;
  letter-spacing: 0.04em;
  color: #4eff78;
  text-shadow:
    0 0 4px rgba(78,255,120,0.9),
    0 0 12px rgba(78,255,120,0.5);
  display: flex; align-items: center; gap: 4px;
  pointer-events: none;
  min-height: 26px;
  box-shadow:
    inset 0 0 0 1px rgba(78,255,120,0.1),
    inset 0 0 18px rgba(78,255,120,0.15);
}
.crt__term-text {
  white-space: pre;
  overflow: hidden;
  text-overflow: clip;
  flex: 0 1 auto;
}
.crt__term-caret {
  display: inline-block;
  width: 8px; height: 12px;
  background: #4eff78;
  box-shadow: 0 0 8px rgba(78,255,120,0.9);
  animation: caret 0.9s steps(2, end) infinite;
  flex-shrink: 0;
}
@keyframes caret { 50% { opacity: 0; } }

@media (min-width: 720px) {
  .crt__term { font-size: 12px; padding: 10px 14px; min-height: 32px; }
  .crt__term-caret { width: 10px; height: 14px; }
}
.crt__osd-rec {
  color: #ff3b30;
  text-shadow: 0 0 8px rgba(255,59,48,0.8);
  animation: blink 1.4s steps(2, end) infinite;
}
@keyframes blink { 50% { opacity: 0.25; } }

.crt__video {
  position: absolute; inset: 0;
  z-index: 1;
  border-radius: inherit;
  overflow: hidden;
}
.crt__iframe {
  display: block; width: 100%; height: 100%; border: 0;
  object-fit: cover;
  /* the classic VHS look */
  filter: saturate(1.15) contrast(1.05) hue-rotate(-2deg);
}

/* scanlines */
.crt__scanlines {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background-image: repeating-linear-gradient(
    180deg,
    rgba(0,0,0,0) 0px,
    rgba(0,0,0,0) 2px,
    rgba(0,0,0,0.18) 3px,
    rgba(0,0,0,0) 4px
  );
  mix-blend-mode: multiply;
}

/* corner glare */
.crt__glare {
  position: absolute; inset: 0; z-index: 3; pointer-events: none;
  background:
    radial-gradient(ellipse 60% 40% at 22% 18%, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0) 60%),
    radial-gradient(ellipse 80% 50% at 50% 100%, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0) 60%);
}

/* faint noise sparkle */
.crt__noise {
  position: absolute; inset: 0; z-index: 4; pointer-events: none;
  opacity: 0.06;
  background-image:
    radial-gradient(circle at 20% 30%, #fff 0.5px, transparent 1px),
    radial-gradient(circle at 70% 60%, #fff 0.5px, transparent 1px),
    radial-gradient(circle at 40% 80%, #fff 0.5px, transparent 1px),
    radial-gradient(circle at 90% 20%, #fff 0.5px, transparent 1px);
  background-size: 3px 3px, 5px 5px, 4px 4px, 6px 6px;
  animation: noise 0.4s steps(2) infinite;
}
@keyframes noise {
  0%   { transform: translate(0, 0); }
  100% { transform: translate(-1px, 1px); }
}

/* vignette */
.crt__vignette {
  position: absolute; inset: 0; z-index: 4; pointer-events: none;
  background: radial-gradient(ellipse 100% 100% at 50% 50%, rgba(0,0,0,0) 55%, rgba(0,0,0,0.6) 100%);
}

/* control row */
.crt__controls {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 14px;
  padding: 10px 14px;
  background: linear-gradient(180deg, #1a1a1c, #0e0e10);
  border: 2px solid var(--ink);
  border-radius: 10px;
  gap: 14px;
  flex-wrap: wrap;
}
.crt__btns { display: flex; align-items: center; gap: 8px; }
.crt__btn {
  width: 26px; height: 26px; border-radius: 999px;
  border: 2px solid var(--ink);
  background: linear-gradient(180deg, #f4ece0, #d4c298);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  font-family: var(--f-display); font-weight: 800; font-size: 14px;
  color: var(--ink);
  box-shadow: 0 2px 0 rgba(0,0,0,0.5);
}
.crt__btn:active { transform: translateY(2px); box-shadow: none; }
.crt__btn--red {
  background: radial-gradient(circle at 35% 30%, #ff7060 0%, var(--cherry) 60%, #8a1d28 100%);
}
.crt__btn--red span {
  width: 8px; height: 8px; border-radius: 999px; background: #fff;
  display: block; opacity: 0.7;
}
.crt__lbl {
  font-family: var(--f-mono); font-size: 8px; letter-spacing: 0.2em;
  color: #c9b67c; text-transform: uppercase;
}
.crt__display {
  font-family: "DSEG7-Classic", "Courier New", monospace;
  font-weight: 800;
  font-size: 28px;
  color: #ffb000;
  background: #150f00;
  border: 2px solid var(--ink);
  border-radius: 6px;
  padding: 4px 14px;
  letter-spacing: 0.2em;
  text-shadow: 0 0 8px rgba(255,176,0,0.7);
  box-shadow: inset 0 0 12px rgba(0,0,0,0.8);
  min-width: 70px; text-align: center;
}
.crt__knobs { display: flex; gap: 12px; }
.knob {
  width: 38px; height: 38px; border-radius: 999px;
  background: radial-gradient(circle at 35% 30%, #f4ece0 0%, #b89e6c 60%, #6b5630 100%);
  border: 2.5px solid var(--ink);
  position: relative;
  box-shadow: inset 0 -3px 6px rgba(0,0,0,0.4), 2px 2px 0 rgba(0,0,0,0.5);
}
.knob span {
  position: absolute; top: 4px; left: 50%; width: 3px; height: 10px;
  background: var(--ink); transform: translateX(-50%); border-radius: 1px;
}
.knob--gold { background: radial-gradient(circle at 35% 30%, #fff4c0 0%, var(--gold) 50%, #8a6f1f 100%); }

/* feet */
.crt__foot {
  position: absolute; bottom: -10px;
  width: 60px; height: 14px; border-radius: 0 0 6px 6px;
  background: linear-gradient(180deg, var(--ink), #000);
  border: 2px solid var(--ink); border-top: none;
}
.crt__foot--l { left: 14%; }
.crt__foot--r { right: 14%; }

/* responsive */
@media (min-width: 720px) {
  .crt__body { padding: 18px 22px 22px; }
  .crt__brand { font-size: 16px; }
  .crt__model { font-size: 9px; }
  .crt__osd { font-size: 12px; top: 14px; left: 14px; right: 14px; }
  .crt__display { font-size: 32px; min-width: 90px; }
  .knob { width: 42px; height: 42px; }
}

/* ═══════════════════════════════════════════════════════════
   CASSETTE — Now Playing block
   ═══════════════════════════════════════════════════════════ */
.np { padding: 12px 0 36px; }
.cassette {
  position: relative;
  background: var(--cherry);
  border: 3.5px solid var(--ink);
  border-radius: 14px;
  box-shadow: 8px 8px 0 var(--ink);
  padding: 18px;
  overflow: hidden;
}
.cassette::before {
  /* subtle plastic gloss */
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0) 35%, rgba(0,0,0,0.08) 100%);
  pointer-events: none;
}

/* corner screws */
.cassette__screw {
  position: absolute;
  width: 14px; height: 14px; border-radius: 999px;
  background: radial-gradient(circle at 35% 35%, #fff 0%, #888 60%, #222 100%);
  border: 2px solid var(--ink);
  z-index: 2;
}
.cassette__screw::after {
  content: ""; position: absolute; inset: 3px;
  background: var(--ink);
  clip-path: polygon(45% 0, 55% 0, 55% 100%, 45% 100%);
  transform: rotate(35deg);
}
.cassette__screw--tl { top: 8px;    left: 8px; }
.cassette__screw--tr { top: 8px;    right: 8px; }
.cassette__screw--bl { bottom: 8px; left: 8px; }
.cassette__screw--br { bottom: 8px; right: 8px; }

/* label sticker */
.cassette__label {
  position: relative;
  background: var(--paper);
  border: 2.5px solid var(--ink);
  border-radius: 6px;
  margin: 6px 26px 14px;
  padding: 10px 14px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
  z-index: 1;
  box-shadow: 0 2px 0 rgba(0,0,0,0.18);
}
.cassette__label::before, .cassette__label::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 4px;
  background: repeating-linear-gradient(180deg, var(--ink) 0 4px, transparent 4px 8px);
  opacity: 0.4;
}
.cassette__label::before { left: 6px; }
.cassette__label::after  { right: 6px; }

.cassette__label-l, .cassette__label-r {
  display: flex; flex-direction: column; gap: 2px; align-items: flex-start;
}
.cassette__label-r { align-items: flex-end; }
.cassette__brand {
  font-family: var(--f-display); font-weight: 800; font-size: 16px;
  color: var(--cherry); letter-spacing: -0.02em; line-height: 1;
  text-shadow: 1.5px 1.5px 0 var(--ink);
}
.cassette__model {
  font-family: var(--f-mono); font-size: 8px; letter-spacing: 0.14em;
  text-transform: uppercase; opacity: 0.7;
}
.cassette__label-c { text-align: center; min-width: 0; }
.cassette__title {
  font-family: var(--f-display); font-weight: 800; font-size: 14px;
  letter-spacing: -0.01em; line-height: 1.1;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.cassette__artist {
  font-family: var(--f-mono); font-size: 9px; letter-spacing: 0.18em;
  text-transform: uppercase; margin-top: 2px; opacity: 0.75;
}
.cassette__bars {
  display: inline-flex; align-items: flex-end; gap: 2px; height: 16px;
}
.cassette__bars span {
  display: inline-block; width: 3px; background: var(--ink); border-radius: 1px;
  animation: cbar 1s ease-in-out infinite;
}
.cassette__bars span:nth-child(1) { height: 6px; animation-delay: 0s; }
.cassette__bars span:nth-child(2) { height: 12px; animation-delay: 0.15s; }
.cassette__bars span:nth-child(3) { height: 9px;  animation-delay: 0.3s; }
.cassette__bars span:nth-child(4) { height: 14px; animation-delay: 0.45s; }
.cassette__bars span:nth-child(5) { height: 7px;  animation-delay: 0.1s; }
@keyframes cbar { 0%,100% { transform: scaleY(0.6); } 50% { transform: scaleY(1.1); } }

/* reels + window */
.cassette__reels {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 8px 6px;
  z-index: 1;
}
.cassette__reels > .reel { flex: 0 0 auto; }
.cassette__window { flex: 1 1 auto; min-width: 0; }

.reel {
  width: 70px; height: 70px; border-radius: 999px;
  background: radial-gradient(circle at 50% 50%, #1f1f22 0%, var(--ink) 60%, #000 100%);
  border: 2.5px solid var(--ink);
  position: relative;
  display: flex; align-items: center; justify-content: center;
  box-shadow: inset 0 2px 6px rgba(0,0,0,0.6), 2px 2px 0 rgba(0,0,0,0.4);
  animation: spin 6s linear infinite;
}
.reel::after {
  /* tape spool ring */
  content: ""; position: absolute; inset: 12px;
  border-radius: 999px;
  background: repeating-conic-gradient(from 0deg, #2a2c30 0deg 20deg, #1a1c1f 20deg 40deg);
  border: 2px solid #444;
}
.reel__teeth {
  position: relative; width: 28px; height: 28px;
  border-radius: 999px;
  background: #f6e3a3;
  border: 2px solid var(--ink);
  z-index: 1;
  display: flex; align-items: center; justify-content: center;
  box-shadow: inset 0 0 0 4px var(--ink), 0 0 0 2px #d6b85a;
}
.reel__teeth span {
  position: absolute; left: 50%; top: 50%; width: 5px; height: 14px;
  background: var(--ink); transform-origin: 50% 100%;
  margin-left: -2.5px; margin-top: -14px;
  border-radius: 1px;
}
@keyframes spin { from { transform: rotate(0); } to { transform: rotate(360deg); } }

.cassette__window {
  background: var(--ink);
  border: 2.5px solid var(--ink);
  border-radius: 8px;
  height: 250px;
  overflow: hidden;
  position: relative;
  box-shadow: inset 0 2px 8px rgba(0,0,0,0.6);
}
.cassette__iframe { display: block; width: 100%; height: 100%; border: 0; }

.cassette__credit {
  margin-top: 14px;
  text-align: center;
  font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--paper);
  display: flex; justify-content: center; gap: 8px; flex-wrap: wrap;
  position: relative; z-index: 1;
}
.cassette__credit a { text-decoration: underline; text-decoration-thickness: 1.5px; text-underline-offset: 3px; }
.cassette__credit a:hover { color: var(--gold); }

/* tablet+ */
@media (min-width: 720px) {
  .cassette { padding: 22px; }
  .cassette__label { margin: 8px 32px 18px; padding: 12px 18px; }
  .cassette__title { font-size: 16px; }
  .cassette__reels { gap: 22px; }
  .reel { width: 90px; height: 90px; }
  .reel__teeth { width: 36px; height: 36px; }
  .cassette__window { height: 300px; }
}

@media (min-width: 1024px) {
  .cassette { padding: 26px 30px; }
  .reel { width: 110px; height: 110px; }
  .reel__teeth { width: 44px; height: 44px; }
}

/* ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */
.foot {
  margin-top: 24px;
  padding: 18px 22px;
  border-top: 2.5px solid var(--ink);
  background: var(--ink); color: var(--paper);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px;
  font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.14em;
  text-transform: uppercase;
}
.foot a:hover { color: var(--gold); }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE BREAKPOINTS
   ═══════════════════════════════════════════════════════════ */

/* TABLET — 720px+ */
@media (min-width: 720px) {
  :root { --gutter: 32px; }
  .hero__inner { grid-template-columns: 1.1fr 1fr; gap: 36px; align-items: center; }
  .guinav__grid { grid-template-columns: repeat(3, 1fr); }
  .props__grid { grid-template-columns: repeat(2, 1fr); }
  .agents { grid-template-columns: repeat(5, 1fr); }
  .roster__grid { grid-template-columns: repeat(2, 1fr); }
  .maya__pads { grid-template-columns: repeat(4, 1fr); }
  .tiles { grid-template-columns: repeat(3, 1fr); }
  .tb__clock { display: inline; }
}

/* DESKTOP — 1024px+ */
@media (min-width: 1024px) {
  :root { --gutter: 48px; }
  .tb { padding: 14px 32px; }
  .tb__nav { display: inline-flex; }
  .tb__menu { display: none; }
  .hero { padding: 60px 0 44px; }
  .guinav__grid { grid-template-columns: repeat(6, 1fr); }
  .props__grid { grid-template-columns: repeat(3, 1fr); }
  .roster__grid { grid-template-columns: repeat(3, 1fr); }
  .gtile { min-height: 120px; }
  .maya__shell { padding: 28px; }
  .maya__transcript { min-height: 220px; max-height: 320px; }
}

/* WIDE — 1280px+ */
@media (min-width: 1280px) {
  :root { --gutter: 56px; }
  .wordmark { font-size: clamp(4.2rem, 10vw, 9.8rem); }
  .props__grid { gap: 22px; }
  .gtile { padding: 20px; min-height: 140px; }
  .gtile__lbl { font-size: 1.4rem; }
}

/* small phones — tighten gutter */
@media (max-width: 380px) {
  :root { --gutter: 16px; }
  .wordmark .l1, .wordmark .l2 {
    text-shadow:
      -1.5px -1.5px 0 var(--ink), 1.5px -1.5px 0 var(--ink),
      -1.5px  1.5px 0 var(--ink), 1.5px  1.5px 0 var(--ink),
       4px 4px 0 var(--ink);
  }
  .gauge { width: 110px; height: 110px; }
}

/* hide desktop nav on mobile */
@media (max-width: 1023px) {
  .tb__nav { display: none; }
}


/* ═══════════════════════════════════════════════════════════
   REEL — full-bleed cinematic intro film
   Dark green stage · gold accents · 4 acts
   ═══════════════════════════════════════════════════════════ */
.reel {
  position: fixed; inset: 0; z-index: 9999;
  background: #1B4332;
  background-image:
    radial-gradient(ellipse 80% 60% at 70% 30%, rgba(255,255,255,0.04) 0%, rgba(0,0,0,0) 60%),
    radial-gradient(ellipse 70% 50% at 20% 80%, rgba(0,0,0,0.30) 0%, rgba(0,0,0,0) 70%);
  color: #f3ead0;
  overflow: hidden;
  animation: reelIn 0.5s ease-out;
  font-family: var(--f-display);
}
.reel--closing { animation: reelOut 0.4s ease-in forwards; }
@keyframes reelIn  { from { opacity: 0; }                    to { opacity: 1; } }
@keyframes reelOut { from { opacity: 1; transform: scale(1); } to { opacity: 0; transform: scale(0.985); } }

/* CHROME — corner labels + watermark */
.reel__chrome {
  position: fixed; z-index: 10001;
  font-family: var(--f-mono);
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
}
.reel__chrome--tl { top: 24px; left: 32px; color: #e6b94a; font-weight: 600; }
.reel__chrome--bl { bottom: 80px; left: 32px; color: #f3ead0; opacity: 0.55; letter-spacing: 0.18em; }
.reel__watermark {
  position: fixed; right: 24px; bottom: 90px;
  font-family: var(--f-display); font-weight: 800;
  font-size: clamp(140px, 18vw, 280px);
  line-height: 0.85; letter-spacing: -0.04em;
  color: rgba(243,234,208,0.06);
  pointer-events: none; user-select: none;
  z-index: 10000;
}

/* STAGE — where acts render */
.reel__stage {
  position: absolute;
  top: 70px; bottom: 110px; left: 0; right: 0;
  display: flex; align-items: center;
  padding: 0 clamp(40px, 6vw, 100px);
}
.film2 { position: relative; width: 100%; height: 100%; }

/* ENTER PILL — center-bottom black capsule, serif italic */
.reel__enter {
  position: fixed;
  bottom: 130px; left: 50%; transform: translateX(-50%);
  z-index: 10002;
  background: #0c1f17; color: #f3ead0;
  border: 1.5px solid rgba(243,234,208,0.18);
  padding: 18px 56px; border-radius: 4px;
  font-family: var(--f-serif), Georgia, serif;
  font-style: italic; font-size: 19px;
  cursor: pointer;
  letter-spacing: 0.005em;
  box-shadow: 0 8px 24px rgba(0,0,0,0.30);
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
  animation: reelEnterIn 0.6s 0.4s both cubic-bezier(.2,.9,.3,1.1);
}
.reel__enter:hover {
  background: #16302a; border-color: #e6b94a; color: #e6b94a;
  transform: translateX(-50%) translateY(-1px);
}
@keyframes reelEnterIn { from { opacity: 0; transform: translateX(-50%) translateY(8px); } to { opacity: 1; transform: translateX(-50%) translateY(0); } }

/* CONTROLS — bottom transport bar */
.reel__controls {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 10003;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 32px;
  background: rgba(0,0,0,0.32);
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(243,234,208,0.08);
}
.reel__transport {
  display: flex; align-items: center; gap: 14px;
  flex: 1; max-width: 880px;
}
.reel__tbtn {
  width: 28px; height: 28px; border-radius: 999px;
  background: transparent; border: none;
  color: #f3ead0; opacity: 0.7;
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer; transition: opacity 0.15s ease;
}
.reel__tbtn:hover { opacity: 1; }
.reel__tbtn--play { width: 32px; height: 32px; }
.reel__time {
  font-family: var(--f-mono); font-size: 12px;
  letter-spacing: 0.06em; opacity: 0.75; min-width: 56px;
}
.reel__time--end { text-align: right; }
.reel__bar {
  flex: 1; height: 4px; border-radius: 999px;
  background: rgba(243,234,208,0.18);
  position: relative; cursor: pointer;
}
.reel__bar-fill {
  position: absolute; top: 0; left: 0; bottom: 0;
  background: #4a90c8; border-radius: 999px;
  transition: width 0.04s linear;
}
.reel__bar-knob {
  position: absolute; top: 50%; transform: translate(-50%, -50%);
  width: 12px; height: 12px; border-radius: 999px;
  background: #f3ead0; box-shadow: 0 0 0 4px rgba(74,144,200,0.25);
}
.reel__skip {
  background: transparent; border: none; color: #f3ead0;
  font-family: var(--f-serif), Georgia, serif;
  font-style: italic; font-size: 14px;
  opacity: 0.7; cursor: pointer; margin-left: 32px;
  transition: opacity 0.15s, color 0.15s;
  display: inline-flex; align-items: center; gap: 6px;
}
.reel__skip:hover { opacity: 1; color: #e6b94a; }
.reel__skip span { font-style: normal; font-family: var(--f-mono); font-size: 16px; }

/* ──────────── ACTS ──────────── */
.act {
  position: absolute; inset: 0;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
  opacity: 0; visibility: hidden;
  transition: opacity 0.55s ease, visibility 0.55s;
}
.act.is-on { opacity: 1; visibility: visible; }
.act__col { display: flex; flex-direction: column; justify-content: center; }
.act__col--full { grid-column: 1 / -1; }

.film2__eyebrow {
  font-family: var(--f-mono); font-size: 12px;
  letter-spacing: 0.22em; text-transform: uppercase;
  margin-bottom: 32px;
}
.film2__eyebrow--gold { color: #e6b94a; font-weight: 600; }

.film2__chapter {
  font-family: var(--f-mono); font-size: 12px;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: #e6b94a; font-weight: 600;
  margin-bottom: 28px;
  opacity: 0; animation: actSlideIn 0.6s 0.1s both;
}

/* ── ACT 1 — wordmark ── */
.act--wordmark .act__col--left { grid-column: 1 / -1; max-width: 900px; }
.film2__wm {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(70px, 11vw, 168px);
  line-height: 0.92;
  letter-spacing: -0.035em;
  color: #f3ead0;
  margin: 0;
  text-transform: uppercase;
}
.film2__wm-l { display: block; }
.act--wordmark.is-on .film2__wm-l:first-child { animation: actSlideIn 0.7s 0.15s both; }
.act--wordmark.is-on .film2__wm-l:last-child  { animation: actSlideIn 0.7s 0.32s both; }
.film2__rule {
  width: 110px; height: 2px;
  background: #e6b94a;
  margin: 28px 0 20px;
  animation: ruleGrow 0.6s 0.55s both;
}
@keyframes ruleGrow { from { width: 0; } to { width: 110px; } }
.film2__tagline {
  font-family: var(--f-serif), Georgia, serif;
  font-style: italic; font-size: clamp(22px, 2.4vw, 34px);
  color: #e6b94a;
  margin-bottom: 18px;
  animation: actSlideIn 0.7s 0.7s both;
}
.film2__url {
  font-family: var(--f-mono); font-size: 11px;
  letter-spacing: 0.24em; opacity: 0.55;
  text-transform: uppercase;
  animation: actSlideIn 0.6s 0.85s both;
}

/* ── ACT 2 — problem ── */
.film2__h {
  font-family: var(--f-display); font-weight: 800;
  font-size: clamp(54px, 6.5vw, 92px);
  line-height: 1.0; letter-spacing: -0.025em;
  color: #f3ead0; margin: 0 0 24px;
  display: flex; flex-direction: column; gap: 4px;
  text-wrap: balance;
}
.film2__h-num { display: block; }
.film2__h-em {
  font-family: var(--f-serif), Georgia, serif;
  font-style: italic; font-weight: 500;
  color: #e6b94a; letter-spacing: -0.01em;
}
.film2__sub {
  font-family: var(--f-serif), Georgia, serif;
  font-style: italic; font-size: 19px; line-height: 1.5;
  opacity: 0.85; max-width: 32ch;
}
.act--problem.is-on .film2__h-num { animation: actSlideIn 0.7s 0.15s both; }
.act--problem.is-on .film2__h > span:nth-child(2) { animation: actSlideIn 0.7s 0.32s both; }
.act--problem.is-on .film2__sub { animation: actSlideIn 0.6s 0.6s both; }

/* tile grid */
.grid {
  display: grid;
  grid-template-columns: repeat(22, 1fr);
  gap: 6px 5px;
  margin-bottom: 18px;
}
.tile {
  display: block; height: 6px;
  background: #f3ead0;
  border-radius: 1px;
  opacity: 0;
  animation: tileIn 0.4s both;
}
.tile--grey { background: rgba(243,234,208,0.45); }
.tile--gold { background: #e6b94a; height: 8px; box-shadow: 0 0 8px rgba(230,185,74,0.4); }
@keyframes tileIn { from { opacity: 0; transform: translateX(-4px); } to { opacity: 1; transform: none; } }
.act--problem:not(.is-on) .tile { animation: none; opacity: 0; }
.grid__caption {
  font-family: var(--f-mono); font-size: 10px;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(243,234,208,0.5);
  margin-top: 14px;
}

/* ── ACT 3 — instrument (MAYA) ── */
.film2__h--maya {
  font-size: clamp(86px, 11vw, 156px);
  letter-spacing: -0.04em;
  color: #e6b94a;
  display: inline-block;
}
.film2__h-dot { color: #e6b94a; }
.act--instrument.is-on .film2__h--maya { animation: actSlideIn 0.7s 0.15s both; }
.film2__sub2 {
  font-family: var(--f-display); font-weight: 800;
  font-size: clamp(28px, 3vw, 38px);
  letter-spacing: -0.015em;
  color: #f3ead0;
  margin: 8px 0 18px;
}
.film2__sub2 em {
  font-family: var(--f-serif), Georgia, serif;
  font-style: italic; font-weight: 500;
  color: #e6b94a;
  border-bottom: 1.5px solid #e6b94a;
}
.film2__body {
  font-family: var(--f-serif), Georgia, serif;
  font-style: italic; font-size: 18px;
  line-height: 1.55; opacity: 0.85;
  max-width: 38ch;
}
.act--instrument.is-on .film2__sub2 { animation: actSlideIn 0.6s 0.4s both; }
.act--instrument.is-on .film2__body { animation: actSlideIn 0.6s 0.6s both; }

/* signal panel */
.signal__head {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--f-mono); font-size: 11px;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: #6dd4a3; font-weight: 600;
  margin-bottom: 24px;
}
.signal__dot {
  width: 8px; height: 8px; border-radius: 999px;
  background: #6dd4a3;
  box-shadow: 0 0 8px rgba(109,212,163,0.6);
  animation: pulseDot 1.4s ease-in-out infinite;
}
@keyframes pulseDot { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }
.signal__list { display: flex; flex-direction: column; gap: 18px; }
.signal__row {
  display: grid;
  grid-template-columns: 1fr 36px;
  gap: 14px;
  align-items: center;
  opacity: 0; transform: translateY(8px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.signal__row.is-on { opacity: 1; transform: none; }
.signal__lbl {
  grid-column: 1 / -1;
  font-family: var(--f-display); font-weight: 600;
  font-size: 13px; letter-spacing: -0.005em;
  color: #f3ead0;
  display: flex; align-items: baseline;
  margin-bottom: 6px;
}
.signal__num { color: #e6b94a; font-weight: 700; margin-right: 2px; }
.signal__track {
  height: 1.5px; background: rgba(243,234,208,0.12);
  border-radius: 999px; overflow: hidden;
}
.signal__fill {
  height: 100%; transition: width 0.4s ease-out;
  border-radius: 999px;
}
.signal__fill--gold  { background: #e6b94a; box-shadow: 0 0 6px rgba(230,185,74,0.5); }
.signal__fill--green { background: #6dd4a3; box-shadow: 0 0 6px rgba(109,212,163,0.5); }
.signal__val {
  font-family: var(--f-mono); font-size: 11px;
  color: #e6b94a; text-align: right;
  font-weight: 600;
}

/* ── ACT 3.5 — callout ── */
.act--callout .act__col--full {
  align-items: flex-start;
  padding-bottom: 60px;
  justify-content: flex-end;
}
.callout {
  display: flex; align-items: baseline; gap: 24px;
  font-family: var(--f-serif), Georgia, serif;
  font-style: italic;
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.4;
  max-width: 1100px;
}
.callout__rule {
  flex: 0 0 56px; height: 2px;
  background: #e6b94a;
  margin-top: 14px;
  animation: ruleGrow 0.5s 0.2s both;
}
.act--callout.is-on .callout__text { animation: actSlideIn 0.7s 0.3s both; }
.callout__text em { font-style: italic; color: #f3ead0; }
.callout__text em.callout__gold { color: #e6b94a; font-weight: 500; }

/* ── ACT 4 — output ── */
.film2__h--white { color: #f3ead0; font-size: clamp(48px, 5.5vw, 76px); }
.act--output.is-on .film2__h--white { animation: actSlideIn 0.7s 0.15s both; }
.rows {
  margin-top: 36px;
  display: flex; flex-direction: column; gap: 12px;
}
.rows__row {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 36px;
  align-items: baseline;
  opacity: 0;
  animation: actSlideIn 0.6s both;
}
.rows__lbl {
  font-family: var(--f-mono); font-size: 11px;
  letter-spacing: 0.22em; color: #e6b94a;
  font-weight: 600;
}
.rows__txt {
  font-family: var(--f-serif), Georgia, serif;
  font-style: italic; font-size: clamp(22px, 2.6vw, 34px);
  color: #f3ead0;
}
.act--output .act__col--hits {
  align-items: flex-end; justify-content: center;
  position: relative;
}
.hits__lbl {
  font-family: var(--f-mono); font-size: 11px;
  letter-spacing: 0.22em; color: #e6b94a;
  font-weight: 600;
  position: absolute; top: 0; right: 0;
}
.hits__word {
  font-family: var(--f-display); font-weight: 800;
  font-size: clamp(140px, 18vw, 240px);
  line-height: 0.9; letter-spacing: -0.045em;
  color: #e6b94a;
  text-transform: uppercase;
  filter: drop-shadow(0 0 28px rgba(230,185,74,0.45)) drop-shadow(0 0 60px rgba(230,185,74,0.25));
}
.hits__dot { color: #e6b94a; }
.act--output.is-on .hits__word { animation: hitsIn 0.9s 0.5s both cubic-bezier(.2,.9,.3,1.05); }
@keyframes hitsIn {
  from { opacity: 0; transform: scale(0.92); filter: drop-shadow(0 0 0 rgba(230,185,74,0)); }
  to   { opacity: 1; transform: scale(1); filter: drop-shadow(0 0 28px rgba(230,185,74,0.45)) drop-shadow(0 0 60px rgba(230,185,74,0.25)); }
}

/* shared act animation */
@keyframes actSlideIn {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: none; }
}

/* ── responsive ── */
@media (max-width: 720px) {
  .reel__chrome--tl { top: 16px; left: 18px; font-size: 9px; letter-spacing: 0.16em; }
  .reel__chrome--bl { left: 18px; bottom: 100px; font-size: 9px; }
  .reel__watermark  { font-size: 90px; right: 12px; bottom: 110px; }
  .reel__stage      { top: 50px; bottom: 180px; padding: 0 22px; }
  .act { grid-template-columns: 1fr; gap: 24px; }
  .act__col--right { display: none; }
  .reel__enter { bottom: 150px; padding: 14px 36px; font-size: 16px; }
  .reel__controls { padding: 12px 14px; flex-direction: column; gap: 10px; align-items: stretch; }
  .reel__skip { margin-left: 0; align-self: flex-end; }
}
