:root {
    --bg: #f6f3ee;
    --bg-alt: #f0ece4;
    --surface: #ffffff;
    --text: #101615;
    --text-soft: #48524f;
    --muted: #6d7875;
    --line: #d9d1c4;
    --line-strong: #bdb1a0;
    --brand: #173f34;
    --brand-soft: #2f6856;
    --accent: #e7f1ec;
    --radius: 14px;
    --radius-lg: 20px;
    --shadow-soft: 0 10px 28px rgba(21, 26, 24, 0.08);
    --font-body: 'Manrope', system-ui, -apple-system, sans-serif;
    --font-display: 'Anton', 'Arial Narrow', 'Manrope', system-ui, -apple-system, sans-serif;
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 18px;
}

body.menu-open {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
}

.container {
    width: min(1160px, 92vw);
    margin: 0 auto;
}

.narrow {
    width: min(820px, 92vw);
}

.section {
    padding: 5.4rem 0;
}

.page-hero {
    padding-top: 7rem;
}

h1,
h2,
h3 {
    margin: 0 0 1rem;
    color: var(--text);
    font-family: var(--font-display);
    line-height: 0.92;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    font-weight: 400;
}

h1 {
    font-size: clamp(2.9rem, 7.8vw, 7.4rem);
    max-width: 13ch;
}

h2 {
    font-size: clamp(2rem, 5vw, 4.8rem);
    max-width: 18ch;
}

h3 {
    font-size: clamp(1.45rem, 3vw, 2.2rem);
}

p,
li,
label,
summary {
    color: var(--text-soft);
    line-height: 1.72;
}

ul {
    margin: 0;
    padding-left: 1.2rem;
}

.eyebrow {
    display: inline-block;
    margin-bottom: 1rem;
    border: 1px solid var(--line-strong);
    border-radius: 999px;
    padding: 0.35rem 0.75rem;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text);
    font-weight: 800;
    background: var(--surface);
}

.lead {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    font-weight: 600;
    max-width: 48ch;
    color: #212b29;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 60;
    border-bottom: 1px solid rgba(17, 22, 21, 0.08);
    backdrop-filter: blur(9px);
    background: rgba(246, 243, 238, 0.9);
}

.top-cta-banner {
    border-bottom: 1px solid rgba(17, 22, 21, 0.1);
    background: #111615;
}

.top-cta-inner {
    min-height: 34px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.top-cta-inner p {
    margin: 0;
    color: #f2f4f3;
    font-size: 0.74rem;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    font-weight: 800;
}

.top-cta-inner a {
    color: #b4e0cf;
    font-size: 0.74rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 800;
    border-bottom: 1px solid rgba(180, 224, 207, 0.6);
}

.top-cta-inner a:hover {
    color: #d6f3e8;
    border-bottom-color: rgba(214, 243, 232, 0.8);
}

.nav-wrap {
    min-height: 78px;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo,
.footer-logo {
    font-family: var(--font-display);
    letter-spacing: 0.08em;
    font-size: 1.28rem;
    text-transform: uppercase;
    font-weight: 400;
}

.logo-image {
    height: 30px;
    width: auto;
    display: block;
}

.primary-nav {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.primary-nav a {
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 0.42rem 0.88rem;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #2f3b38;
    background: rgba(255, 255, 255, 0.72);
}

.primary-nav a:last-child {
    border-color: var(--brand);
    background: var(--brand);
    color: #f6f5f1;
}

.primary-nav a:hover,
.primary-nav a.active {
    border-color: var(--brand-soft);
    color: var(--brand);
}

.primary-nav a:last-child:hover,
.primary-nav a:last-child.active {
    color: #f6f5f1;
}

.menu-toggle {
    width: 46px;
    height: 46px;
    border: 1px solid var(--line-strong);
    border-radius: 999px;
    background: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0.18rem;
    padding: 0;
    cursor: pointer;
}

.menu-toggle span {
    width: 16px;
    height: 2px;
    border-radius: 10px;
    background: var(--text);
    display: block;
}

.menu-toggle::after {
    content: '';
    width: 16px;
    height: 2px;
    border-radius: 10px;
    background: var(--text);
    display: block;
}

.fullscreen-menu {
    position: fixed;
    inset: 0;
    z-index: 120;
    background: rgba(10, 13, 12, 0.97);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.22s ease;
}

.fullscreen-menu.open {
    opacity: 1;
    pointer-events: auto;
}

.fullscreen-menu-inner {
    width: min(1160px, 92vw);
    margin: 0 auto;
    min-height: 100%;
    padding: 2rem 0 2.4rem;
    display: grid;
    grid-template-rows: auto 1fr;
}

.fullscreen-menu-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 1rem;
}

.fullscreen-title {
    margin: 0;
    color: #d2ddda;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 800;
}

.fullscreen-close {
    border: 1px solid rgba(255, 255, 255, 0.26);
    border-radius: 999px;
    background: transparent;
    color: #edf2f1;
    padding: 0.56rem 0.92rem;
    font-family: var(--font-display);
    text-transform: uppercase;
    cursor: pointer;
}

.fullscreen-nav {
    display: grid;
    align-content: center;
    gap: 0.2rem;
}

.fullscreen-nav a {
    color: #f4f7f6;
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 6vw, 5.2rem);
    line-height: 0.92;
    padding: 0.12rem 0;
    text-transform: uppercase;
    letter-spacing: 0.01em;
}

.fullscreen-nav a:hover,
.fullscreen-nav a.active {
    color: #9acdbb;
}

.sticky-cta {
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    bottom: 12px;
    width: min(940px, 94vw);
    z-index: 90;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    border: 1px solid #295548;
    border-radius: 12px;
    background: #14362d;
    color: #f2f7f4;
    padding: 0.7rem 0.9rem;
    box-shadow: 0 12px 28px rgba(16, 22, 21, 0.2);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.sticky-cta.visible {
    opacity: 1;
    pointer-events: auto;
}

.sticky-cta p {
    margin: 0;
    color: #e5f4ee;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 800;
}

.sticky-cta a {
    border: 1px solid #8cc1ae;
    border-radius: 999px;
    padding: 0.4rem 0.75rem;
    background: #f4faf7;
    color: #123a30;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 0.05em;
    font-size: 0.76rem;
}

.form-status {
    border: 1px solid var(--line-strong);
    border-radius: 10px;
    padding: 0.65rem 0.8rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
    font-size: 0.88rem;
}

.form-status.ok {
    background: #eaf5ef;
    color: #265545;
}

.form-status.error {
    background: #fbecec;
    color: #7d3131;
}

.hero {
    padding-top: 8rem;
    padding-bottom: 4.2rem;
}

.hero-grid,
.two-col,
.footer-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2.2rem;
    align-items: start;
}

.three-col {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.motion-bg {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    min-height: 500px;
    padding: 1.4rem;
    border: 1px solid var(--line);
    background: linear-gradient(160deg, #e6ece8, #f8f5ef 62%);
}

.streak-pill {
    display: inline-flex;
    padding: 0.46rem 0.88rem;
    border-radius: 999px;
    border: 1px solid var(--line-strong);
    background: #fff;
    color: #24312d;
    font-size: 0.85rem;
    font-weight: 700;
}

.phone-mockup {
    margin-top: 1rem;
    min-height: 260px;
    padding: 1rem;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.72);
}

.phone-screen {
    display: none;
    min-height: 170px;
    border-radius: 12px;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border: 1px solid #e6dfd3;
    font-weight: 700;
    color: #24312d;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.phone-screen.active {
    display: flex;
}

.cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin: 1.35rem 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.82rem 1.14rem;
    border-radius: 10px;
    border: 1px solid transparent;
    font-weight: 800;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-primary {
    background: var(--brand);
    color: #f8f5ef;
}

.btn-primary:hover {
    background: #1d5142;
    transform: translateY(-1px);
}

.btn-secondary {
    background: var(--surface);
    color: var(--text);
    border-color: var(--line-strong);
}

.btn-secondary:hover {
    border-color: var(--brand-soft);
    color: var(--brand);
}

.hero-kpi-strip {
    margin-top: 1.1rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.7rem;
}

.hero-kpi-strip article {
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fff;
    padding: 0.75rem;
}

.kpi-value {
    margin: 0;
    color: var(--text);
    font-family: var(--font-display);
    font-size: clamp(1.55rem, 2.8vw, 2.4rem);
    line-height: 0.92;
    text-transform: uppercase;
}

.kpi-label {
    margin: 0.2rem 0 0;
    font-size: 0.76rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--muted);
    font-weight: 700;
}

.hero-trust {
    margin-top: 0.8rem;
    color: var(--muted);
    font-size: 0.95rem;
}

.social-proof-band {
    padding-top: 1.4rem;
    padding-bottom: 1.4rem;
}

.social-proof-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.8rem;
}

.social-proof-grid article {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 0.8rem;
    box-shadow: var(--shadow-soft);
}

.card,
.price-card,
.form,
.season-card,
.preview-card,
.dashboard-mockup,
.video-placeholder,
.simulator,
.pricing-strip,
.timeline article,
.faq-list details {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
}

.card,
.price-card,
.form,
.simulator,
.preview-card,
.dashboard-mockup,
.video-placeholder {
    padding: 1.2rem;
}

.season-card {
    padding: 1rem 1.2rem;
    margin-top: 0.95rem;
}

.season-title {
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.78rem;
    color: var(--muted);
    font-weight: 800;
    font-family: var(--font-display);
}

.season-count {
    margin: 0.42rem 0 0;
    color: var(--text);
    font-weight: 800;
    font-size: 1.14rem;
}

.progress-demo {
    margin-top: 1rem;
    height: 15px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: #fff;
    overflow: hidden;
}

.progress-demo span {
    display: block;
    width: 0;
    height: 100%;
    border-radius: 999px;
    background: linear-gradient(90deg, #2f6b59, #8bb7a8);
    transition: width 1s ease;
}

.simulator label,
.form label {
    display: block;
    font-weight: 700;
    margin-bottom: 0.45rem;
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid var(--line-strong);
    border-radius: 8px;
    padding: 0.72rem;
    margin-top: 0.2rem;
    margin-bottom: 0.58rem;
    background: #fff;
    color: var(--text);
    font: inherit;
}

input::placeholder,
textarea::placeholder {
    color: #82918d;
}

.stamp-row {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 0.48rem;
    margin: 0.9rem 0;
}

.stamp {
    border: 1px dashed var(--line-strong);
    border-radius: 10px;
    text-align: center;
    padding: 0.7rem 0.15rem;
    font-size: 0.84rem;
    color: var(--muted);
    background: #fcfbf8;
}

.stamp.active {
    border-style: solid;
    border-color: #7da694;
    background: #edf5f1;
    color: var(--text);
    font-weight: 700;
}

.reward {
    margin: 0.65rem 0 0;
    font-weight: 600;
}

.toggle-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.toggle-row button {
    border: 1px solid var(--line-strong);
    border-radius: 999px;
    padding: 0.52rem 0.9rem;
    background: #fff;
    color: var(--text-soft);
    font-weight: 700;
    cursor: pointer;
}

.toggle-row button.active {
    background: var(--brand);
    color: #f6f5ef;
    border-color: var(--brand);
}

.video-placeholder {
    min-height: 230px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
}

.pricing-strip {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    padding: 1.22rem;
}

.badge {
    display: inline-block;
    border-radius: 999px;
    padding: 0.28rem 0.7rem;
    background: var(--accent);
    color: var(--brand-soft);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    font-family: var(--font-display);
    font-weight: 400;
    margin-bottom: 0.58rem;
}

.price-card h2 {
    font-size: 2.8rem;
}

.price-card h2 span {
    font-size: 1rem;
    color: var(--muted);
    font-family: var(--font-body);
}

.timeline {
    display: grid;
    gap: 0.75rem;
}

.image-placeholder {
    width: 100%;
    min-height: 280px;
    border: 1px dashed #bfb6a8;
    border-radius: var(--radius);
    background: repeating-linear-gradient(135deg, #f5f0e8, #f5f0e8 18px, #eee8de 18px, #eee8de 36px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #5f6d69;
    font-family: var(--font-display);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 1rem;
}

.image-placeholder.dark {
    background: repeating-linear-gradient(135deg, #e9eee9, #e9eee9 18px, #dde5de 18px, #dde5de 36px);
    min-height: 210px;
    margin-top: 1rem;
}

.image-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
}

.image-row .image-placeholder {
    min-height: 170px;
}

.full-bleed-media {
    padding-top: 1.6rem;
    padding-bottom: 1.6rem;
}

.full-width-media {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    border-radius: 0;
    min-height: 58vh;
    border-left: 0;
    border-right: 0;
    font-size: 1rem;
    letter-spacing: 0.04em;
}

.page-hero .image-placeholder {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    border-radius: 0;
    min-height: 45vh;
    margin-top: 1.5rem;
    border-left: 0;
    border-right: 0;
}

.content-led {
    background: var(--bg-alt);
}

.content-led .two-col {
    align-items: stretch;
}

.content-led article {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.15rem;
}

.site-footer {
    margin-top: 1rem;
    border-top: 1px solid var(--line-strong);
    background: #ece7de;
    padding: 2.2rem 0 1.1rem;
}

.footer-grid a {
    display: block;
    margin-bottom: 0.45rem;
    color: var(--text-soft);
}

.footer-title {
    margin-bottom: 0.35rem;
    font-family: var(--font-display);
    font-weight: 400;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.footer-bottom {
    margin-top: 0.9rem;
    border-top: 1px solid #cec3b3;
    padding-top: 0.75rem;
    font-size: 0.9rem;
    color: var(--muted);
}

.faq-list details {
    margin-bottom: 0.65rem;
}

.form .micro-copy {
    font-size: 0.85rem;
    color: var(--muted);
}

.reveal {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.modal {
    position: fixed;
    inset: 0;
    z-index: 130;
    background: rgba(10, 14, 13, 0.54);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.modal.open {
    display: flex;
}

.modal-card {
    width: min(470px, 96vw);
    border: 1px solid var(--line-strong);
    border-radius: 16px;
    background: #fff;
    padding: 1.2rem;
    position: relative;
}

.modal-close {
    position: absolute;
    right: 0.65rem;
    top: 0.45rem;
    border: 0;
    background: transparent;
    font-size: 1.4rem;
    cursor: pointer;
}

@media (max-width: 980px) {
    .hero-grid,
    .two-col,
    .three-col,
    .footer-grid,
    .image-row,
    .hero-kpi-strip,
    .social-proof-grid {
        grid-template-columns: 1fr;
    }

    .primary-nav {
        display: none;
    }

    .section {
        padding: 4.4rem 0;
    }

    .hero {
        padding-top: 6.8rem;
    }

    .motion-bg {
        min-height: 420px;
    }

    .fullscreen-menu-inner {
        padding: 1.35rem 0 2rem;
    }

    .top-cta-inner {
        justify-content: center;
        min-height: 38px;
    }

    .top-cta-inner p {
        font-size: 0.7rem;
    }

    .top-cta-inner a {
        display: none;
    }

    .fullscreen-nav a {
        font-size: clamp(1.2rem, 8vw, 2.4rem);
    }

    .full-width-media,
    .page-hero .image-placeholder {
        min-height: 34vh;
    }

    .sticky-cta {
        bottom: 8px;
        align-items: flex-start;
        flex-direction: column;
    }
}
