:root {
    color-scheme: dark;
    --gold: #d7ae62;
    --gold-light: #f2d59a;
    --red: #8e201d;
    --panel: rgba(21, 20, 19, 0.78);
    --line: rgba(215, 174, 98, 0.24);
    --text: #eee8dd;
    --muted: #aaa396;
}

* {
    box-sizing: border-box;
}

html {
    background: #08090b;
}

body {
    min-width: 320px;
    min-height: 100vh;
    margin: 0;
    color: var(--text);
    font-family: Georgia, "Times New Roman", serif;
    background:
        radial-gradient(
            circle at 50% 15%,
            rgba(142, 32, 29, 0.30),
            transparent 32rem
        ),
        radial-gradient(
            circle at 15% 80%,
            rgba(215, 174, 98, 0.10),
            transparent 25rem
        ),
        linear-gradient(145deg, #121315 0%, #070809 60%, #11100f 100%);
}

body::before {
    position: fixed;
    inset: 0;
    z-index: -1;
    content: "";
    opacity: 0.32;
    background-image:
        linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: linear-gradient(to bottom, black, transparent);
}

.page {
    width: min(1120px, calc(100% - 36px));
    margin: 0 auto;
    padding: 34px 0 28px;
}

.brand {
    display: flex;
    justify-content: center;
}

.brand img {
    width: min(380px, 88vw);
    height: auto;
    filter: drop-shadow(0 18px 28px rgba(0,0,0,0.72));
}

.hero {
    max-width: 820px;
    margin: -36px auto 0;
    text-align: center;
}

.eyebrow {
    margin: 0 0 18px;
    color: var(--gold);
    font: 700 0.76rem/1.5 Arial, sans-serif;
    letter-spacing: 0.22em;
}

h1 {
    margin: 0;
    color: var(--gold-light);
    font-size: clamp(2.7rem, 7vw, 5.8rem);
    font-weight: 600;
    line-height: 0.94;
    letter-spacing: -0.045em;
    text-shadow: 0 5px 24px rgba(0,0,0,0.72);
}

.intro {
    max-width: 650px;
    margin: 28px auto 24px;
    color: #d0c9bd;
    font-size: clamp(1.05rem, 2.3vw, 1.3rem);
    line-height: 1.7;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 11px 18px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: #c8c1b5;
    background: rgba(0,0,0,0.30);
    font: 600 0.78rem/1.3 Arial, sans-serif;
    letter-spacing: 0.05em;
}

.pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 0 5px rgba(215, 174, 98, 0.12);
}

.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 68px;
}

.features article {
    min-height: 190px;
    padding: 25px;
    border: 1px solid var(--line);
    border-radius: 4px;
    background: var(--panel);
    box-shadow: 0 18px 55px rgba(0,0,0,0.24);
}

.features span {
    color: var(--red);
    font: 800 0.78rem/1 Arial, sans-serif;
    letter-spacing: 0.14em;
}

.features h2 {
    margin: 14px 0 10px;
    color: var(--gold-light);
    font-size: 1.42rem;
}

.features p {
    margin: 0;
    color: var(--muted);
    font: 0.93rem/1.65 Arial, sans-serif;
}

footer {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 36px;
    padding-top: 22px;
    border-top: 1px solid var(--line);
    color: #77736c;
    font: 0.74rem/1.5 Arial, sans-serif;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

footer p {
    margin: 0;
}

@media (max-width: 720px) {
    .page {
        padding-top: 18px;
    }

    .hero {
        margin-top: -18px;
    }

    .features {
        grid-template-columns: 1fr;
        margin-top: 48px;
    }

    .features article {
        min-height: auto;
    }

    footer {
        flex-direction: column;
        text-align: center;
    }
}
