:root {
    --bg: #080a0d;
    --bg-soft: #10141a;
    --panel: rgba(14, 18, 24, 0.82);
    --panel-strong: rgba(20, 25, 33, 0.94);
    --graphite: #2e3742;
    --graphite-soft: rgba(88, 101, 116, 0.28);
    --text: #edf2f7;
    --muted: #98a6b8;
    --yellow: #f2bf34;
    --blue: #4f8cff;
    --line: rgba(255, 255, 255, 0.08);
    --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}

* {
    box-sizing: border-box;
}

html {
    font-size: 16px;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: "Segoe UI Variable Text", "Segoe UI", "Trebuchet MS", sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(242, 191, 52, 0.12), transparent 30%),
        radial-gradient(circle at top right, rgba(79, 140, 255, 0.12), transparent 34%),
        linear-gradient(135deg, #050608 0%, #0a0d11 55%, #11161d 100%);
    overflow-x: hidden;
}

body::before,
body::after {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
}

body::before {
    background:
        linear-gradient(var(--line) 1px, transparent 1px),
        linear-gradient(90deg, var(--line) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), transparent 88%);
    opacity: 0.28;
}

body::after {
    background:
        radial-gradient(circle at 18% 22%, rgba(242, 191, 52, 0.22), transparent 18%),
        radial-gradient(circle at 78% 18%, rgba(79, 140, 255, 0.2), transparent 24%);
    filter: blur(20px);
    opacity: 0.8;
}

.page-shell {
    position: relative;
    z-index: 1;
    width: min(1160px, calc(100% - 2rem));
    margin: 0 auto;
    padding: 2rem 0 3rem;
}

.site-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 3.8rem;
}

.brand-lockup {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    max-width: 24rem;
}

.brand-mark {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 72px;
    padding: 1rem 1.25rem;
    border: 1px solid rgba(242, 191, 52, 0.22);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015)),
        linear-gradient(135deg, rgba(79, 140, 255, 0.06), rgba(242, 191, 52, 0.06)),
        rgba(15, 18, 23, 0.85);
    overflow: hidden;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.04),
        0 18px 40px rgba(0, 0, 0, 0.24);
}

.brand-mark.has-image {
    width: clamp(236px, 24vw, 292px);
    min-height: auto;
    aspect-ratio: 1;
    padding: 0;
    border-color: transparent;
    background: none;
    overflow: hidden;
    isolation: isolate;
    box-shadow: none;
}

.brand-mark.has-image::before {
    content: "";
    position: absolute;
    inset: 18% 12% 18%;
    background:
        radial-gradient(circle at 34% 38%, rgba(79, 140, 255, 0.22), transparent 36%),
        radial-gradient(circle at 70% 40%, rgba(242, 191, 52, 0.18), transparent 34%),
        radial-gradient(circle at 52% 70%, rgba(255, 255, 255, 0.08), transparent 26%);
    filter: blur(28px);
    opacity: 0.9;
    z-index: -1;
}

.brand-logo {
    display: none;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center 46%;
    filter:
        drop-shadow(0 12px 20px rgba(0, 0, 0, 0.38))
        drop-shadow(0 0 20px rgba(79, 140, 255, 0.12));
}

.brand-mark.has-image .brand-logo {
    transform: scale(1.42);
    transform-origin: center;
}

.brand-logo.is-visible {
    display: block;
}

.brand-fallback {
    font-family: "Bahnschrift", "Aptos Display", "Segoe UI", sans-serif;
    font-size: clamp(1.5rem, 3vw, 2.4rem);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text);
}

.brand-fallback.is-hidden {
    display: none;
}

.brand-caption,
.header-pill,
.section-label,
.signal-row span,
.status-head {
    font-family: Consolas, "Courier New", monospace;
    letter-spacing: 0.08em;
}

.brand-caption {
    margin: 0;
    max-width: 22rem;
    color: var(--muted);
    font-size: 0.73rem;
    line-height: 1.5;
    text-transform: uppercase;
}

.header-pill {
    margin: 0;
    align-self: center;
    padding: 0.8rem 1rem;
    border: 1px solid rgba(79, 140, 255, 0.2);
    border-radius: 999px;
    background: rgba(12, 16, 22, 0.76);
    color: #c3d5ff;
    font-size: 0.74rem;
    text-transform: uppercase;
    white-space: nowrap;
}

.hero-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(300px, 420px);
    gap: 2rem;
    align-items: stretch;
}

.hero-copy,
.status-card {
    position: relative;
    padding: clamp(1.5rem, 4vw, 2.6rem);
    border: 1px solid var(--graphite-soft);
    background: var(--panel);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow);
}

.hero-copy::before,
.status-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255, 255, 255, 0.03);
    pointer-events: none;
}

.hero-copy::after {
    content: "";
    position: absolute;
    width: 160px;
    height: 160px;
    right: -42px;
    bottom: -42px;
    border: 1px solid rgba(242, 191, 52, 0.18);
    border-radius: 50%;
    box-shadow:
        0 0 0 24px rgba(242, 191, 52, 0.05),
        0 0 0 48px rgba(79, 140, 255, 0.04);
    pointer-events: none;
}

.section-label {
    margin: 0 0 1rem;
    color: var(--yellow);
    font-size: 0.8rem;
    text-transform: uppercase;
}

h1 {
    margin: 0;
    font-family: "Bahnschrift", "Aptos Display", "Segoe UI", sans-serif;
    font-size: clamp(2.8rem, 7vw, 5.4rem);
    line-height: 0.96;
    letter-spacing: -0.03em;
}

.tagline {
    margin: 1rem 0 0;
    color: var(--yellow);
    font-family: "Bahnschrift", "Segoe UI", sans-serif;
    font-size: clamp(1.02rem, 2vw, 1.24rem);
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.lead {
    max-width: 34rem;
    margin: 1.15rem 0 0;
    color: var(--muted);
    font-size: clamp(1.05rem, 2vw, 1.24rem);
    line-height: 1.75;
}

.hero-actions {
    margin-top: 2rem;
}

.primary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 200px;
    padding: 0.95rem 1.4rem;
    border: 1px solid rgba(242, 191, 52, 0.55);
    color: #101215;
    background: linear-gradient(135deg, #ffd45b 0%, #f2bf34 100%);
    font-family: "Bahnschrift", "Segoe UI", sans-serif;
    font-size: 0.98rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-decoration: none;
    text-transform: uppercase;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        filter 0.2s ease;
    box-shadow: 0 10px 28px rgba(242, 191, 52, 0.24);
}

.primary-button:hover,
.primary-button:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(242, 191, 52, 0.32);
    filter: brightness(1.04);
}

.signal-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 2rem;
}

.signal-row span {
    padding: 0.72rem 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(8, 10, 14, 0.72);
    color: #d3dce8;
    font-size: 0.76rem;
    text-transform: uppercase;
}

.status-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background:
        linear-gradient(180deg, rgba(79, 140, 255, 0.08), transparent 22%),
        var(--panel-strong);
}

.status-head {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    color: #d6e2ff;
    font-size: 0.76rem;
    text-transform: uppercase;
}

.status-light {
    width: 0.7rem;
    height: 0.7rem;
    border-radius: 50%;
    background: var(--yellow);
    box-shadow: 0 0 18px rgba(242, 191, 52, 0.55);
}

.status-card h2 {
    margin: 1.2rem 0 0;
    font-family: "Bahnschrift", "Aptos Display", "Segoe UI", sans-serif;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    letter-spacing: -0.02em;
}

.status-copy {
    margin: 1rem 0 0;
    color: var(--muted);
    line-height: 1.7;
}

.status-divider {
    height: 1px;
    margin: 1.6rem 0;
    background:
        linear-gradient(90deg, rgba(242, 191, 52, 0.4), rgba(79, 140, 255, 0.18), transparent);
}

.status-list {
    margin: 0;
    padding-left: 1.2rem;
    color: #dce5ef;
    line-height: 1.8;
}

.status-list li + li {
    margin-top: 0.7rem;
}

@media (max-width: 860px) {
    .page-shell {
        width: min(100% - 1.25rem, 1160px);
        padding-top: 1.25rem;
    }

    .site-header {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 2.5rem;
    }

    .header-pill {
        align-self: flex-start;
        white-space: normal;
    }

    .hero-layout {
        grid-template-columns: 1fr;
    }

    .brand-mark.has-image {
        width: min(100%, 270px);
    }

    .hero-copy::after {
        width: 110px;
        height: 110px;
        right: -28px;
        bottom: -28px;
    }
}

@media (max-width: 560px) {
    .page-shell {
        width: min(100% - 1rem, 1160px);
    }

    .brand-mark,
    .hero-copy,
    .status-card {
        padding: 1.2rem;
    }

    .brand-logo {
        max-width: 100%;
        max-height: none;
    }

    .brand-mark.has-image {
        width: min(100%, 240px);
    }

    .primary-button {
        width: 100%;
    }

    .signal-row {
        gap: 0.65rem;
    }

    .signal-row span {
        width: 100%;
        text-align: center;
    }
}
