:root {
    --bg: #09090b;
    --panel: #121216;
    --panel2: #18181d;
    --text: #f4f4f5;
    --muted: #a1a1aa;
    --line: rgba(255,255,255,.11);
    --accent: #e7c469;
    --accent2: #fff2b8;
    --max: 1120px;
}

* {
    box-sizing: border-box;
}

html {
    color-scheme: dark;
}

body {
    margin: 0;
    background:
        radial-gradient(
            circle at 50% -10%,
            rgba(231,196,105,.11),
            transparent 36rem
        ),
        var(--bg);
    color: var(--text);
    font-family:
        Inter,
        ui-sans-serif,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
    line-height: 1.65;
}

a {
    color: inherit;
}

.shell {
    width: min(
        calc(100% - 36px),
        var(--max)
    );
    margin: 0 auto;
}

.sitebar {
    border-bottom: 1px solid var(--line);
    background: rgba(9,9,11,.91);
}

.sitebar-inner {
    min-height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    color: var(--accent2);
    font-weight: 900;
    letter-spacing: .18em;
    text-decoration: none;
    font-size: .86rem;
}

.nightlife-link {
    color: var(--muted);
    text-decoration: none;
    font-size: .9rem;
}

.hero {
    padding: 78px 0 56px;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-bottom: 34px;
    color: var(--muted);
    font-size: .86rem;
}

.breadcrumb a {
    text-decoration: none;
}

.intent,
.section-label {
    color: var(--accent);
    font-size: .74rem;
    font-weight: 900;
    letter-spacing: .18em;
    text-transform: uppercase;
}

h1 {
    max-width: 880px;
    margin: 12px 0 18px;
    font-size: clamp(
        2.7rem,
        7vw,
        5.8rem
    );
    line-height: .96;
    letter-spacing: -.055em;
}

.lead {
    max-width: 760px;
    color: #d4d4d8;
    font-size: clamp(
        1.05rem,
        2vw,
        1.3rem
    );
}

.actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 32px;
}

.button {
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 13px 18px;
    background: var(--panel);
    text-decoration: none;
    font-weight: 800;
    font-size: .92rem;
}

.button.primary {
    color: #16130a;
    background: var(--accent);
    border-color: var(--accent);
}

.facts {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: rgba(255,255,255,.018);
}

.fact-grid {
    display: grid;
    grid-template-columns: repeat(
        3,
        1fr
    );
}

.fact {
    min-height: 140px;
    padding: 30px;
    border-right: 1px solid var(--line);
}

.fact:last-child {
    border-right: 0;
}

.fact span {
    display: block;
    margin-bottom: 8px;
    color: var(--muted);
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .15em;
}

.fact strong {
    font-size: 1rem;
}

.content {
    padding: 74px 0;
}

.content-shell {
    max-width: 850px;
}

.content-block {
    padding: 34px 0;
    border-bottom: 1px solid var(--line);
}

.content-block:first-child {
    padding-top: 0;
}

.content-block h2,
.cluster h2,
.source-note h2 {
    margin: 0 0 16px;
    font-size: clamp(
        1.45rem,
        3vw,
        2.15rem
    );
    letter-spacing: -.025em;
}

.content-block p,
.source-note p {
    color: #c7c7cd;
}

.content-block ul {
    color: #d6d6da;
    padding-left: 22px;
}

.cluster {
    padding: 70px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: var(--panel);
}

.cluster h2 {
    margin-top: 9px;
}

.cluster-grid {
    display: grid;
    grid-template-columns: repeat(
        5,
        1fr
    );
    gap: 10px;
    margin-top: 28px;
}

.cluster-card {
    min-height: 105px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 13px;
    background: var(--panel2);
    text-decoration: none;
    font-weight: 800;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.cluster-card span {
    color: var(--accent);
}

.source-note {
    padding: 64px 0;
}

.source-note .shell {
    max-width: 850px;
}

.source-note a {
    color: var(--accent2);
}

footer {
    padding: 30px 0;
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-size: .82rem;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

@media (
    max-width: 820px
) {
    .fact-grid {
        grid-template-columns: 1fr;
    }

    .fact {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .fact:last-child {
        border-bottom: 0;
    }

    .cluster-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (
    max-width: 520px
) {
    .sitebar-inner,
    .footer-inner {
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
        padding: 17px 0;
    }

    .hero {
        padding-top: 50px;
    }

    .cluster-grid {
        grid-template-columns: 1fr;
    }
}
