body.home-page {
    background:
        radial-gradient(circle at top, rgba(240, 216, 82, 0.09), transparent 28%),
        linear-gradient(180deg, #dbe3d8 0%, #e9eee4 34%, #edf0e9 100%);
    color: #163121;
}

.home-main {
    position: relative;
}

.home-section {
    position: relative;
    padding: clamp(72px, 9vw, 112px) 0;
}

.home-section--compact {
    padding-top: clamp(44px, 5vw, 72px);
}

.home-section--tint {
    background:
        radial-gradient(circle at top left, rgba(95, 119, 47, 0.08), transparent 24%),
        linear-gradient(180deg, rgba(14, 39, 24, 0.06), rgba(14, 39, 24, 0)),
        linear-gradient(135deg, rgba(237, 241, 233, 0.9), rgba(223, 231, 219, 0.94));
}

.home-section--dark {
    background:
        radial-gradient(circle at 18% 10%, rgba(240, 216, 82, 0.08), transparent 20%),
        radial-gradient(circle at 82% 18%, rgba(121, 170, 105, 0.1), transparent 22%),
        linear-gradient(135deg, #11271a, #173323 42%, #234831 100%);
    color: #eff6ea;
}

.home-section--accent {
    background:
        radial-gradient(circle at 82% 16%, rgba(240, 216, 82, 0.18), transparent 26%),
        linear-gradient(135deg, #1c3323, #123321 58%, #234a33);
    color: #eff7ec;
}

.home-shell {
    width: min(92%, 1240px);
    margin: 0 auto;
}

.home-section-heading {
    max-width: 760px;
    margin-bottom: clamp(28px, 4vw, 42px);
}

.home-kicker {
    margin: 0 0 12px;
    color: #5f772f;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.home-title {
    margin: 0;
    color: #132918;
    font-size: clamp(34px, 4vw, 56px);
    line-height: 0.98;
    letter-spacing: -0.04em;
    text-wrap: balance;
}

.home-lead {
    max-width: 720px;
    margin: 16px 0 0;
    color: rgba(19, 41, 24, 0.84);
    font-size: clamp(17px, 1.4vw, 21px);
    line-height: 1.6;
}

.home-section--dark .home-kicker,
.home-section--accent .home-kicker {
    color: #f0d852;
}

.home-section--dark .home-title,
.home-section--dark .home-lead,
.home-section--accent .home-title,
.home-section--accent .home-lead {
    color: #eff7ec;
}

.home-section--dark .home-lead,
.home-section--accent .home-lead {
    color: rgba(239, 247, 236, 0.86);
}

.home-card {
    position: relative;
    border: 1px solid rgba(20, 39, 23, 0.12);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 22px 46px rgba(15, 31, 20, 0.08);
    backdrop-filter: blur(10px);
}

.home-pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.home-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 14px;
    border: 1px solid rgba(31, 63, 39, 0.12);
    border-radius: 999px;
    background: rgba(245, 247, 241, 0.84);
    color: #21432c;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.2;
}

.home-section--dark .home-pill,
.home-section--accent .home-pill {
    border-color: rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
}

.home-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.home-cta {
    display: inline-flex;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    padding: 0 22px;
    border-radius: 999px;
    border: 1px solid transparent;
    text-decoration: none;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.home-cta:hover,
.home-cta:focus-visible {
    transform: translateY(-2px);
}

.home-cta--primary {
    color: #102018;
    background: linear-gradient(180deg, #fff7b9, #f0d852);
    box-shadow: 0 18px 30px rgba(15, 31, 20, 0.12);
}

.home-cta--secondary {
    color: #163121;
    border-color: rgba(25, 62, 33, 0.16);
    background: rgba(247, 249, 244, 0.84);
    box-shadow: 0 14px 26px rgba(15, 31, 20, 0.08);
}

.home-section--dark .home-cta--secondary,
.home-section--accent .home-cta--secondary {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.08);
}

.home-context-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 14px;
    align-items: center;
    margin-top: 18px;
}

.home-context-links__label {
    flex-basis: 100%;
    color: rgba(19, 41, 24, 0.58);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.home-context-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #163121;
    text-decoration: none;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.3;
    transition: color 0.2s ease, transform 0.2s ease;
}

.home-context-link::after {
    content: "";
    width: 18px;
    height: 1px;
    background: currentColor;
    opacity: 0.42;
    transition: width 0.2s ease, opacity 0.2s ease;
}

.home-context-link:hover,
.home-context-link:focus-visible {
    color: #5f772f;
    transform: translateY(-1px);
}

.home-context-link:hover::after,
.home-context-link:focus-visible::after {
    width: 24px;
    opacity: 0.88;
}

.home-section--dark .home-context-links__label,
.home-section--accent .home-context-links__label {
    color: rgba(239, 247, 236, 0.58);
}

.home-section--dark .home-context-link,
.home-section--accent .home-context-link {
    color: #eef7ea;
}

.home-section--dark .home-context-link:hover,
.home-section--dark .home-context-link:focus-visible,
.home-section--accent .home-context-link:hover,
.home-section--accent .home-context-link:focus-visible {
    color: #f0d852;
}

.home-section ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.home-section li {
    position: relative;
    padding-left: 22px;
    color: rgba(19, 41, 24, 0.85);
    line-height: 1.5;
}

.home-section li::before {
    content: "";
    position: absolute;
    top: 10px;
    left: 0;
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: #5f772f;
    box-shadow: 0 0 0 5px rgba(95, 119, 47, 0.14);
}

.home-section--dark li,
.home-section--accent li {
    color: rgba(239, 247, 236, 0.88);
}

.home-section--dark li::before,
.home-section--accent li::before {
    background: #f0d852;
    box-shadow: 0 0 0 5px rgba(240, 216, 82, 0.14);
}

@media (max-width: 820px) {
    .home-section {
        padding: 68px 0;
    }

    .home-title {
        font-size: clamp(31px, 9vw, 44px);
    }

    .home-lead {
        font-size: 16px;
    }

    .home-cta,
    .home-cta--primary,
    .home-cta--secondary {
        width: 100%;
    }

    .home-context-links {
        gap: 10px;
    }

    .home-context-link {
        width: 100%;
        justify-content: space-between;
    }
}
