/* ============================================================
   Film Watchers — Broadcast Studio
   Layered atop Tailwind CDN. Variables drive everything.
   ============================================================ */

:root {
  --bg-deep: #0A1628;
  --bg-panel: #14233D;
  --bg-elevated: #1B2D4F;
  --text-primary: #F5F7FA;
  --text-muted: #94A3B8;
  --accent-amber: #F4B324;
  --accent-amber-bright: #FFD66B;
  --accent-red: #E63946;
  --rule: #243B61;

  --font-display: 'Anton', 'Arial Narrow', sans-serif;
  --font-score: 'Oswald', 'Arial Narrow', sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;

  --shadow-elev: 0 30px 60px -20px rgba(0, 0, 0, 0.55), 0 10px 20px -10px rgba(0, 0, 0, 0.4);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 88px; }

body {
  margin: 0;
  background: var(--bg-deep);
  color: var(--text-primary);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* ─── Typographic scale ─────────────────────────────────── */
.font-display { font-family: var(--font-display); letter-spacing: 0.02em; }
.font-score { font-family: var(--font-score); letter-spacing: 0.08em; }

h1.display, .display-1 {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 11vw, 9rem);
  line-height: 0.92;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.display-2 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4.75rem);
  line-height: 1;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.eyebrow {
  font-family: var(--font-score);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--accent-amber);
}
.kicker {
  font-family: var(--font-score);
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.text-amber { color: var(--accent-amber); }
.text-red { color: var(--accent-red); }
.text-muted { color: var(--text-muted); }

/* ─── Layout helpers ─────────────────────────────────────── */
.wrap { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }
@media (min-width: 768px) { .wrap { padding: 0 2.5rem; } }

.section { padding: 6rem 0; position: relative; }
@media (min-width: 768px) { .section { padding: 8rem 0; } }

.panel {
  background: var(--bg-panel);
  border: 1px solid var(--rule);
  border-radius: 14px;
  box-shadow: var(--shadow-elev);
}

/* ─── Scoreboard chrome bar (top of nav) ─────────────────── */
.score-bar {
  position: relative;
  height: 4px;
  background: var(--accent-amber);
}
.score-bar::after {
  content: '';
  position: absolute;
  inset: 0 auto 0 0;
  width: 28%;
  background: var(--accent-red);
}

/* ─── Sticky nav ─────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 22, 40, 0.86);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--rule);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}
.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  color: var(--text-primary);
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.brand-lockup:hover { transform: translateY(-1px); }
.brand-lockup:hover .brand-avatar {
  filter: drop-shadow(0 4px 14px rgba(244, 179, 36, 0.4));
  transform: scale(1.04);
}

/* The avatar JPG is a black square with the football centered.
   `mix-blend-mode: lighten` discards the black background by blending
   against the page color behind it — the football and the cream FW
   monogram (both lighter than the navy BG) come through cleanly,
   so the mark appears to float on the page. No more visible square. */
.brand-avatar {
  width: 56px;
  height: 56px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
  mix-blend-mode: lighten;
  filter: drop-shadow(0 4px 14px rgba(0, 0, 0, 0.6));
  transition: filter 0.2s ease, transform 0.2s ease;
}

.brand-wordmark {
  display: flex;
  flex-direction: column;
  line-height: 0.95;
  letter-spacing: 0.04em;
}
.brand-wordmark .row {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-primary);
}
.brand-wordmark .row.amber {
  background: linear-gradient(90deg, var(--accent-amber), var(--accent-amber-bright));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-top: 3px;
}

/* On narrow screens hide the wordmark — the avatar alone is the brand */
@media (max-width: 520px) {
  .brand-wordmark { display: none; }
  .brand-avatar { width: 50px; height: 50px; }
}

/* Larger lockup variant for footer */
.brand-lockup.brand-lg { gap: 1.1rem; }
.brand-lockup.brand-lg .brand-avatar {
  width: 92px;
  height: 92px;
}
.brand-lockup.brand-lg .brand-wordmark .row { font-size: 2.1rem; }
.nav-links {
  display: none;
  gap: 2.25rem;
  font-family: var(--font-score);
  font-weight: 500;
  font-size: 0.82rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s ease;
  position: relative;
  padding: 6px 0;
}
.nav-links a:hover { color: var(--text-primary); }
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--accent-amber);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.nav-links a:hover::after { transform: scaleX(1); }

@media (min-width: 900px) { .nav-links { display: flex; } }

.nav-cta {
  display: none;
  font-family: var(--font-score);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: var(--accent-amber);
  color: #0A1628;
  padding: 0.7rem 1.25rem;
  border-radius: 999px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.nav-cta:hover {
  background: var(--accent-amber-bright);
  transform: translateY(-1px);
  box-shadow: 0 10px 22px -10px rgba(244, 179, 36, 0.7);
}
@media (min-width: 900px) { .nav-cta { display: inline-flex; align-items: center; gap: .5rem; } }

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid var(--rule);
  border-radius: 10px;
  color: var(--text-primary);
  cursor: pointer;
}
@media (min-width: 900px) { .nav-toggle { display: none; } }

.mobile-menu {
  display: none;
  border-top: 1px solid var(--rule);
  background: rgba(10, 22, 40, 0.96);
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--rule);
  color: var(--text-primary);
  text-decoration: none;
  font-family: var(--font-score);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.85rem;
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { background: var(--bg-panel); }

/* ─── Hero ───────────────────────────────────────────────── */
.hero {
  position: relative;
  overflow: hidden;
  padding: 5rem 0 7rem;
  isolation: isolate;
}
@media (min-width: 768px) { .hero { padding: 7rem 0 9rem; } }

.hero-grid::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(transparent 95%, rgba(36, 59, 97, 0.55) 95%),
    linear-gradient(90deg, transparent 95%, rgba(36, 59, 97, 0.55) 95%);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at 50% 30%, black 35%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 30%, black 35%, transparent 75%);
  pointer-events: none;
  z-index: -2;
}

.hero-grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.96  0 0 0 0 0.97  0 0 0 0 0.98  0 0 0 0.06 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  opacity: 0.45;
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: -1;
}

.hero-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 30%, rgba(10, 22, 40, 0.85) 90%);
  pointer-events: none;
  z-index: -1;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0.9rem;
  border: 1px solid var(--rule);
  border-radius: 999px;
  background: rgba(20, 35, 61, 0.6);
}
.live-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent-red);
  box-shadow: 0 0 0 0 rgba(230, 57, 70, 0.7);
  animation: pulse 1.6s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(230, 57, 70, 0.6); }
  70% { box-shadow: 0 0 0 12px rgba(230, 57, 70, 0); }
  100% { box-shadow: 0 0 0 0 rgba(230, 57, 70, 0); }
}

.hero-title { color: var(--text-primary); margin: 1.25rem 0 0; }
.hero-title .row1 { color: var(--text-primary); display: block; }
.hero-title .row2 {
  display: block;
  background: linear-gradient(90deg, var(--accent-amber), var(--accent-amber-bright));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-sub {
  margin: 1.75rem 0 0;
  color: var(--text-muted);
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  max-width: 38rem;
  line-height: 1.55;
}

.hero-ctas { margin-top: 2.5rem; display: flex; flex-wrap: wrap; gap: 1rem; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-score);
  font-weight: 600;
  font-size: 0.86rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent-amber);
  color: #0A1628;
}
.btn-primary:hover {
  background: var(--accent-amber-bright);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -12px rgba(244, 179, 36, 0.7);
}
.btn-ghost {
  background: transparent;
  color: var(--text-primary);
  border-color: var(--rule);
}
.btn-ghost:hover {
  border-color: var(--accent-amber);
  color: var(--accent-amber);
}
.btn-red {
  background: var(--accent-red);
  color: var(--text-primary);
}
.btn-red:hover {
  background: #ff4757;
  transform: translateY(-2px);
}

.hero-ribbon {
  margin-top: 4rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--rule);
  display: flex; flex-wrap: wrap;
  gap: 0.75rem 2.25rem;
  font-family: var(--font-score);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.hero-ribbon strong { color: var(--accent-amber); font-weight: 600; }

/* ─── Stats strip (scoreboard tiles) ─────────────────────── */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 768px) { .stat-grid { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; } }

.stat-tile {
  background: var(--bg-panel);
  border: 1px solid var(--rule);
  border-radius: 12px;
  padding: 1.75rem 1.5rem;
  position: relative;
  overflow: hidden;
}
.stat-tile::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--accent-amber);
}
.stat-tile:nth-child(2)::before { background: var(--accent-red); }
.stat-tile:nth-child(3)::before { background: var(--accent-amber); }
.stat-tile:nth-child(4)::before { background: var(--accent-red); }
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  line-height: 1;
  color: var(--text-primary);
  letter-spacing: 0.02em;
}
.stat-label {
  margin-top: 0.5rem;
  font-family: var(--font-score);
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ─── Section headers ────────────────────────────────────── */
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 3rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--rule);
  position: relative;
}
.section-head::after {
  content: '';
  position: absolute;
  left: 0; bottom: -1px;
  width: 80px; height: 2px;
  background: var(--accent-amber);
}

/* ─── About ───────────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 900px) { .about-grid { grid-template-columns: 5fr 7fr; gap: 4rem; } }

.portrait {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--rule);
  background: var(--bg-panel);
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-elev);
}
.portrait img,
.portrait svg {
  width: 100%; height: 100%; display: block;
  object-fit: cover;
  object-position: center 30%;
}
.portrait::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(10, 22, 40, 0.85) 100%);
  pointer-events: none;
  border-radius: 14px;
}
.portrait-caption {
  position: absolute;
  left: 1.5rem;
  bottom: 1.5rem;
  z-index: 2;
  font-family: var(--font-score);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: rgba(10, 22, 40, 0.7);
  padding: 0.4rem 0.7rem;
  border-radius: 4px;
  border: 1px solid var(--rule);
}

.bio p {
  color: var(--text-primary);
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 0 0 1.25rem;
}
.bio p.lead {
  font-size: 1.2rem;
  color: var(--text-primary);
}
.pull-quote {
  margin: 2rem 0 0;
  padding: 1.5rem 1.75rem;
  border-left: 3px solid var(--accent-amber);
  background: var(--bg-panel);
  border-radius: 0 10px 10px 0;
  font-family: var(--font-score);
  font-weight: 500;
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  color: var(--accent-amber);
  font-style: italic;
}

/* ─── Latest videos ──────────────────────────────────────── */
.video-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 700px) { .video-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .video-grid { grid-template-columns: repeat(3, 1fr); gap: 1.75rem; } }

.video-card {
  background: var(--bg-panel);
  border: 1px solid var(--rule);
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: var(--text-primary);
  display: block;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.video-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-amber);
  box-shadow: 0 24px 50px -22px rgba(0, 0, 0, 0.7);
}
.video-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--bg-elevated);
  overflow: hidden;
}
.video-thumb img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.video-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(10, 22, 40, 0.55) 100%);
}
.play-badge {
  position: absolute;
  top: 50%; left: 50%;
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(244, 179, 36, 0.95);
  color: #0A1628;
  display: flex; align-items: center; justify-content: center;
  transform: translate(-50%, -50%) scale(0.85);
  opacity: 0;
  transition: all 0.25s ease;
  z-index: 2;
}
.video-card:hover .play-badge { opacity: 1; transform: translate(-50%, -50%) scale(1); }

.video-meta {
  padding: 1.25rem 1.25rem 1.5rem;
}
.video-title {
  font-family: var(--font-score);
  font-weight: 600;
  font-size: 1.02rem;
  line-height: 1.35;
  letter-spacing: 0.01em;
  margin: 0;
  color: var(--text-primary);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.video-time {
  margin-top: 0.6rem;
  font-family: var(--font-score);
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: flex; align-items: center; gap: 0.5rem;
}
.video-time .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--text-muted); }

.skeleton {
  background: linear-gradient(90deg, var(--bg-panel) 0%, var(--bg-elevated) 50%, var(--bg-panel) 100%);
  background-size: 200% 100%;
  animation: shimmer 1.4s infinite;
  border-radius: 6px;
}
@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ─── Pillars ────────────────────────────────────────────── */
.pillar-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) { .pillar-grid { grid-template-columns: repeat(3, 1fr); gap: 2rem; } }

.pillar {
  position: relative;
  padding: 2.25rem 1.75rem 2rem;
  background: var(--bg-panel);
  border: 1px solid var(--rule);
  border-radius: 12px;
  overflow: hidden;
}
.pillar-num {
  font-family: var(--font-display);
  font-size: 4.5rem;
  line-height: 1;
  color: var(--accent-red);
  opacity: 0.85;
  margin-bottom: 1rem;
}
.pillar h3 {
  font-family: var(--font-score);
  font-weight: 600;
  font-size: 1.35rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0 0 0.75rem;
}
.pillar p {
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
  font-size: 0.97rem;
}
.pillar-arrow {
  position: absolute;
  top: 1.75rem;
  right: 1.5rem;
  width: 60px;
  height: 30px;
  opacity: 0.5;
}

/* ─── Press strip ────────────────────────────────────────── */
.press-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.25rem 2.5rem;
  padding: 2rem 0;
}
.press-chip {
  font-family: var(--font-score);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 0.85rem 1.25rem;
  border: 1px solid var(--rule);
  border-radius: 999px;
  background: rgba(20, 35, 61, 0.4);
}

/* ─── Forms ──────────────────────────────────────────────── */
.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 700px) { .form-grid { grid-template-columns: 1fr 1fr; gap: 1.25rem; } }
.form-grid .full { grid-column: 1 / -1; }

.field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.field label {
  font-family: var(--font-score);
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.field input,
.field select,
.field textarea {
  background: var(--bg-deep);
  border: 1px solid var(--rule);
  border-radius: 8px;
  color: var(--text-primary);
  padding: 0.95rem 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color 0.2s ease, background 0.2s ease;
  width: 100%;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent-amber);
  background: #0d1d36;
}
.field textarea { resize: vertical; min-height: 140px; }
.honeypot { position: absolute; left: -10000px; width: 1px; height: 1px; opacity: 0; }

.form-status {
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  border-radius: 8px;
  font-family: var(--font-score);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: none;
}
.form-status.ok { display: block; background: rgba(244, 179, 36, 0.12); color: var(--accent-amber); border: 1px solid rgba(244, 179, 36, 0.35); }
.form-status.err { display: block; background: rgba(230, 57, 70, 0.12); color: var(--accent-red); border: 1px solid rgba(230, 57, 70, 0.35); }

/* Newsletter inline */
.news-form {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  max-width: 520px;
}
.news-form input {
  flex: 1; min-width: 220px;
  background: var(--bg-deep);
  border: 1px solid var(--rule);
  border-radius: 999px;
  padding: 1rem 1.25rem;
  color: var(--text-primary);
  font-size: 1rem;
}
.news-form input:focus { outline: none; border-color: var(--accent-amber); }
.news-form button {
  border-radius: 999px;
}

/* ─── Footer ─────────────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--rule);
  padding: 4rem 0 3rem;
  margin-top: 5rem;
  background: var(--bg-deep);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr; gap: 3rem; } }

.social-row {
  display: flex; gap: 0.75rem; flex-wrap: wrap;
}
.social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--bg-panel);
  border: 1px solid var(--rule);
  color: var(--text-primary);
  text-decoration: none;
  transition: all 0.2s ease;
}
.social-btn:hover {
  background: var(--accent-amber);
  color: #0A1628;
  border-color: var(--accent-amber);
  transform: translateY(-2px);
}
.footer-col h4 {
  font-family: var(--font-score);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent-amber);
  margin: 0 0 1rem;
}
.footer-col a {
  display: block;
  color: var(--text-muted);
  text-decoration: none;
  padding: 0.35rem 0;
  font-size: 0.95rem;
}
.footer-col a:hover { color: var(--text-primary); }
.footer-fine {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--rule);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ─── Partnerships page ──────────────────────────────────── */
.partner-card {
  background: var(--bg-panel);
  border: 1px solid var(--rule);
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  margin-bottom: 3rem;
  box-shadow: var(--shadow-elev);
}
.partner-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-amber) 0%, var(--accent-amber) 30%, var(--accent-red) 30%, var(--accent-red) 100%);
  z-index: 2;
}

/* Big logo band — full width, premium, the logo dominates */
.partner-logo-band {
  background:
    radial-gradient(ellipse at center, #ffffff 0%, #f1f3f6 100%);
  padding: 3.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
  position: relative;
  border-bottom: 1px solid var(--rule);
}
.partner-logo-band::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 80%, rgba(10, 22, 40, 0.08) 100%);
  pointer-events: none;
}
.partner-logo-band img {
  max-width: min(560px, 100%);
  height: auto;
  max-height: 120px;
  display: block;
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) {
  .partner-logo-band { padding: 4.5rem 3rem; min-height: 260px; }
  .partner-logo-band img { max-width: min(640px, 100%); max-height: 140px; }
}

/* Header band: name + eyebrow + tagline + tenure stat */
.partner-head {
  padding: 2.5rem 1.75rem 1.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: end;
  border-bottom: 1px solid var(--rule);
}
@media (min-width: 900px) {
  .partner-head {
    grid-template-columns: 1fr auto;
    padding: 3rem 2.5rem 2rem;
    gap: 2.5rem;
  }
}

.partner-meta .kicker { color: var(--accent-amber); }
.partner-name {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin: .5rem 0 0;
  line-height: 0.98;
  color: var(--text-primary);
}
.partner-tag {
  margin: 1rem 0 0;
  color: var(--text-muted);
  font-family: var(--font-score);
  font-size: 1rem;
  letter-spacing: 0.04em;
  font-weight: 500;
  max-width: 44ch;
  line-height: 1.4;
}

.partner-tenure {
  background: linear-gradient(135deg, rgba(244, 179, 36, 0.15), rgba(230, 57, 70, 0.08));
  border: 1px solid rgba(244, 179, 36, 0.35);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  text-align: center;
  min-width: 160px;
}
.partner-tenure .tenure-num {
  font-family: var(--font-display);
  font-size: 3.25rem;
  line-height: 0.95;
  color: var(--accent-amber);
  letter-spacing: 0.02em;
}
.partner-tenure .tenure-num span {
  font-size: 1.5rem;
  margin-left: 0.15rem;
}
.partner-tenure .tenure-label {
  margin-top: 0.5rem;
  font-family: var(--font-score);
  font-weight: 500;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* Body — generous, readable */
.partner-body {
  padding: 2.5rem 1.75rem 2.5rem;
}
@media (min-width: 900px) {
  .partner-body { padding: 3rem 2.5rem 3rem; }
}

.partner-blurb p {
  color: var(--text-primary);
  line-height: 1.75;
  font-size: 1.05rem;
  margin: 0 0 1.25rem;
  max-width: 70ch;
}
.partner-blurb p.lead {
  font-size: 1.2rem;
  color: var(--text-primary);
  font-weight: 400;
}
.partner-blurb strong { font-weight: 600; }

.partner-pillars {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin: 2.5rem 0 0;
}
@media (min-width: 768px) {
  .partner-pillars { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
}

.partner-pillar {
  background: var(--bg-deep);
  border: 1px solid var(--rule);
  border-radius: 12px;
  padding: 1.75rem 1.5rem;
  transition: border-color 0.25s ease, transform 0.25s ease;
}
.partner-pillar:hover {
  border-color: rgba(244, 179, 36, 0.5);
  transform: translateY(-2px);
}
.partner-pillar h3 {
  font-family: var(--font-score);
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 1rem 0 .6rem;
  color: var(--text-primary);
}
.partner-pillar p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
  margin: 0;
}
.pillar-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(244, 179, 36, 0.12);
  border: 1px solid rgba(244, 179, 36, 0.4);
  color: var(--accent-amber);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.partner-cta {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--rule);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

/* ─── Telestrator-style divider ──────────────────────────── */
.telestrator {
  display: block;
  margin: 0 auto;
  max-width: 320px;
  width: 100%;
}

/* ─── Scroll reveals ─────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 80ms; }
.reveal-delay-2 { transition-delay: 160ms; }
.reveal-delay-3 { transition-delay: 240ms; }
.reveal-delay-4 { transition-delay: 320ms; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .live-dot { animation: none; }
  html { scroll-behavior: auto; }
}

/* ─── Utility ────────────────────────────────────────────── */
.divider {
  height: 1px;
  background: var(--rule);
  margin: 4rem 0;
}
.text-center { text-align: center; }
.max-w-prose { max-width: 64ch; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* =====================================================
   MOBILE REFINEMENTS — tighter spacing, better tap
   targets, and safer overflow at narrow widths.
   ===================================================== */

/* Tablet & below (<= 768px) */
@media (max-width: 768px) {
  .wrap { padding: 0 1.25rem; }

  .section { padding: 4.5rem 0; }

  /* Section heads stack cleanly when right-side meta exists */
  .section-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2.25rem;
    padding-bottom: 1.25rem;
  }
  .section-head > * { width: 100%; }

  /* Hero — slightly less aggressive spacing */
  .hero { padding: 4rem 0 5.5rem; }
  .hero-title { margin-top: 1rem; }
  .hero-sub { margin-top: 1.25rem; font-size: 1rem; }
  .hero-ctas { gap: 0.75rem; margin-top: 2rem; }
  .hero-ribbon {
    margin-top: 3rem;
    padding-top: 1.25rem;
    gap: 0.5rem 1.5rem;
    font-size: 0.7rem;
  }

  /* Buttons can wrap when needed, no horizontal overflow */
  .btn { white-space: normal; padding: 0.85rem 1.25rem; font-size: 0.8rem; }

  /* Stats tile — denser */
  .stat-tile { padding: 1.25rem 1rem; }
  .stat-num { font-size: 2.25rem; }
  .stat-label { font-size: 0.65rem; letter-spacing: 0.2em; }

  /* About — tighter typography */
  .bio p { font-size: 1rem; line-height: 1.65; }
  .bio p.lead { font-size: 1.1rem; }
  .pull-quote { font-size: 1.05rem; padding: 1.25rem 1.25rem; }

  /* Pillars — hide the decorative telestrator arrow at narrow widths
     so it never collides with the title or number. */
  .pillar { padding: 1.75rem 1.5rem 1.5rem; }
  .pillar-arrow { display: none; }
  .pillar-num { font-size: 3.5rem; margin-bottom: 0.5rem; }
  .pillar h3 { font-size: 1.15rem; }

  /* Press chips — tighter */
  .press-row { gap: 0.75rem; padding: 1.25rem 0; }
  .press-chip { padding: 0.6rem 0.9rem; font-size: 0.72rem; letter-spacing: 0.18em; }

  /* Forms — full-bleed within the panel */
  .panel { padding: 1.5rem !important; }
  .field input,
  .field select,
  .field textarea { padding: 0.85rem 0.9rem; font-size: 1rem; /* 16px = no iOS zoom */ }
  .form-grid { gap: 0.85rem; }

  /* Newsletter inline form — stack instead of side-by-side on small */
  .news-form { flex-direction: column; align-items: stretch; }
  .news-form input { min-width: 0; }
  .news-form button { justify-content: center; }

  /* Footer — stack fine print, tighter spacing */
  .footer { padding: 3rem 0 2.5rem; margin-top: 3rem; }
  .footer-fine { flex-direction: column; align-items: flex-start; gap: 0.5rem; margin-top: 2rem; }

  /* Partnerships — tighter logo band & body on phones */
  .partner-logo-band {
    padding: 2.5rem 1.5rem;
    min-height: 180px;
  }
  .partner-logo-band img { max-height: 90px; }
  .partner-head { padding: 1.75rem 1.25rem 1rem; gap: 1.25rem; }
  .partner-tenure { padding: 1rem 1.25rem; min-width: 0; }
  .partner-tenure .tenure-num { font-size: 2.5rem; }
  .partner-name { font-size: clamp(2rem, 8vw, 2.75rem); }
  .partner-body { padding: 1.75rem 1.25rem 2rem; }
  .partner-blurb p { font-size: 1rem; line-height: 1.65; }
  .partner-blurb p.lead { font-size: 1.1rem; }
  .partner-pillars { gap: 1rem; margin-top: 1.75rem; }
  .partner-pillar { padding: 1.5rem 1.25rem; }
  .partner-cta { padding-top: 1.5rem; gap: 1rem; }
}

/* Small phones (<= 480px) */
@media (max-width: 480px) {
  .wrap { padding: 0 1rem; }

  .section { padding: 3.5rem 0; }

  /* Hero CTAs stack full width — bigger, easier tap targets */
  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-ctas .btn {
    justify-content: center;
    width: 100%;
  }

  /* Stat tiles — shrink number a bit more so labels fit cleanly */
  .stat-num { font-size: 2rem; }

  /* Section eyebrow + title spacing */
  .display-2 { font-size: clamp(2rem, 8vw, 2.75rem); }

  /* Nav — slightly tighter so 50px avatar + hamburger fit comfortably */
  .nav-inner { height: 68px; }
  html { scroll-padding-top: 76px; }
  .nav-toggle { width: 40px; height: 40px; }

  /* Pillar number doesn't need to be huge on phones */
  .pillar-num { font-size: 3rem; }

  /* Footer columns more compact */
  .footer-grid { gap: 2rem; }
  .footer-col h4 { margin-bottom: 0.6rem; }

  /* Partner card */
  .partner-logo-band { padding: 2rem 1rem; min-height: 140px; }
  .partner-logo-band img { max-height: 72px; }

  /* Form CTA row — stack the explainer + submit */
  #sponsorForm > div:last-of-type {
    flex-direction: column;
    align-items: stretch !important;
  }
  #sponsorForm button[type="submit"] { width: 100%; justify-content: center; }
}

/* Very small phones (<= 360px) — keep everything readable */
@media (max-width: 360px) {
  .hero-eyebrow { padding: 0.4rem 0.7rem; font-size: 0.7rem; }
  .display-1, h1.display { letter-spacing: 0.01em; }
  .hero-ribbon { font-size: 0.66rem; gap: 0.4rem 1rem; }
  .stat-tile { padding: 1rem 0.85rem; }
}
