:root {
    --mist: #f3f7f6;
    --mist-soft: #e4eeec;
    --mist-deep: #d5e4e0;
    --ink: #1a2f2c;
    --ink-soft: #3d524e;
    --mute: #5e726d;
    --jade: #2d7a6a;
    --jade-deep: #1f5c4f;
    --jade-soft: #b8d4cc;
    --honey: #c9953a;
    --honey-soft: #f3e4c4;
    --white: #ffffff;
    --shadow: 0 12px 40px -16px rgba(26, 47, 44, 0.12);
    --radius: 1rem;
    --font-display: "Be Vietnam Pro", system-ui, sans-serif;
    --font-body: "Source Sans 3", system-ui, sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 18px;
}

body {
    margin: 0;
    font-family: var(--font-body);
    font-size: 1.0625rem;
    line-height: 1.65;
    color: var(--ink);
    background-color: var(--mist);
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--jade);
    text-decoration: none;
    transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

a:hover {
    color: var(--jade-deep);
}

h1,
h2,
h3,
h4,
.font-display {
    font-family: var(--font-display);
    line-height: 1.25;
    font-weight: 600;
    margin: 0;
}

p {
    margin: 0;
}

.container {
    width: min(72rem, 100% - 2.5rem);
    margin-inline: auto;
}

/* Header */
.site-header {
    position: absolute;
    inset: 0 0 auto;
    z-index: 20;
    padding: 1.25rem 0;
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    color: var(--ink);
}

.brand img {
    width: 2.25rem;
    height: 2.25rem;
    object-fit: contain;
}

.brand span {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.nav {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    font-size: 1rem;
}

.nav a:not(.btn) {
    color: var(--mute);
}

.nav a:not(.btn):hover {
    color: var(--ink);
}

@media (max-width: 640px) {
    .nav a:not(.btn) {
        display: none;
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 1.5rem;
    border-radius: 0.75rem;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    border: 1px solid transparent;
    cursor: pointer;
    text-decoration: none;
}

.btn--jade {
    background: var(--jade);
    color: var(--white);
}

.btn--jade:hover {
    background: var(--jade-deep);
    color: var(--white);
}

.btn--ink {
    background: var(--ink);
    color: var(--mist);
}

.btn--ink:hover {
    background: var(--jade-deep);
    color: var(--mist);
}

.btn--honey {
    background: var(--honey);
    color: var(--ink);
}

.btn--honey:hover {
    background: var(--honey-soft);
    color: var(--ink);
}

.btn--ghost {
    background: rgba(255, 255, 255, 0.7);
    border-color: rgba(26, 47, 44, 0.15);
    color: var(--ink);
    backdrop-filter: blur(6px);
}

.btn--ghost:hover {
    background: var(--white);
    border-color: rgba(45, 122, 106, 0.4);
    color: var(--jade);
}

/* Hero */
.hero {
    position: relative;
    min-height: 100svh;
    overflow: hidden;
    background-color: var(--mist);
    background-image:
        linear-gradient(
            105deg,
            rgba(247, 250, 249, 0.94) 0%,
            rgba(243, 247, 246, 0.82) 42%,
            rgba(243, 247, 246, 0.4) 70%,
            rgba(228, 238, 236, 0.25) 100%
        ),
        url("hero-mist-bg.png");
    background-size: cover;
    background-position: center;
}

.hero__grid {
    position: relative;
    z-index: 2;
    display: grid;
    align-items: center;
    gap: 2.5rem;
    min-height: 100svh;
    padding: 7rem 0 4rem;
}

@media (min-width: 900px) {
    .hero__grid {
        grid-template-columns: 1.05fr 0.95fr;
        padding: 6rem 0 3rem;
    }
}

.eyebrow {
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--jade);
}

.hero h1 {
    margin-top: 1rem;
    font-size: clamp(2rem, 4.4vw, 3.15rem);
    letter-spacing: -0.02em;
    max-width: 18ch;
}

.hero__slogan {
    margin-top: 0.85rem;
    font-family: var(--font-display);
    font-size: clamp(1.15rem, 2.2vw, 1.45rem);
    font-weight: 500;
    color: var(--jade-deep);
}

.hero__lead {
    margin-top: 1.1rem;
    max-width: 34rem;
    font-size: 1.25rem;
    color: var(--mute);
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.75rem;
}

.hero__visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero__visual img {
    width: min(100%, 18rem);
    border-radius: 1.25rem;
    filter: drop-shadow(0 28px 48px rgba(26, 47, 44, 0.18));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero__visual img {
        animation: none;
    }
}

/* Sections */
.section {
    padding: 4.5rem 0;
}

.section--soft {
    background-color: var(--mist);
    background-image:
        linear-gradient(180deg, rgba(243, 247, 246, 0.9) 0%, rgba(228, 238, 236, 0.85) 100%),
        url("section-mist-bg.png");
    background-size: cover;
    background-position: center;
    border-top: 1px solid rgba(26, 47, 44, 0.05);
    border-bottom: 1px solid rgba(26, 47, 44, 0.05);
}

.section--band {
    background: #eef4f2;
    background-image:
        radial-gradient(ellipse 70% 50% at 50% 0%, rgba(184, 212, 204, 0.4) 0%, transparent 60%),
        linear-gradient(180deg, rgba(238, 244, 242, 0.92) 0%, rgba(243, 247, 246, 0.88) 100%),
        url("section-mist-bg.png");
    background-size: cover;
}

.section__head {
    max-width: 40rem;
    margin: 0 auto 2.75rem;
    text-align: center;
}

.section__head h2 {
    font-size: clamp(1.85rem, 3.5vw, 2.5rem);
    letter-spacing: -0.02em;
}

.section__head p {
    margin-top: 0.75rem;
    font-size: 1.15rem;
    color: var(--mute);
}

.section__head .box {
    color: var(--jade);
}

.section__head--row {
    max-width: none;
    display: grid;
    gap: 0.85rem 2rem;
    text-align: left;
    align-items: end;
}

@media (min-width: 800px) {
    .section__head--row {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
    }

    .section__head--row p {
        margin-top: 0;
    }
}

/* Why */
.why {
    display: grid;
    gap: 2.5rem;
    align-items: center;
}

@media (min-width: 900px) {
    .why {
        grid-template-columns: 1.1fr 0.9fr;
        gap: 3rem;
    }
}

.why__list {
    list-style: none;
    margin: 1.75rem 0 0;
    padding: 0;
    display: grid;
    gap: 1rem;
}

.why__item {
    display: flex;
    gap: 0.9rem;
    align-items: flex-start;
    padding: 1rem 1.1rem;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(26, 47, 44, 0.08);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.why__item img {
    width: 1.75rem;
    height: 1.75rem;
    flex-shrink: 0;
    margin-top: 0.15rem;
}

.why__item p {
    font-size: 1.05rem;
    color: var(--ink-soft);
}

.why__visual {
    display: flex;
    justify-content: center;
}

.why__visual img {
    width: min(100%, 36rem);
    border-radius: 1rem;
    filter: drop-shadow(0 20px 40px rgba(26, 47, 44, 0.16));
}

/* Features */
.features {
    display: grid;
    gap: 1.25rem;
}

@media (min-width: 700px) {
    .features {
        grid-template-columns: 1fr 1fr;
    }
}

.feature-card {
    padding: 1.5rem 1.4rem;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(45, 122, 106, 0.14);
    border-radius: 1.1rem;
    box-shadow: var(--shadow);
}

.feature-card h3 {
    font-size: 1.2rem;
    color: var(--ink);
}

.feature-card p {
    margin-top: 0.55rem;
    color: var(--mute);
    font-size: 1.05rem;
}

.feature-card__label {
    display: inline-block;
    margin-bottom: 0.65rem;
    padding: 0.2rem 0.65rem;
    border-radius: 999px;
    background: rgba(45, 122, 106, 0.1);
    color: var(--jade-deep);
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

/* Comparison */
.comparison-wrap {
    overflow-x: auto;
    border-radius: 1.1rem;
    border: 1px solid rgba(26, 47, 44, 0.1);
    background: rgba(255, 255, 255, 0.85);
    box-shadow: var(--shadow);
}

.comparison {
    width: 100%;
    min-width: 32rem;
    border-collapse: collapse;
    font-size: 1rem;
}

.comparison th,
.comparison td {
    padding: 1rem 1.1rem;
    text-align: center;
    border-bottom: 1px solid rgba(26, 47, 44, 0.08);
    vertical-align: middle;
}

.comparison th:first-child,
.comparison td:first-child {
    text-align: left;
    font-weight: 600;
    color: var(--ink);
}

.comparison thead th {
    background: rgba(228, 238, 236, 0.85);
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 600;
}

.comparison thead th.is-premium {
    background: rgba(45, 122, 106, 0.14);
    color: var(--jade-deep);
}

.comparison tbody tr:last-child td {
    border-bottom: 0;
}

.comparison img {
    width: 1.5rem;
    height: 1.5rem;
    margin-inline: auto;
}

.muted-cell {
    color: var(--mute);
}

.deal-cell {
    color: var(--jade-deep);
    font-weight: 600;
}

.soon-cell {
    color: var(--honey);
    font-weight: 600;
    font-style: italic;
}

/* CTA band */
.cta-band {
    text-align: center;
    padding: 3.5rem 1.5rem;
    border-radius: 1.25rem;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(45, 122, 106, 0.18);
    box-shadow: var(--shadow);
}

.cta-band h2 {
    font-size: clamp(1.6rem, 3vw, 2.1rem);
}

.cta-band p {
    margin: 0.85rem auto 0;
    max-width: 34rem;
    color: var(--mute);
    font-size: 1.1rem;
}

.store-cta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2.5rem;
    margin-top: 2rem;
}

.store-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    color: inherit;
}

.store-card img:not(.store-card__icon) {
    width: 10rem;
    height: 10rem;
    background: var(--white);
    border-radius: 0.75rem;
    padding: 0.5rem;
    border: 1px solid rgba(26, 47, 44, 0.1);
}

.store-card__icon {
    width: 3rem;
    height: 3rem;
    opacity: 0.92;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.store-card:hover .store-card__icon {
    opacity: 1;
    transform: translateY(-1px);
}

/* Footer */
.site-footer {
    background: var(--ink);
    color: var(--mist);
    padding: 2.75rem 0 1.75rem;
    border-top: 1px solid rgba(26, 47, 44, 0.08);
}

.site-footer a {
    color: var(--mist-soft);
}

.site-footer a:hover {
    color: var(--honey-soft);
}

.footer__grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 800px) {
    .footer__grid {
        grid-template-columns: 1fr 1.4fr;
        align-items: start;
    }
}

.footer__brand {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer__brand .brand {
    color: var(--white);
}

.footer__brand .brand span {
    color: var(--white);
}

.footer__slogan {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--jade-soft);
}

.footer__nav {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.85rem;
}

.footer__nav li {
    display: flex;
    gap: 0.7rem;
    align-items: flex-start;
    color: var(--mist-deep);
    font-size: 0.95rem;
}

.footer__nav .icon {
    width: 1.25rem;
    flex-shrink: 0;
    margin-top: 0.15rem;
}

.footer__nav .icon img {
    width: 1.25rem;
    height: 1.25rem;
    filter: brightness(0) invert(1);
    opacity: 0.75;
}

.footer__copy {
    margin-top: 2rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.8rem;
    color: var(--mist-deep);
}
