:root {
    --font-body: "Roboto", sans-serif;
    --font-heading: "Roboto", sans-serif;
    --primary: #2f5d50;
    --surface: #fff;
    --mint-bg: #659e8a2f;
    --text: #0d1f1a;
    --muted: #2c3e36;
    --tile-border: rgba(47, 93, 80, .16);
    --shadow-sm: 0 10px 28px rgba(3, 30, 22, .1);
    --shadow-md: 0 18px 48px rgba(3, 30, 22, .16);
    --shadow-lg: 0 26px 64px rgba(3, 30, 22, .2);
    --radius: 18px
}

*,
:after,
:before {
    box-sizing: border-box
}

body,
html {
    margin: 0;
    padding: 0
}

body {
    background: var(--surface);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.75;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--text);
    font-family: var(--font-heading);
    font-weight: 800;
    letter-spacing: -.015em;
    margin: 0 0 .5rem
}

h1 {
    font-size: clamp(2.5rem, 5.2vw, 3.375rem);
    letter-spacing: -.02em;
    line-height: 1.1
}

h2 {
    font-size: clamp(1.625rem, 3.2vw, 2.375rem);
    line-height: 1.18
}

h3 {
    font-size: clamp(1.125rem, 2.2vw, 1.375rem);
    font-weight: 700;
    line-height: 1.3
}

a,
div,
li,
p,
span {
    color: var(--text);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.75
}

.lead {
    font-size: clamp(1rem, 2.1vw, 1.1875rem);
    line-height: 1.65
}

.lead,
.muted {
    color: var(--muted)
}

.eyebrow {
    color: var(--primary);
    display: inline-block;
    font-size: .8125rem;
    font-weight: 800;
    letter-spacing: .14em;
    margin-bottom: .75rem;
    text-transform: uppercase
}

.container {
    margin: 0 auto;
    max-width: 1280px;
    padding-left: clamp(16px, 4vw, 56px);
    padding-right: clamp(16px, 4vw, 56px);
    width: 100%
}

header,
section {
    padding-left: 0;
    padding-right: 0;
    width: 100%
}

section {
    padding: clamp(3.875rem, 7vw, 5rem) 0
}

.cta-section {
    padding: clamp(2.125rem, 4vw, 3rem) 0
}

.section-mint {
    background: var(--mint-bg)
}

.section-wash {
    background: #fff
}

.btn {
    align-items: center;
    border: 1px solid rgba(47, 93, 80, .25);
    border-radius: .75rem;
    box-shadow: var(--shadow-md);
    cursor: pointer;
    display: inline-flex;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 800;
    gap: .625rem;
    padding: .875rem 1.125rem;
    text-decoration: none;
    transition: transform .2s ease, box-shadow .2s ease
}

.btn.primary {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff
}

.btn.primary:focus-visible,
.btn.primary:hover {
    filter: brightness(1.1);
    transform: translateY(-1px)
}

.btn.ghost {
    background: #fff;
    border-color: var(--primary);
    color: var(--primary)
}

.btn.ghost:focus-visible,
.btn.ghost:hover {
    transform: translateY(-1px)
}

.btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    margin-top: 1.5rem
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    border-radius: .75rem;
    outline: 3px solid rgba(47, 93, 80, .35);
    outline-offset: 2px
}

.hero {
    background: #fff;
    border-bottom: 1px solid var(--tile-border);
    color: var(--text);
    padding: 7.5rem 0 6.75rem
}

.hero-grid {
    align-items: center;
    display: grid;
    gap: 2.5rem;
    grid-template-columns: 1fr 1fr
}

.hero-content {
    max-width: none
}

.hero h1 {
    color: var(--text);
    margin-bottom: 1rem
}

.hero .lead {
    margin-top: 1rem;
    max-width: 820px
}

.hero-media {
    background: var(--surface);
    border: 1px solid var(--tile-border);
    border-radius: 1.125rem;
    box-shadow: var(--shadow-md);
    margin: 0;
    max-width: none;
    padding: .625rem;
    position: relative;
    width: 100%
}

.hero-media img {
    aspect-ratio: 4/3;
    border-radius: .75rem;
    display: block;
    height: auto;
    object-fit: cover;
    width: 100%
}

@media (max-width:980px) {
    .hero-grid {
        grid-template-columns: 1fr
    }

    .hero {
        padding: 5.25rem 0 6rem
    }
}

@media (max-width:600px) {
    .hero {
        padding: 5.25rem 0 6rem
    }
}

.media {
    background: var(--surface);
    border: 1px solid var(--tile-border);
    border-radius: 1.125rem;
    box-shadow: var(--shadow-md);
    margin: 0;
    max-width: none;
    padding: .625rem;
    position: relative;
    width: 100%
}

.media img {
    aspect-ratio: 4/3;
    border-radius: .75rem;
    display: block;
    height: auto;
    object-fit: cover;
    width: 100%
}

.split {
    align-items: start;
    display: grid;
    gap: 2.5rem;
    grid-template-columns: 1.15fr .85fr
}

@media (max-width:980px) {
    .split {
        grid-template-columns: 1fr
    }
}

.check-list {
    display: grid;
    gap: .625rem;
    list-style: none;
    margin: 1rem 0 0;
    padding: 0
}

.check-list li {
    align-items: start;
    display: grid;
    gap: .75rem;
    grid-template-columns: 1.625rem 1fr;
    padding: .5rem 0
}

.check-icon {
    border: 1.5px solid rgba(47, 93, 80, .5);
    border-radius: .5625rem;
    color: var(--primary);
    display: grid;
    flex-shrink: 0;
    font-size: .875rem;
    font-weight: 900;
    height: 1.625rem;
    place-items: center;
    width: 1.625rem
}

.section-header {
    margin-bottom: 3rem;
    margin-left: auto;
    margin-right: auto;
    max-width: 900px;
    text-align: center
}

.section-header h2 {
    margin: 0 0 .5rem
}

.section-header .lead {
    margin: 0;
    opacity: .92
}

.features-grid {
    display: grid;
    gap: 1.125rem;
    grid-template-columns: repeat(4, minmax(0, 1fr))
}

@media (max-width:980px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media (max-width:600px) {
    .features-grid {
        grid-template-columns: 1fr
    }
}

.feature-card {
    background: var(--surface);
    border: 1px solid var(--tile-border);
    border-radius: 1.25rem;
    box-shadow: 0 18px 40px rgba(11, 47, 36, .14), 0 4px 10px rgba(11, 47, 36, .08);
    min-height: 100%;
    overflow: hidden
}

.feature-content {
    display: grid;
    gap: .625rem;
    padding: 1.375rem;
    text-align: center
}

.icon-badge {
    background: var(--primary);
    border: 1px solid rgba(47, 93, 80, .25);
    border-radius: 1rem;
    box-shadow: inset 0 0 0 1px hsla(0, 0%, 100%, .2);
    display: grid;
    height: 4.5rem;
    margin: 0 auto;
    place-items: center;
    width: 4.5rem
}

.icon-badge img {
    display: block;
    filter: brightness(0) invert(1);
    height: 58%;
    object-fit: contain;
    width: 58%
}

.feature-content h3 {
    color: var(--text);
    margin: .375rem 0
}

.feature-content p {
    color: var(--muted);
    font-size: .9375rem;
    line-height: 1.55;
    margin: 0
}

.why-grid {
    align-items: start;
    display: grid;
    gap: 2.5rem;
    grid-template-columns: 1.2fr .8fr
}

@media (max-width:980px) {
    .why-grid {
        grid-template-columns: 1fr
    }
}

.why-content h2 {
    margin: 0 0 .375rem
}

.why-content .muted {
    margin: .375rem 0 1rem
}

.cta {
    background: linear-gradient(135deg, rgba(127, 224, 195, .08), rgba(47, 93, 80, .08));
    border: 2px solid rgba(47, 93, 80, .15);
    border-radius: 22px;
    box-shadow: 0 18px 48px rgba(3, 30, 22, .16);
    color: #0d1f1a;
    margin: 0 auto;
    max-width: 1168px;
    padding: 24px;
    text-align: center;
    transition: transform .3s ease, box-shadow .3s ease;
    width: 100%
}

.cta:hover {
    box-shadow: 0 26px 64px rgba(3, 30, 22, .2);
    transform: translateY(-6px)
}

.cta h3 {
    color: var(--on-surface-strong);
    font-size: 1.75rem;
    margin: 0 0 0.5rem
}

.cta p {
    color: #2c3e36;
    margin: 0 0 1rem
}

.cta .btns {
    display: flex;
    flex-wrap: wrap;
    gap: .875rem;
    justify-content: center;
    margin-top: 0.5rem
}

@media (max-width:768px) {
    .cta {
        padding: 2.5rem 1.5rem
    }

    .cta .btns {
        flex-direction: column;
        gap: .75rem
    }

    .btn {
        justify-content: center;
        width: 100%
    }
}

@media (prefers-reduced-motion:reduce) {

    *,
    :after,
    :before {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: .01ms !important
    }
}