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

        :root {
            --accent: hsl(43, 82%, 59%);
            --black: #000000;
            --white: #fafafa;
            --gray: #666666;
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--white);
            color: var(--black);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
        }

        h1, h2 {
            font-family: 'DM Mono', monospace;
            font-weight: 300;
            line-height: 1.1;
        }

        /* Navigation */
        nav {
            padding: 32px 64px;
            background-color: var(--white);
        }

        .nav-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-family: 'DM Mono', monospace;
            font-size: 20px;
            font-weight: 400;
            text-decoration: none;
            color: var(--black);
            letter-spacing: 0.15em;
        }

        .nav-link {
            font-family: 'DM Mono', monospace;
            color: var(--black);
            text-decoration: none;
            font-size: 15px;
            border-bottom: 1px solid var(--accent);
            padding-bottom: 3px;
            transition: opacity 0.3s;
        }

        .nav-link:hover {
            opacity: 0.6;
        }

        /* Hero Container */
        .hero-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            min-height: calc(100vh - 200px);
            padding: 0 64px 20px 64px;
            gap: 30px;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
        }

        /* Left Content */
        .hero-content {
            max-width: 500px;
        }

        .hero-content h1 {
            font-size: 72px;
            margin-bottom: 40px;
            letter-spacing: -0.02em;
        }

        .accent-line {
            color: var(--accent);
        }

        .hero-content p {
            font-size: 22px;
            color: var(--gray);
            margin-bottom: 56px;
            line-height: 1.65;
        }

        .cta-button {
            font-family: 'DM Mono', monospace;
            background-color: var(--black);
            color: var(--white);
            padding: 20px 48px;
            text-decoration: none;
            font-size: 14px;
            letter-spacing: 0.1em;
            border: none;
            cursor: pointer;
            transition: all 0.3s;
            display: inline-block;
        }

        .cta-button:hover {
            background-color: var(--accent);
            color: var(--black);
            transform: translateY(-2px);
        }

        /* Right Image Container */
        .hero-image-wrapper {
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero-image-container {
            background-color: var(--black);
            border-radius: 20px;
            padding: 0;
            width: auto;
            max-width: 100%;
            height: 100%;
            max-height: 900px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .hero-image-container img {
            height: 100%;
            width: auto;
            max-width: 100%;
            object-fit: cover;
            object-position: center;
            opacity: 1;
            display: block;
        }

        /* Footer */
        footer {
            position: static;
            padding: 28px 64px;
            background-color: var(--white);
        }

        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 14px;
            color: var(--gray);
            font-family: 'DM Mono', monospace;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .hero-container {
                grid-template-columns: 1fr;
                gap: 60px;
                padding: 40px 40px;
            }

            .hero-image-wrapper {
                display: none;
            }

            .hero-content h1 {
                font-size: clamp(28px, 8vw, 72px);
                word-wrap: break-word;
            }

            .hero-content p {
                font-size: clamp(16px, 4vw, 22px);
            }

            nav {
                padding: 24px 40px;
            }

            footer {
                padding: 50px 40px;
            }
        }

        /* Hide Early Access link on mobile */
        @media (max-width: 768px) {
            .nav-link {
                display: none;
            }
        }

        /* Modal Styles */
        .modal-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            z-index: 1000;
            align-items: center;
            justify-content: center;
            animation: fadeIn 0.3s ease-out;
        }

        .modal-container {
            background-color: var(--white);
            border-radius: 20px;
            padding: 40px;
            max-width: 500px;
            width: 90%;
            max-height: 90vh;
            overflow-y: auto;
            position: relative;
            animation: slideIn 0.3s ease-out;
        }

        .modal-close {
            position: absolute;
            top: 20px;
            right: 20px;
            background: none;
            border: none;
            font-size: 24px;
            color: var(--gray);
            cursor: pointer;
            padding: 5px;
            line-height: 1;
            transition: color 0.3s;
        }

        .modal-close:hover {
            color: var(--black);
        }

        .modal-container h2 {
            font-family: 'DM Mono', monospace;
            font-size: 28px;
            margin-bottom: 30px;
            color: var(--black);
            text-align: center;
        }

        .form-group {
            margin-bottom: 24px;
        }

        .form-group label {
            display: block;
            font-family: 'DM Mono', monospace;
            font-size: 14px;
            color: var(--black);
            margin-bottom: 8px;
            letter-spacing: 0.05em;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 16px;
            border: 2px solid #e0e0e0;
            border-radius: 8px;
            font-family: 'Inter', sans-serif;
            font-size: 16px;
            color: var(--black);
            background-color: var(--white);
            transition: border-color 0.3s;
            box-sizing: border-box;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--accent);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 100px;
        }

        .form-submit {
            font-family: 'DM Mono', monospace;
            background-color: var(--black);
            color: var(--white);
            padding: 20px 48px;
            text-decoration: none;
            font-size: 14px;
            letter-spacing: 0.1em;
            border: none;
            cursor: pointer;
            transition: all 0.3s;
            display: block;
            width: 100%;
            border-radius: 8px;
        }

        .form-submit:hover:not(:disabled) {
            background-color: var(--accent);
            color: var(--black);
            transform: translateY(-2px);
        }

        .form-submit:disabled {
            opacity: 0.7;
            cursor: not-allowed;
            transform: none;
        }


        /* Animations */
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes slideIn {
            from { 
                opacity: 0;
                transform: translateY(-20px) scale(0.95);
            }
            to { 
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        /* Mobile Modal Styles */
        @media (max-width: 1024px) {
            .modal-container {
                padding: 30px 20px;
                margin: 20px;
                width: calc(100% - 40px);
            }

            .modal-container h2 {
                font-size: 24px;
                margin-bottom: 24px;
            }

            .form-group {
                margin-bottom: 20px;
            }

            .form-group input,
            .form-group textarea {
                padding: 14px;
                font-size: 16px;
            }
        }

        html {
            scroll-behavior: smooth;
        }
