        :root {
            --bg: #0c0c1e;
            --text: #f7f7f7;
            --dim: #8a8aa3;
            --line: #1f1f3a;
            --accent1: #ff6b6b;
            --accent2: #4ecdc4;
            --accent3: #ffe66d;
            --glass: rgba(255, 255, 255, 0.05);
            --glass-border: rgba(255, 255, 255, 0.1);
        }

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

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

        /* ===== 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: 2rem 3rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: rgba(12, 12, 30, 0.8);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--glass-border);
        }

        .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(--accent1), var(--accent2));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .logo-mark span {
            width: 5px; height: 5px;
            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: all 0.3s;
            padding: 0.5rem 0;
        }

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

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

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

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

        .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.1s 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.55s; }
        .hero-title .line:nth-child(3) .inner { animation-delay: 0.8s; }

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

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

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

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

        .hero-desc {
            font-size: 1rem;
            color: var(--dim);
            line-height: 2;
            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: 1.25rem 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);
            border-radius: 100px;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--accent1), var(--accent2));
            color: var(--bg);
            box-shadow: 0 10px 40px rgba(255, 107, 107, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-3px) scale(1.02);
            box-shadow: 0 15px 50px rgba(255, 107, 107, 0.4);
        }

        .btn-secondary {
            background: var(--glass);
            color: var(--text);
            border: 1px solid var(--glass-border);
            backdrop-filter: blur(10px);
        }

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

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

        .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: 1.5rem;
            margin-top: 4rem;
        }

        .feature {
            background: var(--glass);
            border: 1px solid var(--glass-border);
            padding: 2.5rem;
            position: relative;
            overflow: hidden;
            transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border-radius: 24px;
        }

        .feature::before {
            content: '';
            position: absolute;
            top: 0; left: 0;
            width: 100%; height: 100%;
            background: linear-gradient(135deg, var(--accent1), var(--accent2), var(--accent3));
            opacity: 0;
            transition: opacity 0.5s;
            border-radius: 24px;
        }

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

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

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

        .feature-num {
            font-size: 0.5rem;
            letter-spacing: 0.3em;
            color: var(--accent1);
            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: 400px;
            position: relative;
            border: 1px solid var(--glass-border);
            border-radius: 24px;
            overflow: hidden;
            background: var(--glass);
            backdrop-filter: blur(10px);
        }

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

        /* ===== STATS ===== */
        .stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
        }

        .stat {
            background: var(--glass);
            border: 1px solid var(--glass-border);
            padding: 4rem 3rem;
            text-align: center;
            position: relative;
            overflow: hidden;
            transition: all 0.5s;
            border-radius: 24px;
            backdrop-filter: blur(10px);
        }

        .stat::before {
            content: '';
            position: absolute;
            top: 0; left: 0;
            width: 100%; height: 4px;
            background: linear-gradient(to right, var(--accent1), var(--accent2), var(--accent3));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.5s;
        }

        .stat:hover::before {
            transform: scaleX(1);
        }

        .stat:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
        }

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

        .stat h3 span {
            -webkit-text-fill-color: var(--accent3);
        }

        .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;
        }

        .waitlist h2 {
            font-size: clamp(3rem, 8vw, 6rem);
            font-weight: 900;
            letter-spacing: -0.05em;
            margin-bottom: 2rem;
            background: linear-gradient(135deg, var(--accent1), var(--accent2), var(--accent3));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

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

        .waitlist-form {
            display: flex;
            max-width: 500px;
            margin: 0 auto;
            background: var(--glass);
            border: 1px solid var(--glass-border);
            border-radius: 100px;
            padding: 5px;
            backdrop-filter: blur(10px);
        }

        .waitlist-input {
            flex: 1;
            background: transparent;
            border: none;
            padding: 1.25rem 1.5rem;
            color: var(--text);
            font-size: 0.9375rem;
            font-family: inherit;
            text-align: center;
        }

        .waitlist-input:focus {
            outline: none;
        }

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

        .waitlist-btn {
            background: linear-gradient(135deg, var(--accent1), 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;
            border-radius: 100px;
            transition: all 0.4s;
        }

        .waitlist-btn:hover {
            box-shadow: 0 10px 40px rgba(255, 107, 107, 0.4);
            transform: scale(1.05);
        }

        /* ===== 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: all 0.2s;
        }

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

        /* ===== SCROLL REVEAL ===== */
        .reveal {
            opacity: 0;
            transform: translateY(60px);
            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: 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) {
            .features-grid { grid-template-columns: 1fr; }
            .stats { grid-template-columns: 1fr; }
            .hero-title .line:nth-child(2) { margin-left: 10%; }
            .waitlist-form { flex-direction: column; border-radius: 24px; }
            .waitlist-btn { border-radius: 24px; }
            footer { flex-direction: column; gap: 1.5rem; text-align: center; }
        }
