/* ============================================================
   QWOO — "Anything Interesting Here?"
   Neon internet curiosity shop, executed clean. Mobile-first.
   ============================================================ */

:root {
  /* -- brand colors -- */
  --black: #05040A;
  --cyan: #00E5FF;
  --magenta: #FF167D;
  --orange: #FF8A00;
  --yellow: #FFD400;
  --purple: #421C7A;
  --off-white: #F8F2E8;

  /* -- derived surfaces -- */
  --surface-1: #0C0A14;
  --surface-2: #131020;
  --surface-3: #1A1429;
  --line: rgba(248, 242, 232, 0.10);
  --line-bright: rgba(0, 229, 255, 0.30);
  --text-dim: rgba(248, 242, 232, 0.62);
  --text-faint: rgba(248, 242, 232, 0.42);

  /* -- type -- */
  --font-display: "Space Grotesk", ui-rounded, system-ui, sans-serif;
  --font-body: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-mono: ui-monospace, "SF Mono", "Cascadia Code", "Roboto Mono", Menlo, monospace;

  /* -- layout -- */
  --radius-lg: 20px;
  --radius: 14px;
  --radius-sm: 9px;
  --container: 1180px;
}

/* ============================================================
   RESET
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--black);
  color: var(--off-white);
  font-family: var(--font-body);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, p { margin: 0; }
button { font: inherit; cursor: pointer; }
ul { margin: 0; padding: 0; }

:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

/* ============================================================
   UTILITIES
   ============================================================ */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 0.5rem;
}

.section-head {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.25rem;
  margin-bottom: 1.75rem;
}
.section-head h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.5rem, 3.6vw, 2.2rem);
  letter-spacing: -0.01em;
}
.section-sub { color: var(--text-dim); font-size: 0.9rem; max-width: 52ch; margin-top: 0.4rem; }

/* buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.75rem 1.35rem;
  border-radius: 999px;
  border: 1.5px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, border-color 0.15s ease;
  white-space: nowrap;
}
.btn:active { transform: scale(0.96); }

.btn-primary {
  background: var(--magenta);
  color: var(--off-white);
  box-shadow: 0 4px 16px rgba(255,22,125,0.25);
}
.btn-primary:hover { box-shadow: 0 4px 22px rgba(255,22,125,0.45); transform: translateY(-1px); }

.btn-cta {
  background: var(--yellow);
  color: var(--black);
  box-shadow: 0 4px 16px rgba(255,212,0,0.22);
}
.btn-cta:hover { box-shadow: 0 4px 20px rgba(255,212,0,0.4); transform: translateY(-1px); }

.btn-ghost {
  background: transparent;
  border-color: var(--cyan);
  color: var(--cyan);
}
.btn-ghost:hover { background: rgba(0,229,255,0.08); }

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

.btn-small { padding: 0.5rem 0.85rem; font-size: 0.76rem; border-radius: 999px; }
.btn-small.btn-outline { border-color: rgba(248,242,232,0.22); }
.btn-small.btn-solid { background: var(--cyan); color: var(--black); border-color: var(--cyan); }
.btn-small.btn-solid:hover { box-shadow: 0 0 14px rgba(0,229,255,0.4); }

/* verdict badges — clean pill by default, sticker-rotated only where explicitly used */
.badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  color: var(--black);
  white-space: nowrap;
}
.badge-magenta { background: var(--magenta); color: var(--off-white); }
.badge-cyan    { background: var(--cyan); }
.badge-yellow  { background: var(--yellow); }
.badge-orange  { background: var(--orange); }
.badge-purple  { background: var(--purple); color: var(--off-white); }
.badge-outline { background: transparent; border: 1.5px solid var(--line); color: var(--off-white); }

/* the sticker cloud is the one spot that earns rotation + shadow */
.verdict-cloud .badge {
  box-shadow: 0 3px 0 rgba(0,0,0,0.3);
}
.rot-1 { transform: rotate(-2deg); }
.rot-2 { transform: rotate(1.5deg); }
.rot-3 { transform: rotate(-1deg); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(5,4,10,0.82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0.85rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.wordmark-block { display: flex; flex-direction: column; margin-right: auto; }
.wordmark-link { display: inline-block; }
.wordmark-img { height: 110px; width: auto; display: block; }
.mascot-tag {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  color: var(--text-faint);
  letter-spacing: 0.04em;
}
.mascot-tag strong { color: var(--cyan); }

.primary-nav {
  display: none;
  gap: 1.5rem;
  font-family: var(--font-mono);
  font-size: 0.8rem;
}
.primary-nav a { color: var(--text-dim); transition: color 0.15s; }
.primary-nav a:hover { color: var(--off-white); }
.primary-nav a.nav-highlight { color: var(--magenta); font-weight: 700; }
.primary-nav a.nav-highlight:hover { color: var(--off-white); }

.nav-toggle {
  background: none;
  border: 1px solid var(--line);
  border-radius: 8px;
  width: 38px;
  height: 34px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.nav-toggle span { width: 16px; height: 2px; background: var(--off-white); border-radius: 1px; }

.header-inner .btn-cta { display: none; }

@media (min-width: 860px) {
  .primary-nav { display: flex; }
  .nav-toggle { display: none; }
  .header-inner .btn-cta { display: inline-flex; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  padding: 2.75rem 1.25rem 2.25rem;
  background:
    radial-gradient(55% 45% at 88% 0%, rgba(255,22,125,0.14), transparent 60%),
    radial-gradient(45% 35% at 8% 5%, rgba(0,229,255,0.11), transparent 60%);
}
.hero-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  gap: 2.25rem;
  align-items: center;
}
.hero-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.2rem, 7vw, 3.8rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 0.2rem 0 1rem;
}
.hero-title-glow {
  display: block;
  color: var(--cyan);
}
.hero-subtitle {
  font-family: var(--font-mono);
  color: var(--yellow);
  font-size: 1rem;
  margin-bottom: 1rem;
}
.hero-desc {
  max-width: 46ch;
  color: var(--text-dim);
  margin-bottom: 1.6rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.8rem; }

/* mascot */
.hero-mascot { display: flex; flex-direction: column; align-items: center; text-align: center; }
.mascot-box {
  position: relative;
  width: 100%;
  max-width: 300px;
  background: var(--surface-2);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 26px rgba(255,22,125,0.25);
}
.mascot-embed-wrap {
  position: relative;
  width: 100%;
  max-width: 260px;
  margin: 0 auto;
  padding-top: 177.78%; /* portrait 9:16, matches the actual source video */
}
.mascot-embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.mascot-label {
  position: absolute;
  bottom: 10px;
  left: 12px;
  font-family: var(--font-mono);
  font-size: 0.64rem;
  letter-spacing: 0.2em;
  color: var(--off-white);
  background: rgba(5,4,10,0.6);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  pointer-events: none;
}
.mascot-caption {
  margin-top: 0.85rem;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--text-dim);
  max-width: 300px;
  text-align: center;
}

@media (min-width: 900px) {
  .hero-grid { grid-template-columns: 1.15fr 0.85fr; text-align: left; }
  .hero-mascot { align-items: center; }
}

/* ============================================================
   REAL OR FAKE? GAME MODE
   ============================================================ */
.game {
  padding: 3rem 0 3.5rem;
  background: var(--surface-1);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.game-hero {
  max-width: var(--container);
  margin: 0 auto 2.5rem;
  padding: 0 1.25rem;
}
.game-hero-inner {
  position: relative;
  background: var(--surface-2);
  border: 1.5px solid var(--line-bright);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  overflow: hidden;
}
.game-hero-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 60% at 100% 0%, rgba(255,22,125,0.16), transparent 60%),
    radial-gradient(50% 50% at 0% 100%, rgba(0,229,255,0.14), transparent 60%);
  pointer-events: none;
}
.game-title {
  position: relative;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 3rem);
  letter-spacing: -0.02em;
  margin: 0.15rem 0 0.6rem;
}
.game-subtitle {
  position: relative;
  color: var(--text-dim);
  max-width: 56ch;
  margin-bottom: 1.1rem;
}
.game-stamp {
  position: relative;
  display: inline-block;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--magenta);
  border: 1.5px dashed var(--magenta);
  border-radius: 8px;
  padding: 0.5rem 0.85rem;
  transform: rotate(-1.5deg);
  margin-bottom: 1.6rem;
}
.game-rules {
  position: relative;
  list-style: none;
  display: grid;
  gap: 0.6rem;
  padding: 0;
  max-width: 460px;
}
.game-rules li {
  display: flex;
  align-items: baseline;
  gap: 0.65rem;
  font-size: 0.92rem;
  color: var(--off-white);
}
.game-rules li::before {
  content: "\2022";
  color: var(--cyan);
  font-size: 0.9rem;
}

@media (min-width: 720px) {
  .game-rules { grid-template-columns: 1fr 1fr; max-width: none; column-gap: 2rem; }
}

/* suspect cards */
.suspect-grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.25rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.9rem;
}
@media (min-width: 860px) {
  .suspect-grid { grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
}

.suspect-card {
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.suspect-card:hover { border-color: var(--line-bright); transform: translateY(-3px); }

.suspect-media { position: relative; aspect-ratio: 4 / 5; background: var(--surface-3); }
.suspect-media img { width: 100%; height: 100%; object-fit: cover; background: var(--surface-3); }
.not-real-tag {
  position: absolute;
  left: 8px;
  bottom: 8px;
  background: rgba(5,4,10,0.72);
  backdrop-filter: blur(3px);
  color: var(--text-dim);
  font-family: var(--font-mono);
  font-size: 0.56rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 0.28rem 0.5rem;
  border-radius: 5px;
  border: 1px solid var(--line);
}

.suspect-body { padding: 1.05rem 1.1rem 1.25rem; display: flex; flex-direction: column; gap: 0.6rem; flex: 1; }
.suspect-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.02rem;
  line-height: 1.25;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.5em;
}
.ai-overview-label {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-top: -0.25rem;
}
.suspect-desc {
  font-size: 0.85rem;
  color: var(--text-dim);
  margin-top: -0.4rem;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
/* the detail view has no automatic flex gap between blocks (unlike .suspect-body
   on the grid card), so the card's negative margins crowd the text here. Undo them
   and add proper spacing for this context only. */
.detail-content .ai-overview-label { margin-top: 1rem; }
.detail-content .suspect-desc { margin-top: 0.3rem; -webkit-line-clamp: unset; }

/* fake QWOOcast player, visible on every card pre-vote */
.qwoocast-player {
  background: var(--surface-3);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0.65rem 0.8rem;
}
.player-top { display: flex; justify-content: space-between; font-family: var(--font-mono); font-size: 0.62rem; color: var(--text-dim); margin-bottom: 0.45rem; }
.player-label { color: var(--cyan); }
.player-row { display: flex; align-items: center; gap: 0.6rem; }
.play-btn {
  flex: 0 0 auto;
  width: 30px; height: 30px;
  border-radius: 50%;
  border: none;
  background: var(--magenta);
  color: var(--off-white);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
}
.play-icon { font-size: 0.68rem; margin-left: 1px; }
.player-track { flex: 1; min-width: 0; }
.player-title { font-size: 0.72rem; font-weight: 600; margin-bottom: 0.3rem; color: var(--text-dim); }
.player-progress { height: 4px; border-radius: 3px; background: rgba(248,242,232,0.14); overflow: hidden; }
.player-progress-fill { width: 22%; height: 100%; background: linear-gradient(90deg, var(--cyan), var(--magenta)); }

/* star rating — radio-input trick. Inputs render in reverse DOM order (5..1)
   so the CSS general-sibling selector can fill every star from the clicked
   one leftward, which is what actually fixes the old one-star-only bug. */
.stars { display: flex; flex-direction: row-reverse; align-items: center; gap: 0.15rem; }
.star-input { position: absolute; opacity: 0; width: 0; height: 0; }
.star-label {
  font-size: 1.15rem;
  line-height: 1;
  color: var(--line);
  cursor: pointer;
  transition: color 0.12s ease, transform 0.12s ease;
}
.star-label:hover,
.star-label:hover ~ .star-label,
.star-input:checked ~ .star-label {
  color: var(--yellow);
}
.star-label:hover { transform: scale(1.12); }
.rating-caption {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  color: var(--text-faint);
  margin-left: 0.5rem;
}

.suspect-actions { display: grid; gap: 0.6rem; margin-top: 0.1rem; }
.suspect-guess { display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem; }
.guess-btn {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  padding: 0.65rem 0.3rem;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--line);
  background: transparent;
  color: var(--off-white);
  transition: all 0.15s ease;
  cursor: pointer;
}
.guess-real:hover { border-color: var(--cyan); color: var(--cyan); background: rgba(0,229,255,0.06); }
.guess-fake:hover { border-color: var(--magenta); color: var(--magenta); background: rgba(255,22,125,0.06); }
.guess-btn:disabled { cursor: default; opacity: 0.35; }
.guess-btn:disabled:hover { background: transparent; }

.investigate-btn { width: 100%; color: var(--text-dim); }
.investigate-btn:hover { border-color: var(--yellow); color: var(--yellow); background: rgba(255,212,0,0.06); }

.review-btn {
  width: 100%;
  justify-content: center;
  margin-top: 0.1rem;
}

.guess-feedback {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.02em;
  margin: 1.1rem 0 0;
  padding-top: 1rem;
  border-top: 1px dashed var(--line);
}
.guess-feedback.is-correct { color: var(--cyan); }
.guess-feedback.is-wrong { color: var(--magenta); }

@keyframes reveal-in {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: none; }
}
.human-pov-label {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--yellow);
  margin: 1.1rem 0 0.4rem;
}
.human-pov-text { font-size: 0.85rem; color: var(--off-white); margin: 0; }

.tag-row { display: flex; flex-wrap: wrap; align-items: center; gap: 0.5rem; margin-top: 1rem; }
.tag-row .badge { white-space: normal; text-align: left; }
.tag-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-faint);
  border: 1px solid var(--line);
  border-radius: 5px;
  padding: 0.2rem 0.45rem;
}

.fake-reactions { display: flex; flex-direction: column; gap: 0.65rem; margin-top: 1rem; }
.fake-reactions .react-btn { width: 100%; }
.tag-row + .react-btn {
  margin: 1rem auto 0;
  display: flex;
  width: fit-content;
  background: var(--yellow);
  color: var(--black);
  border-color: var(--yellow);
}
.tag-row + .react-btn:hover { box-shadow: 0 0 14px rgba(255,212,0,0.4); }
.react-btn.is-active.guess-real,
.react-btn.is-active { border-color: var(--yellow); color: var(--yellow); background: rgba(255,212,0,0.08); }

.comments-block { border-top: 1px solid var(--line); padding-top: 0.85rem; }
.modal-label {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cyan);
  margin: 0 0 0.5rem;
}
.comment-list { list-style: none; padding: 0; margin: 0 0 0.85rem; display: grid; gap: 0.5rem; }
.comment-item {
  background: var(--surface-3);
  border-radius: var(--radius-sm);
  padding: 0.5rem 0.65rem;
  font-size: 0.78rem;
}
.comment-name { display: block; font-family: var(--font-mono); font-size: 0.6rem; color: var(--cyan); margin-bottom: 0.2rem; }
.comment-text { color: var(--off-white); }

.comment-form { display: grid; gap: 0.5rem; }
.comment-input-name,
.comment-input-text {
  width: 100%;
  background: var(--surface-3);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0.55rem 0.7rem;
  color: var(--off-white);
  font-family: var(--font-body);
  font-size: 0.82rem;
}
.comment-input-text { resize: vertical; min-height: 56px; }
.comment-input-name:focus,
.comment-input-text:focus { border-color: var(--line-bright); outline: none; }
.comment-form .btn { justify-self: start; }

/* scoreboard */
.game-section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
}
.scoreboard {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem 0.7rem;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.6rem 0.7rem;
}
.scoreboard-label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-faint);
}
.scoreboard-value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--yellow);
}
.scoreboard-divider { color: var(--text-faint); }
.scoreboard-fake { color: var(--magenta); }



/* ============================================================

   HOW QWOO WORKS
   ============================================================ */
.how { padding: 3.25rem 1.25rem; }
.how-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  gap: 1.1rem;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
}
.how-card {
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 1.3rem 1.15rem;
  text-align: left;
}
.how-icon { font-size: 1.7rem; display: block; margin-bottom: 0.55rem; }
.how-card h3 { font-family: var(--font-display); font-weight: 700; font-size: 1rem; margin-bottom: 0.32rem; }
.how-card p { font-size: 0.84rem; color: var(--text-dim); }

/* ============================================================
   VERDICT SYSTEM (sticker cloud)
   ============================================================ */
.verdicts { padding: 1.75rem 1.25rem 3.25rem; }
.verdict-cloud {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 0.65rem;
}
.verdict-cloud .badge { font-size: 0.72rem; padding: 0.5rem 0.85rem; }

/* ============================================================
   DISCLOSURE
   ============================================================ */
.disclosure {
  padding: 2rem 1.25rem;
  background: var(--surface-3);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.disclosure-inner {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}
.disclosure-icon { font-size: 1.2rem; color: var(--yellow); flex: 0 0 auto; }
.disclosure-inner p { font-size: 0.84rem; color: var(--text-dim); }
.disclosure-inner strong { color: var(--off-white); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { padding: 2.25rem 1.25rem 2.75rem; }
.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}
.footer-word { font-family: var(--font-display); font-weight: 700; font-size: 1.5rem; }
.footer-tag { font-family: var(--font-mono); color: var(--yellow); font-size: 0.8rem; margin-top: 0.2rem; }
.footer-host { font-family: var(--font-mono); font-size: 0.7rem; color: var(--text-faint); margin-top: 0.3rem; }
.footer-links { display: flex; flex-wrap: wrap; gap: 1.05rem; font-family: var(--font-mono); font-size: 0.78rem; }
.footer-links a { color: var(--text-dim); }
.footer-links a:hover { color: var(--cyan); }

.footer-business {
  max-width: var(--container);
  margin: 1.5rem auto 0;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--text-faint);
  line-height: 1.7;
}

@media (min-width: 700px) {
  .footer-inner { flex-direction: row; justify-content: space-between; align-items: flex-end; }
}


/* ============================================================
   FULL-SCREEN DETAIL VIEW
   Opened by REAL / FAKE / I NEED MORE INFO. Compact grid cards never
   change size — all expanded content lives here instead, in its
   own scrollable full-screen layer above everything else.
   ============================================================ */
.detail-view {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--black);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.detail-view[hidden] { display: none; }

.detail-close {
  position: sticky;
  top: 0;
  z-index: 5;
  width: 100%;
  text-align: left;
  padding: 1rem 1.25rem;
  background: rgba(5,4,10,0.9);
  backdrop-filter: blur(8px);
  border: none;
  border-bottom: 1px solid var(--line);
  color: var(--off-white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
}

.detail-content {
  max-width: 640px;
  margin: 0 auto;
  padding: 1.5rem 1.25rem 3rem;
  animation: reveal-in 0.22s ease;
}

.detail-eyebrow {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 0.3rem;
}
.detail-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.4rem, 6vw, 1.9rem);
  margin-bottom: 1rem;
}
.detail-media {
  position: relative;
  aspect-ratio: 4 / 5;
  max-height: 70vh;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface-3);
  margin-bottom: 1.1rem;
}
.detail-media img { width: 100%; height: 100%; object-fit: cover; background: var(--surface-3); }
.detail-media .not-real-tag { position: absolute; left: 10px; bottom: 10px; }

.detail-desc {
  font-size: 0.95rem;
  color: var(--text-dim);
  margin: -0.4rem 0 1.1rem;
}

.detail-content .qwoocast-player { margin-bottom: 1.1rem; }
.detail-content .stars { margin-bottom: 1.1rem; }

.detail-guess-prompt {
  margin-top: 0.9rem;
  padding-top: 1rem;
  border-top: 1px dashed var(--line);
  text-align: center;
}
.detail-guess-label {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--text-dim);
  margin: 0 0 0.8rem;
}

/* ============================================================
   UNIFORM PRODUCT CARD LOCK
   Every product uses the taller Valencourt-style product frame:
   same image box, same card structure, same content zones.
   Image source dimensions no longer control layout.
   ============================================================ */
:root {
  --qwoo-product-image-ratio: 3 / 4;
  --qwoo-card-title-lines: 2;
  --qwoo-card-desc-lines: 5;
  --qwoo-card-title-line-height: 1.25;
  --qwoo-card-desc-line-height: 1.38;
}

.suspect-grid {
  align-items: stretch;
  grid-auto-rows: 1fr;
}

.suspect-card {
  min-width: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.suspect-media {
  position: relative;
  width: 100%;
  aspect-ratio: var(--qwoo-product-image-ratio);
  flex: 0 0 auto;
  overflow: hidden;
  background: var(--surface-3);
}

.suspect-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  background: var(--surface-3);
}

.suspect-body {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.suspect-title {
  line-height: var(--qwoo-card-title-line-height);
  min-height: calc(1.02rem * var(--qwoo-card-title-line-height) * var(--qwoo-card-title-lines));
  max-height: calc(1.02rem * var(--qwoo-card-title-line-height) * var(--qwoo-card-title-lines));
}

.suspect-desc {
  line-height: var(--qwoo-card-desc-line-height);
  min-height: calc(0.85rem * var(--qwoo-card-desc-line-height) * var(--qwoo-card-desc-lines));
  max-height: calc(0.85rem * var(--qwoo-card-desc-line-height) * var(--qwoo-card-desc-lines));
}

.qwoocast-player {
  min-height: 88px;
  flex: 0 0 auto;
}

.stars {
  min-height: 28px;
  flex: 0 0 auto;
}

.suspect-actions,
.review-btn {
  margin-top: auto;
  flex: 0 0 auto;
}

.suspect-actions {
  min-height: 90px;
}

.suspect-guess,
.investigate-btn,
.review-btn {
  min-height: 42px;
}

.suspect-guess > * {
  min-height: 42px;
}

.detail-media {
  width: 100%;
  aspect-ratio: var(--qwoo-product-image-ratio);
}

.detail-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

/* ============================================================
   SMALL DISCLOSURE TAG
   Keep the legal note present, but make it quiet.
   ============================================================ */
.not-real-tag {
  left: 6px;
  bottom: 6px;
  padding: 0.18rem 0.34rem;
  border-radius: 4px;
  font-size: 0.46rem;
  letter-spacing: 0.02em;
  line-height: 1;
  background: rgba(5, 4, 10, 0.48);
  color: rgba(248, 242, 232, 0.48);
  border-color: rgba(248, 242, 232, 0.08);
  backdrop-filter: blur(2px);
}

.detail-media .not-real-tag {
  left: 8px;
  bottom: 8px;
  font-size: 0.5rem;
  padding: 0.2rem 0.38rem;
}
