/* ── Channable Agency Day 2026 — Landing Page ─────────────────────── */
/* Design system ported from PPC Mastery slide-builder               */

/* ── Custom Properties ────────────────────────────────────────────── */

:root {
  --bg-dark: #0A060E;
  --bg-gradient: linear-gradient(135deg, #06030F 0%, #0A0828 30%, #0E0D3A 65%, #131245 100%);
  --accent: #2F5BFF;
  --accent-dark: #0C57BD;
  --orange: #F48C06;
  --text-white: #FFFFFF;
  --text-light: #DFDFDF;
  --text-muted: #949EAF;
  --glass-bg: rgba(16, 14, 60, 0.75);
  --glass-border: 1px solid rgba(47, 91, 255, 0.25);
  --gradient-text: linear-gradient(90deg, #FFF 0%, #FFF 60%, #A5B4FC 100%);
  --blob-blue: rgba(47, 91, 255, 0.15);
  --blob-orange: rgba(244, 140, 6, 0.12);
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 16px;
  --r-xl: 24px;
  --font: 'Geist', 'Geist Sans', system-ui, -apple-system, sans-serif;
}

/* ── Reset ────────────────────────────────────────────────────────── */

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  font-family: var(--font);
  color: var(--text-white);
  background: var(--bg-dark);
  line-height: 1.5;
  overflow-x: hidden;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ── Container ────────────────────────────────────────────────────── */

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ── Section ──────────────────────────────────────────────────────── */

.section {
  padding: 64px 0;
  position: relative;
}

.section--alt {
  background: rgba(12, 10, 62, 0.3);
}

.section__title {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  text-align: center;
}

.section__label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 4px;
}

.section__subtitle {
  text-align: center;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto 40px;
}

/* ── Section Divider ─────────────────────────────────────────────── */

.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(47, 91, 255, 0.3) 20%, rgba(244, 140, 6, 0.2) 80%, transparent);
}

/* ── Label ────────────────────────────────────────────────────────── */

.label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}

.label--orange {
  color: var(--orange);
}

/* ── Blur Blobs ───────────────────────────────────────────────────── */

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
}

.blob--blue { background: var(--blob-blue); }
.blob--orange { background: var(--blob-orange); }
.blob--sm { width: 150px; height: 150px; }
.blob--md { width: 300px; height: 300px; }
.blob--lg { width: 500px; height: 500px; }

/* ── Card ─────────────────────────────────────────────────────────── */

.card {
  background: var(--glass-bg);
  border: var(--glass-border);
  border-radius: var(--r-lg);
  overflow: hidden;
}

/* ── Button ───────────────────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--r-sm);
  font-size: 15px;
  font-weight: 600;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
  white-space: nowrap;
}

.btn:active {
  transform: scale(0.97);
}

.btn--accent {
  background: var(--accent);
  color: #fff;
}

.btn--accent:hover {
  background: #3d66ff;
  box-shadow: 0 4px 20px rgba(47, 91, 255, 0.35);
}

.btn--orange {
  background: var(--orange);
  color: #fff;
}

.btn--orange:hover {
  background: #ffa02e;
  box-shadow: 0 4px 20px rgba(244, 140, 6, 0.35);
}

.btn--sm {
  padding: 8px 18px;
  font-size: 13px;
}

/* ════════════════════════════════════════════════════════════════════
   NAV
   ════════════════════════════════════════════════════════════════════ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10, 6, 14, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(47, 91, 255, 0.12);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
}

.nav__logo img {
  display: block;
  width: 36px;
  height: 36px;
  border-radius: 8px;
}

.nav__center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  white-space: nowrap;
  pointer-events: none;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.15s;
  white-space: nowrap;
}

.nav__link:hover {
  color: var(--text-white);
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 6px;
}

.nav__hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text-muted);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.nav__hamburger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav__hamburger.is-open span:nth-child(2) {
  opacity: 0;
}

.nav__hamburger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 767px) {
  .nav__center {
    display: none;
  }

  .nav__hamburger {
    display: flex;
  }

  .nav__links {
    display: none;
    position: absolute;
    top: 56px;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: rgba(10, 6, 14, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(47, 91, 255, 0.12);
    padding: 8px 0;
  }

  .nav__links.is-open {
    display: flex;
  }

  .nav__link {
    padding: 14px 20px;
    font-size: 15px;
    width: 100%;
  }

  .nav__link:hover {
    background: rgba(47, 91, 255, 0.08);
  }
}

/* ════════════════════════════════════════════════════════════════════
   COUNTDOWN
   ════════════════════════════════════════════════════════════════════ */

.countdown {
  padding: 48px 0;
  position: relative;
}

.countdown__card {
  position: relative;
  background: var(--glass-bg);
  border: var(--glass-border);
  border-radius: var(--r-xl);
  padding: 40px 24px;
  overflow: hidden;
  text-align: center;
}

.countdown__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(244, 140, 6, 0.12) 0%, rgba(47, 91, 255, 0.08) 50%, transparent 70%);
  pointer-events: none;
  animation: countdown-pulse 4s ease-in-out infinite;
}

@keyframes countdown-pulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.7; }
  50% { transform: translate(-50%, -50%) scale(1.15); opacity: 1; }
}

.countdown__inner {
  position: relative;
  z-index: 1;
}

.countdown__header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 4px;
}

.countdown__icon {
  color: var(--orange);
}

.countdown__label {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--orange);
}

.countdown__sub {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.countdown__digits {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.countdown__unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.countdown__number {
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  min-width: 72px;
  padding: 12px 8px;
  background: rgba(10, 6, 14, 0.6);
  border: 1px solid rgba(47, 91, 255, 0.2);
  border-radius: var(--r-md);
  font-variant-numeric: tabular-nums;
  background: linear-gradient(180deg, rgba(47, 91, 255, 0.08) 0%, rgba(10, 6, 14, 0.6) 100%);
}

.countdown__unit-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.countdown__sep {
  font-size: 36px;
  font-weight: 700;
  color: var(--text-muted);
  opacity: 0.5;
  padding-bottom: 24px;
  animation: blink 1s step-end infinite;
}

@keyframes blink {
  50% { opacity: 0; }
}

.countdown--expired .countdown__number {
  color: var(--orange);
}

.countdown--expired .countdown__sub {
  color: var(--orange);
  font-weight: 600;
}

@media (max-width: 480px) {
  .countdown__number {
    font-size: 32px;
    min-width: 56px;
    padding: 10px 6px;
  }

  .countdown__sep {
    font-size: 24px;
  }

  .countdown__digits {
    gap: 6px;
  }
}

/* ════════════════════════════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════════════════════════════ */

.hero {
  position: relative;
  background: var(--bg-gradient);
  padding: 120px 0 64px;
  overflow: hidden;
  text-align: center;
}

.hero__blob-1 {
  top: -200px;
  left: -150px;
}

.hero__blob-2 {
  bottom: -100px;
  right: -100px;
}

.hero__blob-3 {
  top: 40%;
  right: 10%;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.hero__name {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.03em;
  padding-bottom: 0.1em;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__tagline {
  font-size: 16px;
  font-weight: 400;
  color: var(--text-light);
  line-height: 1.6;
  max-width: 480px;
}

.hero__headshot {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 0 0 3px rgba(47, 91, 255, 0.4), 0 0 40px rgba(47, 91, 255, 0.2);
}

.hero__headshot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* USP Badges */
.hero__usps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 8px;
  max-width: 600px;
}

.usp-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-light);
  background: rgba(16, 14, 60, 0.6);
  border: 1px solid rgba(47, 91, 255, 0.2);
  border-radius: 100px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.usp-badge svg {
  flex-shrink: 0;
  color: var(--accent);
  opacity: 0.8;
}

/* Social Links (compact icon-only) */
.hero__socials {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
}

.hero__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(16, 14, 60, 0.6);
  border: 1px solid rgba(47, 91, 255, 0.2);
  color: var(--text-muted);
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}

.hero__social-link:hover {
  background: rgba(47, 91, 255, 0.15);
  border-color: rgba(47, 91, 255, 0.45);
  color: var(--text-white);
}

.hero__social-link svg {
  flex-shrink: 0;
}

/* ════════════════════════════════════════════════════════════════════
   TALK OVERVIEW (2-col: deck left, copy right)
   ════════════════════════════════════════════════════════════════════ */

.talk-overview {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 48px;
}

.talk-overview__deck {
  flex-shrink: 0;
}

.talk-overview__copy {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.talk-overview__heading {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.talk-overview__desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
}

.talk-overview__points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0;
}

.talk-overview__points li {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.5;
  padding-left: 20px;
  position: relative;
}

.talk-overview__points li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

/* ════════════════════════════════════════════════════════════════════
   SUBSECTION TITLE
   ════════════════════════════════════════════════════════════════════ */

.subsection__title {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
  text-align: center;
  color: var(--text-light);
}

/* ════════════════════════════════════════════════════════════════════
   SLIDE DECKS
   ════════════════════════════════════════════════════════════════════ */

.deck-card {
  display: flex;
  flex-direction: column;
}

.deck-card__thumb {
  aspect-ratio: 16 / 9;
  background: rgba(12, 10, 62, 0.5);
  overflow: hidden;
}

.deck-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.deck-card__embed--spaced {
  margin-bottom: 48px;
}

/* ════════════════════════════════════════════════════════════════════
   PDF VIEWER (PDF.js canvas-based)
   ════════════════════════════════════════════════════════════════════ */

.pdf-viewer {
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--glass-bg);
  border: var(--glass-border);
}

.pdf-viewer__slide {
  background: rgba(12, 10, 62, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
}

.pdf-viewer__canvas {
  display: block;
  width: 100%;
  height: auto;
}

.pdf-viewer__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 10px 16px;
  border-top: 1px solid rgba(47, 91, 255, 0.15);
}

.pdf-viewer__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--r-sm);
  background: rgba(16, 14, 60, 0.6);
  border: 1px solid rgba(47, 91, 255, 0.2);
  color: var(--text-muted);
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
  text-decoration: none;
}

.pdf-viewer__btn:hover {
  background: rgba(47, 91, 255, 0.15);
  border-color: rgba(47, 91, 255, 0.4);
  color: var(--text-white);
}

.pdf-viewer__btn:disabled {
  opacity: 0.3;
  cursor: default;
}

.pdf-viewer__btn:disabled:hover {
  background: rgba(16, 14, 60, 0.6);
  border-color: rgba(47, 91, 255, 0.2);
  color: var(--text-muted);
}

.pdf-viewer__page {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  min-width: 60px;
  text-align: center;
}

.pdf-viewer__download {
  margin-left: auto;
}

/* Download toast notification */
.download-toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  padding: 12px 24px;
  background: rgba(16, 14, 60, 0.95);
  border: 1px solid rgba(47, 91, 255, 0.3);
  border-radius: var(--r-sm);
  color: var(--text-white);
  font-family: var(--font);
  font-size: 14px;
  font-weight: 500;
  z-index: 200;
  pointer-events: none;
  opacity: 0;
  transition: transform 0.3s ease-out, opacity 0.3s ease-out;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.download-toast.is-visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.deck-card__body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.deck-card__title {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.deck-card__desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ════════════════════════════════════════════════════════════════════
   VIDEO GRID
   ════════════════════════════════════════════════════════════════════ */

.video-grid {
  display: grid;
  gap: 20px;
}

.video-grid--2col {
  margin-bottom: 32px;
}

.video-card {
  display: flex;
  flex-direction: column;
}

.video-card__facade {
  position: relative;
  aspect-ratio: 16 / 9;
  background: rgba(12, 10, 62, 0.5);
  overflow: hidden;
  cursor: pointer;
}

.video-card__facade img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.video-card__facade:hover img {
  transform: scale(1.03);
}

.video-card__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  transition: transform 0.2s;
  padding: 0;
}

.video-card__facade:hover .video-card__play {
  transform: translate(-50%, -50%) scale(1.1);
}

/* Video step numbers */
.video-card__step {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  background: rgba(47, 91, 255, 0.85);
  border-radius: 50%;
  z-index: 1;
}

.video-card__title {
  padding: 14px 16px;
  font-size: 15px;
  font-weight: 600;
}

/* Coming soon state */
.video-card--soon {
  opacity: 0.5;
}

.video-card__facade--soon {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: default;
  background: rgba(12, 10, 62, 0.7);
}

.video-card__badge {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 6px 16px;
  border: 1px solid rgba(148, 158, 175, 0.3);
  border-radius: var(--r-sm);
}

/* Locked premium card */
.video-card--locked {
  opacity: 1;
}

.video-card__facade--locked {
  cursor: default;
  background: linear-gradient(135deg, rgba(12, 10, 62, 0.9), rgba(30, 20, 10, 0.7));
  backdrop-filter: blur(4px);
}

.video-card__locked-overlay {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  color: var(--text-white);
}

.video-card__locked-overlay svg {
  color: var(--orange);
  opacity: 0.9;
}

.video-card__locked-title {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

/* Iframe replaces facade */
.video-card__iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: var(--r-lg) var(--r-lg) 0 0;
}

/* ════════════════════════════════════════════════════════════════════
   WAITLIST (inline variant)
   ════════════════════════════════════════════════════════════════════ */

.waitlist--inline {
  position: relative;
  margin-top: 48px;
  padding: 40px 24px;
  background: var(--glass-bg);
  border: var(--glass-border);
  border-radius: var(--r-lg);
  overflow: hidden;
}

.waitlist__blob {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.6;
}

.waitlist__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 520px;
  margin: 0 auto;
}

.waitlist__heading {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.waitlist__sub {
  font-size: 16px;
  font-weight: 500;
  color: var(--accent);
  margin-top: 4px;
}

.waitlist__desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-top: 16px;
}

.waitlist__form {
  margin-top: 28px;
}

.waitlist__input-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.waitlist__input-row .waitlist__btn {
  width: 100%;
  justify-content: center;
}

@media (min-width: 768px) {
  .waitlist__input-row {
    flex-direction: row;
  }

  .waitlist__input-row .waitlist__btn {
    width: auto;
  }
}

.waitlist__input {
  flex: 1;
  padding: 12px 16px;
  border-radius: var(--r-sm);
  border: var(--glass-border);
  background: rgba(10, 6, 14, 0.6);
  color: var(--text-white);
  font-family: var(--font);
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s;
}

.waitlist__input::placeholder {
  color: var(--text-muted);
}

.waitlist__input:focus {
  border-color: var(--accent);
}

.waitlist__btn {
  flex-shrink: 0;
}

.waitlist__btn-loading svg {
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.waitlist__status {
  margin-top: 12px;
  font-size: 14px;
  font-weight: 500;
}

.waitlist__status--success {
  color: #22c55e;
}

.waitlist__status--error {
  color: #ef4444;
}

/* ════════════════════════════════════════════════════════════════════
   RECOMMENDATIONS GRID
   ════════════════════════════════════════════════════════════════════ */

.recs-grid {
  display: grid;
  gap: 24px;
}

.rec-card {
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
}

.rec-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.rec-card--orange {
  border-color: rgba(244, 140, 6, 0.25);
}

.rec-card--blue {
  border-color: rgba(47, 91, 255, 0.25);
}

.rec-card__image {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: rgba(12, 10, 62, 0.5);
}

.rec-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.rec-card:hover .rec-card__image img {
  transform: scale(1.03);
}

.rec-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--r-sm);
  z-index: 1;
}

.rec-card__badge--orange {
  background: var(--orange);
  color: #fff;
}

.rec-card__body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.rec-card__title {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.rec-card__meta {
  font-size: 14px;
  font-weight: 600;
}

.rec-card--orange .rec-card__meta {
  color: var(--orange);
}

.rec-card--blue .rec-card__meta {
  color: var(--accent);
}

.rec-card__desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

.rec-card__body .btn {
  align-self: flex-start;
  margin-top: 4px;
}

/* ════════════════════════════════════════════════════════════════════
   SCROLL FADE-IN ANIMATION
   ════════════════════════════════════════════════════════════════════ */

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ════════════════════════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════════════════════════ */

.footer {
  padding: 32px 0;
  text-align: center;
  border-top: 1px solid rgba(47, 91, 255, 0.1);
}

.footer__text {
  font-size: 13px;
  color: var(--text-muted);
}

/* ════════════════════════════════════════════════════════════════════
   RESPONSIVE — md (768px+)
   ════════════════════════════════════════════════════════════════════ */

@media (min-width: 768px) {
  .hero__event-label {
    display: none;
  }

  .container {
    padding: 0 32px;
  }

  .section {
    padding: 80px 0;
  }

  .section__title {
    font-size: 36px;
    margin-bottom: 12px;
  }

  .section__subtitle {
    margin-bottom: 48px;
  }

  .hero {
    padding: 130px 0 72px;
  }

  .hero__name {
    font-size: 64px;
  }

  .hero__tagline {
    font-size: 17px;
  }

  .hero__headshot {
    width: 96px;
    height: 96px;
  }

  .usp-badge {
    font-size: 13px;
    padding: 7px 16px;
  }

  /* Talk overview: 2-col */
  .talk-overview {
    flex-direction: row;
    gap: 32px;
    align-items: flex-start;
  }

  .talk-overview__deck {
    flex: 0 0 48%;
    max-width: 48%;
  }

  .talk-overview__copy {
    flex: 1;
    padding-top: 4px;
  }

  .video-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .recs-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .waitlist--inline {
    padding: 48px 40px;
  }

  .waitlist__heading {
    font-size: 36px;
  }
}

/* ════════════════════════════════════════════════════════════════════
   RESPONSIVE — lg (1024px+)
   ════════════════════════════════════════════════════════════════════ */

@media (min-width: 1024px) {
  .section {
    padding: 96px 0;
  }

  .hero {
    padding: 140px 0 80px;
  }

  .hero__name {
    font-size: 80px;
  }

  .hero__usps {
    max-width: 700px;
  }

  .talk-overview__deck {
    flex: 0 0 44%;
    max-width: 44%;
  }

  .subsection__title {
    font-size: 22px;
  }
}