/* ═══════════════════════════════════════════════════
   WanderBeastAI — Cinematic Landing Experience
   CSS animations + Intersection Observer, no framework
   ═══════════════════════════════════════════════════ */

:root {
  --wc-gold:         #C9A227;
  --wc-gold-light:   #E8C560;
  --wc-gold-dim:     rgba(201, 162, 39, 0.15);
  --wc-gold-border:  rgba(201, 162, 39, 0.28);
  --wc-glass-bg:     rgba(4, 8, 18, 0.50);
  --wc-text:         #F5EFD8;
  --wc-text-muted:   rgba(245, 239, 216, 0.72);
  --wc-ease:         cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ═══ FULL-WIDTH BREAKOUT ════════════════════════════
   #loginView renders as a 2-col CSS grid; this forces
   #wiCinematicLanding to span all columns and bleed
   to full viewport width regardless of grid padding.
   ═════════════════════════════════════════════════════ */

/* Allow the landing page to scroll past 100vh so all cinematic sections are reachable.
   .login-view sets overflow:hidden which clips everything below the first viewport.
   overflow-x:clip prevents horizontal bleed without creating a scroll container
   (no BFC side-effects, window scroll events still fire normally for parallax).
   We do NOT override display or min-height — .hidden { display:none !important } must
   still work so enterApp() can hide #loginView when the user logs in or goes guest. */
#loginView {
  overflow-x: clip !important;
  overflow-y: visible !important;
}

#wiCinematicLanding {
  grid-column: 1 / -1;
  width: 100vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  /* overflow-x:clip (not hidden) clips horizontal bleed from translateX(-50%)
     WITHOUT creating a scroll container — required so position:sticky in the
     journey section resolves against the window, not this element.           */
  overflow-x: clip;
  margin-top: 0;
  margin-bottom: 0;
  /* Must be above .wi-stars (z-index:1) but below .wi-landing-nav (z-index:20) */
  z-index: 5;
}

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

#wiCinematicHero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wc-hero-bg-wrap {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.wc-hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  transform-origin: center center;
  animation: wcHeroZoom 4.5s var(--wc-ease) forwards;
}

@keyframes wcHeroZoom {
  from { transform: scale(1.14); }
  to   { transform: scale(1.00); }
}

/* Mist atmosphere overlay */
.wc-hero-mist {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 130% 45% at 50% 100%, rgba(0, 0, 0, 0.65) 0%, transparent 70%),
    radial-gradient(ellipse 90% 35% at 15% 65%,  rgba(20, 12, 0, 0.22) 0%, transparent 65%);
  animation: wcMistFloat 9s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes wcMistFloat {
  from { opacity: 0.55; transform: translateY(0); }
  to   { opacity: 0.80; transform: translateY(-10px); }
}

/* Multi-layer dark overlay */
.wc-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top,   rgba(0, 0, 0, 0.80) 0%, rgba(0, 0, 0, 0.18) 35%, transparent 65%),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.42) 0%, transparent 18%),
    radial-gradient(ellipse 100% 100% at 50% 50%, transparent 42%, rgba(0, 0, 0, 0.28) 100%);
  pointer-events: none;
}

/* Hero content block */
.wc-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 860px;
  padding: 0 clamp(24px, 5vw, 64px);
  padding-top: 60px; /* account for fixed nav */
}

.wc-hero-ornament-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 28px;
  animation: wcFadeUp 1s var(--wc-ease) 0.55s both;
}

.wc-hero-ornament-line {
  width: clamp(48px, 8vw, 88px);
  height: 1px;
  background: linear-gradient(to right, transparent, var(--wc-gold));
  opacity: 0.65;
}

.wc-hero-ornament-line:last-child {
  background: linear-gradient(to left, transparent, var(--wc-gold));
}

.wc-hero-ornament-gem {
  color: var(--wc-gold);
  font-size: 20px;
  text-shadow: 0 0 24px rgba(201, 162, 39, 0.7);
  line-height: 1;
}

.wc-hero-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.5rem, 6.5vw, 5.2rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.015em;
  color: #fff;
  margin: 0 0 22px;
  text-shadow: 0 4px 32px rgba(0, 0, 0, 0.65);
  animation: wcFadeUp 1.1s var(--wc-ease) 0.65s both;
}

.wc-hero-headline .wc-gold {
  color: var(--wc-gold);
  text-shadow: 0 0 48px rgba(201, 162, 39, 0.38), 0 4px 32px rgba(0, 0, 0, 0.65);
}

.wc-hero-sub {
  font-size: clamp(1rem, 2vw, 1.22rem);
  color: rgba(255, 255, 255, 0.80);
  line-height: 1.68;
  max-width: 620px;
  margin: 0 auto 38px;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.55);
  animation: wcFadeUp 1s var(--wc-ease) 0.85s both;
}

.wc-hero-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  animation: wcFadeUp 1s var(--wc-ease) 1.05s both;
}

/* CTA buttons */
.wc-btn-primary {
  display: inline-flex;
  align-items: center;
  padding: 15px 34px;
  background: linear-gradient(135deg, var(--wc-gold) 0%, #E0922A 100%);
  color: #0A0700;
  font-weight: 700;
  font-size: 0.94rem;
  letter-spacing: 0.05em;
  text-decoration: none;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 32px rgba(201, 162, 39, 0.38);
  transition: transform 0.22s var(--wc-ease), box-shadow 0.22s var(--wc-ease), filter 0.22s;
  white-space: nowrap;
}

.wc-btn-primary:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 14px 44px rgba(201, 162, 39, 0.52);
  filter: brightness(1.07);
  color: #0A0700;
  text-decoration: none;
}

.wc-btn-ghost {
  display: inline-flex;
  align-items: center;
  padding: 14px 34px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-weight: 600;
  font-size: 0.94rem;
  letter-spacing: 0.05em;
  text-decoration: none;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.30);
  cursor: pointer;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background 0.22s, border-color 0.22s, transform 0.22s var(--wc-ease);
  white-space: nowrap;
}

.wc-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.55);
  transform: translateY(-3px);
  color: #fff;
  text-decoration: none;
}

/* Scroll hint */
.wc-scroll-hint {
  position: absolute;
  bottom: 34px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  animation: wcFadeUp 1s var(--wc-ease) 1.7s both;
}

.wc-scroll-hint-text {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.wc-scroll-arrow {
  width: 22px;
  height: 22px;
  border-right: 1.5px solid rgba(255, 255, 255, 0.38);
  border-bottom: 1.5px solid rgba(255, 255, 255, 0.38);
  transform: rotate(45deg);
  animation: wcArrowBounce 2s ease-in-out infinite;
}

@keyframes wcArrowBounce {
  0%, 100% { transform: rotate(45deg) translateY(0);   opacity: 0.38; }
  50%       { transform: rotate(45deg) translateY(7px); opacity: 0.85; }
}

/* ═══ JOURNEY CONTAINER ══════════════════════════════ */

#wiCinematicJourney {
  position: relative;
}

/* ── Vertical Progress Navigator ── */
.wc-progress-nav {
  position: fixed;
  right: clamp(14px, 2.8vw, 34px);
  top: 50%;
  transform: translateY(-50%);
  z-index: 15;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s var(--wc-ease);
}

.wc-progress-nav.wc-progress-nav--visible {
  opacity: 1;
  pointer-events: auto;
}

/* Vertical line behind dots */
.wc-progress-nav::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 4px;
  bottom: 4px;
  width: 1px;
  background: rgba(255, 255, 255, 0.12);
  transform: translateX(-50%);
  pointer-events: none;
}

.wc-dot {
  position: relative;
  z-index: 1;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  border: 1.5px solid rgba(255, 255, 255, 0.32);
  cursor: pointer;
  padding: 0;
  transition: all 0.3s var(--wc-ease);
}

.wc-dot:hover {
  border-color: var(--wc-gold);
  transform: scale(1.5);
}

.wc-dot.wc-dot--active {
  background: var(--wc-gold);
  border-color: var(--wc-gold);
  transform: scale(1.35);
  box-shadow: 0 0 10px rgba(201, 162, 39, 0.55);
}

/* Tooltip label on hover */
.wc-dot::after {
  content: attr(title);
  position: absolute;
  right: calc(100% + 14px);
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.68rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
}

.wc-dot:hover::after { opacity: 1; }

/* ═══ CINEMATIC SECTIONS ═════════════════════════════ */

.wc-section {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* Parallax background container — extra vertical space for translateY movement */
.wc-bg-wrap {
  position: absolute;
  inset: -14% 0;
  width: 100%;
  height: 128%;
  will-change: transform;
}

/* Background image starts scaled up, then transitions to 1.0 on reveal */
.wc-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.12);
  transition: transform 2.2s var(--wc-ease);
}

.wc-section--visible .wc-bg-img {
  transform: scale(1.00);
}

/* Cinematic overlay — direction set by data-align */
.wc-section-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.wc-section[data-align="left"] .wc-section-overlay {
  background:
    linear-gradient(to right,
      rgba(0, 0, 0, 0.88) 0%,
      rgba(0, 0, 0, 0.58) 36%,
      rgba(0, 0, 0, 0.12) 68%,
      transparent 100%),
    linear-gradient(to top,   rgba(0, 0, 0, 0.40) 0%, transparent 28%),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.28) 0%, transparent 18%);
}

.wc-section[data-align="right"] .wc-section-overlay {
  background:
    linear-gradient(to left,
      rgba(0, 0, 0, 0.88) 0%,
      rgba(0, 0, 0, 0.58) 36%,
      rgba(0, 0, 0, 0.12) 68%,
      transparent 100%),
    linear-gradient(to top,   rgba(0, 0, 0, 0.40) 0%, transparent 28%),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.28) 0%, transparent 18%);
}

/* Warm amber tint for spiritual section */
.wc-section--spiritual[data-align="left"] .wc-section-overlay {
  background:
    linear-gradient(to right,
      rgba(18, 6, 0, 0.90) 0%,
      rgba(18, 6, 0, 0.60) 36%,
      rgba(0, 0, 0, 0.12) 68%,
      transparent 100%),
    linear-gradient(to top,   rgba(0, 0, 0, 0.40) 0%, transparent 28%),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.28) 0%, transparent 18%);
}

/* Cool blue tint for Mumbai night section */
.wc-section--night[data-align="right"] .wc-section-overlay {
  background:
    linear-gradient(to left,
      rgba(0, 4, 18, 0.90) 0%,
      rgba(0, 4, 18, 0.60) 36%,
      rgba(0, 0, 0, 0.12) 68%,
      transparent 100%),
    linear-gradient(to top,   rgba(0, 0, 0, 0.40) 0%, transparent 28%),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.28) 0%, transparent 18%);
}

/* Content positioning */
.wc-section-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 clamp(24px, 6vw, 88px);
  display: flex;
}

.wc-section[data-align="left"]  .wc-section-content { justify-content: flex-start; }
.wc-section[data-align="right"] .wc-section-content { justify-content: flex-end; }

/* Glassmorphism content card */
.wc-glass-card {
  max-width: 520px;
  padding: clamp(28px, 4vw, 54px);
  background: var(--wc-glass-bg);
  backdrop-filter: blur(22px) saturate(1.5) brightness(0.9);
  -webkit-backdrop-filter: blur(22px) saturate(1.5) brightness(0.9);
  border: 1px solid var(--wc-gold-border);
  border-radius: 18px;
  box-shadow:
    0 28px 72px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

/* Section label/number */
.wc-section-num {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--wc-gold);
  margin-bottom: 16px;
  opacity: 0;
  transform: translateY(18px);
}

/* Section title */
.wc-section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.85rem, 3.6vw, 3.1rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--wc-text);
  margin: 0 0 12px;
  opacity: 0;
  transform: translateY(28px);
}

/* Section subtitle */
.wc-section-subtitle {
  font-size: clamp(0.88rem, 1.5vw, 1.05rem);
  color: var(--wc-gold-light);
  font-style: italic;
  margin: 0 0 18px;
  line-height: 1.5;
  opacity: 0;
  transform: translateY(22px);
}

/* Section description */
.wc-section-desc {
  font-size: clamp(0.84rem, 1.3vw, 0.96rem);
  color: var(--wc-text-muted);
  line-height: 1.78;
  margin: 0 0 24px;
  opacity: 0;
  transform: translateY(18px);
}

/* Tag pills */
.wc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.wc-tag {
  padding: 5px 14px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--wc-gold);
  background: var(--wc-gold-dim);
  border: 1px solid var(--wc-gold-border);
  border-radius: 30px;
  opacity: 0;
  transform: translateY(14px);
}

/* ── Reveal keyframe ── */
@keyframes wcFadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Apply animations when section becomes visible ── */
.wc-section--visible .wc-section-num {
  animation: wcFadeUp 0.72s var(--wc-ease) 0.06s both;
}
.wc-section--visible .wc-section-title {
  animation: wcFadeUp 0.88s var(--wc-ease) 0.18s both;
}
.wc-section--visible .wc-section-subtitle {
  animation: wcFadeUp 0.80s var(--wc-ease) 0.32s both;
}
.wc-section--visible .wc-section-desc {
  animation: wcFadeUp 0.80s var(--wc-ease) 0.46s both;
}
.wc-section--visible .wc-tag:nth-child(1) { animation: wcFadeUp 0.60s var(--wc-ease) 0.64s both; }
.wc-section--visible .wc-tag:nth-child(2) { animation: wcFadeUp 0.60s var(--wc-ease) 0.75s both; }
.wc-section--visible .wc-tag:nth-child(3) { animation: wcFadeUp 0.60s var(--wc-ease) 0.86s both; }
.wc-section--visible .wc-tag:nth-child(4) { animation: wcFadeUp 0.60s var(--wc-ease) 0.97s both; }

/* ═══ FINAL CTA ══════════════════════════════════════ */

#wiCinematicFinalCta {
  position: relative;
  height: 100vh;
  min-height: 560px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wc-final-bg-wrap {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.wc-final-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  filter: brightness(0.38);
}

.wc-final-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top,   rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.5) 45%, rgba(0, 0, 0, 0.65) 100%);
  pointer-events: none;
}

.wc-final-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 680px;
  padding: 0 clamp(24px, 5vw, 60px);
  opacity: 0;
  transform: translateY(40px);
}

.wc-final-content.wc-final--visible {
  animation: wcFadeUp 1.1s var(--wc-ease) 0.15s both;
}

.wc-final-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.2rem, 5.5vw, 4.2rem);
  font-weight: 900;
  color: var(--wc-text);
  margin: 0 0 22px;
  line-height: 1.12;
  text-shadow: 0 4px 28px rgba(0, 0, 0, 0.55);
}

.wc-final-sub {
  font-size: clamp(0.95rem, 1.8vw, 1.14rem);
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.72;
  margin: 0 0 38px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}

/* ═══ RESPONSIVE ═════════════════════════════════════ */

@media (max-width: 768px) {
  #wiCinematicHero,
  .wc-section,
  #wiCinematicFinalCta {
    min-height: 520px;
  }

  /* Always left-align content on mobile */
  .wc-section-content {
    padding: 0 20px !important;
    justify-content: flex-start !important;
  }

  .wc-glass-card {
    max-width: calc(100vw - 48px);
    padding: 24px 22px;
  }

  /* Reduce parallax gap on mobile */
  .wc-bg-wrap {
    inset: -5% 0;
    height: 110%;
  }

  .wc-dot::after { display: none; }

  .wc-progress-nav { right: 12px; gap: 10px; }
}

@media (max-width: 480px) {
  .wc-hero-ctas { flex-direction: column; align-items: center; }
  .wc-progress-nav { display: none; }
}

/* ═══ REDUCED MOTION ════════════════════════════════ */

@media (prefers-reduced-motion: reduce) {
  .wc-hero-bg-img { animation: none !important; transform: none !important; }
  .wc-hero-mist   { animation: none !important; }
  .wc-scroll-arrow { animation: none !important; }
  .wc-bg-img { animation: none !important; transform: none !important; transition: none !important; }
  .wc-bg-wrap { transform: none !important; }

  .wc-hero-content,
  .wc-hero-ornament-row,
  .wc-hero-headline,
  .wc-hero-sub,
  .wc-hero-ctas,
  .wc-scroll-hint {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .wc-section-num,
  .wc-section-title,
  .wc-section-subtitle,
  .wc-section-desc,
  .wc-tag { opacity: 1 !important; transform: none !important; }

  .wc-section--visible .wc-section-num,
  .wc-section--visible .wc-section-title,
  .wc-section--visible .wc-section-subtitle,
  .wc-section--visible .wc-section-desc,
  .wc-section--visible .wc-tag {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .wc-final-content { opacity: 1 !important; transform: none !important; }
  .wc-final-content.wc-final--visible { animation: none !important; opacity: 1 !important; }
}

/* ═══════════════════════════════════════════════════════════
   SECTION 3 — AI PLANNER REVEAL
   ═══════════════════════════════════════════════════════════ */

#wcAiPlanner {
  position: relative;
  min-height: 100vh;
  background:
    radial-gradient(ellipse 130% 80% at 18% 55%, rgba(12, 20, 44, 1) 0%, #020408 58%),
    radial-gradient(ellipse 80% 65% at 82% 60%, rgba(10, 6, 28, 1) 0%, transparent 70%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: clamp(80px, 12vh, 140px) clamp(24px, 6vw, 80px);
}

.wcp-aurora {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 45% at 12% 52%, rgba(80, 42, 255, 0.07) 0%, transparent 65%),
    radial-gradient(ellipse 50% 42% at 82% 28%, rgba(42, 162, 255, 0.06) 0%, transparent 65%),
    radial-gradient(ellipse 40% 35% at 50% 82%, rgba(201, 162, 39,  0.05) 0%, transparent 65%);
  animation: wcAuroraShift 20s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes wcAuroraShift {
  from { opacity: 0.75; transform: translate(0,   0); }
  to   { opacity: 1.00; transform: translate(14px, -10px); }
}

.wcp-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.022) 1px, transparent 1px);
  background-size: 72px 72px;
  pointer-events: none;
}

.wcp-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}

/* ── Left copy ── */
.wcp-copy {
  opacity: 0;
  transform: translateY(40px);
}
.wcp-copy.wcp--visible { animation: wcFadeUp 1s var(--wc-ease) 0.08s both; }

.wcp-eyebrow {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--wc-gold);
  margin-bottom: 20px;
}

.wcp-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.9rem, 3.8vw, 3.2rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--wc-text);
  margin: 0 0 22px;
}

.wcp-desc {
  font-size: clamp(0.88rem, 1.4vw, 1.02rem);
  color: var(--wc-text-muted);
  line-height: 1.8;
  margin: 0 0 34px;
}

.wcp-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.wcp-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--wc-text-muted);
  line-height: 1.5;
}

.wcp-gem {
  color: var(--wc-gold);
  font-size: 0.72rem;
  flex-shrink: 0;
  margin-top: 3px;
  text-shadow: 0 0 12px rgba(201, 162, 39, 0.55);
}

/* ── Right UI panel ── */
.wcp-ui {
  display: flex;
  flex-direction: column;
  gap: 14px;
  opacity: 0;
  transform: translateY(40px);
}
.wcp-ui.wcp--visible { animation: wcFadeUp 1s var(--wc-ease) 0.28s both; }

.wcp-card {
  background: rgba(4, 8, 22, 0.82);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  overflow: hidden;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 24px 72px rgba(0,0,0,0.55);
}

.wcp-card-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 13px 18px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.03);
}

.wcp-dot-r, .wcp-dot-y, .wcp-dot-g {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.wcp-dot-r { background: rgba(255, 90, 90, 0.72); }
.wcp-dot-y { background: rgba(255,195, 60, 0.72); }
.wcp-dot-g { background: rgba( 50,215,120, 0.72); }

.wcp-card-bar-title {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  color: rgba(255,255,255,0.38);
  margin-left: 6px;
}

.wcp-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 18px;
}

.wcp-chip {
  padding: 6px 14px;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--wc-gold);
  background: var(--wc-gold-dim);
  border: 1px solid var(--wc-gold-border);
  border-radius: 30px;
  opacity: 0;
  transform: scale(0.8);
}

.wcp-card--input.wcp--visible .wcp-chip {
  animation: wcChipPop 0.44s cubic-bezier(0.34, 1.56, 0.64, 1) var(--d, 0s) both;
}

@keyframes wcChipPop {
  from { opacity: 0; transform: scale(0.72); }
  to   { opacity: 1; transform: scale(1.00); }
}

.wcp-gen-btn {
  margin: 2px 18px 18px;
  padding: 12px 20px;
  background: linear-gradient(135deg, var(--wc-gold) 0%, #E0922A 100%);
  color: #0A0700;
  font-weight: 700;
  font-size: 0.84rem;
  letter-spacing: 0.04em;
  border-radius: 10px;
  text-align: center;
}

.wcp-result-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--wc-text-muted);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.wcp-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ade80;
  flex-shrink: 0;
  animation: wcPulseGlow 2s ease-in-out infinite;
}

@keyframes wcPulseGlow {
  0%, 100% { box-shadow: 0 0 0 0   rgba(74,222,128,0.45); }
  50%       { box-shadow: 0 0 0 6px rgba(74,222,128,0);    }
}

.wcp-days {
  padding: 10px 18px;
  display: flex;
  flex-direction: column;
}

.wcp-day {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  font-size: 0.81rem;
  color: var(--wc-text-muted);
  opacity: 0;
  transform: translateX(-14px);
}
.wcp-day:last-child { border-bottom: none; }

.wcp-card--result.wcp--visible .wcp-day {
  animation: wcSlideRight 0.44s var(--wc-ease) var(--d, 0s) both;
}

@keyframes wcSlideRight {
  from { opacity: 0; transform: translateX(-14px); }
  to   { opacity: 1; transform: translateX(0);     }
}

.wcp-day b {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  color: var(--wc-gold);
  flex-shrink: 0;
  min-width: 38px;
}

.wcp-budget-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  padding: 12px 18px;
  font-size: 0.76rem;
  color: var(--wc-text-muted);
  border-top: 1px solid rgba(255,255,255,0.06);
}

.wcp-budget-num {
  margin-left: auto;
  color: var(--wc-gold);
  font-weight: 700;
}

.wcp-bar {
  width: 100%;
  height: 3px;
  background: rgba(255,255,255,0.07);
  border-radius: 3px;
  overflow: hidden;
}

.wcp-bar-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--wc-gold), #E0922A);
  border-radius: 3px;
  transition: width 1.5s cubic-bezier(0.22, 1, 0.36, 1) 0.9s;
}

.wcp-card--result.wcp--visible .wcp-bar-fill { width: 95%; }

/* ═══════════════════════════════════════════════════════════
   SECTION 4 — ATLAS FEATURE
   ═══════════════════════════════════════════════════════════ */

#wcAtlas {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}

.wca-bg-wrap {
  position: absolute;
  inset: -12% 0;
  height: 124%;
  will-change: transform;
}

.wca-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  transform: scale(1.20);
  filter: brightness(0.62) saturate(0.90);
  transition: transform 2.6s cubic-bezier(0.22, 1, 0.36, 1);
}

#wcAtlas.wca--visible .wca-bg-img { transform: scale(1.00); }

.wca-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 78% 78% at 50% 50%, rgba(0,0,0,0.30) 0%, rgba(0,0,0,0.74) 100%),
    linear-gradient(to top,    rgba(0,0,0,0.88) 0%, transparent 38%),
    linear-gradient(to bottom, rgba(0,0,0,0.62) 0%, transparent 28%);
  pointer-events: none;
}

.wca-inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 0 clamp(24px, 5vw, 60px);
  opacity: 0;
  transform: translateY(40px) scale(0.97);
}

#wcAtlas.wca--visible .wca-inner {
  animation: wcAtlasReveal 1.1s cubic-bezier(0.22, 1, 0.36, 1) 0.22s both;
}

@keyframes wcAtlasReveal {
  from { opacity: 0; transform: translateY(40px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0)    scale(1.00); }
}

.wca-eyebrow {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--wc-gold);
  margin-bottom: 20px;
}

.wca-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--wc-text);
  margin: 0 0 22px;
  text-shadow: 0 4px 32px rgba(0,0,0,0.55);
}

.wca-desc {
  font-size: clamp(0.9rem, 1.6vw, 1.08rem);
  color: rgba(255,255,255,0.70);
  line-height: 1.75;
  margin: 0 0 42px;
}

.wca-badges {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.wca-badge {
  padding: 12px 22px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 12px;
  font-size: 0.78rem;
  color: var(--wc-text-muted);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  line-height: 1;
  letter-spacing: 0.04em;
}

.wca-badge span {
  display: block;
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--wc-gold);
  line-height: 1;
  margin-bottom: 5px;
}

.wca-cta { display: inline-flex; }

/* ═══════════════════════════════════════════════════════════
   SECTION 5 — TRAVEL INTELLIGENCE
   ═══════════════════════════════════════════════════════════ */

#wcIntelligence {
  position: relative;
  min-height: 100vh;
  background:
    radial-gradient(ellipse 130% 72% at 62% 38%, rgba(8, 16, 36, 1) 0%, #020408 62%),
    radial-gradient(ellipse 65% 55% at  8% 72%, rgba(18,  6, 38, 0.85) 0%, transparent 70%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: clamp(80px, 12vh, 140px) clamp(24px, 6vw, 80px);
}

/* Subtle scan-line texture */
#wcIntelligence::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 3px,
    rgba(255,255,255,0.011) 3px,
    rgba(255,255,255,0.011) 4px
  );
  pointer-events: none;
}

.wci-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
}

.wci-header {
  text-align: center;
  margin-bottom: clamp(48px, 7vh, 82px);
  opacity: 0;
  transform: translateY(32px);
}
.wci-header.wci--visible { animation: wcFadeUp 1s var(--wc-ease) 0.06s both; }

.wci-eyebrow {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--wc-gold);
  margin-bottom: 18px;
}

.wci-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--wc-text);
  margin: 0 0 18px;
}

.wci-desc {
  font-size: clamp(0.88rem, 1.5vw, 1.03rem);
  color: var(--wc-text-muted);
  line-height: 1.75;
  max-width: 580px;
  margin: 0 auto;
}

.wci-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.wci-card {
  background: rgba(4, 10, 26, 0.80);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 26px 22px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  opacity: 0;
  transform: translateY(26px);
  transition: border-color 0.28s var(--wc-ease), box-shadow 0.28s var(--wc-ease);
}

.wci-card.wci--visible {
  animation: wcFadeUp 0.62s var(--wc-ease) var(--d, 0s) both;
}

.wci-card:hover {
  border-color: var(--wc-gold-border);
  box-shadow: 0 12px 40px rgba(0,0,0,0.35);
}

.wci-icon {
  font-size: 1.65rem;
  line-height: 1;
  flex-shrink: 0;
  filter: drop-shadow(0 0 8px rgba(201, 162, 39, 0.28));
}

.wci-card-body { flex: 1; min-width: 0; }

.wci-card-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--wc-text);
  margin-bottom: 7px;
  letter-spacing: 0.02em;
}

.wci-card-sub {
  font-size: 0.77rem;
  color: var(--wc-text-muted);
  line-height: 1.58;
  margin-bottom: 13px;
}

.wci-badge {
  display: inline-block;
  padding: 3px 11px;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 20px;
}

.wci-badge--safe { background: rgba(74,222,128,0.11); color: #4ade80; border: 1px solid rgba(74,222,128,0.24); }
.wci-badge--warn { background: rgba(251,191, 36,0.11); color: #fbbf24; border: 1px solid rgba(251,191, 36,0.24); }
.wci-badge--risk { background: rgba(239, 68, 68,0.11); color: #ef4444; border: 1px solid rgba(239, 68, 68,0.24); }

/* ═══════════════════════════════════════════════════════════
   SECTION 6 — PROFILE & PREMIUM TIERS
   ═══════════════════════════════════════════════════════════ */

#wcProfileTiers {
  position: relative;
  min-height: 100vh;
  background:
    radial-gradient(ellipse 100% 80% at 50% 18%, rgba(6, 10, 26, 1) 0%, #020408 60%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: clamp(80px, 12vh, 140px) clamp(24px, 6vw, 80px);
}

#wcProfileTiers::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201,162,39,0.22), transparent);
}

.wcpt-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
}

.wcpt-header {
  text-align: center;
  margin-bottom: clamp(48px, 7vh, 82px);
  opacity: 0;
  transform: translateY(32px);
}
.wcpt-header.wcpt--visible { animation: wcFadeUp 1s var(--wc-ease) 0.06s both; }

.wcpt-eyebrow {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--wc-gold);
  margin-bottom: 18px;
}

.wcpt-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--wc-text);
  margin: 0 0 18px;
}

.wcpt-desc {
  font-size: clamp(0.88rem, 1.5vw, 1.03rem);
  color: var(--wc-text-muted);
  line-height: 1.75;
  max-width: 540px;
  margin: 0 auto;
}

.wcpt-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}

.wcpt-card {
  position: relative;
  background: rgba(4, 8, 22, 0.76);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: clamp(26px, 3.2vw, 42px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  transform: translateY(34px);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.wcpt-card.wcpt--visible {
  animation: wcFadeUp 0.82s var(--wc-ease) var(--d, 0s) both;
}

.wcpt-card--registered {
  border-color: rgba(255,255,255,0.13);
}

.wcpt-card--premium {
  border-color: var(--wc-gold-border);
  box-shadow: 0 0 60px rgba(201,162,39,0.07);
}

.wcpt-card--premium:hover {
  box-shadow: 0 0 88px rgba(201,162,39,0.16);
}

/* Shimmer sweep on premium card */
.wcpt-shimmer {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    108deg,
    transparent 35%,
    rgba(201, 162, 39, 0.045) 50%,
    transparent 65%
  );
  background-size: 200% 100%;
  animation: wcShimmer 4.5s ease-in-out infinite;
  pointer-events: none;
}

@keyframes wcShimmer {
  from { background-position: -100% 0; }
  to   { background-position:  300% 0; }
}

.wcpt-tier-badge {
  display: inline-block;
  width: fit-content;
  padding: 4px 14px;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 30px;
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.48);
  border: 1px solid rgba(255,255,255,0.11);
  margin-bottom: 22px;
}

.wcpt-tier-badge--gold {
  background: var(--wc-gold-dim);
  color: var(--wc-gold);
  border-color: var(--wc-gold-border);
}

.wcpt-card-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  font-weight: 800;
  color: var(--wc-text);
  margin: 0 0 22px;
  line-height: 1.15;
}

.wcpt-perks {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.wcpt-perks li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--wc-text-muted);
  line-height: 1.45;
}

.wcpt-perks li::before {
  content: '✓';
  color: var(--wc-gold);
  font-weight: 700;
  font-size: 0.78rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.wcpt-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 24px;
  border-radius: 50px;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: transform 0.22s var(--wc-ease), box-shadow 0.22s, background 0.22s, border-color 0.22s;
  white-space: nowrap;
}

.wcpt-cta--ghost {
  background: transparent;
  color: rgba(255,255,255,0.60);
  border: 1px solid rgba(255,255,255,0.18);
}
.wcpt-cta--ghost:hover {
  border-color: rgba(255,255,255,0.48);
  color: #fff;
  transform: translateY(-2px);
  text-decoration: none;
}

.wcpt-cta--primary {
  background: rgba(255,255,255,0.09);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.22);
}
.wcpt-cta--primary:hover {
  background: rgba(255,255,255,0.17);
  transform: translateY(-2px);
  text-decoration: none;
  color: #fff;
}

.wcpt-cta--gold {
  background: linear-gradient(135deg, var(--wc-gold) 0%, #E0922A 100%);
  color: #0A0700;
  border: none;
  box-shadow: 0 8px 28px rgba(201,162,39,0.32);
}
.wcpt-cta--gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(201,162,39,0.50);
  filter: brightness(1.07);
  color: #0A0700;
  text-decoration: none;
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — new sections
   ═══════════════════════════════════════════════════════════ */

@media (max-width: 1024px) {
  .wcp-inner   { grid-template-columns: 1fr; }
  .wci-grid    { grid-template-columns: repeat(2, 1fr); }
  .wcpt-cards  { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .wci-grid   { grid-template-columns: 1fr; }
  .wcpt-cards { grid-template-columns: 1fr; }
  .wca-badges { gap: 10px; }
  .wca-badge  { padding: 10px 16px; }
  .wca-badge span { font-size: 1.25rem; }
}

/* ═══════════════════════════════════════════════════════════
   REDUCED MOTION — new sections
   ═══════════════════════════════════════════════════════════ */

@media (prefers-reduced-motion: reduce) {
  .wcp-aurora { animation: none !important; }
  .wcpt-shimmer { animation: none !important; }
  .wcp-pulse  { animation: none !important; }

  .wcp-copy, .wcp-ui,
  .wca-inner,
  .wci-header, .wci-card,
  .wcpt-header, .wcpt-card {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }

  .wca-bg-img { transform: none !important; transition: none !important; }

  .wcp-chip { opacity: 1 !important; transform: none !important; animation: none !important; }
  .wcp-day  { opacity: 1 !important; transform: none !important; animation: none !important; }
  .wcp-bar-fill { transition: none !important; width: 95% !important; }
}


/* ═══════════════════════════════════════════════════════════
   PETRALITHE UPGRADE — Cinematic Premium Layer v3.0
   Grain · Scan · Badges · Marquee · Bg Nums · Clip Wipe
   ═══════════════════════════════════════════════════════════ */

/* ── Extended tokens ── */
:root {
  --wc-section-dark: rgb(2, 4, 8);
}

/* ══ GRAIN FILM TEXTURE ══════════════════════════════════════
   Subtle animated noise on hero + journey sections.
   Uses inline SVG feTurbulence — zero external requests.       */

/* Uses ::before so .wc-section::after (bottom bleed) can coexist without conflict */
.wc-grain::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 8;
  opacity: 0.038;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.80' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='240' height='240' filter='url(%23g)'/%3E%3C/svg%3E");
  background-size: 240px 240px;
  mix-blend-mode: screen;
  animation: wcGrainShift 0.22s steps(1) infinite;
  border-radius: inherit;
}

@keyframes wcGrainShift {
  0%   { background-position:   0%   0%; }
  25%  { background-position: 100%   0%; }
  50%  { background-position:   0% 100%; }
  75%  { background-position: 100% 100%; }
}

/* ══ HERO SCAN LINE ══════════════════════════════════════════
   A gold-tinted horizontal bar sweeps from top to bottom
   once on page load — like a film projector warming up.        */

.wc-hero-scan {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1.5px;
  background: linear-gradient(
    to right,
    transparent 0%,
    rgba(255,255,255,0.00) 8%,
    rgba(255,255,255,0.25) 38%,
    rgba(201,162,39,0.60) 50%,
    rgba(255,255,255,0.25) 62%,
    rgba(255,255,255,0.00) 92%,
    transparent 100%
  );
  pointer-events: none;
  z-index: 7;
  animation: wcScanDown 3.0s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.15s forwards;
  opacity: 0;
  will-change: top, opacity;
}

@keyframes wcScanDown {
  0%   { top:  2%; opacity: 0;   }
  5%   { top:  2%; opacity: 0.95; }
  87%  { opacity: 0.70; }
  100% { top: 97%; opacity: 0;   }
}

/* ══ FLOATING HERO BADGES ════════════════════════════════════ */

.wc-hero-floats {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 3;
}

.wc-hfb {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
  padding: 10px 14px;
  background: rgba(4, 8, 18, 0.48);
  border: 1px solid rgba(201, 162, 39, 0.25);
  border-radius: 10px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  opacity: 0;
  transform: translateY(20px);
  animation: wcFadeUp 0.72s var(--wc-ease) var(--d, 1.8s) both,
             wcHfbFloat 7s ease-in-out calc(var(--d, 1.8s) + 0.85s) infinite alternate;
}

@keyframes wcHfbFloat {
  from { transform: translateY(0px);  }
  to   { transform: translateY(-9px); }
}

.wc-hfb-val {
  font-size: 0.96rem;
  font-weight: 700;
  color: var(--wc-gold);
  letter-spacing: 0.04em;
  line-height: 1;
}

.wc-hfb-label {
  font-size: 0.60rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
  line-height: 1;
}

/* Badge positions */
.wc-hfb--alt  { top: 28%; left: clamp(28px, 5.5vw, 88px); }
.wc-hfb--lat  { top: 17%; right: clamp(28px, 7vw, 115px); }
.wc-hfb--temp { bottom: 22%; right: clamp(20px, 11vw, 190px); }

@media (max-width: 768px) {
  .wc-hero-floats { display: none; }
}

/* ══ MARQUEE DESTINATION / AI RIBBON ════════════════════════ */

.wc-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 15px 0;
  background: var(--wc-section-dark);
  border-top:    1px solid rgba(201, 162, 39, 0.13);
  border-bottom: 1px solid rgba(201, 162, 39, 0.13);
  z-index: 6;
}

.wc-marquee--dark {
  background: rgba(2, 4, 10, 0.94);
  border-color: rgba(255, 255, 255, 0.052);
}

.wc-marquee-inner {
  display: flex;
  width: max-content;
  align-items: center;
}

.wc-marquee-track {
  display: inline-flex;
  align-items: center;
  animation: wcMarqueeScroll 26s linear infinite;
  will-change: transform;
}

.wc-marquee-track--reverse {
  animation-direction: reverse;
  animation-duration: 30s;
}

@keyframes wcMarqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.wc-marquee-item {
  display: inline-block;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.27);
  padding: 0 26px;
  white-space: nowrap;
}

.wc-marquee-gem {
  display: inline-block;
  color: var(--wc-gold);
  font-size: 0.58rem;
  opacity: 0.42;
  flex-shrink: 0;
}

/* Pause on hover for accessibility */
.wc-marquee:hover .wc-marquee-track {
  animation-play-state: paused;
}

/* ══ LARGE BACKGROUND SECTION NUMBERS ═══════════════════════
   Editorial typographic anchors behind each glass card —
   barely visible, adds cinematic depth and scale.             */

.wc-section-bg-num {
  position: absolute;
  bottom: 5%;
  pointer-events: none;
  user-select: none;
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 900;
  font-size: clamp(120px, 17vw, 255px);
  line-height: 0.9;
  letter-spacing: -0.05em;
  color: rgba(255, 255, 255, 0.028);
  z-index: 1;
  opacity: 0;
  transition: opacity 2s var(--wc-ease) 0.5s;
}

.wc-section--visible .wc-section-bg-num { opacity: 1; }

.wc-section[data-align="left"]  .wc-section-bg-num { left: clamp(16px, 3.5vw, 56px); }
.wc-section[data-align="right"] .wc-section-bg-num { right: clamp(16px, 3.5vw, 56px); }

/* ══ GLASS CARD CLIP-PATH WIPE REVEAL ═══════════════════════
   Cards are clipped and wipe in from their edge when visible.
   Left sections slide in from left; right from right.         */

.wc-section[data-align="left"] .wc-glass-card {
  clip-path: inset(0 100% 0 0 round 18px);
  transition: clip-path 1.08s cubic-bezier(0.22, 1, 0.36, 1) 0.18s;
}
.wc-section[data-align="left"].wc-section--visible .wc-glass-card {
  clip-path: inset(0 0% 0 0 round 18px);
}

.wc-section[data-align="right"] .wc-glass-card {
  clip-path: inset(0 0 0 100% round 18px);
  transition: clip-path 1.08s cubic-bezier(0.22, 1, 0.36, 1) 0.18s;
}
.wc-section[data-align="right"].wc-section--visible .wc-glass-card {
  clip-path: inset(0 0 0 0% round 18px);
}

/* ══ SECTION BOTTOM BLEED ════════════════════════════════════
   Each cinematic section fades to near-black at the bottom,
   creating seamless visual continuity between sections.        */

.wc-section::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 160px;
  background: linear-gradient(to bottom, transparent 0%, rgba(2, 4, 8, 0.96) 100%);
  pointer-events: none;
  z-index: 3;
}

/* Mumbai finale: no bottom bleed — it transitions directly to the final CTA */
.wc-section--night::after { display: none; }

/* ══ MUMBAI CITY LIGHT BLOOMS ════════════════════════════════ */

.wc-city-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  background:
    radial-gradient(ellipse 38% 22% at 64% 72%, rgba(255,175,50,0.14) 0%, transparent 70%),
    radial-gradient(ellipse 24% 18% at 77% 58%, rgba(120,185,255,0.10) 0%, transparent 65%),
    radial-gradient(ellipse 28% 20% at 52% 78%, rgba(255,215,70,0.10) 0%, transparent 65%),
    radial-gradient(ellipse 18% 14% at 85% 68%, rgba(255,140,80,0.08) 0%, transparent 65%);
  animation: wcCityGlowPulse 4.5s ease-in-out infinite alternate;
}

@keyframes wcCityGlowPulse {
  from { opacity: 0.62; }
  to   { opacity: 1.00; }
}

/* ══ HERO WORD-BY-WORD REVEAL ════════════════════════════════
   JS splits headline into .wc-word spans.
   Each word slides up + de-skews with stagger.                */

.wc-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(22px) skewX(-3deg);
  animation: wcWordReveal 0.62s cubic-bezier(0.22, 1, 0.36, 1) var(--wd, 0.65s) both;
}

@keyframes wcWordReveal {
  from { opacity: 0; transform: translateY(22px) skewX(-3deg); }
  to   { opacity: 1; transform: translateY(0px)  skewX(0deg);  }
}

/* Suppress the heading-level fade once JS splits it into words */
.wc-hero-headline.wc-words-split {
  animation: none !important;
  opacity: 1 !important;
  transform: none !important;
}

/* ══ PETRALITHE EDITORIAL DIVIDER LINE ═══════════════════════ */

.wc-editorial-line {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 28px clamp(24px, 6vw, 88px);
  background: var(--wc-section-dark);
}

.wc-editorial-line::before,
.wc-editorial-line::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201,162,39,0.20), transparent);
}

.wc-editorial-text {
  font-size: 0.60rem;
  font-weight: 700;
  letter-spacing: 0.30em;
  text-transform: uppercase;
  color: rgba(201, 162, 39, 0.36);
  white-space: nowrap;
}

/* ══ REDUCED MOTION — all new effects ════════════════════════ */

@media (prefers-reduced-motion: reduce) {
  .wc-grain::before      { animation: none !important; }
  .wc-hero-scan          { animation: none !important; opacity: 0 !important; }
  .wc-hfb                { animation: none !important; opacity: 1 !important; transform: none !important; }
  .wc-marquee-track      { animation: none !important; }
  .wc-section-bg-num     { opacity: 1 !important; transition: none !important; }
  .wc-city-glow          { animation: none !important; }
  .wc-word               { animation: none !important; opacity: 1 !important; transform: none !important; }

  .wc-section[data-align="left"]  .wc-glass-card,
  .wc-section[data-align="right"] .wc-glass-card {
    clip-path: none !important;
    transition:  none !important;
  }
}

/* ══════════════════════════════════════════════════════════════
   STICKY IMMERSIVE JOURNEY ENGINE
   Tall container (8 × 150 vh) pins a viewport-height frame at
   top:0 so the whole scroll budget is consumed by one pinned
   frame. JS reads container scrollTop and crossfades + zooms
   the 8 scene layers for a "walk-through" 3-D feel.
   ══════════════════════════════════════════════════════════════ */

/* ── Container: sets total scroll budget ── */
.wc-sticky-journey {
  position: relative;
  height: calc(8 * 150vh);
  /* DO NOT set overflow here — must be transparent to the window
     scroll so position:sticky on .wc-sticky-vp resolves against
     the window, not a scroll container. */
}

/* ── Pinned frame: sticks for the entire scroll budget ── */
.wc-sticky-vp {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;  /* clips image zoom bleed only — inside sticky, fine */
}

/* ── Layer stack: all images sit here, absolutely positioned ── */
.wc-scene-layers {
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* Each layer overshoots by 14% top/bottom so the pull-back starting
   scale (0.88) never reveals the layer edge. Opacity and transform
   driven by JS. */
.wc-scene-layer {
  position: absolute;
  inset: -14% 0;
  height: 128%;
  opacity: 0;
  will-change: transform, opacity;
  overflow: hidden;
}

/* First scene visible before JS boots */
.wc-scene-layer--first {
  opacity: 1;
}

/* Images fill the layer. JS sets scale from 0.88 (far) → 1.14 (close).
   brightness(0.75) initial — JS lifts it to 1.0 as you "arrive". */
.wc-scene-layer > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: scale(0.88);
  filter: brightness(0.75);
  will-change: transform, filter;
}

/* ── Atmospheric fog overlays (per scene) ── */
.wc-scene-fog {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(to top,  rgba(2, 6, 14, 0.72) 0%, transparent 42%),
    linear-gradient(to bottom, rgba(2, 6, 14, 0.28) 0%, transparent 32%);
}

.wc-scene-fog--green {
  background:
    linear-gradient(to top,    rgba(4, 22, 8, 0.78) 0%, transparent 45%),
    linear-gradient(160deg, rgba(12, 48, 18, 0.22) 0%, transparent 55%);
}

.wc-scene-fog--ocean {
  background:
    linear-gradient(to top,    rgba(4, 14, 32, 0.72) 0%, transparent 45%),
    linear-gradient(160deg, rgba(8, 28, 56, 0.20) 0%, transparent 55%);
}

.wc-scene-fog--amber {
  background:
    linear-gradient(to top,    rgba(22, 10, 2, 0.80) 0%, transparent 45%),
    linear-gradient(160deg, rgba(48, 22, 4, 0.22) 0%, transparent 55%);
}

.wc-scene-fog--spiritual {
  background:
    linear-gradient(to top,    rgba(18, 8, 28, 0.82) 0%, transparent 48%),
    linear-gradient(160deg, rgba(60, 20, 80, 0.18) 0%, transparent 55%);
}

/* ── Deep cinematic vignette over all layers ── */
.wc-scene-vignette {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: radial-gradient(
    ellipse 100% 100% at 50% 50%,
    transparent 38%,
    rgba(2, 4, 12, 0.55) 72%,
    rgba(2, 4, 12, 0.88) 100%
  );
}

/* ── Scene text container ── */
.wc-scene-contents {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
}

/* Individual scene copy block: bottom-left, slides up on activate */
.wc-scene-content {
  position: absolute;
  bottom: clamp(64px, 10vh, 120px);
  left:   clamp(32px, 7vw, 120px);
  max-width: min(560px, 80vw);
  opacity: 0;
  transform: translateY(28px);
  /* Transition only for fallback / prefers-reduced-motion.
     Under normal motion JS drives these via rAF. */
  transition: opacity 0.55s var(--wc-ease), transform 0.55s var(--wc-ease);
  pointer-events: none;
}

.wc-scene-content--active {
  opacity: 1;
  transform: translateY(0);
}

/* Eyebrow label */
.wc-sc-eyebrow {
  display: block;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: clamp(0.58rem, 1.1vw, 0.68rem);
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--wc-gold);
  margin-bottom: 10px;
  opacity: 0.88;
}

/* Main scene heading */
.wc-sc-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.6rem, 6.5vw, 5.2rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--wc-text);
  margin: 0 0 16px;
  text-shadow: 0 2px 32px rgba(2, 4, 12, 0.72);
}

/* Scene description */
.wc-sc-desc {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: clamp(0.88rem, 1.6vw, 1.05rem);
  line-height: 1.6;
  color: var(--wc-text-muted);
  margin: 0 0 20px;
  max-width: 440px;
}

/* Destination tag pills */
.wc-sc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.wc-sc-tags span {
  display: inline-flex;
  align-items: center;
  padding: 4px 13px;
  border-radius: 20px;
  border: 1px solid var(--wc-gold-border);
  background: var(--wc-glass-bg);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.70rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--wc-gold-light);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* ── Progress bar (top edge of sticky frame) ── */
.wc-journey-pbar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.08);
  z-index: 8;
}

.wc-journey-pbar-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(to right, var(--wc-gold), var(--wc-gold-light));
  transition: width 0.12s linear;
  will-change: width;
}

/* ── Scene counter (bottom right) ── */
.wc-scene-counter {
  position: absolute;
  bottom: clamp(28px, 4vh, 52px);
  right:  clamp(28px, 4vw, 56px);
  z-index: 8;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: rgba(245, 239, 216, 0.42);
  pointer-events: none;
}

.wc-sc-num {
  color: var(--wc-gold);
  font-size: 1.05rem;
  font-weight: 700;
}

.wc-sc-sep {
  margin: 0 4px;
}

/* ── Dot nav override: position inside sticky frame ── */
.wc-sticky-vp .wc-progress-nav {
  position: absolute;
  right: clamp(20px, 3vw, 40px);
  top: 50%;
  transform: translateY(-50%);
  z-index: 8;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  /* Always visible while inside sticky VP */
  opacity: 1;
  pointer-events: auto;
}

/* ── Responsive: mobile reduces scroll budget and type scale ── */
@media (max-width: 767px) {
  .wc-sticky-journey {
    height: calc(8 * 80vh);
  }

  .wc-scene-content {
    bottom: clamp(80px, 14vh, 140px); /* clear mobile browser chrome */
    left: 24px;
    right: 24px;
    max-width: none;
  }

  .wc-sc-title {
    font-size: clamp(2.0rem, 8vw, 3.0rem);
  }

  .wc-sc-desc {
    font-size: 0.88rem;
    max-width: 100%;
  }

  .wc-sticky-vp .wc-progress-nav {
    right: 12px;
    gap: 8px;
  }

  .wc-scene-counter {
    bottom: clamp(80px, 14vh, 140px);
    right: 56px;
  }
}

/* ── Reduced motion: show first scene static, no zoom/fade ── */
@media (prefers-reduced-motion: reduce) {
  .wc-scene-layer {
    transition: none !important;
    opacity: 0 !important;
  }
  .wc-scene-layer--first {
    opacity: 1 !important;
  }
  .wc-scene-layer > img {
    transform: none !important;
    filter: brightness(1) !important;
  }
  .wc-scene-content {
    transition: none !important;
    opacity: 0 !important;
    transform: none !important;
  }
  .wc-scene-content--active {
    opacity: 1 !important;
  }
  .wc-journey-pbar-fill {
    transition: none !important;
  }
}

/* ==========================================================================
   PETRALITHE-STYLE PRESENCE MOTION UPGRADE
   Scroll is treated like moving through a physical space: image planes open
   with masks, foreground atmosphere drifts, and light responds to progress.
   ========================================================================== */

.wc-presence-section {
  --wc-presence: 0;
  --wc-presence-local: 0;
  --wc-presence-gate: 0;
  --wc-presence-exit: 0;
  --wc-depth-y: 0px;
  --wc-depth-y-mobile: 0px;
  --wc-depth-near-x: 0px;
  --wc-depth-near-y: 0px;
  --wc-depth-far-x: 0px;
  --wc-sweep-x: -72px;
  --wc-depth-scale: 1;
  --wc-content-scale: 0.955;
  --wc-wca-bg-y: 0px;
  --wc-presence-z: -420px;
  --wc-content-z: -180px;
  --wc-card-z: 32px;
  --wc-presence-tilt-x: 10deg;
  --wc-presence-tilt-y: -12deg;
  --wc-near-rotate-x: -2.6deg;
  --wc-far-rotate-y: -3.84deg;
  --wc-content-rotate-x: -2.2deg;
  --wc-content-rotate-y: 2.16deg;
  --wc-card-rotate-x: -1.2deg;
  --wc-gate-left: 0%;
  --wc-gate-right: 0%;
  --wc-portal-opacity: 0;
  --wc-portal-near-opacity: 0;
  --wc-portal-far-opacity: 0;
  --wc-sweep-opacity: 0.08;
  --wc-light-x: 50%;
  isolation: isolate;
  perspective: 900px;
  perspective-origin: 50% 46%;
  transform-style: preserve-3d;
}

#wcAiPlanner.wc-presence-section,
#wcAtlas.wc-presence-section,
#wcIntelligence.wc-presence-section,
#wcProfileTiers.wc-presence-section,
#wiCinematicFinalCta.wc-presence-section {
  min-height: 150vh;
  overflow: clip;
  transform-style: preserve-3d;
}

#wcAiPlanner.wc-presence-section,
#wcAtlas.wc-presence-section,
#wcIntelligence.wc-presence-section,
#wcProfileTiers.wc-presence-section {
  align-items: flex-start;
}

.wc-presence-section .wc-presence-portal {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  transform-style: preserve-3d;
}

.wc-presence-gate,
.wc-presence-depth,
.wc-presence-sweep {
  position: absolute;
  inset: 0;
  pointer-events: none;
  will-change: transform, opacity;
}

.wc-presence-gate {
  width: 55%;
  opacity: var(--wc-portal-opacity);
  background:
    linear-gradient(90deg, rgba(4, 8, 10, 0.80), rgba(25, 34, 33, 0.44) 48%, rgba(232, 197, 96, 0.14)),
    radial-gradient(ellipse 78% 44% at 50% 50%, rgba(255,255,255,0.10), transparent 72%);
  box-shadow: 0 0 90px rgba(0,0,0,0.42);
  transform-style: preserve-3d;
}

.wc-presence-gate--left {
  left: 0;
  right: auto;
  transform-origin: left center;
  transform: translate3d(var(--wc-gate-left), 0, 160px) rotateY(56deg);
}

.wc-presence-gate--right {
  right: 0;
  left: auto;
  transform-origin: right center;
  transform: translate3d(var(--wc-gate-right), 0, 160px) rotateY(-56deg);
}

.wc-presence-depth--near {
  z-index: 2;
  opacity: var(--wc-portal-near-opacity);
  background:
    radial-gradient(ellipse 34% 20% at 18% 82%, rgba(245,239,216,0.16), transparent 72%),
    radial-gradient(ellipse 36% 20% at 86% 24%, rgba(201,162,39,0.12), transparent 74%),
    linear-gradient(to top, rgba(2,4,8,0.48), transparent 44%);
  transform:
    translate3d(var(--wc-depth-near-x), var(--wc-depth-near-y), 180px)
    rotateX(var(--wc-near-rotate-x));
  mix-blend-mode: screen;
  filter: blur(0.4px);
}

.wc-presence-depth--far {
  z-index: 1;
  opacity: var(--wc-portal-far-opacity);
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,0.022) 0 1px, transparent 1px 9px),
    radial-gradient(ellipse 100% 82% at 50% 50%, transparent 42%, rgba(2,4,8,0.56) 100%);
  transform:
    translate3d(var(--wc-depth-far-x), 0, -80px)
    rotateY(var(--wc-far-rotate-y));
}

.wc-presence-sweep {
  z-index: 3;
  opacity: var(--wc-sweep-opacity);
  background: linear-gradient(
    104deg,
    transparent 15%,
    rgba(255,255,255,0.00) 36%,
    rgba(245,239,216,0.16) 49%,
    rgba(201,162,39,0.10) 56%,
    rgba(255,255,255,0.00) 72%,
    transparent 100%
  );
  mix-blend-mode: screen;
  filter: blur(12px);
  transform:
    translate3d(var(--wc-sweep-x), var(--wc-depth-y), 220px)
    rotateY(var(--wc-presence-tilt-y));
}

.wc-presence-section:not(.wc-petra-hero) .wc-hero-bg-wrap,
.wc-presence-section .wc-final-bg-wrap,
.wc-presence-section .wca-bg-wrap {
  transform:
    translate3d(0, var(--wc-depth-y), var(--wc-presence-z))
    rotateX(var(--wc-presence-tilt-x))
    rotateY(var(--wc-presence-tilt-y))
    scale(calc(var(--wc-depth-scale) + 0.10));
  transform-origin: center;
  transform-style: preserve-3d;
  will-change: transform;
}

#wcAiPlanner.wc-presence-section .wcp-inner,
#wcAtlas.wc-presence-section .wca-inner,
#wcIntelligence.wc-presence-section .wci-inner,
#wcProfileTiers.wc-presence-section .wcpt-inner,
#wiCinematicFinalCta.wc-presence-section .wc-final-content {
  position: sticky;
  top: 0;
  min-height: 100vh;
  z-index: 4;
}

#wcAiPlanner.wc-presence-section .wcp-inner,
#wcIntelligence.wc-presence-section .wci-inner,
#wcProfileTiers.wc-presence-section .wcpt-inner {
  align-content: center;
}

#wcAtlas.wc-presence-section .wca-inner,
#wiCinematicFinalCta.wc-presence-section .wc-final-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#wcAiPlanner.wc-presence-section .wcp-inner,
#wcAtlas.wc-presence-section .wca-inner,
#wcIntelligence.wc-presence-section .wci-inner,
#wcProfileTiers.wc-presence-section .wcpt-inner,
#wiCinematicFinalCta.wc-presence-section .wc-final-content {
  animation: none !important;
  opacity: 1;
}

#wcAiPlanner.wc-presence-section .wcp-copy,
#wcAiPlanner.wc-presence-section .wcp-ui,
#wcAiPlanner.wc-presence-section .wcp-chip,
#wcAiPlanner.wc-presence-section .wcp-day,
#wcIntelligence.wc-presence-section .wci-header,
#wcIntelligence.wc-presence-section .wci-card,
#wcProfileTiers.wc-presence-section .wcpt-header,
#wcProfileTiers.wc-presence-section .wcpt-card,
#wiCinematicFinalCta.wc-presence-section .wc-final-content {
  opacity: 1;
}

.wc-presence-section:not(.wc-petra-hero) .wc-hero-content,
.wc-presence-section .wc-final-content,
.wc-presence-section .wcp-inner,
.wc-presence-section .wca-inner,
.wc-presence-section .wci-inner,
.wc-presence-section .wcpt-inner {
  transform:
    translate3d(0, calc((1 - var(--wc-presence)) * 58px), var(--wc-content-z))
    rotateX(var(--wc-content-rotate-x))
    rotateY(var(--wc-content-rotate-y))
    scale(var(--wc-content-scale));
  transform-style: preserve-3d;
  will-change: transform;
}

.wc-presence-section .wca-bg-img {
  transform:
    translate3d(0, var(--wc-wca-bg-y), 0)
    scale(calc(var(--wc-depth-scale) + 0.08));
  transform-origin: center;
}

.wc-presence-section::selection {
  background: rgba(201, 162, 39, 0.32);
}

.wc-sticky-vp {
  perspective: 1000px;
  background: #020408;
}

.wc-sticky-vp::before,
.wc-sticky-vp::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 7;
}

.wc-sticky-vp::before {
  background:
    radial-gradient(ellipse 42% 34% at calc(50% + var(--wc-camera-x, 0px)) 36%, rgba(255,255,255,0.10), transparent 68%),
    linear-gradient(105deg, transparent 0%, rgba(245,239,216,0.055) 45%, transparent 67%);
  mix-blend-mode: screen;
  opacity: 0.76;
  transform: translate3d(calc(var(--wc-camera-x, 0px) * -0.22), calc(var(--wc-camera-y, 0px) * -0.18), 0);
}

.wc-sticky-vp::after {
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,0.018) 0 1px, transparent 1px 7px),
    radial-gradient(ellipse 100% 84% at 50% 50%, transparent 42%, rgba(2,4,8,0.50) 100%);
  opacity: 0.28;
  transform: translate3d(calc(var(--wc-camera-x, 0px) * 0.14), 0, 0);
}

.wc-presence-scene {
  transform-origin: center;
}

.wc-depth-layer,
.wc-light-sweep {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.wc-depth-near {
  z-index: 3;
  background:
    radial-gradient(ellipse 26% 18% at 16% 78%, rgba(245,239,216,0.13), transparent 70%),
    radial-gradient(ellipse 34% 20% at 84% 18%, rgba(201,162,39,0.10), transparent 72%),
    linear-gradient(to top, rgba(2,4,8,0.60), transparent 36%);
  filter: blur(0.2px);
  mix-blend-mode: screen;
  opacity: 0.58;
}

.wc-depth-mid {
  z-index: 2;
  background:
    linear-gradient(115deg, transparent 0 31%, rgba(255,255,255,0.052) 42%, transparent 58%),
    radial-gradient(ellipse 60% 18% at 50% 88%, rgba(2,4,8,0.36), transparent 70%);
  opacity: 0.72;
}

.wc-light-sweep {
  z-index: 4;
  opacity: 0;
  background: linear-gradient(
    var(--wc-sweep-angle, 18deg),
    transparent 14%,
    rgba(255,255,255,0.00) 34%,
    rgba(245,239,216,0.16) 49%,
    rgba(201,162,39,0.11) 55%,
    rgba(255,255,255,0.00) 70%,
    transparent 100%
  );
  mix-blend-mode: screen;
  filter: blur(10px);
  transform: translate3d(var(--wc-camera-x, 0px), var(--wc-camera-y, 0px), 0);
}

.wc-scene-content {
  text-wrap: balance;
  filter: drop-shadow(0 20px 46px rgba(0,0,0,0.42));
}

.wc-sc-title,
.wc-sc-desc,
.wc-sc-tags {
  transform: translateZ(42px);
}

.wc-sc-tags span {
  transition:
    transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1),
    border-color 0.28s,
    background 0.28s;
}

.wc-sc-tags span:hover {
  transform: translateY(-3px) scale(1.04);
  border-color: rgba(232,197,96,0.50);
  background: rgba(201,162,39,0.22);
}

.wc-hero-headline {
  position: relative;
  z-index: 6;
  visibility: visible !important;
  background: none;
  -webkit-text-fill-color: currentColor;
}

.wc-hero-headline .wc-word {
  opacity: 1;
  transform: none;
  -webkit-text-fill-color: currentColor;
}

.wcp-card,
.wci-card,
.wcpt-card,
.wca-badge {
  transform:
    translate3d(0, calc((1 - var(--wc-presence)) * 26px), var(--wc-card-z))
    rotateX(var(--wc-card-rotate-x));
  transform-style: preserve-3d;
  will-change: transform;
}

.wcp-card:hover,
.wci-card:hover,
.wcpt-card:hover,
.wca-badge:hover {
  transform: translate3d(0, -6px, 60px) scale(1.012);
}

@media (max-width: 767px) {
  .wc-presence-section .wc-hero-bg-wrap,
  .wc-presence-section .wc-final-bg-wrap {
    transform: translate3d(0, var(--wc-depth-y-mobile), 0) scale(var(--wc-depth-scale));
  }

  .wc-sticky-vp::after {
    opacity: 0.18;
  }
}

@media (prefers-reduced-motion: reduce) {
  .wc-presence-section .wc-hero-bg-wrap,
  .wc-presence-section .wc-final-bg-wrap,
  .wc-presence-section .wc-hero-content,
  .wc-presence-section .wc-final-content,
  .wc-presence-section .wcp-inner,
  .wc-presence-section .wca-inner,
  .wc-presence-section .wci-inner,
  .wc-presence-section .wcpt-inner,
  .wc-presence-section .wca-bg-img,
  .wc-presence-scene,
  .wc-depth-layer,
  .wc-light-sweep {
    transform: none !important;
    transition: none !important;
  }

  .wc-sticky-vp::before,
  .wc-sticky-vp::after,
  .wc-depth-layer,
  .wc-light-sweep {
    display: none !important;
  }
}

/* ==========================================================================
   PETRALITHE-STYLE HERO STAGE
   The reference opens with a 500vh sticky scene where background, foreground
   and product-like layers pass through the camera. This overrides the old
   centered 100vh travel hero and makes the first scroll feel spatial.
   ========================================================================== */

#wiCinematicHero.wc-petra-hero {
  --petra-progress: 0;
  /* Mountain + birds */
  --petra-mountain-y: 16%;
  --petra-mountain-scale: 1.02;
  --petra-birds-x: 8%;
  --petra-birds-y: 25%;
  /* Camera */
  --petra-stage-rotate-x: 11deg;
  --petra-stage-rotate-y: -13deg;
  --petra-frame-rotate-x: -2.4deg;
  --petra-frame-rotate-y: 2.9deg;
  --petra-birds-rotate-y: 5.8deg;
  --petra-stage-z: -260px;
  /* Headline */
  --petra-title-opacity: 1;
  --petra-copy-opacity: 1;
  /* Frame */
  --petra-frame-y: 0vh;
  --petra-frame-scale: 1;
  /* Portal */
  --petra-monolith-opacity: 0;
  --petra-monolith-scale: 0.88;
  --petra-monolith-y: 3.5%;
  --petra-gate-opacity: 0;
  --petra-gate-left-x: 0%;
  --petra-gate-right-x: 0%;
  --petra-tunnel-opacity: 0;
  --petra-tunnel-scale: 0.42;
  display: block;
  height: 500vh;
  min-height: 0;
  overflow: clip;
  background: transparent;
  clip-path: inset(1px 0);
  z-index: 7;
  pointer-events: none;
}

/* Pull the first section after the hero up by one viewport height so it fills
   the sticky dead-zone (the 100vh gap after the sticky viewport scrolls off). */
#wiCinematicHero + .wc-marquee {
  margin-top: 0;
}

.wc-petra-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  isolation: isolate;
  perspective: 820px;
  perspective-origin: 50% 48%;
  transform-style: preserve-3d;
  background: #020408;
  pointer-events: auto;
}


#wiCinematicHero.wc-petra-hero .wc-hero-bg-wrap,
#wiCinematicHero.wc-petra-hero .wc-hero-mist,
#wiCinematicHero.wc-petra-hero .wc-hero-overlay,
#wiCinematicHero.wc-petra-hero .wc-hero-scan,
#wiCinematicHero.wc-petra-hero .wc-hero-floats,
#wiCinematicHero.wc-petra-hero .wc-hero-content,
#wiCinematicHero.wc-petra-hero .wc-scroll-hint {
  position: absolute;
}

#wiCinematicHero.wc-petra-hero .wc-hero-bg-wrap {
  inset: 0;
  z-index: 1;
  transform:
    translateZ(var(--petra-stage-z))
    rotateX(var(--petra-stage-rotate-x))
    rotateY(var(--petra-stage-rotate-y))
    scale(1.13);
  transform-style: preserve-3d;
  transform-origin: center;
  will-change: transform;
}

#wiCinematicHero.wc-petra-hero .wc-hero-bg-img {
  object-position: center 42%;
  transform:
    translate3d(0, var(--petra-mountain-y), 0)
    scale(var(--petra-mountain-scale));
  filter: saturate(0.78) contrast(0.96) brightness(0.94);
  animation: none;
  will-change: transform, filter;
}

#wiCinematicHero.wc-petra-hero .wc-petra-frame {
  position: absolute;
  inset: 21px;
  z-index: 3;
  pointer-events: none;
  background: transparent;
  /* Dark cinema matte OUTSIDE the frame — clip-path removed so box-shadow spreads outward */
  box-shadow:
    0 0 0 2000px rgba(2, 4, 8, 0.42),
    inset 0 0 0 1.5px rgba(255, 255, 255, 0.12);
  transform:
    translate3d(0, var(--petra-frame-y), 120px)
    rotateX(var(--petra-frame-rotate-x))
    rotateY(var(--petra-frame-rotate-y))
    scale(var(--petra-frame-scale));
  transform-origin: center;
  border-radius: 82px 120px 86px 126px / 96px 78px 116px 72px;
  opacity: 0.88;
}

.wc-petra-plane {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  transform-style: preserve-3d;
  will-change: transform, opacity, filter;
}

.wc-petra-plane--birds {
  z-index: 5;
  opacity: 0.42;
  transform:
    translate3d(var(--petra-birds-x), var(--petra-birds-y), 240px)
    rotateY(var(--petra-birds-rotate-y));
  background:
    radial-gradient(ellipse 9px 3px at 22% 21%, rgba(12,22,30,0.55), transparent 70%),
    radial-gradient(ellipse 7px 2px at 30% 17%, rgba(12,22,30,0.42), transparent 70%),
    radial-gradient(ellipse 10px 3px at 74% 26%, rgba(12,22,30,0.36), transparent 70%),
    radial-gradient(ellipse 6px 2px at 82% 19%, rgba(12,22,30,0.40), transparent 70%);
}

/* ── Portal: tunnel (z-6, behind monolith + gates) ──────── */
.wc-petra-tunnel {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 180vmax;
  height: 180vmax;
  z-index: 6;
  pointer-events: none;
  will-change: transform, opacity;
  opacity: var(--petra-tunnel-opacity, 0);
  transform: translate3d(-50%, -50%, 0) scale(var(--petra-tunnel-scale, 0.42));
  border-radius: 50%;
  background:
    /* center glow — always visible */
    radial-gradient(ellipse 8% 8% at 50% 50%, rgba(220,235,255,0.40) 0%, transparent 100%),
    /* ring 1 — smallest, stays visible longest during zoom */
    radial-gradient(ellipse 18% 18% at 50% 50%, transparent 60%, rgba(145,188,255,0.72) 68%, rgba(145,188,255,0.30) 76%, transparent 85%),
    /* ring 2 */
    radial-gradient(ellipse 29% 29% at 50% 50%, transparent 60%, rgba(120,168,250,0.55) 68%, rgba(120,168,250,0.22) 76%, transparent 85%),
    /* ring 3 */
    radial-gradient(ellipse 42% 42% at 50% 50%, transparent 60%, rgba(100,152,242,0.40) 68%, rgba(100,152,242,0.15) 76%, transparent 85%),
    /* ring 4 */
    radial-gradient(ellipse 57% 57% at 50% 50%, transparent 60%, rgba(80,132,228,0.28) 68%, rgba(80,132,228,0.10) 76%, transparent 85%),
    /* ring 5 — outermost haze, disappears first as zoom begins */
    radial-gradient(ellipse 73% 73% at 50% 50%, transparent 60%, rgba(60,112,212,0.18) 68%, transparent 80%);
}

/* ── Portal: monolith (z-7, dark obsidian glass card) ───── */
.wc-petra-plane--monolith {
  position: absolute;
  left: 50%;
  top: 50%;
  width: clamp(260px, 50vw, 740px);
  height: clamp(320px, 64vh, 580px);
  z-index: 7;
  pointer-events: none;
  will-change: transform, opacity;
  opacity: var(--petra-monolith-opacity, 0);
  transform:
    translate3d(-50%, calc(-50% + var(--petra-monolith-y, 3.5%)), 60px)
    scale(var(--petra-monolith-scale, 0.88));
  border-radius: 18px 18px 12px 12px;
  border: 1px solid rgba(160,200,255,0.42);
  background:
    radial-gradient(ellipse 65% 38% at 50% 18%, rgba(150,190,255,0.22), transparent 72%),
    radial-gradient(ellipse 80% 55% at 50% 85%, rgba(18,32,72,0.55), transparent 80%),
    linear-gradient(158deg,
      rgba(10,16,30,0.96) 0%,
      rgba(6,12,24,0.92) 45%,
      rgba(14,22,42,0.94) 100%);
  box-shadow:
    0 0  32px rgba(120,170,255,0.32),
    0 0  90px rgba(90,145,240,0.18),
    0 0 200px rgba(60,110,220,0.10),
    inset 0  1px 0 rgba(255,255,255,0.16),
    inset 0 -1px 0 rgba(0,0,0,0.28),
    0 64px 120px rgba(0,0,0,0.48);
  overflow: hidden;
}

/* Faint terrain grid on monolith face */
.wc-petra-plane--monolith::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(0deg,
      transparent 0, transparent 29px,
      rgba(100,150,240,0.045) 29px, rgba(100,150,240,0.045) 30px),
    repeating-linear-gradient(90deg,
      transparent 0, transparent 47px,
      rgba(100,150,240,0.032) 47px, rgba(100,150,240,0.032) 48px);
  opacity: 0.9;
}

/* Corner glow sweep on monolith */
.wc-petra-plane--monolith::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(138deg,
    rgba(160,205,255,0.24) 0%, transparent 38%,
    transparent 62%, rgba(120,165,245,0.18) 100%);
}

/* ── Portal: gate panels (z-9, slide apart) ─────────────── */
.wc-petra-gate {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 54%;
  z-index: 9;
  pointer-events: none;
  will-change: transform, opacity;
  opacity: var(--petra-gate-opacity, 0);
  box-shadow: 0 0 50px rgba(60,100,200,0.10);
}

.wc-petra-gate--left {
  left: 0;
  right: auto;
  border-right: 1px solid rgba(140,185,255,0.12);
  transform: translate3d(var(--petra-gate-left-x, 0%), 0, 100px);
  background:
    repeating-linear-gradient(168deg,
      transparent 0, transparent 40px,
      rgba(100,150,240,0.022) 40px, rgba(100,150,240,0.022) 41px),
    linear-gradient(to right,
      rgba(6,10,22,0.97),
      rgba(12,18,36,0.92) 58%,
      rgba(18,26,50,0.86));
}

.wc-petra-gate--right {
  right: 0;
  left: auto;
  border-left: 1px solid rgba(140,185,255,0.12);
  transform: translate3d(var(--petra-gate-right-x, 0%), 0, 100px);
  background:
    repeating-linear-gradient(12deg,
      transparent 0, transparent 40px,
      rgba(100,150,240,0.022) 40px, rgba(100,150,240,0.022) 41px),
    linear-gradient(to left,
      rgba(6,10,22,0.97),
      rgba(12,18,36,0.92) 58%,
      rgba(18,26,50,0.86));
}

#wiCinematicHero.wc-petra-hero .wc-hero-mist {
  inset: 0;
  z-index: 9;
  opacity: 0.48;
  animation: none;
  background:
    radial-gradient(ellipse 80% 24% at 50% 88%, rgba(255,255,255,0.22), transparent 70%),
    radial-gradient(ellipse 45% 34% at 18% 54%, rgba(220,190,150,0.16), transparent 74%);
  transform: translate3d(0, calc(var(--petra-progress) * -7vh), 0);
}

#wiCinematicHero.wc-petra-hero .wc-hero-overlay {
  inset: 0;
  z-index: 10;
  background:
    radial-gradient(ellipse 100% 100% at 50% 50%, transparent 38%, rgba(2,4,8,0.22) 100%),
    linear-gradient(to bottom, rgba(12,20,30,0.22), transparent 22%),
    linear-gradient(to top, rgba(2,4,8,0.72), transparent 42%);
}

#wiCinematicHero.wc-petra-hero .wc-hero-content {
  z-index: 12;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  max-width: none;
  padding: 0 clamp(34px, 8vw, 128px);
  text-align: right;
  transform: none;
}

#wiCinematicHero.wc-petra-hero .wc-hero-ornament-row {
  align-self: flex-end;
  width: min(340px, 38vw);
  opacity: var(--petra-title-opacity);
  transform: translate3d(calc(var(--petra-progress) * -70px), 0, 0);
}

#wiCinematicHero.wc-petra-hero .wc-hero-headline {
  max-width: min(560px, 42vw);
  font-size: clamp(2.8rem, 6.8vw, 6.4rem);
  line-height: 0.88;
  letter-spacing: 0;
  opacity: var(--petra-title-opacity) !important;
  text-transform: uppercase;
  text-shadow: 0 18px 55px rgba(0,0,0,0.30);
  transform: translate3d(calc(var(--petra-progress) * -90px), 0, 0);
}

#wiCinematicHero.wc-petra-hero .wc-hero-sub,
#wiCinematicHero.wc-petra-hero .wc-hero-ctas {
  max-width: 460px;
  opacity: var(--petra-copy-opacity);
  transform: translate3d(calc(var(--petra-progress) * -70px), calc(var(--petra-progress) * -18px), 0);
}

#wiCinematicHero.wc-petra-hero .wc-hero-sub {
  display: none;
}

#wiCinematicHero.wc-petra-hero .wc-hero-ctas {
  display: none;
}

#wiCinematicHero.wc-petra-hero .wc-hero-sub {
  margin-left: auto;
}

#wiCinematicHero.wc-petra-hero .wc-hero-ctas {
  justify-content: flex-end;
}

#wiCinematicHero.wc-petra-hero .wc-hero-floats {
  z-index: 11;
  opacity: calc(var(--petra-copy-opacity) * 0.82);
}

#wiCinematicHero.wc-petra-hero .wc-scroll-hint {
  z-index: 14;
  opacity: var(--petra-copy-opacity);
}

@media (max-width: 1023px) {
  #wiCinematicHero.wc-petra-hero {
    height: 260vh;
  }

  #wiCinematicHero.wc-petra-hero .wc-hero-content {
    align-items: center;
    text-align: center;
    padding: 0 24px;
  }

  #wiCinematicHero.wc-petra-hero .wc-hero-headline,
  #wiCinematicHero.wc-petra-hero .wc-hero-sub {
    max-width: min(720px, 90vw);
  }

  #wiCinematicHero.wc-petra-hero .wc-hero-ctas {
    justify-content: center;
  }

  /* Override the global Petra desktop hide — show sub-copy and CTAs on tablet/mobile
     so the "Start Planning" CTA is reachable on all viewports.
     --petra-copy-opacity starts at 1.0 (progress=0), so elements are immediately
     visible; they fade naturally as the user scrolls into the cinematic sequence. */
  #wiCinematicHero.wc-petra-hero .wc-hero-sub {
    display: block;
  }
  #wiCinematicHero.wc-petra-hero .wc-hero-ctas {
    display: flex;
  }

  #wiCinematicHero.wc-petra-hero .wc-petra-frame {
    inset: 12px;
    border-radius: 42px;
  }

}

@media (prefers-reduced-motion: reduce) {
  #wiCinematicHero.wc-petra-hero {
    height: 100vh;
  }

  .wc-petra-sticky,
  #wiCinematicHero.wc-petra-hero .wc-hero-bg-img,
  #wiCinematicHero.wc-petra-hero .wc-hero-content,
  .wc-petra-plane {
    transform: none !important;
  }

  .wc-petra-plane {
    display: none !important;
  }
}

/* ── Login CTA section ─────────────────────────────────────────────── */
#wiHero.wi-hero-stage {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 48px;
  width: 100%;
  justify-self: stretch;
  min-height: 100vh;
  padding: 96px 24px 80px clamp(48px, 8vw, 120px);
  box-sizing: border-box;
  background:
    /* dark gradient over left half so text stays readable */
    linear-gradient(to right, rgba(4, 6, 16, 0.92) 0%, rgba(4, 6, 16, 0.80) 42%, rgba(4, 6, 16, 0.30) 70%, transparent 100%),
    url('../assets/images/login_hero_bg.png') center / cover no-repeat;
  position: relative;
  overflow: hidden;
}

/* Subtle grain texture overlay */
#wiHero.wi-hero-stage::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  pointer-events: none;
  z-index: 0;
}

/* Framing copy block */
.wi-stage-framing {
  position: relative;
  z-index: 1;
  text-align: left;
  max-width: 560px;
}

.wi-stage-ornament {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: flex-start;
  margin-bottom: 20px;
}

.wi-stage-ornament-line {
  flex: 1;
  max-width: 80px;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(200, 180, 120, 0.45), transparent);
}

.wi-stage-gem {
  color: rgba(200, 175, 110, 0.70);
  font-size: 0.75rem;
  line-height: 1;
}

.wi-stage-eyebrow {
  font-family: 'Space Grotesk', 'DM Mono', monospace;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(200, 175, 110, 0.65);
  margin: 0 0 16px;
}

.wi-stage-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.4rem, 5.5vw, 3.8rem);
  font-weight: 900;
  color: #f0ece4;
  line-height: 1.1;
  margin: 0 0 16px;
  text-shadow: 0 4px 32px rgba(0, 0, 0, 0.60);
}

.wi-stage-gold {
  color: #c8a84b;
}

.wi-stage-sub {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  color: rgba(220, 215, 205, 0.55);
  margin: 0;
  letter-spacing: 0.02em;
}

#wiHero .wi-side-stack {
  position: relative;
  z-index: 1;
  display: block;
  height: auto;
  width: 100%;
  max-width: 480px;
  align-self: flex-start;
  grid-template-rows: none;
}

/* Login card was position:absolute in its original context (explore-card layout).
   In the cinematic hero it's the only child, so reset to flow so the stack has height. */
#wiHero .wi-login-card {
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  width: 100%;
  max-width: 100%;
}

/* ══════════════════════════════════════════════════════════════════
   RICHNESS LAYER — unified grain, card depth, scene typography
   ══════════════════════════════════════════════════════════════════ */

/* ── Film grain on every major section ──────────────────────────── */
#wcAiPlanner::after,
#wcAtlas::after,
#wcIntelligence::after,
#wcProfileTiers::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.028;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.80' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='240' height='240' filter='url(%23g)'/%3E%3C/svg%3E");
  background-size: 240px 240px;
  mix-blend-mode: screen;
  animation: wcGrainShift 0.28s steps(1) infinite;
}

/* ── Ambient gold warmth injected into section backgrounds ──────── */
#wcAiPlanner {
  background:
    radial-gradient(ellipse 60% 40% at 50% 100%, rgba(201,162,39,0.04) 0%, transparent 70%),
    radial-gradient(ellipse 130% 80% at 18% 55%, rgba(12, 20, 44, 1) 0%, #020408 58%),
    radial-gradient(ellipse 80% 65% at 82% 60%, rgba(10, 6, 28, 1) 0%, transparent 70%);
}

#wcIntelligence {
  background:
    radial-gradient(ellipse 60% 30% at 50% 0%,   rgba(201,162,39,0.04) 0%, transparent 70%),
    radial-gradient(ellipse 130% 72% at 62% 38%, rgba(8, 16, 36, 1) 0%, #020408 62%),
    radial-gradient(ellipse 65% 55% at  8% 72%, rgba(18, 6, 38, 0.85) 0%, transparent 70%);
}

/* ── Cards: gold top-edge accent, deeper glass, richer hover ────── */
.wci-card {
  background: rgba(4, 9, 22, 0.90);
  border: 1px solid rgba(255,255,255,0.07);
  border-top: 1px solid rgba(201,162,39,0.22);
  border-radius: 16px;
  padding: 28px 24px;
  box-shadow:
    0 1px 0 rgba(201,162,39,0.12) inset,
    0 20px 60px rgba(0,0,0,0.45);
}

.wci-card:hover {
  border-color: rgba(201,162,39,0.36);
  border-top-color: rgba(201,162,39,0.55);
  box-shadow:
    0 1px 0 rgba(201,162,39,0.22) inset,
    0 16px 48px rgba(0,0,0,0.50),
    0 0  28px rgba(201,162,39,0.10);
  transform: translateY(-4px);
}

.wcpt-card {
  border-top: 1px solid rgba(201,162,39,0.18);
  box-shadow:
    0 1px 0 rgba(201,162,39,0.10) inset,
    0 24px 64px rgba(0,0,0,0.50);
}

.wcpt-card--featured {
  border-top-color: rgba(201,162,39,0.55);
  box-shadow:
    0 1px 0 rgba(201,162,39,0.24) inset,
    0 0 0 1px rgba(201,162,39,0.18),
    0 32px 80px rgba(0,0,0,0.55),
    0 0 48px rgba(201,162,39,0.12);
}

/* ── Section eyebrows: subtle gold shimmer ──────────────────────── */
.wcp-eyebrow,
.wci-eyebrow,
.wcpt-eyebrow,
.wca-eyebrow {
  background: linear-gradient(90deg, var(--wc-gold) 0%, var(--wc-gold-light) 50%, var(--wc-gold) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: wcEyebrowShimmer 4s linear infinite;
}

@keyframes wcEyebrowShimmer {
  0%   { background-position: 0% center; }
  100% { background-position: 200% center; }
}

/* ── Journey scene content: editorial upgrade ───────────────────── */
.wc-sc-eyebrow {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--wc-gold);
  margin-bottom: 18px;
  text-shadow: 0 0 20px rgba(201,162,39,0.60);
}

.wc-sc-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: #fff;
  text-shadow:
    0 2px 24px rgba(0,0,0,0.70),
    0 0  60px rgba(0,0,0,0.40);
  margin: 0 0 18px;
}

.wc-sc-desc {
  font-size: clamp(0.90rem, 1.6vw, 1.05rem);
  color: rgba(245,239,216,0.78);
  line-height: 1.7;
  max-width: 380px;
  text-shadow: 0 1px 8px rgba(0,0,0,0.60);
  margin: 0 0 22px;
}

.wc-sc-tags span {
  background: rgba(201,162,39,0.12);
  border: 1px solid rgba(201,162,39,0.30);
  color: var(--wc-gold-light);
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ── Progress bar: gold gradient fill ──────────────────────────── */
.wc-journey-pbar {
  background: rgba(255,255,255,0.08);
}

.wc-journey-pbar-fill {
  background: linear-gradient(90deg, rgba(201,162,39,0.60) 0%, rgba(232,197,96,0.90) 50%, rgba(201,162,39,0.60) 100%);
  box-shadow: 0 0 12px rgba(201,162,39,0.50);
}

/* ── Scene counter: more editorial ─────────────────────────────── */
.wc-scene-counter {
  font-family: 'Playfair Display', Georgia, serif;
  letter-spacing: 0.04em;
}

.wc-sc-num {
  color: var(--wc-gold-light);
  font-weight: 700;
}

.wc-sc-sep,
.wc-sc-total {
  color: rgba(255,255,255,0.30);
}

/* ── Progress nav dots: gold active state ───────────────────────── */
.wc-dot {
  background: rgba(255,255,255,0.22);
  border: 1px solid rgba(255,255,255,0.12);
  transition: background 0.22s, transform 0.22s, box-shadow 0.22s;
}

.wc-dot--active {
  background: var(--wc-gold);
  border-color: transparent;
  transform: scale(1.35);
  box-shadow: 0 0 10px rgba(201,162,39,0.55);
}

.wc-dot:hover:not(.wc-dot--active) {
  background: rgba(201,162,39,0.40);
  border-color: rgba(201,162,39,0.30);
}

/* ── Editorial line: more presence ─────────────────────────────── */
.wc-editorial-line {
  border-top: 1px solid rgba(201,162,39,0.18);
  position: relative;
}

.wc-editorial-line::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--wc-gold), transparent);
}

.wc-editorial-text {
  background: rgba(2,4,8,1);
  border: 1px solid rgba(201,162,39,0.22);
  color: var(--wc-gold);
  letter-spacing: 0.24em;
  font-size: 0.64rem;
  font-weight: 700;
  padding: 7px 18px;
  border-radius: 50px;
  text-shadow: 0 0 12px rgba(201,162,39,0.40);
}

/* ── Marquee: stronger contrast, gold gems ──────────────────────── */
.wc-marquee-item {
  font-weight: 600;
  letter-spacing: 0.06em;
  color: rgba(245,239,216,0.72);
}

.wc-marquee-gem {
  color: var(--wc-gold);
  text-shadow: 0 0 10px rgba(201,162,39,0.55);
}

/* ── Scene vignette: deeper cinematic edge ──────────────────────── */
.wc-scene-vignette {
  background:
    radial-gradient(ellipse 100% 100% at 50% 50%, transparent 42%, rgba(2,4,8,0.72) 100%),
    linear-gradient(to bottom, rgba(2,4,8,0.28) 0%, transparent 12%, transparent 88%, rgba(2,4,8,0.38) 100%);
}

/* ── Bottom bleed: journey into intelligence section ────────────── */
.wc-sticky-journey::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 160px;
  background: linear-gradient(to bottom, transparent, rgba(2,4,8,0.95));
  pointer-events: none;
  z-index: 2;
}

/* ── Reduced motion: disable new grain/shimmer animations ─────── */
@media (prefers-reduced-motion: reduce) {
  #wcAiPlanner::after,
  #wcAtlas::after,
  #wcIntelligence::after,
  #wcProfileTiers::after {
    animation: none !important;
  }
  .wcp-eyebrow,
  .wci-eyebrow,
  .wcpt-eyebrow,
  .wca-eyebrow {
    animation: none !important;
    background: none !important;
    -webkit-text-fill-color: var(--wc-gold) !important;
    color: var(--wc-gold) !important;
  }
}
