/* ============================================================
   AURALIS STUDIO — COMPLETE CINEMATIC STYLESHEET
   ============================================================ */

/* --- Design Tokens --- */
:root {
  --void: #050208;
  --void-deep: #020106;
  --surface: #0a0714;
  --surface-light: #120e1f;
  --purple-100: #f3e8ff;
  --purple-200: #e9d5ff;
  --purple-300: #d8b4fe;
  --purple-400: #c084fc;
  --purple-500: #a855f7;
  --purple-600: #9333ea;
  --purple-700: #7e22ce;
  --purple-glow: rgba(168, 85, 247, 0.4);
  --purple-bloom: rgba(192, 132, 252, 0.15);
  --purple-haze: rgba(139, 92, 246, 0.08);
  --fuchsia-400: #e879f9;
  --fuchsia-glow: rgba(232, 121, 249, 0.3);
  --text-primary: rgba(255, 255, 255, 0.95);
  --text-secondary: rgba(255, 255, 255, 0.55);
  --text-tertiary: rgba(255, 255, 255, 0.35);
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quint: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out-sine: cubic-bezier(0.37, 0, 0.63, 1);
  --nav-height: 72px;
}

/* --- Reset --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--void);
  color: var(--text-primary);
  overflow-x: hidden;
}

/* --- Particle Canvas --- */
#particleCanvas {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  z-index: 1; pointer-events: none;
}

/* --- Gradient text utility --- */
.gradient-text {
  background: linear-gradient(135deg, var(--purple-400), var(--fuchsia-400));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================================
   BACKGROUND SYSTEM
   ============================================================ */
.bg-system { position: fixed; inset: 0; z-index: 0; overflow: hidden; }
.bg-layer { position: absolute; inset: 0; pointer-events: none; }
.bg-radial-1 { background: radial-gradient(ellipse 80% 60% at 50% 120%, rgba(126,34,206,0.15) 0%, transparent 70%); }
.bg-radial-2 { background: radial-gradient(ellipse 60% 50% at 30% 80%, rgba(139,92,246,0.08) 0%, transparent 60%); }
.bg-radial-3 { background: radial-gradient(ellipse 50% 40% at 70% 90%, rgba(232,121,249,0.06) 0%, transparent 50%); }
.bg-fog { position: absolute; width: 200%; height: 200%; pointer-events: none; opacity: 0.4; }
.fog-1 { top: 40%; left: -50%; background: radial-gradient(ellipse at center, rgba(126,34,206,0.06) 0%, transparent 60%); animation: fogDrift1 25s var(--ease-in-out-sine) infinite alternate; }
.fog-2 { top: 30%; left: -30%; background: radial-gradient(ellipse at center, rgba(168,85,247,0.04) 0%, transparent 50%); animation: fogDrift2 30s var(--ease-in-out-sine) infinite alternate; }
.fog-3 { top: 50%; left: -20%; background: radial-gradient(ellipse at center, rgba(232,121,249,0.03) 0%, transparent 40%); animation: fogDrift3 20s var(--ease-in-out-sine) infinite alternate; }
@keyframes fogDrift1 { 0% { transform: translate(0,0) scale(1); } 100% { transform: translate(5%,-3%) scale(1.1); } }
@keyframes fogDrift2 { 0% { transform: translate(0,0) scale(1); } 100% { transform: translate(-4%,2%) scale(1.05); } }
@keyframes fogDrift3 { 0% { transform: translate(0,0) scale(1); } 100% { transform: translate(3%,-2%) scale(1.15); } }
.bg-depth-layer { position: absolute; inset: 0; pointer-events: none; }
.depth-1 { background: radial-gradient(1px 1px at 20% 30%, rgba(255,255,255,0.08) 0%, transparent 100%), radial-gradient(1px 1px at 60% 50%, rgba(255,255,255,0.05) 0%, transparent 100%), radial-gradient(1px 1px at 80% 20%, rgba(255,255,255,0.06) 0%, transparent 100%), radial-gradient(1px 1px at 40% 70%, rgba(255,255,255,0.04) 0%, transparent 100%); }
.depth-2 { background: radial-gradient(1.5px 1.5px at 15% 60%, rgba(168,85,247,0.1) 0%, transparent 100%), radial-gradient(1px 1px at 75% 40%, rgba(192,132,252,0.08) 0%, transparent 100%); }
.depth-3 { background: radial-gradient(2px 2px at 90% 10%, rgba(232,121,249,0.06) 0%, transparent 100%), radial-gradient(1.5px 1.5px at 10% 90%, rgba(168,85,247,0.05) 0%, transparent 100%); }

/* ============================================================
   THE GIANT ARC
   ============================================================ */
.arc-container { position: fixed; bottom: 0; left: 50%; transform: translateX(-50%); width: 200vw; height: 200vw; z-index: 2; pointer-events: none; will-change: transform; animation: arcRise 3.5s var(--ease-out-expo) 0.3s both; }
@keyframes arcRise { 0% { transform: translateX(-50%) translateY(65%); opacity: 0; } 30% { opacity: 1; } 100% { transform: translateX(-50%) translateY(22%); opacity: 1; } }
.arc-system { position: absolute; inset: 0; border-radius: 50%; }
.arc-ring { position: absolute; border-radius: 50%; border-style: solid; border-color: transparent; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.ring-outer { width: 100%; height: 100%; border-width: 1px; border-color: rgba(168,85,247,0.08); box-shadow: 0 0 80px 20px rgba(168,85,247,0.03), inset 0 0 80px 20px rgba(168,85,247,0.02); }
.ring-mid-outer { width: 92%; height: 92%; border-width: 1px; border-color: rgba(168,85,247,0.12); box-shadow: 0 0 60px 15px rgba(168,85,247,0.04); }
.ring-mid { width: 84%; height: 84%; border-width: 1.5px; border-color: rgba(192,132,252,0.2); box-shadow: 0 0 50px 12px rgba(192,132,252,0.06); animation: ringPulse 6s var(--ease-in-out-sine) infinite alternate; }
.ring-mid-inner { width: 76%; height: 76%; border-width: 1px; border-color: rgba(192,132,252,0.15); box-shadow: 0 0 40px 10px rgba(192,132,252,0.05); }
.ring-inner { width: 68%; height: 68%; border-width: 2px; border-color: rgba(192,132,252,0.25); box-shadow: 0 0 60px 20px rgba(192,132,252,0.08), 0 0 120px 40px rgba(168,85,247,0.05); animation: ringPulse 8s var(--ease-in-out-sine) 1s infinite alternate; }
.ring-core { width: 60%; height: 60%; border-width: 2.5px; border-color: rgba(216,180,254,0.35); box-shadow: 0 0 80px 30px rgba(192,132,252,0.12), 0 0 160px 60px rgba(168,85,247,0.08), 0 0 240px 80px rgba(139,92,246,0.04); animation: ringPulse 5s var(--ease-in-out-sine) 0.5s infinite alternate; }
@keyframes ringPulse { 0% { opacity: 0.8; } 100% { opacity: 1; } }
.arc-bloom { position: absolute; border-radius: 50%; top: 50%; left: 50%; transform: translate(-50%, -50%); filter: blur(60px); }
.bloom-1 { width: 70%; height: 70%; background: radial-gradient(circle, rgba(192,132,252,0.08) 0%, transparent 70%); animation: bloomPulse 7s var(--ease-in-out-sine) infinite alternate; }
.bloom-2 { width: 85%; height: 85%; background: radial-gradient(circle, rgba(139,92,246,0.06) 0%, transparent 60%); filter: blur(80px); animation: bloomPulse 9s var(--ease-in-out-sine) 2s infinite alternate; }
.bloom-3 { width: 95%; height: 95%; background: radial-gradient(circle, rgba(168,85,247,0.04) 0%, transparent 50%); filter: blur(120px); }
@keyframes bloomPulse { 0% { opacity: 0.6; transform: translate(-50%, -50%) scale(0.97); } 100% { opacity: 1; transform: translate(-50%, -50%) scale(1.03); } }
.arc-haze { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); border-radius: 50%; }
.haze-1 { width: 75%; height: 75%; background: radial-gradient(ellipse 100% 80% at 50% 40%, rgba(126,34,206,0.12) 0%, transparent 60%); filter: blur(40px); animation: hazeShift 12s var(--ease-in-out-sine) infinite alternate; }
.haze-2 { width: 65%; height: 65%; background: radial-gradient(ellipse 120% 60% at 50% 50%, rgba(232,121,249,0.06) 0%, transparent 70%); filter: blur(50px); animation: hazeShift 15s var(--ease-in-out-sine) 3s infinite alternate; }
@keyframes hazeShift { 0% { transform: translate(-50%, -50%) rotate(0deg); } 100% { transform: translate(-50%, -50%) rotate(3deg); } }
.light-streak { position: absolute; top: 50%; left: 50%; width: 2px; height: 35%; transform-origin: center bottom; opacity: 0; animation: streakFlash 8s ease-in-out infinite; }
.light-streak::after { content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 100%; height: 100%; background: linear-gradient(to top, rgba(192,132,252,0.4), transparent); filter: blur(2px); }
.streak-1 { transform: translate(-50%, -100%) rotate(-20deg); animation-delay: 0s; }
.streak-2 { transform: translate(-50%, -100%) rotate(-8deg); animation-delay: 1.5s; }
.streak-3 { transform: translate(-50%, -100%) rotate(5deg); animation-delay: 3s; }
.streak-4 { transform: translate(-50%, -100%) rotate(15deg); animation-delay: 4.5s; }
.streak-5 { transform: translate(-50%, -100%) rotate(25deg); animation-delay: 6s; }
@keyframes streakFlash { 0%, 100% { opacity: 0; } 15% { opacity: 0.6; } 30% { opacity: 0; } }
.lens-glow { position: fixed; width: 600px; height: 600px; border-radius: 50%; background: radial-gradient(circle, rgba(168,85,247,0.06) 0%, transparent 60%); filter: blur(40px); pointer-events: none; z-index: 3; opacity: 0; transition: opacity 1s ease; will-change: transform; }
.lens-glow.active { opacity: 1; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 40px);
  max-width: 900px;
  height: 60px;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10, 7, 24, 0.45);
  opacity: 1;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 100px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav.nav-scrolled {
  top: 12px;
  transform: translateX(-50%) scale(0.96);
  background: rgba(8, 5, 20, 0.7);
  border-color: rgba(168, 85, 247, 0.15);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(168, 85, 247, 0.1);
}

.nav-inner {
  width: 100%;
  padding: 0 8px 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Nav Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  color: white;
  text-decoration: none;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  transition: opacity 0.3s ease;
}

.nav-logo:hover {
  opacity: 0.8;
}

.nav-logo-svg {
  width: 24px;
  height: 24px;
  animation: navLogoSpin 20s linear infinite;
}

@keyframes navLogoSpin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Links Wrap */
.nav-links-wrap {
  position: relative;
  display: flex;
  gap: 6px;
  align-items: center;
}

.nav-link {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 100px;
  z-index: 2;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link:hover {
  color: var(--text-primary);
}

/* Sliding hover background pill */
.nav-hover-pill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  border-radius: 100px;
  background: rgba(168, 85, 247, 0.1);
  border: 1px solid rgba(168, 85, 247, 0.2);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 0;
  z-index: 1;
  pointer-events: none;
  box-shadow: 0 0 15px rgba(168, 85, 247, 0.05);
}

/* CTA Button */
.nav-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 20px;
  border-radius: 100px;
  background: linear-gradient(135deg, var(--purple-500), var(--purple-600));
  color: white;
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 15px rgba(168, 85, 247, 0.15);
  transition: all 0.3s var(--ease-out-expo);
  overflow: hidden;
  position: relative;
}

.nav-cta-btn:hover {
  transform: translateY(-1px) scale(1.02);
  background: linear-gradient(135deg, var(--purple-600), var(--purple-700));
  border-color: rgba(192, 132, 252, 0.3);
  box-shadow: 0 6px 20px rgba(168, 85, 247, 0.3), 0 0 15px rgba(232, 121, 249, 0.15);
}

.nav-cta-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.nav-cta-btn:hover .nav-cta-glow {
  opacity: 1;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero { position: relative; z-index: 10; min-height: 100vh; display: flex; flex-direction: column; align-items: center; padding-top: calc(var(--nav-height) + 60px); }
.hero-content { display: flex; flex-direction: column; align-items: center; text-align: center; max-width: 900px; padding: 0 24px; }
.logo { display: flex; align-items: center; gap: 12px; margin-bottom: 48px; }
.logo-mark { width: 40px; height: 40px; }
.logo-svg { width: 100%; height: 100%; animation: logoSpin 30s linear infinite; }
@keyframes logoSpin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }
.logo-text { font-family: 'Outfit', sans-serif; font-size: 18px; font-weight: 600; letter-spacing: 6px; color: var(--text-primary); }
.logo-sub { font-family: 'Inter', sans-serif; font-size: 10px; font-weight: 400; letter-spacing: 4px; color: var(--text-tertiary); margin-left: -2px; padding-left: 12px; border-left: 1px solid rgba(255,255,255,0.1); }
.hero-badge { display: inline-flex; align-items: center; gap: 10px; padding: 8px 20px; border-radius: 100px; background: rgba(168,85,247,0.08); border: 1px solid rgba(168,85,247,0.15); margin-bottom: 36px; backdrop-filter: blur(10px); }
.badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--purple-400); box-shadow: 0 0 8px var(--purple-glow); animation: dotPulse 2s ease-in-out infinite; }
@keyframes dotPulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(0.8); } }
.badge-text { font-size: 12px; font-weight: 500; letter-spacing: 0.5px; color: var(--purple-300); }
.hero-headline { font-family: 'Outfit', sans-serif; font-size: clamp(40px, 6vw, 80px); font-weight: 700; line-height: 1.1; letter-spacing: -1.5px; margin-bottom: 28px; }
.headline-line { display: block; }
.headline-word { display: inline-block; }
.line-accent { margin-top: 4px; }
.accent-word { background: linear-gradient(135deg, var(--purple-400), var(--fuchsia-400)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-sub { font-size: clamp(15px, 1.4vw, 18px); font-weight: 300; line-height: 1.7; color: var(--text-secondary); max-width: 600px; margin-bottom: 44px; }
.hero-ctas { display: flex; gap: 16px; align-items: center; }
.cta { position: relative; display: inline-flex; align-items: center; gap: 10px; text-decoration: none; font-size: 14px; font-weight: 500; letter-spacing: 0.3px; border-radius: 100px; transition: all 0.5s var(--ease-out-expo); cursor: pointer; overflow: hidden; }
.cta-primary { padding: 16px 36px; background: linear-gradient(135deg, var(--purple-600), var(--purple-700)); color: white; border: 1px solid rgba(192,132,252,0.3); box-shadow: 0 0 30px rgba(168,85,247,0.2), 0 4px 20px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.1); }
.cta-primary:hover { transform: translateY(-2px); box-shadow: 0 0 50px rgba(168,85,247,0.35), 0 8px 30px rgba(0,0,0,0.4); border-color: rgba(192,132,252,0.5); }
.cta-glow { position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 50%); opacity: 0; transition: opacity 0.5s ease; pointer-events: none; }
.cta-primary:hover .cta-glow { opacity: 1; }
.cta-arrow { display: flex; transition: transform 0.5s var(--ease-out-expo); }
.cta-primary:hover .cta-arrow { transform: translateX(4px); }
.cta-secondary { padding: 16px 36px; background: transparent; color: var(--text-secondary); border: 1px solid rgba(255,255,255,0.1); }
.cta-secondary:hover { color: var(--text-primary); border-color: rgba(255,255,255,0.25); background: rgba(255,255,255,0.03); transform: translateY(-2px); }
.showcase-panel { position: relative; width: 100%; max-width: 820px; margin-top: 72px; padding: 0 24px; z-index: 10; animation: panelFloat 6s var(--ease-in-out-sine) infinite; }
@keyframes panelFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
.panel-glass { position: relative; border-radius: 20px; background: rgba(15,10,30,0.6); border: 1px solid rgba(168,85,247,0.12); backdrop-filter: blur(30px); overflow: hidden; box-shadow: 0 0 60px rgba(168,85,247,0.08), 0 20px 60px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.05); }
.panel-reflection { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(255,255,255,0.03) 0%, transparent 40%, transparent 60%, rgba(255,255,255,0.02) 100%); pointer-events: none; z-index: 5; }
.panel-edge-light { position: absolute; pointer-events: none; z-index: 6; }
.edge-top { top: 0; left: 10%; width: 80%; height: 1px; background: linear-gradient(90deg, transparent, rgba(192,132,252,0.3), rgba(232,121,249,0.2), rgba(192,132,252,0.3), transparent); }
.edge-left { top: 10%; left: 0; width: 1px; height: 80%; background: linear-gradient(180deg, transparent, rgba(192,132,252,0.15), transparent); }
.edge-right { top: 10%; right: 0; width: 1px; height: 80%; background: linear-gradient(180deg, transparent, rgba(232,121,249,0.1), transparent); }
.panel-content { position: relative; z-index: 2; }
.panel-chrome { display: flex; align-items: center; gap: 16px; padding: 14px 20px; border-bottom: 1px solid rgba(255,255,255,0.05); }
.chrome-dots { display: flex; gap: 6px; }
.chrome-dot { width: 10px; height: 10px; border-radius: 50%; }
.dot-red { background: #ff5f57; } .dot-yellow { background: #febc2e; } .dot-green { background: #28c840; }
.chrome-url { flex: 1; display: flex; align-items: center; gap: 6px; padding: 6px 14px; border-radius: 8px; background: rgba(255,255,255,0.04); font-size: 11px; color: var(--text-tertiary); }
.chrome-lock { font-size: 10px; }
.panel-mockup { position: relative; padding: 24px; min-height: 320px; overflow: hidden; }
.mockup-hero { position: relative; width: 100%; min-height: 300px; background: linear-gradient(180deg, rgba(15,10,30,0.8) 0%, rgba(20,12,40,0.4) 100%); border-radius: 12px; padding: 20px; border: 1px solid rgba(255,255,255,0.03); }
.mockup-nav { display: flex; justify-content: space-between; align-items: center; margin-bottom: 40px; }
.mockup-logo-block { width: 60px; height: 8px; border-radius: 4px; background: linear-gradient(90deg, var(--purple-400), var(--fuchsia-400)); opacity: 0.6; }
.mockup-nav-items { display: flex; gap: 12px; }
.mockup-nav-item { width: 35px; height: 5px; border-radius: 3px; background: rgba(255,255,255,0.1); }
.mockup-content-area { max-width: 55%; }
.mockup-tag { width: 80px; height: 18px; border-radius: 9px; background: rgba(168,85,247,0.15); border: 1px solid rgba(168,85,247,0.2); margin-bottom: 16px; }
.mockup-title-line { height: 10px; border-radius: 5px; background: rgba(255,255,255,0.15); margin-bottom: 8px; }
.mockup-title-line.line-1 { width: 85%; } .mockup-title-line.line-2 { width: 65%; }
.mockup-subtitle { width: 90%; height: 6px; border-radius: 3px; background: rgba(255,255,255,0.06); margin: 12px 0 20px; }
.mockup-cta-row { display: flex; gap: 8px; }
.mockup-cta-btn { height: 28px; border-radius: 14px; }
.primary-btn { width: 90px; background: linear-gradient(135deg, var(--purple-600), var(--purple-700)); }
.secondary-btn { width: 70px; border: 1px solid rgba(255,255,255,0.1); }
.mockup-card { position: absolute; border-radius: 12px; background: rgba(20,15,35,0.8); border: 1px solid rgba(255,255,255,0.06); backdrop-filter: blur(10px); padding: 14px; }
.card-1 { right: 20px; top: 60px; width: 140px; display: flex; gap: 10px; align-items: flex-start; animation: cardFloat1 5s var(--ease-in-out-sine) infinite; }
@keyframes cardFloat1 { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }
.card-icon { width: 28px; height: 28px; border-radius: 8px; background: linear-gradient(135deg, var(--purple-500), var(--fuchsia-400)); flex-shrink: 0; }
.card-lines { flex: 1; display: flex; flex-direction: column; gap: 5px; padding-top: 4px; }
.card-line { height: 5px; border-radius: 3px; background: rgba(255,255,255,0.1); width: 100%; }
.card-line.short { width: 60%; }
.card-2 { right: 30px; top: 150px; width: 120px; animation: cardFloat2 7s var(--ease-in-out-sine) 1s infinite; }
@keyframes cardFloat2 { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.metric-value { width: 50px; height: 14px; border-radius: 7px; background: rgba(255,255,255,0.12); margin-bottom: 8px; }
.metric-bar { width: 100%; height: 4px; border-radius: 2px; background: rgba(255,255,255,0.06); overflow: hidden; }
.metric-fill { width: 72%; height: 100%; border-radius: 2px; background: linear-gradient(90deg, var(--purple-500), var(--fuchsia-400)); animation: fillPulse 3s ease-in-out infinite alternate; }
@keyframes fillPulse { 0% { width: 65%; } 100% { width: 80%; } }
.card-3 { right: 50px; bottom: 30px; width: 130px; animation: cardFloat3 6s var(--ease-in-out-sine) 0.5s infinite; }
@keyframes cardFloat3 { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-5px); } }
.graph-svg { width: 100%; height: auto; }
.graph-line { stroke-dasharray: 200; stroke-dashoffset: 200; animation: graphDraw 2s ease-out 2.5s forwards; }
@keyframes graphDraw { to { stroke-dashoffset: 0; } }
.panel-orb { position: absolute; border-radius: 50%; pointer-events: none; filter: blur(30px); }
.orb-1 { width: 120px; height: 120px; bottom: -20px; right: -20px; background: rgba(168,85,247,0.08); animation: orbFloat 8s var(--ease-in-out-sine) infinite alternate; }
.orb-2 { width: 80px; height: 80px; top: 20px; left: -10px; background: rgba(232,121,249,0.06); animation: orbFloat 10s var(--ease-in-out-sine) 2s infinite alternate; }
@keyframes orbFloat { 0% { transform: translate(0,0) scale(1); } 100% { transform: translate(10px,-15px) scale(1.1); } }

/* Hero entrance */
.anim-logo, .anim-badge, .anim-headline, .anim-sub, .anim-ctas, .anim-panel {
  opacity: 0; transform: translateY(30px); animation-fill-mode: both; animation-duration: 1.2s; animation-timing-function: var(--ease-out-expo); animation-name: fadeInUp;
}
@keyframes fadeInUp { 0% { opacity: 0; transform: translateY(30px); } 100% { opacity: 1; transform: translateY(0); } }
.anim-logo { animation-delay: 0.8s; }

.nav.anim-nav {
  animation-name: navSlideDown;
  animation-duration: 1.2s;
  animation-timing-function: var(--ease-out-expo);
  animation-delay: 1.2s;
  animation-fill-mode: backwards;
}

@keyframes navSlideDown {
  0% { opacity: 0; top: -70px; }
  100% { opacity: 1; top: 20px; }
}
.anim-badge { animation-delay: 1.8s; }
.anim-headline { animation-delay: 2.2s; }
.anim-sub { animation-delay: 2.6s; }
.anim-ctas { animation-delay: 3.0s; }
.anim-panel { animation-delay: 3.4s; animation-duration: 1.6s; }

/* ============================================================
   GLOBAL SECTION STYLES
   ============================================================ */
.s {
  position: relative;
  z-index: 10;
  padding: 160px 24px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}

.s-glow-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 1.5s ease;
}

.s.is-visible .s-glow-bg { opacity: 1; }

.portfolio-glow { background: radial-gradient(ellipse 70% 50% at 50% 50%, rgba(126,34,206,0.06) 0%, transparent 70%); }
.services-glow { background: radial-gradient(ellipse 60% 60% at 50% 40%, rgba(139,92,246,0.07) 0%, transparent 60%); }
.process-glow { background: radial-gradient(ellipse 80% 40% at 50% 60%, rgba(168,85,247,0.05) 0%, transparent 60%); }
.results-glow { background: radial-gradient(ellipse 50% 50% at 50% 50%, rgba(192,132,252,0.08) 0%, transparent 50%); }
.testimonials-glow { background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(232,121,249,0.05) 0%, transparent 60%); }
.showcase-glow-bg { background: radial-gradient(ellipse 80% 40% at 50% 50%, rgba(126,34,206,0.05) 0%, transparent 70%); }

.s-header {
  text-align: center;
  margin-bottom: 80px;
  max-width: 700px;
}

.s-label {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--purple-400);
  margin-bottom: 20px;
}

.s-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 20px;
}

.s-desc {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-secondary);
}

/* Reveal animation */
[data-reveal] {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1.2s var(--ease-out-expo), transform 1.2s var(--ease-out-expo);
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   SECTION 01 — PORTFOLIO UNIVERSE
   ============================================================ */
.orbit-viewport {
  position: relative;
  width: 100%;
  max-width: 1100px;
  min-height: 600px;
  perspective: 1200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.orbit-core {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  z-index: 5;
}

.core-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid;
}

.core-ring-1 {
  border-color: rgba(192,132,252,0.2);
  animation: coreRotate 12s linear infinite;
  box-shadow: 0 0 40px rgba(192,132,252,0.1);
}

.core-ring-2 {
  inset: 15px;
  border-color: rgba(168,85,247,0.3);
  animation: coreRotate 8s linear infinite reverse;
  box-shadow: 0 0 30px rgba(168,85,247,0.15);
}

.core-ring-3 {
  inset: 30px;
  border-color: rgba(232,121,249,0.25);
  animation: coreRotate 6s linear infinite;
  box-shadow: 0 0 20px rgba(232,121,249,0.1);
}

.core-dot {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--purple-400);
  box-shadow: 0 0 20px var(--purple-glow), 0 0 60px rgba(168,85,247,0.2);
  animation: dotPulse 2s ease-in-out infinite;
}

@keyframes coreRotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.orbit-stage {
  position: relative;
  width: 100%;
  min-height: 580px;
  transform-style: preserve-3d;
}

/* Monolith */
.monolith {
  position: absolute;
  width: 320px;
  transform-style: preserve-3d;
  transition: transform 0.8s var(--ease-out-expo), opacity 0.8s ease;
  cursor: pointer;
}

.monolith[data-monolith="0"] { top: 0; left: 5%; }
.monolith[data-monolith="1"] { top: 20px; right: 5%; left: auto; }
.monolith[data-monolith="2"] { bottom: 0; left: 15%; top: auto; }
.monolith[data-monolith="3"] { bottom: 20px; right: 10%; left: auto; top: auto; }

.monolith-glass {
  position: relative;
  background: rgba(12, 8, 25, 0.7);
  border: 1px solid rgba(168,85,247,0.1);
  border-radius: 16px;
  overflow: hidden;
  backdrop-filter: blur(20px);
  box-shadow:
    0 0 40px rgba(168,85,247,0.05),
    0 20px 60px rgba(0,0,0,0.5),
    inset 0 1px 0 rgba(255,255,255,0.04);
  transition: all 0.8s var(--ease-out-expo);
}

.monolith:hover .monolith-glass {
  border-color: rgba(192,132,252,0.25);
  box-shadow:
    0 0 80px rgba(168,85,247,0.15),
    0 30px 80px rgba(0,0,0,0.6),
    inset 0 1px 0 rgba(255,255,255,0.08);
  transform: translateY(-10px) scale(1.03);
}

.monolith-edge-glow {
  position: absolute;
  top: 0;
  left: 10%;
  width: 80%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(192,132,252,0.3), transparent);
  opacity: 0;
  transition: opacity 0.6s ease;
}

.monolith:hover .monolith-edge-glow { opacity: 1; }

.monolith-screen {
  position: relative;
  height: 180px;
  background: linear-gradient(180deg, rgba(15,10,30,0.9), rgba(10,7,20,0.6));
  border-bottom: 1px solid rgba(255,255,255,0.04);
  padding: 16px;
  overflow: hidden;
}

.mono-mock-nav { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; }
.mm-logo { width: 40px; height: 6px; border-radius: 3px; background: linear-gradient(90deg, var(--purple-400), var(--fuchsia-400)); opacity: 0.5; }
.mm-links { display: flex; gap: 8px; }
.mm-links span { width: 24px; height: 4px; border-radius: 2px; background: rgba(255,255,255,0.08); display: block; }

.mono-mock-hero { max-width: 70%; }
.mm-badge { width: 50px; height: 12px; border-radius: 6px; background: rgba(168,85,247,0.15); border: 1px solid rgba(168,85,247,0.15); margin-bottom: 10px; }
.mm-h1 { height: 7px; border-radius: 3px; background: rgba(255,255,255,0.12); margin-bottom: 5px; width: 100%; }
.mm-h1.short { width: 65%; }
.mm-p { height: 4px; border-radius: 2px; background: rgba(255,255,255,0.06); margin: 8px 0; width: 85%; }
.mm-cta { width: 60px; height: 18px; border-radius: 9px; background: linear-gradient(135deg, var(--purple-600), var(--purple-700)); margin-top: 10px; }

.mono-mock-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.15;
}

.accent-blue { background: #818cf8; }
.accent-purple { background: #a855f7; }
.accent-rose { background: #f472b6; }
.accent-teal { background: #2dd4bf; }

.monolith-info {
  padding: 20px;
}

.mono-cat {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--purple-400);
  display: block;
  margin-bottom: 8px;
}

.mono-name {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
}

.mono-desc {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 14px;
}

.mono-metrics { display: flex; gap: 16px; }
.mono-metric {
  font-size: 11px;
  color: var(--text-tertiary);
  display: flex;
  gap: 4px;
}
.mono-metric strong {
  color: var(--purple-300);
  font-weight: 600;
}

.monolith-shadow {
  position: absolute;
  bottom: -30px;
  left: 10%;
  width: 80%;
  height: 30px;
  background: radial-gradient(ellipse, rgba(168,85,247,0.1) 0%, transparent 70%);
  filter: blur(15px);
  opacity: 0;
  transition: opacity 0.6s ease;
}

.monolith:hover .monolith-shadow { opacity: 1; }

/* ============================================================
   SECTION 02 — SERVICES DIMENSION
   ============================================================ */
.portals-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  width: 100%;
  max-width: 900px;
}

.portal {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  min-height: 320px;
  cursor: pointer;
  transition: transform 0.8s var(--ease-out-expo);
}

.portal:hover {
  transform: translateY(-8px) scale(1.02);
}

.portal-atmosphere {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: 24px;
}

.portal-particles {
  position: absolute;
  inset: 0;
}

/* Light particles for Web */
.p-light {
  background:
    radial-gradient(1px 1px at 20% 30%, rgba(168,85,247,0.3) 0%, transparent 100%),
    radial-gradient(1px 1px at 60% 60%, rgba(192,132,252,0.25) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 80% 20%, rgba(216,180,254,0.2) 0%, transparent 100%),
    radial-gradient(1px 1px at 40% 80%, rgba(139,92,246,0.15) 0%, transparent 100%),
    radial-gradient(1px 1px at 70% 40%, rgba(232,121,249,0.2) 0%, transparent 100%);
  animation: particleDrift 15s linear infinite;
}

/* Energy streams for AI */
.p-energy {
  background:
    linear-gradient(180deg, transparent 0%, rgba(192,132,252,0.03) 50%, transparent 100%),
    linear-gradient(120deg, transparent 0%, rgba(129,140,248,0.04) 50%, transparent 100%);
  animation: energyFlow 8s var(--ease-in-out-sine) infinite alternate;
}

.p-energy::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(60deg, transparent 30%, rgba(192,132,252,0.06) 50%, transparent 70%);
  animation: energySweep 4s ease-in-out infinite;
}

/* Glass fragments for Brand */
.p-glass {
  background:
    linear-gradient(45deg, transparent 40%, rgba(232,121,249,0.04) 50%, transparent 60%),
    linear-gradient(135deg, transparent 40%, rgba(244,114,182,0.03) 50%, transparent 60%);
  animation: glassDrift 12s var(--ease-in-out-sine) infinite alternate;
}

/* Architecture for Dev */
.p-arch {
  background:
    repeating-linear-gradient(90deg, transparent, transparent 40px, rgba(129,140,248,0.02) 40px, rgba(129,140,248,0.02) 41px),
    repeating-linear-gradient(0deg, transparent, transparent 40px, rgba(110,231,183,0.02) 40px, rgba(110,231,183,0.02) 41px);
  animation: archPulse 10s var(--ease-in-out-sine) infinite alternate;
}

@keyframes particleDrift { 0% { transform: translateY(0); } 100% { transform: translateY(-20px); } }
@keyframes energyFlow { 0% { opacity: 0.3; } 100% { opacity: 0.8; } }
@keyframes energySweep { 0%, 100% { transform: translateX(-100%); } 50% { transform: translateX(100%); } }
@keyframes glassDrift { 0% { transform: rotate(0deg) scale(1); } 100% { transform: rotate(2deg) scale(1.02); } }
@keyframes archPulse { 0% { opacity: 0.4; } 100% { opacity: 0.8; } }

.portal-frame {
  position: relative;
  z-index: 2;
  padding: 40px 32px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: rgba(10,7,20,0.7);
  border: 1px solid rgba(168,85,247,0.08);
  border-radius: 24px;
  backdrop-filter: blur(20px);
  transition: all 0.8s var(--ease-out-expo);
}

.portal:hover .portal-frame {
  border-color: rgba(192,132,252,0.2);
  background: rgba(10,7,20,0.5);
}

.portal-depth {
  position: absolute;
  inset: 0;
  border-radius: 24px;
  background: radial-gradient(ellipse at 50% 100%, rgba(168,85,247,0.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.8s ease;
}

.portal:hover .portal-depth { opacity: 1; }

.portal-icon-wrap {
  width: 56px;
  height: 56px;
  margin-bottom: 24px;
  padding: 12px;
  border-radius: 16px;
  background: rgba(168,85,247,0.08);
  border: 1px solid rgba(168,85,247,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.6s var(--ease-out-expo);
}

.portal:hover .portal-icon-wrap {
  background: rgba(168,85,247,0.15);
  box-shadow: 0 0 30px rgba(168,85,247,0.15);
  transform: scale(1.1);
}

.portal-icon { width: 100%; height: 100%; }

.portal-title {
  font-family: 'Outfit', sans-serif;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
}

.portal-desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.portal-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.portal-tags span {
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 400;
  color: var(--text-tertiary);
  border: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.02);
}

.portal-edge-light {
  position: absolute;
  top: 0;
  left: 15%;
  width: 70%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(192,132,252,0.2), transparent);
  opacity: 0;
  transition: opacity 0.6s ease;
}

.portal:hover .portal-edge-light { opacity: 1; }

/* ============================================================
   SECTION 03 — PROCESS TIMELINE
   ============================================================ */
.s-process {
  padding-bottom: 80px;
}

.pathway-viewport {
  width: 100%;
  max-width: 1100px;
  overflow: hidden;
  position: relative;
}

.pathway-track {
  display: flex;
  gap: 0;
  position: relative;
  padding: 40px 0;
}

.pathway-line {
  position: absolute;
  top: 68px;
  left: 0;
  width: 100%;
  height: 2px;
  background: rgba(255,255,255,0.04);
  z-index: 0;
}

.pathway-progress {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--purple-600), var(--purple-400), var(--fuchsia-400));
  border-radius: 2px;
  transition: width 0.6s var(--ease-out-expo);
  box-shadow: 0 0 20px rgba(168,85,247,0.3);
}

.checkpoint {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
  opacity: 0.3;
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.checkpoint.active {
  opacity: 1;
  transform: translateY(-5px);
}

.cp-marker {
  position: relative;
  width: 56px;
  height: 56px;
  margin-bottom: 28px;
}

.cp-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(168,85,247,0.15);
  transition: all 0.6s ease;
}

.checkpoint.active .cp-ring {
  border-color: rgba(192,132,252,0.5);
  box-shadow: 0 0 30px rgba(168,85,247,0.2);
}

.cp-dot {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(168,85,247,0.3);
  transition: all 0.6s ease;
}

.checkpoint.active .cp-dot {
  background: var(--purple-400);
  box-shadow: 0 0 15px var(--purple-glow);
}

.cp-pulse {
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 1px solid rgba(168,85,247,0.1);
  opacity: 0;
  animation: none;
}

.checkpoint.active .cp-pulse {
  animation: cpPulseAnim 2s ease-out infinite;
}

@keyframes cpPulseAnim {
  0% { transform: scale(0.8); opacity: 0.5; }
  100% { transform: scale(1.4); opacity: 0; }
}

.cp-content {
  text-align: center;
  max-width: 180px;
}

.cp-num {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--purple-400);
  letter-spacing: 2px;
  margin-bottom: 8px;
  opacity: 0.5;
  transition: opacity 0.6s ease;
}

.checkpoint.active .cp-num { opacity: 1; }

.cp-title {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.cp-desc {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-tertiary);
  transition: color 0.6s ease;
}

.checkpoint.active .cp-desc { color: var(--text-secondary); }

/* ============================================================
   SECTION 04 — RESULTS CHAMBER
   ============================================================ */
.chamber {
  position: relative;
  width: 100%;
  max-width: 700px;
  aspect-ratio: 1;
  max-height: 600px;
}

.chamber-core {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
}

.chamber-core-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid;
}

.chamber-core-ring.r1 {
  border-color: rgba(192,132,252,0.15);
  animation: coreRotate 15s linear infinite;
}

.chamber-core-ring.r2 {
  inset: 15px;
  border-color: rgba(168,85,247,0.25);
  animation: coreRotate 10s linear infinite reverse;
}

.chamber-core-ring.r3 {
  inset: 28px;
  border-color: rgba(232,121,249,0.2);
  animation: coreRotate 7s linear infinite;
}

.chamber-core-dot {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--purple-400);
  box-shadow: 0 0 20px var(--purple-glow), 0 0 60px rgba(168,85,247,0.15);
}

.chamber-orbit {
  position: absolute;
  inset: 0;
}

.stat-sphere {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 28px 24px;
  border-radius: 20px;
  background: rgba(12,8,25,0.7);
  border: 1px solid rgba(168,85,247,0.08);
  backdrop-filter: blur(15px);
  min-width: 140px;
  opacity: 0;
  transform: scale(0.7);
  transition: all 1.2s var(--ease-out-expo);
}

.s-results.is-visible .stat-sphere {
  opacity: 1;
  transform: scale(1);
}

.stat-sphere:nth-child(1) {
  top: 0;
  left: 50%;
  transform: translateX(-50%) scale(0.7);
  transition-delay: 0.1s;
}
.s-results.is-visible .stat-sphere:nth-child(1) { transform: translateX(-50%) scale(1); }

.stat-sphere:nth-child(2) {
  right: 0;
  top: 50%;
  transform: translateY(-50%) scale(0.7);
  transition-delay: 0.3s;
}
.s-results.is-visible .stat-sphere:nth-child(2) { transform: translateY(-50%) scale(1); }

.stat-sphere:nth-child(3) {
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scale(0.7);
  transition-delay: 0.5s;
}
.s-results.is-visible .stat-sphere:nth-child(3) { transform: translateX(-50%) scale(1); }

.stat-sphere:nth-child(4) {
  left: 0;
  top: 50%;
  transform: translateY(-50%) scale(0.7);
  transition-delay: 0.7s;
}
.s-results.is-visible .stat-sphere:nth-child(4) { transform: translateY(-50%) scale(1); }

.stat-sphere:hover {
  border-color: rgba(192,132,252,0.2);
  box-shadow: 0 0 40px rgba(168,85,247,0.1);
}

.sphere-glow {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(168,85,247,0.15) 0%, transparent 70%);
  filter: blur(15px);
  opacity: 0;
  transition: opacity 0.6s ease;
}

.stat-sphere:hover .sphere-glow { opacity: 1; }

.stat-num {
  font-family: 'Outfit', sans-serif;
  font-size: 42px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--purple-300), var(--fuchsia-400));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 12px;
  color: var(--text-tertiary);
  line-height: 1.4;
  letter-spacing: 0.5px;
}

/* ============================================================
   SECTION 05 — TESTIMONIALS
   ============================================================ */
.holo-field {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
  max-width: 750px;
}

.holo-memory {
  position: relative;
  transition: transform 0.8s var(--ease-out-expo);
}

.holo-memory:hover {
  transform: translateY(-6px) scale(1.01);
}

.memory-glass {
  position: relative;
  padding: 36px 40px;
  border-radius: 24px;
  background: rgba(12,8,25,0.6);
  border: 1px solid rgba(168,85,247,0.08);
  backdrop-filter: blur(20px);
  overflow: hidden;
  transition: all 0.8s var(--ease-out-expo);
}

.holo-memory:hover .memory-glass {
  border-color: rgba(192,132,252,0.2);
  box-shadow: 0 0 60px rgba(168,85,247,0.08);
}

.memory-wave-bar {
  display: flex;
  gap: 3px;
  align-items: center;
  height: 20px;
  margin-bottom: 20px;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.holo-memory:hover .memory-wave-bar { opacity: 1; }

.memory-wave-bar span {
  width: 3px;
  border-radius: 2px;
  background: var(--purple-400);
  opacity: 0.5;
  animation: waveBar 1.2s ease-in-out infinite alternate;
}

.memory-wave-bar span:nth-child(1)  { height: 6px; animation-delay: 0s; }
.memory-wave-bar span:nth-child(2)  { height: 12px; animation-delay: 0.1s; }
.memory-wave-bar span:nth-child(3)  { height: 8px; animation-delay: 0.2s; }
.memory-wave-bar span:nth-child(4)  { height: 18px; animation-delay: 0.15s; }
.memory-wave-bar span:nth-child(5)  { height: 10px; animation-delay: 0.25s; }
.memory-wave-bar span:nth-child(6)  { height: 16px; animation-delay: 0.05s; }
.memory-wave-bar span:nth-child(7)  { height: 6px; animation-delay: 0.3s; }
.memory-wave-bar span:nth-child(8)  { height: 14px; animation-delay: 0.12s; }
.memory-wave-bar span:nth-child(9)  { height: 8px; animation-delay: 0.22s; }
.memory-wave-bar span:nth-child(10) { height: 18px; animation-delay: 0.08s; }
.memory-wave-bar span:nth-child(11) { height: 10px; animation-delay: 0.18s; }
.memory-wave-bar span:nth-child(12) { height: 6px; animation-delay: 0.28s; }

@keyframes waveBar {
  0% { transform: scaleY(0.5); }
  100% { transform: scaleY(1.5); }
}

.memory-quote {
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-primary);
  margin-bottom: 24px;
  font-style: normal;
}

.memory-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(168,85,247,0.2);
  flex-shrink: 0;
}

.av-1 { background: linear-gradient(135deg, #a78bfa, #818cf8); }
.av-2 { background: linear-gradient(135deg, #c084fc, #e879f9); }
.av-3 { background: linear-gradient(135deg, #818cf8, #6ee7b7); }

.author-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.author-info strong {
  font-size: 14px;
  font-weight: 600;
}

.author-info span {
  font-size: 12px;
  color: var(--text-tertiary);
}

.memory-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(168,85,247,0.06) 0%, transparent 70%);
  filter: blur(30px);
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}

.holo-memory:hover .memory-glow { opacity: 1; }

/* ============================================================
   SECTION 06 — SHOWCASE WALL
   ============================================================ */
.s-showcase {
  padding-bottom: 80px;
}

.wall-viewport {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
}

.wall-viewport::-webkit-scrollbar { display: none; }
.wall-viewport:active { cursor: grabbing; }

.wall-track {
  display: flex;
  gap: 28px;
  padding: 20px 40px 40px;
  width: max-content;
}

.wall-item {
  flex-shrink: 0;
  width: 380px;
  transition: transform 0.8s var(--ease-out-expo);
}

.wall-item:hover {
  transform: translateY(-10px) scale(1.03);
}

.wall-card {
  border-radius: 20px;
  overflow: hidden;
  background: rgba(12,8,25,0.7);
  border: 1px solid rgba(168,85,247,0.08);
  backdrop-filter: blur(15px);
  transition: all 0.8s var(--ease-out-expo);
}

.wall-item:hover .wall-card {
  border-color: rgba(192,132,252,0.2);
  box-shadow: 0 0 60px rgba(168,85,247,0.1), 0 20px 60px rgba(0,0,0,0.4);
}

.wall-screen {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.ws-gradient {
  position: absolute;
  inset: 0;
}

.g1 { background: linear-gradient(135deg, #1a0a2e, #2d1b69, #1a0a2e); }
.g2 { background: linear-gradient(135deg, #0a1628, #1b2d69, #0a1628); }
.g3 { background: linear-gradient(135deg, #1a0a20, #691b4d, #1a0a20); }
.g4 { background: linear-gradient(135deg, #0a0a28, #1b1b69, #0a0a28); }
.g5 { background: linear-gradient(135deg, #0a1a14, #1b694d, #0a1a14); }
.g6 { background: linear-gradient(135deg, #1a1a0a, #69691b, #1a1a0a); }

.ws-ui {
  position: absolute;
  inset: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ws-bar {
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: rgba(255,255,255,0.06);
}

.ws-block {
  border-radius: 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.03);
}

.ws-block.b1 { height: 60px; }
.ws-block.b2 { height: 40px; width: 70%; }

.ws-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(168,85,247,0.2), rgba(232,121,249,0.1));
  margin-top: auto;
}

.wall-label {
  padding: 20px 24px;
}

.wl-cat {
  display: block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--purple-400);
  margin-bottom: 6px;
}

.wall-label h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 600;
}

/* ============================================================
   SECTION 07 — FINAL CONVERSION
   ============================================================ */
.s-final {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 24px;
  position: relative;
}

#convergenceCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.final-glow-system {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.final-radial {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 2s ease;
}

.s-final.is-visible .final-radial { opacity: 1; }

.final-radial.r1 {
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(168,85,247,0.08) 0%, transparent 60%);
  filter: blur(60px);
}

.final-radial.r2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(192,132,252,0.1) 0%, transparent 50%);
  filter: blur(40px);
  animation: finalGlowPulse 5s var(--ease-in-out-sine) infinite alternate;
}

.final-radial.r3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(232,121,249,0.08) 0%, transparent 40%);
  filter: blur(30px);
  animation: finalGlowPulse 3s var(--ease-in-out-sine) 1s infinite alternate;
}

@keyframes finalGlowPulse {
  0% { transform: translate(-50%, -50%) scale(0.95); }
  100% { transform: translate(-50%, -50%) scale(1.05); }
}

.final-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.final-emblem {
  width: 120px;
  height: 120px;
  margin-bottom: 48px;
}

.emblem-svg {
  width: 100%;
  height: 100%;
}

.emblem-ring {
  transform-origin: center;
}

.e-r1 { animation: emblemSpin 20s linear infinite; }
.e-r2 { animation: emblemSpin 14s linear infinite reverse; }
.e-r3 { animation: emblemSpin 10s linear infinite; }

@keyframes emblemSpin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.emblem-core {
  animation: dotPulse 3s ease-in-out infinite;
}

.final-headline {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -1px;
  margin-bottom: 20px;
}

.final-sub {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 500px;
  margin-bottom: 48px;
}

.final-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 20px 48px;
  border-radius: 100px;
  background: linear-gradient(135deg, var(--purple-600), var(--purple-700));
  color: white;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.3px;
  border: 1px solid rgba(192,132,252,0.3);
  cursor: pointer;
  overflow: hidden;
  transition: all 0.6s var(--ease-out-expo);
  box-shadow:
    0 0 40px rgba(168,85,247,0.2),
    0 4px 20px rgba(0,0,0,0.3),
    inset 0 1px 0 rgba(255,255,255,0.1);
}

.final-cta:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow:
    0 0 80px rgba(168,85,247,0.35),
    0 8px 40px rgba(0,0,0,0.4),
    inset 0 1px 0 rgba(255,255,255,0.15);
  border-color: rgba(192,132,252,0.5);
}

.final-cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  transition: all 0.8s var(--ease-out-expo);
  pointer-events: none;
}

.final-cta:hover .final-cta-glow {
  width: 300px;
  height: 300px;
}

.final-cta-ripple {
  position: absolute;
  inset: -4px;
  border-radius: 100px;
  border: 1px solid rgba(192,132,252,0.15);
  opacity: 0;
  pointer-events: none;
}

.final-cta:hover .final-cta-ripple {
  animation: ctaRipple 1.5s ease-out infinite;
}

@keyframes ctaRipple {
  0% { transform: scale(1); opacity: 0.5; }
  100% { transform: scale(1.3); opacity: 0; }
}

.final-footer {
  margin-top: 60px;
  font-size: 13px;
  color: var(--text-tertiary);
  display: flex;
  align-items: center;
  gap: 12px;
}

.ff-sep {
  color: rgba(255,255,255,0.15);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
  .hero { padding-top: calc(var(--nav-height) + 30px); }
  .hero-headline { font-size: clamp(32px, 8vw, 48px); letter-spacing: -0.5px; }
  .hero-sub br { display: none; }
  .hero-ctas { flex-direction: column; width: 100%; max-width: 280px; }
  .cta { width: 100%; justify-content: center; }
  
  .nav {
    top: 12px;
    width: calc(100% - 24px);
    height: 50px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
  }
  .nav-inner {
    padding: 0 12px;
  }
  .nav-logo span {
    display: none;
  }
  .nav-cta-btn {
    display: none;
  }
  .nav-links-wrap {
    gap: 4px;
    width: 100%;
    justify-content: space-around;
  }
  .nav-link {
    font-size: 11px;
    padding: 6px 12px;
  }

  .showcase-panel { margin-top: 48px; }
  .mockup-content-area { max-width: 100%; }
  .mockup-card { display: none; }
  .panel-mockup { min-height: 200px; }
  .logo-text { font-size: 15px; letter-spacing: 4px; }

  .s { padding: 100px 16px; }
  .s-title { font-size: clamp(28px, 7vw, 42px); }
  .portals-grid { grid-template-columns: 1fr; }
  .orbit-stage { min-height: auto; }
  .monolith { position: relative !important; top: auto !important; left: auto !important; right: auto !important; bottom: auto !important; width: 100%; max-width: 340px; margin: 0 auto 24px; }
  .orbit-viewport { flex-direction: column; }
  .orbit-core { display: none; }
  .chamber { max-height: none; aspect-ratio: auto; min-height: 500px; }
  .stat-sphere { position: relative !important; top: auto !important; left: auto !important; right: auto !important; bottom: auto !important; transform: none !important; margin: 0 auto 20px; }
  .s-results.is-visible .stat-sphere { transform: none !important; }
  .chamber-orbit { position: relative; display: flex; flex-direction: column; align-items: center; }
  .chamber-core { display: none; }
  .wall-item { width: 300px; }
  .holo-field { gap: 20px; }
  .memory-glass { padding: 24px; }
  .memory-quote { font-size: 15px; }
  .final-headline { font-size: clamp(26px, 6vw, 40px); }
  .final-sub br { display: none; }

  /* Mobile Vertical Timeline */
  .pathway-track { flex-direction: column; gap: 40px; padding: 20px 10px; }
  .pathway-line { left: 38px; top: 0; width: 2px; height: 100%; }
  .pathway-progress { width: 100%; height: 0%; transition: height 0.6s var(--ease-out-expo); }
  .checkpoint { flex-direction: row; align-items: flex-start; text-align: left; gap: 20px; width: 100%; }
  .cp-marker { margin-bottom: 0; flex-shrink: 0; }
  .cp-content { text-align: left; max-width: none; padding-top: 8px; }
}

@media (max-width: 480px) {
  .nav-inner { padding: 0 8px; }
  .nav-links-wrap { gap: 2px; }
  .nav-link { font-size: 10px; padding: 4px 10px; }
}

/* ============================================================
   SELECTION & SCROLLBAR
   ============================================================ */
::selection { background: rgba(168,85,247,0.3); color: white; }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--void); }
::-webkit-scrollbar-thumb { background: rgba(168,85,247,0.3); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(168,85,247,0.5); }
