/* ============================================================
   TIFO · Brand System (Direction C.1 Floodlight)
   - Two atoms: clean Anton wordmark + yellow save-stamp
   - Yellow #E8FF3A is reserved for the save-stamp
   - All other surfaces: Floodlight Off ink + Concrete bone
   ============================================================ */

:root {
  /* Colour system */
  --ink: #0A0A0A;              /* Floodlight Off — primary surface */
  --yellow: #E8FF3A;           /* Floodlight On — SAVE-STAMP ONLY */
  --goal: #FF2D55;             /* Goal — secondary accent, sparing */
  --stand: #0E1F3F;            /* Stand — navy, wallet card chassis */
  --bone: #F5F5F5;             /* Concrete — bone background */
  --bone-warm: #f0eee9;        /* warm paper, used on club section */
  --pitch: #1F7A4E;            /* Pitch — semantic green */

  /* Functional aliases */
  --bg: var(--ink);
  --fg: var(--bone);
  --hairline: rgba(245, 245, 245, 0.16);
  --hairline-strong: rgba(245, 245, 245, 0.28);
  --muted: rgba(245, 245, 245, 0.6);

  /* Type */
  --font-display: "Anton", sans-serif;
  --font-label: "Barlow Condensed", sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;

  /* Tracking */
  --track-label: 0.22em;
  --track-display: -0.02em;

  /* Spatial */
  --wrap-max: 1280px;
  --gutter: clamp(20px, 4vw, 56px);
}

/* ============================================================
   Reset
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

.wrap {
  max-width: var(--wrap-max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--hairline);
}

.header-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 18px;
  padding-bottom: 18px;
}

.wordmark { display: inline-flex; align-items: baseline; }
.wordmark-text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 28px;
  line-height: 0.85;
  letter-spacing: var(--track-display);
  text-transform: uppercase;
  color: var(--fg);
}

.nav {
  display: flex;
  gap: clamp(16px, 2.5vw, 32px);
  align-items: center;
  font-family: var(--font-label);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: var(--track-label);
  text-transform: uppercase;
}

.nav a {
  opacity: 0.7;
  transition: opacity 0.2s;
  padding: 8px 0;
}
.nav a:hover { opacity: 1; }

.nav-cta {
  border: 1px solid var(--fg);
  padding: 10px 16px !important;
  opacity: 1 !important;
}
.nav-cta:hover { background: var(--fg); color: var(--ink); }

/* Hide some nav items on small screens */
@media (max-width: 640px) {
  .nav a:not(.nav-cta) { display: none; }
}

/* ============================================================
   Kickers (Barlow Condensed labels)
   ============================================================ */
.kicker {
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: var(--track-label);
  text-transform: uppercase;
  color: var(--yellow);
  margin: 0 0 24px;
  opacity: 0.95;
}
.kicker.center { text-align: center; }

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  padding: clamp(32px, 5vw, 56px) 0 0;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  top: -240px;
  left: 50%;
  transform: translateX(-50%);
  width: 720px; height: 720px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 255, 58, 0.16) 0%, rgba(232, 255, 58, 0) 65%);
  pointer-events: none;
  z-index: 0;
}

.hero-headline-wrap {
  position: relative;
  z-index: 1;
  padding-bottom: clamp(32px, 5vw, 64px);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}

@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.hero-copy { max-width: 640px; }

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(44px, 6.2vw, 88px);
  line-height: 0.92;
  letter-spacing: var(--track-display);
  text-transform: uppercase;
  margin: clamp(16px, 2vw, 24px) 0 0;
  font-weight: 400;
  text-wrap: balance;
}
.hero-headline em {
  font-style: italic;
  font-weight: 400;
}

.hero-sub {
  margin-top: clamp(18px, 2.2vw, 24px);
  max-width: 580px;
  font-size: clamp(15px, 1.15vw, 17px);
  line-height: 1.55;
  color: rgba(245, 245, 245, 0.82);
  text-wrap: pretty;
}

.hero-outcome {
  font-family: var(--font-display);
  font-size: clamp(18px, 1.9vw, 24px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin: clamp(20px, 2.2vw, 28px) 0 0;
  padding-top: clamp(16px, 2vw, 22px);
  border-top: 1px solid var(--hairline);
  font-weight: 400;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: baseline;
  color: var(--bone);
  max-width: 580px;
  text-wrap: balance;
}

.hero-outcome em {
  font-style: italic;
  font-weight: 400;
  color: var(--yellow);
}

.hero-outcome-mark {
  color: var(--yellow);
  font-size: 0.9em;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(10px, 1.4vw, 18px);
  margin-top: clamp(24px, 3vw, 32px);
  align-items: center;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: var(--track-label);
  text-transform: uppercase;
  color: var(--yellow);
  padding: 14px 0;
  position: relative;
  transition: opacity 0.2s;
}

.btn-ghost:hover { opacity: 0.7; }

/* ============================================================
   iPhone + Apple Wallet hero mockup
   ============================================================ */
.hero-phone {
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1200px;
}

.phone {
  width: 320px;
  height: 490px; /* enough to show cardholder, valid-thru and TIFO brand row */
  background: #0d0d0d;
  border-radius: 44px 44px 8px 8px;
  border: 8px solid #1a1a1a;
  border-bottom: none;
  box-shadow:
    0 0 0 1px #2a2a2a,
    0 30px 80px -20px rgba(232, 255, 58, 0.18),
    0 50px 120px -40px rgba(0, 0, 0, 0.8);
  position: relative;
  overflow: hidden;
  transform: rotate(-2deg);
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.phone:hover { transform: rotate(0deg) scale(1.02); }

@media (max-width: 980px) {
  .phone { width: 280px; height: 440px; }
}

.phone-notch {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 28px;
  background: #000;
  border-radius: 20px;
  z-index: 10;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: #000;
  padding: 48px 16px 24px;
  display: flex;
  flex-direction: column;
  color: #fff;
}

/* Fade to suggest the phone continues beyond view */
.phone-fade {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 40px;
  background: linear-gradient(to bottom, transparent 0%, #000 80%);
  pointer-events: none;
  z-index: 5;
}

.wallet-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 12px 12px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
}
.wallet-icons { display: flex; gap: 6px; align-items: center; }
.wallet-signal,
.wallet-battery {
  display: inline-block;
  width: 14px; height: 10px;
  background: #fff;
  opacity: 0.9;
  border-radius: 2px;
}
.wallet-battery { width: 22px; }
.wallet-dot { width: 4px; height: 4px; border-radius: 50%; background: #fff; opacity: 0.4; }

.wallet-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 12px 14px;
}
.wallet-title {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", system-ui, sans-serif;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.wallet-plus {
  font-size: 24px;
  font-weight: 400;
  color: #fff;
  opacity: 0.9;
}

.wallet-stack {
  position: relative;
  flex: 1;
  padding: 0 4px;
}

/* Cards in the stack */
.wcard {
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  font-family: var(--font-body);
  box-shadow:
    0 6px 18px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset;
}

/* Back card (deepest) — Visa */
.wcard-back {
  position: absolute;
  top: 0; left: 12px; right: 12px;
  height: 44px;
  border-radius: 12px 12px 4px 4px;
  display: flex;
  align-items: flex-start;
  padding: 12px 18px;
}
.wcard-visa {
  background: linear-gradient(135deg, #1F7A4E 0%, #2A9A65 60%, #1F7A4E 100%);
  color: #fff;
}

/* Middle card — Mastercard */
.wcard-mid {
  position: absolute;
  top: 28px; left: 6px; right: 6px;
  height: 44px;
  border-radius: 12px 12px 4px 4px;
  display: flex;
  align-items: flex-start;
  padding: 12px 18px;
}
.wcard-mc {
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 60%, #1a1a1a 100%);
  color: #fff;
}

.wcard-back-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.wcard-back-bank {
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.9;
}
.wcard-back-network {
  font-family: var(--font-body);
  font-style: italic;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
}

/* The Tifo front card */
.wcard-front {
  margin-top: 60px;
  background: linear-gradient(135deg, #0E1F3F 0%, #163059 60%, #0E1F3F 100%);
  color: #F5F5F5;
  height: 220px;
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow:
    0 12px 32px rgba(0, 0, 0, 0.7),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset;
}

.wcard-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 30%, rgba(255, 255, 255, 0.08) 50%, transparent 70%);
  pointer-events: none;
}

.wcard-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.wcard-crest { display: flex; gap: 10px; align-items: center; }

.crest-svg {
  display: block;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.4));
}

.wcard-club-meta { display: flex; flex-direction: column; gap: 2px; }
.wcard-club {
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.wcard-est {
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 0.12em;
  opacity: 0.6;
}

.wcard-network {
  display: inline-flex;
  align-items: center;
}
.net-disc {
  display: inline-block;
  width: 20px; height: 20px;
  border-radius: 50%;
  opacity: 0.95;
}
.net-disc-1 { background: #EB001B; }
.net-disc-2 { background: #F79E1B; margin-left: -7px; }

.wcard-mid-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: -2px;
}

.wcard-chip {
  width: 38px; height: 28px;
  background: linear-gradient(135deg, #D4B86A 0%, #B89148 50%, #D4B86A 100%);
  border-radius: 4px;
  position: relative;
}
.chip-grid {
  position: absolute; inset: 5px;
  background:
    linear-gradient(to right, transparent 48%, rgba(0,0,0,0.4) 48%, rgba(0,0,0,0.4) 52%, transparent 52%),
    linear-gradient(to bottom, transparent 48%, rgba(0,0,0,0.4) 48%, rgba(0,0,0,0.4) 52%, transparent 52%);
}

.wcard-number {
  font-family: var(--font-mono);
  font-size: 14px;
  letter-spacing: 0.12em;
  color: rgba(245, 245, 245, 0.92);
  font-variant-numeric: tabular-nums;
}

.wcard-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
}

.wcard-bottom-left,
.wcard-bottom-right {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.wcard-bottom-right { text-align: right; }

.wcard-label {
  font-family: var(--font-label);
  font-weight: 600;
  font-size: 8px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.55;
}

.wcard-name {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.92;
}

.wcard-nfc {
  opacity: 0.85;
  display: inline-flex;
  color: rgba(245, 245, 245, 0.9);
}

.wcard-brand {
  position: absolute;
  bottom: 14px;
  right: 18px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  color: var(--yellow);
  letter-spacing: -0.01em;
  line-height: 0.85;
}

/* ============================================================
   Save-stamp Moment Band
   ============================================================ */
.moment-band {
  padding: clamp(72px, 10vw, 140px) 0;
  background: var(--ink);
  border-bottom: 1px solid var(--hairline);
}

.moment-wrap .kicker { color: rgba(245, 245, 245, 0.5); }

.moment-band .moment-headline {
  margin-bottom: clamp(72px, 9vw, 120px);
  font-size: clamp(40px, 6vw, 88px);
}

.moment-flow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  margin-bottom: clamp(40px, 5vw, 64px);
  position: relative;
}

@media (max-width: 820px) {
  .moment-flow { grid-template-columns: 1fr; gap: 32px; }
}

.moment-step {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.moment-step-head {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--hairline);
}

.moment-step-num {
  font-family: var(--font-display);
  font-size: 32px;
  line-height: 1;
  color: var(--yellow);
  letter-spacing: var(--track-display);
}

.moment-step-label {
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: var(--track-label);
  text-transform: uppercase;
  opacity: 0.7;
}

/* The push notification mockup (used twice) */
.moment-push {
  background: linear-gradient(180deg, rgba(245, 245, 245, 0.07) 0%, rgba(245, 245, 245, 0.02) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(245, 245, 245, 0.12);
  border-radius: 24px;
  padding: 20px 22px 22px;
  position: relative;
  box-shadow:
    0 20px 60px -20px rgba(0, 0, 0, 0.6),
    0 0 60px -20px rgba(232, 255, 58, 0.06);
}

.push-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(245, 245, 245, 0.08);
}

.push-icon {
  width: 32px; height: 32px;
  background: var(--bone);
  color: var(--ink);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}

.push-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  min-width: 0;
}

.push-sender {
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: var(--track-label);
  text-transform: uppercase;
  color: var(--fg);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.push-time {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.5;
}

.push-body {
  padding: 16px 0 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* The personalised nudge style — bigger, more emotive */
.push-personal-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--fg);
  font-weight: 400;
}

.push-personal-copy {
  margin: 0;
  font-size: 15px;
  line-height: 1.4;
  color: rgba(245, 245, 245, 0.78);
}
.push-personal-copy strong {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  color: var(--yellow);
  font-size: 18px;
  letter-spacing: -0.01em;
  padding: 0 2px;
}

/* The transaction style — mono, structured */
.push-line {
  margin: 0;
  font-size: 14px;
  line-height: 1.4;
  color: rgba(245, 245, 245, 0.85);
  display: flex;
  gap: 6px;
}

.push-label {
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: var(--track-label);
  text-transform: uppercase;
  color: var(--yellow);
  align-self: center;
}

.push-totals {
  margin-top: 4px;
  padding-top: 14px;
  border-top: 1px dashed rgba(245, 245, 245, 0.15);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.push-totals-row {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.02em;
  font-variant-numeric: tabular-nums;
}

.push-totals-row .strike {
  text-decoration: line-through;
  text-decoration-color: rgba(245, 245, 245, 0.4);
  opacity: 0.55;
}

.push-totals-row:last-child {
  color: var(--fg);
  font-weight: 500;
}

.push-tag {
  margin-top: 4px;
  padding-top: 14px;
  border-top: 1px solid rgba(245, 245, 245, 0.08);
}

.push-tag-pill {
  display: inline-block;
  padding: 5px 10px 6px;
  background: rgba(232, 255, 58, 0.12);
  color: var(--yellow);
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: var(--track-label);
  text-transform: uppercase;
}

.push-stamp-wrap {
  margin-top: 4px;
  display: flex;
  justify-content: flex-end;
}

.moment-stamp-mini {
  padding: 14px 18px 16px !important;
  gap: 8px !important;
}
.moment-stamp-mini .stamp-figure { font-size: 64px !important; }
.moment-stamp-mini .stamp-label { font-size: 24px !important; }

/* The save-stamp atom — the signature treatment */
.moment-stamp {
  background: var(--yellow);
  color: var(--ink);
  display: inline-flex;
  align-items: baseline;
  gap: clamp(10px, 1.4vw, 16px);
  padding: clamp(28px, 4vw, 44px) clamp(34px, 4.5vw, 56px) clamp(32px, 4vw, 50px);
  line-height: 1;
  flex-shrink: 0;
}

.stamp-figure {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(96px, 14vw, 180px);
  line-height: 0.82;
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
}

.stamp-label {
  font-family: var(--font-display);
  font-size: clamp(36px, 5.6vw, 72px);
  letter-spacing: 0.02em;
  line-height: 0.85;
}

.moment-sub {
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.55;
  color: rgba(245, 245, 245, 0.65);
  margin: 0;
  max-width: 760px;
  text-wrap: pretty;
}

/* ============================================================
   Audience Sections (shared)
   ============================================================ */
.audience { padding: clamp(80px, 10vw, 140px) 0; }

.audience-fans {
  background: var(--ink);
}

.audience-clubs {
  background: var(--bone);
  color: var(--ink);
}

.audience-clubs .kicker {
  color: var(--ink);
  opacity: 0.9;
}

.audience-head {
  margin-bottom: clamp(48px, 7vw, 96px);
}

.section-headline {
  font-family: var(--font-display);
  font-size: clamp(48px, 8vw, 120px);
  line-height: 0.9;
  letter-spacing: var(--track-display);
  text-transform: uppercase;
  margin: 0;
  font-weight: 400;
  max-width: 1100px;
  text-wrap: balance;
}
.section-headline em { font-style: italic; font-weight: 400; }
.section-headline.center { text-align: center; margin-left: auto; margin-right: auto; }

/* ===== Fans Grid ===== */
.audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 6vw, 96px);
  align-items: start;
  margin-bottom: clamp(72px, 9vw, 120px);
}

@media (max-width: 860px) {
  .audience-grid { grid-template-columns: 1fr; gap: 48px; }
}

.audience-lede p {
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.5;
  color: rgba(245, 245, 245, 0.82);
  margin: 0 0 24px;
  text-wrap: pretty;
}

.audience-meta {
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 14px !important;
  letter-spacing: var(--track-label) !important;
  text-transform: uppercase;
  color: rgba(245, 245, 245, 0.5) !important;
  margin-bottom: 36px !important;
}

.feature-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.feature-list li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  padding: 28px 0;
  border-top: 1px solid var(--hairline);
}
.feature-list li:last-child { border-bottom: 1px solid var(--hairline); }

.feat-num {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--yellow);
  line-height: 1;
}

.feature-list h3 {
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 1;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin: 0 0 8px;
  font-weight: 400;
}

.feature-list p {
  margin: 0;
  color: rgba(245, 245, 245, 0.7);
  line-height: 1.5;
  text-wrap: pretty;
}

/* ===== Stat band ===== */
.stat-band {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
  padding: clamp(40px, 5vw, 64px);
  border: 1px solid var(--hairline);
  background: rgba(245, 245, 245, 0.02);
}

@media (max-width: 720px) {
  .stat-band { grid-template-columns: 1fr; padding: 40px 28px; }
}

.stat-figure {
  font-family: var(--font-display);
  font-size: clamp(96px, 14vw, 180px);
  line-height: 0.85;
  letter-spacing: -0.03em;
  color: var(--yellow);
  font-style: italic;
  font-variant-numeric: tabular-nums;
}

.stat-copy p {
  margin: 0 0 12px;
  font-size: clamp(18px, 1.7vw, 24px);
  line-height: 1.35;
  text-wrap: pretty;
}
.stat-copy p em { font-style: italic; color: var(--yellow); font-weight: 400; }

.stat-source {
  font-family: var(--font-mono);
  font-size: 12px !important;
  letter-spacing: 0.04em;
  color: var(--muted) !important;
  text-transform: uppercase;
}

/* ============================================================
   Clubs section (light)
   ============================================================ */
.club-intro {
  max-width: 760px;
  margin: 0 auto clamp(56px, 7vw, 88px);
  text-align: center;
}

/* ===== Industry context (Tifo vs other industries) ===== */
.industry-context {
  margin-bottom: clamp(72px, 9vw, 120px);
  padding-top: clamp(8px, 2vw, 24px);
}

.industry-lede {
  font-size: clamp(20px, 1.9vw, 26px);
  line-height: 1.45;
  color: var(--ink);
  margin: 0 0 clamp(28px, 4vw, 40px);
  max-width: 880px;
  text-wrap: pretty;
}

/* Brand pills row */
.brand-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: clamp(48px, 6vw, 72px);
  padding: clamp(20px, 3vw, 32px) 0;
  border-top: 1px solid rgba(10, 10, 10, 0.15);
  border-bottom: 1px solid rgba(10, 10, 10, 0.15);
}

.brand-pill {
  display: inline-block;
  padding: 8px 14px 9px;
  background: transparent;
  color: var(--ink);
  border: 1px solid rgba(10, 10, 10, 0.25);
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: var(--track-label);
  text-transform: uppercase;
}

.brand-pill-vs {
  border: none;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  padding: 0 12px;
  letter-spacing: -0.01em;
  text-transform: none;
  color: rgba(10, 10, 10, 0.4);
  font-weight: 400;
}

.brand-pill-club {
  background: var(--ink);
  color: var(--bone);
  border-color: var(--ink);
  position: relative;
}
.brand-pill-club::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 2px;
  background: var(--yellow);
}

/* The three barriers */
.barriers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3vw, 40px);
  margin-bottom: clamp(40px, 5vw, 56px);
}

@media (max-width: 820px) { .barriers { grid-template-columns: 1fr; gap: 20px; } }

.barrier {
  padding: clamp(28px, 3.5vw, 36px) clamp(24px, 3vw, 32px);
  background: rgba(10, 10, 10, 0.04);
  border-left: 3px solid var(--ink);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.barrier-num {
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 0.85;
  color: rgba(10, 10, 10, 0.3);
  letter-spacing: -0.02em;
}

.barrier h3 {
  font-family: var(--font-display);
  font-size: clamp(22px, 2vw, 26px);
  line-height: 1;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin: 0;
  font-weight: 400;
}

.barrier p {
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
  color: rgba(10, 10, 10, 0.7);
  text-wrap: pretty;
}

/* The takeaway line */
.industry-takeaway {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 40px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin: 0;
  font-weight: 400;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: baseline;
}

.industry-takeaway em {
  font-style: italic;
  font-weight: 400;
  color: rgba(10, 10, 10, 0.55);
}

.takeaway-mark {
  color: var(--yellow);
  font-size: 0.7em;
  -webkit-text-stroke: 1.5px var(--ink);
  text-shadow:
    -1px -1px 0 var(--ink),
    1px -1px 0 var(--ink),
    -1px 1px 0 var(--ink),
    1px 1px 0 var(--ink);
}

/* ===== Club hero stat (6x) ===== */
.club-hero-stat {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
  padding: clamp(48px, 6vw, 80px) clamp(32px, 5vw, 64px);
  background: var(--ink);
  color: var(--bone);
  margin-bottom: clamp(56px, 7vw, 96px);
  position: relative;
  overflow: hidden;
}

/* When two stats sit side-by-side, scale down and constrain the figure */
.club-stats .club-hero-stat {
  margin-bottom: 0;
  /* Fixed-width figure column means both panels' copy columns are equal width */
  grid-template-columns: 140px minmax(0, 1fr);
  gap: clamp(32px, 4vw, 52px);
  padding: clamp(36px, 4.5vw, 56px) clamp(28px, 3.5vw, 44px);
  align-items: center;
}

.club-stats .hero-stat-figure {
  min-width: 0;
  width: 140px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: visible;
}

.club-stats .hero-stat-figure span {
  font-size: clamp(56px, 5.5vw, 76px);
  line-height: 0.85;
  display: block;
  white-space: nowrap;
}

.club-stats .hero-stat-copy p:first-child {
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.45;
}

@media (max-width: 980px) {
  .club-stats .club-hero-stat {
    grid-template-columns: 110px minmax(0, 1fr);
    gap: 20px;
  }
  .club-stats .hero-stat-figure { width: 110px; }
  .club-stats .hero-stat-figure span {
    font-size: clamp(56px, 8vw, 72px);
  }
}

@media (max-width: 820px) {
  .club-stats .club-hero-stat {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .club-stats .hero-stat-figure { width: auto; }
}

@media (max-width: 720px) {
  .club-hero-stat { grid-template-columns: 1fr; padding: 40px 28px; }
}

.hero-stat-figure span {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(120px, 18vw, 220px);
  line-height: 0.82;
  letter-spacing: -0.04em;
  color: var(--yellow);
  font-variant-numeric: tabular-nums;
  display: block;
}

.hero-stat-copy p:first-child {
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.3;
  margin: 0 0 16px;
  text-wrap: pretty;
}
.hero-stat-copy em {
  font-style: italic;
  color: var(--yellow);
  font-weight: 400;
}
.hero-stat-copy .tile-source {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: rgba(245, 245, 245, 0.5);
  text-transform: uppercase;
  margin: 0;
}

/* ===== Scenarios block ===== */
.scenarios {
  margin-bottom: clamp(56px, 7vw, 96px);
}

.scenarios-kicker { color: var(--ink) !important; opacity: 0.9; }

.scenarios-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  line-height: 0.95;
  letter-spacing: var(--track-display);
  text-transform: uppercase;
  margin: 0 0 16px;
  font-weight: 400;
}
.scenarios-headline em { font-style: italic; font-weight: 400; }

.scenarios-lede {
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.55;
  color: rgba(10, 10, 10, 0.7);
  margin: 0 0 clamp(32px, 4vw, 56px);
  max-width: 600px;
  text-wrap: pretty;
}

.scenario-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid rgba(10, 10, 10, 0.18);
}

.scenario {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: clamp(20px, 3vw, 40px);
  padding: clamp(28px, 4vw, 40px) 0;
  border-bottom: 1px solid rgba(10, 10, 10, 0.18);
  align-items: start;
}

@media (max-width: 640px) {
  .scenario { grid-template-columns: 40px 1fr; gap: 16px; }
}

.scenario-num {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 48px);
  line-height: 0.85;
  color: rgba(10, 10, 10, 0.25);
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}

.scenario-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.scenario-who {
  font-family: var(--font-mono);
  font-size: clamp(13px, 1.1vw, 14px);
  letter-spacing: 0.02em;
  color: rgba(10, 10, 10, 0.6);
  text-transform: uppercase;
  margin: 0;
  line-height: 1.4;
}

.scenario-offer {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin: 0;
  font-weight: 400;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: baseline;
}

.scenario-tag {
  display: inline-block;
  background: var(--ink);
  color: var(--bone);
  padding: 4px 10px 5px;
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: var(--track-label);
  vertical-align: middle;
  align-self: center;
}

/* ===== Touchpoints grid ===== */
/* ===== Why this works (intro to the nudges) ===== */
.why-works {
  margin-bottom: clamp(56px, 7vw, 88px);
  padding: clamp(40px, 5vw, 64px) clamp(32px, 5vw, 64px);
  background: var(--ink);
  color: var(--bone);
  position: relative;
  overflow: hidden;
}

.why-works::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 6px;
  height: 100%;
  background: var(--yellow);
}

.why-works .kicker { color: var(--yellow) !important; margin-bottom: 20px; }

.why-headline {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 56px);
  line-height: 1;
  letter-spacing: var(--track-display);
  text-transform: uppercase;
  margin: 0 0 24px;
  font-weight: 400;
  text-wrap: balance;
  max-width: 900px;
}
.why-headline em { font-style: italic; font-weight: 400; }

.why-copy {
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.55;
  color: rgba(245, 245, 245, 0.82);
  margin: 0;
  max-width: 760px;
  text-wrap: pretty;
}

/* ===== Nudges in action ===== */
.nudges { margin-bottom: clamp(56px, 7vw, 96px); }
.nudges .scenarios-kicker { color: var(--ink) !important; }

.nudge-grid {
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 3vw, 32px);
}

.nudge-card {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) auto minmax(280px, 1fr);
  gap: clamp(20px, 3vw, 40px);
  align-items: stretch;
  padding: clamp(28px, 3.5vw, 40px);
  background: var(--ink);
  color: var(--bone);
  position: relative;
}

@media (max-width: 820px) {
  .nudge-card { grid-template-columns: 1fr; gap: 16px; padding: 28px 24px; }
}

/* The notification half */
.nudge-notif {
  background: rgba(245, 245, 245, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(245, 245, 245, 0.1);
  border-radius: 20px;
  padding: 16px 18px 18px;
  align-self: center;
  box-shadow:
    0 14px 36px -16px rgba(0, 0, 0, 0.6),
    0 0 40px -20px rgba(232, 255, 58, 0.06);
}

/* Arrow column */
.nudge-arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--yellow);
}

@media (max-width: 820px) {
  .nudge-arrow {
    flex-direction: row;
    padding: 8px 0;
  }
}

.nudge-arrow-label {
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: var(--track-label);
  text-transform: uppercase;
  opacity: 0.85;
}

.nudge-arrow-mark {
  font-family: var(--font-display);
  font-size: 36px;
  line-height: 1;
  color: var(--yellow);
}

@media (max-width: 820px) {
  .nudge-arrow-mark { transform: rotate(90deg); }
}

/* Outcome half */
.nudge-outcome {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 4px 0;
  align-self: center;
}

.outcome-stat {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(40px, 4.5vw, 60px);
  line-height: 0.88;
  letter-spacing: -0.02em;
  color: var(--yellow);
  font-variant-numeric: tabular-nums;
}

.outcome-copy {
  margin: 0;
  font-size: clamp(14px, 1.2vw, 16px);
  line-height: 1.55;
  color: rgba(245, 245, 245, 0.8);
  text-wrap: pretty;
}

.outcome-copy strong {
  color: var(--bone);
  font-weight: 600;
}

.outcome-copy em {
  font-style: italic;
  color: var(--yellow);
  font-weight: 400;
} margin-bottom: clamp(56px, 7vw, 96px); }
.touchpoints { margin-bottom: clamp(56px, 7vw, 96px); }
.touchpoints .kicker { color: var(--ink) !important; margin-bottom: 16px; }

.touchpoints-lede {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.2;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin: 0 0 clamp(32px, 4vw, 48px);
  font-weight: 400;
  color: var(--ink);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: baseline;
}

.compat-mark {
  color: var(--yellow);
  font-size: 0.7em;
  -webkit-text-stroke: 1.5px var(--ink);
  text-shadow:
    -1px -1px 0 var(--ink),
    1px -1px 0 var(--ink),
    -1px 1px 0 var(--ink),
    1px 1px 0 var(--ink);
}

.touch-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: rgba(10, 10, 10, 0.15);
  border: 1px solid rgba(10, 10, 10, 0.15);
}

@media (max-width: 1100px) { .touch-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 720px) { .touch-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .touch-grid { grid-template-columns: 1fr; } }

.touch-tile {
  background: var(--bone);
  padding: clamp(28px, 3.5vw, 40px) clamp(20px, 2.5vw, 28px);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* The yellow accent tile — "any other touchpoint" */
.touch-tile-plus {
  background: var(--yellow);
  color: var(--ink);
  position: relative;
}

.touch-tile-plus::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(10, 10, 10, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.touch-tile-plus h4 { color: var(--ink); }
.touch-tile-plus p { color: rgba(10, 10, 10, 0.78); }

.touch-icon-plus {
  font-family: var(--font-display);
  font-size: 44px !important;
  line-height: 0.85;
  color: var(--ink) !important;
  opacity: 1 !important;
  font-weight: 400;
  letter-spacing: -0.04em;
}

.touch-icon {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--ink);
  line-height: 1;
  opacity: 0.6;
}

.touch-tile h4 {
  font-family: var(--font-display);
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin: 0;
  font-weight: 400;
}

.touch-tile p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(10, 10, 10, 0.68);
  text-wrap: pretty;
}

.club-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(10, 10, 10, 0.12);
  border: 1px solid rgba(10, 10, 10, 0.12);
}

@media (max-width: 720px) { .club-grid { grid-template-columns: 1fr; } }

.club-tile {
  background: var(--bone);
  padding: clamp(40px, 5vw, 64px);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.club-tile-feature {
  background: var(--ink);
  color: var(--bone);
}
.club-tile-feature .tile-figure { color: var(--yellow); }
.club-tile-feature .tile-source { color: var(--muted) !important; }

.tile-figure {
  font-family: var(--font-display);
  font-size: clamp(64px, 8vw, 104px);
  line-height: 0.85;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}

.tile-text {
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.4;
  margin: 0;
  text-wrap: pretty;
}

.tile-source {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: rgba(10, 10, 10, 0.5);
  text-transform: uppercase;
  margin: auto 0 0;
  padding-top: 16px;
}

.club-cta {
  text-align: center;
  margin-top: clamp(56px, 7vw, 88px);
}

/* ============================================================
   How it works — 4-step fan journey
   ============================================================ */
.how {
  background: var(--ink);
  padding: clamp(80px, 10vw, 140px) 0;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}

.how .section-headline { margin-bottom: clamp(56px, 7vw, 88px); }

.how-steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
}

@media (max-width: 820px) {
  .how-steps { grid-template-columns: 1fr; }
}

.how-step {
  background: var(--ink);
  padding: clamp(36px, 4.5vw, 56px) clamp(28px, 3.5vw, 44px);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: background 0.2s;
}

.how-step:hover { background: #0f0f0f; }

.how-num {
  font-family: var(--font-display);
  font-size: clamp(48px, 5vw, 64px);
  line-height: 0.85;
  color: var(--yellow);
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}

.how-step h3 {
  font-family: var(--font-display);
  font-size: clamp(28px, 2.8vw, 36px);
  line-height: 1;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin: 0;
  font-weight: 400;
}

.how-step p {
  margin: 0;
  color: rgba(245, 245, 245, 0.75);
  line-height: 1.55;
  text-wrap: pretty;
  font-size: 15px;
}
.how-step p em {
  font-style: italic;
  color: var(--yellow);
  font-weight: 400;
}

.how-result {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 40px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin: clamp(48px, 6vw, 72px) 0 0;
  font-weight: 400;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: baseline;
  justify-content: center;
  color: var(--bone);
  text-wrap: balance;
}

.how-result em {
  font-style: italic;
  font-weight: 400;
  color: var(--yellow);
}

.how-result-mark {
  color: var(--yellow);
  font-size: 0.85em;
}

/* Why-this-works outcome line */
.why-outcome {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.8vw, 36px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin: clamp(28px, 3.5vw, 40px) 0 0;
  padding-top: clamp(24px, 3vw, 32px);
  border-top: 1px solid rgba(245, 245, 245, 0.12);
  font-weight: 400;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: baseline;
  color: var(--bone);
}

.why-outcome em {
  font-style: italic;
  font-weight: 400;
  color: var(--yellow);
}

.why-outcome-mark {
  color: var(--yellow);
  font-size: 0.9em;
}

/* Club stats — dual stat layout (6× and 22%) */
.club-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(10, 10, 10, 0.18);
  border: 1px solid rgba(10, 10, 10, 0.18);
  margin-bottom: clamp(56px, 7vw, 96px);
}

@media (max-width: 820px) {
  .club-stats { grid-template-columns: 1fr; }
}

.club-hero-stat-light {
  background: var(--bone);
  color: var(--ink);
}

.club-hero-stat-light .hero-stat-figure span {
  color: var(--ink);
}

.club-hero-stat-light .hero-stat-copy em {
  color: var(--ink);
  font-style: italic;
  font-weight: 400;
}

.club-hero-stat-light .hero-stat-copy .tile-source {
  color: rgba(10, 10, 10, 0.55);
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 28px;
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: transform 0.15s, background 0.2s, color 0.2s;
  line-height: 1;
}

.btn-primary {
  background: var(--yellow);
  color: var(--ink);
}
.btn-primary:hover {
  background: var(--ink);
  color: var(--yellow);
  outline: 1px solid var(--yellow);
}

.btn-large {
  padding: 22px 32px;
  font-size: 26px;
  width: 100%;
}

.btn:active { transform: translateY(1px); }

/* On light background sections */
.audience-clubs .btn-primary { background: var(--ink); color: var(--yellow); }
.audience-clubs .btn-primary:hover { background: var(--yellow); color: var(--ink); outline: 1px solid var(--ink); }

/* ============================================================
   Contact / Form
   ============================================================ */
.contact {
  background: var(--ink);
  padding: clamp(80px, 10vw, 140px) 0;
}

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 6vw, 96px);
  align-items: start;
}

@media (max-width: 860px) {
  .contact-wrap { grid-template-columns: 1fr; }
}

.contact-copy .section-headline { font-size: clamp(48px, 6vw, 88px); }

.contact-lede {
  margin-top: 24px;
  color: rgba(245, 245, 245, 0.75);
  font-size: 18px;
  line-height: 1.5;
  text-wrap: pretty;
  max-width: 440px;
}

.contact-lede strong {
  display: inline-block;
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: var(--track-label);
  text-transform: uppercase;
  color: var(--yellow);
}

.contact-lede em {
  font-style: italic;
  font-weight: 400;
  color: var(--fg);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: clamp(32px, 4vw, 48px);
  background: rgba(245, 245, 245, 0.03);
  border: 1px solid var(--hairline);
}

/* Honeypot — hidden from real users */
.hp { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }

.form-row {}
.form-row-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 560px) {
  .form-row-two { grid-template-columns: 1fr; }
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field > span,
.radio-fieldset legend {
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: var(--track-label);
  text-transform: uppercase;
  color: rgba(245, 245, 245, 0.6);
  padding: 0;
}

.field input,
.field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 16px;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--hairline-strong);
  color: var(--fg);
  padding: 12px 0;
  outline: none;
  transition: border-color 0.2s;
  font-feature-settings: "ss01";
}

.field input:focus,
.field textarea:focus {
  border-color: var(--yellow);
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(245, 245, 245, 0.3);
}

.field textarea {
  resize: vertical;
  min-height: 80px;
  line-height: 1.5;
}

.radio-fieldset {
  border: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.radio-group {
  display: flex;
  gap: 8px;
}

.radio {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  border: 1px solid var(--hairline-strong);
  cursor: pointer;
  transition: all 0.2s;
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: var(--track-label);
  text-transform: uppercase;
}

.radio input { position: absolute; opacity: 0; pointer-events: none; }

.radio:has(input:checked) {
  background: var(--yellow);
  color: var(--ink);
  border-color: var(--yellow);
}

.form-note {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--muted);
  margin: 0;
  text-align: center;
  text-transform: uppercase;
}

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  padding: clamp(48px, 6vw, 80px) 0 clamp(32px, 4vw, 56px);
  border-top: 1px solid var(--hairline);
  background: var(--ink);
}

.footer-wrap {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.footer-top {
  display: flex;
  align-items: baseline;
  gap: 32px;
  flex-wrap: wrap;
}

.wordmark-text-footer {
  font-size: 56px;
  font-style: normal;
}

.footer-tag {
  font-family: var(--font-label);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: var(--track-label);
  text-transform: uppercase;
  color: var(--muted);
  margin: 0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--hairline);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--muted);
  text-transform: uppercase;
}

.footer-bottom a { color: inherit; }
.footer-bottom a:hover { color: var(--yellow); }

/* ============================================================
   Subtle entry animation
   ============================================================ */
@media (prefers-reduced-motion: no-preference) {
  .hero-headline,
  .hero-sub,
  .kicker {
    animation: rise 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
  }
  .hero-sub { animation-delay: 0.12s; }
  .hero-ctas { animation: rise 0.7s cubic-bezier(0.22, 1, 0.36, 1) both; animation-delay: 0.24s; }
}

@keyframes rise {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   Focus states
   ============================================================ */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
.radio:focus-within {
  outline: 2px solid var(--yellow);
  outline-offset: 2px;
}
