:root {
    --primary: #00FF88;
    --primary-dark: #00CC66;
    --primary-light: #66FFAA;
    --secondary: #00FF88;
    --accent: #00CC66;
    --accent-2: #00FF88;
    --text-primary: #FFFFFF;
    --text-secondary: #CCCCCC;
    --text-light: #999999;
    --bg-white: #0A0A0F;
    --bg-dark: #000000;
    --bg-darker: #000000;
    --glass-bg: rgba(0, 255, 136, 0.05);
    --glass-border: rgba(0, 255, 136, 0.1);
    --gradient-1: linear-gradient(135deg, #00FF88 0%, #00CC66 100%);
    --gradient-2: linear-gradient(135deg, #00CC66 0%, #00FF88 100%);
    --gradient-3: linear-gradient(135deg, #00FF88 0%, #00CC66 50%, #00FF88 100%);
    --gradient-hero: radial-gradient(circle at 30% 50%, rgba(0, 255, 136, 0.3), transparent 50%),
                      radial-gradient(circle at 70% 50%, rgba(0, 204, 102, 0.25), transparent 50%),
                      radial-gradient(circle at 50% 80%, rgba(0, 255, 136, 0.2), transparent 50%);
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-primary);
    background: #000000;
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
}

/* Full Page Background Effect */
.page-background {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.page-gradient-mesh {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-hero);
    opacity: 0.3;
    animation: meshMove 20s ease-in-out infinite;
}

/* Scroll Progress Indicator */
.scroll-progress {
    position: fixed;
    right: 0;
    top: 0;
    width: 6px;
    height: 100vh;
    z-index: 9999;
    background: rgba(255, 255, 255, 0.05);
    pointer-events: none;
    backdrop-filter: blur(10px);
}

.scroll-progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: linear-gradient(180deg, #00FF88 0%, #00CC66 100%);
    transition: height 0.05s linear;
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.6),
                0 0 60px rgba(0, 204, 102, 0.4),
                inset 0 0 20px rgba(255, 255, 255, 0.1);
    border-radius: 0 0 3px 3px;
}

.scroll-progress-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, 
        rgba(255, 255, 255, 0.3) 0%,
        transparent 50%,
        rgba(0, 255, 136, 0.3) 100%);
    animation: progressShimmer 2s linear infinite;
}

@keyframes progressShimmer {
    0% {
        transform: translateY(-100%);
    }
    100% {
        transform: translateY(100%);
    }
}

@keyframes progressPulse {
    0%, 100% {
        opacity: 1;
        transform: scaleX(1);
    }
    50% {
        opacity: 0.8;
        transform: scaleX(1.1);
    }
}

.scroll-progress-glow {
    position: absolute;
    top: 0;
    left: -15px;
    width: 36px;
    height: 0%;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.5), transparent);
    filter: blur(15px);
    transition: height 0.05s linear;
    pointer-events: none;
}

/* Scroll Effects Overlay */
.scroll-effects-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 100;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.scroll-gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0;
    transition: opacity 0.5s ease, transform 0.5s ease;
    will-change: opacity, transform;
}

.scroll-effects-overlay.active {
    opacity: 1;
}

.scroll-effects-overlay.active .scroll-gradient-orb {
    animation-play-state: running;
}

.scroll-orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.3), transparent);
    top: 20%;
    right: 10%;
    animation: scrollOrbFloat1 8s ease-in-out infinite;
}

.scroll-orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 204, 102, 0.3), transparent);
    bottom: 30%;
    left: 15%;
    animation: scrollOrbFloat2 10s ease-in-out infinite;
}

.scroll-orb-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.2), transparent);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: scrollOrbFloat3 12s ease-in-out infinite;
}

@keyframes scrollOrbFloat1 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(30px, -30px) scale(1.1);
    }
}

@keyframes scrollOrbFloat2 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(-20px, 20px) scale(1.05);
    }
}

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

/* Scroll Particles Canvas - removed, keeping only hero background */

/* Background Dust Canvas - removed, keeping only hero background */
    visibility: visible !important;
}

/* Scroll Trail Effect */
.scroll-trail {
    position: fixed;
    top: 0;
    right: 0;
    width: 2px;
    height: 100px;
    background: var(--gradient-1);
    opacity: 0;
    pointer-events: none;
    z-index: 9998;
    filter: blur(2px);
    transition: opacity 0.3s ease, transform 0.1s linear;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(30px) saturate(180%);
    border-bottom: 1px solid rgba(0, 255, 136, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav.scrolled {
    background: rgba(0, 0, 0, 0.95);
    box-shadow: 0 8px 32px rgba(0, 255, 136, 0.2);
}

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

.nav-logo {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 800;
    font-size: 1.15rem;
    letter-spacing: 5px;
    background: linear-gradient(135deg, #FFFFFF 0%, #00FF88 50%, #FFFFFF 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    animation: logoShimmer 3s ease-in-out infinite;
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.3))
            drop-shadow(0 0 25px rgba(0, 255, 136, 0.4));
    transition: all 0.3s ease;
}

.nav-logo::before {
    content: 'KNEE COMPASS';
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.3), rgba(255, 255, 255, 0.1));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    z-index: -1;
    filter: blur(2px);
    opacity: 0.6;
}

@keyframes logoShimmer {
    0%, 100% {
        background-position: 0% 50%;
        filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.3))
                drop-shadow(0 0 25px rgba(0, 255, 136, 0.4));
    }
    50% {
        background-position: 100% 50%;
        filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.5))
                drop-shadow(0 0 35px rgba(0, 255, 136, 0.6));
    }
}

.nav-logo:hover {
    transform: translateY(-1px);
    filter: drop-shadow(0 0 25px rgba(255, 255, 255, 0.5))
            drop-shadow(0 0 40px rgba(0, 255, 136, 0.7));
}

.compass-icon {
    width: 22px;
    height: 22px;
    color: #FFFFFF;
    flex-shrink: 0;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.6))
            drop-shadow(0 0 15px rgba(0, 255, 136, 0.5));
    transition: all 0.3s ease;
    animation: compassPulse 2s ease-in-out infinite;
}

@keyframes compassPulse {
    0%, 100% {
        filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.6))
                drop-shadow(0 0 15px rgba(0, 255, 136, 0.5));
        transform: scale(1);
    }
    50% {
        filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.8))
                drop-shadow(0 0 25px rgba(0, 255, 136, 0.7));
        transform: scale(1.05);
    }
}

.nav-logo:hover .compass-icon {
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.9))
            drop-shadow(0 0 30px rgba(0, 255, 136, 0.8));
    transform: rotate(5deg) scale(1.1);
}

.nav-links {
    display: flex;
    gap: 3rem;
}

.nav-link {
    text-decoration: none;
    color: rgba(0, 255, 136, 0.7);
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.75rem;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-1);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover {
    color: #00FF88;
}

.nav-link:hover::before {
    width: 100%;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 100px 0 0 0;
    background: transparent;
    z-index: 2;
}

.particle-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    opacity: 0.6;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 0;
}

.gradient-mesh {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-hero);
    opacity: 0.5;
    animation: meshMove 20s ease-in-out infinite;
    filter: blur(80px);
    will-change: transform;
}

@keyframes meshMove {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(50px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-30px, 50px) scale(0.95);
    }
}


@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(50px, -50px) scale(1.1);
    }
    50% {
        transform: translate(-30px, 30px) scale(0.9);
    }
    75% {
        transform: translate(30px, 50px) scale(1.05);
    }
}

/* Geometric Shapes */
.geometric-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 0;
}

.shape {
    position: absolute;
    opacity: 0.1;
    animation: shapeFloat 20s infinite ease-in-out;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    right: 15%;
    background: var(--gradient-1);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    bottom: 20%;
    left: 10%;
    background: var(--gradient-2);
    clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
    animation-delay: 7s;
}

.shape-3 {
    width: 250px;
    height: 250px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--gradient-3);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    animation-delay: 14s;
}

@keyframes shapeFloat {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(30px, -30px) rotate(120deg);
    }
    66% {
        transform: translate(-20px, 20px) rotate(240deg);
    }
}

/* Vision Visual */
.vision-visual {
    text-align: center;
    margin-bottom: 4rem;
    opacity: 0.6;
}

.knee-anatomy {
    width: 100%;
    max-width: 300px;
    height: auto;
    margin: 0 auto;
    animation: pulse 4s ease-in-out infinite;
}

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

/* Journey Visual */
.journey-visual {
    text-align: center;
    margin-bottom: 4rem;
    opacity: 0.5;
}

.journey-path {
    width: 100%;
    max-width: 800px;
    height: auto;
    margin: 0 auto;
    animation: pathGlow 3s ease-in-out infinite;
}

@keyframes pathGlow {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.6;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1200px;
    padding: 0 2rem;
    animation: fadeInUp 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 2rem;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 2px;
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
    animation: fadeIn 0.4s ease-out 0.1s both;
}

.badge-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 136, 0.3), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.badge-text {
    position: relative;
    z-index: 1;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(4rem, 12vw, 9rem);
    font-weight: 800;
    line-height: 0.95;
    margin-bottom: 2rem;
    position: relative;
    text-align: center;
}

.hero-compass-icon {
    width: clamp(2rem, 5vw, 4rem);
    height: clamp(2rem, 5vw, 4rem);
    display: inline-block;
    vertical-align: middle;
    margin-right: 1rem;
    color: var(--primary);
    flex-shrink: 0;
    filter: drop-shadow(0 0 10px rgba(0, 255, 136, 0.8));
    transition: all 0.3s ease;
}

.hero-compass-icon:hover {
    filter: drop-shadow(0 0 20px rgba(0, 255, 136, 1));
    transform: scale(1.1);
}

.title-line-1 {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    letter-spacing: 0.08em;
    gap: 1.5rem;
    font-weight: 900;
    text-transform: uppercase;
    font-size: clamp(3.5rem, 8vw, 6rem);
    line-height: 1.1;
    padding: 1rem 2rem;
    margin: 1rem 0;
    color: transparent;
}

.title-line-1::before {
    content: 'KNEE COMPASS';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-text-stroke: 2.5px #FFFFFF;
    -webkit-text-fill-color: transparent;
    color: transparent;
    z-index: 1;
    letter-spacing: 0.08em;
    font-weight: 900;
    text-transform: uppercase;
    font-size: clamp(3.5rem, 8vw, 6rem);
    line-height: 1.1;
    gap: 1.5rem;
    pointer-events: none;
}

.title-line-1::after {
    content: 'KNEE COMPASS';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: 
        radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 1) 1.5px, transparent 1.5px),
        radial-gradient(circle at 30% 40%, rgba(255, 255, 255, 0.9) 1px, transparent 1px),
        radial-gradient(circle at 50% 10%, rgba(255, 255, 255, 1) 1.5px, transparent 1.5px),
        radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.8) 1px, transparent 1px),
        radial-gradient(circle at 20% 60%, rgba(255, 255, 255, 0.9) 1px, transparent 1px),
        radial-gradient(circle at 40% 80%, rgba(255, 255, 255, 1) 1.5px, transparent 1.5px),
        radial-gradient(circle at 60% 50%, rgba(255, 255, 255, 0.8) 1px, transparent 1px),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.9) 1px, transparent 1px),
        radial-gradient(circle at 5% 35%, rgba(255, 255, 255, 1) 1.5px, transparent 1.5px),
        radial-gradient(circle at 90% 55%, rgba(255, 255, 255, 0.8) 1px, transparent 1px),
        radial-gradient(circle at 15% 5%, rgba(255, 255, 255, 0.9) 1px, transparent 1px),
        radial-gradient(circle at 85% 90%, rgba(255, 255, 255, 1) 1.5px, transparent 1.5px),
        radial-gradient(circle at 25% 75%, rgba(255, 255, 255, 0.9) 1px, transparent 1px),
        radial-gradient(circle at 75% 25%, rgba(255, 255, 255, 0.8) 1px, transparent 1px),
        radial-gradient(circle at 55% 85%, rgba(255, 255, 255, 1) 1.5px, transparent 1.5px),
        radial-gradient(circle at 45% 15%, rgba(255, 255, 255, 0.9) 1px, transparent 1px),
        #000000;
    background-size: 
        80px 80px,
        70px 70px,
        90px 90px,
        75px 75px,
        85px 85px,
        80px 80px,
        70px 70px,
        90px 90px,
        75px 75px,
        85px 85px,
        80px 80px,
        70px 70px,
        90px 90px,
        75px 75px,
        85px 85px,
        80px 80px,
        100% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    z-index: 2;
    letter-spacing: 0.08em;
    font-weight: 900;
    text-transform: uppercase;
    font-size: clamp(3.5rem, 8vw, 6rem);
    line-height: 1.1;
    gap: 1.5rem;
    pointer-events: none;
}
}

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

/* Removed old ::before - now using star field effect */

/* Removed ::after effect */

@keyframes titlePulse {
    0%, 100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.9;
        transform: translate(-50%, -50%) scale(1.08);
    }
}

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

.title-line-1 .hero-compass-icon {
    background: 
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 1) 1.5px, transparent 1.5px),
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.9) 1px, transparent 1px),
        radial-gradient(circle at 70% 70%, rgba(255, 255, 255, 0.9) 1px, transparent 1px),
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.8) 1px, transparent 1px),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.8) 1px, transparent 1px),
        #000000;
    background-size: 24px 24px, 24px 24px, 24px 24px, 24px 24px, 24px 24px, 100% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}

.title-subtitle {
    display: block;
    font-size: clamp(1.1rem, 3vw, 1.8rem);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 1rem;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.05em;
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.4rem);
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
    font-weight: 300;
}

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

.stat-glass {
    position: relative;
    padding: 2.5rem 3rem;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(30px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    text-align: center;
    min-width: 200px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.stat-glass::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-1);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.stat-glass:hover::before {
    opacity: 0.1;
}

.stat-glass:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(0, 255, 136, 0.3);
    box-shadow: 0 20px 60px rgba(0, 255, 136, 0.2);
}

.stat-number {
    position: relative;
    z-index: 1;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.8rem;
    font-family: 'Space Grotesk', sans-serif;
}

.stat-label {
    position: relative;
    z-index: 1;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.stat-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.2), transparent);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

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

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.scroll-line {
    width: 2px;
    height: 60px;
    background: var(--gradient-1);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0%, 100% {
        height: 60px;
        opacity: 1;
    }
    50% {
        height: 40px;
        opacity: 0.5;
    }
}

.scroll-text {
    font-size: 0.7rem;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 600;
    text-transform: uppercase;
}

/* Sections */
.section {
    padding: 8rem 2rem;
    position: relative;
    background: transparent;
    transition: transform 0.1s ease-out, opacity 0.3s ease;
    will-change: transform, opacity;
    z-index: 2;
}

.section:nth-child(even) {
    background: transparent;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    display: flex;
    align-items: baseline;
    gap: 2rem;
    margin-bottom: 6rem;
    position: relative;
}

.section-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 4px;
    opacity: 0.6;
}

.section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(3rem, 7vw, 6rem);
    font-weight: 700;
    color: rgba(255, 255, 255, 0.95);
    letter-spacing: -0.02em;
    line-height: 1.1;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--gradient-1);
    border-radius: 2px;
    opacity: 0.6;
}

/* Vision Section */
.vision-section {
    background: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

.vision-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.1), transparent);
    border-radius: 50%;
    animation: pulse 8s ease-in-out infinite;
}

.vision-quote {
    text-align: center;
    margin-bottom: 6rem;
    position: relative;
}

.quote-text {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    max-width: 1000px;
    margin: 0 auto;
    line-height: 1.3;
    position: relative;
    padding: 3rem 0;
}

.quote-text::before,
.quote-text::after {
    content: '"';
    font-size: 6rem;
    color: rgba(0, 255, 136, 0.2);
    position: absolute;
    font-family: 'DM Serif Display', serif;
}

.quote-text::before {
    top: -1rem;
    left: -2rem;
}

.quote-text::after {
    bottom: -3rem;
    right: -2rem;
}

.vision-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(30px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem;
    border-radius: 24px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-1);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
    border-radius: 24px;
}

.feature-card:hover::after {
    opacity: 0.05;
}

.feature-image {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    justify-content: center;
    align-items: flex-start;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
}

.player-image-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
}

.player-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(0, 255, 136, 0.4);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.2);
}

.player-image:hover {
    transform: scale(1.15);
    border-color: rgba(0, 255, 136, 0.9);
    box-shadow: 0 15px 40px rgba(0, 255, 136, 0.5);
}

.player-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    transition: color 0.3s ease;
}

.player-image-wrapper:hover .player-name {
    color: rgba(255, 255, 255, 1);
}

.feature-card:hover .player-image {
    border-color: rgba(0, 255, 136, 0.7);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-1);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 255, 136, 0.3);
    box-shadow: 0 20px 60px rgba(0, 255, 136, 0.15);
    background: rgba(255, 255, 255, 0.05);
}

.feature-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 1.5rem;
    color: var(--primary);
    opacity: 0.7;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.feature-icon svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
    filter: drop-shadow(0 0 10px rgba(0, 255, 136, 0.3));
}

.feature-card:hover .feature-icon {
    opacity: 1;
    transform: scale(1.1) rotate(5deg);
    color: var(--primary-light);
    filter: drop-shadow(0 0 20px rgba(0, 255, 136, 0.5));
}

.feature-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.95);
    position: relative;
    z-index: 1;
}

.feature-text {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
    font-size: 1rem;
    position: relative;
    z-index: 1;
}

/* Problem Section */
.problem-section {
    position: relative;
    overflow: hidden;
}

.problem-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.1), transparent);
    border-radius: 50%;
    animation: pulse 10s ease-in-out infinite;
}

.problem-visual {
    text-align: center;
    margin-bottom: 5rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.problem-image {
    width: 100%;
    max-width: 900px;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 25px 80px rgba(0, 255, 136, 0.25);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.9;
    border: 2px solid rgba(0, 255, 136, 0.2);
}

.problem-image:hover {
    transform: scale(1.03) translateY(-5px);
    opacity: 1;
    box-shadow: 0 35px 100px rgba(0, 255, 136, 0.4);
    border-color: rgba(0, 255, 136, 0.4);
}

.problem-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 5rem;
}

.stat-card {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.15) 0%, rgba(0, 204, 102, 0.15) 100%);
    padding: 4rem 3rem;
    border-radius: 24px;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 40px rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.2);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.stat-card:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 255, 136, 0.3);
}

.stat-card-number {
    position: relative;
    z-index: 1;
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
}

.stat-card-label {
    position: relative;
    z-index: 1;
    font-size: 1rem;
    opacity: 0.95;
    font-weight: 500;
    line-height: 1.6;
}

.problem-pain-points {
    display: grid;
    gap: 2rem;
}

.pain-point {
    display: flex;
    gap: 2.5rem;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(30px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.pain-point::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--gradient-2);
    transform: scaleY(0);
    transition: transform 0.4s ease;
}

.pain-point:hover::before {
    transform: scaleY(1);
}

.pain-point:hover {
    transform: translateX(10px);
    border-color: rgba(0, 255, 136, 0.3);
    background: rgba(255, 255, 255, 0.05);
}

.pain-icon {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    color: var(--secondary);
    opacity: 0.6;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.pain-icon svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
}

.pain-icon-red {
    color: #FF4444 !important;
}

.pain-icon-red svg {
    stroke: #FF4444 !important;
}

.pain-point:hover .pain-icon {
    opacity: 1;
    transform: scale(1.15);
}

.pain-point-player {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 1rem;
    border: 2px solid rgba(0, 255, 136, 0.3);
}

.pain-player-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pain-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: rgba(255, 255, 255, 0.95);
}

.pain-text {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
    font-size: 1rem;
}

/* Solution Section */
.solution-section {
    position: relative;
    overflow: hidden;
}

.solution-section::before {
    content: '';
    position: absolute;
    top: 20%;
    right: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 204, 102, 0.1), transparent);
    border-radius: 50%;
    animation: pulse 12s ease-in-out infinite;
}

.solution-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 5rem;
}

.solution-visual {
    margin-bottom: 4rem;
    max-width: 600px;
    width: 100%;
    border-radius: 24px;
    overflow: visible;
    box-shadow: 0 25px 80px rgba(0, 255, 136, 0.25);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(0, 255, 136, 0.2);
    position: relative;
    margin-left: auto;
    margin-right: auto;
}

.solution-player-image {
    position: absolute;
    top: -60px;
    right: -60px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid rgba(0, 255, 136, 0.4);
    box-shadow: 0 15px 40px rgba(0, 255, 136, 0.3);
    z-index: 10;
}

.player-feature-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.solution-visual:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 35px 100px rgba(0, 255, 136, 0.4);
    border-color: rgba(0, 255, 136, 0.4);
}

.solution-main-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 24px;
    transition: transform 0.4s ease;
}

.solution-visual:hover .solution-main-image {
    transform: scale(1.05);
}

.solution-tagline {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 600;
    text-align: center;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.3;
}

.solution-pillars {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-bottom: 6rem;
}

.pillar {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(30px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem;
    padding-top: 4rem;
    border-radius: 24px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: visible;
    margin-top: 3rem;
}

.pillar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-1);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.pillar:hover::after {
    opacity: 0.1;
}

.pillar:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 255, 136, 0.4);
    box-shadow: 0 25px 70px rgba(0, 255, 136, 0.2);
}

.pillar-number {
    position: absolute;
    top: -45px;
    left: 3rem;
    width: 90px;
    height: 90px;
    background: var(--gradient-1);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 2.8rem;
    font-family: 'Space Grotesk', sans-serif;
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.4);
    z-index: 10;
    padding: 0;
    line-height: 1;
    margin: 0;
}

.pillar-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    margin-top: 0.5rem;
    margin-bottom: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    position: relative;
    z-index: 1;
}

.pillar-text {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
    font-size: 1rem;
    position: relative;
    z-index: 1;
}

.solution-journey {
    margin-bottom: 5rem;
}

.journey-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 4rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.95);
}

.journey-timeline {
    position: relative;
    padding-left: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.journey-timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--gradient-1);
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    padding-left: 4rem;
    padding-bottom: 4rem;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: -1.75rem;
    top: 0.5rem;
    width: 20px;
    height: 20px;
    background: var(--bg-dark);
    border: 4px solid;
    border-image: var(--gradient-1) 1;
    border-radius: 50%;
    box-shadow: 0 0 0 8px rgba(0, 255, 136, 0.1), 0 0 20px rgba(0, 255, 136, 0.3);
    z-index: 2;
}

.timeline-phase {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: rgba(255, 255, 255, 0.95);
}

.timeline-text {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
    font-size: 1rem;
}

.solution-guardrails {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(30px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 4rem;
    border-radius: 24px;
}

.guardrails-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 3rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.95);
}

.guardrails-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}

.guardrail-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.guardrail-item:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-5px);
}

.guardrail-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1rem;
    color: var(--primary);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.guardrail-icon svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
}

.guardrail-icon-red {
    color: #FF4444 !important;
}

.guardrail-icon-red svg {
    stroke: #FF4444 !important;
}

.guardrail-item:hover .guardrail-icon {
    opacity: 1;
    transform: scale(1.1);
}

.guardrail-text {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    font-size: 0.95rem;
}

/* Experience Section */
.experience-scenario {
    text-align: center;
    margin-bottom: 4rem;
}

.scenario-text {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
    line-height: 1.6;
}

.experience-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.exp-feature {
    text-align: center;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    transition: all 0.4s ease;
}

.exp-feature:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 255, 136, 0.3);
    background: rgba(255, 255, 255, 0.05);
}

.exp-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 1.5rem;
    color: var(--primary);
    opacity: 0.7;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.exp-icon svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
}

.exp-feature:hover .exp-icon {
    opacity: 1;
    transform: scale(1.15) rotate(-5deg);
    color: var(--primary-light);
}

.exp-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: rgba(255, 255, 255, 0.95);
}

.exp-text {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
}

.experience-tiles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.tile {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.2) 0%, rgba(0, 204, 102, 0.2) 100%);
    color: white;
    padding: 2.5rem;
    border-radius: 20px;
    font-weight: 600;
    text-align: center;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 255, 136, 0.3);
}

.tile::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: left 0.5s ease;
}

.tile:hover::before {
    left: 100%;
}

.tile:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 255, 136, 0.4);
}

/* AI Section */
.ai-quote {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 600;
    text-align: center;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 5rem;
    font-style: italic;
    line-height: 1.3;
}

.ai-examples {
    display: grid;
    gap: 2rem;
    margin-bottom: 5rem;
}

.ai-example {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(30px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: 20px;
    border-left: 4px solid;
    border-image: var(--gradient-1) 1;
    transition: all 0.4s ease;
}

.ai-example:hover {
    transform: translateX(10px);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 15px 50px rgba(0, 255, 136, 0.15);
}

.example-question {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1rem;
}

.example-answer {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
    font-size: 1rem;
}

.guardrails-player-image {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 3rem;
    border: 4px solid rgba(0, 255, 136, 0.4);
    box-shadow: 
        0 20px 50px rgba(0, 255, 136, 0.25),
        0 0 0 2px rgba(0, 255, 136, 0.1),
        inset 0 2px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.guardrails-player-image::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.3), rgba(0, 204, 102, 0.3));
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
}

.guardrails-player-image:hover::before {
    opacity: 1;
}

.guardrails-player-image:hover {
    transform: scale(1.08);
    border-color: rgba(0, 255, 136, 0.7);
    box-shadow: 
        0 30px 70px rgba(0, 255, 136, 0.4),
        0 0 0 3px rgba(0, 255, 136, 0.2),
        inset 0 2px 15px rgba(0, 0, 0, 0.4);
}

.guardrails-player-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 0;
    transition: transform 0.5s ease;
}

.guardrails-player-image:hover .guardrails-player-img {
    transform: scale(1.1);
}

.ai-guardrails {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(30px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 4rem;
    border-radius: 24px;
}

.ai-guardrails-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.95);
}

.ai-guardrails-list {
    display: grid;
    gap: 1.2rem;
}

.ai-guardrail {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    border-left: 3px solid;
    border-image: var(--gradient-2) 1;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.ai-guardrail .guardrail-svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    color: var(--secondary);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.guardrail-svg-red {
    color: #FF4444 !important;
}

.guardrail-svg-red svg {
    stroke: #FF4444 !important;
}

.ai-guardrail:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(5px);
}

.ai-guardrail:hover .guardrail-svg {
    opacity: 1;
    transform: scale(1.1);
}

/* Team Section */
.team-tagline {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 5rem;
    font-style: italic;
}

.team-members {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-bottom: 5rem;
}

.team-member {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(30px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem;
    border-radius: 24px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.member-image {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 2.5rem;
    border: 4px solid rgba(0, 255, 136, 0.4);
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 0 15px 50px rgba(0, 255, 136, 0.2);
}

.member-image img {
    object-fit: cover;
    object-position: center top;
}

.team-member:nth-child(2) .member-image img {
    object-position: center 30%;
}

.member-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-1);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.member-image:hover::before {
    opacity: 0.2;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.member-image:hover img {
    transform: scale(1.1);
}

.team-member:hover .member-image {
    border-color: rgba(0, 255, 136, 0.6);
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.3);
}

.team-member::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-1);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.team-member:hover::before {
    transform: scaleX(1);
}

.team-member:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 255, 136, 0.3);
    box-shadow: 0 20px 60px rgba(0, 255, 136, 0.15);
}

.member-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.8rem;
    position: relative;
    z-index: 1;
}

.member-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.2rem;
    position: relative;
    z-index: 1;
}

.member-bio {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
    font-size: 1rem;
    position: relative;
    z-index: 1;
}

.advisory-bench {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(30px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 4rem;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
}

.advisory-visual {
    text-align: center;
    margin-bottom: 3rem;
}

.advisory-player-showcase {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto;
    border: 3px solid rgba(0, 255, 136, 0.4);
    box-shadow: 0 15px 40px rgba(0, 255, 136, 0.2);
}

.advisory-player-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.advisory-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 3rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.95);
}

.advisory-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.advisory-item {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    text-align: center;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 255, 136, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.advisory-icon {
    width: 48px;
    height: 48px;
    color: var(--primary);
    opacity: 0.8;
}

.advisory-item:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-8px);
    border-color: rgba(0, 255, 136, 0.4);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.15);
}

/* Model Section */
.model-player-image {
    width: 100%;
    max-width: 600px;
    margin: 0 auto 5rem;
    border-radius: 24px;
    overflow: hidden;
    border: 3px solid rgba(0, 255, 136, 0.3);
    box-shadow: 
        0 25px 70px rgba(0, 255, 136, 0.2),
        0 0 0 1px rgba(0, 255, 136, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.model-player-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
    pointer-events: none;
}

.model-player-image:hover::before {
    opacity: 1;
}

.model-player-image:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(0, 255, 136, 0.5);
    box-shadow: 
        0 35px 100px rgba(0, 255, 136, 0.3),
        0 0 0 1px rgba(0, 255, 136, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.model-player-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    position: relative;
    z-index: 0;
    transition: transform 0.5s ease;
}

.model-player-image:hover .model-player-img {
    transform: scale(1.05);
}

.model-principle {
    text-align: center;
    margin-bottom: 5rem;
    padding: 4rem;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(30px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    position: relative;
    overflow: hidden;
}

.model-principle::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.1), transparent);
    animation: rotate 30s linear infinite;
}

.principle-icon {
    width: 96px;
    height: 96px;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    color: var(--accent);
    opacity: 0.8;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.principle-icon svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
}

.model-principle:hover .principle-icon {
    opacity: 1;
    transform: scale(1.1) rotate(10deg);
    color: var(--accent);
}

.principle-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.principle-text {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.7);
    position: relative;
    z-index: 1;
}

.model-phases {
    display: grid;
    gap: 3rem;
    margin-bottom: 5rem;
}

.phase-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(30px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 4rem;
    border-radius: 24px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.phase-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-1);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.phase-card:hover::before {
    transform: scaleX(1);
}

.phase-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 255, 136, 0.3);
    box-shadow: 0 25px 70px rgba(0, 255, 136, 0.15);
}

.phase-number {
    display: inline-block;
    padding: 0.6rem 2rem;
    background: var(--gradient-1);
    color: white;
    border-radius: 100px;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    font-family: 'Space Grotesk', sans-serif;
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.3);
}

.phase-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.95);
}

.phase-details {
    margin-bottom: 2.5rem;
}

.phase-item {
    margin-bottom: 2rem;
}

.phase-item strong {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.phase-item p {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
    font-size: 1rem;
}

.phase-benefits {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.phase-benefits p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.8rem;
    line-height: 1.8;
    font-size: 1rem;
}

.model-why {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(30px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 4rem;
    border-radius: 24px;
}

.why-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 4rem;
    color: rgba(255, 255, 255, 0.95);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

@media (max-width: 1200px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.why-item {
    text-align: center;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.why-item:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(0, 255, 136, 0.3);
    box-shadow: 0 15px 50px rgba(0, 255, 136, 0.15);
}

.why-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 1.5rem;
    color: var(--primary);
    opacity: 0.7;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.why-icon svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
}

.why-item:hover .why-icon {
    opacity: 1;
    transform: scale(1.15) rotate(-5deg);
    color: var(--primary-light);
}

.why-heading {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: rgba(255, 255, 255, 0.95);
}

.why-text {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
    font-size: 1rem;
}

/* Financial Section */
.financial-image {
    width: 100%;
    max-width: 600px;
    margin: 0 auto 5rem;
    border-radius: 24px;
    overflow: hidden;
    border: 3px solid rgba(0, 255, 136, 0.3);
    box-shadow: 
        0 25px 70px rgba(0, 255, 136, 0.2),
        0 0 0 1px rgba(0, 255, 136, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.financial-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
    pointer-events: none;
}

.financial-image:hover::before {
    opacity: 1;
}

.financial-image:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(0, 255, 136, 0.5);
    box-shadow: 
        0 35px 100px rgba(0, 255, 136, 0.3),
        0 0 0 1px rgba(0, 255, 136, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.financial-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    position: relative;
    z-index: 0;
    transition: transform 0.5s ease;
}

.financial-image:hover .financial-img {
    transform: scale(1.05);
}

.financial-tagline {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    text-align: center;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 5rem;
}

.financial-projections {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-bottom: 5rem;
}

.projection-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(30px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 4rem 3rem;
    border-radius: 24px;
    text-align: center;
    border-top: 4px solid;
    border-image: var(--gradient-1) 1;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.projection-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-1);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.projection-card:hover::before {
    opacity: 0.1;
}

.projection-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(0, 255, 136, 0.4);
    box-shadow: 0 25px 70px rgba(0, 255, 136, 0.25);
}

.projection-year {
    position: relative;
    z-index: 1;
    font-size: 1.1rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: 'Space Grotesk', sans-serif;
}

.projection-revenue {
    position: relative;
    z-index: 1;
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.projection-details {
    position: relative;
    z-index: 1;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.projection-monthly {
    position: relative;
    z-index: 1;
    font-size: 1.2rem;
    font-weight: 600;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Space Grotesk', sans-serif;
}

.financial-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.highlight {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(30px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
}

.highlight:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 255, 136, 0.3);
    box-shadow: 0 20px 60px rgba(0, 255, 136, 0.15);
}

.highlight-value {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.8rem;
}

.highlight-label {
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
    font-size: 0.95rem;
}

/* Roadmap Section - Road Design */
.road-container {
    position: relative;
    max-width: 1400px;
    margin: 4rem auto;
    perspective: 1000px;
}

.road-surface {
    position: relative;
    background: linear-gradient(to bottom, 
        #1a1a1a 0%,
        #2a2a2a 20%,
        #1f1f1f 50%,
        #2a2a2a 80%,
        #1a1a1a 100%);
    border-radius: 20px;
    padding: 6rem 4rem;
    overflow: hidden;
    box-shadow: 
        0 0 0 2px rgba(0, 255, 136, 0.2),
        inset 0 0 100px rgba(0, 0, 0, 0.8),
        0 30px 80px rgba(0, 0, 0, 0.6);
    border: 3px solid rgba(0, 255, 136, 0.1);
}

.road-texture {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 2px,
            rgba(255, 255, 255, 0.02) 2px,
            rgba(255, 255, 255, 0.02) 4px
        ),
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 10px,
            rgba(0, 0, 0, 0.1) 10px,
            rgba(0, 0, 0, 0.1) 11px
        );
    pointer-events: none;
    opacity: 0.3;
}

.road-center-line {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 100%;
    background: repeating-linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.8) 0px,
        rgba(255, 255, 255, 0.8) 40px,
        transparent 40px,
        transparent 80px
    );
    animation: roadLineMove 2s linear infinite;
    z-index: 1;
}

@keyframes roadLineMove {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 0 80px;
    }
}

.road-lane-marker {
    position: absolute;
    top: 0;
    height: 100%;
    width: 2px;
    background: repeating-linear-gradient(
        to bottom,
        rgba(0, 255, 136, 0.3) 0px,
        rgba(0, 255, 136, 0.3) 20px,
        transparent 20px,
        transparent 40px
    );
    animation: roadLineMove 1.5s linear infinite;
    z-index: 1;
}

.road-lane-marker:first-of-type {
    left: 25%;
}

.road-lane-marker:last-of-type {
    right: 25%;
}

.road-milestone {
    position: relative;
    margin-bottom: 8rem;
    z-index: 2;
}

.road-milestone:last-child {
    margin-bottom: 0;
}

.milestone-sign {
    position: absolute;
    left: 50%;
    top: -60px;
    transform: translateX(-50%);
    z-index: 10;
    animation: signSway 3s ease-in-out infinite;
}

@keyframes signSway {
    0%, 100% {
        transform: translateX(-50%) rotate(-1deg);
    }
    50% {
        transform: translateX(-50%) rotate(1deg);
    }
}

.sign-post {
    width: 8px;
    height: 120px;
    background: linear-gradient(to right, #444, #222);
    margin: 0 auto;
    border-radius: 4px;
    box-shadow: 
        2px 0 4px rgba(0, 0, 0, 0.5),
        inset -2px 0 4px rgba(255, 255, 255, 0.1);
    position: relative;
}

.sign-post::before {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 10px;
    background: #333;
    border-radius: 0 0 5px 5px;
}

.sign-board {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 180px;
    height: 100px;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.95), rgba(0, 204, 102, 0.95));
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 10px 30px rgba(0, 255, 136, 0.4),
        inset 0 2px 10px rgba(255, 255, 255, 0.2);
    font-family: 'Space Grotesk', sans-serif;
    text-align: center;
}

.sign-year {
    font-size: 1.4rem;
    font-weight: 800;
    color: #000;
    letter-spacing: 2px;
    margin-bottom: 0.3rem;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.3);
}

.sign-distance {
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.7);
    letter-spacing: 1px;
}

.milestone-content {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px) saturate(180%);
    border: 2px solid rgba(0, 255, 136, 0.2);
    padding: 3.5rem;
    border-radius: 20px;
    margin-top: 4rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.milestone-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(0, 255, 136, 0.1),
        transparent
    );
    transition: left 0.6s ease;
}

.milestone-content:hover::before {
    left: 100%;
}

.milestone-content:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 255, 136, 0.5);
    box-shadow: 
        0 20px 60px rgba(0, 255, 136, 0.3),
        0 0 40px rgba(0, 255, 136, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.roadmap-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 10px rgba(0, 255, 136, 0.3);
}

.roadmap-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.95);
}

.roadmap-list {
    list-style: none;
}

.roadmap-list li {
    padding: 1rem 0;
    padding-left: 2rem;
    position: relative;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.roadmap-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    font-size: 1.2rem;
}

.roadmap-list li:hover {
    color: rgba(255, 255, 255, 0.9);
    transform: translateX(5px);
}

/* Ask Section */
.ask-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-bottom: 5rem;
}

.ask-item {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(30px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem;
    border-radius: 24px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.ask-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-1);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.ask-item:hover::before {
    transform: scaleX(1);
}

.ask-item:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 255, 136, 0.4);
    box-shadow: 0 25px 70px rgba(0, 255, 136, 0.2);
}

.ask-icon {
    width: 72px;
    height: 72px;
    margin-bottom: 1.5rem;
    color: var(--primary);
    opacity: 0.7;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.ask-icon svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
}

.ask-item:hover .ask-icon {
    opacity: 1;
    transform: scale(1.15) rotate(5deg);
    color: var(--primary-light);
}

.ask-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.95);
}

.ask-text {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
    font-size: 1rem;
}

.ask-vision {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(30px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 4rem;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
}

.ask-vision::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-1);
}

.ask-vision-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.95);
    position: relative;
}

.ask-vision-items {
    display: grid;
    gap: 2rem;
}

.vision-item {
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
    line-height: 1.8;
    border-left: 4px solid;
    border-image: var(--gradient-1) 1;
    transition: all 0.4s ease;
    position: relative;
    font-weight: 400;
}

.vision-item::before {
    content: '→';
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--primary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.vision-item:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateX(15px);
    color: rgba(255, 255, 255, 1);
    padding-left: 3.5rem;
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.15);
}

.vision-item:hover::before {
    opacity: 1;
}

/* Footer */
.footer {
    background: var(--bg-darker);
    color: white;
    padding: 4rem 2rem;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    letter-spacing: 4px;
    margin-bottom: 1rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-logo .compass-icon {
    width: 20px;
    height: 20px;
    color: var(--primary);
    flex-shrink: 0;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1rem;
    font-weight: 300;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

/* Scroll animations */
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
    .nav-links {
        gap: 2rem;
    }
    
    .hero-stats {
        gap: 1.5rem;
    }
    
    .roadmap-year {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .roadmap-year-number {
        text-align: left;
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .nav-container {
        padding: 1.5rem 2rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .section {
        padding: 5rem 1.5rem;
    }
    
    .section-header {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 4rem;
    }
    
    .stat-glass {
        min-width: auto;
        width: 100%;
    }
    
    .member-image {
        width: 220px;
        height: 220px;
    }
    
    .player-image {
        width: 90px;
        height: 90px;
    }
    
    .feature-image {
        gap: 1rem;
    }
    
    .problem-image,
    .solution-main-image {
        max-width: 100%;
    }
}
