* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: "Space Grotesk", sans-serif;
    background: #050505;
    color: #ffffff;
}

.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
            linear-gradient(
                    135deg,
                    rgba(0, 0, 0, 0.55),
                    rgba(0, 0, 0, 0.15)
            ),
            linear-gradient(
                    to top,
                    rgba(0, 0, 0, 0.7),
                    rgba(0, 0, 0, 0.05)
            );
    z-index: 1;
}

.menu {
    position: absolute;
    top: 28px;
    left: clamp(24px, 6vw, 88px);
    transform: none;
    z-index: 2;

    display: flex;
    align-items: center;
    gap: 28px;

    width: auto;
    max-width: calc(100% - 48px);

    /*
    Menu bar styling disabled for now.
    Uncomment later when adding the menu back.

    padding: 12px 18px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;

    background: rgba(10, 10, 10, 0.42);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
    */
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #ffffff;
    font-weight: 700;
    letter-spacing: -0.03em;
    white-space: nowrap;
}

.logo img {
    height: 56px;
    width: auto;
    display: block;
}

/*
Menu links disabled for now.
Uncomment when adding the menu back.

.nav {
    display: flex;
    align-items: center;
    gap: 18px;
}

.nav a {
    color: rgba(255, 255, 255, 0.78);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s ease;
    white-space: nowrap;
}

.nav a:hover {
    color: #ffffff;
}
*/


.hero-text {
    position: absolute;
    left: clamp(24px, 6vw, 88px);
    bottom: clamp(30px, 7vw, 86px);
    z-index: 2;

    max-width: 760px;
    text-align: left;
}
.hero-text h1 {
    font-size: clamp(1.5rem, 5vw, 5.5rem);
    line-height: 0.92;
    letter-spacing: -0.075em;
    font-weight: 700;
    text-wrap: balance;
}

footer {
    padding: 24px;
    text-align: center;
    background: #050505;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.9rem;
}

@media (max-width: 720px) {
    .menu {
        gap: 16px;
        padding: 10px 14px;
    }

    .nav {
        display: none;
    }

    .hero-text {
        left: 24px;
        right: 24px;
        text-align: left;
    }

    .hero-text h1 {
        font-size: clamp(2.8rem, 14vw, 5rem);
    }
}