        :root {
            --bg: #000;
            --text: #fff;
            --dim: #555;
            --line: #1a1a1a;
            --accent: #c45c3e;
            --accent-dim: rgba(196, 92, 62, 0.15);
        }

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

        /* ===== SCAN LINES OVERLAY ===== */
        .scanlines {
            position: fixed;
            top: 0; left: 0;
            width: 100%; height: 100%;
            pointer-events: none;
            z-index: 1000;
            background: repeating-linear-gradient(
                0deg,
                transparent,
                transparent 2px,
                rgba(0, 0, 0, 0.03) 2px,
                rgba(0, 0, 0, 0.03) 4px
            );
            opacity: 0.5;
        }

        /* ===== PROGRESS INDICATOR ===== */
        .progress-indicator {
            position: fixed;
            right: 2rem;
            top: 50%;
            transform: translateY(-50%);
            z-index: 100;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .progress-dot {
            width: 3px;
            height: 30px;
            background: var(--line);
            transition: all 0.4s;
        }

        .progress-dot.active {
            background: var(--accent);
            height: 60px;
        }

        /* ===== SIGNAL METER ===== */
        .signal-meter {
            position: fixed;
            left: 2rem;
            top: 50%;
            transform: translateY(-50%);
            z-index: 100;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 4px;
        }

        .signal-bar {
            width: 3px;
            height: 8px;
            background: var(--line);
            transition: height 0.3s;
        }

        .signal-bar:nth-child(1) { transition-delay: 0ms; }
        .signal-bar:nth-child(2) { transition-delay: 50ms; }
        .signal-bar:nth-child(3) { transition-delay: 100ms; }
        .signal-bar:nth-child(4) { transition-delay: 150ms; }
        .signal-bar:nth-child(5) { transition-delay: 200ms; }

        .signal-bar.active {
            background: var(--accent);
        }

        .signal-meter-label {
            font-size: 0.4375rem;
            letter-spacing: 0.3em;
            color: var(--dim);
            margin-top: 1rem;
            writing-mode: vertical-rl;
            transform: rotate(180deg);
        }

        /* ===== NAV ===== */
        nav {
            position: fixed;
            top: 0; left: 0; right: 0;
            z-index: 100;
            padding: 2rem 4rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid var(--line);
            background: var(--bg);
        }

        .logo {
            font-size: 0.5625rem;
            font-weight: 600;
            letter-spacing: 0.4em;
            text-transform: uppercase;
            color: var(--text);
            text-decoration: none;
        }

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

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

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

        .nav-time {
            font-size: 0.5rem;
            letter-spacing: 0.2em;
            color: var(--accent);
            font-family: 'Geist Mono', monospace;
        }

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

        .hero-time {
            position: absolute;
            top: 4rem;
            left: 4rem;
            font-size: 0.5rem;
            letter-spacing: 0.3em;
            color: var(--dim);
            font-family: 'Geist Mono', monospace;
            overflow: hidden;
        }

        .hero-time span {
            display: inline-block;
        }

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

        @keyframes glitchIn {
            0% { opacity: 0; transform: translateX(-20px); }
            20% { opacity: 1; transform: translateX(5px); }
            40% { transform: translateX(-3px); }
            60% { transform: translateX(2px); }
            100% { opacity: 1; transform: translateX(0); }
        }

        .hero-title {
            font-size: clamp(5rem, 20vw, 18rem);
            font-weight: 900;
            letter-spacing: -0.06em;
            line-height: 0.85;
            position: relative;
        }

        .hero-title .word {
            display: block;
            position: relative;
        }

        .hero-title .word .glitch {
            display: block;
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--accent);
            opacity: 0;
        }

        .hero-title .word .inner {
            display: block;
            opacity: 0;
            transform: translateY(100%);
            animation: revealText 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
        }

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

        @keyframes revealText {
            0% { opacity: 0; transform: translateY(100%); filter: blur(4px); }
            50% { opacity: 1; filter: blur(0); }
            100% { opacity: 1; transform: translateY(0); }
        }

        .hero-title .word:nth-child(2) {
            color: var(--accent);
            margin-left: 25%;
        }

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

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

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

        .hero-desc {
            font-size: 0.875rem;
            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: 1rem 2rem;
            font-size: 0.5625rem;
            font-weight: 600;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            text-decoration: none;
            transition: all 0.3s;
            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.1), transparent);
            transition: left 0.6s;
        }

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

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

        .btn-primary:hover {
            background: #d4684a;
        }

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

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

        /* ===== SECTION ===== */
        section {
            padding: 0 4rem;
            position: relative;
        }

        .section-time {
            position: absolute;
            right: 4rem;
            top: 3rem;
            font-size: 0.4375rem;
            letter-spacing: 0.3em;
            color: var(--dim);
            font-family: 'Geist Mono', monospace;
        }

        .section-header {
            padding: 6rem 0 4rem;
            border-bottom: 1px solid var(--line);
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
        }

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

        .section-title {
            font-size: clamp(3rem, 8vw, 6rem);
            font-weight: 900;
            letter-spacing: -0.05em;
            line-height: 1;
        }

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

        .feature {
            background: var(--bg);
            padding: 3rem 2rem;
            position: relative;
            overflow: hidden;
        }

        .feature::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background: var(--accent);
            transform: scaleX(0);
            transform-origin: right;
            transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .feature:hover::before {
            transform: scaleX(1);
            transform-origin: left;
        }

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

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

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

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

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

        .stat h3 {
            font-size: clamp(4rem, 12vw, 10rem);
            font-weight: 900;
            letter-spacing: -0.08em;
            line-height: 1;
        }

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

        /* ===== NETWORK ===== */
        .network {
            min-height: 80vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            position: relative;
        }

        .network-canvas {
            width: 100%;
            height: 400px;
            margin: 4rem 0;
        }

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

        .waitlist::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 1px;
            background: linear-gradient(to right, transparent, var(--line), transparent);
        }

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

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

        .waitlist-form {
            display: flex;
            max-width: 500px;
            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.75rem;
            font-family: inherit;
            text-align: center;
            letter-spacing: 0.1em;
            transition: border-color 0.3s;
        }

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

        .waitlist-input::placeholder {
            color: var(--dim);
            letter-spacing: 0.2em;
        }

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

        .waitlist-btn:hover {
            background: var(--accent);
        }

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

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

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

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

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

        /* ===== GLITCH SCROLL ===== */
        .glitch-section {
            position: relative;
        }

        .glitch-section::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--bg);
            transform: translateX(-100%);
            transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .glitch-section.revealing::after {
            transform: translateX(100%);
        }

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

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

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

        @media (max-width: 768px) {
            nav, .hero, section, footer, .waitlist {
                padding-left: 1.5rem;
                padding-right: 1.5rem;
            }
            .section-header { flex-direction: column; gap: 1rem; }
            .features { grid-template-columns: 1fr; }
            .hero-title .word:nth-child(2) { margin-left: 15%; }
            .hero-title .word:nth-child(3) { margin-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; }
        }
