:root {
    color-scheme: light;
    font-family:
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
    color: #1f2933;
    background: #fff;
}
* {
    box-sizing: border-box;
}
body {
    margin: 0;
    line-height: 1.7;
}
a {
    color: #9a4f0c;
}
.content {
    width: min(960px, calc(100% - 36px));
    margin: 0 auto;
}
.site-header {
    min-height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 0 max(18px, calc((100% - 960px) / 2));
    border-bottom: 1px solid #e5e7eb;
}
.brand {
    color: #1f2933;
    font-size: 20px;
    font-weight: 850;
    text-decoration: none;
}
nav {
    display: flex;
    gap: 18px;
}
nav a {
    color: #475569;
    font-size: 14px;
    text-decoration: none;
}
nav a[aria-current="page"] {
    color: #9a4f0c;
    font-weight: 750;
}
.intro {
    min-height: 460px;
    display: flex;
    align-items: center;
    background: #fff5d8;
    border-bottom: 1px solid #f3d69b;
}
.intro .content {
    padding: 64px 0;
}
.eyebrow {
    color: #9a4f0c;
    font-size: 13px;
    font-weight: 800;
    margin: 0 0 8px;
}
h1 {
    font-size: clamp(38px, 7vw, 72px);
    line-height: 1.08;
    margin: 0 0 18px;
    letter-spacing: 0;
}
h2 {
    font-size: 26px;
    line-height: 1.25;
    margin: 0 0 14px;
    letter-spacing: 0;
}
h3 {
    font-size: 18px;
    letter-spacing: 0;
}
.lead {
    max-width: 700px;
    color: #475569;
    font-size: 19px;
}
.actions {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 28px;
}
.button {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 9px 16px;
    border-radius: 6px;
    background: #a9550c;
    color: #fff;
    font-weight: 750;
    text-decoration: none;
}
.text-link {
    font-weight: 700;
}
.section {
    padding: 64px 0;
}
.section-muted {
    background: #f8fafc;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
}
.split {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 54px;
}
.feature-list,
.faq {
    margin: 0;
}
.feature-list > div,
.faq > div {
    padding: 15px 0;
    border-bottom: 1px solid #e5e7eb;
}
dt {
    font-weight: 800;
}
dd {
    color: #64748b;
    margin: 3px 0 0;
}
.document {
    padding: 58px 0 80px;
}
.prose {
    max-width: 780px;
}
.prose h1 {
    font-size: 42px;
}
.prose h2 {
    margin-top: 38px;
}
.prose p,
.prose li {
    color: #475569;
}
.prose code {
    padding: 2px 5px;
    background: #f1f5f9;
    border-radius: 4px;
}
footer {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    padding: 20px;
    color: #64748b;
    font-size: 13px;
}
@media (max-width: 700px) {
    .site-header {
        align-items: flex-start;
        flex-direction: column;
        padding-top: 14px;
        padding-bottom: 14px;
    }
    .split {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .intro {
        min-height: 410px;
    }
    .lead {
        font-size: 17px;
    }
}
