/* ==========================================================================
   Christie Angelica — Perfect Mobile Card Overflow Containment & Master CSS
   ========================================================================== */

/* Root Design System */
:root {
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;

  --color-bg: #000000;
  --color-text-main: #ffffff;
  --color-text-muted: #cbd5e1;
  
  --biolum-cyan: #00f0ff;
  --biolum-gold: #ffd700;

  /* Bright White Frosted Glass Tokens */
  --glass-bg: rgba(255, 255, 255, 0.08);
  --glass-border: rgba(255, 255, 255, 0.3);
  --glass-blur: 16px;
  --glass-radius: 24px;
  --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.15);
}

/* Reset & Base Setup */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  width: 100%;
  min-height: 100vh;
  background-color: var(--color-bg);
  color: var(--color-text-main);
  font-family: var(--font-primary);
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Pitch Black Opening Curtain */
#preloader.dark-curtain {
  position: fixed;
  inset: 0;
  background: #000000;
  z-index: 9999;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 2s cubic-bezier(0.16, 1, 0.3, 1), visibility 2s ease;
}

#preloader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* Technique 1: Canvas Window Wrapper (Scale 1.05 Mouse Parallax Window) */
.canvas-window-wrapper {
  position: fixed;
  inset: 0;
  transform: scale(1.05) translateZ(0);
  pointer-events: none;
  z-index: 1;
  will-change: transform;
  backface-visibility: hidden;
}

/* High-End Editorial Mix-and-Match Serif Italic Class */
.font-serif-italic {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
}

.glow-text {
  color: #ffffff;
  text-shadow: 
    0px 2px 8px rgba(0, 0, 0, 0.8),
    0 0 15px rgba(0, 240, 255, 0.6);
}

.section-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-primary);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  color: var(--biolum-cyan);
  background: rgba(0, 240, 255, 0.15);
  border: 1px solid rgba(0, 240, 255, 0.35);
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 14px;
  text-transform: uppercase;
  text-align: center;
}

/* Viewport Layout */
#scroll-wrapper {
  position: relative;
  width: 100%;
  height: 750vh;
  z-index: 20;
}

#sticky-viewport {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  perspective: 1200px;
  transform-style: preserve-3d;
  z-index: 50;
  backface-visibility: hidden;
}

/* Canvas Layers */
#scrub-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

#particle-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 2;
  pointer-events: none;
}

/* Global Cinematic Dimming Overlay for Full-Page Portrait */
#dim-overlay {
  position: fixed;
  inset: 0;
  background: #000000;
  opacity: 0;
  pointer-events: none;
  z-index: 8;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

#dim-overlay.active {
  opacity: 0.85;
}

/* Environment Vignette Overlay */
.cinematic-vignette {
  position: fixed;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,5,10,0.4) 0%, rgba(0,10,20,0.7) 50%, rgba(0,15,30,0.9) 100%);
  pointer-events: none;
  z-index: 10;
}

/* White Frosted Glass Tokens */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: var(--glass-radius);
  box-shadow: var(--glass-shadow);
  transform-style: preserve-3d;
  will-change: transform, opacity;
  backface-visibility: hidden;
}

.card-content-inner {
  transform: translateZ(30px);
  transform-style: preserve-3d;
}

/* HUD Navigation Header with Auto-Hide Class & EN/ID Language Switcher */
.hud-nav {
  position: fixed;
  top: 24px;
  left: 50%;
  transform: translateX(-50%) translateZ(0);
  width: 90%;
  max-width: 1100px;
  padding: 14px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 200;
  pointer-events: auto;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
  will-change: transform, opacity;
}

.hud-nav.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(-50%) translateY(-20px);
}

.nav-brand {
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: 0.1em;
}

.nav-controls {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-status {
  display: flex;
  align-items: center;
  gap: 8px;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: var(--biolum-cyan);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--biolum-cyan);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { opacity: 0.4; transform: scale(0.9); }
  50% { opacity: 1; transform: scale(1.2); }
  100% { opacity: 0.4; transform: scale(0.9); }
}

.status-text {
  font-family: var(--font-primary);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  color: var(--color-text-muted);
  font-weight: 500;
}

/* Language Switcher Toggle Pill */
.lang-switch-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.lang-btn {
  background: none;
  border: none;
  color: var(--color-text-muted);
  font-family: var(--font-primary);
  font-size: 0.75rem;
  font-weight: 500;
  cursor: pointer;
  padding: 3px 8px;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.lang-btn:hover {
  color: #ffffff;
}

.lang-btn.active {
  color: #ffffff;
  background: rgba(0, 240, 255, 0.3);
  box-shadow: 0 0 12px rgba(0, 240, 255, 0.6);
}

.lang-divider {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.72rem;
}

/* Spatial Sections Container */
.spatial-section {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  will-change: transform, opacity;
  transform-style: preserve-3d;
  pointer-events: none;
  z-index: 100;
  backface-visibility: hidden;
}

/* Section 1: Hero Section Redesign (FAILSAFE: Always 100% visible on load at scroll 0) */
#section-surface {
  z-index: 100;
  opacity: 1;
  visibility: visible;
}

.hero-identity-card {
  position: relative;
  padding: 0;
  text-align: center;
  max-width: 1100px;
  width: 90%;
  pointer-events: auto;
  background: transparent !important;
  border: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  box-shadow: none !important;
}

/* Massive Unboxed Title (+40% Bigger) with Baseline Alignment */
.hero-unboxed-title {
  font-size: clamp(4.5rem, 10vw, 8.5rem);
  line-height: 1.05;
  margin-bottom: 32px;
  display: flex;
  align-items: baseline;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.85), 0 0 30px rgba(135, 206, 235, 0.4);
}

.hero-title-sans {
  font-family: var(--font-primary);
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ffffff;
}

.hero-title-serif {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  text-transform: capitalize;
  font-size: 1.08em;
  color: #ffffff;
}

/* Floating Asymmetrical Storytelling Badges */
.floating-badge {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  font-family: var(--font-primary);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  animation: floatLevitate 5s ease-in-out infinite alternate;
  pointer-events: auto;
  z-index: 120;
  will-change: transform;
  backface-visibility: hidden;
}

.badge-top-left {
  top: -35px;
  left: 4vw;
  animation-delay: 0s;
}

.badge-right-center {
  top: 25%;
  right: 1vw;
  animation-delay: -1.6s;
}

.badge-bottom-left {
  bottom: 80px;
  left: 3vw;
  animation-delay: -3.2s;
}

/* ==========================================================================
   DESKTOP ONLY CONSTELLATION CONNECTOR LINES (@media (min-width: 769px))
   ========================================================================== */
@media (min-width: 769px) {
  
  /* Top Left Badge Connector Line -> points bottom-right (approx 42deg) */
  .badge-top-left::after {
    content: '';
    position: absolute;
    top: 65%;
    left: 85%;
    width: 130px;
    height: 1px;
    background: linear-gradient(90deg, rgba(0, 240, 255, 0.85) 0%, rgba(0, 240, 255, 0) 100%);
    box-shadow: 0 0 8px rgba(0, 240, 255, 0.7);
    transform: rotate(38deg);
    transform-origin: top left;
    pointer-events: none;
  }

  /* Right Badge Connector Line -> points left (180deg) */
  .badge-right-center::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 100%;
    width: 110px;
    height: 1px;
    background: linear-gradient(270deg, rgba(0, 240, 255, 0.85) 0%, rgba(0, 240, 255, 0) 100%);
    box-shadow: 0 0 8px rgba(0, 240, 255, 0.7);
    transform: translateY(-50%);
    pointer-events: none;
  }

  /* Bottom Left Badge Connector Line -> points top-right (approx -35deg) */
  .badge-bottom-left::after {
    content: '';
    position: absolute;
    bottom: 65%;
    left: 80%;
    width: 125px;
    height: 1px;
    background: linear-gradient(90deg, rgba(0, 240, 255, 0.85) 0%, rgba(0, 240, 255, 0) 100%);
    box-shadow: 0 0 8px rgba(0, 240, 255, 0.7);
    transform: rotate(-36deg);
    transform-origin: bottom left;
    pointer-events: none;
  }
}

.sparkle {
  color: var(--biolum-cyan);
  font-size: 0.9rem;
}

/* CSS Audio Waveform Icon */
.audio-waveform {
  display: inline-flex;
  align-items: flex-end;
  gap: 2px;
  height: 12px;
}

.audio-waveform span {
  width: 2px;
  height: 100%;
  background-color: var(--biolum-cyan);
  border-radius: 2px;
  animation: soundWave 1.2s ease-in-out infinite alternate;
}

.audio-waveform span:nth-child(1) { animation-delay: 0s; }
.audio-waveform span:nth-child(2) { animation-delay: 0.3s; }
.audio-waveform span:nth-child(3) { animation-delay: 0.6s; }

@keyframes soundWave {
  0% { height: 3px; }
  100% { height: 12px; }
}

@keyframes floatLevitate {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(1deg); }
  100% { transform: translateY(4px) rotate(-1deg); }
}

.begin-dive-wrapper {
  display: flex;
  justify-content: center;
}

.begin-dive-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 26px;
  border-radius: 40px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  font-family: var(--font-primary);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: #ffffff;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.begin-dive-pill:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.6);
  box-shadow: 0 0 25px rgba(0, 240, 255, 0.5);
  transform: translateY(2px);
}

.down-arrow {
  color: var(--biolum-cyan);
  font-size: 1.1rem;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(4px); }
  60% { transform: translateY(2px); }
}

/* Wet Water Reflection (Anchored to 64vh Water Line) */
.surface-reflection {
  position: absolute;
  top: 64vh;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  pointer-events: none;
  user-select: none;
}

.reflection-node {
  transform: scaleY(-1);
  opacity: 0.15;
  filter: blur(4px) skewX(-2deg);
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.6) 0%, transparent 40%);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.6) 0%, transparent 40%);
  animation: wetWave 4s ease-in-out infinite alternate;
}

@keyframes wetWave {
  0% { filter: blur(4px) skewX(-2deg); transform: scaleY(-1) translateX(0); }
  100% { filter: blur(5px) skewX(2deg); transform: scaleY(-1) translateX(4px); }
}

/* SECTION 2: ASYMMETRICAL PORTFOLIO CARDS (UNCOMPRESSED FIXED GRID & SPACING) */
#section-dive {
  z-index: 100;
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

/* Spacious Goldilocks Card Width (780px max-width, 36px padding) */
.split-card {
  padding: 36px 42px;
  max-width: 780px;
  width: 90%;
  pointer-events: auto;
  position: absolute;
  will-change: transform, opacity;
  z-index: 110;
  opacity: 0;
  backface-visibility: hidden;
  box-sizing: border-box;
}

/* Odd Card 1 (AICO): Left Side (6vw margin) */
.tilt-left {
  left: 6vw;
  right: auto;
  top: 20%;
  transform: rotate(-3.5deg);
  animation: liquidFloat1 6s ease-in-out infinite alternate;
}

/* Even Card 2 (JMFW Fashion): Right Side (6vw margin) */
.tilt-right {
  left: auto;
  right: 6vw;
  top: 22%;
  transform: rotate(2.8deg);
  animation: liquidFloat2 6.5s ease-in-out infinite alternate;
}

/* Odd Card 3 (Event Production): Left Side (6vw margin) */
.tilt-mid-left {
  left: 6vw;
  right: auto;
  top: 20%;
  transform: rotate(-2.2deg);
  animation: liquidFloat3 7s ease-in-out infinite alternate;
}

@keyframes liquidFloat1 {
  0% { transform: translateY(0px) rotate(-3.5deg); }
  100% { transform: translateY(-12px) rotate(-1.5deg); }
}

@keyframes liquidFloat2 {
  0% { transform: translateY(0px) rotate(2.8deg); }
  100% { transform: translateY(-14px) rotate(4.5deg); }
}

@keyframes liquidFloat3 {
  0% { transform: translateY(0px) rotate(-2.2deg); }
  100% { transform: translateY(-10px) rotate(0.5deg); }
}

/* Fixed 230px Width Grid Column for Image Frame — NEVER SQUEEZED */
.split-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
  width: 100%;
  box-sizing: border-box;
}

@media (min-width: 768px) {
  .split-grid {
    grid-template-columns: 230px 1fr;
    gap: 36px;
  }
}

/* Fixed 230px Photo Frame with 270px Height & Aspect Ratio */
.editorial-img-frame {
  position: relative;
  width: 100%;
  height: 270px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  flex-shrink: 0;
  box-sizing: border-box;
}

.editorial-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.editorial-img-frame:hover img {
  transform: scale(1.06);
}

.editorial-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5, 10, 20, 0.6), transparent 70%);
  pointer-events: none;
}

.split-text-col {
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

/* Clean Editorial Block Flow for Title Typography */
.split-title {
  font-size: clamp(1.8rem, 2.6vw, 2.3rem);
  font-weight: 400;
  line-height: 1.25;
  margin-bottom: 14px;
  display: block;
  color: #ffffff;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.split-title .font-serif-italic {
  font-size: 1.05em;
  display: inline;
  margin: 0 4px;
}

.split-description {
  font-family: var(--font-primary);
  font-size: 0.95rem;
  color: #f1f5f9;
  font-weight: 300;
  line-height: 1.65;
  margin-bottom: 18px;
  text-shadow: 0px 2px 6px rgba(0, 0, 0, 0.9);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.editorial-meta-line {
  font-family: var(--font-primary);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  color: var(--color-text-muted);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  flex-wrap: wrap;
  word-wrap: break-word;
}

.editorial-meta-line .dot {
  color: rgba(255, 255, 255, 0.4);
}

/* SECTION 2.5: 3D SCATTER FLY-THROUGH TUNNEL (9 VIRAL VIDEOS) */
#section-viral.scatter-stage-3d {
  position: absolute;
  inset: 0;
  perspective: 2500px;
  height: 100vh;
  width: 100vw;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  pointer-events: none;
}

.viral-flythrough-header {
  position: absolute;
  top: 6vh;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 150;
  pointer-events: auto;
}

.viral-title {
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  font-weight: 400;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 10px;
}

/* 3D Track Wrapper (transform-style: preserve-3d) */
.viral-track-3d {
  position: absolute;
  inset: 0;
  width: 100vw;
  height: 100vh;
  transform-style: preserve-3d;
  will-change: transform;
  backface-visibility: hidden;
}

/* Scattered 9:16 Video Cards with Dynamic Hardware Acceleration & Frosted Glass Border */
.scatter-card {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200px;
  height: 355px;
  border-radius: 16px;
  padding: 4px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  overflow: hidden;
  transform-style: preserve-3d;
  backface-visibility: hidden;
  will-change: transform, opacity, filter;
  cursor: pointer;
  pointer-events: auto;
}

.scatter-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.scatter-card:hover {
  border-color: var(--biolum-cyan);
  box-shadow: 0 0 35px rgba(0, 240, 255, 0.6);
}

/* Absolute 3D Z-Space Positioning (-600px each) */
.card-z-1 { transform: translate3d(calc(-50% - 15vw), calc(-50% - 5vh), 0px); }
.card-z-2 { transform: translate3d(calc(-50% + 20vw), calc(-50% + 10vh), -600px); }
.card-z-3 { transform: translate3d(calc(-50% - 22vw), calc(-50% - 12vh), -1200px); }
.card-z-4 { transform: translate3d(calc(-50% + 18vw), calc(-50% - 8vh), -1800px); }
.card-z-5 { transform: translate3d(calc(-50% - 12vw), calc(-50% + 15vh), -2400px); }
.card-z-6 { transform: translate3d(calc(-50% + 22vw), calc(-50% + 5vh), -3000px); }
.card-z-7 { transform: translate3d(calc(-50% - 20vw), calc(-50% - 15vh), -3600px); }
.card-z-8 { transform: translate3d(calc(-50% + 16vw), calc(-50% + 12vh), -4200px); }
.card-z-9 { transform: translate3d(calc(-50% + 0vw), calc(-50% - 5vh), -4800px); }

/* Section 3: Breakthrough Blackout */
#section-breakthrough {
  opacity: 0;
  pointer-events: none;
}

/* SECTION 3.5: PERFECT GOLDILOCKS PORTRAIT SIZE & BALANCED LAYOUT */
#section-story {
  z-index: 100;
  justify-content: center;
}

.story-section-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  position: relative;
}

/* Portrait Wrapper: Goldilocks Height (96vh) & Width (48vw) */
.fullpage-portrait-wrapper {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 48vw;
  height: 96vh;
  display: flex;
  align-items: flex-end;
  pointer-events: none;
  z-index: 105;
  will-change: transform;
}

/* Precise 1.05 Scale: Fills Screen Vertically Up to 95% Without Clipping Head */
.fullpage-portrait-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom left;
  transform: scale(1.05) translateZ(0);
  transform-origin: bottom left;
  filter: drop-shadow(0px 15px 40px rgba(0, 0, 0, 0.9));
  backface-visibility: hidden;
}

/* Story Content positioned comfortably next to shoulder */
.middle-right-story-card.unboxed-story-content {
  position: absolute;
  left: 44vw;
  right: 4vw;
  top: 50%;
  transform: translateY(-50%);
  max-width: 560px;
  width: auto;
  padding-top: 0;
  z-index: 110;
  pointer-events: auto;
  background: transparent !important;
  border: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  box-shadow: none !important;
}

.middle-right-story-card.unboxed-story-content h2.story-heading {
  font-size: clamp(2.8rem, 5.2vw, 4.2rem);
  font-weight: 400;
  line-height: 1.08;
  margin-bottom: 18px;
  text-shadow: 0 4px 25px rgba(0, 0, 0, 0.95);
  display: flex;
  flex-direction: column;
}

.middle-right-story-card.unboxed-story-content p.story-body {
  font-family: var(--font-primary);
  font-size: 1.08rem;
  color: #f8fafc;
  font-weight: 400;
  line-height: 1.78;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.95);
}

/* SECTION 3.8: MONUMENTAL BOLD TYPOGRAPHY DIGITAL PRESENCE OVERHAUL */
#section-social {
  z-index: 100;
  justify-content: center;
}

.monumental-social-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 92%;
  max-width: 1100px;
  pointer-events: auto;
}

/* Perfect Flex Center Baseline Alignment for Header & Pill Badge */
.social-title {
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  font-weight: 400;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 12px;
  text-align: center;
  margin-bottom: 24px;
}

.social-title .font-serif-italic {
  font-size: 1.05em;
  line-height: 1.0;
}

.monumental-stats-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  width: 100%;
}

@media (min-width: 768px) {
  .monumental-stats-grid {
    flex-direction: row;
    gap: 8vw;
  }
}

/* Stat Block Flex Column with Generous Gap to Prevent Any Text Overlap */
.stat-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  gap: 24px;
  animation: statLevitate 5s ease-in-out infinite alternate;
  will-change: transform;
}

.stat-block:nth-child(2) {
  animation-delay: -2.5s;
}

.stat-link-wrapper {
  text-decoration: none;
  color: inherit;
  pointer-events: auto;
  cursor: pointer;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.stat-link-wrapper:hover {
  transform: translateY(-8px) scale(1.04);
}

/* Massive Number with Proper Line Height (1.05) & Padding */
.monumental-number {
  font-family: var(--font-serif);
  font-size: clamp(6rem, 11vw, 13rem);
  line-height: 1.05;
  font-style: italic;
  font-weight: 400;
  color: #ffffff;
  margin: 0;
  padding: 0;
}

.tiktok-glow {
  text-shadow: 0 0 40px rgba(0, 240, 255, 0.7), 0 0 15px rgba(0, 240, 255, 0.9);
}

.insta-glow {
  text-shadow: 0 0 40px rgba(244, 114, 182, 0.7), 0 0 15px rgba(244, 114, 182, 0.9);
}

/* Subtext Sitting Comfortably Below the Flourish with ZERO Overlap */
.monumental-subtext {
  font-family: var(--font-primary);
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #cbd5e1;
  margin: 0;
  padding-top: 4px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9);
  opacity: 0.9;
}

.monumental-subtext .dot {
  color: rgba(255, 255, 255, 0.4);
}

@keyframes statLevitate {
  0% { transform: translateY(0px); }
  100% { transform: translateY(-14px); }
}

/* SECTION 4: FOOTER CTA OVERHAUL (OPEN FOR COLLABORATION) */
.unboxed-core-section {
  z-index: 100;
  justify-content: center;
}

.unboxed-core-content {
  text-align: center;
  max-width: 900px;
  width: 90%;
  pointer-events: auto;
}

.footer-cta-headline {
  font-size: clamp(3.8rem, 8.5vw, 7.5rem);
  line-height: 1.08;
  margin-bottom: 24px;
  display: flex;
  align-items: baseline;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  text-shadow: 0 0 35px rgba(0, 240, 255, 0.7), 0 0 15px rgba(0, 240, 255, 0.9);
}

.cta-headline-sans {
  font-family: var(--font-primary);
  font-weight: 300;
  letter-spacing: 0.06em;
  color: #ffffff;
}

.cta-headline-serif {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: #ffffff;
}

.footer-cta-subheading {
  font-family: var(--font-primary);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 300;
  color: #cbd5e1;
  max-width: 680px;
  margin: 0 auto 32px auto;
  line-height: 1.6;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9);
}

/* Premium Frosted Glass Action Buttons */
.cta-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

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

.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 32px;
  border-radius: 50px;
  font-family: var(--font-primary);
  font-size: 0.92rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

.primary-cta {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  color: #ffffff;
}

.primary-cta:hover {
  background: rgba(0, 240, 255, 0.25);
  border-color: var(--biolum-cyan);
  box-shadow: 0 0 35px rgba(0, 240, 255, 0.8);
  transform: scale(1.05);
}

.secondary-cta {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #f1f5f9;
}

.secondary-cta:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.4);
  transform: scale(1.05);
}

.btn-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* Social Links */
.social-links {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #e2e8f0;
  transition: all 0.3s ease;
  pointer-events: auto;
}

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

.social-icon:hover {
  background: rgba(0, 240, 255, 0.25);
  border-color: var(--biolum-cyan);
  color: #ffffff;
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.6);
}

/* Toast Notification */
#toast {
  position: fixed;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  opacity: 0;
  padding: 14px 28px;
  font-family: var(--font-primary);
  font-size: 0.88rem;
  color: var(--biolum-cyan);
  border-color: var(--biolum-cyan);
  z-index: 10000;
  pointer-events: none;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 30px rgba(0, 240, 255, 0.3);
}

#toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* ==========================================================================
   STRICT MOBILE & PORTRAIT MODE MEDIA QUERIES (@media (max-width: 768px))
   ========================================================================== */
@media (max-width: 768px) {
  
  /* 1. Hero Identity Card & Title Perfect Center Alignment */
  .hero-identity-card {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    width: 100% !important;
    padding: 0 16px !important;
  }

  .hero-unboxed-title {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    gap: 2px !important;
    line-height: 1.05 !important;
    font-size: clamp(2.6rem, 10vw, 4.0rem) !important;
    margin: 0 auto 24px auto !important;
    width: 100% !important;
  }

  .hero-title-sans,
  .hero-title-serif {
    text-align: center !important;
    display: block !important;
    width: 100% !important;
    margin: 0 auto !important;
  }

  .hero-badges-container {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 8px !important;
    margin: 0 auto 20px auto !important;
    width: 100% !important;
  }

  .floating-badge {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    animation: none !important;
    font-size: 0.72rem;
    padding: 6px 14px;
    margin: 0 auto;
  }

  /* Disable connector lines on mobile completely */
  .badge-top-left::after,
  .badge-right-center::after,
  .badge-bottom-left::after {
    display: none !important;
  }

  /* 2. 3D Tunnel Title "Spilling the Tea" Perfect Center Single-Line / Non-Broken Alignment */
  .viral-flythrough-header {
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    padding: 0 16px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
  }

  .viral-title {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: baseline !important;
    justify-content: center !important;
    text-align: center !important;
    gap: 8px !important;
    font-size: clamp(1.6rem, 6.8vw, 2.5rem) !important;
    width: 100% !important;
    margin: 0 auto !important;
    white-space: nowrap !important;
  }

  /* 3. STRICT MOBILE CARD OVERFLOW CONTAINMENT & FIT */
  .split-card {
    width: 90% !important;
    max-width: 360px !important;
    padding: 20px 16px !important;
    left: 50% !important;
    right: auto !important;
    top: 20% !important;
    transform: translateX(-50%) !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .split-grid {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    gap: 14px !important;
    box-sizing: border-box !important;
  }

  .editorial-img-frame {
    width: 100% !important;
    height: 160px !important;
    border-radius: 12px !important;
    margin: 0 !important;
    box-sizing: border-box !important;
    flex-shrink: 0 !important;
  }

  .editorial-img-frame img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
  }

  .split-text-col {
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    text-align: left !important;
  }

  .section-badge {
    font-size: 0.65rem !important;
    letter-spacing: 0.15em !important;
    padding: 4px 12px !important;
    margin-bottom: 8px !important;
  }

  .split-title {
    font-size: clamp(1.35rem, 5.2vw, 1.7rem) !important;
    line-height: 1.25 !important;
    margin-bottom: 8px !important;
    display: block !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    hyphens: auto !important;
    width: 100% !important;
  }

  .split-title .font-serif-italic {
    display: inline !important;
    font-size: 1.05em !important;
    margin: 0 2px !important;
  }

  .split-description {
    font-size: 0.82rem !important;
    line-height: 1.5 !important;
    margin-bottom: 12px !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    width: 100% !important;
  }

  .editorial-meta-line {
    font-size: 0.62rem !important;
    letter-spacing: 0.1em !important;
    flex-wrap: wrap !important;
    gap: 4px 8px !important;
    width: 100% !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
  }

  .tilt-left, .tilt-right, .tilt-mid-left {
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) !important;
    top: 20% !important;
    animation: none !important;
  }

  /* 4. 3D Fly-Through Tunnel Cards Mobile Fit */
  .scatter-card {
    width: 140px;
    height: 245px;
  }

  /* 5. PORTRAIT & STORY SECTION NO-OVERLAP VERTICAL FLEX COLUMN */
  #section-story {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 16px;
    overflow-y: auto;
  }

  .story-section-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 440px;
    gap: 16px;
    position: relative;
  }

  .fullpage-portrait-wrapper {
    position: relative !important;
    width: 100% !important;
    max-width: 280px !important;
    height: auto !important;
    max-height: 38vh !important;
    left: auto !important;
    bottom: auto !important;
    top: auto !important;
    right: auto !important;
    display: flex !important;
    justify-content: center !important;
    align-items: flex-end !important;
    margin: 0 auto !important;
  }

  .fullpage-portrait-img {
    width: 100% !important;
    height: 100% !important;
    max-height: 38vh !important;
    object-fit: contain !important;
    object-position: center bottom !important;
    transform: none !important;
  }

  .middle-right-story-card.unboxed-story-content {
    position: relative !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
    transform: none !important;
    max-width: 100% !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    text-align: center !important;
  }

  .middle-right-story-card.unboxed-story-content h2.story-heading {
    font-size: clamp(2rem, 7vw, 2.8rem);
    line-height: 1.15;
    margin-bottom: 12px;
  }

  .middle-right-story-card.unboxed-story-content p.story-body {
    font-size: 0.92rem;
    line-height: 1.6;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.95), 0 0 20px rgba(0, 240, 255, 0.5);
  }

  /* 6. Monumental Stats Mobile Fit */
  .monumental-number {
    font-size: clamp(4.5rem, 18vw, 6.5rem);
    line-height: 1.05;
  }

  .monumental-subtext {
    font-size: 0.72rem;
    letter-spacing: 0.15em;
  }

  .social-title {
    font-size: clamp(2rem, 7vw, 2.8rem);
    flex-wrap: wrap;
    gap: 6px;
  }

  /* 7. Footer CTA Mobile Fit */
  .footer-cta-headline {
    font-size: clamp(2.6rem, 9.5vw, 4.2rem);
    flex-direction: column;
    gap: 4px;
  }

  .footer-cta-subheading {
    font-size: 0.95rem;
  }

  .hud-nav {
    padding: 10px 18px;
  }

  .nav-status {
    display: none;
  }

  .nav-controls {
    gap: 10px;
  }
}
