*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --coal: #06080d;
  --ash: #0d1018;
  --ember: #3d8ef0;
  --ember-dim: #1a5dbf;
  --ember-glow: #7ab8ff;
  --gold: #e8b84b;
  --smoke: #1e2535;
  --text-primary: #e8f0ff;
  --text-muted: #607090;
  --text-faint: #2a3448;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--coal);
  color: var(--text-primary);
  font-family: "DM Sans", sans-serif;
  font-weight: 300;
  overflow-x: hidden;
  cursor: none;
}

/* Lightning cursor canvas — topmost */
#cursorCanvas {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  width: 100%;
  height: 100%;
}

/* Noise overlay */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  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.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.4;
  pointer-events: none;
  z-index: 1;
}

/* Global lightning canvas — behind everything */
#globalLightningCanvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 60% 50% at 50% 80%,
      rgba(61, 142, 240, 0.18) 0%,
      transparent 70%
    ),
    radial-gradient(
      ellipse 30% 30% at 50% 100%,
      rgba(122, 184, 255, 0.25) 0%,
      transparent 60%
    ),
    var(--coal);
}
#heroCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}
.hero-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--ember);
  margin-bottom: 2rem;
  position: relative;
  z-index: 2;
  animation: fadeUp 1s 0.2s both;
}
.hero-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(5rem, 16vw, 14rem);
  font-weight: 900;
  line-height: 0.9;
  position: relative;
  z-index: 2;
  animation: fadeUp 1s 0.4s both;
  background: linear-gradient(
    160deg,
    var(--ember-glow) 0%,
    var(--ember) 40%,
    var(--ember-dim) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 40px rgba(61, 142, 240, 0.5));
}
.hero-subtitle {
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  color: var(--text-muted);
  max-width: 480px;
  line-height: 1.8;
  margin-top: 2rem;
  position: relative;
  z-index: 2;
  animation: fadeUp 1s 0.6s both;
}
.hero-subtitle em {
  color: var(--ember);
  font-style: normal;
}
.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  animation: fadeUp 1s 1s both;
}
.scroll-indicator span {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-faint);
}
.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--ember), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

/* ─── DIVIDER ─── */
.divider {
  width: 100%;
  height: 1px;
  position: relative;
  z-index: 2;
  background: linear-gradient(
    to right,
    transparent,
    var(--smoke),
    var(--ember-dim),
    var(--smoke),
    transparent
  );
  opacity: 0.6;
}

/* ─── SECTION BASE ─── */
section {
  position: relative;
  z-index: 2;
}
.section-label {
  font-size: 0.65rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--ember);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.section-label::before {
  content: "";
  width: 30px;
  height: 1px;
  background: var(--ember);
}

/* ─── ORIGIN ─── */
#origin {
  position: relative;
  overflow: hidden;
}
#originCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}
.origin {
  padding: 8rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  position: relative;
  z-index: 2;
}
.origin-text h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}
.origin-text h2 span {
  color: var(--ember);
}
.origin-text p {
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 1rem;
  font-size: 1rem;
}
.origin-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 380px;
}

/* Flash / bolt sign */
.flash-sign {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 200px;
  height: 200px;
}
.flash-svg {
  width: 160px;
  height: 160px;
  filter: drop-shadow(0 0 22px rgba(180, 210, 255, 0.95))
    drop-shadow(0 0 55px rgba(61, 142, 240, 0.75))
    drop-shadow(0 0 110px rgba(61, 142, 240, 0.4));
  animation: flashPulse 2.5s ease-in-out infinite;
  position: relative;
  z-index: 2;
}
.flash-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(160, 200, 255, 0.22);
  animation: expandRing 2.8s ease-out infinite;
}
.flash-ring:nth-child(1) {
  width: 230px;
  height: 230px;
  animation-delay: 0s;
}
.flash-ring:nth-child(2) {
  width: 310px;
  height: 310px;
  animation-delay: 0.93s;
}
.spark-logo {
  position: absolute;
  width: 260px;
  height: 260px;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
  z-index: 3;
  mix-blend-mode: lighten;
  filter: drop-shadow(0 0 30px rgba(61, 142, 240, 0.7))
    drop-shadow(0 0 70px rgba(61, 142, 240, 0.4))
    drop-shadow(0 0 120px rgba(61, 142, 240, 0.2));
  animation: flashPulse 2.5s ease-in-out infinite;
}
.spark-logo ~ .flash-svg {
  display: none;
}
.flash-ring:nth-child(3) {
  width: 390px;
  height: 390px;
  animation-delay: 1.86s;
}

/* ─── STATS ─── */
.stats {
  background: var(--ash);
  border-top: 1px solid var(--smoke);
  border-bottom: 1px solid var(--smoke);
  padding: 5rem 2rem;
  position: relative;
  z-index: 2;
}
.stats-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-item {
  padding: 2rem;
  position: relative;
}
.stat-item::after {
  content: "";
  position: absolute;
  right: 0;
  top: 20%;
  bottom: 20%;
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent,
    var(--smoke),
    transparent
  );
}
.stat-item:last-child::after {
  display: none;
}
.stat-number {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  color: var(--ember);
  line-height: 1;
  margin-bottom: 0.5rem;
  text-shadow: 0 0 30px rgba(61, 142, 240, 0.4);
}
.stat-label {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ─── FEATURES ─── */
.features {
  padding: 8rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
}
.features-header {
  text-align: center;
  margin-bottom: 5rem;
}
.features-header h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
}
.features-header p {
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.8;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--smoke);
}
.feature-card {
  background: var(--ash);
  padding: 3rem 2.5rem;
  position: relative;
  overflow: hidden;
  transition: background 0.4s ease;
}
.feature-card:hover {
  background: #0d1422;
}
.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--ember), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.feature-card:hover::before {
  opacity: 1;
}
.feature-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1.5rem;
  color: var(--ember);
  opacity: 0.85;
}
.feature-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.8rem;
}
.feature-card p {
  color: var(--text-muted);
  line-height: 1.8;
  font-size: 0.92rem;
}

/* ─── TIMELINE ─── */
.timeline-section {
  padding: 8rem 2rem;
  background: var(--ash);
  border-top: 1px solid var(--smoke);
  position: relative;
  z-index: 2;
}
.timeline-inner {
  max-width: 800px;
  margin: 0 auto;
}
.timeline-header {
  margin-bottom: 5rem;
}
.timeline-header h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 1rem;
}
.timeline-header p {
  color: var(--text-muted);
  line-height: 1.8;
}
.timeline {
  position: relative;
  padding-left: 3rem;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(
    to bottom,
    var(--ember),
    var(--smoke),
    transparent
  );
}
.timeline-item {
  position: relative;
  margin-bottom: 4rem;
  opacity: 0;
  transform: translateX(-20px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.timeline-item.visible {
  opacity: 1;
  transform: translateX(0);
}
.timeline-dot {
  position: absolute;
  left: -3rem;
  top: 6px;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: var(--ember);
  box-shadow: 0 0 15px rgba(61, 142, 240, 0.5);
  margin-left: -4px;
}
.timeline-dot::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid rgba(61, 142, 240, 0.3);
}
.timeline-date {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ember);
  margin-bottom: 0.5rem;
}
.timeline-item h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}
.timeline-item p {
  color: var(--text-muted);
  line-height: 1.8;
  font-size: 0.92rem;
}

/* ─── BRIDGE ─── */
.bridge {
  padding: 10rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 2;
}
.bridge-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 70% 60% at 50% 50%,
    rgba(61, 142, 240, 0.12) 0%,
    transparent 70%
  );
}
.bridge-inner {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}
.bridge-tag {
  display: inline-block;
  padding: 0.4rem 1.2rem;
  border: 1px solid rgba(61, 142, 240, 0.35);
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--ember);
  margin-bottom: 2.5rem;
  background: rgba(61, 142, 240, 0.05);
}
.bridge h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.bridge h2 span {
  background: linear-gradient(135deg, var(--gold), var(--ember-glow));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.bridge p {
  color: var(--text-muted);
  line-height: 1.9;
  font-size: 1rem;
  margin-bottom: 3rem;
}
.bridge-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 2.5rem;
  background: var(--ember);
  color: var(--coal);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.bridge-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--ember-glow);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}
.bridge-cta:hover::before {
  transform: translateX(0);
}
.bridge-cta span {
  position: relative;
  z-index: 1;
}

/* ─── FOOTER ─── */
footer {
  border-top: 1px solid var(--smoke);
  padding: 3rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.footer-logo {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--ember);
}
.footer-text {
  font-size: 0.75rem;
  color: var(--text-faint);
  letter-spacing: 0.1em;
}
.footer-right {
  font-size: 0.75rem;
  color: var(--text-faint);
 
}
.footer-right span a {
  color: var(--ember);
  text-decoration: none;
  
}

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.5rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(to bottom, rgba(10, 8, 6, 0.95), transparent);
  backdrop-filter: blur(10px);
}
.nav-logo {
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--ember);
  filter: drop-shadow(0 0 10px rgba(61, 142, 240, 0.4));
}
.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s ease;
}
.nav-links a:hover {
  color: var(--ember);
}

/* ─── KEYFRAMES ─── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes flashPulse {
  0%,
  100% {
    filter: drop-shadow(0 0 22px rgba(180, 210, 255, 0.95))
      drop-shadow(0 0 55px rgba(61, 142, 240, 0.75))
      drop-shadow(0 0 110px rgba(61, 142, 240, 0.4));
  }
  50% {
    filter: drop-shadow(0 0 40px rgba(200, 225, 255, 1))
      drop-shadow(0 0 90px rgba(90, 160, 255, 0.95))
      drop-shadow(0 0 160px rgba(61, 142, 240, 0.65));
  }
}
@keyframes expandRing {
  0% {
    opacity: 0.45;
    transform: scale(0.8);
  }
  100% {
    opacity: 0;
    transform: scale(1.45);
  }
}
@keyframes scrollPulse {
  0%,
  100% {
    opacity: 0.3;
    transform: scaleY(1);
  }
  50% {
    opacity: 1;
    transform: scaleY(1.1);
  }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  nav {
    padding: 1.2rem 1.5rem;
  }
  .nav-links {
    display: none;
  }
  .origin {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .origin-visual {
    height: 280px;
  }
  .stats-inner {
    grid-template-columns: 1fr;
  }
  .stat-item::after {
    display: none;
  }
  .poster-break-inner img{
    width: 100%;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  footer {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(25px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
/* ─── LAUNCH / LEGACY SECTION ─── */
.launch-section {
  padding: 8rem 2rem;
  background: var(--ash);
  border-top: 1px solid var(--smoke);
  position: relative;
  z-index: 2;
}
.launch-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
.launch-header h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-primary);
}
.launch-header h2 span {
  color: var(--gold);
}
.launch-header p {
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 580px;
}

/* Date banner */
.launch-date-banner {
  display: flex;
  align-items: center;
  gap: 2rem;
  background: linear-gradient(135deg, rgba(232, 184, 75, 0.08), rgba(61, 142, 240, 0.06));
  border: 1px solid rgba(232, 184, 75, 0.3);
  padding: 2rem 2.5rem;
  position: relative;
  overflow: hidden;
}
.launch-date-banner::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--gold), var(--ember), transparent);
}
.launch-date-icon {
  font-size: 2rem;
  flex-shrink: 0;
}
.launch-date-label {
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}
.launch-date-value {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  text-shadow: 0 0 40px rgba(232, 184, 75, 0.5);
}
.launch-date-sub {
  margin-left: auto;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  text-align: right;
}
.launch-date-sub strong {
  color: var(--text-primary);
  font-weight: 500;
}

/* Two column grid */
.launch-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5px;
  background: var(--smoke);
}
.launch-card {
  background: var(--coal);
  padding: 3rem 2.5rem;
  position: relative;
  overflow: hidden;
}
.launch-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
}
.launch-tagline-card::before {
  background: linear-gradient(to right, var(--gold), transparent);
}
.launch-fair-card::before {
  background: linear-gradient(to right, var(--ember), transparent);
}

/* Tagline card */
.launch-tagline {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.3;
  margin-bottom: 0.3rem;
}
.launch-tagline-gold {
  color: var(--gold);
  text-shadow: 0 0 30px rgba(232, 184, 75, 0.4);
  margin-bottom: 1.5rem;
}
.launch-sub-copy {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 2rem;
}
.launch-urgency {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1.2rem 1.5rem;
  background: rgba(232, 184, 75, 0.05);
  border: 1px solid rgba(232, 184, 75, 0.2);
  font-size: 0.88rem;
  color: var(--text-primary);
  line-height: 1.7;
}
.urgency-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

/* Fair launch card */
.fair-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 2rem;
  letter-spacing: 0.05em;
}
.fair-title span:first-child {
  font-size: 1.3rem;
}
.fair-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.fair-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.fair-check {
  color: var(--gold);
  font-size: 0.6rem;
  flex-shrink: 0;
}

/* CTA row */
.launch-cta-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
  padding: 3rem 0 1rem;
  border-top: 1px solid var(--smoke);
}
.launch-cta-label {
  font-size: 0.7rem;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
.launch-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 2.8rem;
  background: var(--gold);
  color: var(--coal);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.launch-cta-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #fff;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.launch-cta-btn:hover::before {
  opacity: 0.12;
}
.launch-cta-btn span {
  position: relative;
  z-index: 1;
}
.launch-cta-link {
  font-size: 0.78rem;
  color: var(--ember);
  letter-spacing: 0.05em;
}

/* Responsive */
@media (max-width: 768px) {
  .launch-grid {
    grid-template-columns: 1fr;
  }
  .launch-date-banner {
    flex-wrap: wrap;
    gap: 1rem;
  }
  .launch-date-sub {
    margin-left: 0;
    text-align: left;
  }
}

/* ─── POSTER BREAK ─── */
.poster-break-inner {
  padding: 4rem 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.poster-media-item {
  position: relative;
  overflow: hidden;
  line-height: 0;
}
.poster-media-item img,
.poster-media-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border: 1px solid var(--smoke);
  transition: filter 0.4s ease;
}
.poster-media-item:hover img,
.poster-media-item:hover video {
  filter: brightness(1.08);
}
.poster-video-wrap {
  position: relative;
}
.video-overlay-label {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(6, 8, 13, 0.75);
  padding: 0.35rem 0.85rem;
  backdrop-filter: blur(6px);
  border: 1px solid rgba(232, 184, 75, 0.25);
  pointer-events: none;
}

@media (max-width: 768px) {
  .poster-break-inner {
    grid-template-columns: 1fr;
    padding: 2rem 1rem;
  }
}
/* ─── HERO AUDIO PLAYER ─── */
.hero-audio-player {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-top: 2.5rem;
  padding: 0.9rem 1.4rem;
  background: rgba(6, 8, 13, 0.6);
  border: 1px solid rgba(232, 184, 75, 0.25);
  backdrop-filter: blur(12px);
  width: fit-content;
  position: relative;
  z-index: 10;
}
.hero-audio-player::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, var(--gold), var(--ember), transparent);
}

/* Play/pause button */
.audio-play-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(232, 184, 75, 0.5);
  background: rgba(232, 184, 75, 0.1);
  color: var(--gold);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.25s ease;
}
.audio-play-btn:hover {
  background: rgba(232, 184, 75, 0.22);
  border-color: var(--gold);
  box-shadow: 0 0 16px rgba(232, 184, 75, 0.3);
}
.audio-play-btn svg {
  width: 16px;
  height: 16px;
}
.audio-play-btn svg polygon {
  transform: translateX(1px);
}

/* Track info */
.audio-info {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  min-width: 160px;
}
.audio-track-name {
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
.audio-progress-wrap {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.audio-progress-bar {
  flex: 1;
  height: 2px;
  background: rgba(255,255,255,0.1);
  cursor: pointer;
  position: relative;
}
.audio-progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(to right, var(--gold), var(--ember));
  transition: width 0.1s linear;
  pointer-events: none;
}
.audio-time {
  font-size: 0.65rem;
  color: var(--text-muted);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

/* Animated bars (visible while playing) */
.audio-bars {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.audio-bars.playing {
  opacity: 1;
}
.audio-bars span {
  display: block;
  width: 3px;
  background: var(--gold);
  border-radius: 2px;
  animation: audioBar 0.8s ease-in-out infinite alternate;
}
.audio-bars span:nth-child(1) { height: 8px;  animation-delay: 0s;    }
.audio-bars span:nth-child(2) { height: 16px; animation-delay: 0.15s; }
.audio-bars span:nth-child(3) { height: 12px; animation-delay: 0.3s;  }
.audio-bars span:nth-child(4) { height: 18px; animation-delay: 0.1s;  }
.audio-bars span:nth-child(5) { height: 9px;  animation-delay: 0.25s; }

@keyframes audioBar {
  from { transform: scaleY(0.4); opacity: 0.5; }
  to   { transform: scaleY(1);   opacity: 1;   }
}