:root {
    color-scheme: light;
    --bg: #f8fafc;
    --text: #17202a;
    --muted: #64748b;
    --line: #dbe3ea;
    --primary: #14532d;
    --primary-hover: #0f3f22;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    min-height: 100vh;
    background: var(--bg);
    color: var(--text);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
    color: inherit;
    text-decoration: none;
}

.site-header {
    align-items: center;
    background: #ffffff;
    border-bottom: 1px solid var(--line);
    display: flex;
    justify-content: space-between;
    min-height: 64px;
    padding: 0 28px;
}

.site-brand {
    font-size: 20px;
    font-weight: 800;
}

.site-nav {
    display: flex;
    gap: 16px;
}

.site-nav a {
    color: var(--muted);
    font-weight: 700;
}

.home {
    align-items: center;
    display: grid;
    min-height: calc(100vh - 64px);
    padding: 48px 28px;
}

.home > div {
    max-width: 760px;
}

.eyebrow {
    color: var(--primary);
    font-weight: 800;
    margin: 0 0 10px;
    text-transform: uppercase;
}

h1 {
    font-size: 48px;
    line-height: 1.05;
    margin: 0 0 16px;
}

.lede {
    color: var(--muted);
    font-size: 18px;
    line-height: 1.6;
    margin: 0 0 24px;
}

.button {
    align-items: center;
    background: var(--primary);
    border: 1px solid var(--primary);
    border-radius: 6px;
    color: #ffffff;
    display: inline-flex;
    font-weight: 800;
    min-height: 42px;
    padding: 10px 16px;
}

.button:hover {
    background: var(--primary-hover);
}

@media (max-width: 640px) {
    .site-header {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
        padding: 16px;
    }

    .home {
        min-height: calc(100vh - 98px);
        padding: 32px 16px;
    }

    h1 {
        font-size: 36px;
    }
}
