:root {
    --font-body: "Roboto", sans-serif;
    --font-heading: "Roboto", sans-serif;
    --primary: #2f5d50;
    --primary-variant: #2f5d50;
    --accent: #2f5d50;
    --surface: #fff;
    --on-surface: #40524d;
    --on-surface-strong: #0d1f1a;
    --outline: rgba(47, 93, 80, .16);
    --site-gutter: clamp(20px, 3.5vw, 40px);
    --radius: 18px;
    --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)
}

* {
    box-sizing: border-box
}

body,
html {
    margin: 0;
    padding: 0
}

body {
    background: #fff;
    color: var(--on-surface);
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.65;
    overflow-x: hidden;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

.container {
    margin-inline: auto;
    max-width: 1280px;
    padding-inline: var(--site-gutter);
    width: 100%
}

section {
    margin: 0;
    padding-block: 4.5rem;
    padding-inline: 0;
    width: 100%
}

@media (max-width:768px) {
    section {
        padding-block: 3.5rem
    }
}

canvas,
img,
video {
    display: block;
    height: auto;
    max-width: 100%
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--on-surface-strong);
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -.015em;
    margin: 0 0 .5rem
}

h1 {
    color: var(--primary);
    font-size: clamp(2rem, 5vw, 2.75rem);
    line-height: 1.2
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    line-height: 1.3
}

h3 {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    line-height: 1.35
}

.lead {
    color: #2c3e36;
    font-size: clamp(1rem, 2vw, 1.125rem);
    line-height: 1.6
}

.eyebrow {
    background: rgba(47, 93, 80, .08);
    border: 1px solid rgba(47, 93, 80, .25);
    border-radius: 2rem;
    color: var(--primary);
    display: inline-block;
    font-size: .75rem;
    font-weight: 800;
    letter-spacing: .14em;
    margin-bottom: .75rem;
    padding: .375rem .875rem;
    text-transform: uppercase
}

.btn {
    align-items: center;
    border-radius: .875rem;
    cursor: pointer;
    display: inline-flex;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    gap: .625rem;
    padding: .875rem 1.25rem;
    text-decoration: none;
    transition: transform .25s ease, box-shadow .25s ease
}

.btn.primary {
    background: var(--primary);
    box-shadow: 0 8px 20px rgba(47, 93, 80, .25);
    color: #fff
}

.btn.primary:focus-visible,
.btn.primary:hover {
    box-shadow: 0 12px 32px rgba(47, 93, 80, .35);
    transform: translateY(-2px) scale(1.02)
}

.btn.ghost {
    background: #fff;
    border: 1px solid rgba(47, 93, 80, .25);
    color: var(--primary)
}

.btn.ghost:focus-visible,
.btn.ghost:hover {
    border-color: var(--primary);
    box-shadow: 0 8px 16px rgba(47, 93, 80, .18);
    transform: translateY(-2px)
}

.btns {
    display: flex;
    flex-wrap: wrap;
    gap: .875rem;
    margin-top: 1.5rem
}

.btn:focus-visible,
a:focus-visible,
button:focus-visible {
    outline: 3px solid var(--primary);
    outline-offset: 3px
}

.section-mint {
    background: #659e8a2f;
    color: #0d1f1a
}

.hero,
.section-wash {
    background: #fff;
    color: #0d1f1a
}

.hero {
    border-bottom: 1px solid var(--outline);
    padding: 4rem 0 3.5rem
}

@media (max-width:768px) {
    .hero {
        padding: 3rem 0 2.5rem
    }
}

.split {
    align-items: center;
    display: grid;
    gap: 3rem;
    grid-template-columns: 1.1fr .9fr
}

.split>:first-child {
    max-width: 68ch
}

@media (max-width:980px) {
    .split {
        gap: 2.5rem;
        grid-template-columns: 1fr
    }

    .split>:first-child {
        max-width: none
    }
}

.frame {
    background: #fff;
    border: 1px solid rgba(47, 93, 80, .14);
    border-radius: 1.125rem;
    box-shadow: var(--shadow-md);
    max-width: 400px;
    overflow: hidden;
    transition: transform .3s ease, box-shadow .3s ease;
    width: 100%
}

.frame:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px)
}

.frame img {
    height: 100%;
    object-fit: cover;
    transition: transform .3s;
    width: 100%
}

.frame:hover img {
    transform: scale(1.05)
}

.value-list {
    display: grid;
    gap: 1rem;
    list-style: none;
    margin: 1.25rem 0 0;
    padding: 0
}

.value-list li {
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    background: hsla(0, 0%, 100%, .6);
    border: 1px solid rgba(47, 93, 80, .2);
    border-radius: 12px;
    color: #2f4a41;
    padding: 1.125rem 1.125rem 1.125rem 4rem;
    position: relative;
    transition: all .3s ease
}

.value-list li:hover {
    background: hsla(0, 0%, 100%, .95);
    border-color: rgba(47, 93, 80, .35);
    box-shadow: 0 6px 20px rgba(47, 93, 80, .12);
    transform: translateX(8px)
}

.value-list li .icon {
    color: var(--primary);
    height: 2rem;
    left: 1rem;
    position: absolute;
    top: 1.125rem;
    transition: transform .3s;
    width: 2rem
}

.value-list li:hover .icon {
    transform: scale(1.1)
}

.collage {
    align-items: center;
    display: flex;
    justify-content: center;
    margin-left: 0;
    max-width: 480px;
    min-height: 420px;
    position: relative;
    width: 100%
}

.collage .frame {
    border: 2px solid var(--primary);
    border-radius: 1.125rem;
    box-shadow: var(--shadow-md);
    height: 320px;
    overflow: hidden;
    position: absolute;
    width: 272px
}

.collage .f1 {
    left: 0;
    top: .5rem;
    z-index: 1
}

.collage .f2 {
    left: 6.5rem;
    top: 10.5rem;
    z-index: 2
}

@media (max-width:980px) {
    .collage {
        flex-direction: column;
        max-width: 100%;
        min-height: 0
    }

    .collage .frame {
        left: auto;
        margin: 0 0 1rem;
        max-width: 360px;
        position: relative;
        top: auto;
        width: 100%
    }
}

#requirements h2 {
    margin-bottom: 2.5rem;
    text-align: center
}

.req-row {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(5, 1fr)
}

@media (max-width:980px) {
    .req-row {
        grid-template-columns: repeat(3, 1fr)
    }
}

@media (max-width:640px) {
    .req-row {
        grid-template-columns: repeat(2, 1fr)
    }
}

.req-item {
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    background: hsla(0, 0%, 100%, .8);
    border: 1px solid rgba(47, 93, 80, .2);
    border-radius: 1.125rem;
    box-shadow: var(--shadow-sm);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all .3s ease
}

.req-item:hover {
    background: #fff;
    border-color: rgba(47, 93, 80, .35);
    box-shadow: 0 16px 40px rgba(47, 93, 80, .18);
    transform: translateY(-12px) scale(1.03)
}

.req-ico {
    background: var(--primary);
    border-radius: 1rem;
    box-shadow: 0 8px 20px rgba(47, 93, 80, .28);
    color: #fff;
    display: grid;
    height: 4.5rem;
    margin: 0 auto 1rem;
    place-items: center;
    transition: all .3s ease;
    width: 4.5rem
}

.req-item:hover .req-ico {
    box-shadow: 0 12px 28px rgba(47, 93, 80, .4);
    transform: scale(1.1)
}

.req-item h3 {
    color: #0f2a23;
    font-size: 1rem;
    font-weight: 700;
    margin: .75rem 0 0
}

.steps-wrap {
    align-items: stretch;
    display: grid;
    gap: 3rem;
    grid-template-columns: .9fr 1.1fr
}

.steps-wrap .frame {
    height: 100%;
    max-width: 448px
}

@media (max-width:980px) {
    .steps-wrap {
        gap: 2.5rem;
        grid-template-columns: 1fr
    }
}

.steps {
    list-style: none;
    margin: 1.5rem 0 0;
    padding: 0
}

.step,
.steps {
    display: grid;
    gap: 1.25rem
}

.step {
    align-items: start;
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    background: hsla(0, 0%, 100%, .7);
    border: 1px solid rgba(47, 93, 80, .2);
    border-radius: 14px;
    box-shadow: var(--shadow-sm);
    grid-template-columns: 4rem 1fr;
    padding: 1.75rem;
    transition: all .3s ease
}

.step:hover {
    background: #fff;
    border-color: rgba(47, 93, 80, .35);
    box-shadow: 0 8px 28px rgba(47, 93, 80, .15);
    transform: translateX(12px)
}

.step h3 {
    font-size: 1.125rem;
    margin: 0 0 .25rem;
    transition: color .3s
}

.step:hover h3 {
    color: var(--primary)
}

.step p {
    color: #2f4a41;
    font-size: .9375rem;
    margin: 0
}

.badge {
    background: var(--primary);
    border-radius: 1rem;
    box-shadow: 0 8px 20px rgba(47, 93, 80, .24);
    color: #fff;
    display: grid;
    height: 4rem;
    place-items: center;
    transition: all .3s ease;
    width: 4rem
}

.step:hover .badge {
    box-shadow: 0 12px 24px rgba(47, 93, 80, .4);
    transform: scale(1.1)
}

.badge svg {
    height: 24px;
    width: 24px
}

.cta {
    background: linear-gradient(135deg, rgba(127, 224, 195, .15), rgba(47, 93, 80, .12));
    border: 2px solid rgba(47, 93, 80, .2);
    border-radius: 22px;
    box-shadow: var(--shadow-md);
    color: #061417;
    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: var(--shadow-lg);
    transform: translateY(-6px)
}

.cta h3 {
    color: var(--primary);
    font-size: 1.75rem;
    margin: 0 0 0.5rem
}

.cta p {
    font-size: 1.0625rem;
    margin: 0 0 1rem
}

.cta .btns {
    justify-content: center;
    margin-top: 0.5rem;
}

@media (max-width:768px) {
    .hero h1 {
        font-size: 2rem
    }

    .btns {
        flex-direction: column;
        gap: .75rem
    }

    .btn {
        justify-content: center;
        width: 100%
    }

    .cta {
        padding: 2.5rem 1.5rem
    }
}

@media (max-width:560px) {
    .req-item {
        padding: 1.5rem 1rem
    }

    .req-ico {
        height: 3.5rem;
        width: 3.5rem
    }

    .step {
        gap: 1rem;
        grid-template-columns: 3.5rem 1fr;
        padding: 1.25rem
    }

    .badge {
        height: 3.5rem;
        width: 3.5rem
    }

    .badge svg {
        height: 20px;
        width: 20px
    }
}

@media (prefers-reduced-motion:reduce) {

    *,
    :after,
    :before {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: .01ms !important
    }
}