        :root {
            --bg: #030307;
            --text: #f8f8f8;
            --dim: #6b7280;
            --line: #1f1f2e;
            --accent: #a78bfa;
            --accent2: #22d3ee;
            --gradient1: rgba(167, 139, 250, 0.3);
            --gradient2: rgba(34, 211, 238, 0.2);
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body {
            font-family: 'Geist', -apple-system, sans-serif;
            background: var(--bg);
            color: var(--text);
            min-height: 100vh;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }

        /* ===== PARALLAX LAYERS ===== */
        .parallax-layer {
            position: fixed;
            top: 0; left: 0;
            width: 100%; height: 100%;
            pointer-events: none;
            z-index: 0;
        }

        .parallax-layer.back {
            z-index: 0;
        }

        .parallax-layer.mid {
            z-index: 1;
        }

        .parallax-layer.front {
            z-index: 2;
        }

        /* Floating shapes */
        .float-shape {
            position: absolute;
            border-radius: 50%;
            pointer-events: none;
        }

        .shape-orb {
            background: radial-gradient(circle, var(--gradient1), transparent 70%);
            width: 600px;
            height: 600px;
        }

        .shape-orb-2 {
            background: radial-gradient(circle, var(--gradient2), transparent 70%);
            width: 400px;
            height: 400px;
        }

        /* Grid */
        .grid-pattern {
            position: absolute;
            top: 0; left: 0;
            width: 100%; height: 100%;
            background-image: 
                linear-gradient(var(--line) 1px, transparent 1px),
                linear-gradient(90deg, var(--line) 1px, transparent 1px);
            background-size: 80px 80px;
            opacity: 0.3;
        }

        /* Floating particles */
        .particle {
            position: absolute;
            width: 4px;
            height: 4px;
            background: var(--accent);
            border-radius: 50%;
            opacity: 0.6;
        }

        .particle-2 {
            background: var(--accent2);
            width: 3px;
            height: 3px;
        }

        /* ===== CONTAINER ===== */
        .container {
            position: relative;
            z-index: 10;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 3rem;
        }

        /* ===== NAV ===== */
        nav {
            position: fixed;
            top: 0; left: 0; right: 0;
            z-index: 100;
            padding: 1.5rem 3rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: rgba(3, 3, 7, 0.8);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--line);
        }

        .logo {
            font-size: 0.625rem;
            font-weight: 700;
            letter-spacing: 0.4em;
            text-transform: uppercase;
            color: var(--text);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .logo-mark {
            width: 1.5rem; height: 1.5rem;
            background: linear-gradient(135deg, var(--accent), var(--accent2));
            border-radius: 4px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .logo-mark span {
            width: 6px; height: 6px;
            background: var(--bg);
            border-radius: 50%;
        }

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

        .nav-links a {
            font-size: 0.625rem;
            letter-spacing: 0.2em;
            color: var(--dim);
            text-decoration: none;
            transition: color 0.3s;
        }

        .nav-links a:hover {
            color: var(--text);
        }

        /* ===== HERO ===== */
        .hero {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            position: relative;
            padding-top: 6rem;
        }

        .hero-bg-text {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: clamp(10rem, 30vw, 25rem);
            font-weight: 900;
            letter-spacing: -0.1em;
            color: var(--line);
            white-space: nowrap;
            pointer-events: none;
            user-select: none;
            z-index: 0;
        }

        .hero-content {
            position: relative;
            z-index: 5;
        }

        .hero-label {
            font-size: 0.5625rem;
            letter-spacing: 0.5em;
            text-transform: uppercase;
            color: var(--accent);
            margin-bottom: 3rem;
            opacity: 0;
            transform: translateY(30px);
            animation: slideUp 1s ease-out 0.2s forwards;
        }

        .hero-title {
            font-size: clamp(4rem, 15vw, 12rem);
            font-weight: 900;
            letter-spacing: -0.06em;
            line-height: 0.9;
            position: relative;
        }

        .hero-title .line {
            display: block;
            overflow: hidden;
        }

        .hero-title .line .inner {
            display: block;
            transform: translateY(100%);
            animation: slideUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
        }

        .hero-title .line:nth-child(1) .inner { animation-delay: 0.3s; }
        .hero-title .line:nth-child(2) .inner { animation-delay: 0.5s; }
        .hero-title .line:nth-child(3) .inner { animation-delay: 0.7s; }

        @keyframes slideUp {
            to { transform: translateY(0); }
        }

        .hero-title .line:nth-child(2) {
            color: var(--accent);
            padding-left: 20%;
        }

        .hero-title .line:nth-child(3) {
            font-size: 0.25em;
            letter-spacing: 0.15em;
            color: var(--dim);
            margin-left: 10%;
        }

        .hero-bottom {
            margin-top: 5rem;
            padding-top: 3rem;
            border-top: 1px solid var(--line);
            display: grid;
            grid-template-columns: 1.5fr 1fr;
            gap: 4rem;
            opacity: 0;
            animation: fadeIn 1s ease-out 1s forwards;
        }

        @keyframes fadeIn {
            to { opacity: 1; }
        }

        .hero-desc {
            font-size: 1rem;
            color: var(--dim);
            line-height: 1.9;
            max-width: 40ch;
        }

        .hero-actions {
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            gap: 1rem;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 1rem;
            padding: 1rem 2.5rem;
            font-size: 0.625rem;
            font-weight: 600;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            text-decoration: none;
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            position: relative;
            overflow: hidden;
        }

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

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

        .btn-primary {
            background: linear-gradient(135deg, var(--accent), var(--accent2));
            color: var(--bg);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 20px 40px rgba(167, 139, 250, 0.3);
        }

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

        .btn-secondary:hover {
            border-color: var(--accent);
            transform: translateY(-2px);
        }

        /* ===== SECTION ===== */
        section {
            padding: 10rem 0;
            border-top: 1px solid var(--line);
            position: relative;
        }

        .section-label {
            font-size: 0.5rem;
            letter-spacing: 0.5em;
            text-transform: uppercase;
            color: var(--accent2);
            margin-bottom: 2rem;
        }

        .section-title {
            font-size: clamp(2.5rem, 7vw, 5rem);
            font-weight: 800;
            letter-spacing: -0.05em;
            line-height: 1;
        }

        /* ===== FEATURES ===== */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1px;
            background: var(--line);
            margin-top: 4rem;
        }

        .feature {
            background: var(--bg);
            padding: 2.5rem;
            position: relative;
            overflow: hidden;
            transition: all 0.4s;
        }

        .feature::before {
            content: '';
            position: absolute;
            top: 0; left: 0;
            width: 100%; height: 100%;
            background: linear-gradient(135deg, var(--gradient1), transparent);
            opacity: 0;
            transition: opacity 0.4s;
        }

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

        .feature:hover {
            background: #0a0a15;
            transform: translateY(-5px);
        }

        .feature-content {
            position: relative;
            z-index: 1;
        }

        .feature-num {
            font-size: 0.5rem;
            letter-spacing: 0.3em;
            color: var(--accent);
            margin-bottom: 1.5rem;
        }

        .feature h3 {
            font-size: 1.125rem;
            font-weight: 700;
            margin-bottom: 0.75rem;
            letter-spacing: -0.02em;
        }

        .feature p {
            font-size: 0.8125rem;
            color: var(--dim);
            line-height: 1.8;
        }

        /* ===== NETWORK ===== */
        .network-visual {
            margin-top: 5rem;
            height: 450px;
            position: relative;
            border: 1px solid var(--line);
            border-radius: 12px;
            overflow: hidden;
            background: rgba(0, 0, 0, 0.3);
        }

        #network-canvas {
            width: 100%;
            height: 100%;
        }

        .network-overlay {
            position: absolute;
            bottom: 2rem;
            left: 2rem;
            pointer-events: none;
        }

        .network-overlay h3 {
            font-size: 0.5rem;
            letter-spacing: 0.3em;
            text-transform: uppercase;
            color: var(--accent);
        }

        /* ===== STATS ===== */
        .stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1px;
            background: var(--line);
        }

        .stat {
            background: var(--bg);
            padding: 4rem 3rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .stat::before {
            content: '';
            position: absolute;
            top: 0; left: 0;
            width: 100%; height: 100%;
            background: radial-gradient(circle at center, var(--gradient1), transparent 70%);
            opacity: 0;
            transition: opacity 0.4s;
        }

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

        .stat:hover {
            background: #0a0a15;
        }

        .stat-content {
            position: relative;
            z-index: 1;
        }

        .stat h3 {
            font-size: clamp(4rem, 10vw, 8rem);
            font-weight: 900;
            letter-spacing: -0.06em;
            line-height: 1;
            background: linear-gradient(135deg, var(--text), var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .stat:hover h3 {
            background: linear-gradient(135deg, var(--accent), var(--accent2));
            -webkit-background-clip: text;
        }

        .stat p {
            font-size: 0.5rem;
            letter-spacing: 0.4em;
            text-transform: uppercase;
            color: var(--dim);
            margin-top: 1rem;
        }

        /* ===== WAITLIST ===== */
        .waitlist {
            padding: 12rem 0;
            text-align: center;
            position: relative;
        }

        .waitlist h2 {
            font-size: clamp(3rem, 8vw, 6rem);
            font-weight: 900;
            letter-spacing: -0.05em;
            margin-bottom: 1.5rem;
        }

        .waitlist p {
            font-size: 0.875rem;
            color: var(--dim);
            margin-bottom: 4rem;
        }

        .waitlist-form {
            display: flex;
            max-width: 500px;
            margin: 0 auto;
        }

        .waitlist-input {
            flex: 1;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid var(--line);
            border-right: none;
            padding: 1.25rem 1.5rem;
            color: var(--text);
            font-size: 0.9375rem;
            font-family: inherit;
            text-align: center;
            transition: all 0.3s;
        }

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

        .waitlist-input::placeholder {
            color: var(--dim);
        }

        .waitlist-btn {
            background: linear-gradient(135deg, var(--accent), var(--accent2));
            color: var(--bg);
            border: none;
            padding: 1.25rem 2.5rem;
            font-size: 0.625rem;
            font-weight: 700;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            cursor: pointer;
            transition: all 0.4s;
        }

        .waitlist-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 15px 30px rgba(167, 139, 250, 0.4);
        }

        /* ===== FOOTER ===== */
        footer {
            padding: 3rem;
            border-top: 1px solid var(--line);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .footer-text {
            font-size: 0.5625rem;
            letter-spacing: 0.25em;
            text-transform: uppercase;
            color: var(--dim);
        }

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

        .footer-links a {
            font-size: 0.5625rem;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: var(--dim);
            text-decoration: none;
            transition: color 0.2s;
        }

        .footer-links a:hover {
            color: var(--text);
        }

        /* ===== SCROLL REVEAL ===== */
        .reveal {
            opacity: 0;
            transform: translateY(80px);
            transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        .reveal-left {
            opacity: 0;
            transform: translateX(-60px);
            transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .reveal-left.active {
            opacity: 1;
            transform: translateX(0);
        }

        .reveal-right {
            opacity: 0;
            transform: translateX(60px);
            transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .reveal-right.active {
            opacity: 1;
            transform: translateX(0);
        }

        .reveal-scale {
            opacity: 0;
            transform: scale(0.8);
            transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .reveal-scale.active {
            opacity: 1;
            transform: scale(1);
        }

        .delay-1 { transition-delay: 0.1s; }
        .delay-2 { transition-delay: 0.2s; }
        .delay-3 { transition-delay: 0.3s; }
        .delay-4 { transition-delay: 0.4s; }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 1024px) {
            .features-grid { grid-template-columns: repeat(2, 1fr); }
            .hero-bottom { grid-template-columns: 1fr; gap: 2rem; }
            .hero-actions { align-items: flex-start; flex-direction: row; }
        }

        @media (max-width: 768px) {
            .container, nav, footer { padding-left: 1.5rem; padding-right: 1.5rem; }
            .features-grid { grid-template-columns: 1fr; }
            .stats { grid-template-columns: 1fr; }
            .hero-title .line:nth-child(2) { padding-left: 10%; }
            .waitlist-form { flex-direction: column; }
            .waitlist-input { border: 1px solid var(--line); border-bottom: none; }
            footer { flex-direction: column; gap: 1.5rem; text-align: center; }
        }
