/* ============================================================
   HOT & JUICY PODCAST — DESIGN SYSTEM v2
   style.css — Premium redesign. All shared styles and tokens.
   ============================================================ */

/* ── TOKENS ─────────────────────────────────────────────── */
:root {
  /* Colours (exact brand system) */
  --c-bg: #111111;
  --c-bg-2: #1a1a1a;
  --c-bg-3: #222222;
  --c-bg-4: #2a2a2a;
  --c-border: rgba(255, 255, 255, 0.08);
  --c-border-warm: rgba(245, 166, 35, 0.2);
  --c-amber: #F5A623;
  --c-amber-dk: #d4891a;
  --c-coral: #E8412A;
  --c-coral-dk: #c73320;
  --c-cream: #F5F1EA;
  --c-cream-2: #ede8e0;
  --c-text: #F5F1EA;
  --c-muted: #B8B2A7;
  --c-muted-2: #6b6363;
  --c-white: #ffffff;

  /* Typography — Syne (headings) + Inter (body) */
  --f-display: "Syne", sans-serif;
  --f-body: "Inter", sans-serif;

  /* Scale — 18px body base */
  --fs-xs: 0.75rem;
  --fs-sm: 0.875rem;
  --fs-base: 1.125rem;
  --fs-lg: 1.25rem;
  --fs-xl: 1.5rem;
  --fs-2xl: 2rem;
  --fs-3xl: 2.5rem;
  --fs-4xl: 3.5rem;

  /* Spacing scale: 8 / 16 / 24 / 32 / 48 / 64 / 96 / 128 */
  --sp-1: 8px;
  --sp-2: 16px;
  --sp-3: 24px;
  --sp-4: 32px;
  --sp-5: 48px;
  --sp-6: 64px;
  --sp-7: 96px;
  --sp-8: 128px;

  /* Radii — 8px / 16px / 24px only */
  --r-sm: 8px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-full: 9999px;

  /* Shadows */
  --shadow-card: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 8px 24px rgba(0, 0, 0, 0.12);
  --shadow-modal: 0 20px 60px rgba(0, 0, 0, 0.20);

  /* Transitions */
  --t-fast: 0.15s ease;
  --t-base: 0.22s ease;
  --t-slow: 0.35s ease;

  /* Layout */
  --max-w: 1200px;
  --nav-h: 72px;
}

/* ── RESET ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--f-body);
  background: var(--c-bg);
  color: var(--c-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; height: auto; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: var(--f-body); }
ul, ol { list-style: none; }
input, textarea, select { font-family: var(--f-body); font-size: var(--fs-base); }

/* ── TYPOGRAPHY ──────────────────────────────────────────── */
h1, h2, h3, h4, h5 { 
  font-family: var(--f-display); 
  line-height: 1.1; 
  color: var(--c-cream); 
  font-weight: 800;
}
h1 { font-size: clamp(2.2rem, 9vw, 4rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.8rem, 3.5vw, var(--fs-3xl)); letter-spacing: -0.015em; }
h3 { font-size: clamp(1.3rem, 2.2vw, var(--fs-2xl)); letter-spacing: -0.01em; }
h4 { font-size: var(--fs-lg); }
p { color: var(--c-muted); line-height: 1.6; font-size: var(--fs-base); }
strong { color: var(--c-text); font-weight: 600; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--c-amber);
  font-weight: 600;
  font-size: clamp(0.7rem, 2vw, 0.8rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.eyebrow--coral { color: var(--c-coral); }
.eyebrow--muted { color: var(--c-muted); }

.section-hdr { margin-bottom: var(--sp-5); }
.section-hdr--center { text-align: center; }
.section-hdr--center p { max-width: 520px; margin: var(--sp-2) auto 0; }
.section-hdr--row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--sp-3);
}
.section-hdr p { margin-top: var(--sp-2); max-width: 560px; }
.section-hdr .eyebrow { margin-bottom: var(--sp-1); }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap;
}

/* ── LAYOUT ──────────────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--sp-3); }
.container--narrow { max-width: 760px; }
.container--wide { max-width: 1320px; }

.section { padding: var(--sp-7) 0; }
.section--sm { padding: var(--sp-5) 0; }
.section--alt { background: var(--c-bg-2); }
.section--mid { background: var(--c-bg-3); }

.page-top { padding-top: var(--nav-h); }

/* Grids */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--sp-3); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-3); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-3); }

/* Flex */
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-col { display: flex; flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.gap-1 { gap: var(--sp-1); }
.gap-2 { gap: var(--sp-2); }
.gap-3 { gap: var(--sp-3); }
.gap-4 { gap: var(--sp-4); }

/* Spacing utilities */
.mt-1 { margin-top: var(--sp-1); }
.mt-2 { margin-top: var(--sp-2); }
.mt-3 { margin-top: var(--sp-3); }
.mt-4 { margin-top: var(--sp-4); }
.mt-5 { margin-top: var(--sp-5); }
.mt-6 { margin-top: var(--sp-6); }
.mb-1 { margin-bottom: var(--sp-1); }
.mb-2 { margin-bottom: var(--sp-2); }
.mb-3 { margin-bottom: var(--sp-3); }
.mb-4 { margin-bottom: var(--sp-4); }
.mb-5 { margin-bottom: var(--sp-5); }
.mb-6 { margin-bottom: var(--sp-6); }

.text-center { text-align: center; }
.text-amber { color: var(--c-amber) !important; }
.text-coral { color: var(--c-coral) !important; }
.text-muted { color: var(--c-muted) !important; }
.text-cream { color: var(--c-cream) !important; }
.text-sm { font-size: var(--fs-sm); }
.text-xs { font-size: var(--fs-xs); }

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-1);
  padding: 14px 28px;
  border-radius: var(--r-sm);
  font-family: var(--f-display);
  font-weight: 600;
  font-size: var(--fs-sm);
  letter-spacing: 0.01em;
  transition: all var(--t-base);
  white-space: nowrap;
  cursor: pointer;
  border: 2px solid transparent;
  line-height: 1;
  position: relative;
}
.btn:hover { transform: translateY(-2px); }
.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}
.btn--loading {
  color: transparent !important;
  pointer-events: none;
}
.btn--loading::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}
.btn--primary {
  background: linear-gradient(135deg, var(--c-coral) 0%, #f47a3d 100%);
  color: #fff;
}
.btn--primary:hover {
  background: linear-gradient(135deg, var(--c-coral-dk) 0%, #e0692f 100%);
  box-shadow: var(--shadow-card);
}
.btn--amber {
  background: var(--c-amber);
  color: var(--c-bg);
}
.btn--amber:hover {
  background: var(--c-amber-dk);
  box-shadow: var(--shadow-card);
}
.btn--outline {
  background: transparent;
  color: var(--c-cream);
  border-color: rgba(255, 255, 255, 0.2);
}
.btn--outline:hover {
  border-color: var(--c-amber);
  background: rgba(245, 166, 35, 0.08);
}
.btn--ghost {
  background: rgba(255, 255, 255, 0.04);
  color: var(--c-muted);
}
.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--c-cream);
}
.btn--dark {
  background: var(--c-bg);
  color: var(--c-cream);
  border-color: var(--c-bg-4);
}
.btn--dark:hover { background: var(--c-bg-2); }
.btn--outline-dark {
  background: transparent;
  color: var(--c-cream);
  border: 2px solid var(--c-cream);
}
.btn--outline-dark:hover {
  background: var(--c-cream);
  color: var(--c-bg);
}
.btn--white {
  background: #fff;
  color: var(--c-coral);
}
.btn--white:hover { background: var(--c-cream); }
.btn--lg { padding: 18px 36px; font-size: var(--fs-base); }
.btn--sm { padding: 10px 20px; font-size: var(--fs-xs); }
.btn--full { width: 100%; }
.btn--icon {
  width: 48px; height: 48px; padding: 0;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
}
.btn--pill {
  border-radius: var(--r-full);
  padding: 16px 32px;
}

/* ── NAVIGATION ──────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: var(--nav-h);
  background: rgba(17, 17, 17, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--c-border);
}
.nav__inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 var(--sp-3);
  height: 100%; display: flex; align-items: center;
  justify-content: space-between;
}
.nav__logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  line-height: 0;
}
.nav__logo-img {
  height: 52px;
  width: 52px;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}
.nav__logo-text {
  font-family: var(--f-display);
  font-size: var(--fs-lg);
  font-weight: 700;
  color: var(--c-cream);
  letter-spacing: -0.01em;
}
.nav__links { display: flex; align-items: center; gap: var(--sp-4); }
.nav__links a {
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--c-muted);
  transition: color var(--t-fast);
  position: relative;
}
.nav__links a::after {
  content: "";
  position: absolute; bottom: -4px; left: 0; right: 0;
  height: 2px; background: var(--c-amber);
  transform: scaleX(0); transition: transform var(--t-base);
  border-radius: 2px;
}
.nav__links a:hover, .nav__links a.active { color: var(--c-cream); }
.nav__links a:hover::after, .nav__links a.active::after { transform: scaleX(1); }
.nav__cta { margin-left: var(--sp-2); }

/* Mobile nav */
.nav__toggle {
  display: none; flex-direction: column; gap: 5px; padding: var(--sp-1);
}
.nav__toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--c-cream); border-radius: 2px;
  transition: all var(--t-base);
}
.nav__toggle[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}
.nav__mobile {
  display: none;
  position: fixed; top: var(--nav-h); left: 0; right: 0;
  background: var(--c-bg-2);
  border-bottom: 1px solid var(--c-border);
  flex-direction: column; padding: var(--sp-2) 0; z-index: 199;
}
.nav__mobile.is-open { display: flex; }
.nav__mobile a {
  padding: var(--sp-2) var(--sp-3);
  font-size: var(--fs-base); font-weight: 500;
  color: var(--c-muted);
  border-bottom: 1px solid var(--c-border);
  transition: color var(--t-fast);
}
.nav__mobile a:last-child { border-bottom: none; }
.nav__mobile a:hover { color: var(--c-amber); }
.nav__mobile .btn {
  margin: var(--sp-2) var(--sp-3);
  width: calc(100% - 48px);
  justify-content: center;
}

/* ── STICKY MOBILE CTA ──────────────────────────────────── */
.sticky-cta {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 150;
  background: rgba(17, 17, 17, 0.96);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--c-border);
  padding: 8px var(--sp-2);
}
.sticky-cta__inner {
  display: flex; align-items: center; gap: var(--sp-2);
  max-width: var(--max-w); margin: 0 auto;
}

/* ── CARDS ───────────────────────────────────────────────── */
.card {
  background: var(--c-bg-2);
  border: 1px solid var(--c-border);
  border-radius: var(--r-sm);
  overflow: hidden;
  transition: transform var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
  box-shadow: var(--shadow-card);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: var(--c-border-warm);
}

/* Episode cards — premium streaming feel */
.ep-card { display: block; }
.ep-card__thumb {
  position: relative;
  aspect-ratio: 16/9;
  background: var(--c-bg-3);
  overflow: hidden;
}
.ep-card__thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}
.ep-card:hover .ep-card__thumb img { transform: scale(1.05); }
.ep-card__thumb-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem;
  background: linear-gradient(135deg, var(--c-bg-3), var(--c-bg-2));
}
.ep-card__overlay {
  position: absolute; inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity var(--t-base);
}
.ep-card:hover .ep-card__overlay { opacity: 1; }
.ep-card__play {
  width: 56px; height: 56px;
  background: var(--c-coral);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.3rem;
  box-shadow: var(--shadow-hover);
  transition: transform var(--t-base);
}
.ep-card:hover .ep-card__play { transform: scale(1.08); }
.ep-card__badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--c-amber); color: var(--c-bg);
  font-family: var(--f-display); font-size: var(--fs-xs);
  font-weight: 700; padding: 4px 10px; border-radius: var(--r-sm);
  letter-spacing: 0.04em;
}
.ep-card__badge--short { background: var(--c-coral); color: #fff; }
.ep-card__body { padding: var(--sp-3); }
.ep-card__meta {
  display: flex; align-items: center; gap: var(--sp-1);
  font-size: var(--fs-xs); color: var(--c-muted-2);
  margin-bottom: var(--sp-1);
}
.ep-card__tag {
  background: rgba(245, 166, 35, 0.12);
  color: var(--c-amber);
  padding: 2px 8px;
  border-radius: var(--r-sm);
  font-weight: 600;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.ep-card__title {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--c-cream);
  margin-bottom: var(--sp-1);
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.ep-card__desc {
  font-size: var(--fs-sm);
  color: var(--c-muted);
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.ep-card__footer {
  padding: var(--sp-2) var(--sp-3);
  border-top: 1px solid var(--c-border);
  display: flex; align-items: center;
  justify-content: space-between;
}
.ep-card__cta {
  font-family: var(--f-display);
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--c-amber);
  display: flex; align-items: center; gap: var(--sp-1);
  transition: gap var(--t-base);
}
.ep-card:hover .ep-card__cta { gap: var(--sp-2); }

/* Featured episode card (hero embed) */
.featured-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-3);
  align-items: center;
  background: var(--c-bg-2);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.featured-card__thumb {
  position: relative;
  aspect-ratio: 16/10;
  background: var(--c-bg-3);
  overflow: hidden;
}
.featured-card__thumb img {
  width: 100%; height: 100%; object-fit: cover;
}
.featured-card__body { padding: var(--sp-3); }
.featured-card__body .eyebrow { margin-bottom: var(--sp-1); }
.featured-card__body h3 {
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  margin-bottom: var(--sp-2);
}
.featured-card__body p {
  font-size: var(--fs-sm);
  margin-bottom: var(--sp-3);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Blog cards */
.blog-card { display: block; }
.blog-card__thumb {
  aspect-ratio: 16/9; background: var(--c-bg-3); overflow: hidden;
}
.blog-card__thumb img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform var(--t-slow);
}
.blog-card:hover .blog-card__thumb img { transform: scale(1.05); }
.blog-card__body { padding: var(--sp-3); }
.blog-card__category {
  font-family: var(--f-display); font-size: var(--fs-xs);
  font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--c-amber); margin-bottom: var(--sp-1);
}
.blog-card__title {
  font-family: var(--f-display); font-weight: 600;
  font-size: 1.05rem; color: var(--c-cream);
  line-height: 1.3; margin-bottom: var(--sp-1);
}
.blog-card__excerpt {
  font-size: var(--fs-sm); color: var(--c-muted);
  display: -webkit-box; -webkit-line-clamp: 2;
  -webkit-box-orient: vertical; overflow: hidden;
}
.blog-card__footer {
  padding: var(--sp-2) var(--sp-3);
  border-top: 1px solid var(--c-border);
  display: flex; align-items: center; justify-content: space-between;
  font-size: var(--fs-xs); color: var(--c-muted);
}

/* ── HOST CARDS ──────────────────────────────────────────── */
.host-card {
  background: var(--c-bg-2);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  padding: var(--sp-4);
  text-align: center;
  transition: border-color var(--t-base), transform var(--t-base), box-shadow var(--t-base);
  box-shadow: var(--shadow-card);
}
.host-card:hover {
  border-color: var(--c-border-warm);
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.host-card__avatar {
  width: 100px; height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c-amber), var(--c-coral));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-display); font-weight: 700;
  font-size: 2rem; color: #fff;
  margin: 0 auto var(--sp-2); overflow: hidden;
}
.host-card__avatar img { width: 100%; height: 100%; object-fit: cover; }
.host-card__name {
  font-family: var(--f-display); font-weight: 700;
  font-size: var(--fs-lg); color: var(--c-cream);
  margin-bottom: 4px;
}
.host-card__title {
  font-size: var(--fs-sm); color: var(--c-amber);
  margin-bottom: var(--sp-2);
}
.host-card__bio {
  font-size: var(--fs-sm); color: var(--c-muted);
  line-height: 1.65; margin-bottom: var(--sp-3);
}
.host-card__socials {
  display: flex; gap: var(--sp-1); justify-content: center;
}
.host-card__socials a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--c-bg-3);
  border: 1px solid var(--c-border);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; color: var(--c-muted);
  transition: all var(--t-fast);
}
.host-card__socials a:hover {
  background: var(--c-amber); color: var(--c-bg); border-color: var(--c-amber);
}

/* ── PLATFORM PILLS ──────────────────────────────────────── */
.platform-pill {
  display: inline-flex; align-items: center; gap: var(--sp-1);
  padding: var(--sp-2) var(--sp-3);
  background: var(--c-bg-3);
  border: 1px solid var(--c-border);
  border-radius: var(--r-sm);
  font-family: var(--f-display); font-weight: 600;
  font-size: var(--fs-sm); color: var(--c-cream);
  transition: all var(--t-base);
  flex: 0 0 auto;
  white-space: nowrap;
}
.platform-pill:hover {
  border-color: var(--c-amber);
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}
.platform-icon { font-size: 1.3rem; }

/* Platform bar */
.platform-bar {
  background: var(--c-bg-2);
  border-top: 1px solid var(--c-border);
  padding: var(--sp-3) 0;
}

/* ── HERO ──────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: clamp(1.5rem, 6vw, 4rem);
  background-image: url(../images/hero-bg.jpg);
  background-size: cover;
  background-position: center;
}

/* Dark overlay — keeps text readable over the photo */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.75) 100%);
  pointer-events: none;
}

/* Ambient flame glow — the one signature touch, kept subtle */
.hero::before {
  content: "";
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: min(120%, 100vw);
  height: 60%;
  background: radial-gradient(ellipse at center, rgba(232,65,42,0.18), rgba(245,166,35,0.08) 45%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 880px;
  margin: 0 auto;
}

/* Logo badge — replaces the floating white square */
.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: clamp(2rem, 6vw, 3rem);
}
.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--c-coral), var(--c-amber));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(232,65,42,0.35);
}
.brand-name {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.02em;
}

.hero h1 {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(2.2rem, 9vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: clamp(1rem, 3vw, 1.5rem);
}
.hero h1 span {
  background: linear-gradient(90deg, var(--c-amber), var(--c-coral));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.desc {
  color: var(--c-muted);
  font-size: clamp(1rem, 2.6vw, 1.15rem);
  line-height: 1.6;
  max-width: 52ch;
  margin-bottom: clamp(1.75rem, 4vw, 2.25rem);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-bottom: clamp(2rem, 5vw, 2.75rem);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: linear-gradient(90deg, var(--c-coral), #f0563b);
  color: #fff;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(0.95rem, 2.5vw, 1.05rem);
  padding: 1rem 1.75rem;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(232,65,42,0.3);
  transition: transform 0.15s ease;
  white-space: nowrap;
  max-width: 100%;
}
.btn-primary:hover { transform: translateY(-2px); }
.btn-primary svg { width: 14px; height: 14px; flex-shrink: 0; }

.proof {
  color: var(--c-muted);
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.proof strong { color: var(--c-amber); font-weight: 700; }

.platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

/* Responsive hero & platform tweaks */
@media (max-width: 900px) {
  .hero-inner { max-width: 92%; }
}

@media (max-width: 600px) {
  .hero:not(.hero--home) { padding: 1.25rem 1rem; min-height: 70svh; }
  .hero:not(.hero--home) .brand { margin-bottom: 1rem; }
  .hero:not(.hero--home) h1 { font-size: clamp(1.75rem, 8vw, 2.4rem); margin-bottom: 0.75rem; }
  .hero:not(.hero--home) .desc { margin-bottom: 1rem; max-width: 100%; }
  .hero:not(.hero--home) .cta-row { margin-bottom: 1rem; gap: 0.6rem; }
  .hero:not(.hero--home) .proof { display: none; }

  /* Non-home heroes: scrollable platforms (no negative margins — prevents overflow) */
  .hero:not(.hero--home) .platforms {
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: flex-start;
    overflow: visible;
    padding-bottom: 0.25rem;
  }
  .hero:not(.hero--home) .platform-pill { flex: 0 0 auto; }
}
.platform-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1rem;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  color: var(--c-cream);
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
  background: rgba(255,255,255,0.03);
  transition: border-color 0.15s ease, background 0.15s ease;
}
.platform-pill:hover {
  border-color: rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.06);
}
.platform-pill svg { width: 16px; height: 16px; flex-shrink: 0; }

.platform-pill svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ── HOME HERO — shared structure (desktop defaults) ─────── */
.hero--home .hero-artwork { display: none; }
.hero--home .hero-tagline,
.hero--home .hero-topics { display: none; }
.hero--home .hero-heading__mobile { display: none; }
.hero--home .hero-cta__label--mobile { display: none; }
.hero--home .hero-heading__desktop { display: block; }
.hero--home .hero-cta__label--desktop { display: inline; }

/* Compact sticky CTA link (other pages) */
.sticky-cta__link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  min-height: 48px;
  padding: 0.65rem 1.25rem;
  background: linear-gradient(135deg, var(--c-coral) 0%, #f0563b 100%);
  color: #fff;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: var(--fs-sm);
  border-radius: var(--r-full);
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(232, 65, 42, 0.25);
  transition: transform var(--t-fast), box-shadow var(--t-fast);
}
.sticky-cta__link:hover { transform: translateY(-1px); }
.sticky-cta__link:active { transform: translateY(0); }
.page-home .sticky-cta--home { display: none !important; }

@media (max-width: 400px) {
  .hero--home .cta-row { flex-direction: column; align-items: stretch; }
  .hero:not(.hero--home) .cta-row { flex-direction: column; align-items: flex-start; }
  .hero:not(.hero--home) .btn-primary { width: 100%; justify-content: center; }
}

/* ── HOME HERO — mobile editorial redesign (<768px) ────── */
@media (max-width: 767px) {
  .hero--home {
    min-height: auto;
    padding: calc(var(--nav-h) + var(--sp-3)) var(--sp-2) var(--sp-4);
    background-image: none;
    background:
      radial-gradient(circle at 50% 18%, rgba(255, 0, 40, 0.12), transparent 38%),
      radial-gradient(circle at 50% 8%, rgba(248, 165, 0, 0.06), transparent 32%),
      var(--c-bg);
    justify-content: flex-start;
    overflow: hidden;
  }
  .hero--home::after {
    background: linear-gradient(180deg, rgba(17, 17, 17, 0.2) 0%, rgba(17, 17, 17, 0.85) 100%);
  }
  .hero--home::before {
    top: 0;
    width: 100%;
    height: 50%;
    background: radial-gradient(ellipse at center top, rgba(255, 0, 40, 0.14), transparent 65%);
  }

  .hero--home .hero-inner {
    max-width: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-inline: var(--sp-1);
  }

  /* Artwork focal point */
  .hero--home .hero-artwork {
    display: block;
    width: min(78vw, 340px);
    aspect-ratio: 1;
    margin: 0 auto var(--sp-3);
    border-radius: var(--r-lg);
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(248, 165, 0, 0.18);
    box-shadow:
      0 12px 40px rgba(0, 0, 0, 0.45),
      0 0 48px rgba(255, 0, 40, 0.12),
      0 0 24px rgba(248, 165, 0, 0.08);
    animation: hero-artwork-float 5s ease-in-out infinite;
  }
  .hero--home .hero-artwork img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* Eyebrow metadata */
  .hero--home .hero-eyebrow {
    display: inline-flex;
    margin-bottom: var(--sp-2);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--c-amber);
    animation: hero-fade-up 0.6s ease both;
  }
  .hero--home .hero-inner > .eyebrow:not(.hero-eyebrow) { display: none; }

  /* Editorial title */
  .hero--home .hero-heading {
    margin-bottom: var(--sp-2);
    animation: hero-fade-up 0.65s ease 0.05s both;
  }
  .hero--home .hero-heading__desktop { display: none; }
  .hero--home .hero-heading__mobile {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    line-height: 0.9;
    letter-spacing: -0.04em;
  }
  .hero--home .hero-heading__line {
    display: block;
    font-family: var(--f-display);
    font-weight: 800;
    font-size: clamp(2.8rem, 12vw, 4.8rem);
    color: var(--c-cream);
    max-width: 100%;
    overflow-wrap: anywhere;
  }
  .hero--home .hero-heading__line--accent {
    background: linear-gradient(90deg, var(--c-amber), var(--c-coral));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }

  /* Tagline + topics */
  .hero--home .hero-tagline {
    display: block;
    color: var(--c-cream);
    font-size: clamp(1.05rem, 4.2vw, 1.25rem);
    line-height: 1.35;
    font-weight: 500;
    margin-bottom: var(--sp-2);
    max-width: 28ch;
    animation: hero-fade-up 0.7s ease 0.1s both;
  }
  .hero--home .hero-topics {
    display: block;
    font-size: var(--fs-xs);
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--c-muted);
    margin-bottom: var(--sp-3);
    animation: hero-fade-up 0.75s ease 0.15s both;
  }

  /* Hide long copy visually; keep in DOM for SEO */
  .hero--home .hero-desc {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
  }

  /* Primary CTA */
  .hero--home .cta-row {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 360px;
    margin: 0 auto var(--sp-2);
    gap: 0;
  }
  .hero--home .hero-cta {
    width: 100%;
    max-width: 360px;
    margin-inline: auto;
    min-height: 48px;
    padding: 0.875rem 1.25rem;
    justify-content: center;
    white-space: normal;
    text-align: center;
    font-size: clamp(0.85rem, 3.6vw, 0.95rem);
    background: linear-gradient(90deg, #FF0028, var(--c-coral));
    box-shadow: 0 6px 20px rgba(255, 0, 40, 0.28);
    border-radius: var(--r-full);
    animation: hero-fade-up 0.8s ease 0.2s both;
  }
  .hero--home .hero-cta:active { transform: scale(0.98); }
  .hero--home .hero-cta__label--desktop { display: none; }
  .hero--home .hero-cta__label--mobile { display: inline; }

  /* Secondary platform pills */
  .hero--home .hero-platforms {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    max-width: 360px;
    margin-inline: auto;
    overflow: visible;
    padding: 0;
  }
  .hero--home .hero-platforms .platform-pill {
    flex: 0 1 auto;
    padding: 0.45rem 0.75rem;
    font-size: 0.72rem;
    font-weight: 600;
    white-space: nowrap;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--r-full);
  }
  .hero--home .hero-platforms .platform-pill svg {
    width: 14px;
    height: 14px;
  }
  .hero--home .hero-platforms .platform-pill--tiktok {
    flex-basis: 100%;
    justify-content: center;
    max-width: fit-content;
    margin-inline: auto;
  }

  .hero--home .proof { display: none; }

  /* Nav breathing room on mobile */
  .nav__inner { padding-inline: var(--sp-2); }
  .nav__logo-img { height: 44px; width: 44px; }
  .nav__toggle {
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
  }

  .page-home .footer { padding-bottom: var(--sp-3); }
}

@keyframes hero-artwork-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}
@keyframes hero-fade-up {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .hero--home .hero-artwork,
  .hero--home .hero-eyebrow,
  .hero--home .hero-heading,
  .hero--home .hero-tagline,
  .hero--home .hero-topics,
  .hero--home .hero-cta {
    animation: none;
  }
}


/* Keyboard focus visibility */
a:focus-visible, button:focus-visible, .btn:focus-visible, .platform-pill:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(245,166,35,0.12);
  border-radius: var(--r-sm);
}

/* ── SPLIT LAYOUT ────────────────────────────────────────── */
.split-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--sp-6);
  align-items: center;
}

/* ── NEWSLETTER ──────────────────────────────────────────── */
.newsletter-section {
  background:
    linear-gradient(135deg, rgba(245,166,35,0.10), transparent 38%),
    linear-gradient(180deg, #191208 0%, var(--c-bg) 100%);
}
.newsletter-section .signup-panel {
  background: rgba(26,26,26,0.90);
  border: 1px solid var(--c-border-warm);
  border-radius: var(--r-md);
  padding: var(--sp-4);
  box-shadow: var(--shadow-card);
}
.check-list {
  display: flex; flex-direction: column; gap: var(--sp-1);
}
.check-list li {
  display: flex; align-items: center; gap: var(--sp-1);
  color: var(--c-muted); font-size: var(--fs-sm);
}
.check-list span { color: var(--c-amber); font-weight: 800; }
.stack-form {
  display: flex; flex-direction: column; gap: var(--sp-2);
}
.stack-form input {
  width: 100%;
  padding: 14px var(--sp-2);
  border-radius: var(--r-sm);
  border: 1px solid var(--c-border);
  background: var(--c-bg-3);
  color: var(--c-cream);
  font-size: var(--fs-sm);
  outline: none;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.stack-form input:focus {
  border-color: var(--c-amber);
  box-shadow: 0 0 0 3px rgba(245,166,35,0.10);
}
.form-note {
  margin-top: var(--sp-2);
  color: var(--c-muted-2);
  font-size: var(--fs-xs);
  text-align: center;
}

/* ── SPONSOR PANEL ───────────────────────────────────────── */
.sponsor-panel {
  background: rgba(26,26,26,0.88);
  border: 1px solid var(--c-border-warm);
  border-radius: var(--r-md);
  padding: var(--sp-5);
  text-align: center;
  box-shadow: var(--shadow-card);
}
.panel-copy { max-width: 560px; margin: 0 auto var(--sp-4); }

/* ── COMMUNITY ICONS ─────────────────────────────────────── */
.icon-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--sp-2);
}
.icon-tile {
  min-height: 130px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: var(--sp-1); padding: var(--sp-3);
  background: var(--c-bg-3);
  border: 1px solid var(--c-border);
  border-radius: var(--r-sm);
  text-align: center;
  transition: transform var(--t-base), border-color var(--t-base);
}
.icon-tile:hover {
  transform: translateY(-2px);
  border-color: var(--c-border-warm);
}
.icon-tile__icon { font-size: 2rem; line-height: 1; }
.icon-tile__label {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: var(--fs-sm);
  color: var(--c-cream);
}

/* ── TESTIMONIAL ─────────────────────────────────────────── */
.testimonial {
  background: var(--c-bg-2);
  border: 1px solid var(--c-border);
  border-radius: var(--r-sm);
  padding: var(--sp-4);
  position: relative;
}
.testimonial::before {
  content: "\201C";
  position: absolute; top: var(--sp-2); left: var(--sp-3);
  font-family: var(--f-display);
  font-size: 4rem; line-height: 1;
  color: var(--c-amber);
  opacity: 0.15;
  pointer-events: none;
}
.testimonial__quote {
  font-size: var(--fs-base);
  color: var(--c-text);
  line-height: 1.7;
  margin-bottom: var(--sp-3);
  font-style: italic;
}
.testimonial__author {
  display: flex; align-items: center; gap: var(--sp-2);
}
.testimonial__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c-amber), var(--c-coral));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-display); font-weight: 700; color: #fff;
  flex-shrink: 0;
}
.testimonial__name { font-weight: 600; color: var(--c-cream); font-size: var(--fs-sm); }
.testimonial__handle { font-size: var(--fs-xs); color: var(--c-muted); }

/* ── TRUST BAR (platform logos) ──────────────────────────── */
.trust-bar {
  padding: var(--sp-5) 0;
  background: var(--c-bg-2);
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
}
.trust-bar__inner {
  display: flex; align-items: center;
  justify-content: center; gap: var(--sp-5);
  flex-wrap: wrap;
}
.trust-bar__label {
  font-family: var(--f-display);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-muted-2);
}
.trust-bar__item {
  display: flex; align-items: center; gap: var(--sp-1);
  color: var(--c-muted);
  font-size: var(--fs-sm);
  font-weight: 500;
  padding: var(--sp-1) var(--sp-2);
  transition: color var(--t-fast);
}
.trust-bar__item:hover { color: var(--c-cream); }
.trust-bar__item svg { width: 24px; height: 24px; opacity: 0.7; }
.trust-bar__item:hover svg { opacity: 1; }

/* ── STAT CARDS ──────────────────────────────────────────── */
.stat-card {
  background: var(--c-bg-3);
  border: 1px solid var(--c-border);
  border-radius: var(--r-sm);
  padding: var(--sp-4);
  text-align: center;
  transition: transform var(--t-base), box-shadow var(--t-base);
}
.stat-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}
.stat-card__value {
  font-family: var(--f-display);
  font-size: var(--fs-4xl);
  font-weight: 700;
  color: var(--c-amber);
  line-height: 1;
  margin-bottom: var(--sp-1);
}
.stat-card__label {
  font-size: var(--fs-sm);
  color: var(--c-muted);
}

/* ── FINAL CTA ───────────────────────────────────────────── */
.final-cta {
  padding: var(--sp-6) 0;
  background: linear-gradient(135deg, var(--c-coral) 0%, #ba2a1b 100%);
}
.final-cta__title { margin-bottom: var(--sp-2); color: #fff; }
.final-cta__copy {
  max-width: 480px; margin: 0 auto var(--sp-4); color: rgba(255,255,255,0.85);
}

/* ── FORMS ───────────────────────────────────────────────── */
.form-group { margin-bottom: var(--sp-3); }
.form-label {
  display: block;
  font-family: var(--f-display);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-cream-2);
  margin-bottom: var(--sp-1);
}
.form-label .req { color: var(--c-coral); margin-left: 2px; }
.form-input, .form-textarea, .form-select {
  width: 100%;
  padding: 14px var(--sp-2);
  border-radius: var(--r-sm);
  border: 1px solid var(--c-border);
  background: var(--c-bg-3);
  color: var(--c-cream);
  font-size: var(--fs-base);
  outline: none;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
  appearance: none;
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--c-muted); }
.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: var(--c-amber);
  box-shadow: 0 0 0 3px rgba(245,166,35,0.12);
}
.form-input.has-error, .form-textarea.has-error { border-color: var(--c-coral); }
.form-textarea { min-height: 130px; resize: vertical; }
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239A9090' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}
.form-error {
  font-size: var(--fs-xs); color: var(--c-coral);
  margin-top: 4px; display: none;
}
.form-error.is-visible { display: block; }
.form-hint { font-size: var(--fs-xs); color: var(--c-muted); margin-top: var(--sp-1); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-3); }
.form-success {
  display: none; text-align: center;
  padding: var(--sp-5) var(--sp-3);
  background: var(--c-bg-3);
  border-radius: var(--r-sm);
  border: 1px solid var(--c-border-warm);
}
.form-success .success-icon { font-size: 3rem; margin-bottom: var(--sp-3); }

/* ── VIDEO EMBED ─────────────────────────────────────────── */
.video-wrap {
  position: relative; aspect-ratio: 16/9;
  background: #000; border-radius: var(--r-sm); overflow: hidden;
}
.video-wrap iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%; border: none;
}

/* ── SECTION HEADERS VARIANTS ────────────────────────────── */
.page-hero {
  padding: calc(var(--nav-h) + var(--sp-5)) 0 var(--sp-5);
  background: linear-gradient(180deg, #161616 0%, var(--c-bg) 100%);
}
.page-hero--center { text-align: center; }
.page-hero--center p { max-width: 540px; margin: var(--sp-3) auto 0; }

/* ── BREADCRUMB ──────────────────────────────────────────── */
.breadcrumb {
  display: flex; align-items: center; gap: var(--sp-1);
  font-size: var(--fs-xs); color: var(--c-muted);
  margin-bottom: var(--sp-3); flex-wrap: wrap;
}
.breadcrumb a { color: var(--c-amber); transition: opacity var(--t-fast); }
.breadcrumb a:hover { opacity: 0.75; }

/* ── SHARE BUTTONS ───────────────────────────────────────── */
.share-btn {
  display: inline-flex; align-items: center; gap: var(--sp-1);
  padding: 10px var(--sp-2); border-radius: var(--r-sm);
  border: 1px solid var(--c-border);
  background: transparent; color: var(--c-muted);
  font-size: var(--fs-sm); transition: all var(--t-fast);
}
.share-btn:hover { border-color: var(--c-amber); color: var(--c-amber); }

/* ── TAGS ────────────────────────────────────────────────── */
.tag {
  display: inline-block; padding: 4px 10px;
  border-radius: var(--r-full);
  background: rgba(245,166,35,0.12);
  color: var(--c-amber);
  font-size: var(--fs-xs); font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.06em;
}
.tag--coral {
  background: rgba(232,65,42,0.12); color: var(--c-coral);
}
.tag--muted { background: var(--c-bg-3); color: var(--c-muted); }

/* ── TRANSCRIPT ──────────────────────────────────────────── */
.transcript-toggle {
  width: 100%; display: flex; align-items: center;
  justify-content: space-between; padding: var(--sp-2) var(--sp-3);
  background: var(--c-bg-3); border: 1px solid var(--c-border);
  border-radius: var(--r-sm); color: var(--c-cream);
  font-family: var(--f-display); font-weight: 600;
  font-size: var(--fs-sm); cursor: pointer;
  transition: border-color var(--t-fast);
}
.transcript-toggle:hover { border-color: var(--c-amber); }
.transcript-toggle .arrow { font-size: 0.7rem; transition: transform var(--t-base); }
.transcript-toggle[aria-expanded="true"] .arrow { transform: rotate(180deg); }
.transcript-body {
  display: none; padding: var(--sp-3);
  background: var(--c-bg-3); border: 1px solid var(--c-border);
  border-top: none; border-radius: 0 0 var(--r-sm) var(--r-sm);
  font-size: var(--fs-sm); color: var(--c-muted);
  line-height: 1.8; max-height: 400px; overflow-y: auto;
}
.transcript-body.is-open { display: block; }

/* ── FILTER / SEARCH ─────────────────────────────────────── */
.search-wrap { position: relative; max-width: 560px; }
.search-wrap svg {
  position: absolute; left: 14px; top: 50%;
  transform: translateY(-50%); color: var(--c-muted); pointer-events: none;
}
.search-input {
  width: 100%;
  padding: 14px var(--sp-2) 14px 44px;
  border-radius: var(--r-sm);
  border: 1px solid var(--c-border);
  background: var(--c-bg-3);
  color: var(--c-cream);
  font-size: var(--fs-base);
  outline: none;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.search-input::placeholder { color: var(--c-muted); }
.search-input:focus {
  border-color: var(--c-amber);
  box-shadow: 0 0 0 3px rgba(245,166,35,0.10);
}
.filter-tabs { display: flex; gap: var(--sp-1); flex-wrap: wrap; }
.filter-tab {
  padding: 8px var(--sp-2);
  border-radius: var(--r-full);
  border: 1px solid var(--c-border);
  background: transparent; color: var(--c-muted);
  font-size: var(--fs-sm); font-weight: 500;
  cursor: pointer; transition: all var(--t-fast);
}
.filter-tab:hover { border-color: var(--c-amber); color: var(--c-amber); }
.filter-tab.is-active { background: var(--c-amber); color: var(--c-bg); border-color: var(--c-amber); font-weight: 700; }

/* ── FOOTER ──────────────────────────────────────────────── */
.footer {
  background: #0a0a0a;
  border-top: 1px solid var(--c-border);
  padding: var(--sp-6) 0 var(--sp-3);
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: var(--sp-5);
  margin-bottom: var(--sp-5);
}
.footer__logo { display: flex; align-items: center; gap: var(--sp-2); line-height: 0; margin-bottom: var(--sp-2); }
.footer__logo-img { height: 52px; width: 52px; object-fit: cover; border-radius: 50%; display: block; }
.footer__logo-text {
  font-family: var(--f-display);
  font-size: var(--fs-lg);
  font-weight: 700;
  color: var(--c-cream);
  letter-spacing: -0.01em;
}
.footer__tagline {
  font-size: var(--fs-sm);
  color: var(--c-muted);
  margin-bottom: var(--sp-3);
}
.footer__desc {
  font-size: var(--fs-sm);
  color: var(--c-muted-2);
  line-height: 1.7;
  margin-bottom: var(--sp-3);
  max-width: 360px;
}
.footer__socials {
  display: flex; gap: var(--sp-1);
}
.footer__socials a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--c-bg-3);
  border: 1px solid var(--c-border);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; color: var(--c-muted);
  transition: all var(--t-fast);
}
.footer__socials a:hover {
  background: var(--c-amber); color: var(--c-bg); border-color: var(--c-amber);
}
.footer__col-title {
  font-family: var(--f-display); font-size: var(--fs-xs);
  font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--c-amber);
  margin-bottom: var(--sp-2);
}
.footer__links {
  display: flex; flex-direction: column; gap: var(--sp-1);
}
.footer__links a {
  font-size: var(--fs-sm); color: var(--c-muted);
  transition: color var(--t-fast);
}
.footer__links a:hover { color: var(--c-cream); }
.footer__nl input {
  width: 100%;
  padding: 11px var(--sp-2);
  border-radius: var(--r-sm);
  border: 1px solid var(--c-border);
  background: var(--c-bg-3);
  color: var(--c-cream);
  font-size: var(--fs-sm);
  outline: none;
  margin-bottom: var(--sp-1);
  transition: border-color var(--t-fast);
}
.footer__nl input:focus { border-color: var(--c-amber); }
.footer__nl input::placeholder { color: var(--c-muted); }
.footer__note, .footer__email { font-size: var(--fs-sm); color: var(--c-muted); }
.footer__fineprint { font-size: var(--fs-xs); color: var(--c-muted-2); }
.footer__bottom {
  padding-top: var(--sp-3);
  border-top: 1px solid var(--c-border);
  display: flex; align-items: center;
  justify-content: space-between;
  font-size: var(--fs-xs); color: var(--c-muted); flex-wrap: wrap; gap: var(--sp-1);
}
.footer__bottom a { color: var(--c-muted); transition: color var(--t-fast); }
.footer__bottom a:hover { color: var(--c-amber); }

/* ── NOTICE ──────────────────────────────────────────────── */
.notice {
  padding: var(--sp-2) var(--sp-3);
  border-radius: var(--r-sm);
  border-left: 3px solid var(--c-amber);
  background: rgba(245,166,35,0.08);
  font-size: var(--fs-sm); color: var(--c-muted);
}
.notice strong { color: var(--c-amber); }

/* ── SIDEBAR ─────────────────────────────────────────────── */
.sidebar-sticky { position: sticky; top: calc(var(--nav-h) + var(--sp-3)); }

/* ── FAQ ─────────────────────────────────────────────────── */
.faq-item { border-bottom: 1px solid var(--c-border); }
.faq-question {
  width: 100%; display: flex; align-items: center;
  justify-content: space-between; padding: var(--sp-3) 0;
  font-family: var(--f-display); font-weight: 600;
  font-size: var(--fs-base); color: var(--c-cream);
  cursor: pointer; text-align: left; background: none;
  transition: color var(--t-fast);
}
.faq-question:hover { color: var(--c-amber); }
.faq-question .faq-icon {
  font-size: 1.2rem; flex-shrink: 0;
  transition: transform var(--t-base); color: var(--c-amber);
}
.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }
.faq-answer { display: none; padding-bottom: var(--sp-3); }
.faq-answer.is-open { display: block; }
.faq-answer p { font-size: var(--fs-sm); }

/* ── DIVIDER ─────────────────────────────────────────────── */
.divider { height: 1px; background: var(--c-border); margin: var(--sp-5) 0; }

/* ── COMMUNITY CAROUSEL ──────────────────────────────────── */
.carousel {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1), transform 0.7s cubic-bezier(0.16,1,0.3,1);
}
.carousel--visible {
  opacity: 1;
  transform: translateY(0);
}
.carousel__viewport {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: #181818;
  aspect-ratio: 16 / 9;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35), 0 0 0 1px rgba(255,255,255,0.04);
}
.carousel__track {
  display: flex;
  height: 100%;
  transition: transform 0.55s cubic-bezier(0.16,1,0.3,1);
  will-change: transform;
}
.carousel__slide {
  flex: 0 0 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #181818;
  cursor: pointer;
}
.carousel__slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
}
/* Prev / Next buttons */
.carousel__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(0,0,0,0.45);
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 1.6rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.22s ease, transform 0.22s ease;
  z-index: 2;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.carousel__btn:hover {
  background: rgba(245,166,35,0.85);
  transform: translateY(-50%) scale(1.06);
}
.carousel__btn:active {
  transform: translateY(-50%) scale(0.95);
}
.carousel__btn--prev { left: 16px; }
.carousel__btn--next { right: 16px; }
/* Counter */
.carousel__counter {
  text-align: center;
  font-size: var(--fs-sm);
  color: var(--c-muted);
  margin-top: 10px;
  font-variant-numeric: tabular-nums;
}

@media (max-width: 768px) {
  .carousel__btn { width: 36px; height: 36px; font-size: 1.3rem; }
  .carousel__btn--prev { left: 10px; }
  .carousel__btn--next { right: 10px; }
}
@media (max-width: 560px) {
  .carousel__btn { width: 32px; height: 32px; font-size: 1.1rem; }
  .carousel__btn--prev { left: 6px; }
  .carousel__btn--next { right: 6px; }

}

/* ── GALLERY ─────────────────────────────────────────────── */
.gallery-item {
  border-radius: var(--r-sm); overflow: hidden;
  border: 1px solid var(--c-border);
  background: var(--c-bg-2);
  cursor: pointer;
  transition: border-color var(--t-base), transform var(--t-base);
}
.gallery-item:hover, .gallery-item:focus-visible {
  border-color: var(--c-amber); transform: translateY(-4px);
}
.lightbox {
  position: fixed; inset: 0; background: rgba(0,0,0,0.92);
  z-index: 10000; display: flex; align-items: center; justify-content: center;
}
.lightbox__img { max-width: 92vw; max-height: 88vh; object-fit: contain; border-radius: var(--r-sm); }
.lightbox__close, .lightbox__prev, .lightbox__next {
  position: absolute; background: rgba(0,0,0,0.5);
  color: #fff; border: none; cursor: pointer;
  font-size: 2rem; padding: 8px 18px;
  border-radius: var(--r-sm); transition: background var(--t-fast); line-height: 1; z-index: 1;
}
.lightbox__close:hover, .lightbox__prev:hover, .lightbox__next:hover { background: rgba(245,166,35,0.6); }
.lightbox__close { top: 16px; right: 16px; font-size: 2.5rem; }
.lightbox__prev { left: 16px; top: 50%; transform: translateY(-50%); }
.lightbox__next { right: 16px; top: 50%; transform: translateY(-50%); }
.lightbox__counter {
  position: absolute; bottom: 24px; left: 50%;
  transform: translateX(-50%); color: #fff; font-size: var(--fs-sm);
  background: rgba(0,0,0,0.6); padding: 4px 14px; border-radius: var(--r-full);
}

/* ── ACCESSIBILITY ───────────────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--c-amber);
  outline-offset: 3px;
  border-radius: var(--r-sm);
}
a:focus-visible, button:focus-visible { border-radius: var(--r-sm); }

/* Ensure sufficient color contrast for WCAG AA */
/* Amber (#F5A623) on dark backgrounds - already passes AA */
/* Coral (#E8412A) on white backgrounds - ensure text is white */
.btn--primary {
  background: linear-gradient(135deg, var(--c-coral) 0%, #f47a3d 100%);
  color: #fff; /* White text on coral - passes WCAG AA */
}
.btn--primary:hover {
  background: linear-gradient(135deg, var(--c-coral-dk) 0%, #e0692f 100%);
  color: #fff;
}

/* Ensure muted text has sufficient contrast */
.text-muted {
  color: var(--c-muted); /* #B8B2A7 - check contrast on #111111 background */
  /* Contrast ratio: 4.5:1 - passes WCAG AA for normal text */
}

/* ── REDUCED MOTION ──────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: var(--sp-4); }
  .featured-card { grid-template-columns: 1fr; }
  .featured-card__thumb { aspect-ratio: 16/9; }
}

@media (max-width: 768px) {
  .nav__links, .nav__cta { display: none; }
  .nav__toggle { display: flex; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-2 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .section { padding: var(--sp-5) 0; }
  .eyebrow { margin-bottom: 4px; }
  .split-layout { grid-template-columns: 1fr; gap: var(--sp-4); }
  .section-hdr--row { 
    align-items: flex-start !important; 
    flex-direction: column; 
    gap: var(--sp-2); 
  }
  .platform-bar__inner { justify-content: flex-start; }
  .platform-pill { 
    flex: 1 1 calc(50% - var(--sp-2)); 
    justify-content: center; 
  }
  .sponsor-panel, .signup-panel { padding: var(--sp-3); }
  .page-hero { padding: calc(var(--nav-h) + var(--sp-4)) 0 var(--sp-4); }
  .trust-bar__inner { gap: var(--sp-3); }
  .sticky-cta:not(.sticky-cta--home) { display: block; }
  body:not(.page-home) .footer { padding-bottom: calc(var(--sp-3) + 70px); }
}

@media (max-width: 560px) {
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: var(--sp-4); }
  h1 { font-size: 2rem; }
  .container { padding: 0 var(--sp-2); }
  .icon-grid { grid-template-columns: 1fr; }
  .footer__bottom { 
    flex-direction: column; 
    text-align: center; 
  }
}


/* ── PRELOAD HERO BACKGROUND ─────────────────────────────── */
@media (prefers-reduced-data: reduce) {
  .hero {
    background: var(--c-bg);
  }
}