/* ============================================================
   ROCK 'N' ROGUE — pitch page styles
   Palette + type matched to tourloop.html so it belongs to the
   same world.  Dark, gritty, pixel-adjacent, neon accents.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Mono:wght@400;500&family=Barlow+Condensed:wght@400;500;600;700&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:       #0b0b0d;
  --bg2:      #0d0d0f;
  --surface:  #141418;
  --surface2: #1c1c22;
  --border:   #2a2a35;
  --border2:  #3a3a48;

  --accent:  #e8ff47;  /* yellow-green */
  --pink:    #ff4d6d;  /* hot pink     */
  --cyan:    #47c8ff;  /* cyan         */
  --purple:  #b47fff;  /* purple       */
  --green:   #4fffb0;  /* success      */

  --text:  #f0f0f0;
  --dim:   #b8b8c4;
  --muted: #82828f;

  --maxw: 1180px;

  --mono: 'DM Mono', ui-monospace, monospace;
  --cond: 'Barlow Condensed', sans-serif;
  --disp: 'Bebas Neue', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--mono);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* film grain + vignette over everything */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PScwIDAgMjU2IDI1NicgeG1sbnM9J2h0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnJz48ZmlsdGVyIGlkPSduJz48ZmVUdXJidWxlbmNlIHR5cGU9J2ZyYWN0YWxOb2lzZScgYmFzZUZyZXF1ZW5jeT0nMC45JyBudW1PY3RhdmVzPSc0JyBzdGl0Y2hUaWxlcz0nc3RpdGNoJy8+PC9maWx0ZXI+PHJlY3Qgd2lkdGg9JzEwMCUnIGhlaWdodD0nMTAwJScgZmlsdGVyPSd1cmwoI24pJyBvcGFjaXR5PScwLjA1Jy8+PC9zdmc+");
  opacity: 0.5;
}
body::after {
  content: '';
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background: radial-gradient(ellipse at 50% 0%, transparent 55%, rgba(0,0,0,0.55) 100%);
}

main { position: relative; z-index: 1; }

/* ---------- shared layout ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }

section { padding: 96px 0; position: relative; }
.section-divider { border-top: 1px solid var(--border); }

.eyebrow {
  font-family: var(--cond);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.eyebrow::before {
  content: '';
  width: 26px; height: 2px;
  background: var(--accent);
  display: inline-block;
}
.eyebrow.c-pink::before   { background: var(--pink); }
.eyebrow.c-cyan::before   { background: var(--cyan); }
.eyebrow.c-purple::before { background: var(--purple); }
.eyebrow.c-green::before  { background: var(--green); }

h2.section-title {
  font-family: var(--disp);
  font-weight: 400;
  font-size: clamp(38px, 6vw, 76px);
  line-height: 0.92;
  letter-spacing: 0.02em;
  color: var(--text);
  margin-bottom: 20px;
}
.section-lead {
  font-size: 16px;
  color: var(--dim);
  max-width: 60ch;
  line-height: 1.75;
  text-wrap: pretty;
}
.section-head { margin-bottom: 56px; max-width: 760px; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: url('assets/gig-gameplay.png') center 30% / cover no-repeat;
  opacity: 0.16;
  image-rendering: pixelated;
  filter: saturate(1.1);
  mask-image: linear-gradient(180deg, transparent 0%, #000 24%, #000 44%, transparent 64%);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 24%, #000 44%, transparent 64%);
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 45%, transparent 0%, var(--bg) 75%);
}
.hero .wrap { position: relative; z-index: 2; width: 100%; }

.codename-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--cond);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(232,255,71,0.35);
  background: rgba(232,255,71,0.06);
  padding: 7px 16px;
  border-radius: 4px;
  margin-bottom: 30px;
}
.codename-tag .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 10px var(--accent); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;} 50%{opacity:0.35;} }

.hero-title {
  font-family: var(--disp);
  font-weight: 400;
  font-size: clamp(60px, 11vw, 168px);
  line-height: 0.82;
  letter-spacing: 0.01em;
  color: var(--text);
  text-shadow: 0 0 80px rgba(232,255,71,0.18);
  margin-bottom: 8px;
}
.hero-title .rogue {
  color: var(--accent);
  text-shadow: 0 0 60px rgba(232,255,71,0.45);
  display: block;
}
.hero-tagline {
  font-family: var(--cond);
  font-weight: 600;
  font-size: clamp(18px, 2.4vw, 28px);
  letter-spacing: 0.01em;
  color: var(--text);
  margin: 0 0 18px;
  line-height: 1.18;
}
.hero-tagline b { color: var(--cyan); font-weight: 600; }
.hero-tagline .ftl  { color: var(--pink); }
.hero-tagline .bal  { color: var(--purple); }
.hero-sub {
  font-size: 15px;
  color: var(--muted);
  max-width: 48ch;
  line-height: 1.75;
}

/* two-column hero head — title left, description right */
.hero-top {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.working-title {
  display: block;
  font-family: var(--cond);
  font-weight: 700;
  font-size: clamp(13px, 1.5vw, 18px);
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
  padding-left: 5px;
}
.hero-desc { padding-bottom: 4px; }

/* pillars */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 56px;
}
.pillar {
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(26,26,32,0.94), rgba(16,16,20,0.94));
  border-radius: 10px;
  padding: 24px 22px 26px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.25s, transform 0.25s;
}
.pillar::before {
  content: '';
  position: absolute; left: 0; top: 0; height: 3px; width: 100%;
  background: var(--c, var(--accent));
  opacity: 0.85;
}
.pillar:hover { transform: translateY(-4px); border-color: var(--border2); }
.pillar .pill-game {
  font-family: var(--disp);
  font-size: 30px;
  letter-spacing: 0.04em;
  color: var(--c, var(--accent));
  line-height: 1;
  margin-bottom: 4px;
}
.pillar .pill-role {
  font-family: var(--cond);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}
.pillar .pill-desc { font-size: 13.5px; color: var(--dim); line-height: 1.6; }
.pillar .pill-desc b { color: var(--text); font-weight: 500; }

.scroll-cue {
  margin-top: 56px;
  font-family: var(--cond);
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--muted);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
}
.sc-chevrons { display: flex; flex-direction: column; align-items: center; height: 16px; }
.sc-chevrons i {
  width: 8px; height: 8px;
  border-right: 2px solid var(--border2);
  border-bottom: 2px solid var(--border2);
  transform: rotate(45deg);
  animation: scrollbounce 1.7s ease-in-out infinite;
}
.sc-chevrons i:nth-child(2) { margin-top: -3px; animation-delay: 0.22s; }
@keyframes scrollbounce {
  0%, 100% { opacity: 0.25; }
  50%      { opacity: 0.85; }
}
@media (prefers-reduced-motion: reduce) {
  .sc-chevrons i { animation: none; opacity: 0.5; }
}

/* ============================================================
   IMAGE FRAMES (mockups) + lightbox triggers
   ============================================================ */
figure.shot {
  margin: 0;
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  background: #000;
  position: relative;
  cursor: zoom-in;
  box-shadow: 0 24px 60px -20px rgba(0,0,0,0.8);
  transition: border-color 0.25s, box-shadow 0.25s;
}
figure.shot:hover { border-color: var(--border2); box-shadow: 0 28px 70px -18px rgba(0,0,0,0.9); }
figure.shot img { display: block; width: 100%; height: auto; image-rendering: pixelated; }
figure.shot .zoom-hint {
  position: absolute; right: 12px; bottom: 12px;
  font-family: var(--cond); font-weight: 600;
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--text);
  background: rgba(0,0,0,0.6);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 4px;
  padding: 5px 9px;
  backdrop-filter: blur(4px);
  opacity: 0; transition: opacity 0.2s;
  pointer-events: none;
}
figure.shot:hover .zoom-hint { opacity: 1; }
figcaption {
  font-family: var(--cond);
  font-weight: 600;
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  padding-top: 12px;
}

/* ---------- screens walkthrough ---------- */
.screen-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 92px;
}
.screen-row:last-child { margin-bottom: 0; }
.screen-row.flip .screen-copy { order: 2; }
.screen-row.flip .screen-media { order: 1; }

.screen-index {
  font-family: var(--disp);
  font-size: 16px;
  letter-spacing: 0.1em;
  color: var(--c, var(--accent));
  border: 1px solid currentColor;
  border-radius: 4px;
  padding: 2px 9px;
  display: inline-block;
  margin-bottom: 16px;
}
.screen-copy h3 {
  font-family: var(--disp);
  font-weight: 400;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 0.95;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
}
.screen-copy h3 .equiv {
  display: block;
  font-family: var(--cond);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c, var(--accent));
  margin-top: 8px;
}
.screen-copy p { font-size: 15px; color: var(--dim); line-height: 1.75; margin-bottom: 18px; text-wrap: pretty; }
.screen-copy p:last-child { margin-bottom: 0; }
.screen-copy strong { color: var(--text); font-weight: 500; }

/* feature chips */
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px; }
.chip {
  font-family: var(--cond);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dim);
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: 20px;
  padding: 5px 13px;
}
.chip.y { color: var(--accent); border-color: rgba(232,255,71,0.3); background: rgba(232,255,71,0.06); }
.chip.r { color: var(--pink);   border-color: rgba(255,77,109,0.3); background: rgba(255,77,109,0.06); }
.chip.b { color: var(--cyan);   border-color: rgba(71,200,255,0.3); background: rgba(71,200,255,0.06); }
.chip.p { color: var(--purple); border-color: rgba(180,127,255,0.3); background: rgba(180,127,255,0.06); }
.chip.g { color: var(--green);  border-color: rgba(79,255,176,0.3); background: rgba(79,255,176,0.06); }

/* ============================================================
   CORE LOOP
   ============================================================ */
.loop-strip {
  display: flex;
  align-items: stretch;
  gap: 0;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.loop-step {
  flex: 1 1 0;
  min-width: 130px;
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: 8px;
  padding: 16px 16px 18px;
  position: relative;
}
.loop-step .ls-kicker {
  font-family: var(--cond); font-weight: 700;
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 8px;
}
.loop-step .ls-title {
  font-family: var(--disp); font-size: 22px; letter-spacing: 0.03em;
  color: var(--text); line-height: 1; margin-bottom: 6px;
}
.loop-step .ls-note { font-size: 11.5px; color: var(--muted); line-height: 1.5; }
.loop-step.start .ls-title { color: var(--accent); }
.loop-step.end   { border-color: rgba(255,77,109,0.4); background: rgba(255,77,109,0.05); }
.loop-step.end .ls-title { color: var(--pink); }
.loop-arrow {
  align-self: center;
  color: var(--border2);
  font-size: 20px;
  padding: 0 10px;
  flex: 0 0 auto;
}
.loop-cycle {
  flex: 2.4 1 0;
  min-width: 280px;
  border: 1px dashed rgba(71,200,255,0.45);
  border-radius: 10px;
  padding: 22px 16px 16px;
  position: relative;
  display: flex;
  gap: 0;
  align-items: stretch;
  background: rgba(71,200,255,0.03);
}
.loop-cycle .cycle-label {
  position: absolute; top: -10px; left: 18px;
  background: var(--bg);
  font-family: var(--cond); font-weight: 700;
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--cyan);
  border: 1px solid rgba(71,200,255,0.4);
  border-radius: 4px;
  padding: 3px 9px;
}
.loop-cycle .cyc-step { flex: 1; text-align: center; padding: 4px 6px; }
.loop-cycle .cyc-step .cs-title { font-family: var(--disp); font-size: 18px; color: var(--cyan); letter-spacing: 0.03em; line-height: 1; }
.loop-cycle .cyc-step .cs-note { font-size: 10px; color: var(--muted); margin-top: 5px; line-height: 1.4; }
.loop-cycle .cyc-arrow { align-self: center; color: rgba(71,200,255,0.5); font-size: 15px; }

.gif-frame {
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  background: #000;
  box-shadow: 0 30px 80px -24px rgba(0,0,0,0.9);
}
.gif-frame img { display: block; width: 100%; height: auto; image-rendering: pixelated; }
.gif-frame .gif-badge {
  position: absolute; top: 14px; left: 14px;
  display: flex; align-items: center; gap: 8px;
  font-family: var(--cond); font-weight: 700;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--pink);
  background: rgba(0,0,0,0.55);
  border: 1px solid rgba(255,77,109,0.4);
  border-radius: 4px;
  padding: 6px 11px;
  backdrop-filter: blur(4px);
}
.gif-frame .gif-badge .rec { width: 8px; height: 8px; border-radius: 50%; background: var(--pink); box-shadow: 0 0 8px var(--pink); animation: pulse 1.4s infinite; }
.gif-caption {
  text-align: center;
  font-size: 13px; color: var(--muted);
  margin-top: 16px;
  font-family: var(--mono);
}
.gif-caption b { color: var(--accent); font-weight: 500; }

/* clock callout */
.clock-callout {
  margin-top: 48px;
  border: 1px solid rgba(255,77,109,0.35);
  background: rgba(255,77,109,0.05);
  border-radius: 10px;
  padding: 26px 28px;
  display: flex;
  gap: 22px;
  align-items: flex-start;
}
.clock-callout .clock-glyph {
  font-family: var(--disp);
  font-size: 30px;
  color: var(--pink);
  border: 2px solid var(--pink);
  border-radius: 8px;
  width: 58px; height: 58px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 24px rgba(255,77,109,0.25);
}
.clock-callout .cc-title {
  font-family: var(--disp); font-size: 24px; letter-spacing: 0.03em;
  color: var(--pink); margin-bottom: 6px;
}
.clock-callout p { font-size: 14px; color: var(--dim); line-height: 1.7; }
.clock-callout p strong { color: var(--text); }

/* ============================================================
   THE WORLD (asset sheet strip)
   ============================================================ */
.world-frame {
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  background: #000;
  cursor: zoom-in;
  position: relative;
  box-shadow: 0 24px 60px -20px rgba(0,0,0,0.8);
  transition: border-color 0.25s;
}
.world-frame:hover { border-color: var(--border2); }
.world-frame img { display: block; width: 100%; height: auto; image-rendering: pixelated; }
.world-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; justify-content: center; }

/* ============================================================
   KEY SYSTEMS
   ============================================================ */
.sys-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.sys-card {
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: 12px;
  padding: 28px;
  position: relative;
  overflow: hidden;
}
.sys-card.span-2 { grid-column: 1 / -1; }
.sys-card .sys-kicker {
  font-family: var(--cond); font-weight: 700;
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--c, var(--accent)); margin-bottom: 8px;
}
.sys-card h3 {
  font-family: var(--disp); font-weight: 400;
  font-size: 30px; letter-spacing: 0.02em; line-height: 1;
  margin-bottom: 14px;
}
.sys-card p { font-size: 14px; color: var(--dim); line-height: 1.7; text-wrap: pretty; }
.sys-card p + p { margin-top: 12px; }
.sys-card strong { color: var(--text); font-weight: 500; }

/* scoring stack */
.score-stack { display: flex; flex-direction: column; gap: 10px; margin-top: 8px; }
.score-layer { border-radius: 8px; padding: 16px 18px; position: relative; overflow: hidden; }
.score-layer::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; }
.score-layer.l1 { background: rgba(232,255,71,0.06); border: 1px solid rgba(232,255,71,0.22); }
.score-layer.l1::before { background: var(--accent); }
.score-layer.l2 { background: rgba(180,127,255,0.06); border: 1px solid rgba(180,127,255,0.22); }
.score-layer.l2::before { background: var(--purple); }
.score-layer.l3 { background: rgba(71,200,255,0.06); border: 1px solid rgba(71,200,255,0.22); }
.score-layer.l3::before { background: var(--cyan); }
.score-head { display: flex; align-items: baseline; gap: 10px; margin-bottom: 10px; }
.score-head .sl-title { font-family: var(--cond); font-weight: 700; font-size: 14px; letter-spacing: 0.12em; text-transform: uppercase; }
.score-head .sl-tag { font-family: var(--cond); font-weight: 600; font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); margin-left: auto; }
.l1 .sl-title { color: var(--accent); }
.l2 .sl-title { color: var(--purple); }
.l3 .sl-title { color: var(--cyan); }
.score-items { display: flex; flex-wrap: wrap; gap: 6px; }
.score-chip { font-size: 11px; font-family: var(--mono); padding: 4px 9px; border-radius: 4px; }
.l1 .score-chip { background: rgba(232,255,71,0.1); color: var(--accent); }
.l2 .score-chip { background: rgba(180,127,255,0.1); color: var(--purple); }
.l3 .score-chip { background: rgba(71,200,255,0.1); color: var(--cyan); }
.score-mult { text-align: center; font-family: var(--disp); font-size: 18px; color: var(--border2); line-height: 1; }

/* fame bar */
.fame-track { display: flex; align-items: center; gap: 12px; margin: 18px 0 14px; }
.fame-end { font-family: var(--cond); font-weight: 700; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; white-space: nowrap; }
.fame-bar { flex: 1; height: 10px; border-radius: 5px; background: var(--surface2); overflow: hidden; border: 1px solid var(--border); }
.fame-fill { height: 100%; width: 64%; border-radius: 5px; background: linear-gradient(90deg, var(--pink) 0%, var(--accent) 58%, var(--green) 100%); }
.fame-effects { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 6px; }
.fame-effect { font-size: 11px; font-family: var(--mono); padding: 4px 10px; border-radius: 4px; border: 1px solid var(--border); }
.fame-effect.up   { color: var(--green); border-color: rgba(79,255,176,0.3); background: rgba(79,255,176,0.06); }
.fame-effect.down { color: var(--pink);  border-color: rgba(255,77,109,0.3); background: rgba(255,77,109,0.06); }

/* star power slot cycle */
.slot-cycle { display: flex; align-items: center; gap: 8px; margin: 18px 0 14px; flex-wrap: wrap; }
.slot {
  flex: 1; min-width: 70px;
  border: 1px solid var(--border); border-radius: 8px;
  background: var(--bg2);
  padding: 12px 8px; text-align: center; position: relative;
}
.slot .s-name { font-family: var(--cond); font-weight: 700; font-size: 13px; letter-spacing: 0.06em; color: var(--dim); }
.slot .s-state { font-family: var(--cond); font-weight: 600; font-size: 9px; letter-spacing: 0.14em; text-transform: uppercase; margin-top: 4px; }
.slot.active { border-color: var(--accent); background: rgba(232,255,71,0.07); box-shadow: 0 0 18px rgba(232,255,71,0.15); }
.slot.active .s-name { color: var(--accent); }
.slot.active .s-state { color: var(--accent); }
.slot.ready .s-state { color: var(--green); }
.slot.cooldown { opacity: 0.55; }
.slot.cooldown .s-state { color: var(--pink); }
.slot .chevron { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); color: var(--accent); font-size: 12px; }
.slot-arrow { color: var(--border2); font-size: 14px; }

/* boss vs festival split */
.versus { display: grid; grid-template-columns: 1fr auto 1fr; gap: 0; align-items: stretch; margin-top: 4px; }
.versus .vs-col { padding: 4px 4px; }
.versus .vs-col h4 { font-family: var(--disp); font-size: 26px; letter-spacing: 0.03em; margin-bottom: 4px; }
.versus .vs-col .vs-sub { font-family: var(--cond); font-weight: 600; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-bottom: 14px; }
.versus .boss h4 { color: var(--pink); }
.versus .fest h4 { color: var(--purple); }
.versus ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.versus li { font-size: 13px; color: var(--dim); line-height: 1.5; padding-left: 16px; position: relative; }
.versus .boss li::before { content: '▸'; position: absolute; left: 0; color: var(--pink); }
.versus .fest li::before { content: '▸'; position: absolute; left: 0; color: var(--purple); }
.versus .vs-mid { width: 1px; background: var(--border); margin: 0 26px; position: relative; }
.versus .vs-mid span {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  font-family: var(--disp); font-size: 18px; color: var(--muted);
  background: var(--surface); padding: 8px 0;
}

/* intel node visual */
.intel-row { display: flex; gap: 16px; align-items: center; margin: 18px 0 4px; }
.intel-node {
  width: 64px; height: 64px; flex-shrink: 0;
  border: 2px solid var(--accent); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--disp); font-size: 38px; color: var(--accent);
  background: rgba(232,255,71,0.05);
  box-shadow: 0 0 22px rgba(232,255,71,0.2);
}
.intel-row .intel-txt { font-size: 13px; color: var(--muted); line-height: 1.55; font-style: italic; }

/* progression list */
.prog-list { display: flex; flex-direction: column; gap: 12px; margin-top: 6px; }
.prog-item { display: flex; gap: 14px; align-items: flex-start; }
.prog-item .pi-key { font-family: var(--cond); font-weight: 700; font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--green); min-width: 110px; flex-shrink: 0; padding-top: 1px; }
.prog-item .pi-val { font-size: 13.5px; color: var(--dim); line-height: 1.55; }

/* ============================================================
   WHERE IT'S AT
   ============================================================ */
.status-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.status-col {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 30px;
  background: var(--surface);
}
.status-col.locked { border-color: rgba(79,255,176,0.25); }
.status-col.open   { border-color: rgba(180,127,255,0.25); }
.status-col .sc-head {
  display: flex; align-items: center; gap: 12px; margin-bottom: 6px;
}
.status-col .sc-head h3 { font-family: var(--disp); font-weight: 400; font-size: 28px; letter-spacing: 0.03em; }
.status-col.locked .sc-head h3 { color: var(--green); }
.status-col.open   .sc-head h3 { color: var(--purple); }
.status-col .sc-tag {
  font-family: var(--cond); font-weight: 700; font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 4px;
}
.status-col.locked .sc-tag { color: var(--green); background: rgba(79,255,176,0.1); }
.status-col.open   .sc-tag { color: var(--purple); background: rgba(180,127,255,0.1); }
.status-col .sc-intro { font-size: 13px; color: var(--muted); line-height: 1.6; margin-bottom: 22px; }

.status-list { display: flex; flex-direction: column; gap: 14px; }
.status-list.locked-list li {
  list-style: none; font-size: 14px; color: var(--dim); line-height: 1.55;
  padding-left: 24px; position: relative;
}
.status-list.locked-list li::before {
  content: '✓'; position: absolute; left: 0; top: 0;
  color: var(--green); font-weight: 700;
}
.status-list.locked-list li b { color: var(--text); font-weight: 500; }

.status-list.open-list { display: flex; flex-direction: column; gap: 14px; }
.status-list.open-list li {
  list-style: none; font-size: 14px; color: var(--dim); line-height: 1.55;
  padding-left: 24px; position: relative;
}
.status-list.open-list li::before {
  content: '\25CB'; position: absolute; left: 0; top: 0;
  color: var(--purple); font-weight: 700; font-size: 13px;
}
.status-list.open-list li b { color: var(--text); font-weight: 500; }

.open-item { list-style: none; border-top: 1px solid var(--border); padding-top: 14px; }
.open-item:first-child { border-top: none; padding-top: 0; }
.open-item .oi-q {
  font-family: var(--cond); font-weight: 600; font-size: 16px; letter-spacing: 0.01em;
  color: var(--text); line-height: 1.3; margin-bottom: 5px;
}
.open-item .oi-q .tag { color: var(--purple); }
.open-item .oi-ctx { font-size: 12.5px; color: var(--muted); line-height: 1.55; }

.feedback-cta {
  margin-top: 30px;
  border: 1px dashed rgba(180,127,255,0.4);
  background: rgba(180,127,255,0.04);
  border-radius: 10px;
  padding: 20px 24px;
  font-size: 14px; color: var(--dim); line-height: 1.65;
}
.feedback-cta b { color: var(--purple); font-weight: 600; }

/* ============================================================
   FOOTER
   ============================================================ */
.foot { padding: 64px 0 80px; border-top: 1px solid var(--border); text-align: center; }
.foot .foot-title { font-family: var(--disp); font-size: 44px; letter-spacing: 0.04em; color: var(--accent); line-height: 0.95; margin-bottom: 10px; }
.foot .foot-title .small { display: block; color: var(--text); font-size: 0.42em; letter-spacing: 0.18em; }
.foot .foot-meta { font-size: 12px; color: var(--muted); letter-spacing: 0.08em; line-height: 1.9; }
.foot .foot-meta .sep { color: var(--border2); margin: 0 10px; }

/* ============================================================
   LIGHTBOX
   ============================================================ */
#lightbox {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(5,5,7,0.94);
  display: none;
  align-items: center; justify-content: center;
  padding: 40px;
  cursor: zoom-out;
  backdrop-filter: blur(6px);
}
#lightbox.open { display: flex; animation: lbfade 0.18s ease; }
@keyframes lbfade { from { opacity: 0; } to { opacity: 1; } }
#lightbox img {
  max-width: 96vw; max-height: 88vh;
  image-rendering: pixelated;
  border: 1px solid var(--border2);
  border-radius: 8px;
  box-shadow: 0 40px 120px -20px rgba(0,0,0,0.9);
}
#lightbox .lb-cap {
  position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
  font-family: var(--cond); font-weight: 600; font-size: 12px;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted);
}
#lightbox .lb-close {
  position: absolute; top: 24px; right: 28px;
  font-family: var(--cond); font-weight: 700; font-size: 13px;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--dim);
  border: 1px solid var(--border2); border-radius: 4px; padding: 7px 13px;
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22,1,0.36,1); }
  .reveal.in { opacity: 1; transform: none; }
  .reveal.d1 { transition-delay: 0.08s; }
  .reveal.d2 { transition-delay: 0.16s; }
  .reveal.d3 { transition-delay: 0.24s; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .hero-top { grid-template-columns: 1fr; gap: 24px; }
  .pillars { grid-template-columns: 1fr; }
  .screen-row { grid-template-columns: 1fr; gap: 28px; margin-bottom: 64px; }
  .screen-row.flip .screen-copy { order: 1; }
  .screen-row.flip .screen-media { order: 2; }
  .sys-grid { grid-template-columns: 1fr; }
  .status-grid { grid-template-columns: 1fr; }
  .versus { grid-template-columns: 1fr; }
  .versus .vs-mid { width: auto; height: 1px; margin: 22px 0; }
  .versus .vs-mid span { padding: 0 12px; background: var(--surface); }
  .loop-strip { flex-direction: column; }
  .loop-arrow { transform: rotate(90deg); padding: 4px 0; }
  .loop-cycle { flex-direction: column; }
  .loop-cycle .cyc-arrow { transform: rotate(90deg); padding: 4px 0; }
}
@media (max-width: 560px) {
  section { padding: 64px 0; }
  .clock-callout { flex-direction: column; gap: 14px; }
  .slot-cycle { gap: 6px; }
}
