:root {
    --background: #08090a;
    --foreground: #f1eeeb;
    --muted: rgba(241, 238, 235, 0.62);
    --quiet: rgba(241, 238, 235, 0.36);
    --horde-red: #b6252d;
    --forge-orange: rgba(224, 83, 30, 0.2);
}

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

html,
body {
    width: 100%;
    min-height: 100%;
}

body {
    background: var(--background);
    color: var(--foreground);
    font-family: "Inter", sans-serif;
}

.hero {
    position: relative;
    min-height: 100svh;
    overflow: hidden;

    display: flex;
    align-items: center;

    background:
        radial-gradient(
            circle at 75% 42%,
            rgba(117, 20, 24, 0.16),
            transparent 38%
        ),
        linear-gradient(
            135deg,
            #0c0d0f 0%,
            #08090a 55%,
            #050606 100%
        );
}

.hero__glow {
    position: absolute;
    right: 5%;
    top: 16%;

    width: min(50vw, 760px);
    aspect-ratio: 1;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            var(--forge-orange) 0%,
            rgba(155, 24, 29, 0.1) 38%,
            transparent 70%
        );

    filter: blur(20px);
    pointer-events: none;
}

.hero__content {
    position: relative;
    z-index: 1;
    width: min(88%, 1500px);
    min-height: 100svh;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(360px, 0.9fr) minmax(420px, 1.1fr);    align-items: center;
    gap: 3rem;
}

.hero__copy {
    position: relative;
    z-index: 2;
    padding-bottom: 2rem;
    max-width: 34rem;
    margin-top: 17.5vh;
}

.hero__title {
    display: flex;
    flex-direction: column;
    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(5rem, 8vw, 8.5rem);
    font-weight: 400;
    line-height: 0.78;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    text-shadow: 0 4px 28px rgba(0, 0, 0, 0.55);
}

.hero__title span:first-child {
    font-size: 0.5em;
    letter-spacing: 0.04em;
    font-weight: 200;
}

.hero__motto {
    margin-top: 2.25rem;

    color: var(--horde-red);

    font-size: clamp(0.68rem, 0.9vw, 0.82rem);
    font-weight: 600;
    letter-spacing: 0.32em;
    line-height: 1.6;
    text-transform: uppercase;
}

.hero__description {
    max-width: 32rem;
    margin-top: 1.7rem;

    color: var(--muted);

    font-size: clamp(1rem, 1.4vw, 1.2rem);
    line-height: 1.75;
}

.hero__status {
    margin-top: 3.25rem;

    color: var(--quiet);

    font-size: clamp(0.66rem, 0.85vw, 0.78rem);
    font-weight: 500;
    letter-spacing: 0.34em;
    line-height: 1.6;
    text-transform: uppercase;
}

.hero__status::before {
    content: "";
    display: inline-block;

    width: 1.4rem;
    height: 1px;
    margin-right: 0.8rem;

    vertical-align: middle;
    background: var(--horde-red);
}

.hero__character {
    position: relative;
    align-self: end;
    height: min(60svh, 640px);
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    pointer-events: none;
}

.hero__character img {
    width: auto;
    max-width: 100%;
    height: 100%;

    object-fit: contain;
    object-position: bottom right;

    filter:
        drop-shadow(0 0 45px rgba(183, 31, 35, 0.14))
        drop-shadow(0 18px 30px rgba(0, 0, 0, 0.65));
}

.footer {
    position: absolute;
    z-index: 2;
    bottom: 1rem;
    left: 50%;

    transform: translateX(-50%);

    width: 100%;
    padding: 0 1rem;

    color: rgba(241, 238, 235, 0.22);

    font-size: 0.62rem;
    letter-spacing: 0.08em;
    text-align: center;
}

@media (max-width: 900px) {
    .hero {
        align-items: stretch;
    }

    .hero__content {
        width: 100%;
        min-height: 100svh;
        padding: 5rem 1.5rem 0;

        grid-template-columns: 1fr;
        grid-template-rows: auto 1fr;
        gap: 1rem;
    }

    .hero__copy {
        z-index: 3;
    }

    .hero__title {
        font-size: clamp(4rem, 17vw, 6.5rem);
    }

    .hero__description {
        max-width: 26rem;
    }

    .hero__character {
        position: absolute;
        right: -14%;
        bottom: 0;

        width: 82%;
        height: 66svh;

        opacity: 0.48;
    }

    .hero::after {
        content: "";
        position: absolute;
        inset: 0;
        z-index: 1;

        background:
            linear-gradient(
                90deg,
                rgba(8, 9, 10, 0.96) 0%,
                rgba(8, 9, 10, 0.75) 55%,
                rgba(8, 9, 10, 0.28) 100%
            );
    }

    .footer {
        z-index: 4;
    }
}

@media (max-width: 520px) {
    .hero__content {
        padding-top: 4rem;
    }

    .hero__title {
        line-height: 0.82;
    }

    .hero__motto {
        max-width: 19rem;
        letter-spacing: 0.22em;
    }

    .hero__status {
        max-width: 18rem;
        letter-spacing: 0.25em;
    }

    .hero__character {
        right: -30%;
        width: 115%;
        height: 58svh;
    }
}