/* MengSpark Premium Landing Page */
/* Dark, Mysterious, Premium - Fintech meets Gaming */

:root {
    --bg-primary: #0D0D1A;
    --bg-secondary: #080810;
    --bg-card: rgba(138, 43, 226, 0.08);
    --purple-primary: #8A2BE2;
    --purple-secondary: #9370DB;
    --purple-dark: #5B21B6;
    --gold-accent: #FCD34D;
    --gold-dark: #E5B835;
    --success: #10B981;
    --warning: #F59E0B;
    --danger: #EF4444;
    --white: #FFFFFF;
    --gray-100: #E5E7EB;
    --gray-200: #D1D5DB;
    --gray-300: #9CA3AF;
    --gray-400: #6B7280;
    --gray-500: #4B5563;
    --glow-purple: rgba(138, 43, 226, 0.4);
    --glow-gold: rgba(252, 211, 77, 0.4);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-primary);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Sora', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
}

/* ═══════════════════════════════════════
   NOISE & TEXTURE OVERLAYS
   ═══════════════════════════════════════ */

.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1000;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

.grid-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    background-image: 
        linear-gradient(rgba(138, 43, 226, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(138, 43, 226, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
}

/* ═══════════════════════════════════════
   FLOATING PARTICLES
   ═══════════════════════════════════════ */

.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--purple-primary);
    border-radius: 50%;
    opacity: 0;
    box-shadow: 0 0 10px var(--purple-primary), 0 0 20px var(--purple-primary);
    animation: float-particle 15s infinite ease-in-out;
}

.particle.gold {
    background: var(--gold-accent);
    box-shadow: 0 0 10px var(--gold-accent), 0 0 20px var(--gold-accent);
}

@keyframes float-particle {
    0%, 100% {
        opacity: 0;
        transform: translateY(100vh) scale(0);
    }
    10% {
        opacity: 0.8;
        transform: translateY(80vh) scale(1);
    }
    90% {
        opacity: 0.8;
        transform: translateY(10vh) scale(1);
    }
    100% {
        opacity: 0;
        transform: translateY(0) scale(0);
    }
}

/* ═══════════════════════════════════════
   CONTAINER & LAYOUT
   ═══════════════════════════════════════ */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 10;
}

/* ═══════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════ */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 20px 0;
    background: rgba(13, 13, 26, 0.7);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(138, 43, 226, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 8px rgba(138, 43, 226, 0.5));
}

.logo-img.nav-logo {
    height: 45px;
    width: auto;
}

.logo-img.footer-logo-img {
    height: 36px;
    width: auto;
}

.logo-img.small {
    height: 32px;
}

.logo-fallback {
    font-family: 'Sora', sans-serif;
    font-weight: 800;
    background: linear-gradient(135deg, var(--purple-secondary) 0%, var(--purple-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-flame {
    width: 40px;
    height: 53px;
    filter: drop-shadow(0 0 8px rgba(138, 43, 226, 0.5));
}

.logo-flame.small {
    width: 30px;
    height: 40px;
}

.logo-icon {
    width: 44px;
    height: 44px;
}

.logo-icon.small {
    width: 32px;
    height: 32px;
}

.logo-icon svg {
    width: 100%;
    height: 100%;
}

.logo-text {
    font-family: 'Sora', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--purple-secondary) 0%, var(--purple-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-text.small {
    font-size: 1.2rem;
}

.nav-cta {
    position: relative;
    padding: 12px 24px;
    background: transparent;
    border: 1px solid rgba(138, 43, 226, 0.5);
    color: var(--white);
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    overflow: hidden;
}

.nav-cta:hover {
    border-color: var(--purple-primary);
    box-shadow: 0 0 30px var(--glow-purple);
}

.nav-cta .btn-glow {
    position: absolute;
    inset: 0;
    background: var(--purple-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

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

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

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

/* Background Orbs */
.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    animation: orb-float 20s infinite ease-in-out;
}

.orb-purple {
    width: 600px;
    height: 600px;
    background: var(--purple-primary);
    opacity: 0.15;
    top: -200px;
    left: -200px;
}

.orb-gold {
    width: 400px;
    height: 400px;
    background: var(--gold-accent);
    opacity: 0.08;
    bottom: -100px;
    right: -100px;
    animation-delay: -10s;
}

.orb-secondary {
    width: 300px;
    height: 300px;
    background: var(--purple-secondary);
    opacity: 0.1;
    top: 50%;
    right: 20%;
    animation-delay: -5s;
}

@keyframes orb-float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.05);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.95);
    }
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 10;
}

.hero-content {
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(138, 43, 226, 0.15);
    border: 1px solid rgba(138, 43, 226, 0.3);
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--purple-secondary);
    margin-bottom: 24px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--purple-primary);
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

.hero-headline {
    font-size: clamp(2.5rem, 5vw, 3.75rem);
    line-height: 1.15;
    margin-bottom: 24px;
    font-weight: 800;
}

.gradient-text {
    background: linear-gradient(135deg, var(--purple-secondary) 0%, var(--purple-primary) 50%, var(--purple-secondary) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text.animated {
    animation: gradient-shift 4s ease infinite;
}

.gradient-text-gold {
    background: linear-gradient(135deg, var(--gold-accent) 0%, var(--gold-dark) 50%, var(--gold-accent) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 4s ease infinite;
}

@keyframes gradient-shift {
    0% {
        background-position: 0% center;
    }
    50% {
        background-position: 100% center;
    }
    100% {
        background-position: 0% center;
    }
}

.hero-subheadline {
    font-size: 1.2rem;
    color: var(--gray-300);
    margin-bottom: 40px;
    line-height: 1.7;
}

/* CTA Form */
.cta-form {
    display: flex;
    gap: 12px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.cta-form.centered {
    justify-content: center;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.input-wrapper {
    position: relative;
    flex: 1;
    min-width: 250px;
}

.input-wrapper.large {
    min-width: 300px;
}

.email-input {
    width: 100%;
    padding: 18px 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(138, 43, 226, 0.3);
    border-radius: 12px;
    color: var(--white);
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.email-input::placeholder {
    color: var(--gray-400);
}

.email-input:focus {
    outline: none;
    border-color: var(--purple-primary);
    background: rgba(255, 255, 255, 0.05);
}

.input-glow {
    position: absolute;
    inset: -2px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--purple-primary), var(--purple-secondary));
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
    filter: blur(8px);
}

.email-input:focus ~ .input-glow {
    opacity: 0.3;
}

.cta-button {
    position: relative;
    padding: 18px 32px;
    background: linear-gradient(135deg, var(--purple-primary) 0%, var(--purple-dark) 100%);
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Sora', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    overflow: hidden;
    white-space: nowrap;
}

.cta-button.gold {
    background: linear-gradient(135deg, var(--gold-accent) 0%, var(--gold-dark) 100%);
    color: var(--bg-primary);
}

.cta-button.large {
    padding: 20px 40px;
    font-size: 1.1rem;
}

.cta-button:hover {
    transform: translateY(-3px);
}

.cta-button .btn-glow {
    position: absolute;
    inset: 0;
    border-radius: 12px;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: -1;
}

.cta-button .btn-glow.gold {
    box-shadow: 0 0 40px var(--glow-gold), 0 0 80px var(--glow-gold);
}

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

.cta-button i {
    transition: transform 0.3s ease;
}

.cta-button:hover i {
    transform: translateX(4px);
}

/* Pulse animation for gold button */
.cta-button.gold::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--gold-accent), var(--gold-dark));
    animation: pulse-glow 2s infinite;
    z-index: -2;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 20px var(--glow-gold);
    }
    50% {
        box-shadow: 0 0 40px var(--glow-gold), 0 0 60px rgba(252, 211, 77, 0.2);
    }
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: 'Sora', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--white) 0%, var(--gray-300) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--gray-400);
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, transparent, var(--purple-primary), transparent);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 580px;
}

/* Phone wrapper - contains phone and orbiting cards */
.hero-phone-wrapper {
    position: relative;
    width: 100%;
    max-width: 600px;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Phone Mockup */
.phone-mockup {
    position: relative;
    z-index: 10;
}

/* Phone glow effect */
.phone-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 350px;
    height: 600px;
    background: radial-gradient(ellipse at center,
        rgba(138, 43, 226, 0.3) 0%,
        rgba(138, 43, 226, 0.15) 40%,
        transparent 70%
    );
    filter: blur(40px);
    animation: phone-glow-pulse 4s ease-in-out infinite;
    border-radius: 50%;
}

@keyframes phone-glow-pulse {
    0%, 100% { opacity: 0.7; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.05); }
}

/* Phone frame */
.phone-frame {
    position: relative;
    width: 280px;
    height: 560px;
    background: linear-gradient(145deg, #1a1a2e 0%, #0d0d1a 100%);
    border-radius: 45px;
    padding: 12px;
    box-shadow: 
        0 50px 100px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(138, 43, 226, 0.3),
        inset 0 0 20px rgba(138, 43, 226, 0.1);
    animation: phone-float 6s ease-in-out infinite;
}

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

/* Phone notch */
.phone-notch {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 28px;
    background: #0d0d1a;
    border-radius: 0 0 20px 20px;
    z-index: 20;
}

.phone-notch::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    background: #2a2a4a;
    border-radius: 50%;
}

/* App screen */
.app-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #0d0d1a 0%, #12122a 100%);
    border-radius: 35px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    padding: 40px 16px 20px;
}

/* Stats bar at top */
.app-stats-bar {
    display: flex;
    justify-content: space-between;
    padding: 12px 8px;
    background: rgba(138, 43, 226, 0.1);
    border-radius: 12px;
    margin-bottom: 12px;
}

.app-stat {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    color: var(--white);
}

.app-stat i {
    font-size: 0.7rem;
}

.app-stat i.fa-coins { color: #FCD34D; }
.app-stat i.fa-star { color: #9370DB; }
.app-stat i.fa-heart { color: #EC4899; }

.app-stat .stat-value {
    font-weight: 600;
    font-size: 0.8rem;
}

/* Week indicator */
.app-week {
    text-align: center;
    font-size: 0.7rem;
    color: var(--gray-400);
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

/* Scenario card */
.app-scenario-card {
    flex: 1;
    background: rgba(138, 43, 226, 0.08);
    border: 1px solid rgba(138, 43, 226, 0.2);
    border-radius: 20px;
    padding: 20px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 16px;
}

.scenario-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.3) 0%, rgba(91, 33, 182, 0.3) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    font-size: 1.4rem;
    color: #9370DB;
}

.scenario-title {
    font-family: 'Sora', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.scenario-text {
    font-size: 0.8rem;
    color: var(--gray-300);
    line-height: 1.5;
    margin-bottom: 14px;
}

.scenario-impact {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}

.impact-tag {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.65rem;
    font-weight: 500;
}

.impact-tag.cash {
    background: rgba(252, 211, 77, 0.15);
    color: #FCD34D;
}

.impact-tag.morale {
    background: rgba(236, 72, 153, 0.15);
    color: #EC4899;
}

/* Choice buttons */
.app-choices {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.choice-btn {
    width: 100%;
    padding: 14px 16px;
    border-radius: 14px;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: all 0.2s ease;
}

.choice-btn.accept {
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.3) 0%, rgba(91, 33, 182, 0.4) 100%);
    border: 1px solid rgba(138, 43, 226, 0.4);
}

.choice-btn.accept:hover {
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.4) 0%, rgba(91, 33, 182, 0.5) 100%);
    border-color: rgba(138, 43, 226, 0.6);
    transform: translateX(4px);
}

.choice-btn.decline {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.choice-btn.decline:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateX(4px);
}

.choice-label {
    display: block;
    font-family: 'Sora', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 2px;
}

.choice-hint {
    display: block;
    font-size: 0.7rem;
    color: var(--gray-400);
}

/* Legacy classes for compatibility */
.hero-flame-wrapper {
    position: relative;
    width: 100%;
    max-width: 550px;
    height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-logo-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.hero-logo-img {
    height: 400px;
    width: auto;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 0 60px rgba(138, 43, 226, 0.5));
}

.hero-flame-container {
    position: relative;
    width: 260px;
    height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.flame-outer-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 400px;
    background: radial-gradient(ellipse at center, 
        rgba(138, 43, 226, 0.3) 0%, 
        rgba(138, 43, 226, 0.15) 30%,
        rgba(138, 43, 226, 0.05) 50%,
        transparent 70%
    );
    filter: blur(20px);
    animation: phone-glow-pulse 4s ease-in-out infinite;
    z-index: 1;
}

.hero-flame-svg {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 0 40px rgba(138, 43, 226, 0.4));
}

/* Floating cards - orbiting around flame */
.floating-card {
    position: absolute;
    background: rgba(13, 13, 26, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(138, 43, 226, 0.3);
    border-radius: 16px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 0 20px rgba(138, 43, 226, 0.1);
    z-index: 20;
    transition: all 0.3s ease;
}

.floating-card:hover {
    border-color: rgba(138, 43, 226, 0.5);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(138, 43, 226, 0.2);
    transform: translateY(-5px) !important;
}

/* Card positions - orbiting the phone */
.floating-card.card-1 {
    top: 40px;
    right: -40px;
    animation: orbit-card-1 8s ease-in-out infinite;
}

.floating-card.card-2 {
    top: 50%;
    left: -70px;
    transform: translateY(-50%);
    animation: orbit-card-2 8s ease-in-out infinite;
    animation-delay: -2.5s;
}

.floating-card.card-3 {
    bottom: 60px;
    right: -20px;
    animation: orbit-card-3 8s ease-in-out infinite;
    animation-delay: -5s;
}

@keyframes orbit-card-1 {
    0%, 100% { transform: translate(0, 0); }
    25% { transform: translate(-10px, 8px); }
    50% { transform: translate(5px, 15px); }
    75% { transform: translate(12px, 5px); }
}

@keyframes orbit-card-2 {
    0%, 100% { transform: translateY(-50%) translate(0, 0); }
    25% { transform: translateY(-50%) translate(8px, -10px); }
    50% { transform: translateY(-50%) translate(15px, 5px); }
    75% { transform: translateY(-50%) translate(5px, 12px); }
}

@keyframes orbit-card-3 {
    0%, 100% { transform: translate(0, 0); }
    25% { transform: translate(-12px, -8px); }
    50% { transform: translate(-5px, -15px); }
    75% { transform: translate(8px, -5px); }
}

.card-icon {
    width: 42px;
    height: 42px;
    background: rgba(138, 43, 226, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--purple-secondary);
    font-size: 1rem;
}

.card-icon.warning {
    background: rgba(245, 158, 11, 0.2);
    color: var(--warning);
}

.card-content {
    display: flex;
    flex-direction: column;
}

.card-label {
    font-size: 0.75rem;
    color: var(--gray-400);
    margin-bottom: 2px;
}

.card-value {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--white);
}

.card-value.success {
    color: var(--success);
}

.card-value.warning {
    color: var(--warning);
}

/* Legacy classes for compatibility */
.hero-card-stack {
    position: relative;
    width: 100%;
    max-width: 400px;
    height: 450px;
}

.main-visual {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.flame-container {
    width: 220px;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ═══════════════════════════════════════
   PROBLEM SECTION
   ═══════════════════════════════════════ */

.problem {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.section-bg.darker {
    position: absolute;
    inset: 0;
    background: var(--bg-secondary);
    z-index: -2;
}

.diagonal-lines {
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 100px,
        rgba(138, 43, 226, 0.02) 100px,
        rgba(138, 43, 226, 0.02) 101px
    );
    z-index: -1;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-label {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(138, 43, 226, 0.1);
    border: 1px solid rgba(138, 43, 226, 0.2);
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--purple-secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.section-headline {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
}

.problem-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.problem-intro {
    font-size: 1.25rem;
    color: var(--gray-300);
    margin-bottom: 48px;
}

.quote-block {
    position: relative;
    padding: 48px 0;
    margin-bottom: 48px;
}

.quote-mark {
    position: absolute;
    font-family: Georgia, serif;
    font-size: 8rem;
    color: var(--purple-primary);
    opacity: 0.15;
    line-height: 1;
}

.quote-mark.left {
    top: 0;
    left: -20px;
}

.quote-mark.right {
    bottom: -40px;
    right: -20px;
}

.main-quote {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    line-height: 1.5;
    font-style: normal;
}

.quote-emphasis {
    color: var(--white);
    display: block;
    margin-top: 16px;
}

.problem-conclusion {
    font-size: 1.25rem;
    color: var(--gray-300);
}

.danger-text {
    color: var(--danger);
    font-weight: 600;
}

/* ═══════════════════════════════════════
   SOLUTION SECTION
   ═══════════════════════════════════════ */

.solution {
    padding: 120px 0;
    position: relative;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    perspective: 1000px;
}

.feature-card {
    position: relative;
    border-radius: 24px;
    padding: 3px;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.3) 0%, transparent 50%, rgba(138, 43, 226, 0.1) 100%);
    transition: all 0.4s ease;
    transform-style: preserve-3d;
}

.feature-card.featured {
    transform: scale(1.05);
    z-index: 10;
}

.feature-card:hover {
    transform: translateY(-10px) rotateX(5deg) rotateY(5deg);
}

.feature-card.featured:hover {
    transform: scale(1.05) translateY(-10px) rotateX(5deg) rotateY(5deg);
}

.card-glow {
    position: absolute;
    inset: 0;
    border-radius: 24px;
    background: var(--purple-primary);
    filter: blur(40px);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.feature-card:hover .card-glow {
    opacity: 0.15;
}

.card-border {
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.5), transparent, rgba(147, 112, 219, 0.3));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.5;
    transition: opacity 0.4s ease;
}

.feature-card:hover .card-border {
    opacity: 1;
}

.card-inner {
    background: rgba(13, 13, 26, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 22px;
    padding: 40px 32px;
    height: 100%;
}

.feature-icon {
    position: relative;
    width: 64px;
    height: 64px;
    margin-bottom: 24px;
}

.feature-icon svg {
    width: 100%;
    height: 100%;
}

.icon-glow {
    position: absolute;
    inset: -10px;
    background: var(--purple-primary);
    border-radius: 50%;
    filter: blur(20px);
    opacity: 0.3;
}

.feature-title {
    font-size: 1.35rem;
    margin-bottom: 12px;
    font-weight: 700;
}

.feature-text {
    font-size: 1rem;
    color: var(--gray-300);
    line-height: 1.7;
}

.feature-text strong {
    color: var(--gold-accent);
}

.feature-badge {
    position: absolute;
    top: -12px;
    right: 24px;
    padding: 6px 16px;
    background: linear-gradient(135deg, var(--gold-accent), var(--gold-dark));
    color: var(--bg-primary);
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ═══════════════════════════════════════
   HOW IT WORKS SECTION
   ═══════════════════════════════════════ */

.how-it-works {
    padding: 120px 0;
    position: relative;
    background: var(--bg-secondary);
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline-line {
    position: absolute;
    left: 40px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(138, 43, 226, 0.2);
}

.timeline-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: linear-gradient(180deg, var(--purple-primary), var(--gold-accent));
    border-radius: 2px;
    transition: height 0.3s ease;
}

.timeline-steps {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.timeline-step {
    display: flex;
    gap: 32px;
    align-items: flex-start;
}

.step-marker {
    position: relative;
    flex-shrink: 0;
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    font-family: 'Sora', sans-serif;
    font-size: 1.75rem;
    font-weight: 800;
    color: transparent;
    background: linear-gradient(135deg, var(--purple-secondary), var(--purple-primary));
    -webkit-background-clip: text;
    background-clip: text;
    border: 2px solid rgba(138, 43, 226, 0.3);
    border-radius: 50%;
    position: relative;
    z-index: 10;
    background-color: var(--bg-secondary);
}

.marker-glow {
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    background: var(--purple-primary);
    filter: blur(20px);
    opacity: 0.2;
}

.step-content {
    padding-top: 16px;
}

.step-title {
    font-size: 1.35rem;
    margin-bottom: 8px;
    font-weight: 700;
}

.step-text {
    font-size: 1rem;
    color: var(--gray-300);
    line-height: 1.6;
}

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

.final-cta {
    padding: 160px 0;
    position: relative;
    overflow: hidden;
}

.cta-orb {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: var(--purple-primary);
    filter: blur(150px);
    opacity: 0.15;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: orb-pulse 4s infinite ease-in-out;
}

.cta-orb.secondary {
    width: 400px;
    height: 400px;
    background: var(--gold-accent);
    opacity: 0.08;
    animation-delay: -2s;
}

@keyframes orb-pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.15;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.2;
    }
}

.cta-card {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.cta-card-glow {
    position: absolute;
    inset: -40px;
    background: var(--purple-primary);
    border-radius: 40px;
    filter: blur(60px);
    opacity: 0.15;
}

.cta-card-inner {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(138, 43, 226, 0.2);
    border-radius: 32px;
    padding: 64px 48px;
}

.final-headline {
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: 16px;
    font-weight: 800;
}

.final-subheadline {
    font-size: 1.2rem;
    color: var(--gray-300);
    margin-bottom: 40px;
}

/* ═══════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════ */

.footer {
    padding: 60px 0;
    border-top: 1px solid rgba(138, 43, 226, 0.1);
}

.footer-content {
    text-align: center;
}

.footer-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 16px;
}

.footer-tagline {
    font-size: 1rem;
    color: var(--gray-400);
    margin-bottom: 8px;
}

.footer-copyright {
    font-size: 0.85rem;
    color: var(--gray-500);
}

/* ═══════════════════════════════════════
   MODAL
   ═══════════════════════════════════════ */

.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 24px;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.modal {
    position: relative;
    background: rgba(13, 13, 26, 0.95);
    backdrop-filter: blur(40px);
    border: 1px solid rgba(138, 43, 226, 0.3);
    border-radius: 32px;
    max-width: 480px;
    width: 100%;
    padding: 48px;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.4s ease;
    overflow: hidden;
}

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

.modal-glow {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 300px;
    background: var(--purple-primary);
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.2;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--gray-400);
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-color: rgba(138, 43, 226, 0.5);
}

.modal-success {
    text-align: center;
    margin-bottom: 32px;
}

.success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
}

.success-icon svg {
    width: 100%;
    height: 100%;
}

.check-path {
    stroke-dasharray: 60;
    stroke-dashoffset: 60;
    animation: draw-check 0.6s ease forwards 0.3s;
}

@keyframes draw-check {
    to {
        stroke-dashoffset: 0;
    }
}

.modal-title {
    font-size: 1.75rem;
    margin-bottom: 8px;
    font-weight: 700;
}

.modal-text {
    color: var(--gray-300);
    font-size: 1rem;
}

.modal-divider {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.modal-divider::before,
.modal-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(138, 43, 226, 0.3), transparent);
}

.modal-divider span {
    font-size: 0.9rem;
    color: var(--gray-400);
    white-space: nowrap;
}

.modal-upsell {
    text-align: center;
}

.upsell-text {
    font-size: 1rem;
    color: var(--gray-300);
    margin-bottom: 24px;
    line-height: 1.6;
}

.pro-button {
    position: relative;
    width: 100%;
    padding: 20px 32px;
    background: linear-gradient(135deg, var(--gold-accent) 0%, var(--gold-dark) 100%);
    color: var(--bg-primary);
    border: none;
    border-radius: 14px;
    font-size: 1.1rem;
    font-weight: 700;
    font-family: 'Sora', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    overflow: hidden;
}

.pro-button::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 14px;
    animation: pulse-glow 2s infinite;
    z-index: -1;
}

.pro-button:hover {
    transform: translateY(-3px);
}

.pro-button:hover .btn-glow {
    opacity: 1;
}

.price-tag {
    margin-top: 16px;
    font-size: 0.95rem;
    color: var(--gray-400);
}

.price-tag .price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gold-accent);
}

.maybe-later {
    margin-top: 20px;
    background: none;
    border: none;
    color: var(--gray-500);
    font-size: 0.9rem;
    cursor: pointer;
    transition: color 0.3s ease;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.maybe-later:hover {
    color: var(--gray-300);
}

/* ═══════════════════════════════════════
   INTERACTIVE DEMO SECTION
   ═══════════════════════════════════════ */

.demo-section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 50%, var(--bg-primary) 100%);
}

.demo-orb {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: var(--purple-primary);
    filter: blur(120px);
    opacity: 0.12;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: demo-orb-pulse 6s infinite ease-in-out;
}

.demo-orb.secondary {
    width: 300px;
    height: 300px;
    background: var(--gold-accent);
    opacity: 0.06;
    animation-delay: -3s;
}

@keyframes demo-orb-pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.15);
    }
}

.section-subhead {
    font-size: 1.15rem;
    color: var(--gray-300);
    margin-top: 16px;
}

.demo-container {
    position: relative;
    max-width: 600px;
    margin: 60px auto 0;
}

.demo-glow {
    position: absolute;
    inset: -30px;
    background: var(--purple-primary);
    border-radius: 40px;
    filter: blur(50px);
    opacity: 0.2;
    z-index: 0;
}

.demo-frame {
    position: relative;
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(138, 43, 226, 0.3);
    border-radius: 24px;
    overflow: hidden;
    z-index: 1;
}

.demo-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(138, 43, 226, 0.2);
}

.demo-dots {
    display: flex;
    gap: 6px;
}

.demo-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
}

.demo-dots span:first-child {
    background: #EF4444;
}

.demo-dots span:nth-child(2) {
    background: #F59E0B;
}

.demo-dots span:last-child {
    background: #10B981;
}

.demo-title {
    font-size: 0.85rem;
    color: var(--gray-400);
    font-weight: 500;
}

.demo-content {
    position: relative;
    min-height: 520px;
    padding: 24px;
}

/* Demo Screens */
.demo-screen {
    position: absolute;
    inset: 0;
    padding: 24px;
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transform: translateX(30px);
    transition: all 0.4s ease;
}

.demo-screen.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.demo-screen.exit {
    opacity: 0;
    transform: translateX(-30px);
}

/* Demo Stats Bar */
.demo-stats {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 16px;
}

.demo-stat {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    padding: 10px 6px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    border: 1px solid rgba(138, 43, 226, 0.15);
    transition: all 0.3s ease;
}

.demo-stat.flash-green {
    background: rgba(16, 185, 129, 0.15);
    border-color: var(--success);
}

.demo-stat.flash-red {
    background: rgba(239, 68, 68, 0.15);
    border-color: var(--danger);
}

.stat-icon {
    font-size: 1.1rem;
}

.stat-name {
    font-size: 0.7rem;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-value {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--white);
    transition: all 0.3s ease;
}

.stat-value.positive {
    color: var(--success);
}

.stat-value.negative {
    color: var(--danger);
}

/* Scenario Week Badge */
.scenario-week {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(138, 43, 226, 0.2);
    border: 1px solid rgba(138, 43, 226, 0.3);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--purple-secondary);
    margin-bottom: 20px;
}

/* Demo Scenario */
.demo-scenario {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 20px 0;
}

.demo-scenario.setup {
    padding: 20px 0;
}

.scenario-icon {
    font-size: 3rem;
    margin-bottom: 12px;
}

.scenario-title {
    font-size: 1.4rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.scenario-text {
    font-size: 1.05rem;
    color: var(--gray-200);
    line-height: 1.6;
}

.scenario-text strong {
    color: var(--white);
}

.text-warning {
    color: var(--warning);
}

.text-danger {
    color: var(--danger);
}

/* Demo Timer */
.demo-timer {
    position: absolute;
    top: 100px;
    right: 24px;
    width: 60px;
    height: 60px;
}

.timer-svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.timer-bg {
    fill: none;
    stroke: rgba(138, 43, 226, 0.2);
    stroke-width: 3;
}

.timer-progress {
    fill: none;
    stroke: var(--gold-accent);
    stroke-width: 3;
    stroke-linecap: round;
    transition: stroke-dasharray 0.1s linear;
}

.timer-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gold-accent);
}

/* Demo Choices */
.demo-choices {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: auto;
}

.demo-choices.triple {
    grid-template-columns: 1fr 1fr 1fr;
}

.demo-choice {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(138, 43, 226, 0.3);
    border-radius: 16px;
    color: var(--white);
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
}

.demo-choice::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--purple-primary), var(--purple-dark));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.demo-choice:hover {
    border-color: var(--purple-primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(138, 43, 226, 0.2);
}

.demo-choice:hover::before {
    opacity: 0.15;
}

.demo-choice:active {
    transform: translateY(-1px);
}

.choice-icon {
    font-size: 1.5rem;
    position: relative;
    z-index: 1;
}

.choice-text {
    font-size: 0.9rem;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.choice-cost {
    font-size: 0.8rem;
    color: var(--warning);
    font-weight: 500;
    position: relative;
    z-index: 1;
}

/* Demo Buttons */
.demo-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 18px 32px;
    background: linear-gradient(135deg, var(--purple-primary), var(--purple-dark));
    border: none;
    border-radius: 14px;
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Sora', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: auto;
}

.demo-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px var(--glow-purple);
}

.demo-button.primary {
    background: linear-gradient(135deg, var(--purple-primary), var(--purple-dark));
}

.demo-button.gold {
    background: linear-gradient(135deg, var(--gold-accent), var(--gold-dark));
    color: var(--bg-primary);
    animation: gold-pulse 2s infinite;
}

@keyframes gold-pulse {
    0%, 100% {
        box-shadow: 0 0 20px var(--glow-gold);
    }
    50% {
        box-shadow: 0 0 40px var(--glow-gold), 0 0 60px rgba(252, 211, 77, 0.2);
    }
}

.demo-button.small {
    padding: 14px 24px;
    font-size: 0.9rem;
}

/* Outcome Overlay */
.outcome-overlay {
    position: absolute;
    inset: 0;
    background: rgba(13, 13, 26, 0.95);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 10;
}

.outcome-overlay.active {
    opacity: 1;
    visibility: visible;
}

.outcome-content {
    text-align: center;
    padding: 32px;
    max-width: 400px;
}

.outcome-icon {
    font-size: 3rem;
    margin-bottom: 16px;
    animation: bounce-in 0.5s ease;
}

@keyframes bounce-in {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.outcome-message {
    font-size: 1.1rem;
    color: var(--gray-200);
    margin-bottom: 20px;
    line-height: 1.6;
}

.outcome-changes {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
}

.outcome-change {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.95rem;
    font-weight: 600;
}

.outcome-change.positive {
    color: var(--success);
}

.outcome-change.negative {
    color: var(--danger);
}

.outcome-change.neutral {
    color: var(--gray-400);
}

/* Results Screen */
.results-header {
    text-align: center;
    margin-bottom: 32px;
}

.results-title {
    font-size: 1.75rem;
    background: linear-gradient(135deg, var(--gold-accent), var(--purple-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.results-stats {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.result-stat {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 14px;
    border: 1px solid rgba(138, 43, 226, 0.2);
}

.result-icon {
    font-size: 1.5rem;
}

.result-label {
    flex: 1;
    font-size: 0.95rem;
    color: var(--gray-300);
}

.result-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
}

.results-message {
    padding: 20px;
    background: rgba(138, 43, 226, 0.1);
    border-radius: 14px;
    border-left: 4px solid var(--purple-primary);
    margin-bottom: 24px;
}

.results-message p {
    font-size: 1rem;
    color: var(--gray-200);
    line-height: 1.6;
}

.results-insight {
    text-align: center;
    margin-bottom: 24px;
}

.results-insight p {
    font-size: 0.95rem;
    color: var(--gray-400);
}

.results-insight strong {
    color: var(--white);
}

.demo-footnote {
    text-align: center;
    font-size: 0.85rem;
    color: var(--gray-500);
    margin-top: 12px;
}

.demo-restart {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 16px auto 0;
    padding: 10px 20px;
    background: transparent;
    border: 1px solid rgba(138, 43, 226, 0.3);
    border-radius: 8px;
    color: var(--gray-400);
    font-size: 0.85rem;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
}

.demo-restart:hover {
    border-color: var(--purple-primary);
    color: var(--white);
}

/* Demo Testimonial */
.demo-testimonial {
    text-align: center;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(138, 43, 226, 0.1);
}

.testimonial-text {
    font-size: 1.25rem;
    font-style: italic;
    color: var(--gray-200);
    margin-bottom: 8px;
}

.testimonial-source {
    font-size: 0.9rem;
    color: var(--gray-500);
}

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

@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .cta-form {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-visual {
        order: -1;
    }
    
    .hero-card-stack {
        max-width: 350px;
        height: 400px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .feature-card.featured {
        transform: none;
    }
    
    .feature-card.featured:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 100px 0 60px;
    }
    
    .nav-cta span {
        display: none;
    }
    
    .nav-cta {
        padding: 12px;
    }
    
    .nav-cta::after {
        content: '→';
        font-size: 1.2rem;
    }
    
    .cta-form {
        flex-direction: column;
    }
    
    .input-wrapper {
        min-width: 100%;
    }
    
    .cta-button {
        width: 100%;
        justify-content: center;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }
    
    .stat-divider {
        width: 40px;
        height: 1px;
    }
    
    .floating-card {
        transform: scale(0.9);
    }
    
    .timeline-line {
        left: 20px;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .timeline-step {
        gap: 20px;
    }
    
    .cta-card-inner {
        padding: 40px 24px;
    }
    
    .modal {
        padding: 32px 24px;
    }
    
    /* Demo responsive */
    .demo-choices.triple {
        grid-template-columns: 1fr;
    }
    
    .demo-timer {
        top: 80px;
        right: 16px;
        width: 50px;
        height: 50px;
    }
    
    .timer-text {
        font-size: 1rem;
    }
    
    .demo-content {
        min-height: 480px;
    }
}

@media (max-width: 480px) {
    .hero-headline {
        font-size: 2rem;
    }
    
    .section-headline {
        font-size: 1.75rem;
    }
    
    .main-quote {
        font-size: 1.25rem;
    }
    
    .quote-mark {
        font-size: 5rem;
    }
    
    .hero-card-stack {
        height: 350px;
    }
    
    .floating-card {
        transform: scale(0.8);
    }
    
    .flame-container {
        width: 150px;
        height: 210px;
    }
    
    /* Demo responsive small */
    .demo-choices {
        grid-template-columns: 1fr;
    }
    
    .demo-stat {
        padding: 10px 6px;
    }
    
    .stat-value {
        font-size: 0.85rem;
    }
    
    .scenario-text {
        font-size: 1rem;
    }
    
    .demo-content {
        min-height: 520px;
        padding: 16px;
    }
    
    .demo-screen {
        padding: 16px;
    }
    
    .testimonial-text {
        font-size: 1.1rem;
    }
}

/* ═══════════════════════════════════════
   ACCESSIBILITY
   ═══════════════════════════════════════ */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .particle {
        display: none;
    }
}

*:focus-visible {
    outline: 2px solid var(--purple-primary);
    outline-offset: 3px;
}
