:root {
    --font-body: "Roboto", sans-serif;
    --font-heading: "Roboto", sans-serif;
    --primary: #2f5d50;
    --surface: #fff;
    --mint-bg: #659e8a2f;
    --surface-variant: #eef6f2;
    --on-surface: #40524d;
    --on-surface-strong: #0d1f1a;
    --outline: rgba(47, 93, 80, .16);
    --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)
}

*,
:after,
:before {
    box-sizing: border-box
}

body,
html {
    background: var(--surface);
    margin: 0;
    padding: 0
}

body {
    color: var(--on-surface);
    font-family: var(--font-body);
    line-height: 1.65;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

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 {
    font-size: clamp(2.125rem, 4.8vw, 3.5rem);
    line-height: 1.15
}

h2 {
    font-size: clamp(1.75rem, 3.3vw, 2.5rem);
    line-height: 1.25
}

h3 {
    font-size: clamp(1.25rem, 2.2vw, 1.5rem);
    line-height: 1.3
}

h4 {
    font-size: clamp(1.125rem, 2vw, 1.25rem);
    line-height: 1.4
}

.lead {
    color: #2c3e36;
    font-size: clamp(1rem, 2.1vw, 1.1875rem);
    line-height: 1.6
}

.subtitle {
    color: var(--on-surface);
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
    max-width: 600px
}

.container {
    margin: 0 auto;
    max-width: 1280px;
    padding-left: clamp(16px, 5vw, 40px);
    padding-right: clamp(16px, 5vw, 40px);
    width: 100%
}

header,
section {
    padding-left: 0;
    padding-right: 0;
    width: 100%
}

section {
    padding: clamp(3.5rem, 7vw, 5.75rem) 0
}

.section-mint {
    background: var(--mint-bg)
}

.section-wash {
    background: #fff
}

.btn {
    align-items: center;
    border-radius: .875rem;
    cursor: pointer;
    display: inline-flex;
    font-family: var(--font-body);
    font-weight: 800;
    gap: .625rem;
    padding: .875rem 1.125rem;
    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)
}

.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;
    justify-content: flex-start;
    margin-top: 1.5rem
}

.frame {
    background: #fff;
    border: 1px solid rgba(47, 93, 80, .14);
    border-radius: 1.125rem;
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: transform .3s ease, box-shadow .3s ease;
    width: 100%
}

.frame:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px)
}

.frame img {
    display: block;
    height: auto;
    object-fit: cover;
    transition: transform .3s;
    width: 100%
}

.frame:hover img {
    transform: scale(1.05)
}

.split {
    align-items: center;
    display: grid;
    gap: clamp(2rem, 4vw, 4rem);
    grid-template-columns: 1fr 1fr
}

@media (max-width:980px) {
    .split {
        grid-template-columns: 1fr
    }
}

.hero {
    background: #fff;
    border-bottom: 1px solid var(--outline);
    padding: clamp(4.5rem, 8vw, 7.5rem) 0 clamp(3rem, 6vw, 4.5rem)
}

.hero .split {
    grid-template-columns: 1.1fr .9fr
}

.hero .frame {
    margin-left: auto;
    max-width: 500px
}

@media (max-width:980px) {
    .hero .split {
        grid-template-columns: 1fr
    }

    .hero .frame {
        margin-left: 0;
        max-width: 100%
    }
}

#about-nominee {
    overflow: hidden
}

#about-nominee h2 {
    color: var(--on-surface-strong);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    letter-spacing: -.02em;
    margin-bottom: .75rem
}

.content-grid {
    align-items: start;
    display: grid;
    gap: 4rem;
    grid-template-columns: 1fr 1fr;
    margin-top: 3rem
}

@media (max-width:1200px) {
    .content-grid {
        gap: 3rem;
        grid-template-columns: 1fr
    }
}

.info-stack {
    display: grid;
    gap: 1.5rem
}

.info-card {
    background: #fff;
    border-left: 4px solid var(--primary);
    border-radius: 1rem;
    box-shadow: var(--shadow-sm);
    padding: 2rem;
    transition: all .3s ease
}

.info-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(8px)
}

.card-header {
    align-items: center;
    display: flex;
    gap: 1rem;
    margin-bottom: .75rem
}

.card-number {
    color: rgba(47, 93, 80, .15);
    font-size: 2rem;
    font-weight: 900;
    line-height: 1
}

.info-card h3 {
    color: var(--on-surface-strong);
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0
}

.info-card p {
    color: var(--on-surface);
    font-size: 1rem;
    line-height: 1.65;
    margin: 0
}

.image-side {
    align-items: center;
    display: flex;
    flex-direction: column;
    position: relative
}

.image-frame {
    border-radius: 1.5rem;
    box-shadow: var(--shadow-lg);
    max-width: 500px;
    overflow: hidden;
    transition: transform .3s ease;
    width: 100%
}

.image-frame:hover {
    transform: translateY(-8px)
}

.image-frame img {
    display: block;
    height: auto;
    object-fit: cover;
    width: 100%
}

.stats-badge {
    background: #fff;
    border: 3px solid var(--primary);
    border-radius: 1.25rem;
    box-shadow: 0 15px 50px rgba(47, 93, 80, .2);
    margin-top: -3rem;
    padding: 1.5rem 2.5rem;
    position: relative;
    text-align: center;
    z-index: 2
}

.stats-badge .number {
    color: var(--primary);
    font-size: 2rem;
    font-weight: 900;
    line-height: 1
}

.stats-badge .label {
    color: var(--on-surface);
    font-size: .8125rem;
    letter-spacing: .05em;
    margin-top: .375rem;
    text-transform: uppercase
}

@media (max-width:640px) {
    .stats-badge {
        padding: 1.25rem 2rem
    }

    .stats-badge .number {
        font-size: 1.75rem
    }
}

.why-choose {
    text-align: center
}

.why-choose h2 {
    margin-bottom: 3rem
}

.why-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    justify-items: center;
    margin: 0 auto;
    max-width: 1200px
}

.why-card {
    background: #fff;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    max-width: 380px;
    overflow: hidden;
    text-align: left;
    transition: transform .3s ease, box-shadow .3s ease;
    width: 100%
}

.why-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px)
}

.why-image img {
    display: block;
    height: 200px;
    object-fit: cover;
    width: 100%
}

.why-content {
    padding: 1.5rem 1.75rem 2rem
}

.why-content h3 {
    color: var(--on-surface-strong);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: .75rem
}

.why-content p {
    color: var(--on-surface);
    font-size: .9375rem;
    line-height: 1.6;
    margin: 0
}

.pricing-split {
    align-items: start;
    display: grid;
    gap: clamp(2rem, 4vw, 4rem);
    grid-template-columns: .9fr 1.1fr
}

@media (max-width:960px) {
    .pricing-split {
        grid-template-columns: 1fr
    }
}

.pricing-frame {
    margin-top: 1.5rem
}

.pricing-card {
    background: #fff;
    border: 1px solid var(--outline);
    border-radius: 1.375rem;
    box-shadow: var(--shadow-md);
    padding: 2rem
}

.pricing-card h3 {
    color: var(--on-surface-strong);
    font-size: 1.5rem;
    margin: 0 0 1rem
}

.price-tag {
    color: var(--primary);
    font-size: 2.25rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 1.5rem
}

.price-period {
    color: var(--on-surface);
    font-size: .875rem;
    font-weight: 400
}

.price-note {
    color: #40524d;
    font-size: .875rem;
    line-height: 1.5;
    margin: 1.5rem 0
}

.pricing-card h4 {
    color: var(--on-surface-strong);
    font-size: 1.125rem;
    margin: 1.5rem 0 .75rem
}

.pricing-list {
    display: grid;
    gap: .625rem;
    list-style: none;
    margin: 0;
    padding: 0
}

.pricing-list li {
    color: #2f4a41;
    font-size: .9375rem;
    line-height: 1.6;
    padding-left: 1.75rem;
    position: relative
}

.pricing-list li:before {
    color: var(--primary);
    content: "✓";
    font-size: 1.125rem;
    font-weight: 700;
    left: 0;
    position: absolute
}

.pricing-card .btns {
    margin-bottom: 1.5rem;
    margin-top: 1.75rem
}

.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: var(--shadow-md);
    color: var(--on-surface-strong);
    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(--on-surface-strong);
    font-size: clamp(1.5rem, 3.2vw, 1.875rem);
    margin: 0 0 0.5rem
}

.cta p {
    color: #2c3e36;
    font-size: 1.0625rem;
    margin: 0 0 1rem
}

.cta .btns {
    justify-content: center;
    margin-top: 0.5rem;
}

@media (max-width:980px) {
    .container {
        padding-left: 16px;
        padding-right: 16px
    }
}

@media (max-width:768px) {
    h1 {
        font-size: 2rem
    }

    .btns {
        flex-direction: column;
        gap: .75rem
    }

    .btn {
        justify-content: center;
        width: 100%
    }

    .cta {
        padding: 2.5rem 1.5rem
    }

    .why-grid {
        grid-template-columns: 1fr
    }
}

@media (max-width:640px) {
    .info-card {
        padding: 1.5rem
    }

    .card-number {
        font-size: 1.5rem
    }

    .pricing-card {
        padding: 1.5rem
    }

    .price-tag {
        font-size: 1.875rem
    }
}

@media (prefers-reduced-motion:reduce) {

    *,
    :after,
    :before {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: .01ms !important
    }
}