:root {
    color-scheme: light;
    --background: #f7f8fb;
    --surface: #ffffff;
    --surface-muted: #eef2f6;
    --text: #17202a;
    --muted: #5a6875;
    --border: #d8dee8;
    --brand: #1f7a5a;
    --brand-dark: #15553f;
    --accent: #c2942f;
    --shadow: 0 18px 45px rgba(23, 32, 42, 0.12);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: var(--background);
    color: var(--text);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.6;
}

a {
    color: inherit;
}

.site_header {
    align-items: center;
    background: rgba(247, 248, 251, 0.92);
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    padding: 16px clamp(20px, 5vw, 64px);
    position: sticky;
    top: 0;
    z-index: 10;
}

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

.brand_icon {
    border-radius: 8px;
    box-shadow: 0 6px 14px rgba(23, 32, 42, 0.16);
}

.nav {
    display: flex;
    gap: 22px;
}

.nav a {
    color: var(--muted);
    font-size: 14px;
    text-decoration: none;
}

.hero {
    align-items: center;
    display: grid;
    gap: clamp(32px, 7vw, 88px);
    grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
    min-height: calc(100vh - 73px);
    padding: clamp(48px, 8vw, 96px) clamp(20px, 5vw, 64px);
}

.hero_content {
    max-width: 760px;
}

.eyebrow {
    color: var(--brand);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0;
    margin: 0 0 12px;
    text-transform: uppercase;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1 {
    font-size: clamp(44px, 7vw, 82px);
    line-height: 1.02;
    margin-bottom: 24px;
}

h2 {
    font-size: 32px;
    line-height: 1.18;
    margin-bottom: 18px;
}

h3 {
    font-size: 19px;
    margin-bottom: 8px;
}

.lead {
    color: var(--muted);
    font-size: 20px;
    max-width: 620px;
}

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

.primary_action,
.secondary_action {
    border-radius: 6px;
    display: inline-flex;
    font-weight: 700;
    min-height: 44px;
    padding: 10px 16px;
    text-decoration: none;
}

.primary_action {
    background: var(--brand);
    color: #fff;
}

.primary_action:hover {
    background: var(--brand-dark);
}

.secondary_action {
    background: var(--surface);
    border: 1px solid var(--border);
    color: var(--text);
}

.hero_panel {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 8px;
    box-shadow: var(--shadow);
    padding: clamp(24px, 4vw, 38px);
    text-align: center;
}

.key_row {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-bottom: 12px;
}

.key {
    align-items: center;
    aspect-ratio: 1;
    border-radius: 8px;
    display: inline-flex;
    font-size: 34px;
    font-weight: 800;
    justify-content: center;
    width: clamp(62px, 8vw, 86px);
}

.key.active {
    background: var(--brand);
    color: #fff;
}

.key.muted {
    background: var(--surface-muted);
    color: #7a8794;
}

.hero_panel p {
    color: var(--muted);
    margin: 18px 0 0;
}

.section {
    padding: 64px clamp(20px, 5vw, 64px);
}

.feature_grid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature_grid article,
.info_box {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 22px;
}

.feature_grid p,
.split_section p {
    color: var(--muted);
}

.split_section {
    align-items: start;
    display: grid;
    gap: 28px;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
}

.info_box {
    display: grid;
    gap: 8px;
}

.info_box a {
    color: var(--brand);
    font-weight: 700;
    overflow-wrap: anywhere;
}

.label {
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
}

code {
    background: var(--surface-muted);
    border-radius: 5px;
    padding: 2px 6px;
}

.footer {
    align-items: center;
    border-top: 1px solid var(--border);
    color: var(--muted);
    display: flex;
    justify-content: space-between;
    padding: 24px clamp(20px, 5vw, 64px);
}

.footer a {
    color: var(--brand);
}

@media (max-width: 820px) {
    .site_header {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
    }

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

    .hero {
        min-height: auto;
    }

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