/* ============================================================
   Cricfy TV — main.css  (cricfy.football)
   Mobile-first. No frameworks. Pure CSS.
   Red/orange palette derived from the app logo.
   Football-first (FIFA World Cup 2026) + cricket + all sports.
   ============================================================ */

/* ─── 1. DESIGN TOKENS ─────────────────────────────────────── */
:root {
  /* Brand — from the Cricfy TV logo (red → orange radial gradient) */
  --brand-red:        #E11414;   /* primary */
  --brand-red-dark:   #B00E0E;   /* deep red (logo base) */
  --brand-red-soft:   #FDECEC;   /* tint background */
  --brand-orange:     #F5511E;   /* mid */
  --brand-orange-lt:  #FF6D00;   /* highlight (logo top) */
  --brand-gradient:   linear-gradient(135deg, #FF6D00 0%, #E11414 55%, #B00E0E 100%);
  --brand-gradient-soft: linear-gradient(135deg, #FFF3E9 0%, #FDECEC 100%);
  --accent-gold:      #FFC24B;   /* World Cup trophy accent */

  /* Neutrals */
  --bg:               #FFFFFF;
  --bg-alt:           #FAF7F5;   /* warm off-white section */
  --surface:          #FFFFFF;
  --ink:              #16121B;   /* near-black text */
  --ink-2:            #4A4550;   /* secondary text */
  --ink-3:            #857E8C;   /* muted */
  --border:           #ECE7E9;
  --border-2:         #DED8DB;

  /* Dark surfaces (hero, footer) */
  --dark:             #140A0C;
  --dark-2:           #1F1114;
  --dark-3:           #2A171B;
  --on-dark:          #FDF6F3;
  --on-dark-2:        #D9C7C7;
  --on-dark-3:        #A88F90;

  /* Semantic */
  --live:             #FF3B30;
  --success:          #16A34A;
  --warning:          #F59E0B;
  --info:             #2563EB;

  /* Typography */
  --font-body: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --font-head: 'Sora', 'Inter', system-ui, sans-serif;

  --fs-xs:   0.75rem;    /* 12 */
  --fs-sm:   0.8125rem;  /* 13 */
  --fs-base: 0.9375rem;  /* 15 */
  --fs-md:   1rem;       /* 16 */
  --fs-lg:   1.125rem;   /* 18 */
  --fs-xl:   clamp(1.25rem, 1rem + 1.2vw, 1.5rem);
  --fs-2xl:  clamp(1.5rem, 1.1rem + 2vw, 2rem);
  --fs-3xl:  clamp(1.875rem, 1.2rem + 3vw, 2.75rem);
  --fs-4xl:  clamp(2.25rem, 1.2rem + 4.6vw, 3.75rem);

  /* Spacing (8px grid) */
  --sp-1: 0.25rem;  --sp-2: 0.5rem;  --sp-3: 0.75rem; --sp-4: 1rem;
  --sp-5: 1.5rem;   --sp-6: 2rem;    --sp-7: 3rem;    --sp-8: 4rem;
  --sp-9: 6rem;

  /* Radii */
  --r-sm: 8px;  --r-md: 14px; --r-lg: 20px; --r-xl: 28px; --r-full: 999px;

  /* Shadows */
  --sh-sm:  0 1px 2px rgba(20,10,12,.06);
  --sh-md:  0 6px 20px rgba(20,10,12,.08);
  --sh-lg:  0 18px 48px rgba(20,10,12,.12);
  --sh-cta: 0 8px 24px rgba(229,20,20,.35);
  --sh-glow: 0 0 60px rgba(255,109,0,.35);

  /* Transitions */
  --t-fast: 150ms ease;
  --t-base: 250ms cubic-bezier(.4,0,.2,1);

  /* Layout */
  --container: 1180px;
  --container-narrow: 760px;
  --header-h: 60px;
}

/* ─── 2. RESET & BASE ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 100%; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: calc(var(--header-h) + 12px); }

body {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.15; font-weight: 800; letter-spacing: -0.02em; color: var(--ink); }
h2 { font-size: var(--fs-3xl); }
h3 { font-size: var(--fs-xl); }
p  { color: var(--ink-2); }

a { color: var(--brand-red); text-decoration: none; transition: color var(--t-fast); }
a:hover { color: var(--brand-orange); }

ul { list-style: none; }

:focus-visible { outline: 3px solid var(--brand-orange); outline-offset: 2px; border-radius: var(--r-sm); }

::selection { background: var(--brand-orange); color: #fff; }

/* ─── 3. LAYOUT ────────────────────────────────────────────── */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--sp-4); }
.section { padding-block: var(--sp-8); }
.section--alt { background: var(--bg-alt); }
.section--dark { background: var(--dark); color: var(--on-dark); }
.section-head { max-width: 640px; margin: 0 auto var(--sp-6); text-align: center; }
.section-head .eyebrow { display: inline-block; font-family: var(--font-head); font-weight: 700; font-size: var(--fs-sm); letter-spacing: .08em; text-transform: uppercase; color: var(--brand-red); margin-bottom: var(--sp-2); }
.section-head p { font-size: var(--fs-lg); margin-top: var(--sp-3); }
.section--dark .section-head h2 { color: #fff; }
.section--dark .section-head p { color: var(--on-dark-2); }

@media (min-width: 768px) { .section { padding-block: var(--sp-9); } }

/* ─── 4. BUTTONS ───────────────────────────────────────────── */
.btn, .prose a.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--sp-2);
  font-family: var(--font-head); font-weight: 700; font-size: var(--fs-md);
  padding: 0.85rem 1.6rem; border-radius: var(--r-full); border: 2px solid transparent;
  cursor: pointer; transition: transform var(--t-fast), box-shadow var(--t-base), background var(--t-base);
  text-align: center; line-height: 1; text-decoration: none;
}
.btn svg { width: 20px; height: 20px; }
.btn:active { transform: translateY(1px) scale(.99); }

.btn--primary { background: var(--brand-gradient); color: #fff; box-shadow: var(--sh-cta); }
.btn--primary:hover { color: #fff; box-shadow: 0 12px 32px rgba(229,20,20,.45); transform: translateY(-2px); }

.btn--ghost { background: rgba(255,255,255,.08); color: #fff; border-color: rgba(255,255,255,.28); }
.btn--ghost:hover { background: rgba(255,255,255,.16); color: #fff; }

.btn--outline { background: transparent; color: var(--brand-red); border-color: var(--border-2); }
.btn--outline:hover { border-color: var(--brand-red); color: var(--brand-red); background: var(--brand-red-soft); }

.btn--lg { padding: 1.05rem 2rem; font-size: var(--fs-lg); }
.btn--block { width: 100%; }

.btn__sub { display: block; font-size: var(--fs-xs); font-weight: 500; opacity: .85; margin-top: 2px; font-family: var(--font-body); }

/* ─── 5. HEADER / NAV ──────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 100; height: var(--header-h);
  background: rgba(255,255,255,.82); backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--t-base);
}
.site-header.is-scrolled { box-shadow: var(--sh-md); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: var(--header-h); gap: var(--sp-4); }

.brand { display: inline-flex; align-items: center; gap: var(--sp-2); font-family: var(--font-head); font-weight: 800; font-size: 1.15rem; color: var(--ink); letter-spacing: -.02em; }
.brand:hover { color: var(--ink); }
.brand img { width: 34px; height: 34px; border-radius: 9px; }
.brand span b { color: var(--brand-red); }

.nav-desktop { display: none; }
.nav-desktop ul { display: flex; align-items: center; gap: var(--sp-5); }
.nav-desktop a { color: var(--ink-2); font-weight: 600; font-size: var(--fs-base); }
.nav-desktop a:hover { color: var(--brand-red); }

.header-cta { display: none; }

.nav-toggle {
  display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 44px; padding: 10px; background: none; border: none; cursor: pointer;
}
.nav-toggle span { display: block; height: 2px; width: 100%; background: var(--ink); border-radius: 2px; transition: transform var(--t-base), opacity var(--t-fast); }
.nav-toggle.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-active span:nth-child(2) { opacity: 0; }
.nav-toggle.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (min-width: 960px) {
  .nav-desktop { display: block; }
  .header-cta { display: inline-flex; }
  .nav-toggle { display: none; }
}

/* Mobile slide-in menu */
.mobile-menu {
  position: fixed; inset: 0 0 0 auto; width: min(320px, 84vw); z-index: 200;
  background: var(--bg); box-shadow: var(--sh-lg);
  transform: translateX(100%); transition: transform var(--t-base);
  display: flex; flex-direction: column; padding: var(--sp-5);
}
.mobile-menu.is-open { transform: translateX(0); }
.mobile-menu__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: var(--sp-5); }
.mobile-menu__close { width: 44px; height: 44px; border: none; background: var(--bg-alt); border-radius: var(--r-md); font-size: 1.4rem; cursor: pointer; color: var(--ink); }
.mobile-menu__link { display: block; padding: var(--sp-3) var(--sp-2); font-family: var(--font-head); font-weight: 600; font-size: var(--fs-lg); color: var(--ink); border-bottom: 1px solid var(--border); }
.mobile-menu__link:hover { color: var(--brand-red); }
.mobile-menu .btn { margin-top: var(--sp-5); }
.mobile-overlay { position: fixed; inset: 0; background: rgba(20,10,12,.5); opacity: 0; visibility: hidden; z-index: 150; transition: opacity var(--t-base); }
.mobile-overlay.is-active { opacity: 1; visibility: visible; }
body.menu-open { overflow: hidden; }

/* ─── 6. HERO ──────────────────────────────────────────────── */
.hero {
  position: relative; overflow: hidden; color: var(--on-dark);
  background: radial-gradient(120% 90% at 85% 0%, #3A1418 0%, #1F0F12 45%, #140A0C 100%);
  padding-block: var(--sp-8) var(--sp-9);
}
.hero::before { /* gradient glow blobs */
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(40% 40% at 15% 20%, rgba(255,109,0,.28), transparent 70%),
    radial-gradient(45% 45% at 90% 80%, rgba(229,20,20,.30), transparent 70%);
}
.hero .container { position: relative; z-index: 1; }
.hero-grid { display: grid; gap: var(--sp-7); align-items: center; }

.hero-badge {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.18);
  color: var(--on-dark); padding: 6px 14px 6px 8px; border-radius: var(--r-full);
  font-size: var(--fs-sm); font-weight: 600; margin-bottom: var(--sp-4);
}
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--live); box-shadow: 0 0 0 0 rgba(255,59,48,.6); animation: pulse 2s infinite; }
.hero-badge b { color: var(--accent-gold); }

.hero h1 { color: #fff; font-size: var(--fs-4xl); margin-bottom: var(--sp-4); }
.hero h1 .grad { background: linear-gradient(120deg, #FF8A3D, #FF3B30); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-sub { font-size: var(--fs-lg); color: var(--on-dark-2); max-width: 34rem; margin-bottom: var(--sp-6); }
.hero-actions { display: flex; flex-wrap: wrap; gap: var(--sp-3); margin-bottom: var(--sp-5); }
.hero-meta { display: flex; flex-wrap: wrap; gap: var(--sp-4); font-size: var(--fs-sm); color: var(--on-dark-3); }
.hero-meta span { display: inline-flex; align-items: center; gap: 6px; }
.hero-meta svg { width: 16px; height: 16px; color: var(--success); }

/* Phone mockup */
.hero-visual { position: relative; display: flex; justify-content: center; }
.phone {
  position: relative; width: min(280px, 74vw); aspect-ratio: 1220 / 2422;
  border-radius: 36px; padding: 10px; background: linear-gradient(160deg, #2a2a30, #0e0e12);
  box-shadow: var(--sh-lg), var(--sh-glow); border: 1px solid rgba(255,255,255,.08);
}
.phone::after { content: ""; position: absolute; top: 14px; left: 50%; transform: translateX(-50%); width: 90px; height: 6px; background: #000; border-radius: 4px; opacity: .7; }
.phone img { width: 100%; height: 100%; object-fit: cover; border-radius: 27px; }
.hero-float {
  position: absolute; background: rgba(255,255,255,.96); color: var(--ink);
  border-radius: var(--r-md); box-shadow: var(--sh-lg); padding: 10px 14px;
  display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: var(--fs-sm);
}
.hero-float small { display: block; font-weight: 500; color: var(--ink-3); font-size: 11px; }
.hero-float .ic { width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center; color: #fff; }
.hero-float--1 { top: 12%; left: -6%; }
.hero-float--2 { bottom: 14%; right: -8%; }
@media (max-width: 520px) { .hero-float--1 { left: 2%; } .hero-float--2 { right: 2%; } }

@media (min-width: 900px) {
  .hero-grid { grid-template-columns: 1.05fr .95fr; }
  .phone { width: 320px; }
}

/* ─── 7. TRUST / LOGO STRIP ────────────────────────────────── */
.trust { border-top: 1px solid rgba(255,255,255,.08); background: var(--dark); color: var(--on-dark-3); }
.trust .container { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: var(--sp-3) var(--sp-5); padding-block: var(--sp-5); font-size: var(--fs-sm); }
.trust span { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; }
.trust b { color: #fff; font-family: var(--font-head); }

/* ─── 8. MATCH TICKER (World Cup) ──────────────────────────── */
.matches { display: grid; gap: var(--sp-4); grid-template-columns: 1fr; }
@media (min-width: 640px) { .matches { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .matches { grid-template-columns: repeat(3, 1fr); } }

.match-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: var(--sp-5); box-shadow: var(--sh-sm); transition: transform var(--t-base), box-shadow var(--t-base);
  position: relative; overflow: hidden;
}
.match-card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
.match-card__tag { display: inline-flex; align-items: center; gap: 6px; font-size: var(--fs-xs); font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--brand-red); margin-bottom: var(--sp-4); }
.match-card__tag.is-hot::before { content: "🔥"; }
.match-teams { display: flex; align-items: center; justify-content: space-between; gap: var(--sp-2); }
.match-team { display: flex; flex-direction: column; align-items: center; gap: 8px; flex: 1; text-align: center; }
.match-team .flag { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; box-shadow: var(--sh-sm); font-size: 26px; display: grid; place-items: center; background: var(--bg-alt); }
.match-team b { font-family: var(--font-head); font-size: var(--fs-base); }
.match-vs { text-align: center; }
.match-vs .kick { font-family: var(--font-head); font-weight: 800; font-size: var(--fs-lg); color: var(--ink); }
.match-vs small { display: block; color: var(--ink-3); font-size: var(--fs-xs); }
.match-card__foot { margin-top: var(--sp-4); padding-top: var(--sp-3); border-top: 1px dashed var(--border-2); text-align: center; font-size: var(--fs-sm); color: var(--ink-2); font-weight: 600; }
.match-card__foot .cd { color: var(--brand-red); }

/* Countdown hero band */
.countdown-band { text-align: center; }
.countdown { display: inline-flex; gap: var(--sp-3); margin-top: var(--sp-4); }
.countdown div { background: var(--dark-2); color: #fff; border-radius: var(--r-md); padding: var(--sp-3) var(--sp-4); min-width: 68px; }
.countdown b { display: block; font-family: var(--font-head); font-size: var(--fs-2xl); line-height: 1; }
.countdown small { font-size: var(--fs-xs); color: var(--on-dark-3); text-transform: uppercase; letter-spacing: .06em; }

/* ─── 9. FEATURES ──────────────────────────────────────────── */
.features { display: grid; gap: var(--sp-4); grid-template-columns: 1fr; }
@media (min-width: 560px) { .features { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .features { grid-template-columns: repeat(3, 1fr); } }

.feature {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: var(--sp-5); transition: transform var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
}
.feature:hover { transform: translateY(-4px); box-shadow: var(--sh-md); border-color: var(--brand-orange); }
.feature__icon { width: 52px; height: 52px; border-radius: var(--r-md); display: grid; place-items: center; background: var(--brand-gradient-soft); color: var(--brand-red); margin-bottom: var(--sp-4); }
.feature__icon svg { width: 26px; height: 26px; }
.feature h3 { font-size: var(--fs-lg); margin-bottom: var(--sp-2); }
.feature p { font-size: var(--fs-base); margin: 0; }

/* ─── 10. SCREENSHOTS ──────────────────────────────────────── */
.shots {
  display: flex; gap: var(--sp-4); overflow-x: auto; scroll-snap-type: x mandatory;
  padding: var(--sp-2) var(--sp-4) var(--sp-5); margin-inline: calc(-1 * var(--sp-4));
  -webkit-overflow-scrolling: touch; scrollbar-width: none;
}
.shots::-webkit-scrollbar { display: none; }
.shot { scroll-snap-align: center; flex: 0 0 auto; width: min(240px, 62vw); }
.shot .phone-frame {
  border-radius: 30px; padding: 8px; background: linear-gradient(160deg, #2a2a30, #0e0e12);
  box-shadow: var(--sh-lg); border: 1px solid rgba(255,255,255,.06);
}
.shot img { border-radius: 23px; width: 100%; }
.shot p { text-align: center; margin-top: var(--sp-3); font-weight: 600; font-size: var(--fs-sm); color: var(--ink-2); }
@media (min-width: 900px) { .shots { justify-content: center; flex-wrap: nowrap; } }

/* ─── 11. CHANNELS MARQUEE ─────────────────────────────────── */
.channels { overflow: hidden; }
.marquee { display: flex; gap: var(--sp-3); width: max-content; animation: marquee 40s linear infinite; }
.marquee:hover { animation-play-state: paused; }
.chip {
  display: inline-flex; align-items: center; gap: 8px; white-space: nowrap;
  padding: 10px 18px; border-radius: var(--r-full); font-weight: 700; font-family: var(--font-head);
  font-size: var(--fs-sm); background: var(--surface); border: 1px solid var(--border); color: var(--ink-2);
  box-shadow: var(--sh-sm);
}
.chip .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--brand-orange); }

/* ─── 12. HOW TO INSTALL STEPS ─────────────────────────────── */
.steps { display: grid; gap: var(--sp-4); counter-reset: step; grid-template-columns: 1fr; }
@media (min-width: 720px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .steps { grid-template-columns: repeat(4, 1fr); } }
.step {
  position: relative; background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: var(--sp-6) var(--sp-5) var(--sp-5);
}
.step::before {
  counter-increment: step; content: counter(step, decimal-leading-zero);
  font-family: var(--font-head); font-weight: 800; font-size: 1.5rem;
  display: grid; place-items: center; width: 48px; height: 48px; border-radius: var(--r-md);
  background: var(--brand-gradient); color: #fff; margin-bottom: var(--sp-4); box-shadow: var(--sh-cta);
}
.step h3 { font-size: var(--fs-lg); margin-bottom: var(--sp-2); }
.step p { font-size: var(--fs-base); margin: 0; }

/* ─── 13. DOWNLOAD / VERSION CTA ───────────────────────────── */
.download-cta {
  position: relative; overflow: hidden; border-radius: var(--r-xl); color: #fff;
  background: var(--brand-gradient); padding: var(--sp-8) var(--sp-5); text-align: center;
  box-shadow: var(--sh-lg);
}
.download-cta::before { content: ""; position: absolute; inset: 0; background: radial-gradient(60% 100% at 50% 0%, rgba(255,255,255,.22), transparent 60%); }
.download-cta > * { position: relative; }
.download-cta h2 { color: #fff; }
.download-cta p { color: rgba(255,255,255,.9); max-width: 36rem; margin: var(--sp-3) auto var(--sp-5); font-size: var(--fs-lg); }
.download-cta .btn--primary { background: #fff; color: var(--brand-red); box-shadow: var(--sh-lg); }
.download-cta .btn--primary:hover { color: var(--brand-red-dark); background: #fff; }

.version-strip { display: flex; flex-wrap: wrap; justify-content: center; gap: var(--sp-3) var(--sp-6); margin-top: var(--sp-5); font-size: var(--fs-sm); }
.version-strip span { display: inline-flex; align-items: center; gap: 6px; opacity: .95; }

/* Version panel (data table) */
.vpanel { max-width: 620px; margin-inline: auto; background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-sm); }
.vpanel__row { display: flex; justify-content: space-between; gap: var(--sp-4); padding: var(--sp-3) var(--sp-5); border-bottom: 1px solid var(--border); font-size: var(--fs-base); }
.vpanel__row:last-child { border-bottom: 0; }
.vpanel__row span:first-child { color: var(--ink-3); }
.vpanel__row span:last-child { font-weight: 700; font-family: var(--font-head); color: var(--ink); }

/* ─── 14. FAQ ──────────────────────────────────────────────── */
.faq { max-width: var(--container-narrow); margin-inline: auto; }
.faq-item { border: 1px solid var(--border); border-radius: var(--r-md); margin-bottom: var(--sp-3); overflow: hidden; background: var(--surface); }
.faq-item summary, .faq-q {
  list-style: none; cursor: pointer; padding: var(--sp-4) var(--sp-5);
  display: flex; align-items: center; justify-content: space-between; gap: var(--sp-3);
  font-family: var(--font-head); font-weight: 600; font-size: var(--fs-md); color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-q .ic { flex: 0 0 auto; transition: transform var(--t-base); color: var(--brand-red); }
.faq-item[open] .faq-q .ic { transform: rotate(45deg); }
.faq-a { padding: 0 var(--sp-5) var(--sp-4); color: var(--ink-2); font-size: var(--fs-base); }
.faq-a :where(p, ul) { margin-top: 0; }

/* ─── 15. FOOTER ───────────────────────────────────────────── */
.site-footer { background: var(--dark); color: var(--on-dark-2); padding-block: var(--sp-8) var(--sp-5); }
.footer-grid { display: grid; gap: var(--sp-6); grid-template-columns: 1fr; }
@media (min-width: 680px) { .footer-grid { grid-template-columns: 1.6fr 1fr 1fr; } }
@media (min-width: 980px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.footer-brand .brand { color: #fff; margin-bottom: var(--sp-3); }
.footer-brand p { color: var(--on-dark-3); font-size: var(--fs-base); max-width: 30ch; }
.footer-col h4 { color: #fff; font-size: var(--fs-base); text-transform: uppercase; letter-spacing: .06em; margin-bottom: var(--sp-4); font-family: var(--font-head); }
.footer-col a { display: block; color: var(--on-dark-2); padding: 5px 0; font-size: var(--fs-base); }
.footer-col a:hover { color: var(--brand-orange-lt); }
.footer-bottom { margin-top: var(--sp-7); padding-top: var(--sp-5); border-top: 1px solid rgba(255,255,255,.08); display: flex; flex-wrap: wrap; gap: var(--sp-3); justify-content: space-between; align-items: center; font-size: var(--fs-sm); color: var(--on-dark-3); }
.footer-disclaimer { font-size: var(--fs-xs); color: var(--on-dark-3); margin-top: var(--sp-4); line-height: 1.6; }

/* ─── 16. BREADCRUMBS + PROSE (inner pages) ────────────────── */
.breadcrumb { font-size: var(--fs-sm); color: var(--ink-3); padding-block: var(--sp-4) 0; }
.breadcrumb a { color: var(--ink-2); }
.breadcrumb span { margin-inline: 6px; }

.page-hero { background: var(--brand-gradient-soft); border-bottom: 1px solid var(--border); padding-block: var(--sp-7); text-align: center; }
.page-hero h1 { font-size: var(--fs-3xl); }
.page-hero p { font-size: var(--fs-lg); max-width: 46rem; margin: var(--sp-3) auto 0; }

.prose { max-width: var(--container-narrow); margin-inline: auto; }
.prose h2 { font-size: var(--fs-2xl); margin-top: var(--sp-7); margin-bottom: var(--sp-3); }
.prose h3 { margin-top: var(--sp-5); margin-bottom: var(--sp-2); }
.prose p, .prose li { color: var(--ink-2); margin-bottom: var(--sp-3); }
.prose ul { padding-left: 1.2rem; list-style: disc; }
.prose li { margin-bottom: var(--sp-2); }
.prose a { text-decoration: underline; text-underline-offset: 2px; }
.prose strong { color: var(--ink); }

.callout { border-left: 4px solid var(--brand-orange); background: var(--brand-gradient-soft); padding: var(--sp-4) var(--sp-5); border-radius: var(--r-sm); margin-block: var(--sp-4); }
.callout p { margin: 0; color: var(--ink); }

/* ─── 17. UTILITIES ────────────────────────────────────────── */
.text-center { text-align: center; }
.mt-5 { margin-top: var(--sp-5); }
.mt-6 { margin-top: var(--sp-6); }
.center-btn { display: flex; justify-content: center; margin-top: var(--sp-6); }
.skip-link { position: absolute; left: -999px; top: 0; z-index: 999; background: var(--brand-red); color: #fff; padding: 10px 16px; border-radius: 0 0 var(--r-sm) 0; }
.skip-link:focus { left: 0; color: #fff; }
.badge-live { display: inline-flex; align-items: center; gap: 6px; background: var(--live); color: #fff; font-size: var(--fs-xs); font-weight: 700; padding: 3px 10px; border-radius: var(--r-full); text-transform: uppercase; letter-spacing: .04em; }

.reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* ─── 18. ANIMATIONS ───────────────────────────────────────── */
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(255,59,48,.6); } 70% { box-shadow: 0 0 0 8px rgba(255,59,48,0); } 100% { box-shadow: 0 0 0 0 rgba(255,59,48,0); } }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
