:root {
    color-scheme: dark;
    --bg: #030303;
    --black: #060606;
    --text: #f5f3ef;
    --silver: #d8d9d9;
    --muted: #9a958c;
    --gold: #c9922a;
    --gold-bright: #f0d27a;
    --line: rgba(201, 146, 42, 0.74);
    --panel: rgba(7, 6, 5, 0.88);
}

* {
    box-sizing: border-box;
}

html {
    min-width: 320px;
    background: var(--bg);
}

body {
    margin: 0;
    min-height: 100vh;
    overflow-x: hidden;
    color: var(--text);
    background: var(--bg);
    font-family: "Arial Narrow", "Roboto Condensed", "Segoe UI", Arial, sans-serif;
    line-height: 1.5;
}

a {
    color: inherit;
}

a:focus-visible {
    outline: 3px solid var(--gold-bright);
    outline-offset: 5px;
}

.site-header {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 116px;
    padding: 26px clamp(22px, 4vw, 54px) 22px;
    border-bottom: 2px solid var(--gold);
    background: linear-gradient(180deg, rgba(2, 2, 2, 0.98), rgba(6, 6, 5, 0.94));
}

.site-header::after {
    position: absolute;
    left: 50%;
    bottom: -12px;
    width: 18px;
    height: 18px;
    border-right: 2px solid var(--gold);
    border-bottom: 2px solid var(--gold);
    background: var(--bg);
    content: "";
    transform: translateX(-50%) rotate(45deg);
}

.brand-lockup {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    min-width: 0;
    text-decoration: none;
}

.shield-mark {
    display: inline-grid;
    place-items: center;
    width: clamp(48px, 5vw, 70px);
    height: clamp(58px, 6vw, 82px);
    color: var(--gold-bright);
    font-family: Georgia, serif;
    font-size: clamp(2rem, 3.2vw, 3rem);
    font-weight: 900;
    line-height: 1;
    clip-path: polygon(50% 0, 92% 16%, 86% 74%, 50% 100%, 14% 74%, 8% 16%);
    background:
        linear-gradient(var(--black), var(--black)) padding-box,
        linear-gradient(155deg, var(--gold-bright), var(--gold), #7d5212) border-box;
    border: 3px solid transparent;
}

.brand-name,
.brand-tagline {
    display: block;
    text-transform: uppercase;
}

.brand-name {
    color: var(--gold-bright);
    font-size: clamp(1.85rem, 3vw, 3rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0.2em;
}

.brand-tagline {
    margin-top: 8px;
    color: var(--gold-bright);
    font-size: clamp(0.72rem, 1.2vw, 1.08rem);
    font-weight: 800;
    letter-spacing: 0.22em;
}

.header-status {
    display: flex;
    align-items: center;
    gap: 22px;
    margin: 0;
    color: var(--gold-bright);
    font-size: 0.86rem;
    font-weight: 900;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    white-space: nowrap;
}

.header-status span {
    display: block;
    width: clamp(32px, 4vw, 56px);
    height: 2px;
    background: var(--gold);
}

.hero {
    position: relative;
    isolation: isolate;
    min-height: 730px;
    padding: clamp(72px, 8vw, 112px) clamp(22px, 4vw, 54px) 56px;
    overflow: hidden;
}

.hero::before,
.hero::after {
    position: absolute;
    inset: 0;
    z-index: -1;
    content: "";
    pointer-events: none;
}

.hero::before {
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.96) 0%, rgba(0, 0, 0, 0.9) 28%, rgba(0, 0, 0, 0.42) 56%, rgba(0, 0, 0, 0.08) 100%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.78));
}

.hero::after {
    background:
        radial-gradient(circle at 82% 12%, rgba(238, 188, 80, 0.28), transparent 23rem),
        linear-gradient(180deg, transparent 65%, rgba(0, 0, 0, 0.72));
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -2;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 64% center;
}

.hero-content {
    width: min(100%, 720px);
}

.eyebrow {
    margin: 0 0 18px;
    color: var(--gold-bright);
    font-size: clamp(1rem, 1.6vw, 1.38rem);
    font-weight: 900;
    letter-spacing: 0.42em;
}

h1,
h2,
p {
    overflow-wrap: break-word;
}

h1 {
    margin: 0;
    color: var(--silver);
    font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
    font-size: clamp(3.4rem, 5.8vw, 7.2rem);
    font-weight: 900;
    line-height: 0.88;
    letter-spacing: 0;
    text-transform: uppercase;
    text-shadow: 0 3px 0 rgba(255, 255, 255, 0.08), 0 18px 32px rgba(0, 0, 0, 0.55);
}

h1 span {
    display: block;
    white-space: nowrap;
}

h1 span:nth-child(2) {
    color: var(--gold-bright);
    background: linear-gradient(180deg, #ffe9a4 0%, #c88c22 56%, #8b5b13 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.title-rule {
    display: flex;
    align-items: center;
    gap: 18px;
    width: min(100%, 480px);
    margin: 28px 0 24px;
    color: var(--gold);
}

.title-rule::before,
.title-rule::after {
    display: block;
    height: 2px;
    flex: 1;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    content: "";
}

.title-rule span {
    width: 20px;
    height: 16px;
    background: var(--gold);
    clip-path: polygon(50% 0, 62% 45%, 100% 25%, 80% 100%, 20% 100%, 0 25%, 38% 45%);
}

.hero-copy {
    max-width: 560px;
    margin: 0;
    color: #f1ead8;
    font-size: clamp(1rem, 1.35vw, 1.22rem);
    line-height: 1.72;
}

.campaign-line {
    margin: 30px 0 0;
    color: var(--gold-bright);
    font-size: clamp(1.45rem, 2.7vw, 2.25rem);
    font-weight: 900;
    letter-spacing: 0.24em;
    line-height: 1.1;
    text-transform: uppercase;
}

.coming-soon {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    min-height: 64px;
    margin: 30px 0 0;
    padding: 15px 30px;
    border: 2px solid var(--gold);
    border-radius: 4px;
    background: rgba(0, 0, 0, 0.36);
    color: var(--gold-bright);
    font-size: clamp(0.96rem, 1.4vw, 1.14rem);
    font-weight: 900;
    letter-spacing: 0.22em;
    line-height: 1;
    text-transform: uppercase;
}

.coming-soon svg,
.info-icon svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.9;
}

.info-panel {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    width: min(100% - 74px, 1440px);
    margin: -56px auto 0;
    border: 1px solid rgba(201, 146, 42, 0.38);
    border-radius: 8px 8px 0 0;
    background:
        linear-gradient(120deg, rgba(0, 0, 0, 0.94), rgba(22, 14, 4, 0.9)),
        var(--panel);
    box-shadow: 0 -22px 54px rgba(0, 0, 0, 0.34);
}

.info-item {
    display: grid;
    grid-template-columns: 76px minmax(0, 1fr);
    align-items: center;
    gap: 26px;
    min-height: 164px;
    padding: 32px clamp(28px, 5vw, 74px);
}

.info-item + .info-item {
    border-left: 1px solid rgba(201, 146, 42, 0.54);
}

.info-icon {
    display: inline-grid;
    place-items: center;
    width: 70px;
    height: 70px;
    border: 2px solid rgba(201, 146, 42, 0.72);
    border-radius: 50%;
    color: var(--gold);
}

.info-item h2 {
    margin: 0 0 4px;
    color: var(--gold-bright);
    font-size: 0.92rem;
    font-weight: 900;
    letter-spacing: 0.28em;
    text-transform: uppercase;
}

.info-link {
    display: inline-block;
    color: var(--text);
    font-family: "Segoe UI", Arial, sans-serif;
    font-size: clamp(1.55rem, 2.4vw, 2.05rem);
    font-weight: 800;
    line-height: 1.18;
    text-decoration: none;
}

.info-link:hover {
    color: var(--gold-bright);
}

.info-item p {
    margin: 8px 0 0;
    color: var(--muted);
    font-family: "Segoe UI", Arial, sans-serif;
    font-size: clamp(0.98rem, 1.4vw, 1.12rem);
}

.site-footer {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    width: min(100% - 74px, 1440px);
    margin: 0 auto;
    padding: 24px 0 36px;
    color: #81786c;
    font-family: "Segoe UI", Arial, sans-serif;
    font-size: 0.9rem;
}

.site-footer p {
    margin: 0;
}

@media (max-width: 980px) {
    .site-header {
        min-height: 96px;
    }

    .header-status {
        gap: 14px;
        font-size: 0.72rem;
    }

    .hero {
        min-height: 720px;
        padding-top: 62px;
    }

    .hero::before {
        background:
            linear-gradient(90deg, rgba(0, 0, 0, 0.96) 0%, rgba(0, 0, 0, 0.84) 45%, rgba(0, 0, 0, 0.32) 100%),
            linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.82));
    }

    .hero-bg {
        object-position: 68% center;
    }

    .info-panel {
        width: min(100% - 32px, 760px);
        grid-template-columns: 1fr;
    }

    .info-item + .info-item {
        border-top: 1px solid rgba(201, 146, 42, 0.54);
        border-left: 0;
    }
}

@media (max-width: 680px) {
    body,
    .site-header,
    .hero,
    .info-panel,
    .site-footer {
        max-width: 100vw;
    }

    .site-header {
        align-items: flex-start;
        flex-direction: column;
        min-height: 132px;
        padding: 22px 20px 20px;
    }

    .brand-lockup {
        gap: 14px;
    }

    .brand-name {
        letter-spacing: 0.16em;
    }

    .header-status {
        width: calc(100vw - 40px);
        justify-content: flex-start;
        gap: 12px;
        font-size: 0.64rem;
        letter-spacing: 0.24em;
    }

    .hero {
        min-height: 760px;
        padding: 56px 34px 88px 20px;
    }

    .hero::before {
        background:
            linear-gradient(180deg, rgba(0, 0, 0, 0.46), rgba(0, 0, 0, 0.88) 44%, rgba(0, 0, 0, 0.96) 100%),
            linear-gradient(90deg, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.34));
    }

    .hero-bg {
        height: 48%;
        object-position: 70% top;
    }

    .hero-content {
        width: min(100%, 330px);
        max-width: calc(100vw - 64px);
        padding-top: 220px;
        overflow: hidden;
    }

    .hero-copy {
        width: 100%;
        max-width: 100%;
    }

    h1 {
        font-size: clamp(1.82rem, 6.5vw, 3.2rem);
    }

    .campaign-line {
        letter-spacing: 0.14em;
    }

    .coming-soon {
        width: 100%;
        justify-content: center;
        padding-inline: 18px;
        text-align: center;
    }

    .info-panel,
    .site-footer {
        width: min(100% - 24px, 560px);
    }

    .info-item {
        grid-template-columns: 54px minmax(0, 1fr);
        gap: 18px;
        min-height: 138px;
        padding: 26px 20px;
    }

    .info-icon {
        width: 52px;
        height: 52px;
    }

    .site-footer {
        flex-direction: column;
    }
}

@media (max-width: 430px) {
    .header-status span {
        width: 22px;
    }

    .header-status {
        gap: 8px;
        max-width: 100%;
        font-size: 0.58rem;
        letter-spacing: 0.2em;
    }

    .header-status span:last-child {
        display: none;
    }

    .eyebrow {
        letter-spacing: 0.32em;
    }

    .hero-copy {
        font-size: 0.98rem;
    }

    .info-item {
        grid-template-columns: 1fr;
    }
}
