* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --black: #080808;
    --white: #ffffff;
    --lime: #d9ff3f;
    --muted: rgba(255, 255, 255, .58);

    --ff: 'Fraunces', serif;
    --fb: 'Inter', sans-serif;
}

html,
body {
    width: 100%;
    overflow: hidden;
    background: var(--black);
}

body {
    font-family: var(--fb);
    color: var(--white);
}

/* BACKGROUND */

.hero {
    position: relative;
    width: 100%;
    overflow: hidden;
    isolation: isolate;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.bg {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(to bottom,
            rgba(0, 0, 0, .45),
            rgba(0, 0, 0, .78)),
        url('/085A7511.jpg');

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    transform: scale(1.06);

    filter:
        saturate(1.1) contrast(1.05) brightness(.85);

    z-index: 0;
}

.hero::after {
    content: '';

    position: absolute;
    inset: 0;

    background:
        radial-gradient(circle at 20% 20%, rgba(217, 255, 63, .12), transparent 35%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, .06), transparent 40%);

    z-index: 1;
}

/* GRAIN */

.noise {
    position: fixed;
    inset: 0;

    background-image: url("https://grainy-gradients.vercel.app/noise.svg");

    opacity: .045;

    pointer-events: none;

    z-index: 999;
}

/* NAV */

.nav {
    position: relative;
    z-index: 3;

    padding: 34px 42px;
}

.logo {
    width: 130px;
    height: auto;
}

/* HERO */

.hero-content {
    position: relative;
    z-index: 3;

    width: 100%;
    max-width: 760px;

    padding: 0 42px;

    margin-top: auto;
    margin-bottom: auto;
}

.eyebrow {
    font-size: 11px;
    letter-spacing: .24em;
    text-transform: uppercase;

    color: rgba(255, 255, 255, .52);

    margin-bottom: 26px;
}

h1 {
    font-family: var(--ff);
    font-style: italic;
    font-weight: 900;

    line-height: .82;
    letter-spacing: -.05em;

    font-size: clamp(64px, 11vw, 138px);

    margin-bottom: 28px;
}

h1 span {
    color: var(--lime);
}

.desc {
    max-width: 520px;

    font-size: 15px;
    line-height: 1.8;

    color: var(--muted);

    margin-bottom: 34px;
}

/* BUTTONS */

.buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn {
    text-decoration: none;

    padding: 14px 28px;

    border-radius: 999px;

    font-size: 11px;
    font-weight: 600;

    letter-spacing: .12em;
    text-transform: uppercase;

    transition: .25s ease;
}

.primary {
    background: var(--lime);
    color: #000;
}

.primary:hover {
    transform: translateY(-2px);
    background: white;
}

.secondary {
    border: 1px solid rgba(255, 255, 255, .18);
    color: white;
    background: rgba(255, 255, 255, .03);
}

.secondary:hover {
    background: rgba(255, 255, 255, .08);
    border-color: white;
}

/* FOOTER */

.bottom-text {
    position: relative;
    z-index: 3;

    padding: 38px 42px;

    font-size: 11px;
    letter-spacing: .18em;
    text-transform: uppercase;

    color: rgba(255, 255, 255, .34);
}

/* MOBILE */

@media (max-width:768px) {

    .nav {
        padding: 24px;
    }

    .hero-content {
        padding: 0 24px;
    }

    .bottom-text {
        padding: 24px;
    }

    h1 {
        font-size: 64px;
    }

    .desc {
        font-size: 14px;
    }

}