/* ==========================================================================
   CLOSING DAILY - Main Stylesheet
   Oklahoma Real Estate Media Website
   ========================================================================== */

/* ==========================================================================
   1. DESIGN TOKENS (CSS Custom Properties)
   ========================================================================== */

:root {
  /* Primary Colors - Oklahoma Themed */
  --navy: #14233C;              /* Sooner Navy - Header, Footer, H1s */
  --navy-dark: #0d1726;
  --navy-light: #1e3356;
  --orange: #C25E00;            /* Red Dirt - CTAs, Links, Highlights */
  --orange-dark: #9e4d00;
  --orange-light: #d97018;

  /* Neutral Colors */
  --limestone: #E5E7EB;         /* Section backgrounds - cool grey-white */
  --limestone-dark: #d1d5db;
  --inkwell: #1F2937;           /* Body text - softer than pure black */
  --paper: #FFFFFF;             /* Article cards, main content */
  --white: #FFFFFF;
  --light-gray: #F3F4F6;
  --border-light: #E5E7EB;
  --text-muted: #6B7280;

  /* Semantic Colors */
  --text-primary: var(--inkwell);
  --text-secondary: var(--text-muted);
  --bg-primary: var(--paper);
  --bg-secondary: var(--limestone);
  --bg-dark: var(--navy);
  --accent: var(--orange);

  /* Legacy aliases for compatibility */
  --cream: var(--paper);
  --cream-dark: var(--limestone);
  --charcoal: var(--inkwell);

  /* Spacing Scale (8px base) */
  --space-xs: 0.5rem;    /* 8px */
  --space-sm: 0.75rem;   /* 12px */
  --space-md: 1rem;      /* 16px */
  --space-lg: 1.5rem;    /* 24px */
  --space-xl: 2rem;      /* 32px */
  --space-2xl: 3rem;     /* 48px */
  --space-3xl: 4rem;     /* 64px */
  --space-4xl: 6rem;     /* 96px */
  --space-5xl: 8rem;     /* 128px */

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 24px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.15);

  /* Typography */
  --font-heading: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Font Sizes */
  --text-xs: 0.75rem;    /* 12px */
  --text-sm: 0.875rem;   /* 14px */
  --text-base: 1rem;     /* 16px */
  --text-lg: 1.125rem;   /* 18px */
  --text-xl: 1.25rem;    /* 20px */
  --text-2xl: 1.5rem;    /* 24px */
  --text-3xl: 1.875rem;  /* 30px */
  --text-4xl: 2.25rem;   /* 36px */
  --text-5xl: 3rem;      /* 48px */
  --text-6xl: 3.75rem;   /* 60px */

  /* Line Heights */
  --leading-tight: 1.2;
  --leading-normal: 1.5;
  --leading-relaxed: 1.7;

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;

  /* Container */
  --container-max: 1200px;
  --container-padding: var(--space-lg);
}

/* ==========================================================================
   2. RESET & BASE STYLES
   ========================================================================== */

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

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

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: var(--leading-normal);
  color: var(--text-primary);
  background-color: var(--bg-primary);
}

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

input,
button,
textarea,
select {
  font: inherit;
}

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

ul,
ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: var(--leading-tight);
  color: var(--navy);
}

h1 {
  font-size: var(--text-4xl);
  font-weight: 700;
}

h2 {
  font-size: var(--text-3xl);
  font-weight: 700;
}

h3 {
  font-size: var(--text-2xl);
  font-weight: 600;
}

h4 {
  font-size: var(--text-xl);
  font-weight: 600;
}

p {
  margin-bottom: var(--space-md);
}

p:last-child {
  margin-bottom: 0;
}

strong {
  font-weight: 600;
}

/* ==========================================================================
   3. UTILITY CLASSES
   ========================================================================== */

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

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

.text-center {
  text-align: center;
}

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

.hidden {
  display: none !important;
}

/* ==========================================================================
   4. ACCESSIBILITY
   ========================================================================== */

.skip-link {
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--navy);
  color: var(--white);
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-md);
  z-index: 9999;
  transition: top var(--transition-fast);
}

.skip-link:focus {
  top: var(--space-md);
}

:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
}

/* ==========================================================================
   5. BUTTONS
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  padding: var(--space-sm) var(--space-lg);
  font-family: var(--font-heading);
  font-size: var(--text-base);
  font-weight: 500;
  text-align: center;
  border: 2px solid transparent;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-base);
}

.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Primary Button - Orange */
.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}

.btn-primary:hover:not(:disabled) {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Secondary Button - Navy */
.btn-secondary {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.btn-secondary:hover:not(:disabled) {
  background: var(--navy-dark);
  border-color: var(--navy-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Outline Button */
.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}

.btn-outline:hover:not(:disabled) {
  background: var(--navy);
  color: var(--white);
}

/* Ghost Button (text only) */
.btn-ghost {
  background: transparent;
  color: var(--navy);
  border-color: transparent;
  padding: var(--space-xs) var(--space-sm);
}

.btn-ghost:hover:not(:disabled) {
  color: var(--orange);
}

/* Button Sizes */
.btn-sm {
  padding: var(--space-xs) var(--space-md);
  font-size: var(--text-sm);
}

.btn-lg {
  padding: var(--space-md) var(--space-xl);
  font-size: var(--text-lg);
}

/* Button with Icon */
.btn svg {
  width: 1.25em;
  height: 1.25em;
}

/* ==========================================================================
   6. HEADER & NAVIGATION
   ========================================================================== */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: background var(--transition-base), box-shadow var(--transition-base);
}

.header.scrolled {
  background: rgba(253, 248, 243, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md) 0;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--navy);
}

.logo img {
  height: 40px;
  width: auto;
}

/* Desktop Navigation */
.nav-desktop {
  display: none;
  align-items: center;
  gap: var(--space-xl);
}

.nav-link {
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--navy);
  transition: color var(--transition-fast);
}

.nav-link:hover {
  color: var(--orange);
}

.nav-link.active {
  color: var(--orange);
}

/* Mobile Menu Toggle */
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  transition: all var(--transition-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);
}

/* Mobile Navigation */
.nav-mobile {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 320px;
  height: 100vh;
  background: var(--white);
  box-shadow: var(--shadow-xl);
  padding: var(--space-3xl) var(--space-xl);
  transition: right var(--transition-base);
  z-index: 999;
}

.nav-mobile.active {
  right: 0;
}

.nav-mobile-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.nav-mobile-link {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--navy);
}

.nav-mobile-link:hover {
  color: var(--orange);
}

.nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
  z-index: 998;
}

.nav-backdrop.active {
  opacity: 1;
  visibility: visible;
}

/* Desktop breakpoint */
@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
  }

  .nav-toggle {
    display: none;
  }
}

/* ==========================================================================
   7. HERO SECTION
   ========================================================================== */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: var(--space-5xl) 0 var(--space-3xl);
  background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 150%;
  background: radial-gradient(circle, rgba(211, 84, 0, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  gap: var(--space-2xl);
  align-items: center;
}

.hero-content {
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: var(--space-xs) var(--space-md);
  background: var(--navy);
  color: var(--white);
  font-size: var(--text-sm);
  font-weight: 500;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-lg);
}

.hero-title {
  font-size: var(--text-4xl);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: var(--space-lg);
  line-height: 1.1;
}

.hero-title span {
  color: var(--orange);
}

.hero-subtitle {
  font-size: var(--text-lg);
  color: var(--text-muted);
  margin-bottom: var(--space-xl);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  justify-content: center;
}

.hero-media {
  position: relative;
}

.hero-video-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.hero-video-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.hero-thumbnail {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--navy);
}

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

.hero-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: all var(--transition-base);
}

.hero-play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
  background: var(--orange-dark);
}

.hero-play-btn svg {
  width: 32px;
  height: 32px;
  margin-left: 4px;
}

.hero-video-info {
  padding: var(--space-lg);
}

.hero-episode-label {
  font-size: var(--text-sm);
  color: var(--orange);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-xs);
}

.hero-episode-title {
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--navy);
  margin-bottom: var(--space-xs);
}

.hero-episode-guest {
  font-size: var(--text-sm);
  color: var(--text-muted);
}

@media (min-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
  }

  .hero-content {
    text-align: left;
  }

  .hero-title {
    font-size: var(--text-5xl);
  }

  .hero-subtitle {
    margin-left: 0;
    margin-right: 0;
  }

  .hero-ctas {
    flex-direction: row;
    justify-content: flex-start;
  }
}

@media (min-width: 992px) {
  .hero-title {
    font-size: var(--text-6xl);
  }
}

/* ==========================================================================
   8. SECTION PATTERNS
   ========================================================================== */

.section {
  padding: var(--space-3xl) 0;
}

.section-lg {
  padding: var(--space-4xl) 0;
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-2xl);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.section-badge {
  display: inline-block;
  padding: var(--space-xs) var(--space-md);
  background: rgba(211, 84, 0, 0.1);
  color: var(--orange);
  font-size: var(--text-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-md);
}

.section-title {
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: var(--space-md);
}

.section-subtitle {
  font-size: var(--text-lg);
  color: var(--text-muted);
}

@media (min-width: 768px) {
  .section {
    padding: var(--space-4xl) 0;
  }

  .section-lg {
    padding: var(--space-5xl) 0;
  }

  .section-title {
    font-size: var(--text-4xl);
  }
}

/* ==========================================================================
   9. EPISODE CARDS
   ========================================================================== */

.episodes-grid {
  display: grid;
  gap: var(--space-xl);
}

.episode-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.episode-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.episode-thumbnail {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--navy);
  overflow: hidden;
}

.episode-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.episode-card:hover .episode-thumbnail img {
  transform: scale(1.05);
}

.episode-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  opacity: 0;
  transition: all var(--transition-base);
}

.episode-card:hover .episode-play {
  opacity: 1;
}

.episode-play svg {
  width: 24px;
  height: 24px;
  margin-left: 2px;
}

.episode-content {
  padding: var(--space-lg);
}

.episode-number {
  font-size: var(--text-sm);
  color: var(--orange);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-xs);
}

.episode-title {
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--navy);
  margin-bottom: var(--space-xs);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.episode-guest {
  font-size: var(--text-sm);
  color: var(--text-muted);
}

.episode-meta {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-top: var(--space-md);
  padding-top: var(--space-md);
  border-top: 1px solid var(--border-light);
  font-size: var(--text-sm);
  color: var(--text-muted);
}

.episode-meta svg {
  width: 16px;
  height: 16px;
}

@media (min-width: 640px) {
  .episodes-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .episodes-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* View All Link */
.view-all {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--orange);
  transition: gap var(--transition-base);
}

.view-all:hover {
  gap: var(--space-sm);
}

.view-all svg {
  width: 20px;
  height: 20px;
}

.section-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-xl);
}

.section-header-row .section-title {
  margin-bottom: 0;
}

/* ==========================================================================
   10. NEWSLETTER SECTION
   ========================================================================== */

.newsletter {
  background: var(--navy);
  color: var(--white);
}

.newsletter .section-badge {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.newsletter .section-title {
  color: var(--white);
}

.newsletter .section-subtitle {
  color: rgba(255, 255, 255, 0.7);
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  max-width: 500px;
  margin: 0 auto;
}

.newsletter-input-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.newsletter-input {
  width: 100%;
  padding: var(--space-md) var(--space-lg);
  font-size: var(--text-base);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  transition: all var(--transition-base);
}

.newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.newsletter-input:focus {
  outline: none;
  border-color: var(--orange);
  background: rgba(255, 255, 255, 0.15);
}

.newsletter-btn {
  width: 100%;
}

.newsletter-privacy {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
}

.newsletter-privacy a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: underline;
}

.newsletter-privacy a:hover {
  color: var(--white);
}

@media (min-width: 640px) {
  .newsletter-input-group {
    flex-direction: row;
  }

  .newsletter-btn {
    width: auto;
    flex-shrink: 0;
  }
}

/* ==========================================================================
   11. FOOTER
   ========================================================================== */

.footer {
  background: var(--charcoal);
  color: var(--white);
  padding: var(--space-3xl) 0 var(--space-xl);
}

.footer-inner {
  display: grid;
  gap: var(--space-2xl);
}

.footer-brand {
  max-width: 300px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--space-md);
}

.footer-logo img {
  height: 32px;
  width: auto;
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.7);
  font-size: var(--text-sm);
  margin-bottom: var(--space-lg);
}

.footer-social {
  display: flex;
  gap: var(--space-md);
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  color: var(--white);
  transition: all var(--transition-base);
}

.footer-social a:hover {
  background: var(--orange);
  transform: translateY(-2px);
}

.footer-social svg {
  width: 20px;
  height: 20px;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
}

.footer-nav-title {
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--white);
  margin-bottom: var(--space-md);
}

.footer-nav-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer-nav-link {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition-fast);
}

.footer-nav-link:hover {
  color: var(--orange);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  padding-top: var(--space-xl);
  margin-top: var(--space-xl);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.5);
}

.footer-supporter {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.5);
}

.footer-supporter a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: underline;
}

.footer-supporter a:hover {
  color: var(--white);
}

@media (min-width: 768px) {
  .footer-inner {
    grid-template-columns: 1.5fr 1fr;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

@media (min-width: 992px) {
  .footer-inner {
    grid-template-columns: 1.5fr 2fr;
  }

  .footer-nav {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ==========================================================================
   12. FORMS
   ========================================================================== */

.form-group {
  margin-bottom: var(--space-lg);
}

.form-label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--navy);
  margin-bottom: var(--space-xs);
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: var(--space-sm) var(--space-md);
  font-size: var(--text-base);
  border: 2px solid var(--border-light);
  border-radius: var(--radius-md);
  background: var(--white);
  color: var(--text-primary);
  transition: all var(--transition-base);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(211, 84, 0, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-muted);
}

.form-textarea {
  min-height: 150px;
  resize: vertical;
}

.form-hint {
  font-size: var(--text-sm);
  color: var(--text-muted);
  margin-top: var(--space-xs);
}

.form-error {
  font-size: var(--text-sm);
  color: #e74c3c;
  margin-top: var(--space-xs);
}

/* ==========================================================================
   13. ANIMATIONS
   ========================================================================== */

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

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

/* Stagger children */
.fade-in-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-stagger.is-visible > *:nth-child(1) { transition-delay: 0ms; opacity: 1; transform: translateY(0); }
.fade-in-stagger.is-visible > *:nth-child(2) { transition-delay: 100ms; opacity: 1; transform: translateY(0); }
.fade-in-stagger.is-visible > *:nth-child(3) { transition-delay: 200ms; opacity: 1; transform: translateY(0); }
.fade-in-stagger.is-visible > *:nth-child(4) { transition-delay: 300ms; opacity: 1; transform: translateY(0); }

/* ==========================================================================
   14. PAGE-SPECIFIC: ABOUT
   ========================================================================== */

.about-hero {
  background: var(--limestone);
  color: var(--navy);
  padding: var(--space-5xl) 0 var(--space-3xl);
}

.about-hero .section-title {
  color: var(--navy);
}

.about-content {
  display: grid;
  gap: var(--space-2xl);
}

.about-text {
  font-size: var(--text-lg);
  line-height: var(--leading-relaxed);
}

.about-text p {
  margin-bottom: var(--space-lg);
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
}

.about-stat {
  text-align: center;
  padding: var(--space-lg);
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.about-stat-value {
  font-family: var(--font-heading);
  font-size: var(--text-4xl);
  font-weight: 700;
  color: var(--orange);
}

.about-stat-label {
  font-size: var(--text-sm);
  color: var(--text-muted);
  margin-top: var(--space-xs);
}

@media (min-width: 768px) {
  .about-content {
    grid-template-columns: 2fr 1fr;
  }

  .about-stats {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   15. PAGE-SPECIFIC: RESOURCES
   ========================================================================== */

.resources-section {
  margin-bottom: var(--space-3xl);
}

.resources-section:last-child {
  margin-bottom: 0;
}

.resources-section-title {
  font-size: var(--text-2xl);
  color: var(--navy);
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-sm);
  border-bottom: 2px solid var(--border-light);
}

.resource-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  margin-bottom: var(--space-md);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.resource-card:hover {
  box-shadow: var(--shadow-md);
}

.resource-card:last-child {
  margin-bottom: 0;
}

.resource-name {
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--navy);
  margin-bottom: var(--space-xs);
}

.resource-description {
  color: var(--text-muted);
  margin-bottom: var(--space-md);
}

.resource-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  font-weight: 500;
  color: var(--orange);
}

.resource-link:hover {
  text-decoration: underline;
}

.resource-link svg {
  width: 16px;
  height: 16px;
}

/* ==========================================================================
   16. PAGE-SPECIFIC: CONTACT
   ========================================================================== */

.contact-grid {
  display: grid;
  gap: var(--space-2xl);
}

.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  box-shadow: var(--shadow-md);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.contact-item {
  display: flex;
  gap: var(--space-md);
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: rgba(211, 84, 0, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  flex-shrink: 0;
}

.contact-icon svg {
  width: 24px;
  height: 24px;
}

.contact-item-title {
  font-weight: 600;
  color: var(--navy);
  margin-bottom: var(--space-xs);
}

.contact-item-text {
  color: var(--text-muted);
  font-size: var(--text-sm);
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 1.5fr 1fr;
  }
}

/* ==========================================================================
   17. PAGE-SPECIFIC: EPISODE SINGLE
   ========================================================================== */

.episode-hero {
  background: var(--navy);
  color: var(--white);
  padding: var(--space-5xl) 0 var(--space-2xl);
}

.episode-breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: var(--space-lg);
}

.episode-breadcrumb a {
  color: rgba(255, 255, 255, 0.7);
}

.episode-breadcrumb a:hover {
  color: var(--white);
}

.episode-hero-number {
  color: var(--orange);
  font-weight: 600;
  margin-bottom: var(--space-sm);
}

.episode-hero-title {
  font-size: var(--text-3xl);
  color: var(--white);
  margin-bottom: var(--space-md);
}

.episode-hero-guest {
  font-size: var(--text-lg);
  color: rgba(255, 255, 255, 0.7);
}

.episode-video-wrapper {
  margin-top: calc(var(--space-2xl) * -1);
  margin-bottom: var(--space-2xl);
}

.episode-video {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  background: var(--charcoal);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.episode-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.episode-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin-bottom: var(--space-2xl);
}

.episode-body {
  display: grid;
  gap: var(--space-2xl);
}

.episode-main {
  order: 2;
}

.episode-sidebar {
  order: 1;
}

.episode-section {
  margin-bottom: var(--space-2xl);
}

.episode-section:last-child {
  margin-bottom: 0;
}

.episode-section-title {
  font-size: var(--text-xl);
  color: var(--navy);
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: 2px solid var(--border-light);
}

.episode-takeaways {
  list-style: none;
}

.episode-takeaway {
  position: relative;
  padding-left: var(--space-xl);
  margin-bottom: var(--space-md);
}

.episode-takeaway:last-child {
  margin-bottom: 0;
}

.episode-takeaway::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 8px;
  height: 8px;
  background: var(--orange);
  border-radius: 50%;
}

.episode-guest-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
}

.episode-guest-photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: var(--space-md);
}

.episode-guest-name {
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--navy);
  margin-bottom: var(--space-xs);
}

.episode-guest-title {
  font-size: var(--text-sm);
  color: var(--text-muted);
  margin-bottom: var(--space-md);
}

.episode-guest-bio {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  margin-bottom: var(--space-md);
}

.episode-guest-links {
  display: flex;
  gap: var(--space-sm);
}

.episode-guest-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--light-gray);
  border-radius: var(--radius-md);
  color: var(--navy);
  transition: all var(--transition-base);
}

.episode-guest-link:hover {
  background: var(--orange);
  color: var(--white);
}

.episode-guest-link svg {
  width: 18px;
  height: 18px;
}

@media (min-width: 768px) {
  .episode-hero-title {
    font-size: var(--text-4xl);
  }

  .episode-body {
    grid-template-columns: 2fr 1fr;
  }

  .episode-main {
    order: 1;
  }

  .episode-sidebar {
    order: 2;
  }
}

/* ==========================================================================
   18. EPISODES ARCHIVE
   ========================================================================== */

.episodes-header {
  background: var(--navy);
  color: var(--white);
  padding: var(--space-5xl) 0 var(--space-3xl);
}

.episodes-header .section-title {
  color: var(--white);
}

.episodes-header .section-subtitle {
  color: rgba(255, 255, 255, 0.7);
}

.episodes-list {
  margin-top: calc(var(--space-2xl) * -1);
}

/* ==========================================================================
   19. PARTNER PAGE
   ========================================================================== */

.partner-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
  margin-bottom: var(--space-2xl);
}

.partner-stat {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.partner-stat-value {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--orange);
}

.partner-stat-label {
  font-size: var(--text-sm);
  color: var(--text-muted);
  margin-top: var(--space-xs);
}

.partner-opportunities {
  display: grid;
  gap: var(--space-lg);
}

.partner-opportunity {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-sm);
}

.partner-opportunity-title {
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--navy);
  margin-bottom: var(--space-sm);
}

.partner-opportunity-description {
  color: var(--text-muted);
}

@media (min-width: 768px) {
  .partner-stats {
    grid-template-columns: repeat(4, 1fr);
  }

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

/* ==========================================================================
   20. LEGAL PAGES
   ========================================================================== */

.legal-content {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  box-shadow: var(--shadow-sm);
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h1 {
  font-size: var(--text-3xl);
  margin-bottom: var(--space-lg);
}

.legal-content h2 {
  font-size: var(--text-xl);
  margin-top: var(--space-xl);
  margin-bottom: var(--space-md);
}

.legal-content p {
  margin-bottom: var(--space-md);
  color: var(--text-secondary);
}

.legal-content ul,
.legal-content ol {
  margin-bottom: var(--space-md);
  padding-left: var(--space-xl);
}

.legal-content li {
  margin-bottom: var(--space-sm);
  color: var(--text-secondary);
}

.legal-content ul li {
  list-style: disc;
}

.legal-content ol li {
  list-style: decimal;
}

.legal-updated {
  font-size: var(--text-sm);
  color: var(--text-muted);
  margin-top: var(--space-xl);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--border-light);
}

@media (min-width: 768px) {
  .legal-content {
    padding: var(--space-2xl);
  }
}

/* ==========================================================================
   21. THANK YOU PAGE
   ========================================================================== */

.thank-you {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-2xl);
}

.thank-you-content {
  max-width: 500px;
}

.thank-you-icon {
  width: 80px;
  height: 80px;
  background: rgba(211, 84, 0, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-xl);
  color: var(--orange);
}

.thank-you-icon svg {
  width: 40px;
  height: 40px;
}

.thank-you-title {
  font-size: var(--text-3xl);
  color: var(--navy);
  margin-bottom: var(--space-md);
}

.thank-you-text {
  color: var(--text-muted);
  margin-bottom: var(--space-xl);
}

/* ==========================================================================
   22. FAQ ACCORDION
   ========================================================================== */

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  padding: var(--space-lg);
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
}

.faq-question h3 {
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--navy);
}

.faq-toggle {
  width: 32px;
  height: 32px;
  background: var(--light-gray);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  flex-shrink: 0;
  transition: all var(--transition-base);
}

.faq-question[aria-expanded="true"] .faq-toggle {
  background: var(--orange);
  color: var(--white);
  transform: rotate(45deg);
}

.faq-toggle svg {
  width: 16px;
  height: 16px;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-base);
}

.faq-question[aria-expanded="true"] + .faq-answer {
  max-height: 500px;
}

.faq-answer-inner {
  padding: 0 var(--space-lg) var(--space-lg);
  color: var(--text-secondary);
}

/* ==========================================================================
   23. EPISODE PAGES
   ========================================================================== */

/* Episode Hero */
.episode-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  padding: var(--space-4xl) 0 var(--space-2xl);
  color: var(--white);
}

.episode-meta {
  display: flex;
  gap: var(--space-md);
  align-items: center;
  margin-bottom: var(--space-md);
  font-size: var(--text-sm);
}

.episode-number {
  background: var(--orange);
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--radius-full);
  font-weight: 600;
}

.episode-date {
  opacity: 0.8;
}

.episode-title {
  font-size: var(--text-4xl);
  font-weight: 700;
  line-height: var(--leading-tight);
  margin: 0;
}

@media (max-width: 768px) {
  .episode-hero {
    padding: var(--space-3xl) 0 var(--space-xl);
  }

  .episode-title {
    font-size: var(--text-2xl);
  }
}

/* Video Section */
.episode-video {
  background: var(--navy-dark);
  padding: 0 0 var(--space-xl);
}

.video-wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 aspect ratio */
  background: #000;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-placeholder-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: var(--text-muted);
}

.video-placeholder-content svg {
  color: var(--limestone);
  margin-bottom: var(--space-md);
}

.video-placeholder-content p {
  font-size: var(--text-lg);
  margin: 0;
}

/* Episode Content Layout */
.episode-content {
  padding: var(--space-2xl) 0 var(--space-3xl);
  background: var(--paper);
}

.episode-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: var(--space-2xl);
}

@media (max-width: 992px) {
  .episode-layout {
    grid-template-columns: 1fr;
  }
}

/* Episode Main Content */
.episode-main {
  min-width: 0;
}

.episode-section {
  margin-bottom: var(--space-2xl);
}

.episode-section h2 {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-sm);
  border-bottom: 2px solid var(--limestone);
}

.episode-description {
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
  color: var(--text-primary);
}

.episode-description p {
  margin-bottom: var(--space-md);
}

.episode-description p:last-child {
  margin-bottom: 0;
}

/* Takeaways List */
.takeaways-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.takeaways-list li {
  position: relative;
  padding: var(--space-md) 0 var(--space-md) var(--space-xl);
  border-bottom: 1px solid var(--border-light);
  color: var(--text-primary);
  line-height: var(--leading-normal);
}

.takeaways-list li:last-child {
  border-bottom: none;
}

.takeaways-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: var(--space-md);
  color: var(--orange);
  font-weight: 700;
}

/* Resources List */
.resources-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.resource-item {
  display: block;
  padding: var(--space-md);
  background: var(--limestone);
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: all var(--transition-base);
}

.resource-item:hover {
  background: var(--limestone-dark);
  transform: translateX(4px);
}

.resource-name {
  display: block;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: var(--space-xs);
}

.resource-description {
  display: block;
  font-size: var(--text-sm);
  color: var(--text-secondary);
}

/* Episode Sidebar */
.episode-sidebar {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

/* Guest Card */
.guest-card {
  background: var(--limestone);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  text-align: center;
}

.guest-card h3 {
  font-size: var(--text-sm);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
  margin-bottom: var(--space-lg);
}

.guest-photo {
  width: 120px;
  height: 120px;
  border-radius: var(--radius-full);
  object-fit: cover;
  margin-bottom: var(--space-md);
  border: 4px solid var(--white);
  box-shadow: var(--shadow-md);
}

.guest-name {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: var(--space-xs);
}

.guest-title {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  margin-bottom: var(--space-md);
}

.guest-bio {
  font-size: var(--text-sm);
  color: var(--text-primary);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-lg);
}

.guest-links {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
}

.guest-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: var(--white);
  color: var(--navy);
  transition: all var(--transition-base);
}

.guest-links a:hover {
  background: var(--navy);
  color: var(--white);
}

.guest-links svg {
  width: 20px;
  height: 20px;
}

/* Share Card */
.share-card {
  background: var(--limestone);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  text-align: center;
}

.share-card h3 {
  font-size: var(--text-sm);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
  margin-bottom: var(--space-lg);
}

.share-buttons {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
}

.share-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
}

.share-btn svg {
  width: 20px;
  height: 20px;
}

.share-twitter {
  background: #1DA1F2;
  color: var(--white);
}

.share-twitter:hover {
  background: #0d8bd9;
  transform: translateY(-2px);
}

.share-linkedin {
  background: #0A66C2;
  color: var(--white);
}

.share-linkedin:hover {
  background: #084e96;
  transform: translateY(-2px);
}

.share-facebook {
  background: #1877F2;
  color: var(--white);
}

.share-facebook:hover {
  background: #0d65d9;
  transform: translateY(-2px);
}

/* Subscribe Card */
.subscribe-card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  text-align: center;
  color: var(--white);
}

.subscribe-card h3 {
  font-size: var(--text-lg);
  font-weight: 700;
  margin-bottom: var(--space-sm);
}

.subscribe-card p {
  font-size: var(--text-sm);
  opacity: 0.8;
  margin-bottom: var(--space-lg);
}

/* Episodes Index - Coming Soon */
.episodes-coming-soon {
  text-align: center;
  padding: var(--space-3xl) var(--space-xl);
  background: var(--limestone);
  border-radius: var(--radius-xl);
}

.coming-soon-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--space-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  border-radius: var(--radius-full);
}

.coming-soon-icon svg {
  width: 40px;
  height: 40px;
  color: var(--white);
}

.coming-soon-title {
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: var(--space-md);
}

.coming-soon-text {
  font-size: var(--text-lg);
  color: var(--text-secondary);
  max-width: 500px;
  margin: 0 auto;
}

/* Episode Grid */
.episode-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--space-xl);
}

.load-more {
  text-align: center;
  margin-top: var(--space-2xl);
}

/* ==========================================================================
   24. MISC UTILITIES
   ========================================================================== */

.bg-white {
  background-color: var(--white);
}

.bg-cream {
  background-color: var(--cream);
}

.bg-navy {
  background-color: var(--navy);
}

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

.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mt-lg { margin-top: var(--space-lg); }
.mb-lg { margin-bottom: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }
.mb-xl { margin-bottom: var(--space-xl); }

/* ==========================================================================
   25. HOMEPAGE - PLATFORM BUTTONS
   ========================================================================== */

.hero-platforms {
  margin-top: var(--space-2xl);
  padding-top: var(--space-xl);
  border-top: 1px solid var(--border-light);
}

.hero-platforms-label {
  display: block;
  font-size: var(--text-sm);
  color: var(--text-muted);
  margin-bottom: var(--space-md);
  text-align: center;
}

.platform-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  justify-content: center;
}

.platform-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: var(--space-sm) var(--space-md);
  background: var(--white);
  border: 2px solid var(--border-light);
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--navy);
  transition: all var(--transition-base);
}

.platform-btn svg {
  width: 20px;
  height: 20px;
}

.platform-btn:hover {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.platform-btn-soon {
  opacity: 0.5;
  cursor: default;
  position: relative;
}

.platform-btn-soon::after {
  content: 'Soon';
  position: absolute;
  top: -8px;
  right: -8px;
  font-size: 9px;
  font-weight: 600;
  background: var(--orange);
  color: var(--white);
  padding: 2px 6px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.platform-btn-soon:hover {
  border-color: var(--border-light);
  background: var(--white);
  color: var(--navy);
  transform: none;
  box-shadow: none;
}

@media (min-width: 768px) {
  .hero-platforms-label {
    text-align: left;
  }

  .platform-buttons {
    justify-content: flex-start;
  }
}

/* ==========================================================================
   26. HOMEPAGE - HERO VIDEO
   ========================================================================== */

.hero-video-wrapper {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hero-video-embed {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--navy);
}

.hero-video-placeholder {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-video-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-video-info {
  padding: var(--space-md) var(--space-lg);
}

.hero-episode-label {
  display: block;
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--orange);
  margin-bottom: var(--space-xs);
}

.hero-episode-title {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--navy);
  transition: color var(--transition-fast);
}

.hero-episode-title:hover {
  color: var(--orange);
}

/* ==========================================================================
   27. HOMEPAGE - SOCIAL PROOF BAR
   ========================================================================== */

.social-proof {
  background: var(--navy);
  padding: var(--space-lg) 0;
}

.social-proof-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
  text-align: center;
}

.social-proof-stat {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.social-proof-number {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--white);
}

.social-proof-label {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.7);
}

.social-proof-divider {
  display: none;
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
}

.social-proof-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-lg);
  background: var(--orange);
  color: var(--white);
  font-weight: 600;
  font-size: var(--text-sm);
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
}

.social-proof-cta:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.social-proof-cta svg {
  width: 18px;
  height: 18px;
}

@media (min-width: 768px) {
  .social-proof-inner {
    flex-direction: row;
    justify-content: center;
    gap: var(--space-2xl);
  }

  .social-proof-stat {
    flex-direction: row;
    align-items: center;
    gap: var(--space-md);
  }

  .social-proof-divider {
    display: block;
  }
}

/* ==========================================================================
   28. HOMEPAGE - TOPICS GRID
   ========================================================================== */

.topics-grid {
  display: grid;
  gap: var(--space-lg);
}

.topic-card {
  background: var(--limestone);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
}

.topic-card:hover {
  background: var(--white);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.topic-icon {
  width: 48px;
  height: 48px;
  background: var(--navy);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  margin-bottom: var(--space-md);
}

.topic-icon svg {
  width: 24px;
  height: 24px;
}

.topic-title {
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--navy);
  margin-bottom: var(--space-sm);
}

.topic-description {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: var(--leading-relaxed);
  margin: 0;
}

@media (min-width: 640px) {
  .topics-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .topics-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ==========================================================================
   29. HOMEPAGE - GUEST CTA
   ========================================================================== */

.guest-cta {
  display: grid;
  gap: var(--space-xl);
  align-items: center;
  background: linear-gradient(135deg, var(--limestone) 0%, var(--limestone-dark) 100%);
  padding: var(--space-2xl);
  border-radius: var(--radius-xl);
}

.guest-cta-content {
  text-align: center;
}

.guest-cta-title {
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: var(--space-md);
}

.guest-cta-text {
  font-size: var(--text-base);
  color: var(--text-muted);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-lg);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.guest-cta-image {
  display: none;
  justify-content: center;
  align-items: center;
}

.guest-cta-image svg {
  width: 120px;
  height: 120px;
  color: var(--navy);
  opacity: 0.3;
}

@media (min-width: 768px) {
  .guest-cta {
    grid-template-columns: 2fr 1fr;
    padding: var(--space-3xl);
  }

  .guest-cta-content {
    text-align: left;
  }

  .guest-cta-text {
    margin-left: 0;
    margin-right: 0;
  }

  .guest-cta-image {
    display: flex;
  }

  .guest-cta-title {
    font-size: var(--text-3xl);
  }
}

/* ==========================================================================
   30. HOMEPAGE - EPISODE ENHANCEMENTS
   ========================================================================== */

.episode-duration {
  position: absolute;
  bottom: var(--space-sm);
  right: var(--space-sm);
  background: rgba(0, 0, 0, 0.8);
  color: var(--white);
  font-size: var(--text-xs);
  font-weight: 600;
  padding: 2px 6px;
  border-radius: var(--radius-sm);
}

.episode-description {
  font-size: var(--text-sm);
  color: var(--text-muted);
  margin-top: var(--space-sm);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.episode-thumbnail-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--navy-light) 0%, var(--navy) 100%);
}

.episode-thumbnail-placeholder span {
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.episode-card-coming {
  opacity: 0.6;
  pointer-events: none;
}

.episode-card-coming .episode-content {
  opacity: 0.7;
}

/* ==========================================================================
   31. NEWSLETTER SECTION ENHANCEMENTS
   ========================================================================== */

.newsletter-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.newsletter-title {
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--space-md);
}

.newsletter-subtitle {
  font-size: var(--text-base);
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: var(--space-xl);
}

.newsletter-disclaimer {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.5);
  margin-top: var(--space-md);
  text-align: center;
}

.newsletter-disclaimer a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: underline;
}

.newsletter-disclaimer a:hover {
  color: var(--white);
}

@media (min-width: 768px) {
  .newsletter-title {
    font-size: var(--text-3xl);
  }
}

/* Print styles */
@media print {
  .header,
  .footer,
  .nav-mobile,
  .nav-backdrop {
    display: none !important;
  }

  body {
    background: white;
    color: black;
  }
}
