:root {
            --bg: #050505;
            --surface: #0a0a0a;
            --text: #ffffff;
            --accent-red: #ff3e3e;
            --accent-green: #00ff85;
            --border: #222222;
            --font-main: 'Space+Grotesk', sans-serif;
            --font-mono: 'JetBrains Mono', monospace;
            --font-heading: 'Syncopate', sans-serif;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            background-color: var(--bg);
            color: var(--text);
            font-family: var(--font-main);
            line-height: 1.2;
            overflow-x: hidden;
        }

        /* UTILITIES */
        .grid-lines {
            background-size: 40px 40px;
            background-image: linear-gradient(to right, #111 1px, transparent 1px), linear-gradient(to bottom, #111 1px, transparent 1px);
        }

        .border-b { border-bottom: 1px solid var(--border); }
        .border-r { border-right: 1px solid var(--border); }
        .p-main { padding: 4rem 2rem; }
        .mono { font-family: var(--font-mono); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 2px; }

        /* NAVIGATION */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            height: 60px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 2rem;
            background: rgba(5, 5, 5, 0.95);
            border-bottom: 1px solid var(--border);
            z-index: 1000;
            backdrop-filter: blur(10px);
        }

        .nav-logo {
            font-family: var(--font-heading);
            font-weight: 700;
            font-size: 1.2rem;
            letter-spacing: -1px;
        }

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

        .hero-label {
            color: var(--accent-red);
            margin-bottom: 1rem;
        }

        .hero h1 {
            font-family: var(--font-heading);
            font-size: clamp(3rem, 8vw, 8rem);
            line-height: 0.9;
            text-transform: uppercase;
            margin-bottom: 2rem;
            letter-spacing: -2px;
        }

        .hero-sub {
            max-width: 800px;
            font-size: 1.5rem;
            color: #888;
            margin-bottom: 3rem;
            font-weight: 300;
        }

        /* CTA BUTTON */
        .cta-button {
            display: inline-block;
            padding: 1.5rem 3rem;
            background: var(--text);
            color: var(--bg);
            text-decoration: none;
            font-family: var(--font-heading);
            font-weight: 700;
            text-transform: uppercase;
            transition: all 0.3s ease;
            width: fit-content;
            border: 1px solid var(--text);
        }

        .cta-button:hover {
            background: transparent;
            color: var(--text);
            border: 1px solid var(--text);
        }

        /* MANIFESTO SECTION */
        .manifesto {
            background: #fff;
            color: #000;
            padding: 6rem 2rem;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
        }

        .manifesto h2 {
            font-family: var(--font-heading);
            font-size: 3rem;
            text-transform: uppercase;
            line-height: 1;
        }

        .manifesto-content p {
            font-size: 1.5rem;
            margin-bottom: 2rem;
            font-weight: 400;
        }

        /* VENTURES GRID */
        .section-header {
            padding: 2rem;
            border-bottom: 1px solid var(--border);
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
        }

        .section-header h2 {
            font-family: var(--font-heading);
            font-size: 4rem;
            text-transform: uppercase;
        }

        .ventures-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
        }

        .venture-card {
            padding: 4rem 2rem;
            border-right: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
            transition: background 0.4s ease;
            height: 400px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .venture-card:hover {
            background: #111;
        }

        .venture-card:nth-child(even) {
            border-right: none;
        }

        .venture-card .tag {
            color: var(--accent-green);
            margin-bottom: 1rem;
        }

        .venture-card h3 {
            font-size: 2.5rem;
            font-family: var(--font-heading);
            text-transform: uppercase;
            margin-bottom: 1rem;
        }

        /* CREDIBILITY BAR */
        .cred-bar {
            display: flex;
            overflow: hidden;
            background: var(--surface);
            padding: 2rem 0;
            border-bottom: 1px solid var(--border);
        }

        .cred-track {
            display: flex;
            white-space: nowrap;
            animation: scroll 20s linear infinite;
        }

        .cred-track span {
            font-family: var(--font-heading);
            font-size: 2rem;
            margin-right: 4rem;
            opacity: 0.3;
        }

        @keyframes scroll {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        /* ESSAYS & CONTENT */
        .content-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
        }

        .content-list {
            padding: 0;
        }

        .content-item {
            padding: 2rem;
            border-bottom: 1px solid var(--border);
            display: flex;
            justify-content: space-between;
            align-items: center;
            text-decoration: none;
            color: var(--text);
            transition: background 0.2s;
        }

        .content-item:hover {
            background: var(--accent-red);
            color: white;
        }

        .content-item h4 {
            font-size: 1.5rem;
            font-family: var(--font-main);
        }

        /* SPEAKING CTA */
        .speaking-block {
            background: var(--accent-red);
            color: white;
            padding: 6rem 2rem;
            text-align: center;
        }

        .speaking-block h2 {
            font-family: var(--font-heading);
            font-size: clamp(2rem, 5vw, 5rem);
            margin-bottom: 2rem;
        }

        /* FOOTER */
        footer {
            padding: 8rem 2rem;
            text-align: center;
            border-top: 5px solid var(--text);
        }

        .footer-logo {
            font-family: var(--font-heading);
            font-size: 15vw;
            line-height: 0.8;
            margin-bottom: 4rem;
            letter-spacing: -10px;
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 2rem;
        }

        .social-links a {
            color: var(--text);
            text-decoration: none;
            font-family: var(--font-mono);
        }

        @media (max-width: 768px) {
            .manifesto, .ventures-grid, .content-section {
                grid-template-columns: 1fr;
            }
            .venture-card {
                border-right: none;
            }
            .hero h1 {
                font-size: 4rem;
            }
            .section-header h2 {
                font-size: 2.5rem;
            }
        }