:root {
    color-scheme: light dark;
    --bg: #f4efe6;
    --bg-accent: radial-gradient(circle at top, rgba(219, 111, 52, 0.22), transparent 36%), linear-gradient(180deg, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0));
    --surface: rgba(255, 252, 247, 0.88);
    --text: #1b1612;
    --muted: #6b625c;
    --border: rgba(77, 56, 37, 0.14);
    --accent: #d55a1f;
    --accent-strong: #8a2f11;
    --accent-soft: rgba(213, 90, 31, 0.1);
    --shadow: 0 24px 80px rgba(68, 40, 12, 0.12);
}

* {
    box-sizing: border-box;
}

html {
    background: var(--bg);
    background-image: var(--bg-accent);
    color: var(--text);
    font-family: "SF Pro Text", "Avenir Next", "Segoe UI", sans-serif;
    line-height: 1.55;
}

body {
    margin: 0;
}

a {
    color: var(--accent);
    text-decoration-thickness: 0.08em;
    text-underline-offset: 0.2em;
}

.page {
    min-height: 100vh;
    padding: 32px 18px 48px;
}

.shell {
    width: min(880px, 100%);
    margin: 0 auto;
}

.topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 22px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: inherit;
    font-weight: 700;
    text-decoration: none;
}

.brand-mark {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border-radius: 10px;
    background: #111214;
    color: #ffffff;
    font-size: 17px;
    letter-spacing: 0;
}

.nav {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 14px;
    font-weight: 600;
}

.hero,
.document {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 18px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(16px);
}

.hero {
    padding: clamp(28px, 7vw, 68px);
}

.document {
    padding: clamp(24px, 5vw, 48px);
}

h1,
h2 {
    margin: 0;
    letter-spacing: 0;
    line-height: 1.04;
}

h1 {
    max-width: 720px;
    font-size: clamp(34px, 8vw, 76px);
    font-weight: 800;
}

h2 {
    margin-top: 34px;
    font-size: clamp(22px, 4vw, 31px);
    font-weight: 760;
}

.eyebrow {
    margin: 0 0 14px;
    color: var(--accent-strong);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

p,
li {
    font-size: 17px;
}

p {
    margin: 16px 0 0;
}

ul {
    margin: 14px 0 0;
    padding-left: 22px;
}

.lead {
    max-width: 640px;
    color: var(--muted);
    font-size: clamp(18px, 3vw, 22px);
}

.actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.button {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 0 18px;
    border: 1px solid var(--border);
    color: var(--text);
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
}

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

.hero-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 30px;
}

.support-card {
    padding: 22px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.42);
}

.support-card h2 {
    margin-top: 0;
    font-size: 24px;
}

.checklist {
    margin-top: 12px;
}

.note {
    color: var(--muted);
    font-size: 15px;
}

.summary {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 28px;
}

.summary-item {
    min-height: 116px;
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: var(--accent-soft);
}

.summary-item strong {
    display: block;
    margin-bottom: 8px;
}

.summary-item span {
    color: var(--muted);
    font-size: 15px;
}

.meta {
    color: var(--muted);
    font-size: 15px;
}

.footer {
    margin-top: 24px;
    color: var(--muted);
    font-size: 14px;
}

@media (max-width: 700px) {
    .topbar {
        align-items: flex-start;
        flex-direction: column;
    }

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

    .hero,
    .document {
        border-radius: 14px;
    }
}

@media (prefers-color-scheme: dark) {
    :root {
        --bg: #17100c;
        --bg-accent: radial-gradient(circle at top, rgba(255, 147, 101, 0.2), transparent 34%), linear-gradient(180deg, rgba(30, 18, 10, 0.45), rgba(16, 10, 7, 0));
        --surface: rgba(36, 23, 17, 0.82);
        --text: #fff5ef;
        --muted: #cdb7aa;
        --border: rgba(255, 220, 198, 0.12);
        --accent: #ff8d57;
        --accent-strong: #ffb08b;
        --accent-soft: rgba(255, 141, 87, 0.16);
        --shadow: 0 24px 70px rgba(0, 0, 0, 0.36);
    }

    .brand-mark {
        background: #fff5ef;
        color: #1b1612;
    }

    .support-card {
        background: rgba(255, 255, 255, 0.04);
    }
}
