/* ============================================
   ELEVATED THOUGHTS — Home Page Styles
   Monumental. Atmospheric. Bold.
   ============================================ */

/* ===================
   HERO
   =================== */

.hero {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  background: var(--bg-void);
  position: relative;
  overflow: hidden;
  padding-top: calc(var(--nav-height) + var(--space-16));
  padding-bottom: var(--space-20);
}

/* Giant atmospheric glow behind hero */
.hero::before {
  content: '';
  position: absolute;
  top: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 140%;
  height: 120%;
  background: radial-gradient(
    ellipse 60% 50% at 50% 30%,
    var(--accent-glow-strong) 0%,
    var(--accent-glow) 25%,
    rgba(217, 123, 0, 0.045) 50%,
    transparent 70%
  );
  pointer-events: none;
  animation: hero-glow-breathe 8s ease-in-out infinite;
}

@keyframes hero-glow-breathe {
  0%, 100% { opacity: 0.375; transform: translateX(-50%) scale(1); }
  50% { opacity: 0.525; transform: translateX(-50%) scale(1.05); }
}

/* Secondary glow — deep purple/blue atmospheric depth */
.hero::after {
  content: '';
  position: absolute;
  bottom: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(100, 60, 180, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-8);
}

.hero__label {
  margin-bottom: var(--space-2);
  animation: label-enter 1s var(--ease-out) 0.2s both;
}

@keyframes label-enter {
  from {
    opacity: 0;
    transform: translateY(8px);
    filter: blur(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

.hero__title {
  font-size: var(--text-hero);
  line-height: 1.1;
  padding-bottom: 0.1em;
  letter-spacing: -0.03em;
  max-width: 14ch;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.95) 0%,
    rgba(255, 255, 255, 0.7) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__title-accent {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-size: var(--text-lg);
  color: var(--text-secondary);
  max-width: 42ch;
  line-height: var(--leading-relaxed);
  text-align: center;
}

/* --- Player --- */

.hero__player {
  margin-top: var(--space-12);
  width: 100%;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

/* Glow behind player */
.hero__player::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  background: radial-gradient(ellipse at center, var(--accent-glow) 0%, transparent 70%);
  opacity: 0.4;
  border-radius: var(--radius-2xl);
  pointer-events: none;
  z-index: -1;
}

.hero__player-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  background: rgba(22, 22, 23, 0.5);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(217, 123, 0, 0.15);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  overflow: hidden;
  transition: border-color var(--duration-normal) var(--ease-smooth);
}

.hero__player-card:hover {
  border-color: rgba(217, 123, 0, 0.3);
}

.hero__player-label {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-4) var(--space-6) var(--space-3);
}

.hero__player-label::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: var(--accent);
  border-radius: var(--radius-full);
  box-shadow: 0 0 12px var(--accent-glow-strong);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 12px var(--accent-glow-strong); }
  50% { opacity: 0.5; transform: scale(0.8); box-shadow: 0 0 24px var(--accent-glow-strong); }
}

/* --- Hero Video Embed --- */
.hero__video {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 */
  border-radius: var(--radius-lg);
  overflow: hidden;
}

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

/* --- Hero CTAs --- */

.hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  margin-top: var(--space-12);
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
}

/* --- Scroll indicator --- */

.hero__scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  margin-top: var(--space-10);
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  animation: scroll-bounce 2s ease-in-out infinite;
  position: relative;
  z-index: 1;
}

.hero__scroll-indicator::after {
  content: '';
  width: 1px;
  height: 32px;
  background: linear-gradient(180deg, var(--text-muted) 0%, transparent 100%);
}

@keyframes scroll-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}


/* ===================
   ABOUT PREVIEW
   =================== */

.about-preview-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(217, 123, 0, 0.02) 0%, transparent 60%),
    linear-gradient(180deg, #080809 0%, #0B0B0C 50%, #080809 100%);
}

.about-preview {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-16);
  align-items: center;
}

@media (min-width: 768px) {
  .about-preview {
    grid-template-columns: 1.2fr 1fr;
    gap: var(--space-20);
  }
}

.about-preview__text h2 {
  line-height: 0.95;
  letter-spacing: -0.02em;
}

.about-preview__text p {
  max-width: 48ch;
}

/* Host Cards — editorial style */
.about-preview__hosts {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
}

@media (min-width: 480px) {
  .about-preview__hosts {
    flex-direction: row;
    gap: var(--space-8);
  }
}

.about-preview__host-card {
  flex: 1;
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-5);
  text-align: center;
  position: relative;
}

/* Vertical accent line on host cards */
.about-preview__host-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 32px;
  background: linear-gradient(180deg, var(--accent) 0%, transparent 100%);
  opacity: 0;
  transition: opacity var(--duration-normal) var(--ease-smooth);
}

.about-preview__host-card:hover::before {
  opacity: 1;
}

.about-preview__host-photo {
  position: relative;
  z-index: 1;
  width: 120px;
  height: 120px;
  border-radius: var(--radius-full);
  background-color: var(--bg-elevated);
  background-size: cover;
  background-position: center;
  border: none;
  box-shadow: 0 0 0 2px var(--border);
  transition: box-shadow var(--duration-normal) var(--ease-smooth);
}

.about-preview__host-card:hover .about-preview__host-photo {
  box-shadow: 0 0 0 3px var(--accent), 0 0 32px var(--accent-glow);
}

.about-preview__host-photo--cooper {
  background-image: url('/assets/images/cooper-pfp.png');
}

.about-preview__host-photo--mike {
  background-image: url('/assets/images/mike-pfp.png');
}

.about-preview__host-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
}

.about-preview__host-info h4 {
  font-size: var(--text-lg);
}


/* ===================
   RECENT EPISODES
   =================== */

.episodes-section {
  position: relative;
}

/* Oversized background number */
.episodes-section__bg-number {
  position: absolute;
  top: -20px;
  right: var(--gutter);
  font-family: var(--font-mono);
  font-size: clamp(8rem, 5rem + 15vw, 20rem);
  font-weight: var(--weight-bold);
  line-height: 0.85;
  color: var(--accent);
  opacity: 0.03;
  user-select: none;
  pointer-events: none;
}


/* ===================
   NEWSLETTER CTA — full-bleed dramatic band
   =================== */

.newsletter-cta-section {
  position: relative;
  overflow: hidden;
}

/* Large atmospheric glow behind newsletter CTA */
.newsletter-cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 200%;
  background: radial-gradient(
    ellipse 50% 40% at 50% 50%,
    rgba(217, 123, 0, 0.075) 0%,
    rgba(217, 123, 0, 0.022) 40%,
    transparent 70%
  );
  pointer-events: none;
}

.newsletter-cta {
  position: relative;
  z-index: 1;
}

.newsletter-cta h2 {
  font-size: var(--text-3xl);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.95) 0%,
    rgba(255, 255, 255, 0.6) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.newsletter-cta p {
  max-width: 42ch;
  margin-left: auto;
  margin-right: auto;
}

.newsletter-cta .form-inline {
  max-width: 520px;
}

.newsletter-cta .form-input {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.12);
}

.newsletter-cta .form-input:focus {
  background: rgba(255, 255, 255, 0.08);
}


/* ===================
   PLATFORMS SECTION
   =================== */

.platforms-section {
  position: relative;
}

.platforms-section .platform-link {
  transition: color var(--duration-fast) var(--ease-smooth),
              transform var(--duration-normal) var(--ease-out);
}

.platforms-section .platform-link:hover {
  transform: translateY(-2px);
}

.platforms-section .platform-link svg {
  width: 24px;
  height: 24px;
}


/* ===================
   RESPONSIVE ADJUSTMENTS
   =================== */

@media (max-width: 479px) {
  .hero {
    padding-top: calc(var(--nav-height) + var(--space-10));
    min-height: auto;
  }

  .hero__title {
    font-size: clamp(2.5rem, 10vw, 4rem);
    line-height: 0.92;
  }

  .hero__actions {
    flex-direction: column;
    width: 100%;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .hero__scroll-indicator {
    display: none;
  }

  .episodes-section__bg-number {
    display: none;
  }
}

@media (min-width: 1280px) {
  .hero {
    min-height: 100vh;
    min-height: 100dvh;
  }

  .hero__player {
    max-width: 720px;
  }

  .hero__title {
    font-size: clamp(5rem, 3rem + 5vw, 8rem);
  }
}
