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

:root {
    --primary-blue: #1e3a8a;
    --dark-blue: #0a0f1a;
    --dark-teal: #0f1a1f;
    --accent-blue: #3b82f6;
    --light-blue: #60a5fa;
    --text-primary: #ffffff;
    --text-secondary: #e5e7eb;
    --card-bg: rgba(15, 23, 42, 0.4);
    --card-border: rgba(255, 255, 255, 0.2);
}

/* Animated Gradient Keyframes */
@keyframes gradient-shift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

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

/* Ambient Background System */
.savant-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    /* Base Layer: Deep Purple to Deep Midnight */
    background: linear-gradient(180deg, #17153D 0%, #2E2A5E 40%, #0F172A 100%);
}

.gradient-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    filter: saturate(1.8) brightness(1.2);
    /* Dramatic saturation boost */
}

/* Layer 1: Top Right Sunset (Multi-shade Orange) */
.grad-sunset {
    background: radial-gradient(circle at 90% 20%,
            #FFE4B5 0%,
            #FFD700 15%,
            #FFA500 30%,
            #FF8C00 45%,
            #FF6347 65%,
            rgba(255, 69, 0, 0.9) 85%,
            transparent 100%);
    opacity: 1 !important;
    /* Enforced maximum opacity */
    width: 120%;
    /* Expanded to spill over more */
    height: 120%;
    top: -10%;
    left: -10%;
}

/* Layer 2: Sun Core (High-intensity glow) */
.grad-sun-core {
    background: radial-gradient(circle at 90% 20%,
            rgba(255, 255, 255, 0.8) 0%,
            rgba(255, 215, 0, 0.4) 30%,
            transparent 60%);
}

/* Layer 3: Center Aura (Luminous Purple) */
.grad-center {
    background: radial-gradient(circle at 50% 50%,
            rgba(155, 143, 196, 0.6) 0%,
            rgba(155, 143, 196, 0.3) 45%,
            transparent 100%);
}

/* Layer 4: Center Focus (White Luminosity) */
.grad-center-focus {
    background: radial-gradient(circle at 50% 45%,
            rgba(255, 255, 255, 0.4) 0%,
            transparent 50%);
}

/* Layer 5: Gold Balance (Diagonal Warmth) */
.grad-gold-balance {
    background: radial-gradient(circle at 85% 75%,
            rgba(254, 140, 0, 0.4) 0%,
            transparent 80%);
}

/* Layer 6: Bottom Left CTA Magnet (Vibrant Pink) */
.grad-bottom-left {
    background: radial-gradient(circle at 50% 90%,
            rgba(255, 20, 147, 1) 0%,
            rgba(255, 20, 147, 0.9) 35%,
            transparent 100%);
    opacity: 1 !important;
}

/* Layer 7: Bottom Right Atmospheric Anchor (Blue) */
.grad-bottom-right {
    background: radial-gradient(circle at 85% 85%,
            rgba(100, 149, 237, 1) 0%,
            rgba(100, 149, 237, 0.9) 35%,
            transparent 100%);
    opacity: 1 !important;
}

/* Layer 8: Digital Grain / Film Noise */
.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.08;
    /* Adjust for grain intensity */
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}


.container {
    max-width: 95%;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: fit-content;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.05);
    /* Lighter for full glass effect */
    backdrop-filter: blur(40px);
    /* Increased blur */
    -webkit-backdrop-filter: blur(40px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 0.4rem 2rem;
    /* Slimmer padding */
    border-radius: 100px;
    display: flex;
    justify-content: center;
    box-shadow:
        0 4px 30px rgba(0, 0, 0, 0.1),
        inset 0 0 1px 1px rgba(255, 255, 255, 0.1);
}


.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    /* Balanced gap */
    padding: 0 0.5rem;
    flex-wrap: nowrap;
    width: 100%;
}

.nav-logo {
    font-size: 1.6rem;
    font-weight: 300;
    color: #F4F0E6;
    text-transform: uppercase;
    letter-spacing: 8px;
    font-family: 'Optima', 'Segoe UI', 'Candara', 'Bitstream Vera Sans', 'DejaVu Sans', sans-serif;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
    flex-shrink: 0;
}


.logo {
    display: none;
}

.nav-links {
    display: flex;
    gap: 0.25rem;
    align-items: center;
    flex-shrink: 0;
}

.nav-links .nav-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-weight: 400;
    padding: 0.6rem 1.2rem;
    border-radius: 100px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    letter-spacing: 1px;
    font-family: 'Playfair Display', serif;
    font-style: normal;
    /* Removed italics */
    position: relative;
    white-space: nowrap;
}

.nav-links .nav-link:hover {
    color: white;
    background: rgba(255, 255, 255, 0.05);
}

.nav-links .nav-link.active {
    color: white;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.05);
}

.btn-nav-try {
    background: linear-gradient(90deg, #4f46e5 0%, #a855f7 25%, #ec4899 50%, #a855f7 75%, #4f46e5 100%);
    background-size: 200% 100%;
    animation: gradient-shift 3s ease infinite;
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    font-family: 'Playfair Display', serif;
    font-style: normal;
    /* Removed italics */
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 15px rgba(236, 72, 153, 0.3);
    white-space: nowrap;
    flex-shrink: 0;
}

.btn-nav-try:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(236, 72, 153, 0.5);
}

.nav-links-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-shrink: 0;
}

@media (max-width: 1024px) {
    .nav-links {
        display: none;
    }

    .navbar {
        width: 95%;
        padding: 0.5rem 1.5rem;
    }
}

@media (min-width: 1025px) and (max-width: 1300px) {
    .nav-links .nav-link {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }

    .nav-content {
        gap: 1.5rem;
    }
}

.nav-link-secondary {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    font-family: 'Playfair Display', serif;
    font-style: normal;
    /* Removed italics */
    font-weight: 400;
    padding: 0.5rem 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 100px;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.nav-link-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
}

.nav-link-secondary.active {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    color: white;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 150px;
    /* Increased from 80px */
    padding-bottom: 2rem;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 95%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 0;
}

.hero-title {
    font-size: clamp(4rem, 12vw, 10rem);
    font-weight: 300;
    font-style: normal;
    line-height: 0.9;
    margin-bottom: 2rem;
    /* Reduced from 3rem */
    letter-spacing: 0.4em;
    /* Luxury ultra-wide tracking */
    color: #F4F0E6;
    text-transform: uppercase;
    font-family: 'Optima', 'Segoe UI', 'Candara', 'Bitstream Vera Sans', 'DejaVu Sans', sans-serif;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}


.hero-subtitle {
    font-size: clamp(2rem, 5vw, 4rem);
    color: var(--text-primary);
    margin-bottom: 2rem;
    /* Reduced from 4rem */
    line-height: 1.2;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 300;
    opacity: 0.9;
}

/* Base Button Style */
.btn-premium {
    display: inline-block;
    padding: 1.2rem 3rem;
    border-radius: 16px;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    color: white;
    border: none;
}

.btn-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.2),
            transparent);
    transition: 0.5s;
}

.btn-premium:hover::before {
    left: 100%;
}

.btn-premium:hover {
    transform: translateY(-5px) scale(1.02);
    filter: brightness(1.1);
}

.btn-primary-gradient {
    background: linear-gradient(90deg, #4f46e5 0%, #a855f7 25%, #ec4899 50%, #a855f7 75%, #4f46e5 100%);
    background-size: 200% 100%;
    animation: gradient-shift 3s ease infinite;
    box-shadow: 0 10px 30px rgba(236, 72, 153, 0.3);
}

.btn-hero-download {
    display: inline-block;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 700;
    position: relative;
    overflow: hidden;
    color: white;
    border: none;
    background: linear-gradient(90deg, #4f46e5 0%, #a855f7 25%, #ec4899 50%, #a855f7 75%, #4f46e5 100%);
    background-size: 200% 100%;
    animation: gradient-shift 3s ease infinite;
    box-shadow: 0 10px 30px rgba(236, 72, 153, 0.3);
    padding: 1.5rem 4rem;
    font-size: 1.75rem;
    margin-top: 1rem;
    z-index: 20;
    /* Very high z-index */
    opacity: 1 !important;
    /* Force opacity */
    visibility: visible !important;
    transform: none;
    /* Reset transform */
}

.btn-hero-download:hover {
    filter: brightness(1.2);
    box-shadow: 0 15px 40px rgba(236, 72, 153, 0.5);
    /* Transform handled by GSAP or removed for stability */
}

/* Lock-in Status */
.lock-in-status {
    padding: 6rem 0;
    display: flex;
    justify-content: center;

}

.status-card {
    background: #1a1a1a;
    border-radius: 40px;
    width: 300px;
    padding: 2.5rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    box-shadow: 0 0 40px rgba(59, 130, 246, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
}

.status-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 60px rgba(59, 130, 246, 0.4);
    border-color: rgba(59, 130, 246, 0.3);
}

.status-card:hover::after {
    opacity: 0.5;
    filter: blur(20px);
}

.status-card::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
    border-radius: 42px;
    z-index: -1;
    opacity: 0.3;
    filter: blur(15px);
}

.status-time {
    font-size: 1rem;
    opacity: 0.8;
    margin-bottom: 2rem;
    font-weight: 500;
}

/* Base Video Fit */
.master-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Unified Premium Phone Mockup System */
.premium-phone-mockup {
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 2000px;
    padding: 2rem 0;
}

.phone-frame {
    width: 320px;
    height: 650px;
    background: #0a0a0a;
    border-radius: 48px;
    padding: 12px;
    position: relative;
    box-shadow:
        0 0 0 2px #222,
        0 30px 60px -12px rgba(0, 0, 0, 0.7),
        0 18px 36px -18px rgba(0, 0, 0, 0.8),
        inset 0 0 20px rgba(255, 255, 255, 0.05);
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    transition: all 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
    transform-style: preserve-3d;
}

.premium-phone-mockup:hover .phone-frame {
    transform: translateY(-20px) rotateX(10deg) rotateY(-5deg);
    box-shadow:
        0 0 0 2px rgba(139, 92, 246, 0.3),
        0 50px 100px -20px rgba(0, 0, 0, 0.8),
        0 0 40px rgba(139, 92, 246, 0.3);
    border-color: rgba(139, 92, 246, 0.4);
}

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

.phone-screen {
    width: 100%;
    height: 100%;
    background: #000;
    border-radius: 38px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, #1e1b4b 0%, #000 100%);
    box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.5);
}

/* Glass Highlight Effect */
.phone-screen::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg,
            transparent 45%,
            rgba(255, 255, 255, 0.03) 48%,
            rgba(255, 255, 255, 0.06) 50%,
            rgba(255, 255, 255, 0.03) 52%,
            transparent 55%);
    transform: rotate(-45deg);
    pointer-events: none;
    z-index: 5;
    animation: glass-shimmer 8s infinite linear;
}

@keyframes glass-shimmer {
    from {
        transform: translateX(-30%) rotate(-45deg);
    }

    to {
        transform: translateX(30%) rotate(-45deg);
    }
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.btn {
    padding: 1.5rem 3rem;
    font-size: 1.5rem;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.btn-primary {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    color: var(--text-primary);
    border: 1px solid var(--card-border);
    box-shadow: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--card-border);
}

.btn-secondary:hover {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-large {
    padding: 2rem 4rem;
    font-size: 2rem;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 400;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-primary);
    font-size: 1.5rem;
    opacity: 0.8;
    font-weight: 300;
}

/* Showcase Section */
.showcase {
    padding: 12rem 0 8rem;

    position: relative;
    overflow: hidden;
}

.showcase-title {
    font-size: clamp(4rem, 10vw, 8rem);
    text-align: center;
    margin-bottom: 5rem;
    font-family: 'Playfair Display', serif;
    color: var(--text-primary);
    line-height: 1.1;
}

/* Imagine Section */
.imagine-section {
    padding: 10rem 0;
    text-align: center;

}

.imagine-illustration {
    margin-bottom: 4rem;
    display: flex;
    justify-content: center;
}

.star-shape {
    width: 250px;
    height: 250px;
    position: relative;
    background: radial-gradient(circle, rgba(79, 70, 229, 0.2) 0%, transparent 70%);
}

.star-shape::before {
    content: '★';
    font-size: 200px;
    color: transparent;
    -webkit-text-stroke: 2px #4f46e5;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.8;
}

.star-inner {
    content: '★';
    font-size: 140px;
    color: #4f46e5;
    position: absolute;
    top: 52%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    mask-image: linear-gradient(45deg, #4f46e5, #a855f7);
    -webkit-mask-image: linear-gradient(45deg, #4f46e5, #a855f7);
}

.star-inner::before {
    content: '★';
    position: absolute;
    top: 0;
    left: 0;
    color: #4f46e5;
}

.star-dot {
    position: absolute;
    width: 30px;
    height: 30px;
    background: white;
    border-radius: 50%;
    top: 60%;
    right: 35%;
    box-shadow: 0 0 20px white;
    z-index: 3;
}

.imagine-title {
    font-size: clamp(3rem, 7.5vw, 8rem);
    font-family: 'Playfair Display', serif;
    margin-bottom: 2rem;
    letter-spacing: 0.1em;
}

.imagine-subtitle {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    max-width: 800px;
    margin: 0 auto;
    font-weight: 300;
    opacity: 0.9;
    line-height: 1.5;
}

/* Build Amazing Section */
.build-amazing-section {
    padding: 10rem 0;
    text-align: center;

}

.build-illustration {
    margin-bottom: 5rem;
    display: flex;
    justify-content: center;
}

.mountain-shape {
    width: 300px;
    height: 200px;
    position: relative;
    border-bottom: 2px solid rgba(59, 130, 246, 0.3);
}

.mountain-peak {
    position: absolute;
    bottom: 0;
    border-left: 100px solid transparent;
    border-right: 100px solid transparent;
    border-bottom: 160px solid rgba(59, 130, 246, 0.2);
}

.peak-left {
    left: 0;
    border-bottom-color: rgba(79, 70, 229, 0.3);
    z-index: 1;
}

.peak-right {
    right: 0;
    border-bottom-color: rgba(59, 130, 246, 0.3);
    z-index: 2;
    transform: scale(0.8);
    bottom: -10px;
}

.mountain-path {
    position: absolute;
    width: 150px;
    height: 2px;
    background: repeating-linear-gradient(90deg, white, white 5px, transparent 5px, transparent 10px);
    top: 50%;
    left: 20%;
    transform: rotate(-45deg);
    z-index: 3;
    opacity: 0.6;
}

.mountain-flag {
    position: absolute;
    width: 20px;
    height: 20px;
    background: #3b82f6;
    clip-path: polygon(0 0, 100% 50%, 0 100%);
    top: 20px;
    left: 45%;
    z-index: 4;
}

.mountain-stars span {
    position: absolute;
    width: 4px;
    height: 4px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 0 5px white;
}

.mountain-stars span:nth-child(1) {
    top: 40%;
    left: 10%;
}

.mountain-stars span:nth-child(2) {
    top: 20%;
    right: 15%;
}

.mountain-stars span:nth-child(3) {
    top: 60%;
    right: 25%;
}

.build-amazing-title {
    font-size: clamp(4rem, 10vw, 8rem);
    font-family: 'Playfair Display', serif;
    margin-bottom: 1rem;
}

.build-amazing-subtitle {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-style: italic;
    font-weight: 300;
    margin-bottom: 4rem;
    opacity: 0.8;
}

.btn-build-focus {
    display: inline-block;
    background: linear-gradient(90deg, #4f46e5 0%, #a855f7 25%, #ec4899 50%, #a855f7 75%, #4f46e5 100%);
    background-size: 200% 100%;
    animation: gradient-shift 3s ease infinite;
    color: white;
    padding: 1.2rem 3rem;
    border-radius: 12px;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(236, 72, 153, 0.3);
}

.btn-build-focus:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(236, 72, 153, 0.5);
}

/* Max Autism Section */
.max-autism-section {
    padding: 10rem 0;
    text-align: center;

}

.max-autism-title {
    font-size: clamp(4rem, 10vw, 8rem);
    font-family: 'Playfair Display', serif;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.max-autism-subtitle {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 300;
    margin-bottom: 5rem;
    opacity: 0.9;
}

.max-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 5rem;
}

/* Blur non-hovered cards */
.max-features-grid:hover .max-feature-card:not(:hover) {
    filter: blur(3px);
    opacity: 0.5;
    transform: scale(0.98);
}

.max-feature-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    border-radius: 32px;
    padding: 3rem 2rem;
    text-align: left;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}


.max-feature-card:hover {
    border-color: transparent;
    background: rgba(96, 165, 250, 0.15);
    /* Light blue base */
    transform: translateY(-5px);
    box-shadow:
        0 0 0 1px rgba(96, 165, 250, 0.5),
        0 0 40px rgba(96, 165, 250, 0.4),
        0 20px 50px rgba(0, 0, 0, 0.4);
    background-image: linear-gradient(135deg,
            rgba(96, 165, 250, 0.2) 0%,
            rgba(56, 189, 248, 0.1) 100%);
}

.max-feature-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.max-feature-text {
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.8;
    font-weight: 300;
}

.btn-escape-brainrot {
    display: inline-block;
    background: linear-gradient(90deg, #4f46e5 0%, #a855f7 25%, #ec4899 50%, #a855f7 75%, #4f46e5 100%);
    background-size: 200% 100%;
    animation: gradient-shift 3s ease infinite;
    color: white;
    padding: 1.2rem 3rem;
    border-radius: 12px;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(236, 72, 153, 0.3);
}

.btn-escape-brainrot:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(236, 72, 153, 0.5);
}

@media (max-width: 968px) {
    .max-features-grid {
        grid-template-columns: 1fr;
    }
}

/* War Quote Section */
.war-quote-section {
    padding: 10rem 0;
    text-align: center;

}

.war-quote-text {
    font-size: clamp(3rem, 7vw, 6rem);
    font-family: 'Playfair Display', serif;
    line-height: 1.3;
    max-width: 1100px;
    margin: 0 auto 4rem;
    font-weight: 400;
}

.btn-war-build {
    display: inline-block;
    background: linear-gradient(90deg, #4f46e5 0%, #a855f7 25%, #ec4899 50%, #a855f7 75%, #4f46e5 100%);
    background-size: 200% 100%;
    animation: gradient-shift 3s ease infinite;
    color: white;
    padding: 1.2rem 3rem;
    border-radius: 12px;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(236, 72, 153, 0.3);
}

.btn-war-build:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(236, 72, 153, 0.5);
}


/* Timer Section */
.timer-section {
    padding: 10rem 0;
    text-align: center;

}

.timer-activation {
    font-size: 1.2rem;
    opacity: 0.7;
    margin-bottom: 1rem;
}

.timer-headline {
    font-size: clamp(4rem, 10vw, 8rem);
    font-family: 'Playfair Display', serif;
    margin-bottom: 5rem;
}

.timer-circle {
    width: 400px;
    height: 400px;
    margin: 0 auto 6rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.timer-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.6) 0%, rgba(124, 58, 237, 0.4) 30%, rgba(109, 40, 217, 0.2) 50%, transparent 70%);
    border-radius: 50%;
    filter: blur(50px);
    animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.timer-display {
    position: relative;
    z-index: 2;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.4) 0%, rgba(109, 40, 217, 0.3) 50%, rgba(88, 28, 135, 0.2) 100%);
    border-radius: 50%;
    width: 350px;
    height: 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(139, 92, 246, 0.3);
    box-shadow:
        0 0 80px rgba(139, 92, 246, 0.5),
        inset 0 0 80px rgba(124, 58, 237, 0.2);
}

.timer-time {
    font-size: 6rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.05em;
}

.timer-mode {
    font-size: 1.2rem;
    opacity: 0.9;
    font-weight: 400;
}

.timer-distraction-section {
    max-width: 700px;
    margin: 0 auto;
}

.distraction-instruction {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    line-height: 1.5;
    font-weight: 300;
}

.distraction-input {
    width: 100%;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 1.5rem 2rem;
    font-size: 1.1rem;
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.distraction-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.distraction-input:focus {
    outline: none;
    border-color: rgba(59, 130, 246, 0.5);
    background: rgba(15, 23, 42, 0.8);
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.2);
}


/* Streak Section */
.streak-section {
    padding: 10rem 0;
    text-align: center;

}

.streak-label {
    font-size: clamp(2rem, 5vw, 4rem);
    font-family: 'Playfair Display', serif;
    opacity: 0.95;
    margin-bottom: 2rem;
    font-weight: 500;
    line-height: 1.2;
}

.streak-title {
    font-size: clamp(5rem, 12vw, 10rem);
    font-family: 'Playfair Display', serif;
    margin-bottom: 5rem;
    color: #fff;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}


.streak-days {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 5rem;
    flex-wrap: wrap;
    position: relative;
}

/* Progress Bar Overlay */
.streak-progress-bar {
    position: absolute;
    top: 50%;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg, #a855f7 0%, #ec4899 100%);
    transform: translateY(-50%);
    width: 0%;
    transition: width 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.6);
    z-index: 1;
    pointer-events: none;
}

.day-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    position: relative;
    z-index: 2;
}

.day-label {
    font-size: 0.9rem;
    opacity: 0.7;
}

.day-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.day-circle.completed {
    background: linear-gradient(135deg, #a855f7 0%, #ec4899 100%);
    border-color: transparent;
    font-size: 2rem;
}

.day-circle.upcoming {
    opacity: 0.5;
}



/* Schedules Section */
.schedules-section {
    padding: 10rem 0;
    text-align: center;

}

.schedules-title {
    font-size: clamp(4rem, 10vw, 8rem);
    font-family: 'Playfair Display', serif;
    margin-bottom: 1.5rem;
    color: #fff;
    text-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.schedules-subtitle {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 300;
    margin-bottom: 5rem;
    opacity: 0.95;
    color: #fff;
}


/* Redundant Phone Mockup Classes removed - using .premium-phone-mockup */



/* Testimonials Carousel Section */
.testimonials-carousel-section {
    padding: 12rem 0;
    overflow: hidden;
    position: relative;
    /* Removed background/blur box for seamless flow */
}

.testimonials-carousel-title {
    font-size: clamp(3rem, 7vw, 5rem);
    font-family: 'Playfair Display', serif;
    text-align: center;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.testimonials-carousel-subtitle {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    text-align: center;
    margin-bottom: 5rem;
    opacity: 0.9;
    font-weight: 300;
}

.carousel-wrapper {
    overflow: hidden;
    position: relative;
}

.carousel-track {
    display: flex;
    gap: 3rem;
    width: fit-content;
    animation: scroll-carousel 40s linear infinite;
}

@keyframes scroll-carousel {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.carousel-track:hover {
    animation-play-state: paused;
}

/* Blur non-hovered testimonial cards */
.carousel-track:hover .testimonial-carousel-card:not(:hover) {
    filter: blur(3px);
    opacity: 0.5;
    transform: scale(0.98);
}

.testimonial-carousel-card {
    min-width: 450px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    border-radius: 40px;
    padding: 3.5rem;
    flex-shrink: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.3),
        inset 0 0 20px rgba(255, 255, 255, 0.02);
}


.testimonial-carousel-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(96, 165, 250, 0.5);
    background: rgba(96, 165, 250, 0.05);
    box-shadow:
        0 0 0 1px rgba(96, 165, 250, 0.3),
        0 0 50px rgba(96, 165, 250, 0.2),
        0 30px 60px rgba(0, 0, 0, 0.5);
}

.testimonial-quote {
    font-size: 1.25rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-weight: 300;
}

.testimonial-author-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #a855f7 0%, #ec4899 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 600;
    flex-shrink: 0;
}

.testimonial-details {
    text-align: left;
}

.testimonial-name {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.testimonial-role {
    font-size: 0.95rem;
    opacity: 0.7;
}

@media (max-width: 768px) {
    .testimonial-carousel-card {
        min-width: 300px;
    }
}

/* Master Mind Section */
.master-mind-section {
    padding: 10rem 0;
    text-align: center;

}

.master-mind-title {
    font-size: clamp(4rem, 10vw, 8rem);
    font-family: 'Playfair Display', serif;
    margin-bottom: 1.5rem;
}

.master-mind-subtitle {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 300;
    margin-bottom: 5rem;
    opacity: 0.9;
}

/* Master Phone Mockup removed - using .premium-phone-mockup */



/* Download Footer Section */
.download-footer-section {
    padding: 10rem 0 10rem;
    text-align: center;
    position: relative;
}

.download-footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg,
            transparent 0%,
            rgba(30, 58, 138, 0.2) 30%,
            rgba(30, 58, 138, 0.5) 60%,
            rgba(30, 58, 138, 0.8) 100%);
    pointer-events: none;
    z-index: 0;
}

.download-footer-section>.container {
    position: relative;
    z-index: 1;
}

.app-icon-wrapper {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 3rem;
}

.app-icon-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.4) 0%, transparent 70%);
    border-radius: 30px;
    filter: blur(20px);
}

.app-icon {
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.app-icon-orb {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #a855f7 0%, #4f46e5 100%);
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.6);
}

.download-footer-title {
    font-size: clamp(3rem, 7vw, 5rem);
    font-family: 'Playfair Display', serif;
    margin-bottom: 3rem;
}



.footer-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.btn-presentation {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 1rem 3rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 1.1rem;
}

.btn-presentation:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.4);
}

.footer-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.footer-nav a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1rem;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-nav a:hover {
    opacity: 1;
}

.nav-separator {
    opacity: 0.5;
}

.footer-copyright {
    font-size: 1rem;
    opacity: 0.7;
}

.copyright-brand {
    font-weight: 600;
    letter-spacing: 0.1em;
}

.copyright-separator {
    margin: 0 0.5rem;
}


.phone-mockup {
    display: flex;
    justify-content: center;
    perspective: 1000px;
}

.phone-frame {
    width: 320px;
    height: 650px;
    background: #1a1a1a;
    border-radius: 45px;
    padding: 12px;
    position: relative;
    box-shadow:
        0 0 0 2px #333,
        0 20px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.phone-frame:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow:
        0 0 0 2px rgba(59, 130, 246, 0.5),
        0 0 40px rgba(59, 130, 246, 0.3),
        0 25px 60px rgba(0, 0, 0, 0.6);
    border-color: rgba(59, 130, 246, 0.3);
}

.phone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 30px;
    background: #1a1a1a;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    z-index: 10;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #0a0f1a;
    border-radius: 35px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
}

.phone-status-bar {
    padding: 15px 25px 5px;
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
}

.phone-content {
    flex: 1;
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.phone-header {
    text-align: center;
}

.phone-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.phone-subtitle {
    font-size: 0.9rem;
    opacity: 0.6;
}

.phone-calendar {
    flex: 1;
}

.calendar-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.7rem;
    opacity: 0.5;
    margin-bottom: 1rem;
}

.calendar-grid {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.calendar-slot {
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.calendar-slot.active {
    background: linear-gradient(90deg, rgba(59, 130, 246, 0.2), rgba(236, 72, 153, 0.2));
    border: 1px solid rgba(236, 72, 153, 0.3);
}

.phone-footer {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.phone-footer-title {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.phone-footer-text {
    font-size: 0.8rem;
    opacity: 0.6;
    line-height: 1.4;
}

/* Floating Shapes */
.hero-decoration {
    display: none;
}


/* Features Section */
.features {
    padding: 6rem 0;
    position: relative;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 95%;
    margin: 0 auto;
}

.feature-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    border-radius: 32px;
    padding: 3rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.feature-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #fff;
    font-family: 'Playfair Display', serif;
}

.feature-description {
    font-size: 1.1rem;
    color: #fff;
    line-height: 1.6;
    font-weight: 300;
    opacity: 0.9;
}


/* Hover Effects: Highlighting current, dimming others */
.features-grid:hover .feature-card {
    opacity: 0.4;
    transform: scale(0.98);
    filter: blur(1px);
}

.features-grid .feature-card:hover {
    opacity: 1;
    transform: scale(1.02);
    filter: blur(0);
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(15, 23, 42, 0.6);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

    .feature-card {
        padding: 2rem;
    }
}


/* Testimonials Section */
.testimonials {
    padding: 4rem 0;
    position: relative;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.testimonial-carousel-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 32px;
    padding: 3rem;
    min-width: 400px;
    margin: 0 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}


.testimonial-card {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--card-border);
    border-radius: 24px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(15, 23, 42, 0.5);
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    font-size: 1.75rem;
    line-height: 1.7;
    color: #fff;
    font-style: normal;
    font-weight: 300;
}

.testimonial-author {
    color: #fff;
    font-weight: 500;
    opacity: 0.95;
    margin-top: 1rem;
    font-size: 1.5rem;
}


/* Download Section */
.download {
    padding: 4rem 0;
    position: relative;
}

.download-content {
    text-align: center;
    max-width: 95%;
    margin: 0 auto;
}

.download-content .btn {
    display: inline-block;
}

/* Footer */
.footer {
    padding: 2rem 0 1.5rem;
    border-top: 1px solid rgba(59, 130, 246, 0.1);
    margin-top: 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-brand {
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--text-primary);
    font-family: 'Playfair Display', 'Georgia', 'Times New Roman', serif;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-primary);
    text-decoration: none;
    transition: opacity 0.3s ease;
    opacity: 0.8;
    font-size: 1.5rem;
}

.footer-links a:hover {
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid var(--card-border);
    color: var(--text-primary);
    font-size: 1.25rem;
    opacity: 0.7;
    font-weight: 300;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 0.75rem;
    }

    .nav-links {
        gap: 1rem;
        font-size: 1.25rem;
    }

    .hero {
        padding-top: 70px;
        min-height: auto;
        padding-bottom: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        width: 100%;
    }

    .features-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Selection */
::selection {
    background: rgba(59, 130, 246, 0.3);
    color: var(--text-primary);
}