        :root {
            --bg: #fff5f8;
            --text: #2d2d3a;
            --dim: #8a8a9a;
            --line: #f0e0e8;
            --accent1: #ff6b9d;
            --accent2: #c49bff;
            --accent3: #7dd3c0;
            --accent4: #ffd166;
            --accent5: #a8e6cf;
            --candy-gradient: linear-gradient(135deg, #ff6b9d, #c49bff, #7dd3c0);
            --glass: rgba(255, 255, 255, 0.7);
            --glass-border: rgba(255, 182, 210, 0.3);
        }

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

        /* ===== SPRINKLES CANVAS ===== */
        #sprinkles {
            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: 1100px;
            margin: 0 auto;
            padding: 0 2.5rem;
        }

        /* ===== NAV ===== */
        nav {
            position: fixed;
            top: 0; left: 0; right: 0;
            z-index: 100;
            padding: 1.5rem 2.5rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: rgba(255, 245, 248, 0.9);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 2px solid var(--glass-border);
        }

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

        .logo-mark {
            width: 2rem; height: 2rem;
            background: var(--candy-gradient);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 15px rgba(255, 107, 157, 0.3);
        }

        .logo-mark span {
            width: 8px; height: 8px;
            background: white;
            border-radius: 50%;
        }

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

        .nav-links a {
            font-size: 0.625rem;
            font-weight: 600;
            letter-spacing: 0.15em;
            color: var(--dim);
            text-decoration: none;
            transition: all 0.3s;
            padding: 0.5rem 1rem;
            border-radius: 50px;
        }

        .nav-links a:hover {
            color: var(--accent1);
            background: rgba(255, 107, 157, 0.1);
        }

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

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: var(--glass);
            border: 2px solid var(--glass-border);
            padding: 0.75rem 1.5rem;
            border-radius: 100px;
            margin: 0 auto 3rem;
            opacity: 0;
            animation: bounceIn 0.8s ease-out 0.2s forwards;
        }

        @keyframes bounceIn {
            0% { opacity: 0; transform: scale(0.8); }
            50% { transform: scale(1.05); }
            100% { opacity: 1; transform: scale(1); }
        }

        .hero-badge-dot {
            width: 8px; height: 8px;
            background: var(--accent1);
            border-radius: 50%;
            animation: pulse 2s infinite;
        }

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

        .hero-badge span {
            font-size: 0.5625rem;
            font-weight: 600;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--dim);
        }

        .hero-title {
            font-size: clamp(3.5rem, 14vw, 10rem);
            font-weight: 900;
            letter-spacing: -0.05em;
            line-height: 0.9;
            position: relative;
            opacity: 0;
            animation: slideUp 1s ease-out 0.4s forwards;
        }

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

        .hero-title .line {
            display: inline-block;
        }

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

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

        .hero-title .line:nth-child(3) {
            font-size: 0.22em;
            letter-spacing: 0.15em;
            color: var(--accent3);
            display: block;
        }

        .hero-desc {
            font-size: 1.125rem;
            color: var(--dim);
            max-width: 45ch;
            line-height: 1.9;
            margin: 3rem auto 0;
            opacity: 0;
            animation: fadeIn 1s ease-out 0.7s forwards;
        }

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

        .hero-actions {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-top: 4rem;
            opacity: 0;
            animation: fadeIn 1s ease-out 1s forwards;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            padding: 1.25rem 2.5rem;
            font-size: 0.625rem;
            font-weight: 700;
            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;
            position: relative;
            overflow: hidden;
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 50%; left: 50%;
            width: 0; height: 0;
            background: rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }

        .btn:hover::before {
            width: 300px; height: 300px;
        }

        .btn-primary {
            background: var(--candy-gradient);
            color: white;
            box-shadow: 0 8px 30px rgba(255, 107, 157, 0.35);
        }

        .btn-primary:hover {
            transform: translateY(-4px) scale(1.02);
            box-shadow: 0 15px 40px rgba(255, 107, 157, 0.45);
        }

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

        .btn-secondary:hover {
            transform: translateY(-3px);
            border-color: var(--accent2);
            box-shadow: 0 10px 30px rgba(196, 155, 255, 0.2);
        }

        /* ===== SECTION ===== */
        section {
            padding: 8rem 0;
        }

        .section-label {
            font-size: 0.5rem;
            font-weight: 700;
            letter-spacing: 0.4em;
            text-transform: uppercase;
            background: var(--candy-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-align: center;
            margin-bottom: 1.5rem;
        }

        .section-title {
            font-size: clamp(2rem, 6vw, 4rem);
            font-weight: 800;
            letter-spacing: -0.04em;
            line-height: 1.1;
            text-align: center;
            margin-bottom: 4rem;
        }

        /* ===== FEATURES ===== */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.5rem;
        }

        .feature {
            background: var(--glass);
            border: 2px solid var(--glass-border);
            padding: 2.5rem 2rem;
            border-radius: 24px;
            text-align: center;
            transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
            position: relative;
            overflow: hidden;
        }

        .feature::before {
            content: '';
            position: absolute;
            top: -50%; left: -50%;
            width: 200%; height: 200%;
            background: conic-gradient(from 0deg, transparent, rgba(255,255,255,0.1), transparent 30%);
            animation: rotate 6s linear infinite;
            opacity: 0;
            transition: opacity 0.5s;
        }

        @keyframes rotate {
            100% { transform: rotate(360deg); }
        }

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

        .feature:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 50px rgba(196, 155, 255, 0.2);
            border-color: var(--accent1);
        }

        .feature-icon {
            width: 60px; height: 60px;
            background: var(--candy-gradient);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 1.5rem;
            box-shadow: 0 8px 20px rgba(255, 107, 157, 0.25);
        }

        .feature h3 {
            font-size: 1.125rem;
            font-weight: 700;
            margin-bottom: 0.75rem;
            color: var(--text);
        }

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

        /* ===== NETWORK ===== */
        .network-visual {
            margin-top: 4rem;
            height: 350px;
            position: relative;
            background: var(--glass);
            border: 2px solid var(--glass-border);
            border-radius: 24px;
            overflow: hidden;
        }

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

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

        .stat {
            background: var(--glass);
            border: 2px solid var(--glass-border);
            padding: 3rem 2rem;
            border-radius: 24px;
            text-align: center;
            transition: all 0.4s;
        }

        .stat:hover {
            transform: translateY(-8px);
            border-color: var(--accent3);
            box-shadow: 0 20px 40px rgba(125, 211, 192, 0.2);
        }

        .stat-icon {
            font-size: 2rem;
            margin-bottom: 1rem;
        }

        .stat h3 {
            font-size: clamp(3rem, 8vw, 5rem);
            font-weight: 900;
            letter-spacing: -0.05em;
            line-height: 1;
            background: var(--candy-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

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

        /* ===== WAITLIST ===== */
        .waitlist {
            padding: 10rem 0;
            text-align: center;
            background: linear-gradient(180deg, transparent, rgba(255, 107, 157, 0.05), rgba(196, 155, 255, 0.05));
        }

        .waitlist h2 {
            font-size: clamp(2.5rem, 7vw, 4.5rem);
            font-weight: 900;
            letter-spacing: -0.04em;
            margin-bottom: 1.5rem;
            background: var(--candy-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

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

        .waitlist-form {
            display: flex;
            max-width: 480px;
            margin: 0 auto;
            background: white;
            border: 2px solid var(--glass-border);
            border-radius: 100px;
            padding: 6px;
            box-shadow: 0 10px 40px rgba(196, 155, 255, 0.15);
        }

        .waitlist-input {
            flex: 1;
            background: transparent;
            border: none;
            padding: 1rem 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: var(--candy-gradient);
            color: white;
            border: none;
            padding: 1rem 2rem;
            font-size: 0.5625rem;
            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 30px rgba(255, 107, 157, 0.4);
            transform: scale(1.05);
        }

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

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

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

        .footer-links a {
            font-size: 0.5625rem;
            font-weight: 600;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: var(--dim);
            text-decoration: none;
            transition: all 0.2s;
            padding: 0.5rem 1rem;
            border-radius: 50px;
        }

        .footer-links a:hover {
            color: var(--accent1);
            background: rgba(255, 107, 157, 0.1);
        }

        /* ===== SCROLL REVEAL ===== */
        .reveal {
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.8s 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); }
        }

        @media (max-width: 768px) {
            .features-grid { grid-template-columns: 1fr; }
            .stats { grid-template-columns: 1fr; }
            .hero-actions { flex-direction: column; align-items: center; }
            .waitlist-form { flex-direction: column; border-radius: 24px; }
            .waitlist-btn { border-radius: 24px; }
            footer { flex-direction: column; gap: 2rem; text-align: center; }
        }
