        :root {
            --bg: #000000;
            --text: #ffffff;
            --dim: #737373;
            --line: #171717;
            --accent: #fef3c7;
            --accent-dim: rgba(254, 243, 199, 0.15);
            --glow: rgba(254, 243, 199, 0.4);
        }

        * { 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;
        }

        /* ===== STAR FIELD CANVAS ===== */
        #starfield {
            position: fixed;
            top: 0; left: 0;
            width: 100%; height: 100%;
            z-index: 0;
            pointer-events: none;
        }

        /* ===== LIGHT RAYS ===== */
        .light-rays {
            position: fixed;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1;
            overflow: hidden;
        }

        .ray {
            position: absolute;
            top: -20%;
            width: 2px;
            height: 70%;
            background: linear-gradient(to bottom, rgba(254, 243, 199, 0.8), transparent);
            opacity: 0.15;
            transform-origin: top center;
        }

        .ray:nth-child(1) { left: 30%; transform: rotate(-15deg); }
        .ray:nth-child(2) { left: 40%; transform: rotate(-8deg); }
        .ray:nth-child(3) { left: 50%; }
        .ray:nth-child(4) { left: 60%; transform: rotate(8deg); }
        .ray:nth-child(5) { left: 70%; transform: rotate(15deg); }

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

        /* ===== NAV ===== */
        nav {
            position: fixed;
            top: 0; left: 0; right: 0;
            z-index: 100;
            padding: 2rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: transparent;
        }

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

        .logo-mark {
            width: 1.25rem; height: 1.25rem;
            border: 1px solid var(--text);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

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

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

        .nav-links a {
            font-size: 0.5625rem;
            letter-spacing: 0.25em;
            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;
            align-items: center;
            text-align: center;
            position: relative;
            padding: 0 2rem;
        }

        .hero-label {
            font-size: 0.5rem;
            letter-spacing: 0.6em;
            text-transform: uppercase;
            color: var(--accent);
            margin-bottom: 4rem;
            opacity: 0;
            animation: fadeIn 1s ease-out 0.3s forwards;
        }

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

        .hero-title {
            font-size: clamp(4rem, 18vw, 14rem);
            font-weight: 900;
            letter-spacing: -0.06em;
            line-height: 0.85;
            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.4s; }
        .hero-title .line:nth-child(2) .inner { animation-delay: 0.65s; }
        .hero-title .line:nth-child(3) .inner { animation-delay: 0.9s; }

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

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

        .hero-title .line:nth-child(3) {
            font-size: 0.2em;
            letter-spacing: 0.3em;
            color: var(--dim);
            margin-top: 0.5em;
        }

        .hero-desc {
            font-size: 1rem;
            color: var(--dim);
            max-width: 42ch;
            line-height: 2;
            margin-top: 4rem;
            opacity: 0;
            animation: fadeIn 1s ease-out 1.3s forwards;
        }

        .hero-cta {
            display: flex;
            gap: 1.5rem;
            margin-top: 4rem;
            opacity: 0;
            animation: fadeIn 1s ease-out 1.6s forwards;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            padding: 1.25rem 3rem;
            font-size: 0.5625rem;
            font-weight: 600;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            text-decoration: none;
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .btn-primary {
            background: var(--text);
            color: var(--bg);
        }

        .btn-primary:hover {
            box-shadow: 0 0 60px var(--glow);
            transform: translateY(-3px);
        }

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

        .btn-secondary:hover {
            border-color: var(--accent);
            color: var(--accent);
        }

        /* ===== DIVIDER ===== */
        .divider {
            width: 1px;
            height: 80px;
            background: linear-gradient(to bottom, transparent, var(--dim), transparent);
            margin: 0 auto;
        }

        /* ===== SECTION ===== */
        section {
            padding: 10rem 0;
            text-align: center;
        }

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

        .section-title {
            font-size: clamp(2.5rem, 8vw, 4.5rem);
            font-weight: 800;
            letter-spacing: -0.05em;
            line-height: 1;
            margin-bottom: 2rem;
        }

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

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

        .feature::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: radial-gradient(circle, var(--accent-dim), transparent 70%);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            transition: all 0.6s;
            pointer-events: none;
        }

        .feature:hover::before {
            width: 400px;
            height: 400px;
            opacity: 1;
        }

        .feature:hover {
            background: #050505;
        }

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

        .feature-num {
            font-size: 0.4375rem;
            letter-spacing: 0.4em;
            color: var(--accent);
            margin-bottom: 2rem;
        }

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

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

        /* ===== NETWORK ===== */
        .network {
            position: relative;
            margin-top: 5rem;
        }

        #network-canvas {
            width: 100%;
            height: 400px;
            border: 1px solid var(--line);
            border-radius: 8px;
        }

        .network-label {
            font-size: 0.4375rem;
            letter-spacing: 0.4em;
            text-transform: uppercase;
            color: var(--dim);
            margin-top: 2rem;
        }

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

        .stat {
            background: var(--bg);
            padding: 5rem 2rem;
            position: relative;
        }

        .stat::before {
            content: '';
            position: absolute;
            top: 0; left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 2px;
            background: var(--accent);
            transition: width 0.6s;
        }

        .stat:hover::before {
            width: 100%;
        }

        .stat h3 {
            font-size: clamp(4rem, 12vw, 8rem);
            font-weight: 900;
            letter-spacing: -0.08em;
            line-height: 1;
            color: var(--text);
            transition: all 0.3s;
        }

        .stat:hover h3 {
            text-shadow: 0 0 60px var(--glow);
        }

        .stat h3 span {
            color: var(--accent);
        }

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

        /* ===== WAITLIST ===== */
        .waitlist {
            padding: 14rem 0;
        }

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

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

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

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

        .waitlist-input:focus {
            outline: none;
            border-color: var(--accent);
        }

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

        .waitlist-btn {
            background: var(--text);
            color: var(--bg);
            border: none;
            padding: 1.25rem 2.5rem;
            font-size: 0.5625rem;
            font-weight: 700;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            cursor: pointer;
            transition: all 0.4s;
        }

        .waitlist-btn:hover {
            box-shadow: 0 0 60px var(--glow);
        }

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

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

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

        .footer-links a {
            font-size: 0.5rem;
            letter-spacing: 0.2em;
            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(50px);
            transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
        }

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

        .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: 768px) {
            .features { grid-template-columns: 1fr; }
            .stats { grid-template-columns: 1fr; }
            .hero-cta { flex-direction: column; }
            .waitlist-form { flex-direction: column; }
            .waitlist-input { border: 1px solid var(--line); border-bottom: none; }
            footer { flex-direction: column; gap: 2rem; text-align: center; }
        }
