* {
    box-sizing: border-box;
}

body {
    margin: 0;
    color: #16201f;
    background: #f6fbfa;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.65;
}

a {
    color: #007f73;
}

.page {
    width: min(920px, calc(100% - 32px));
    margin: 0 auto;
}

header {
    padding: 32px 0 18px;
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.brand {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 0;
}

.links {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    font-size: 15px;
}

.hero {
    padding: 64px 0 52px;
}

.eyebrow {
    color: #008f83;
    font-size: 15px;
    font-weight: 700;
}

h1 {
    margin: 8px 0 16px;
    font-size: clamp(40px, 7vw, 72px);
    line-height: 1.05;
    letter-spacing: 0;
}

h2 {
    margin: 44px 0 12px;
    font-size: 28px;
    line-height: 1.25;
    letter-spacing: 0;
}

h3 {
    margin: 28px 0 8px;
    font-size: 20px;
}

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

.lead {
    max-width: 680px;
    color: #52605e;
    font-size: 20px;
}

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

.button {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 10px 16px;
    border: 1px solid #008f83;
    border-radius: 8px;
    background: #008f83;
    color: #ffffff;
    font-weight: 700;
    text-decoration: none;
}

.button.secondary {
    background: transparent;
    color: #007f73;
}

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

.card {
    min-height: 168px;
    padding: 18px;
    border: 1px solid #d8e7e4;
    border-radius: 8px;
    background: #ffffff;
}

.card strong {
    display: block;
    margin-bottom: 8px;
    font-size: 18px;
}

.muted {
    color: #667471;
}

main {
    padding-bottom: 52px;
}

footer {
    padding: 28px 0 36px;
    border-top: 1px solid #d8e7e4;
    color: #667471;
    font-size: 14px;
}

@media (max-width: 720px) {
    nav {
        align-items: flex-start;
        flex-direction: column;
    }

    .hero {
        padding-top: 36px;
    }

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