/* Guess the Movie — website styles. "Spotlight Stage" per DESIGN.md.
   Midnight stage, gold spotlight, Bricolage Grotesque + Geist. Dark canonical. */

:root {
  --stage:    #0B0F2E;
  --surface:  #171F4F;
  --surface2: #1F2960;
  --line:     #2A356E;
  --gold:     #FFB938;
  --gold-deep:#E89F1F;
  --paper:    #F5F1E8;
  --slate:    #8C92B8;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }

body {
  background: var(--stage);
  color: var(--paper);
  font-family: 'Geist', system-ui, -apple-system, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Spotlight glow from the top — the stage light */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(900px 460px at 50% -130px,
              rgba(255, 185, 56, 0.16), transparent 70%);
}

.wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

a { color: var(--gold); text-underline-offset: 3px; }
a:hover { text-decoration: none; }

h1, h2, h3, .wordmark, .hero-title {
  font-family: 'Bricolage Grotesque', 'Geist', sans-serif;
}

/* ---- Masthead ---- */

.masthead {
  padding: 22px 0 18px;
  border-bottom: 1px solid var(--line);
}
.wordmark {
  display: inline-block;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--paper);
  text-decoration: none;
}
.tagline { font-size: 13px; color: var(--slate); margin-top: 6px; }
.nav { margin-top: 14px; font-size: 13px; }
.nav a {
  color: var(--paper);
  text-decoration: none;
  margin-right: 18px;
  padding-bottom: 3px;
  border-bottom: 2px solid var(--gold);
}

/* ---- Hero ---- */

.hero { text-align: center; padding: 48px 0 26px; }
.hero-emoji { font-size: 52px; }
.hero-title {
  font-size: 40px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 16px 0 12px;
}
.hero-sub {
  font-size: 18px;
  color: var(--slate);
  max-width: 480px;
  margin: 0 auto;
}

/* ---- Cards ---- */

main { padding: 30px 0 12px; }

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 26px;
  margin-bottom: 22px;
}

.kicker {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

h1 { font-size: 30px; font-weight: 800; letter-spacing: -0.015em; margin-bottom: 6px; }
h2 { font-size: 21px; font-weight: 700; margin: 26px 0 10px; }
h3 { font-size: 16px; font-weight: 600; margin: 18px 0 6px; }
p { margin-bottom: 14px; }
ul { margin: 0 0 14px 22px; }
li { margin-bottom: 7px; }
strong { font-weight: 600; color: var(--paper); }

.lede { font-size: 18px; color: var(--slate); }
.updated {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--slate);
  margin-bottom: 18px;
}

/* ---- Feature rows ---- */

.feature {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.feature:last-child { border-bottom: 0; }
.feature .ico { font-size: 28px; flex: none; line-height: 1.2; }
.feature h3 { margin: 0 0 2px; }
.feature p { margin: 0; color: var(--slate); font-size: 15px; }

/* ---- Callout ---- */

.callout {
  background: var(--surface2);
  border-left: 4px solid var(--gold);
  border-radius: 12px;
  padding: 16px 18px;
  margin: 16px 0;
}
.callout p:last-child { margin-bottom: 0; }

/* ---- FAQ ---- */

.faq-q { font-weight: 600; color: var(--paper); margin-top: 18px; margin-bottom: 4px; }

/* ---- CTA ---- */

.cta {
  display: inline-block;
  background: var(--gold);
  color: var(--stage);
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 16px;
  text-decoration: none;
  padding: 14px 26px;
  border-radius: 12px;
}

.rule { border: 0; border-top: 1px solid var(--line); margin: 22px 0; }

/* ---- Footer ---- */

.footer {
  border-top: 1px solid var(--line);
  margin-top: 30px;
  padding: 22px 0 40px;
}
.footer p { font-size: 13px; color: var(--slate); margin-bottom: 8px; }
.footer .nav-foot a { color: var(--paper); margin-right: 12px; }
.footer .copy {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--slate);
}

/* ---- Responsive ---- */

@media (max-width: 520px) {
  body { font-size: 16px; }
  .hero-title { font-size: 30px; }
  .card { padding: 18px; }
  h1 { font-size: 24px; }
  .nav a { margin-right: 12px; }
}
