:root {
    --bg: #0a0a0a;
    --card: #111111;
    --text: #e7e7e7;
    --muted: #7a7a7a;
    --border: #1f1f1f;
}

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

body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* NAV */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 32px 48px;
    z-index: 1000;
}

.logo {
    color: #fff;
    text-decoration: none;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: -1px;
}

/* HERO */

.hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: flex-end;
    padding: 120px 48px 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.06), transparent 30%),
        radial-gradient(circle at bottom left, rgba(255, 255, 255, 0.04), transparent 25%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
}

.eyebrow {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #777;
    margin-bottom: 24px;
}

.hero h1 {
    font-size: clamp(52px, 9vw, 110px);
    line-height: .95;
    font-weight: 300;
    letter-spacing: -4px;
    color: #fff;
}

.hero-text {
    margin-top: 28px;
    max-width: 500px;
    color: #888;
    font-size: 18px;
    line-height: 1.8;
}

/* APPLICATION */

.application-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    padding: 80px 48px 120px;
}

.section-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #666;
    margin-bottom: 32px;
}

.application-left h2 {
    font-size: clamp(34px, 5vw, 60px);
    font-weight: 300;
    line-height: 1;
    letter-spacing: -2px;
    margin-bottom: 32px;
}

.application-left p {
    color: #7f7f7f;
    line-height: 1.9;
    margin-bottom: 24px;
    font-size: 17px;
}

/* FORM */

.application-form-wrapper {
    background: var(--card);
    border: 1px solid var(--border);
    padding: 48px;
}

.application-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.input-group {
    display: flex;
    flex-direction: column;
}

.full-width {
    grid-column: span 2;
}

label {
    margin-bottom: 12px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #888;
}

input,
select,
textarea {
    width: 100%;
    background: #0d0d0d;
    border: 1px solid #1f1f1f;
    color: #fff;
    padding: 18px;
    font-family: inherit;
    font-size: 15px;
    outline: none;
    transition: border-color .3s ease;
}

input:focus,
select:focus,
textarea:focus {
    border-color: #444;
}

textarea {
    resize: vertical;
}

.submit-btn {
    margin-top: 10px;
    width: fit-content;
    padding: 18px 30px;
    background: #fff;
    color: #000;
    border: none;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: .3s ease;
}

.submit-btn:hover {
    opacity: .85;
}

/* MOBILE */

@media(max-width: 1024px) {

    .application-section {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}

@media(max-width: 768px) {

    .nav,
    .hero,
    .application-section {
        padding-left: 24px;
        padding-right: 24px;
    }

    .hero {
        min-height: 60vh;
        padding-top: 140px;
    }

    .application-form-wrapper {
        padding: 28px;
    }

    .application-form {
        grid-template-columns: 1fr;
    }

    .full-width {
        grid-column: span 1;
    }

    .hero h1 {
        letter-spacing: -2px;
    }
}