/* ============================================================
   THEDEEPVERSE — HOME PAGE
   ============================================================
   Cinematic. Mysterious. Unforgettable.
   Premium dark theme with gold accents.
   ============================================================ */


/* ============================================================
   1. HERO — THE OPENING SHOT
   ============================================================ */

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--color-black-900);
}

.hero__atmosphere {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 50% 45% at 50% 45%, rgba(25, 25, 35, 0.5) 0%, transparent 70%),
    radial-gradient(ellipse 70% 55% at 55% 55%, rgba(20, 16, 10, 0.3) 0%, transparent 65%),
    radial-gradient(circle at 50% 50%, rgba(192, 160, 98, 0.015) 0%, transparent 45%);
  animation: heroAtmosphere 10s ease-in-out infinite alternate;
}

@keyframes heroAtmosphere {
  0% { opacity: 0.6; transform: scale(1); }
  100% { opacity: 1; transform: scale(1.05); }
}

.hero__grain {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.025;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}

.hero__particles {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0;
  animation: heroReveal 2s var(--ease-smooth) 0.5s forwards;
}

.hero__content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 800px;
  padding: 0 var(--space-6);
}

/* Pre-heading */
.hero__label {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: var(--text-muted);
  margin-bottom: var(--space-3);
  opacity: 0;
  animation: heroReveal 1s var(--ease-smooth) 0.3s forwards;
}

/* NEW: Tagline under logo */
.hero__tagline {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  color: var(--accent);
  letter-spacing: 0.05em;
  margin-bottom: var(--space-8);
  opacity: 0;
  animation: heroReveal 1s var(--ease-smooth) 0.5s forwards;
}

/* Main heading — premium gold gradient */
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 3.2rem);
  font-weight: 800;
  background: linear-gradient(135deg, #FFFFFF 30%, #FFD700 60%, #FFA500 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-4);
  opacity: 0;
  animation: heroRevealUp 1.2s var(--ease-smooth) 0.6s forwards;
}

.hero__title-dot {
  -webkit-text-fill-color: var(--text-muted);
}

/* Sub-heading */
.hero__subtitle {
  font-family: var(--font-body);
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
  max-width: 560px;
  margin: 0 auto var(--space-8);
  opacity: 0;
  animation: heroReveal 1s var(--ease-smooth) 1s forwards;
}

/* Hero 3 CTA Buttons */
.hero__actions--triple {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
  opacity: 0;
  animation: heroRevealUp 1s var(--ease-smooth) 1.3s forwards;
}

@media (min-width: 640px) {
  .hero__actions--triple {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
  }
}

/* Hero button base */
.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  min-height: 52px;
  padding: 0 var(--space-6);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: all var(--duration-base) var(--ease-default);
  width: 100%;
  max-width: 300px;
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
}

@media (min-width: 640px) {
  .hero-btn {
    width: auto;
    min-width: 200px;
  }
}

.hero-btn__icon {
  font-size: 1.1rem;
}

/* Watch Latest Video — Red/Orange */
.hero-btn--video {
  background: linear-gradient(135deg, #FF4444 0%, #FF6B35 100%);
  color: #fff;
  box-shadow: 0 4px 20px rgba(255, 68, 68, 0.3);
}
.hero-btn--video:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(255, 68, 68, 0.5);
}

/* Explore DeepVerse Hub — Gold */
.hero-btn--hub {
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
  color: #000;
  box-shadow: 0 4px 20px rgba(255, 215, 0, 0.3);
}
.hero-btn--hub:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(255, 215, 0, 0.5);
}

/* Join WhatsApp — Blue */
.hero-btn--whatsapp {
  background: linear-gradient(135deg, #2196F3 0%, #1565C0 100%);
  color: #fff;
  box-shadow: 0 4px 20px rgba(33, 150, 243, 0.3);
}
.hero-btn--whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(33, 150, 243, 0.5);
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: var(--space-8);
  left: 50%;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  color: var(--text-muted);
  opacity: 0;
  animation: heroReveal 1s var(--ease-smooth) 2.2s forwards;
}
.hero__scroll-text {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}
.hero__scroll-line {
  width: 1px;
  height: 40px;
  position: relative;
  overflow: hidden;
  background: var(--border-subtle);
}
.hero__scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--text-muted);
  animation: scrollLine 2s var(--ease-default) infinite;
}

@keyframes scrollLine {
  0% { top: -100%; }
  50% { top: 0; }
  100% { top: 100%; }
}

@keyframes heroReveal {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes heroRevealUp {
  from { opacity: 0; transform: translateY(25px); }
  to { opacity: 1; transform: translateY(0); }
}


/* ============================================================
   2. SOCIAL PROOF — CREDIBILITY
   ============================================================ */

.proof {
  padding: var(--space-12) 0;
  position: relative;
}
@media (min-width: 768px) {
  .proof { padding: var(--space-16) 0; }
}


/* ============================================================
   SECTION HEADERS — Shared Premium Styling
   ============================================================ */

.section-header {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  margin-bottom: var(--space-10);
}
@media (min-width: 768px) {
  .section-header {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: var(--space-12);
  }
}
.section-header__text { max-width: 500px; }

.section-title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-2);
  padding-left: var(--space-4);
  border-left: 4px solid #FFD700;
}
@media (min-width: 768px) {
  .section-title { font-size: 1.75rem; }
}

.section-title__icon {
  margin-right: var(--space-2);
}

.section-subtitle {
  font-size: var(--text-sm);
  color: var(--text-muted);
  padding-left: var(--space-4);
}


/* ============================================================
   3. SHORTS SECTION
   ============================================================ */

.shorts-section {
  padding: var(--space-16) 0;
}
@media (min-width: 768px) {
  .shorts-section { padding: var(--space-24) 0; }
}

.shorts-grid {
  display: grid;
  gap: var(--space-4);
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 640px) {
  .shorts-grid { grid-template-columns: repeat(4, 1fr); }
}

.short-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  transition: all var(--duration-base) var(--ease-default);
  cursor: pointer;
}
.short-card:hover {
  border-color: var(--accent-border);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.short-card__thumbnail {
  aspect-ratio: 9/16;
  background: linear-gradient(145deg, #0a0a18 0%, #050508 60%, #08050a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.short-card__play {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  backdrop-filter: blur(8px);
}

.short-card__badge {
  position: absolute;
  top: var(--space-2);
  left: var(--space-2);
  background: #FF4444;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
}

.short-card__title {
  font-size: var(--text-xs);
  color: var(--text-secondary);
  padding: var(--space-3);
  text-align: center;
}


/* ============================================================
   4. FEATURED HUB (was Vault)
   ============================================================ */

.featured {
  padding: var(--space-16) 0;
  position: relative;
}
@media (min-width: 768px) {
  .featured { padding: var(--space-24) 0; }
}
.featured__header {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  margin-bottom: var(--space-10);
}
@media (min-width: 768px) {
  .featured__header {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: var(--space-12);
  }
}
.featured__header-text { max-width: 500px; }
.featured__title {
  font-size: var(--text-2xl);
  margin-bottom: var(--space-2);
}
@media (min-width: 768px) {
  .featured__title { font-size: var(--text-3xl); }
}
.featured__subtitle {
  font-size: var(--text-sm);
  color: var(--text-muted);
}
.featured__grid {
  display: grid;
  gap: var(--space-6);
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .featured__grid { grid-template-columns: 1.3fr 1fr; }
}
@media (min-width: 1024px) {
  .featured__grid { grid-template-columns: repeat(3, 1fr); }
}
.featured .card { min-height: 220px; }
@media (min-width: 768px) {
  .featured .card:first-child {
    grid-row: span 2;
    min-height: 100%;
  }
  .featured .card:first-child .card__title { font-size: var(--text-2xl); }
  .featured .card:first-child .card__desc { -webkit-line-clamp: 4; }
}
@media (min-width: 1024px) {
  .featured .card:first-child { grid-row: span 1; }
}
.card__number {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: var(--weight-bold);
  color: var(--color-gray-700);
  line-height: 1;
  position: absolute;
  top: var(--space-4);
  right: var(--space-5);
  transition: color var(--duration-base) var(--ease-default);
}
.card:hover .card__number { color: var(--color-gray-500); }


/* ============================================================
   5. STORE PREVIEW
   ============================================================ */

.store-preview {
  padding: var(--space-16) 0;
}
@media (min-width: 768px) {
  .store-preview { padding: var(--space-24) 0; }
}

.store-preview__grid {
  display: grid;
  gap: var(--space-6);
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .store-preview__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .store-preview__grid { grid-template-columns: repeat(4, 1fr); }
}

.product-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  text-align: center;
  position: relative;
  transition: all var(--duration-base) var(--ease-default);
}
.product-card:hover {
  border-color: var(--accent-border);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.product-card__badge {
  position: absolute;
  top: var(--space-3);
  right: var(--space-3);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
}
.product-card__badge--gold {
  background: linear-gradient(135deg, #FFD700, #FFA500);
  color: #000;
}
.product-card__badge--red {
  background: #FF4444;
  color: #fff;
}
.product-card__badge--green {
  background: #00C853;
  color: #fff;
}

.product-card__emoji {
  font-size: 2.5rem;
  margin-bottom: var(--space-4);
}

.product-card__title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--text-primary);
  margin-bottom: var(--space-2);
}

.product-card__desc {
  font-size: var(--text-sm);
  color: var(--text-muted);
  margin-bottom: var(--space-4);
  line-height: var(--leading-relaxed);
}

.product-card__price {
  font-size: 1.5rem;
  font-weight: 800;
  color: #FFD700;
  margin-bottom: var(--space-4);
}
.product-card__price--free {
  color: #00C853;
}


/* ============================================================
   6. FREE RESOURCES
   ============================================================ */

.free-resources {
  padding: var(--space-16) 0;
}
@media (min-width: 768px) {
  .free-resources { padding: var(--space-24) 0; }
}

.resources-grid {
  display: grid;
  gap: var(--space-6);
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .resources-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .resources-grid { grid-template-columns: repeat(4, 1fr); }
}

.resource-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  text-align: center;
  transition: all var(--duration-base) var(--ease-default);
  position: relative;
}
.resource-card::before {
  content: 'FREE';
  position: absolute;
  top: var(--space-3);
  right: var(--space-3);
  background: #00C853;
  color: #fff;
  font-size: 0.6rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: var(--radius-full);
}
.resource-card:hover {
  border-color: var(--accent-border);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.resource-card__icon {
  font-size: 2.5rem;
  margin-bottom: var(--space-4);
}
.resource-card__title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--text-primary);
  margin-bottom: var(--space-2);
}
.resource-card__desc {
  font-size: var(--text-sm);
  color: var(--text-muted);
  margin-bottom: var(--space-4);
}


/* ============================================================
   7. WHY CHOOSE
   ============================================================ */

.why-choose {
  padding: var(--space-16) 0;
}
@media (min-width: 768px) {
  .why-choose { padding: var(--space-24) 0; }
}

.why-grid {
  display: grid;
  gap: var(--space-6);
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .why-grid { grid-template-columns: repeat(4, 1fr); }
}

.why-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  text-align: center;
  transition: all var(--duration-base) var(--ease-default);
}
.why-card:hover {
  border-color: var(--accent-border);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.why-card__icon {
  font-size: 2.5rem;
  margin-bottom: var(--space-4);
}
.why-card__title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--text-primary);
  margin-bottom: var(--space-2);
}
.why-card__desc {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: var(--leading-relaxed);
}


/* ============================================================
   8. TESTIMONIALS
   ============================================================ */

.testimonials {
  padding: var(--space-16) 0;
}
@media (min-width: 768px) {
  .testimonials { padding: var(--space-24) 0; }
}

.testimonials-grid {
  display: grid;
  gap: var(--space-6);
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
}

.testimonial-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  transition: all var(--duration-base) var(--ease-default);
}
.testimonial-card:hover {
  border-color: var(--accent-border);
  box-shadow: var(--shadow-lg);
}

.testimonial-card__stars {
  color: #FFD700;
  font-size: 1.2rem;
  margin-bottom: var(--space-4);
  letter-spacing: 2px;
}

.testimonial-card__quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--text-base);
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-6);
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}
.testimonial-card__name {
  font-weight: var(--weight-semibold);
  color: var(--text-primary);
  font-size: var(--text-sm);
}
.testimonial-card__location {
  color: var(--text-muted);
  font-size: var(--text-xs);
}
.testimonial-card__name::after {
  content: ',';
  margin-right: var(--space-1);
}


/* ============================================================
   9. HOME FAQ
   ============================================================ */

.home-faq {
  padding: var(--space-16) 0;
}
@media (min-width: 768px) {
  .home-faq { padding: var(--space-24) 0; }
}

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


/* ============================================================
   10. VIDEOS SECTION
   ============================================================ */

.videos-section {
  padding: var(--space-16) 0;
  position: relative;
}
@media (min-width: 768px) {
  .videos-section { padding: var(--space-24) 0; }
}
.videos-section__header {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  margin-bottom: var(--space-10);
}
@media (min-width: 768px) {
  .videos-section__header {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: var(--space-12);
  }
}
.videos-section__header-text { max-width: 500px; }
.videos-section__title {
  font-size: var(--text-2xl);
  margin-bottom: var(--space-2);
}
@media (min-width: 768px) {
  .videos-section__title { font-size: var(--text-3xl); }
}
.videos-section__subtitle {
  font-size: var(--text-sm);
  color: var(--text-muted);
}
.videos-grid {
  display: grid;
  gap: var(--space-6);
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .videos-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .videos-grid { grid-template-columns: repeat(3, 1fr); }
}


/* ============================================================
   11. EMAIL MODAL
   ============================================================ */

.email-modal {
  position: fixed;
  inset: 0;
  z-index: var(--z-modal);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-6);
}
.email-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
}
.email-modal__box {
  position: relative;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: var(--space-10);
  max-width: 420px;
  width: 100%;
  text-align: center;
}
.email-modal__close {
  position: absolute;
  top: var(--space-3);
  right: var(--space-3);
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.5rem;
  cursor: pointer;
  padding: var(--space-2);
}
.email-modal__title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--text-primary);
  margin-bottom: var(--space-2);
}
.email-modal__desc {
  font-size: var(--text-sm);
  color: var(--text-muted);
  margin-bottom: var(--space-6);
}
.email-modal__form {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.email-modal__input {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  background: var(--color-gray-800);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-size: var(--text-base);
}
.email-modal__input:focus {
  outline: none;
  border-color: var(--accent);
}


/* ============================================================
   12. MOBILE OPTIMIZATION
   ============================================================ */

@media (max-width: 480px) {
  .hero-btn {
    width: 90%;
    max-width: none;
    min-height: 50px;
    font-size: 1rem;
  }
  
  .section-title {
    font-size: var(--text-xl);
  }

  .product-card__price,
  .resource-card__title {
    font-size: var(--text-base);
  }
}


/* ============================================================
   FOUNDER — THE MIND BEHIND
   ============================================================ */

.founder {
  padding: var(--space-16) 0;
}
@media (min-width: 768px) {
  .founder { padding: var(--space-24) 0; }
}
.founder__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-10);
  max-width: 900px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .founder__inner {
    flex-direction: row;
    align-items: flex-start;
    gap: var(--space-12);
  }
}
.founder__avatar {
  width: 140px;
  height: 140px;
  flex-shrink: 0;
  border-radius: var(--radius-full);
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.founder__monogram {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: var(--weight-bold);
  color: var(--text-muted);
  letter-spacing: var(--tracking-wide);
  user-select: none;
}
.founder__content { text-align: center; }
@media (min-width: 768px) {
  .founder__content { text-align: left; }
}
.founder__label {
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  text-transform: uppercase;
  letter-spacing: var(--tracking-widest);
  color: var(--text-muted);
  margin-bottom: var(--space-3);
}
.founder__name {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  color: var(--text-primary);
  margin-bottom: var(--space-2);
}
.founder__role {
  font-size: var(--text-sm);
  color: var(--text-muted);
  margin-bottom: var(--space-6);
}
.founder__bio {
  font-size: var(--text-base);
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-6);
}
.founder__signature {
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--text-sm);
  color: var(--text-muted);
}


/* ============================================================
   NEWSLETTER
   ============================================================ */

.newsletter-section {
  padding: var(--space-16) 0;
}
@media (min-width: 768px) {
  .newsletter-section { padding: var(--space-24) 0; }
}


/* ============================================================
   SCENE INTROS
   ============================================================ */

.scene-intro {
  text-align: center;
  padding: var(--space-8) 0;
}
.scene-intro__number {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  color: var(--text-muted);
  letter-spacing: var(--tracking-widest);
  margin-bottom: var(--space-4);
  display: block;
}


/* Video placeholder gradients */
.video-thumb-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; }
.video-thumb-placeholder--1 { background: linear-gradient(145deg, #0a0a18 0%, #050508 60%, #08050a 100%); }
.video-thumb-placeholder--2 { background: linear-gradient(145deg, #140808 0%, #080505 60%, #0a0508 100%); }
.video-thumb-placeholder--3 { background: linear-gradient(145deg, #080f10 0%, #050808 60%, #05080a 100%); }
.video-thumb-placeholder--4 { background: linear-gradient(145deg, #100a08 0%, #080605 60%, #0a0805 100%); }
.video-thumb-placeholder--5 { background: linear-gradient(145deg, #08100a 0%, #050805 60%, #080a08 100%); }
.video-thumb-placeholder--6 { background: linear-gradient(145deg, #0a0810 0%, #060508 60%, #08050a 100%); }
