/* ============================================
   ARIS ONE — Soft Breathing Aesthetic
   Warm Lavender · Peach Aurora · Living Gradients
   ============================================ */

/* === CSS CUSTOM PROPERTIES === */
:root {
    /* SOFT BREATHING PALETTE -> DARK PREMIUM */
    --bg-color-1: #030a1c; /* Very dark blue */
    --bg-color-2: #060d24; /* Deep blue */
    --bg-primary: #030a1c;
    --bg-secondary: #060d24;
    --bg-tertiary: #08112e;
    --bg-card: rgba(10, 20, 45, 0.4);
    --bg-card-hover: rgba(15, 30, 60, 0.6);
    --text-primary: #ffffff;
    --text-secondary: rgba(255,255,255,0.75);
    --text-muted: rgba(255,255,255,0.45);
    --accent-primary: #60b0ff;
    --accent-secondary: #a8d4f0;
    --accent-tertiary: #c09ae8;
    --accent-warm: #a8d4f0;
    /* Living Gradients */
    --gradient-hero: linear-gradient(135deg, #60b0ff 0%, #a8d4f0 40%, #c09ae8 70%, #d1edff 100%);
    --gradient-btn: linear-gradient(135deg, #2a5298 0%, #60b0ff 50%, #a8d4f0 100%);
    --gradient-body: linear-gradient(170deg, var(--bg-color-1) 0%, var(--bg-color-2) 100%);
    --gradient-card: linear-gradient(135deg, rgba(96,176,255,0.12), rgba(168,212,240,0.08), rgba(96,176,255,0.06));
    --glass-bg: rgba(10, 20, 45, 0.35);
    --glass-border: rgba(96,176,255,0.15);
    --glass-shadow: 0 8px 32px rgba(0,0,0,0.4);
    --nav-bg: rgba(5, 10, 24, 0.7);
    /* Typography */
    --font-display: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-accent: 'Space Grotesk', sans-serif;
    /* Spacing */
    --section-padding: clamp(80px, 12vh, 160px);
    --container-max: 1200px;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-pill: 100px;
    /* Transitions */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* WARM THEME OVERRIDE FOR ACT 3+ */
.neural-matrix-section, .future-warm-sections {
    --accent-primary: #ff4444;
    --accent-secondary: #f0b07a;
    --accent-tertiary: #e8879a;
    --accent-warm: #f7c9a0;
    --gradient-hero: linear-gradient(135deg, #e8879a 0%, #f0b07a 40%, #f7c9a0 70%, #ffcbe1 100%);
    --gradient-btn: linear-gradient(135deg, #e8879a 0%, #f0b07a 50%, #f7c9a0 100%);
    --gradient-card: linear-gradient(135deg, rgba(232,141,160,0.12), rgba(240,191,154,0.08), rgba(240,191,154,0.06));
}

/* === BREATHING BACKGROUND KEYFRAMES === */
@keyframes breatheBody {
    0%   { background-position: 0% 0%; }
    25%  { background-position: 50% 100%; }
    50%  { background-position: 100% 50%; }
    75%  { background-position: 50% 0%; }
    100% { background-position: 0% 0%; }
}
@keyframes breatheGlow {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.05); }
}

/* === RESET & BASE === */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; background: #050208; }
body {
    font-family: var(--font-body);
    background: var(--gradient-body);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
    min-height: 100vh;
}
a { color: inherit; text-decoration: none; }
button { border: none; background: none; cursor: pointer; font-family: var(--font-body); color: inherit; }
img { max-width: 100%; height: auto; }
::selection { background: rgba(96,176,255,0.3); color: var(--text-primary); }

/* === LIVING DYNAMIC BACKGROUND SYSTEM === */
#living-bg {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

/* Film grain texture overlay */
.bg-grain {
    position: absolute;
    inset: -50%;
    width: 200%; height: 200%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    opacity: 0.35;
    z-index: 3;
    animation: grainDrift 0.8s steps(4) infinite;
}
@keyframes grainDrift {
    0% { transform: translate(0, 0); }
    25% { transform: translate(-2%, 2%); }
    50% { transform: translate(1%, -1%); }
    75% { transform: translate(-1%, 3%); }
    100% { transform: translate(2%, -2%); }
}

/* Aurora flowing blobs — morphed by GSAP custom properties */
.bg-aurora {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
    z-index: 1;
    will-change: transform;
}
.aurora-1 {
    width: 60vw; height: 60vh;
    top: -15%; left: -10%;
    background: var(--aurora-1, rgba(100, 40, 180, 0.5));
    animation: auroraFloat1 18s ease-in-out infinite alternate;
}
.aurora-2 {
    width: 50vw; height: 50vh;
    bottom: -20%; right: -10%;
    background: var(--aurora-2, rgba(80, 120, 220, 0.4));
    animation: auroraFloat2 22s ease-in-out infinite alternate;
}
.aurora-3 {
    width: 40vw; height: 40vh;
    top: 40%; left: 30%;
    background: var(--aurora-3, rgba(80, 120, 220, 0.3));
    animation: auroraFloat3 15s ease-in-out infinite alternate;
}
@keyframes auroraFloat1 {
    0%   { transform: translate(0, 0) scale(1) rotate(0deg); }
    33%  { transform: translate(10vw, 5vh) scale(1.15) rotate(5deg); }
    66%  { transform: translate(-5vw, 15vh) scale(0.9) rotate(-3deg); }
    100% { transform: translate(8vw, -10vh) scale(1.1) rotate(8deg); }
}
@keyframes auroraFloat2 {
    0%   { transform: translate(0, 0) scale(1) rotate(0deg); }
    33%  { transform: translate(-12vw, -8vh) scale(1.2) rotate(-6deg); }
    66%  { transform: translate(8vw, -5vh) scale(0.85) rotate(4deg); }
    100% { transform: translate(-6vw, 10vh) scale(1.1) rotate(-5deg); }
}
@keyframes auroraFloat3 {
    0%   { transform: translate(0, 0) scale(1) rotate(0deg); }
    50%  { transform: translate(15vw, -12vh) scale(1.3) rotate(10deg); }
    100% { transform: translate(-10vw, 8vh) scale(0.9) rotate(-8deg); }
}

/* === AMBIENT SECTION DECORATIONS — Premium 3D Realism Overhaul === */
.section-ambient {
    position: absolute;
    top: 0; bottom: 0;
    width: 140px;
    z-index: 0;
    pointer-events: none;
    opacity: 0.5;
    overflow: visible;
    perspective: 1500px;
    transform-style: preserve-3d;
}
.section-ambient.left  { left: 30px; }
.section-ambient.right { right: 30px; }

.section-ambient svg {
    width: 100%;
    height: 100%;
    overflow: visible;
    filter: drop-shadow(0 0 15px rgba(192, 154, 232, 0.2));
}

@media (max-width: 1200px) {
    .section-ambient { width: 90px; opacity: 0.3; }
    .section-ambient.left { left: 10px; }
    .section-ambient.right { right: 10px; }
}

/* --- ACT I: BROKEN CIRCUIT (Real Wire Glow & Depth) --- */
.ambient-circuit line {
    stroke: rgba(96, 176, 255, 0.5);
    stroke-width: 3;
    stroke-linecap: round;
    filter: drop-shadow(0 0 10px rgba(96, 176, 255, 0.3));
}
.ambient-circuit .circuit-node {
    fill: #60b0ff;
    filter: drop-shadow(0 0 15px #60b0ff);
    animation: wirePulse 2.5s infinite ease-in-out;
}
@keyframes wirePulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.4); opacity: 1; filter: brightness(1.2); }
}

/* --- ACT II: REAL HEARTBEAT (ECG Monitor Look) --- */
.ambient-heartbeat polyline {
    fill: none;
    stroke: #c09ae8;
    stroke-width: 4;
    stroke-linecap: round;
    stroke-linejoin: round;
    filter: drop-shadow(0 0 12px rgba(192, 154, 232, 0.6));
    stroke-dasharray: 1200;
    stroke-dashoffset: 1200;
    animation: heartDrawReal 4s linear infinite;
}
@keyframes heartDrawReal {
    0% { stroke-dashoffset: 1200; }
    50% { stroke-dashoffset: 0; }
    100% { stroke-dashoffset: -1200; }
}
.ambient-heartbeat .heart-shape {
    fill: #c09ae8;
    filter: drop-shadow(0 15px 25px rgba(192, 154, 232, 0.8));
    animation: heartBeatReal 0.8s infinite cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-origin: center;
}
@keyframes heartBeatReal {
    0%, 100% { transform: translate(0, -50%) scale(1.8); }
    15% { transform: translate(0, -50%) scale(2.2); }
    30% { transform: translate(0, -50%) scale(1.9); }
    45% { transform: translate(0, -50%) scale(2.1); }
}

/* --- ACT III: NEURAL MATRIX (Glowing Synapse Spheres) --- */
.ambient-brain .brain-path {
    stroke: rgba(255, 60, 60, 0.7);
    stroke-width: 2;
    filter: drop-shadow(0 0 5px rgba(255, 60, 60, 0.6));
}
.ambient-brain .synapse {
    fill: #60b0ff;
    filter: drop-shadow(0 0 20px #60b0ff);
    animation: brainPulse 3s infinite ease-in-out;
}
@keyframes brainPulse {
    0%, 100% { transform: scale(1); opacity: 0.6; filter: blur(1px); }
    50% { transform: scale(1.6); opacity: 1; filter: blur(0); }
}

/* --- ACT IV: PULSE WAVE (Fluid Glowing Tube) --- */
.ambient-pulse path {
    stroke: #c882dc;
    stroke-width: 5;
    stroke-linecap: round;
    filter: drop-shadow(0 0 15px #c882dc);
    stroke-dasharray: 60 120;
    animation: pulseFlowReal 5s linear infinite;
}
@keyframes pulseFlowReal {
    from { stroke-dashoffset: 0; }
    to { stroke-dashoffset: -400; }
}

/* --- ACT V: TRUE 3D DNA HELIX (Real Life 360 Rotation) --- */
.ambient-dna-3d {
    width: 100px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1500px;
}
.dna-helix-3d {
    position: relative;
    width: 60px; height: 100%;
    transform-style: preserve-3d;
    animation: dnaRotate3D 15s linear infinite;
}
@keyframes dnaRotate3D {
    0% { transform: rotateY(0deg); }
    100% { transform: rotateY(360deg); }
}
.dna-strand {
    position: absolute;
    top: 0; bottom: 0; width: 6px;
    background: linear-gradient(to bottom, var(--accent-primary), var(--accent-secondary));
    border-radius: 6px;
    filter: drop-shadow(0 0 12px var(--accent-primary));
}
.strand-left { left: 0; transform: rotateY(0deg) translateZ(40px); }
.strand-right { right: 0; transform: rotateY(0deg) translateZ(-40px); }
.dna-rungs { position: absolute; inset: 0; transform-style: preserve-3d; }
.dna-rung {
    position: absolute; left: 50%; width: 80px; height: 3px;
    background: rgba(255, 255, 255, 0.4);
    transform: translateX(-50%) translateZ(0); 
}
.dna-rung:nth-child(1)  { top: 10%; transform: translateX(-50%) rotateY(36deg); }
.dna-rung:nth-child(2)  { top: 20%; transform: translateX(-50%) rotateY(72deg); }
.dna-rung:nth-child(3)  { top: 30%; transform: translateX(-50%) rotateY(108deg); }
.dna-rung:nth-child(4)  { top: 40%; transform: translateX(-50%) rotateY(144deg); }
.dna-rung:nth-child(5)  { top: 50%; transform: translateX(-50%) rotateY(180deg); }
.dna-rung:nth-child(6)  { top: 60%; transform: translateX(-50%) rotateY(216deg); }
.dna-rung:nth-child(7)  { top: 70%; transform: translateX(-50%) rotateY(252deg); }
.dna-rung:nth-child(8)  { top: 80%; transform: translateX(-50%) rotateY(288deg); }
.dna-rung:nth-child(9)  { top: 90%; transform: translateX(-50%) rotateY(324deg); }
.dna-rung:nth-child(10) { top: 98%; transform: translateX(-50%) rotateY(360deg); }
.dna-rung::before, .dna-rung::after {
    content: ''; position: absolute; top: -4px; width: 10px; height: 10px;
    background: var(--accent-primary); border-radius: 50%;
    box-shadow: 0 0 12px var(--accent-primary);
}
.dna-rung::before { left: 0; } .dna-rung::after { right: 0; }

/* --- ACT VI: ABILITIES (3D Star Field) --- */
.ambient-constellation circle {
    fill: #a8d4f0;
    filter: drop-shadow(0 0 10px #a8d4f0);
    animation: starBlink 3s infinite ease-in-out;
}
@keyframes starBlink {
    0%, 100% { opacity: 0.4; transform: translateZ(0) scale(1); }
    50% { opacity: 1; transform: translateZ(50px) scale(1.5); }
}

/* --- ACT VII: DATA METRICS (Glass Columns) --- */
.ambient-data rect {
    fill: rgba(30, 200, 80, 0.4);
    filter: drop-shadow(0 0 8px rgba(30, 200, 80, 0.3));
    animation: dataGlowStep 4s infinite alternate;
}
@keyframes dataGlowStep {
    from { fill-opacity: 0.3; height: 30px; }
    to { fill-opacity: 0.8; height: 60px; }
}

/* --- ACT VIII: RADIANT SUN (Deep Glow Core) --- */
.ambient-sun .sun-core {
    fill: #f0b450;
    filter: drop-shadow(0 0 40px #f0b450);
    animation: sunBreathReal 6s infinite ease-in-out;
}
@keyframes sunBreathReal {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.3); opacity: 1; }
}
.sun-ray {
    stroke: #f0b450;
    stroke-width: 3;
    opacity: 0.3;
    filter: blur(1px);
}

/* --- ACT IX: INFINITY (Glow Ring) --- */
.ambient-infinity .infinity-path {
    stroke: #a8d4f0;
    stroke-width: 4;
    filter: drop-shadow(0 0 20px #a8d4f0);
    stroke-dasharray: 20 40;
    animation: infinityFlowReal 12s linear infinite;
}
@keyframes infinityFlowReal {
    from { stroke-dashoffset: 600; }
    to { stroke-dashoffset: 0; }
}


/* === CUSTOM CURSOR === */
.custom-cursor { position: fixed; width: 8px; height: 8px; background: var(--accent-primary); border-radius: 50%; pointer-events: none; z-index: 10000; transform: translate(-50%, -50%); transition: transform 0.1s, opacity 0.3s; opacity: 0; }
.custom-cursor-follower { position: fixed; width: 36px; height: 36px; border: 1.5px solid rgba(166,125,216,0.45); border-radius: 50%; pointer-events: none; z-index: 9999; transform: translate(-50%, -50%); transition: transform 0.25s var(--ease-out), width 0.3s, height 0.3s, opacity 0.3s; opacity: 0; }
body:hover .custom-cursor, body:hover .custom-cursor-follower { opacity: 1; }
@media (pointer: coarse) { .custom-cursor, .custom-cursor-follower { display: none !important; } }

/* === TOP HEADER NAVIGATION === */
.top-header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(10,5,16,0.65);
    backdrop-filter: blur(24px) saturate(1.6);
    -webkit-backdrop-filter: blur(24px) saturate(1.6);
    border-bottom: 1px solid rgba(192,154,232,0.05);
    transition: background 0.4s, box-shadow 0.4s, transform 0.5s var(--ease-out);
}
.top-header.scrolled {
    background: rgba(10,5,16,0.85);
    box-shadow: 0 4px 32px rgba(0,0,0,0.5);
}
.top-header.hidden { transform: translateY(-100%); }
.header-inner {
    max-width: var(--container-max); margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 24px; height: 64px;
}
.header-logo {
    display: flex; align-items: center; gap: 10px;
    text-decoration: none;
}
.logo-dot {
    width: 10px; height: 10px; border-radius: 50%;
    background: var(--accent-primary);
    box-shadow: 0 0 12px rgba(166,125,216,0.5);
    animation: pulse 2.5s ease-in-out infinite;
}
.logo-text {
    font-family: var(--font-display); font-weight: 800;
    font-size: 18px; letter-spacing: 2px; color: var(--text-primary);
}
.header-nav { display: flex; align-items: center; }
.nav-group { display: flex; align-items: center; gap: 4px; }
.header-link {
    padding: 8px 16px; border-radius: var(--radius-pill);
    font-size: 14px; font-weight: 500; color: var(--text-secondary);
    transition: all 0.3s var(--ease-out); white-space: nowrap;
    font-family: var(--font-body);
}
.header-link:hover { color: var(--text-primary); background: rgba(192,154,232,0.08); }
.header-link.active { color: var(--text-primary); background: rgba(192,154,232,0.12); font-weight: 600; }
.header-actions { display: flex; align-items: center; gap: 12px; }
.header-cta {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 10px 24px; border-radius: var(--radius-pill);
    background: var(--gradient-btn); background-size: 200% 200%;
    animation: breatheBtn 4s ease-in-out infinite;
    color: #fff; font-family: var(--font-display); font-weight: 600; font-size: 14px;
    box-shadow: 0 4px 16px rgba(192,154,232,0.25);
    transition: transform 0.3s var(--ease-spring), box-shadow 0.3s;
}
.header-cta:hover { transform: translateY(-1px) scale(1.03); box-shadow: 0 6px 24px rgba(192,154,232,0.35); }
.header-cta .cta-arrow { transition: transform 0.3s var(--ease-spring); }
.header-cta:hover .cta-arrow { transform: translateX(3px); }

/* Mobile menu toggle */
.mobile-menu-toggle {
    display: none; flex-direction: column; gap: 5px;
    padding: 8px; background: none; border: none; cursor: pointer;
}
.menu-bar {
    width: 22px; height: 2px; background: var(--text-primary);
    border-radius: 2px; transition: all 0.3s;
}
.mobile-menu-toggle.active .menu-bar:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-menu-toggle.active .menu-bar:nth-child(2) { opacity: 0; }
.mobile-menu-toggle.active .menu-bar:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile menu panel */
.mobile-menu {
    display: none; flex-direction: column; gap: 4px;
    padding: 12px 24px 20px;
    background: rgba(10,5,16,0.95);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(192,154,232,0.1);
}
.mobile-menu.open { display: flex; }
.mobile-link {
    padding: 12px 16px; border-radius: var(--radius-md);
    font-size: 15px; font-weight: 500; color: var(--text-secondary);
    transition: all 0.3s;
}
.mobile-link:hover { background: rgba(192,154,232,0.08); color: var(--text-primary); }
.mobile-cta {
    margin-top: 8px; text-align: center;
    background: var(--gradient-btn); color: #fff !important;
    font-weight: 600; border-radius: var(--radius-pill);
}

/* === SECTION CONTAINERS === */
.section-container { position: relative; z-index: 1; max-width: var(--container-max); margin: 0 auto; padding: 0 24px; }
.section-header { text-align: center; margin-bottom: 64px; }
.section-label { display: inline-block; font-family: var(--font-accent); font-size: 12px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--accent-primary); margin-bottom: 16px; padding: 6px 16px; background: rgba(192,154,232,0.1); border: 1px solid rgba(192,154,232,0.2); border-radius: var(--radius-pill); }
.section-title { font-family: var(--font-display); font-size: clamp(36px, 5vw, 64px); font-weight: 700; line-height: 1.1; margin-bottom: 20px; }
.section-subtitle { font-size: clamp(16px, 2vw, 20px); color: var(--text-secondary); max-width: 640px; margin: 0 auto; line-height: 1.7; }

.gradient-text {
    background: var(--gradient-hero);
    background-size: 300% 300%;
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: breatheText 6s ease-in-out infinite;
}
.gradient-text-blue {
    background: linear-gradient(135deg, #60b0ff, #a8d4f0, #c09ae8);
    background-size: 200% 200%;
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: breatheText 5s ease-in-out infinite;
}
.gradient-text-secondary {
    background: linear-gradient(135deg, #c09ae8, #a8d4f0, #c09ae8);
    background-size: 200% 200%;
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: breatheText 5s ease-in-out infinite;
}
@keyframes breatheText {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes dividerNodePulse {
    0%, 100% { 
        transform: scale(1) rotate(45deg); 
        box-shadow: 0 0 10px rgba(96,176,255,0.3), inset 0 0 5px rgba(96,176,255,0.3); 
        border-color: rgba(96,176,255,0.5);
    }
    50% { 
        transform: scale(1.4) rotate(45deg); 
        box-shadow: 0 0 25px rgba(192,154,232,0.8), inset 0 0 15px rgba(192,154,232,0.8); 
        border-color: rgba(192,154,232,1);
    }
}

@keyframes dividerLineFlow {
    0% { background-position: -200% 50%; }
    100% { background-position: 200% 50%; }
}

.section-divider { 
    position: relative;
    width: 100%; 
    height: 120px; /* Cinematic breathing gap between Acts */
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
}

/* The Horizontal Energy Conduit */
.section-divider::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(96, 176, 255, 0.05) 20%, rgba(192, 154, 232, 0.4) 50%, rgba(96, 176, 255, 0.05) 80%, transparent 100%);
    background-size: 200% 100%;
    animation: dividerLineFlow 6s linear infinite;
    z-index: 1;
}

/* The Central Matrix Core (Rotated Diamond) */
.section-divider::after {
    content: '';
    position: relative;
    width: 12px;
    height: 12px;
    background: #030a1c; /* Deep core */
    border: 2px solid rgba(96, 176, 255, 0.8);
    z-index: 2;
    transform: rotate(45deg);
    animation: dividerNodePulse 4s ease-in-out infinite;
}

/* Scroll Animation Hooks for JS compatibility */
.section-divider.scroll-animate-in {
    opacity: 0;
}

.section-divider.scroll-animate-in.active {
    opacity: 1;
    transition: opacity 1.5s var(--ease-out);
}

/* === GLASS CARD SYSTEM — Premium 3D Dark Glassmorphism === */
.glass-card {
    background: rgba(15, 8, 25, 0.5); /* Deep dark translucent base */
    backdrop-filter: blur(16px) saturate(1.2);
    -webkit-backdrop-filter: blur(16px) saturate(1.2);
    border: 1px solid rgba(96, 176, 255, 0.15);
    border-top: 1px solid rgba(96, 176, 255, 0.3);
    border-left: 1px solid rgba(96, 176, 255, 0.3);
    border-radius: var(--radius-xl);
    padding: 40px;
    transition: all 0.5s var(--ease-out);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px -10px rgba(0,0,0,0.5), inset 0 0 0 1px rgba(96, 176, 255, 0.05);
    transform-style: preserve-3d;
    perspective: 1500px;
}

.glass-card::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(96, 176, 255, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.5s;
    border-radius: inherit;
    pointer-events: none;
    z-index: 0;
}

.glass-card::after {
    content: '';
    position: absolute;
    inset: -1px;
    background: linear-gradient(135deg, rgba(96, 176, 255, 0.5), transparent, rgba(96, 176, 255, 0.2));
    border-radius: var(--radius-xl);
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    padding: 1px;
}

.glass-card > * {
    position: relative;
    z-index: 1;
}

.glass-card:hover {
    transform: translateY(-8px) scale(1.02) rotateX(2deg) rotateY(2deg);
    box-shadow: 0 16px 48px rgba(96, 176, 255, 0.12);
    background: linear-gradient(135deg, rgba(96, 176, 255, 0.12), rgba(168, 212, 240, 0.08));
    border-color: rgba(96, 176, 255, 0.3);
}

.glass-card:hover::before { opacity: 0.8; }
.glass-card:hover::after { opacity: 1; }

@keyframes cardBreathe {
    0%, 100% { box-shadow: 0 2px 16px rgba(96, 176, 255, 0.06); }
    50% { box-shadow: 0 4px 24px rgba(96, 176, 255, 0.12); }
}

/* RED/ORANGE OVERRIDE FOR ACT 3+ */
.neural-matrix-section .glass-card {
    border: 1px solid rgba(255, 68, 68, 0.15);
    border-top: 1px solid rgba(255, 68, 68, 0.3);
    border-left: 1px solid rgba(255, 68, 68, 0.3);
    box-shadow: 0 10px 40px -10px rgba(0,0,0,0.5), inset 0 0 0 1px rgba(255, 68, 68, 0.05);
}
.neural-matrix-section .glass-card::before {
    background: linear-gradient(135deg, rgba(255, 68, 68, 0.1) 0%, transparent 100%);
}
.neural-matrix-section .glass-card::after {
    background: linear-gradient(135deg, rgba(255, 68, 68, 0.5), transparent, rgba(255, 68, 68, 0.2));
}
.neural-matrix-section .glass-card:hover {
    box-shadow: 0 16px 48px rgba(255, 68, 68, 0.12);
    background: linear-gradient(135deg, rgba(255, 68, 68, 0.12), rgba(240, 176, 122, 0.08));
    border-color: rgba(255, 68, 68, 0.3);
}

@keyframes scrollCardRotateIn {
    0% {
        opacity: 0;
        transform: translateY(60px) rotateX(25deg) scale(0.85);
    }
    100% {
        opacity: 1;
        transform: translateY(0) rotateX(0deg) scale(1);
    }
}

@keyframes scrollCardRotateInAlt {
    0% {
        opacity: 0;
        transform: translateY(60px) rotateX(-25deg) scale(0.85);
    }
    100% {
        opacity: 1;
        transform: translateY(0) rotateX(0deg) scale(1);
    }
}

@keyframes scrollCardFlipIn {
    0% {
        opacity: 0;
        transform: translateY(60px) rotateY(75deg) scale(0.8);
    }
    100% {
        opacity: 1;
        transform: translateY(0) rotateY(0deg) scale(1);
    }
}

@keyframes scrollCardSlideIn {
    0% {
        opacity: 0;
        transform: translateY(60px) translateX(-35px);
    }
    100% {
        opacity: 1;
        transform: translateY(0) translateX(0);
    }
}

@keyframes scrollPulse {
    0%, 100% { filter: drop-shadow(0 0 8px rgba(192,154,232,0.1)); }
    50% { filter: drop-shadow(0 0 20px rgba(192,154,232,0.25)); }
}

@keyframes scrollGlow {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.1); }
}

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-3px); }
}

/* === CTA BUTTON — Warm Gradient === */
.cta-button {
    position: relative; display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 32px;
    background: var(--gradient-btn);
    background-size: 200% 200%;
    animation: breatheBtn 4s ease-in-out infinite;
    border-radius: var(--radius-pill);
    font-family: var(--font-display); font-weight: 600; font-size: 16px; color: #fff;
    overflow: hidden;
    transition: transform 0.3s var(--ease-spring), box-shadow 0.3s;
    box-shadow: 0 4px 20px rgba(192,154,232,0.25);
}
@keyframes breatheBtn {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}
.cta-button:hover { transform: translateY(-2px) scale(1.03); box-shadow: 0 8px 30px rgba(192,154,232,0.35); }
.button-inner { display: flex; align-items: center; gap: 8px; position: relative; z-index: 1; }
.button-arrow { transition: transform 0.3s var(--ease-spring); }
.cta-button:hover .button-arrow { transform: translateX(4px); }
.button-shimmer { position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent); }
.cta-button:hover .button-shimmer { animation: shimmer 0.8s ease-out; }
@keyframes shimmer { to { left: 100%; } }
.cta-button-large { padding: 18px 42px; font-size: 18px; }

/* ============================================
   PROBLEM SECTION — THE ISSUE GRID
   ============================================ */
.problem-section { position: relative; padding: var(--section-padding) 0; }
.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}
.problem-card {
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.problem-icon {
    font-size: 32px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(96, 176, 255, 0.1);
    border-radius: 16px;
}
.problem-title {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 8px 0;
    color: var(--text-primary);
}
.problem-desc {
    font-size: 15px;
    color: var(--text-secondary);
    margin: 0 0 16px 0;
    line-height: 1.6;
}
.problem-issues {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}
.issue-tag {
    background: rgba(192, 154, 232, 0.1);
    border: 1px solid rgba(192, 154, 232, 0.2);
    color: var(--text-secondary);
    padding: 6px 12px;
    border-radius: var(--radius-pill);
    font-size: 12px;
    font-weight: 500;
}
.issue-arrow {
    color: var(--accent-primary);
    font-weight: bold;
    font-size: 18px;
}
.problem-conclusion {
    text-align: center;
    margin-top: 64px;
}
.conclusion-text {
    font-size: clamp(18px, 3vw, 24px);
    font-weight: 600;
    font-family: var(--font-display);
    color: var(--text-primary);
    line-height: 1.4;
    max-width: 700px;
    margin: 0 auto;
    background: var(--gradient-hero);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: breatheText 6s ease-in-out infinite;
}

/* ============================================
   CONTENT REVEAL CARD EFFECT — Fluid Expansion Engine
   ============================================ */
.content-reveal-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    min-height: 300px; /* Standard base height */
    height: auto;
    padding: 32px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: 1;
}

.content-reveal-card:hover {
    min-height: 380px; /* Expand to accommodate content */
    border-color: rgba(192, 154, 232, 0.4);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3), 0 0 30px rgba(166, 125, 216, 0.1);
    transform: translateY(-8px);
}

/* Specific Act 4 & 5 Compactness */
.chat-feature-item.content-reveal-card,
.feature-pill.content-reveal-card {
    min-height: 140px !important;
    height: auto;
    padding: 20px 24px;
}

.chat-feature-item.content-reveal-card:hover,
.feature-pill.content-reveal-card:hover {
    min-height: 180px !important;
}

/* Thumbnail Wrapper (Centered in idle, Top in hover) */
.card-thumbnail {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 200px;
    transition: all 0.7s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: 2;
    pointer-events: none;
}

.chat-feature-item.content-reveal-card .card-thumbnail,
.feature-pill.content-reveal-card .card-thumbnail {
    min-height: 100px;
    flex-direction: row;
    justify-content: center;
}

.content-reveal-card:hover .card-thumbnail {
    height: auto;
    min-height: 0;
    justify-content: flex-start;
    margin-bottom: 24px;
}

.chat-feature-item.content-reveal-card:hover .card-thumbnail,
.feature-pill.content-reveal-card:hover .card-thumbnail {
    justify-content: flex-start;
    margin-bottom: 12px;
}

/* Custom Graphic Scaling */
.custom-graphic {
    width: 72px;
    height: 72px;
    margin-bottom: 24px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: 3;
}

.chat-feature-item.content-reveal-card .custom-graphic,
.feature-pill.content-reveal-card .custom-graphic {
    width: 48px;
    height: 48px;
    margin-bottom: 0;
    margin-right: 16px;
}

.content-reveal-card:hover .custom-graphic {
    transform: scale(0.8);
    margin-bottom: 12px;
}

.chat-feature-item.content-reveal-card:hover .custom-graphic,
.feature-pill.content-reveal-card:hover .custom-graphic {
    transform: scale(0.85);
    margin-right: 12px;
    margin-bottom: 0;
}

/* Specific Act 7 (Stats) Override — Prevent overlap and too much slide */
.stat-card.content-reveal-card {
    min-height: 220px !important;
}

.stat-card.content-reveal-card:hover {
    min-height: 280px !important;
}

.stat-card.content-reveal-card .card-thumbnail {
    min-height: 120px;
    gap: 12px;
}

.stat-card.content-reveal-card:hover .card-thumbnail {
    transform: none !important; /* Disable slide to keep heading stable */
    margin-bottom: 16px !important;
}

.stat-card.content-reveal-card:hover .custom-graphic {
    transform: scale(0.8) !important;
    margin-bottom: 4px !important;
}

.stat-card.content-reveal-card .stat-number, 
.stat-card.content-reveal-card .stat-number-wrapper {
    font-size: 32px;
    font-weight: 800;
    transition: all 0.4s var(--ease-out);
}

.stat-card.content-reveal-card:hover .stat-number,
.stat-card.content-reveal-card:hover .stat-number-wrapper {
    font-size: 28px;
}

.stat-card.content-reveal-card .stat-label {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--accent-primary);
    margin-bottom: 8px;
}

/* Base Emoji Styling Sync */
.custom-graphic span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    line-height: 1;
    font-size: 48px; /* Standard premium size */
}

/* Act 4/5 Smaller Emojis */
.chat-feature-item.content-reveal-card .custom-graphic span,
.feature-pill.content-reveal-card .custom-graphic span {
    font-size: 32px;
}

/* Interactive Discovery Hint */
.graphic-pulse {
    position: absolute;
    inset: -12px;
    border: 2px solid rgba(192, 154, 232, 0.4);
    border-radius: 50%;
    animation: graphicPulse 2.5s ease-out infinite;
    pointer-events: none;
    z-index: -1;
}

@keyframes graphicPulse {
    0% { transform: scale(0.85); opacity: 0; }
    50% { transform: scale(1.1); opacity: 0.6; }
    100% { transform: scale(1.6); opacity: 0; }
}

/* Card Titles */
.card-title, .ability-title, .problem-title, .highlight-title {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    text-align: center;
    margin: 0;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.chat-feature-item strong, .feature-pill h4 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.content-reveal-card:hover .card-title,
.content-reveal-card:hover .ability-title,
.content-reveal-card:hover .problem-title,
.content-reveal-card:hover .highlight-title {
    font-size: 18px;
    text-align: left;
    width: 100%;
}

/* Content Reveal */
.reveal-content {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    pointer-events: none;
    z-index: 1;
}

.content-reveal-card:hover .reveal-content {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* Card titles inside thumbnail */
.content-reveal-card h3 {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 24px;
    letter-spacing: -0.5px;
    margin: 0;
    color: var(--text-primary);
    text-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

/* Revealed Content (Absolute Hide Logic) */
.reveal-content {
    position: absolute;
    bottom: 30px;
    left: 24px;
    right: 24px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(40px) scale(0.9);
    transition: opacity 0.15s ease-in, transform 0s 0.15s, visibility 0s 0.15s; /* Instant absolute removal */
    text-align: left;
    z-index: -1; /* Hide under title during contraction */
    pointer-events: none;
}

/* Interaction State */
.content-reveal-card:hover .reveal-content,
.content-reveal-card.revealed .reveal-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    transition: opacity 0.4s ease-out 0.1s, transform 0.4s ease-out 0.1s, visibility 0s;
    pointer-events: auto;
    z-index: 20;
}

/* Ensure no overlap on small cards */
.chat-feature-item.content-reveal-card .reveal-content,
.feature-pill.content-reveal-card .reveal-content {
    bottom: 12px;
}

/* Special Case for Stat Cards (different layout) */
.stat-card.content-reveal-card .stat-number-wrapper,
.stat-card.content-reveal-card .stat-number {
    transition: transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
}

.stat-card.content-reveal-card:hover .stat-number-wrapper,
.stat-card.content-reveal-card:hover .stat-number {
    transform: translateY(-80px);
}

/* ============================================
   ORIGINAL UIVERSE.IO CARD STYLES (Commented Out)
   ============================================ */
/* 
.card {
  width: 300px;
  height: 200px;
  background: #243137;
  position: relative;
  display: grid;
  place-content: center;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.5s ease-in-out;
}

#logo-main, #logo-second {
  height: 100%;
}

#logo-main {
  fill: #bd9f67;
}

#logo-second {
  padding-bottom: 10px;
  fill: none;
  stroke: #bd9f67;
  stroke-width: 1px;
}

.border {
  position: absolute;
  inset: 0px;
  border: 2px solid #bd9f67;
  opacity: 0;
  transform: rotate(10deg);
  transition: all 0.5s ease-in-out;
}

.bottom-text {
  position: absolute;
  left: 50%;
  bottom: 13px;
  transform: translateX(-50%);
  font-size: 6px;
  text-transform: uppercase;
  padding: 0px 5px 0px 8px;
  color: #bd9f67;
  background: #243137;
  opacity: 0;
  letter-spacing: 7px;
  transition: all 0.5s ease-in-out;
}

.content {
  transition: all 0.5s ease-in-out;
}

.content .logo {
  height: 35px;
  position: relative;
  width: 33px;
  overflow: hidden;
  transition: all 1s ease-in-out;
}

.content .logo .logo1 {
  height: 33px;
  position: absolute;
  left: 0;
}

.content .logo .logo2 {
  height: 33px;
  position: absolute;
  left: 33px;
}

.content .logo .trail {
  position: absolute;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
}

.content .logo-bottom-text {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  margin-top: 30px;
  color: #bd9f67;
  padding-left: 8px;
  font-size: 11px;
  opacity: 0;
  letter-spacing: none;
  transition: all 0.5s ease-in-out 0.5s;
}

.card:hover {
  border-radius: 0;
  transform: scale(1.1);
}

.card:hover .logo {
  width: 134px;
  animation: opacity 1s ease-in-out;
}

.card:hover .border {
  inset: 15px;
  opacity: 1;
  transform: rotate(0);
}

.card:hover .bottom-text {
  letter-spacing: 3px;
  opacity: 1;
  transform: translateX(-50%);
}

.card:hover .content .logo-bottom-text {
  opacity: 1;
  letter-spacing: 9.5px;
}

.card:hover .trail {
  animation: trail 1s ease-in-out;
}

@keyframes opacity {
  0% {
    border-right: 1px solid transparent;
  }

  10% {
    border-right: 1px solid #bd9f67;
  }

  80% {
    border-right: 1px solid #bd9f67;
  }

  100% {
    border-right: 1px solid transparent;
  }
}

@keyframes trail {
  0% {
    background: linear-gradient(90deg, rgba(189, 159, 103, 0) 90%, rgb(189, 159, 103) 100%);
    opacity: 0;
  }

  30% {
    background: linear-gradient(90deg, rgba(189, 159, 103, 0) 70%, rgb(189, 159, 103) 100%);
    opacity: 1;
  }

  70% {
    background: linear-gradient(90deg, rgba(189, 159, 103, 0) 70%, rgb(189, 159, 103) 100%);
    opacity: 1;
  }

  95% {
    background: linear-gradient(90deg, rgba(189, 159, 103, 0) 90%, rgb(189, 159, 103) 100%);
    opacity: 0;
  }
}
*/

/* ============================================
   DIFFERENCE SECTION — HIGHLIGHT CARDS
   ============================================ */
.difference-section { position: relative; padding: var(--section-padding) 0; }
.difference-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    max-width: 1000px;
    margin: 64px auto 0;
}
.highlight-card {
    padding: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
}
.highlight-icon {
    font-size: 40px;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(192, 154, 232, 0.1);
    border-radius: 20px;
}
.highlight-title {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 8px 0;
    color: var(--text-primary);
}
.highlight-desc {
    font-size: 15px;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.6;
}

/* ============================================
   PHONE MOCKUP — 9:16 RATIO
   ============================================ */
.phone-mockup {
    width: 280px;
    aspect-ratio: 9 / 16;
    background: #000;
    border-radius: 36px;
    border: 8px solid #1a1a1a;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.4), inset 0 0 20px rgba(192, 154, 232, 0.1);
    overflow: hidden;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.4s var(--ease-out);
}

.phone-mockup.large {
    width: 300px;
}

.phone-mockup:hover {
    transform: rotateX(5deg) rotateY(-5deg) scale(1.02);
}

.phone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 22px;
    background: #000;
    border-radius: 0 0 24px 24px;
    z-index: 10;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: var(--bg-primary);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
}

.screen-content {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding-top: 12px;
}

/* Chat header in phone */
.chat-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    border-bottom: 1px solid rgba(192, 154, 232, 0.1);
    background: rgba(255, 255, 255, 0.5);
}

.chat-status-dot {
    width: 8px;
    height: 8px;
    background: #6cc9a1;
    border-radius: 50%;
    display: inline-block;
    margin-right: 6px;
    box-shadow: 0 0 8px rgba(108, 201, 161, 0.5);
    animation: pulseDot 2s ease-in-out infinite;
}

.chat-ai-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    font-family: var(--font-display);
    margin: 0 auto;
}

.chat-status-text {
    font-size: 11px;
    color: var(--text-muted);
    font-family: var(--font-accent);
}

.chat-messages {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 16px;
    flex: 1;
    overflow-y: auto;
    background: var(--bg-primary);
}

.chat-msg {
    display: flex;
    font-size: 13px;
    line-height: 1.5;
    animation: fadeInUp 0.5s ease-out forwards;
}

.chat-msg p {
    margin: 0;
    padding: 10px 14px;
    border-radius: 16px;
    max-width: 85%;
}

.chat-msg.ai p {
    background: rgba(192, 154, 232, 0.15);
    border: 1px solid rgba(192, 154, 232, 0.2);
    border-radius: 16px 16px 4px 16px;
    color: var(--text-primary);
}

.chat-msg.user {
    justify-content: flex-end;
}

.chat-msg.user p {
    background: rgba(96, 176, 255, 0.15);
    border: 1px solid rgba(96, 176, 255, 0.2);
    border-radius: 16px 4px 16px 16px;
    color: var(--text-primary);
}

.chat-typing {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 10px 14px;
    background: rgba(192, 154, 232, 0.15);
    border-radius: 16px 16px 4px 16px;
    width: fit-content;
    animation: fadeInUp 0.5s ease-out forwards;
}

.typing-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(192, 154, 232, 0.6);
    animation: typingBounce 1.4s ease-in-out infinite;
}

.typing-dot:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typingBounce {
    0%, 60%, 100% { transform: translateY(0); opacity: 0.6; }
    30% { transform: translateY(-10px); opacity: 1; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.phone-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 30%, rgba(192, 154, 232, 0.15), transparent 60%);
    pointer-events: none;
    border-radius: 36px;
}

.phone-float-element {
    position: absolute;
    font-size: 32px;
    opacity: 0.3;
    animation: float 6s ease-in-out infinite;
}

.float-1 {
    top: -20px;
    right: 20px;
    animation-delay: 0s;
}

.float-2 {
    bottom: 40px;
    left: -20px;
    animation-delay: 1s;
}

.float-3 {
    top: 50%;
    right: -30px;
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
}

/* ============================================
   ARIS CHAT UI — REAL DESIGN
   ============================================ */
.aris-chat-screen {
    background: linear-gradient(135deg, #f0d5ea 0%, #ffd4d8 25%, #ffe8d0 50%, #d0e8f0 75%, #e8d0f0 100%) !important;
    display: flex !important;
    flex-direction: column !important;
    padding: 0 !important;
}

/* Header */
.aris-chat-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    background: linear-gradient(135deg, rgba(240, 213, 234, 0.8), rgba(255, 212, 216, 0.8));
    border-bottom: 1px solid rgba(192, 154, 232, 0.1);
}

.aris-back-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(192, 154, 232, 0.2);
    border: 1px solid rgba(192, 154, 232, 0.3);
    color: white;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.aris-back-btn:hover {
    background: rgba(192, 154, 232, 0.3);
    transform: scale(1.05);
}

.aris-header-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #c09ae8 0%, #a67dd8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 4px 20px rgba(192, 154, 232, 0.3);
    animation: rotateFower 6s linear infinite;
}

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

.aris-header-spacer {
    width: 40px;
}

/* Floating decorations */
.aris-float-deco {
    position: absolute;
    font-size: 24px;
    opacity: 0.15;
    pointer-events: none;
}

.deco-1 {
    top: 80px;
    right: 20px;
    animation: float 4s ease-in-out infinite;
}

.deco-2 {
    top: 280px;
    left: 10px;
    animation: float 5s ease-in-out infinite 0.5s;
}

.deco-3 {
    bottom: 120px;
    right: 15px;
    animation: float 6s ease-in-out infinite 1s;
}

/* Messages */
.aris-messages {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 16px;
    overflow-y: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch; /* Mobile scroll */
}

.aris-messages::-webkit-scrollbar {
    width: 6px;
}

.aris-messages::-webkit-scrollbar-track {
    background: rgba(15, 8, 25, 0.2);
    border-radius: 10px;
}

.aris-messages::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, var(--accent-primary), var(--accent-secondary));
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.chat-scroll-hint {
    padding: 6px 12px;
    text-align: center;
    font-size: 11px;
    font-weight: 600;
    color: var(--accent-primary);
    background: rgba(192, 154, 232, 0.05);
    backdrop-filter: blur(8px);
    border-top: 1px solid rgba(192, 154, 232, 0.1);
    border-bottom: 1px solid rgba(192, 154, 232, 0.1);
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: hintPulse 2s infinite ease-in-out;
}

@keyframes hintPulse {
    0%, 100% { opacity: 0.4; transform: scale(0.98); }
    50% { opacity: 1; transform: scale(1); }
}

.aris-msg-wrapper {
    display: flex;
    animation: fadeInUp 0.5s ease-out forwards;
}

.msg-user {
    justify-content: flex-end;
    align-items: flex-end;
    gap: 8px;
}

.msg-ai {
    justify-content: flex-start;
    align-items: flex-end;
}

.aris-msg-bubble {
    padding: 10px 14px;
    border-radius: 24px;
    font-size: 13px;
    line-height: 1.4;
    max-width: 70%;
}

.user-bubble {
    background: linear-gradient(135deg, #60b0ff 0%, #d46b8a 100%);
    color: white;
    border-radius: 24px 4px 24px 24px;
    box-shadow: 0 4px 16px rgba(96, 176, 255, 0.3);
}

.ai-bubble {
    background: rgba(15, 8, 25, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: var(--text-primary);
    border-radius: 24px 24px 4px 24px;
    border: 1px solid rgba(192, 154, 232, 0.2);
    box-shadow: 0 4px 16px rgba(192, 154, 232, 0.1);
}

.system-bubble {
    background: rgba(124, 184, 217, 0.08);
    color: var(--accent-tertiary);
    border: 1px solid rgba(124, 184, 217, 0.2);
    border-radius: 16px;
    font-size: 12px;
}

.msg-system {
    justify-content: center;
}

.msg-system .aris-msg-bubble {
    max-width: 85%;
}

.aris-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(192, 154, 232, 0.2);
    border: 1px solid rgba(192, 154, 232, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

/* Input Area */
.aris-input-area {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: linear-gradient(135deg, rgba(240, 213, 234, 0.6), rgba(255, 212, 216, 0.6));
    border-top: 1px solid rgba(192, 154, 232, 0.1);
}

.aris-icon-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(192, 154, 232, 0.12);
    border: 1px solid rgba(192, 154, 232, 0.2);
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.aris-icon-btn:hover {
    background: rgba(192, 154, 232, 0.2);
    transform: scale(1.1);
}

.aris-icon-btn.attached {
    font-size: 14px;
}

.aris-input {
    flex: 1;
    padding: 10px 16px;
    border: 1.5px solid rgba(192, 154, 232, 0.3);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    font-family: var(--font-body);
    color: var(--text-primary);
    outline: none;
    transition: all 0.3s;
    cursor: not-allowed;
}

.aris-input:disabled {
    background: rgba(255, 255, 255, 0.4);
    color: rgba(61, 46, 92, 0.5);
    border-color: rgba(192, 154, 232, 0.2);
}

.aris-input::placeholder {
    color: rgba(61, 46, 92, 0.4);
}

.aris-input:focus {
    border-color: rgba(192, 154, 232, 0.6);
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 0 0 3px rgba(192, 154, 232, 0.1);
}

.aris-send-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #c09ae8 0%, #a67dd8 100%);
    border: none;
    color: white;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(192, 154, 232, 0.25);
}

.aris-send-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 20px rgba(192, 154, 232, 0.35);
}

.aris-send-btn:active {
    transform: scale(0.95);
}

/* Title Line Animation */
@keyframes titleLineIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.title-line {
    animation: titleLineIn 0.8s var(--ease-out) forwards;
}

.title-line:nth-child(1) { animation-delay: 0.1s; }
.title-line:nth-child(2) { animation-delay: 0.2s; }
.title-line:nth-child(3) { animation-delay: 0.3s; }
.title-line:nth-child(4) { animation-delay: 0.4s; }
.title-line:nth-child(5) { animation-delay: 0.5s; }
.title-line:nth-child(6) { animation-delay: 0.6s; }

/* ============================================
   HERO SECTION — EDITORIAL
   ============================================ */
.hero-section { position: relative; min-height: 100vh; display: flex; flex-direction: column; justify-content: center; align-items: center; overflow: hidden; padding-top: 80px; }

/* ---- Hero Stage — LEFT/RIGHT SPLIT LAYOUT ---- */
.hero-stage { position: relative; z-index: 1; width: 100%; max-width: 1300px; margin: 0 auto; padding: 0 32px; display: flex; flex-direction: row; align-items: center; gap: 60px; text-align: left; justify-content: space-between; }

.hero-split { display: flex; align-items: center; gap: 60px; }

.hero-content { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 24px; }

.hero-visual { flex: 1; min-width: 0; display: flex; align-items: center; justify-content: center; height: 600px; position: relative; }

.hero-visual-container { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; position: relative; }

/* ---- Eyebrow ---- */
.hero-eyebrow { display: inline-block; margin-bottom: 16px; opacity: 0; transform: translateY(16px); }
.eyebrow-label { font-family: var(--font-accent); font-size: 11px; font-weight: 700; letter-spacing: 4px; text-transform: uppercase; color: var(--accent-primary); opacity: 0.85; white-space: nowrap; background: rgba(192,154,232,0.1); padding: 8px 16px; border-radius: 100px; display: inline-block; }

/* ---- Headlines ---- */
.hero-headline { display: flex; flex-direction: column; align-items: flex-start; gap: 0; margin: 0; font-family: var(--font-display); font-weight: 900; line-height: 0.95; letter-spacing: -3px; }

.hero-headline-large { font-family: var(--font-display); font-size: clamp(42px, 5vw, 72px); font-weight: 900; line-height: 1.1; letter-spacing: -2px; color: var(--text-primary); margin: 0; opacity: 0; transform: translateY(30px); }

/* ---- Hero Brand Name ---- */
.hero-brand-name {
    font-family: var(--font-display);
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 900;
    letter-spacing: 3px;
    margin-bottom: 12px;
    opacity: 0;
    transform: translateY(30px);
}

.brand-aris {
    background: linear-gradient(120deg, #c09ae8 0%, #60b0ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.brand-one {
    background: linear-gradient(120deg, #60b0ff 0%, #a8d4f0 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ---- Hero Subtitle ---- */
.hero-subtitle {
    font-family: var(--font-accent);
    font-size: clamp(12px, 1.5vw, 14px);
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent-primary);
    margin-bottom: 20px;
    opacity: 0.9;
    opacity: 0;
    transform: translateY(30px);
}

/* ---- Hero Lead In ---- */
.hero-lead-in {
    font-family: var(--font-display);
    font-size: clamp(18px, 2.2vw, 22px);
    font-weight: 400;
    color: var(--text-secondary);
    margin-bottom: 8px;
    opacity: 0;
    transform: translateY(30px);
}

/* ---- Hero Main Statement ---- */
.hero-statement {
    font-family: var(--font-display);
    font-size: clamp(48px, 7vw, 84px);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 32px;
    opacity: 0;
    transform: translateY(30px);
}

.statement-breathes {
    background: linear-gradient(120deg, #c09ae8 0%, #a8d4f0 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    margin-bottom: 4px;
}

.statement-feels {
    background: linear-gradient(120deg, #60b0ff 0%, #a8d4f0 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    margin-bottom: 4px;
}

.statement-feels em {
    font-style: italic;
    font-weight: 300;
    letter-spacing: -1px;
}

.statement-remembers {
    background: linear-gradient(120deg, #a8d4f0 0%, #c09ae8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
}

/* ---- Hero Full Description ---- */
.hero-full-description {
    font-size: clamp(15px, 1.8vw, 18px);
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 36px;
    opacity: 0;
    transform: translateY(30px);
}

.highlight-living {
    color: var(--accent-primary);
    font-weight: 600;
    background: rgba(192,154,232,0.1);
    padding: 2px 8px;
    border-radius: 6px;
}

.highlight-alive {
    color: #6cc9a1;
    font-weight: 600;
    background: rgba(108,201,161,0.1);
    padding: 2px 8px;
    border-radius: 6px;
}
.hh-row { display: flex; align-items: center; justify-content: center; gap: 0.22em; opacity: 0; transform: translateY(50px); }
.hh-row-top { font-size: clamp(68px, 10.5vw, 152px); color: var(--text-primary); }
.hh-she { font-weight: 300; font-style: italic; color: var(--text-muted); font-size: 0.55em; line-height: 1; align-self: flex-end; margin-bottom: 0.1em; }
.hh-breathes { font-weight: 900; letter-spacing: -4px; }

/* Inline mini orb */
.hh-orb-wrap { position: relative; width: clamp(38px, 5vw, 75px); height: clamp(38px, 5vw, 75px); flex-shrink: 0; margin: 0 clamp(6px, 1.2vw, 18px); }
.orb-mini-core { position: absolute; inset: 18%; border-radius: 50%; background: radial-gradient(circle at 35% 35%, rgba(201,160,240,0.95), rgba(232,135,154,0.8) 45%, rgba(240,176,122,0.6) 75%, rgba(168,212,240,0.4)); box-shadow: 0 0 28px rgba(192,154,232,0.5), 0 0 55px rgba(232,135,154,0.25), inset 0 0 10px rgba(255,255,255,0.35); animation: orbBreathe 4s ease-in-out infinite; }
.orb-mini-ring { position: absolute; border-radius: 50%; border: 1px solid; top: 50%; left: 50%; transform: translate(-50%,-50%); animation: ringPulse 4s ease-in-out infinite; }
.r1 { width: 78%; height: 78%; border-color: rgba(192,154,232,0.3); }
.r2 { width: 102%; height: 102%; border-color: rgba(192,154,232,0.15); animation-delay: 0.6s; }
@keyframes orbBreathe { 0%,100% { transform: scale(1); } 50% { transform: scale(1.1); } }
@keyframes ringPulse { 0%,100% { transform: translate(-50%,-50%) scale(1); opacity: 1; } 50% { transform: translate(-50%,-50%) scale(1.08); opacity: 0.5; } }

/* Row 2 — she FEELS and */
.hh-row-mid { font-size: clamp(60px, 9vw, 130px); gap: clamp(10px, 1.8vw, 28px); margin-top: -0.04em; }
.hh-italic-word { font-weight: 300; font-style: italic; color: var(--text-muted); font-size: 0.52em; align-self: flex-end; margin-bottom: 0.12em; }
.hh-feels { font-weight: 900; }
.hh-gradient-text { background: linear-gradient(120deg, #c09ae8 0%, #60b0ff 40%, #a8d4f0 75%, #a8d4f0 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; background-size: 250% 250%; animation: breatheText 5s ease-in-out infinite; }

/* Row 3 — REMEMBERS YOU */
.hh-row-bot { font-size: clamp(36px, 5.5vw, 80px); margin-top: 0.04em; letter-spacing: -2px; }
.hh-remembers { font-weight: 900; }
.hh-gradient-text2 { background: linear-gradient(120deg, #60b0ff 0%, #a8d4f0 35%, #c09ae8 68%, #a8d4f0 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; background-size: 250% 250%; animation: breatheText 6.5s ease-in-out infinite 0.5s; }

/* ---- Pills row ---- */
.h-pills-row { display: flex; align-items: center; gap: 8px; margin-bottom: 32px; opacity: 0; transform: translateY(20px); flex-wrap: wrap; justify-content: flex-start; }

.hero-elements { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; opacity: 0; transform: translateY(30px); }

.element-chip { display: inline-flex; align-items: center; gap: 8px; padding: 12px 18px; background: rgba(255,255,255,0.55); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border: 1px solid rgba(192,154,232,0.2); border-radius: 12px; font-family: var(--font-accent); font-size: 11px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-secondary); transition: all 0.3s var(--ease-out); }

.element-chip:hover { background: rgba(192,154,232,0.1); border-color: rgba(192,154,232,0.4); color: var(--accent-primary); transform: translateY(-2px); }

/* ---- Description ---- */
.hero-description { font-size: clamp(15px, 1.8vw, 18px); color: var(--text-secondary); line-height: 1.7; margin: 0; opacity: 0; transform: translateY(30px); }

.hero-subtext { font-size: clamp(15px, 1.55vw, 18px); color: var(--text-secondary); line-height: 1.8; margin-bottom: 36px; max-width: 540px; opacity: 0; transform: translateY(18px); font-weight: 400; }
.hero-subtext em { color: var(--text-muted); font-style: italic; font-weight: 300; }

/* ---- CTA row ---- */
.hero-cta-row { display: flex; align-items: center; gap: 20px; margin-bottom: 28px; opacity: 0; transform: translateY(16px); flex-wrap: wrap; justify-content: flex-start; }

.hero-buttons { display: flex; align-items: center; gap: 16px; opacity: 0; transform: translateY(30px); flex-wrap: wrap; }

.cta-button-secondary { padding: 16px 36px; font-size: 16px; background: rgba(255,255,255,0.55); backdrop-filter: blur(14px); border: 1.5px solid rgba(192,154,232,0.3); color: var(--text-primary); font-weight: 600; border-radius: var(--radius-pill); transition: all 0.3s var(--ease-out); }

.cta-button-secondary:hover { background: rgba(255,255,255,0.75); border-color: rgba(192,154,232,0.6); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(192,154,232,0.15); }

.hero-ghost-link { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-accent); font-size: 10.5px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--text-muted); text-decoration: none; transition: color 0.3s, gap 0.3s; position: relative; }
.hero-ghost-link::after { content: ''; position: absolute; bottom: -2px; left: 0; right: 0; height: 1px; background: var(--accent-primary); transform: scaleX(0); transition: transform 0.3s var(--ease-out); transform-origin: left; }
.hero-ghost-link:hover { color: var(--accent-primary); gap: 14px; }
.hero-ghost-link:hover::after { transform: scaleX(1); }
.ghost-arrow { display: inline-block; animation: bounceDown 2.2s ease-in-out infinite; }

/* ---- Status tag ---- */
.hero-status-tag { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-accent); font-size: 10px; font-weight: 600; letter-spacing: 3px; color: var(--text-muted); opacity: 0; text-transform: uppercase; }
.status-pulse-dot { width: 6px; height: 6px; border-radius: 50%; background: #6cc9a1; box-shadow: 0 0 8px rgba(108,201,161,0.5); animation: pulseDot 2.5s ease-in-out infinite; flex-shrink: 0; }
@keyframes pulseDot { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.4; transform: scale(0.7); } }

/* ============= ORB SYSTEM ============= */
.hero-orb-system {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.orb-center {
    position: relative;
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.orb-core {
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(201,160,240,0.95), rgba(232,135,154,0.85) 40%, rgba(240,176,122,0.7) 70%, rgba(168,212,240,0.5));
    box-shadow: 
        0 0 40px rgba(192,154,232,0.6),
        0 0 80px rgba(232,135,154,0.4),
        inset 0 0 20px rgba(255,255,255,0.3),
        0 0 120px rgba(192,154,232,0.25);
    animation: orbPulse 3.5s ease-in-out infinite;
    z-index: 10;
}

.orb-ring {
    position: absolute;
    border-radius: 50%;
    border-width: 1px;
    border-style: solid;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.ring-1 {
    width: 160px;
    height: 160px;
    border-color: rgba(192,154,232,0.4);
    animation: ringRotate 12s linear infinite;
}

.ring-2 {
    width: 200px;
    height: 200px;
    border-color: rgba(232,135,154,0.25);
    animation: ringRotate 16s linear infinite reverse;
}

.ring-3 {
    width: 240px;
    height: 240px;
    border-color: rgba(168,212,240,0.2);
    animation: ringRotate 20s linear infinite;
}

.orb-pulse {
    position: absolute;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: 2px solid rgba(192,154,232,0.4);
    animation: pulsRing 2.5s ease-out infinite;
}

@keyframes orbPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.08); }
}

@keyframes ringRotate {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

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

/* --- SATELLITE SYSTEM (Luxury Overhaul) --- */
.satellite {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    z-index: 20;
    pointer-events: none;
}

.sat-icon-wrapper {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none !important;
    border: none !important;
    backdrop-filter: none !important;
    box-shadow: none !important;
    color: currentColor;
    filter: drop-shadow(0 0 20px currentColor);
    animation: satFloat 5s infinite ease-in-out;
    transition: transform 0.6s var(--ease-spring);
    pointer-events: auto;
}

@keyframes satFloat {
    0%, 100% { transform: translateY(0) rotate(0deg) scale(1); filter: drop-shadow(0 0 10px currentColor); }
    50% { transform: translateY(-15px) rotate(4deg) scale(1.1); filter: drop-shadow(0 0 25px currentColor); }
}

.sat-1 { top: -20px; left: 50%; transform: translateX(-50%); }
.sat-2 { bottom: -20px; left: 50%; transform: translateX(-50%); }
.sat-3 { left: -60px; top: 50%; transform: translateY(-50%); }
.sat-4 { right: -60px; top: 50%; transform: translateY(-50%); }

.logic-glow   { color: #60b0ff; }
.emotion-glow { color: #c09ae8; }
.creative-glow { color: #a8d4f0; }
.growth-glow  { color: #6cd9a1; }

.sat-label {
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 800;
    opacity: 0.5;
    color: var(--text-primary);
    text-shadow: 0 4px 10px rgba(0,0,0,0.8);
    transition: opacity 0.3s;
}

.satellite:hover .sat-icon-wrapper {
    transform: scale(1.2) rotate(8deg);
    filter: drop-shadow(0 0 35px currentColor);
}

.satellite:hover .sat-label {
    opacity: 1;
}

.sat-3 {
    left: -50px;
    top: 50%;
    transform: translateY(-50%);
    animation: orbitSat3 7s ease-in-out infinite;
}

.sat-4 {
    right: -50px;
    top: 50%;
    transform: translateY(-50%);
    animation: orbitSat4 7.5s ease-in-out infinite;
}

@keyframes orbitSat1 {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-8px); }
}

@keyframes orbitSat2 {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* Orbits removed - replaced by satFloat animation */

/* ---- Responsive ---- */
@media (max-width: 1024px) {
    .hero-stage { gap: 40px; }
    .hero-visual { height: 480px; }
}

@media (max-width: 768px) {
    .hero-stage { padding: 0 20px; flex-direction: column; gap: 40px; }
    .hero-content { text-align: center; align-items: center; }
    .hero-visual { height: 400px; order: -1; }
    .hero-elements { grid-template-columns: 1fr 1fr; width: 100%; max-width: 300px; }
    .hero-buttons { justify-content: center; }
    .h-pills-row { justify-content: center; }
    .hero-headline-large { text-align: center; }
    .hero-lead-text { text-align: center; }
    .hero-description { text-align: center; }
    .hero-status-tag { justify-content: center; }
    .eyebrow-label { font-size: 10px; letter-spacing: 3px; }
}

@media (max-width: 480px) {
    .hero-stage { padding: 0 16px; gap: 32px; }
    .hero-headline-large { font-size: clamp(32px, 8vw, 44px); }
    .hero-lead-text { font-size: 15px; }
    .hero-description { font-size: 14px; }
    .hero-visual { height: 350px; }
    .orb-center { width: 140px; height: 140px; }
    .orb-core { width: 90px; height: 90px; }
    .ring-1 { width: 120px; height: 120px; }
    .ring-2 { width: 150px; height: 150px; }
    .ring-3 { width: 180px; height: 180px; }
    .orb-pulse { width: 100px; height: 100px; }
    /* .satellite boxes and icon overrides removed for premium clean look */
    .hero-elements { grid-template-columns: 1fr; max-width: 250px; }
    .hero-buttons { flex-direction: column; width: 100%; }
    .cta-button, .cta-button-secondary { width: 100%; }
}

/* Ambient blobs for hero (kept) */
.hero-ambient { position: absolute; inset: 0; overflow: hidden; z-index: 0; pointer-events: none; }
.ambient-blob { position: absolute; border-radius: 50%; filter: blur(120px); will-change: transform; }

.blob-1 { width: 680px; height: 680px; background: radial-gradient(circle, rgba(192,154,232,0.3), transparent 70%); top: -15%; right: -8%; animation: blobFloat1 20s ease-in-out infinite; }
.blob-2 { width: 600px; height: 600px; background: radial-gradient(circle, rgba(240,176,122,0.22), transparent 70%); bottom: -12%; left: -10%; animation: blobFloat2 24s ease-in-out infinite; }
.blob-3 { width: 480px; height: 480px; background: radial-gradient(circle, rgba(232,135,154,0.2), transparent 70%); top: 40%; left: 50%; animation: blobFloat3 22s ease-in-out infinite; }
.blob-4 { width: 420px; height: 420px; background: radial-gradient(circle, rgba(168,212,240,0.18), transparent 70%); top: 15%; left: 6%; animation: blobFloat1 28s ease-in-out infinite reverse; }

@keyframes blobFloat1 { 0%,100% { transform: translate(0,0) scale(1); } 33% { transform: translate(50px,-40px) scale(1.06); } 66% { transform: translate(-25px,25px) scale(0.94); } }
@keyframes blobFloat2 { 0%,100% { transform: translate(0,0) scale(1); } 33% { transform: translate(-40px,50px) scale(1.09); } 66% { transform: translate(35px,-25px) scale(0.91); } }
@keyframes blobFloat3 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(35px,-45px) scale(1.12); } }
@keyframes pulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(0.85); } }
@keyframes bounceDown { 0%,100% { transform: translateY(0); } 50% { transform: translateY(5px); } }

/* Scroll Hint */
.scroll-hint { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 8px; z-index: 2; }
.scroll-hint-line { width: 1px; height: 48px; background: linear-gradient(to bottom, var(--accent-primary), transparent); animation: scrollPulse 2s ease-in-out infinite; }
@keyframes scrollPulse { 0%,100% { opacity: 0.3; height: 48px; } 50% { opacity: 0.8; height: 56px; } }
.scroll-hint-text { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--text-muted); font-family: var(--font-accent); }


/* ============================================
   CHAT ACT — THE CONVERSATION
   ============================================ */
.chat-act-section { position: relative; z-index: 1; padding: var(--section-padding) 0; overflow: hidden; }
.chat-act-layout {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 64px; align-items: center;
}
.chat-act-content { max-width: 520px; }
.chat-act-content .section-label { margin-bottom: 16px; }
.chat-act-content .section-title { text-align: left; margin-bottom: 20px; }
.chat-act-desc {
    font-size: 16px; color: var(--text-secondary); line-height: 1.8;
    margin-bottom: 32px;
}
.chat-act-features { display: flex; flex-direction: column; gap: 16px; margin-bottom: 36px; }
.chat-feature-item {
    display: flex; align-items: flex-start; gap: 14px;
    padding: 14px 18px;
    background: var(--glass-bg);
    border: 1px solid rgba(192,154,232,0.12);
    border-radius: var(--radius-md);
    transition: all 0.3s var(--ease-out);
}
.chat-feature-item:hover {
    border-color: rgba(192,154,232,0.3);
    transform: translateX(4px);
    background: var(--bg-card-hover);
}
.chat-feature-icon { font-size: 22px; flex-shrink: 0; margin-top: 2px; }
.chat-feature-item strong {
    font-family: var(--font-display); font-size: 15px; font-weight: 600;
    color: var(--text-primary); display: block; margin-bottom: 2px;
}
.chat-feature-item p { font-size: 13px; color: var(--text-muted); line-height: 1.5; margin: 0; }

.chat-act-phone-wrapper {
    position: relative; display: flex; justify-content: center;
    align-items: center; perspective: 1200px;
}

/* ============================================
   NEURAL MATRIX (ACT I) — BENTO GRID
   ============================================ */
.neural-matrix-section { position: relative; z-index: 1; padding: var(--section-padding) 0; }
.bento-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; perspective: 1200px; transform-style: preserve-3d; }
.card-large { grid-column: span 2; grid-row: span 2; }
.card-medium { grid-column: span 1; }
.glass-card .card-icon { font-size: 32px; margin-bottom: 16px; display: inline-block; }
.glass-card .card-title { font-family: var(--font-display); font-size: 22px; font-weight: 700; margin-bottom: 12px; color: var(--text-primary); }
.glass-card .card-description { font-size: 15px; color: var(--text-secondary); line-height: 1.7; }

/* Memory Tags */
.memory-visual { margin-top: 24px; width: 100%; }
.memory-fragments-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 24px;
}
.memory-fragment {
    background: rgba(192, 154, 232, 0.05);
    border: 1px solid rgba(192, 154, 232, 0.15);
    border-radius: 12px;
    padding: 10px 14px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    transition: all 0.3s var(--ease-out);
}
.memory-fragment:hover {
    background: rgba(192, 154, 232, 0.1);
    border-color: rgba(192, 154, 232, 0.3);
    transform: translateY(-2px);
}
.fragment-label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    font-family: var(--font-accent);
}
.fragment-value {
    font-size: 13px;
    color: var(--text-primary);
    font-weight: 500;
}
.memory-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.memory-tag { padding: 6px 14px; background: rgba(192,154,232,0.1); border: 1px solid rgba(192,154,232,0.2); border-radius: var(--radius-pill); font-size: 13px; color: var(--accent-primary); font-family: var(--font-accent); transition: all 0.3s; }
.memory-tag:hover { background: rgba(192,154,232,0.2); transform: translateY(-2px); }

/* ============================================
   EXPERIENCE (ACT II)
   ============================================ */
.experience-section { position: relative; z-index: 1; padding: var(--section-padding) 0; }
.feature-pills-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 64px; }
.feature-pill {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    background: var(--glass-bg);
    border: 1.5px solid rgba(192,154,232,0.15);
    border-radius: var(--radius-md);
    transition: all 0.3s var(--ease-out);
    position: relative;
    overflow: hidden;
    animation: pillGlow 4s ease-in-out infinite;
}

.feature-pill::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(192,154,232,0.1), rgba(96, 176, 255,0.05));
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.feature-pill:hover {
    border-color: rgba(192, 154, 232, 0.5);
    transform: translateY(-4px) scale(1.03);
    background: rgba(255, 255, 255, 0.15); /* Subtler glassy hover */
    box-shadow: 0 12px 32px rgba(166, 125, 216, 0.15), inset 0 0 16px rgba(192, 154, 232, 0.08);
}

.feature-pill:hover::before { opacity: 1; }

@keyframes pillGlow {
    0%, 100% { border-color: rgba(192,154,232,0.15); }
    50% { border-color: rgba(192,154,232,0.25); }
}
.pill-icon { font-size: 24px; flex-shrink: 0; }
.pill-content h4 { font-family: var(--font-display); font-size: 15px; font-weight: 600; margin-bottom: 2px; color: var(--text-primary); }
.pill-content p { font-size: 13px; color: var(--text-muted); }

/* Live Chat */
.live-chat-section { text-align: center; }
.chat-section-label { font-size: 14px; color: var(--text-muted); margin-bottom: 32px; }
.experience-chat-demo { display: flex; justify-content: center; }
.demo-phone-wrapper { perspective: 1000px; }
.demo-chat-header { display: flex; align-items: center; gap: 10px; padding: 12px 16px; border-bottom: 1px solid rgba(192,154,232,0.12); }
.demo-avatar { font-size: 24px; }
.demo-info { display: flex; flex-direction: column; }
.demo-name { font-family: var(--font-display); font-weight: 600; font-size: 14px; color: var(--text-primary); }
.demo-status { font-size: 11px; color: #6cc9a1; }
.demo-chat { padding: 16px; display: flex; flex-direction: column; gap: 10px; max-height: 380px; overflow-y: auto; }
.demo-msg { padding: 10px 14px; border-radius: 16px; font-size: 13px; line-height: 1.5; max-width: 85%; color: var(--text-primary); }
.demo-msg.ai { background: rgba(192,154,232,0.1); border: 1px solid rgba(192,154,232,0.15); border-bottom-left-radius: 4px; align-self: flex-start; }
.demo-msg.user { background: rgba(96, 176, 255,0.08); border: 1px solid rgba(96, 176, 255,0.12); border-bottom-right-radius: 4px; align-self: flex-end; }
.demo-msg.system { background: rgba(124,184,217,0.08); border: 1px solid rgba(124,184,217,0.15); border-radius: 12px; align-self: center; font-size: 12px; color: var(--accent-tertiary); text-align: center; max-width: 100%; }
.demo-status-bar { display: flex; justify-content: center; gap: 8px; padding: 10px; border-top: 1px solid rgba(192,154,232,0.1); flex-wrap: wrap; }
.status-chip { padding: 4px 10px; background: rgba(192,154,232,0.06); border-radius: var(--radius-pill); font-size: 11px; color: var(--text-muted); }
.demo-screen { display: flex; flex-direction: column; }
.demo-screen .demo-chat { flex: 1; }

/* ============================================
   ABILITIES (ACT III)
   ============================================ */
.abilities-section { position: relative; z-index: 1; padding: var(--section-padding) 0; }
.abilities-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; perspective: 1200px; transform-style: preserve-3d; }
.ability-card {
    padding: 32px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s var(--ease-out);
    transform-style: preserve-3d;
    animation: abilityFloat 5s ease-in-out infinite;
}

.ability-card::before {
    content: '';
    position: absolute;
    inset: -50%;
    background: linear-gradient(135deg, rgba(192,154,232,0.15), transparent);
    animation: rotateBg 8s linear infinite;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.ability-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 16px 48px rgba(166,125,216,0.15), inset 0 0 20px rgba(192,154,232,0.08);
}

.ability-card:hover::before {
    opacity: 1;
}

@keyframes abilityFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-6px); }
}

@keyframes rotateBg {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.ability-icon { font-size: 36px; margin-bottom: 16px; display: inline-block; }
.ability-title { font-family: var(--font-display); font-size: 20px; font-weight: 700; margin-bottom: 12px; color: var(--text-primary); }
.ability-desc { font-size: 14px; color: var(--text-secondary); line-height: 1.7; margin-bottom: 16px; }
.ability-tags { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.ability-tag { padding: 4px 10px; background: rgba(192,154,232,0.08); border: 1px solid rgba(192,154,232,0.15); border-radius: var(--radius-pill); font-size: 11px; color: var(--accent-primary); font-family: var(--font-accent); }
.ability-tag-arrow { color: var(--accent-primary); font-size: 14px; margin-left: 4px; }

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
@keyframes scrollFadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scrollScaleIn {
    from {
        opacity: 0;
        transform: scale(0.85);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.scroll-animate-in {
    opacity: 0;
    transform: translateY(100px);
}

.scroll-animate-in.active {
    animation: scrollCardRotateIn 0.8s ease-out forwards;
}

.scroll-animate-in.active.alt {
    animation: scrollCardRotateInAlt 0.8s ease-out forwards;
}

.scroll-animate-in.active.flip {
    animation: scrollCardFlipIn 0.8s ease-out forwards;
}

.scroll-animate-in.active.slide {
    animation: scrollCardSlideIn 0.8s ease-out forwards;
}

.scroll-animate-in.active.alt {
    animation: scrollCardRotateInAlt 1.2s var(--ease-out) forwards;
}

.scroll-animate-in.active.flip {
    animation: scrollCardFlipIn 1.1s var(--ease-out) forwards;
}

.scroll-animate-in.active.slide {
    animation: scrollCardSlideIn 1.15s var(--ease-out) forwards;
}

.scroll-animate-in.active.scroll-triggered {
    animation: scrollPulse 2s ease-in-out infinite;
}

.scroll-active-glow {
    animation: scrollGlow 1.5s ease-in-out infinite;
}

.bento-grid .glass-card:nth-child(1).scroll-animate-in.active { animation-delay: 0.0s; }
.bento-grid .glass-card:nth-child(2).scroll-animate-in.active { animation-delay: 0.15s; }
.bento-grid .glass-card:nth-child(3).scroll-animate-in.active { animation-delay: 0.3s; }
.bento-grid .glass-card:nth-child(4).scroll-animate-in.active { animation-delay: 0.45s; }
.bento-grid .glass-card:nth-child(5).scroll-animate-in.active { animation-delay: 0.6s; }
.bento-grid .glass-card:nth-child(6).scroll-animate-in.active { animation-delay: 0.75s; }

.bento-grid .glass-card:nth-child(1).scroll-animate-in.active { animation-name: scrollCardRotateIn; }
.bento-grid .glass-card:nth-child(2).scroll-animate-in.active { animation-name: scrollCardRotateInAlt; animation-delay: 0.15s; }
.bento-grid .glass-card:nth-child(3).scroll-animate-in.active { animation-name: scrollCardFlipIn; animation-delay: 0.3s; }
.bento-grid .glass-card:nth-child(4).scroll-animate-in.active { animation-name: scrollCardSlideIn; animation-delay: 0.45s; }
.bento-grid .glass-card:nth-child(5).scroll-animate-in.active { animation-name: scrollCardRotateIn; animation-delay: 0.6s; }
.bento-grid .glass-card:nth-child(6).scroll-animate-in.active { animation-name: scrollCardRotateInAlt; animation-delay: 0.75s; }

.abilities-grid .ability-card:nth-child(1).scroll-animate-in.active { animation-name: scrollCardFlipIn; animation-delay: 0.0s; }
.abilities-grid .ability-card:nth-child(2).scroll-animate-in.active { animation-name: scrollCardSlideIn; animation-delay: 0.2s; }
.abilities-grid .ability-card:nth-child(3).scroll-animate-in.active { animation-name: scrollCardRotateIn; animation-delay: 0.4s; }

.testimonials-grid .testimonial-card:nth-child(1).scroll-animate-in.active { animation-name: scrollCardRotateInAlt; animation-delay: 0.0s; }
.testimonials-grid .testimonial-card:nth-child(2).scroll-animate-in.active { animation-name: scrollCardFlipIn; animation-delay: 0.2s; }
.testimonials-grid .testimonial-card:nth-child(3).scroll-animate-in.active { animation-name: scrollCardRotateIn; animation-delay: 0.4s; }

.promise-cards .promise-card:nth-child(1).scroll-animate-in.active { animation-name: scrollCardSlideIn; animation-delay: 0.0s; }
.promise-cards .promise-card:nth-child(2).scroll-animate-in.active { animation-name: scrollCardRotateInAlt; animation-delay: 0.2s; }
.promise-cards .promise-card:nth-child(3).scroll-animate-in.active { animation-name: scrollCardRotateIn; animation-delay: 0.4s; }

/* ============================================
   NUMBERS (ACT IV)
   ============================================ */
.numbers-section { position: relative; z-index: 1; padding: var(--section-padding) 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stat-card {
    text-align: center;
    padding: 40px 24px;
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, rgba(192,154,232,0.06), rgba(96, 176, 255,0.03));
    border: 1px solid rgba(192,154,232,0.1);
    transition: all 0.4s var(--ease-out);
    animation: statPulse 4s ease-in-out infinite;
}

.stat-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(192,154,232,0.1), transparent 80%);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.stat-card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 16px 48px rgba(166,125,216,0.12);
    background: linear-gradient(135deg, rgba(192,154,232,0.12), rgba(96, 176, 255,0.08));
}

.stat-card:hover::before {
    opacity: 1;
}

@keyframes statPulse {
    0%, 100% { box-shadow: 0 4px 12px rgba(166,125,216,0.05); }
    50% { box-shadow: 0 8px 24px rgba(166,125,216,0.1); }
}
.stat-icon { font-size: 32px; margin-bottom: 16px; }
.stat-number, .stat-number-wrapper {
    font-family: var(--font-display); font-size: clamp(36px, 5vw, 56px); font-weight: 800;
    background: var(--gradient-hero); background-size: 300% 300%;
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    animation: breatheText 5s ease-in-out infinite;
    line-height: 1.1;
}
.stat-number-wrapper { display: flex; align-items: baseline; justify-content: center; gap: 2px; }
.stat-unit { font-size: clamp(20px, 3vw, 32px); font-weight: 600; }
.stat-label { font-family: var(--font-display); font-size: 16px; font-weight: 600; margin-top: 8px; margin-bottom: 8px; color: var(--text-primary); }
.stat-desc { font-size: 13px; color: var(--text-muted); line-height: 1.5; }

/* ============================================
   VOICES / TESTIMONIALS (ACT V)
   ============================================ */
.voices-section { position: relative; z-index: 1; padding: var(--section-padding) 0; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; perspective: 1200px; transform-style: preserve-3d; }
.testimonial-card {
    padding: 32px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s var(--ease-out);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(192,154,232,0.1);
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    animation: testimonialShimmer 6s ease-in-out infinite;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(192,154,232,0.1), transparent);
    animation: shimmer 3s infinite;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.testimonial-card:hover {
    transform: translateY(-6px) scale(1.02);
    border-color: rgba(192,154,232,0.3);
    box-shadow: 0 16px 48px rgba(166,125,216,0.12);
    background: linear-gradient(135deg, rgba(192,154,232,0.12), rgba(96, 176, 255,0.08));
}

.testimonial-card:hover::before {
    opacity: 1;
}

@keyframes testimonialShimmer {
    0%, 100% { box-shadow: 0 4px 12px rgba(166,125,216,0.05); }
    50% { box-shadow: 0 8px 20px rgba(166,125,216,0.1); }
}
.testimonial-quote { font-family: var(--font-display); font-size: 64px; line-height: 1; color: var(--accent-primary); opacity: 0.3; margin-bottom: -20px; }
.testimonial-text { font-size: 15px; line-height: 1.8; color: var(--text-secondary); margin-bottom: 24px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar { font-size: 28px; }
.author-info { display: flex; flex-direction: column; }
.author-name { font-family: var(--font-display); font-weight: 600; font-size: 14px; color: var(--text-primary); }
.author-role { font-size: 12px; color: var(--text-muted); }

/* ============================================
   PROMISE (ACT VI) + MARQUEE
   ============================================ */
.promise-section { position: relative; z-index: 1; padding: var(--section-padding) 0; }
@keyframes marqueeSlideDown {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.promise-marquee { 
    overflow: hidden; 
    margin-bottom: 64px; 
    padding: 20px 0; 
    border-top: 1px solid rgba(192,154,232,0.12); 
    border-bottom: 1px solid rgba(192,154,232,0.12);
    animation: marqueeSlideDown 0.8s var(--ease-out);
}

.promise-marquee.scroll-animate-in {
    opacity: 0;
    transform: translateY(-20px);
}

.promise-marquee.scroll-animate-in.active {
    animation: marqueeSlideDown 0.8s var(--ease-out) forwards;
}

.marquee-track { 
    display: flex; 
    align-items: center; 
    gap: 24px; 
    animation: marqueeScroll 30s linear infinite; 
    width: max-content; 
}
@keyframes marqueeScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.marquee-item { font-family: var(--font-display); font-size: clamp(18px, 3vw, 28px); font-weight: 700; color: var(--text-primary); white-space: nowrap; }
.marquee-separator { color: var(--accent-secondary); font-size: 14px; }
.promise-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; perspective: 1200px; transform-style: preserve-3d; }
.promise-card {
    padding: 32px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, rgba(192,154,232,0.08), rgba(96, 176, 255,0.05));
    border: 1px solid rgba(192,154,232,0.12);
    transition: all 0.4s var(--ease-out);
    animation: promiseRise 6s ease-in-out infinite;
}

.promise-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(192,154,232,0.15), transparent 70%);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.promise-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 20px 60px rgba(166,125,216,0.15), inset 0 0 20px rgba(192,154,232,0.08);
    background: linear-gradient(135deg, rgba(192,154,232,0.12), rgba(96, 176, 255,0.08));
}

.promise-card:hover::before {
    opacity: 1;
}

@keyframes promiseRise {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-4px); }
}
.promise-icon { font-size: 40px; margin-bottom: 16px; display: inline-block; }
.promise-title { font-family: var(--font-display); font-size: 20px; font-weight: 700; margin-bottom: 12px; color: var(--text-primary); }
.promise-desc { font-size: 14px; color: var(--text-secondary); line-height: 1.7; }

/* ============================================
   FINAL CTA — MERGE
   ============================================ */
.merge-section { position: relative; z-index: 1; padding: clamp(100px, 15vh, 200px) 0; text-align: center; overflow: hidden; }
.merge-ambient { position: absolute; inset: 0; pointer-events: none; }
.blob-cta-1 { width: 500px; height: 500px; background: radial-gradient(circle, rgba(192,154,232,0.25), transparent 70%); position: absolute; top: -20%; left: 30%; filter: blur(100px); animation: blobFloat1 15s ease-in-out infinite, breatheGlow 8s ease-in-out infinite; }
.blob-cta-2 { width: 400px; height: 400px; background: radial-gradient(circle, rgba(96, 176, 255,0.2), transparent 70%); position: absolute; bottom: -20%; right: 20%; filter: blur(100px); animation: blobFloat2 18s ease-in-out infinite, breatheGlow 9s ease-in-out infinite 3s; }
.merge-container { position: relative; z-index: 1; }
.merge-brand { font-family: var(--font-display); font-size: 16px; font-weight: 600; color: var(--accent-primary); letter-spacing: 2px; margin-bottom: 24px; }
.merge-title { font-family: var(--font-display); font-size: clamp(36px, 6vw, 72px); font-weight: 800; line-height: 1.1; margin-bottom: 20px; color: var(--text-primary); }
.merge-subtitle { font-size: clamp(16px, 2vw, 20px); color: var(--text-secondary); margin-bottom: 40px; }
.merge-buttons { display: flex; align-items: center; justify-content: center; gap: 24px; flex-wrap: wrap; }
.merge-secondary-link { font-size: 15px; color: var(--text-secondary); border-bottom: 1px solid rgba(192,154,232,0.3); padding-bottom: 2px; transition: all 0.3s; }
.merge-secondary-link:hover { color: var(--accent-primary); border-color: var(--accent-primary); }

/* ============================================
   FOOTER
   ============================================ */
/* ============================================
   FOOTER — Premium Glass Redesign
   ============================================ */
.site-footer {
    position: relative;
    z-index: 10;
    padding: 100px 0 40px;
    background: linear-gradient(to bottom, transparent, rgba(192, 154, 232, 0.03));
    border-top: 1px solid rgba(192, 154, 232, 0.1);
    overflow: hidden;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 80px;
    gap: 48px;
}

.footer-brand {
    max-width: 480px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.footer-logo-dot {
    width: 12px;
    height: 12px;
    background: var(--accent-primary);
    border-radius: 50%;
    box-shadow: 0 0 15px var(--accent-primary);
}

.footer-logo-text {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 800;
    letter-spacing: 1px;
    background: var(--gradient-hero);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-tagline {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.footer-desc {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.8;
}

.footer-cta-block {
    text-align: right;
}

.footer-cta-btn {
    padding: 16px 32px;
    background: var(--glass-bg);
    border: 1px solid rgba(192, 154, 232, 0.2);
    border-radius: var(--radius-full);
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    margin-left: auto;
    transition: all 0.4s var(--ease-out);
}

.footer-cta-btn:hover {
    background: rgba(192, 154, 232, 0.1);
    border-color: var(--accent-primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(166, 125, 216, 0.15);
}

.footer-cta-arrow {
    font-size: 20px;
    color: var(--accent-primary);
}

.footer-cta-sub {
    font-size: 13px;
    color: var(--text-muted);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 80px;
    padding-top: 60px;
    border-top: 1px solid rgba(192, 154, 232, 0.05);
}

.footer-links-title {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-primary);
    margin-bottom: 24px;
}

.footer-links-col a {
    display: block;
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 12px;
    transition: all 0.3s;
    text-decoration: none;
}

.footer-links-col a:hover {
    color: var(--accent-primary);
    padding-left: 8px;
}

.footer-social {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.social-link {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(192, 154, 232, 0.05);
    border: 1px solid rgba(192, 154, 232, 0.1);
    border-radius: 12px;
    color: var(--text-secondary);
    font-size: 18px;
    transition: all 0.3s var(--ease-out);
}

.social-link:hover {
    background: var(--accent-primary);
    color: white;
    transform: translateY(-5px) rotate(8deg);
    box-shadow: 0 8px 20px rgba(192, 154, 232, 0.3);
}

.footer-email {
    font-size: 15px;
    color: var(--text-primary);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid rgba(192, 154, 232, 0.2);
    padding-bottom: 2px;
    transition: all 0.3s;
}

.footer-email:hover {
    color: var(--accent-primary);
    border-color: var(--accent-primary);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid rgba(192, 154, 232, 0.05);
}

.footer-bottom-left p {
    font-size: 14px;
    color: var(--text-muted);
}

.footer-bottom-center {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-muted);
}

.footer-status-dot {
    width: 6px;
    height: 6px;
    background: #4ade80;
    border-radius: 50%;
    animation: pulseGlow 2s infinite;
}

.footer-bottom-right p {
    font-size: 14px;
    color: var(--text-muted);
}

.footer-founder {
    font-weight: 700;
    color: var(--accent-primary);
}

/* ==================== WAITLIST MODAL — Deep Luxury Glass ==================== */
.waitlist-modal { 
    position: fixed; 
    inset: 0; 
    z-index: 10000; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    opacity: 0; 
    pointer-events: none; 
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1); 
}

.waitlist-modal.active { opacity: 1; pointer-events: all; }

.modal-backdrop { 
    position: absolute; 
    inset: 0; 
    background: rgba(10, 5, 15, 0.85); /* Deep Dark Backdrop */
    backdrop-filter: blur(20px); 
}

.modal-content { 
    position: relative; 
    background: linear-gradient(135deg, rgba(30, 20, 40, 0.9), rgba(15, 10, 25, 0.95)); 
    border: 1px solid rgba(255, 255, 255, 0.1); 
    border-radius: 28px; 
    padding: 48px; 
    max-width: 440px; 
    width: 90%; 
    text-align: center; 
    transform: scale(0.9) translateY(30px); 
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1); 
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(255, 255, 255, 0.05); 
    color: #fff;
    overflow: hidden;
}

.waitlist-modal.active .modal-content { transform: scale(1) translateY(0); }

.modal-close { 
    position: absolute; 
    top: 24px; 
    right: 24px; 
    width: 40px; 
    height: 40px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    border-radius: 50%; 
    background: rgba(255, 255, 255, 0.05); 
    color: rgba(255, 255, 255, 0.6); 
    font-size: 18px; 
    transition: all 0.3s; 
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-close:hover { 
    background: rgba(255, 255, 255, 0.15); 
    color: #fff; 
    transform: rotate(90deg);
}

.modal-icon { 
    font-size: 48px; 
    margin-bottom: 20px; 
    filter: drop-shadow(0 0 20px rgba(192, 154, 232, 0.5));
}

.modal-title { 
    font-family: var(--font-display); 
    font-size: 32px; 
    font-weight: 800; 
    margin-bottom: 12px; 
    color: #fff; 
    letter-spacing: -1px;
}

.modal-subtitle { 
    font-size: 16px; 
    color: rgba(255, 255, 255, 0.6); 
    margin-bottom: 32px; 
    line-height: 1.5;
}

.waitlist-form { display: flex; flex-direction: column; gap: 16px; margin-bottom: 20px; }

.input-wrapper { position: relative; }

.input-wrapper input { 
    width: 100%; 
    padding: 16px 20px; 
    background: rgba(255, 255, 255, 0.05); 
    border: 1px solid rgba(255, 255, 255, 0.1); 
    border-radius: 14px; 
    color: #fff; 
    font-size: 16px; 
    font-family: var(--font-body); 
    outline: none; 
    transition: all 0.3s; 
}

.input-wrapper input:focus { 
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-primary); 
    box-shadow: 0 0 25px rgba(192, 154, 232, 0.2); 
}

.input-wrapper input::placeholder { color: rgba(255, 255, 255, 0.3); }

.submit-button { 
    width: 100%; 
    padding: 16px; 
    background: var(--gradient-btn); 
    background-size: 200% 200%; 
    animation: breatheBtn 4s ease-in-out infinite; 
    border-radius: 14px; 
    font-family: var(--font-display); 
    font-weight: 700; 
    font-size: 17px; 
    color: #fff; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    gap: 10px; 
    transition: all 0.3s var(--ease-spring); 
    box-shadow: 0 10px 30px rgba(192, 154, 232, 0.3); 
    border: none;
    cursor: pointer;
}

.submit-button:hover { 
    transform: translateY(-3px) scale(1.02); 
    box-shadow: 0 20px 40px rgba(192, 154, 232, 0.4); 
}

.success-message { 
    display: none; 
    padding: 16px; 
    background: rgba(108, 217, 161, 0.15); 
    border: 1px solid rgba(108, 217, 161, 0.3); 
    border-radius: 12px; 
    color: #a0f0ca; 
    font-size: 15px; 
    margin-bottom: 20px; 
}

.modal-privacy { font-size: 12px; color: rgba(255, 255, 255, 0.4); margin-top: 10px; }

/* --- ALL HERO SATELLITE STYLES CONSOLIDATED ABOVE --- */

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .header-nav { display: none; }
    .mobile-menu-toggle { display: flex; }
    .hero-container { display: flex; text-align: center; }
    .hero-text { max-width: 100%; margin: 0 auto; }
    .hero-cta { justify-content: center; }
    .chat-act-layout { grid-template-columns: 1fr; text-align: center; gap: 48px; }
    .chat-act-content { max-width: 100%; margin: 0 auto; }
    .chat-act-content .section-title { text-align: center; }
    .chat-act-phone-wrapper { justify-content: center; }
    .bento-grid { grid-template-columns: repeat(2, 1fr); }
    .card-large { grid-column: span 2; grid-row: span 1; }
    .abilities-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: 1fr; max-width: 600px; margin: 0 auto; }
    .promise-cards { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
}

@media (max-width: 640px) {
    .header-inner { height: 56px; }
    .header-actions { display: none; }
    .hero-title { font-size: clamp(36px, 10vw, 56px); }
    .phone-mockup { width: 240px; height: 480px; transform: none; }
    .phone-mockup:hover { transform: none; }
    .phone-mockup.large { width: 260px; height: 520px; }
    .bento-grid { grid-template-columns: 1fr; }
    .card-large { grid-column: span 1; }
    .feature-pills-grid { grid-template-columns: 1fr; }
    .abilities-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .merge-title { font-size: clamp(28px, 8vw, 48px); }
    .section-container { padding: 0 16px; }
    .chat-act-layout { gap: 32px; }
}

/* ==============================================
   UNIVERSAL RESPONSIVE OVERRIDES (Anti-Overflow)
   ============================================== */
html, body {
    overflow-x: hidden !important;
    max-width: 100vw !important;
    width: 100%;
}
* {
    box-sizing: border-box !important;
}

@media (max-width: 1024px) {
    .section-container, .inner-container, .hero-inner {
        width: 100% !important;
        max-width: 100vw !important;
        padding-left: 20px !important;
        padding-right: 20px !important;
        overflow-x: hidden !important;
    }
    .problem-grid, .matrix-grid, .ability-grid, .metrics-grid, .promise-grid {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
    }
    .section-title, .hero-title {
        font-size: clamp(32px, 8vw, 56px) !important;
        line-height: 1.1 !important;
        word-wrap: break-word !important;
    }
    .section-subtitle, .hero-subtitle {
        font-size: clamp(15px, 4vw, 18px) !important;
    }
    .glass-card, .chat-interface, .diff-main-card {
        width: 100% !important;
        max-width: 100vw !important;
        box-sizing: border-box !important;
    }
    .section-ambient, .bg-aurora {
        display: none !important; /* Extremely high width svgs that break layouts */
    }
}

@media (max-width: 768px) {
    .glass-card, .chat-interface {
        padding: 24px !important;
    }
    .top-header {
        padding: 12px 20px !important;
    }
}
