:root {
    --bg: #05090d;
    --overlay: rgba(5, 9, 13, 0.48);
    --overlay-strong: rgba(5, 9, 13, 0.68);
    --text: #f7f2e8;
    --accent: rgba(227, 174, 97, 0.14);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    min-height: 100svh;
    display: grid;
    place-items: center;
    background: var(--bg);
    color: var(--text);
    overflow: hidden;
    position: relative;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background:
        linear-gradient(180deg, var(--overlay-strong), var(--overlay)),
        radial-gradient(circle at center, transparent 0, transparent 34%, var(--accent) 100%);
    pointer-events: none;
    z-index: 1;
}

#background-video {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    filter: grayscale(45%) brightness(0.48) contrast(1.05);
    transform: scale(1.05);
}

.hero {
    position: relative;
    z-index: 2;
    width: min(100%, 1200px);
    padding: 24px;
    display: grid;
    place-items: center;
    gap: 22px;
    text-align: center;
}

.logo {
    width: min(360px, 62vw);
    height: auto;
    filter: drop-shadow(0 14px 28px rgba(0, 0, 0, 0.28));
}

h1 {
    margin: 0;
    font-family: "Teko", sans-serif;
    font-size: clamp(3.8rem, 7vw, 5rem);
    font-weight: 600;
    line-height: 0.88;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    text-wrap: balance;
    text-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
    margin-top: 45px;
}

@media (max-width: 640px) {
    .logo {
        width: min(260px, 68vw);
    }

    h1 {
        font-size: clamp(3rem, 17vw, 4.8rem);
    }
}
