:root {
    --primary: #00E5FF;
    --accent: #2979FF;
    --bg-dark: #050505;
    --text-white: #ffffff;
    --text-muted: #888888;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08)
}

body {
    background: var(--bg-dark);
    color: var(--text-white);
    overflow-x: hidden;
    scroll-behavior: smooth;
    font-family: 'Inter', system-ui, sans-serif
}

.landing-page-wrapper {
    position: relative;
    z-index: 1
}

.noise {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/img/noise.png');
    opacity: .05;
    pointer-events: none;
    z-index: -1
}

.cyber-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to right, rgba(0, 229, 255, .03) 1px, transparent 1px), linear-gradient(to bottom, rgba(0, 229, 255, .03) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: -1;
    pointer-events: none
}

#neuro-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    opacity: .2
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem
}

.gradient-text {
    background: linear-gradient(to right, #fff, var(--primary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent
}

.glass-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(12px);
    border-radius: 24px;
    transition: .3s
}

.glass-card:hover {
    border-color: rgba(0, 229, 255, .3);
    background: rgba(255, 255, 255, .05)
}

.accent-text {
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: .9rem;
    font-weight: 900
}

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 0
}

.glass-hero-card {
    background: rgba(255, 255, 255, .02);
    border: 1px solid rgba(255, 255, 255, .05);
    backdrop-filter: blur(20px);
    padding: 6rem 3rem;
    border-radius: 40px;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    box-shadow: 0 40px 100px rgba(0, 0, 0, .5)
}

.hero-section h1 {
    font-size: clamp(3.5rem, 9vw, 6.5rem);
    line-height: .85;
    font-weight: 900;
    margin: 2rem 0;
    letter-spacing: -2px
}

.hero-p {
    font-size: 1.3rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 4rem;
    line-height: 1.5
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 5rem
}

.stat span {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: .5rem
}

.stat {
    font-size: .8rem;
    letter-spacing: 3px;
    color: #666;
    font-weight: 700
}

.moat-section {
    padding-top: 30px
}

.market-viz {
    margin-top: 4rem
}

.market-circle {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 2px solid var(--primary);
    background: rgba(0, 229, 255, .05);
    transition: .4s;
    backdrop-filter: blur(10px)
}

.market-circle:hover {
    transform: scale(1.05) translateY(-10px);
    background: rgba(0, 229, 255, .1);
    box-shadow: 0 0 60px rgba(0, 229, 255, .2)
}

.tam {
    width: 320px;
    height: 320px
}

.sam {
    width: 260px;
    height: 260px;
    border-color: #2979ff;
    background: rgba(41, 121, 255, .05)
}

.som {
    width: 200px;
    height: 200px;
    border-color: #fff;
    background: rgba(255, 255, 255, .05)
}

.c-label {
    font-size: 1rem;
    font-weight: 900;
    color: #555
}

.c-val {
    font-size: 2.8rem;
    font-weight: 900;
    margin: .5rem 0;
    color: #fff
}

.c-desc {
    font-size: .8rem;
    color: #777;
    padding: 0 1.5rem;
    line-height: 1.2
}

.comp-table {
    border-collapse: separate;
    border-spacing: 0 12px
}

.comp-table th {
    padding: 2rem;
    font-size: .75rem;
    font-weight: 900;
    color: #444
}

.comp-table td {
    padding: 2.5rem 2rem;
    background: rgba(255, 255, 255, .015);
    border-top: 1px solid rgba(255, 255, 255, .05);
    border-bottom: 1px solid rgba(255, 255, 255, .05)
}

.comp-table tr td:first-child {
    border-left: 1px solid rgba(255, 255, 255, .05);
    border-radius: 20px 0 0 20px
}

.comp-table tr td:last-child {
    border-right: 1px solid rgba(255, 255, 255, .05);
    border-radius: 0 20px 20px 0
}

.comp-table tr:hover td {
    background: rgba(0, 229, 255, .03);
    border-color: rgba(0, 229, 255, .2)
}

.feature-section {
    padding: 10rem 0
}

.glass-img {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, .6);
    border: 1px solid rgba(255, 255, 255, .1)
}

.card-glow::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110%;
    height: 110%;
    background: radial-gradient(circle, var(--primary) 0, transparent 60%);
    opacity: .08;
    z-index: -1
}

.roadmap-line {
    display: flex;
    justify-content: space-between;
    position: relative
}

.roadmap-line::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, .1)
}

.roadmap-step {
    flex: 1;
    position: relative;
    padding-top: 3rem
}

.roadmap-step::before {
    content: '';
    position: absolute;
    top: -5px;
    left: 0;
    width: 10px;
    height: 10px;
    background: #111;
    border: 2px solid #333;
    border-radius: 50%
}

.roadmap-step.done::before {
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 0 20px var(--primary)
}

.roadmap-step.active::before {
    background: #fff;
    border-color: #fff;
    box-shadow: 0 0 20px #fff
}

.btn-invest-new {
    background: var(--primary);
    color: #000;
    border-radius: 100px;
    font-weight: 900;
    text-decoration: none;
    transition: .4s cubic-bezier(.175, .885, .32, 1.275);
    display: inline-block
}

.btn-invest-new:hover {
    box-shadow: 0 0 40px rgba(0, 229, 255, .5);
    transform: translateY(-5px) scale(1.02)
}

.btn-outline-invest {
    border: 1px solid rgba(255, 255, 255, .1);
    color: #fff;
    border-radius: 100px;
    font-weight: 900;
    text-decoration: none;
    transition: .4s;
    display: inline-block
}

.btn-outline-invest:hover {
    background: rgba(255, 255, 255, .05);
    border-color: #fff
}

.agent-terminal {
    background: #080808;
    border: 1px solid rgba(0, 229, 255, .2);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .5)
}

.terminal-header {
    background: #111;
    padding: .8rem 1.2rem;
    display: flex;
    gap: 10px;
    align-items: center
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%
}

.red {
    background: #ff5f56
}

.yellow {
    background: #ffbd2e
}

.green {
    background: #27c93f
}

.terminal-title {
    margin-left: auto;
    font-size: .75rem;
    color: #444;
    font-family: 'Space Mono', monospace
}

.badge {
    background: rgba(41, 121, 255, .1);
    color: #2979ff;
    border: 1px solid rgba(41, 121, 255, .2);
    padding: .6rem 1.5rem;
    border-radius: 50px;
    font-size: .75rem;
    font-weight: 900;
    letter-spacing: 4px
}

@media (max-width:1024px) {
    .hero-stats {
        gap: 2rem
    }

    .sam,
    .som,
    .tam {
        width: 220px;
        height: 220px
    }
}

@media (max-width:768px) {
    .hero-section h1 {
        font-size: 3.5rem
    }

    .stat span {
        font-size: 1.8rem
    }

    .hero-stats {
        flex-direction: column;
        gap: 3rem
    }

    .market-viz {
        flex-direction: column;
        gap: 2rem
    }

    .roadmap-line {
        flex-direction: column;
        gap: 5rem;
        padding-left: 2rem
    }

    .roadmap-line::before {
        width: 1px;
        height: 100%;
        left: 4px
    }

    .roadmap-step::before {
        left: -21px;
        top: 0
    }

    .comp-table td,
    .comp-table th {
        padding: 1rem;
        font-size: .7rem
    }
}