:root {
    --bg: #f7f8fb;
    --text: #172033;
    --muted: #667085;
    --line: #dce4ef;
    --accent: #1d8f71;
    --accent-dark: #12664f;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    min-height: 100vh;
    background: linear-gradient(180deg, #ffffff, var(--bg));
    color: var(--text);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

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

.hero {
    min-height: 58vh;
    display: grid;
    align-content: center;
    gap: 18px;
}

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

h1 {
    max-width: 850px;
    margin: 0;
    font-size: clamp(40px, 8vw, 86px);
    line-height: 1;
}

.lead {
    max-width: 680px;
    margin: 0;
    color: var(--muted);
    font-size: 21px;
    line-height: 1.45;
}

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

a {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 18px;
    border-radius: 8px;
    font-weight: 800;
    text-decoration: none;
}

.primary {
    background: var(--accent);
    color: #fff;
}

.secondary {
    border: 1px solid var(--line);
    color: var(--accent-dark);
}

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

article {
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
}

article span {
    color: var(--accent-dark);
    font-weight: 900;
}

h2 {
    margin: 16px 0 8px;
    font-size: 22px;
}

article p {
    margin: 0;
    color: var(--muted);
    line-height: 1.5;
}

@media (max-width: 760px) {
    .page {
        padding: 32px 0;
    }

    .hero {
        min-height: 52vh;
    }

    .lead {
        font-size: 18px;
    }

    .actions a {
        width: 100%;
    }

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