:root {
    --bg: #f5f7f1;
    --bg-soft: #eef3e2;
    --surface: #ffffff;
    --surface-muted: #f8f9f4;
    --ink: #11180d;
    --muted: #5f6658;
    --line: rgba(17, 24, 13, 0.09);
    --accent: #d7ff64;
    --accent-strong: #b7ed22;
    --accent-deep: #1c2c13;
    --dark: #10170f;
    --success: #1d7a54;
    --shadow: 0 22px 60px rgba(32, 52, 21, 0.12);
    --radius-lg: 28px;
    --radius-md: 22px;
    --radius-sm: 16px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "DM Sans", sans-serif;
    color: var(--ink);
    background:
        radial-gradient(circle at 10% 0%, rgba(215, 255, 100, 0.55), transparent 25%),
        radial-gradient(circle at 90% 10%, rgba(201, 225, 170, 0.35), transparent 20%),
        linear-gradient(180deg, #f8fbef 0%, var(--bg) 100%);
}

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

button {
    font: inherit;
}

.container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.topbar {
    border-bottom: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(14px);
}

.topbar-inner {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: center;
    padding: 10px 0;
    color: var(--muted);
    font-size: 0.95rem;
}

.topbar-inner span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 78px;
    padding: 7px 12px;
    border-radius: 999px;
    background: var(--accent);
    color: var(--accent-deep);
    font-weight: 700;
}

.topbar-inner p {
    margin: 0;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    padding: 18px 0;
    backdrop-filter: blur(18px);
}

.nav-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 16px 20px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 10px 30px rgba(17, 24, 13, 0.06);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: var(--dark);
    color: #f7fee7;
    font-size: 0.9rem;
    letter-spacing: 0.04em;
}

.nav-links {
    display: inline-flex;
    gap: 26px;
    align-items: center;
    color: var(--muted);
}

.nav-links a:hover,
.text-link:hover {
    color: var(--ink);
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    padding: 0 20px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 700;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button-dark {
    background: var(--dark);
    color: #fff;
    box-shadow: 0 14px 28px rgba(16, 23, 15, 0.18);
}

.button-accent {
    background: var(--accent);
    color: var(--accent-deep);
    box-shadow: 0 18px 34px rgba(183, 237, 34, 0.25);
}

.button-light {
    border-color: var(--line);
    background: rgba(255, 255, 255, 0.72);
    color: var(--ink);
}

.button.full {
    width: 100%;
}

.hero {
    padding: 52px 0 40px;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(400px, 0.9fr);
    gap: 36px;
    align-items: center;
}

.eyebrow {
    margin: 0 0 14px;
    color: #4b5a36;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.78rem;
    font-weight: 700;
}

h1,
h2,
h3 {
    margin: 0;
    font-family: "Syne", sans-serif;
    letter-spacing: -0.04em;
}

h1 {
    max-width: 12ch;
    font-size: clamp(3.1rem, 7vw, 6rem);
    line-height: 0.92;
}

h2 {
    font-size: clamp(2rem, 4vw, 3.6rem);
    line-height: 0.98;
}

h3 {
    font-size: 1.4rem;
    line-height: 1.05;
}

.lead,
.section-heading p,
.feature-card p,
.offer-card p,
.retainer-card p,
.faq-card p,
.payment-card p {
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 26px;
}

.hero-proof {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 34px;
}

.hero-proof div,
.feature-card,
.offer-card,
.retainer-card,
.faq-card,
.dashboard-card,
.mini-stack article,
.cta-panel,
.notice {
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.84);
    box-shadow: var(--shadow);
}

.hero-proof div {
    padding: 18px;
}

.hero-proof strong {
    display: block;
    margin-bottom: 6px;
    font-family: "Syne", sans-serif;
    font-size: 1.5rem;
}

.hero-proof span {
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.45;
}

.hero-visual {
    position: relative;
}

.dashboard-card {
    position: relative;
    overflow: hidden;
    padding: 26px;
    background:
        radial-gradient(circle at top right, rgba(215, 255, 100, 0.6), transparent 30%),
        linear-gradient(180deg, #ffffff 0%, #f7fbef 100%);
}

.dashboard-card::after {
    content: "";
    position: absolute;
    inset: auto -50px -70px auto;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(183, 237, 34, 0.16);
}

.dashboard-top,
.offer-top,
.logo-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.chip,
.badge,
.mini-badge,
.duration-pill,
.badge-dark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 9px 14px;
    font-size: 0.84rem;
    font-weight: 700;
}

.chip.success {
    background: rgba(29, 122, 84, 0.12);
    color: var(--success);
}

.mini-stat {
    color: var(--muted);
    font-size: 0.88rem;
}

.metric-panel {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin: 20px 0 22px;
}

.metric-panel div {
    padding: 16px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(17, 24, 13, 0.06);
}

.metric-panel strong {
    display: block;
    margin-bottom: 4px;
    font-size: 1.45rem;
    font-family: "Syne", sans-serif;
}

.metric-panel span,
.dashboard-note p,
.mini-stack p,
.price-line span,
.retainer-total {
    color: var(--muted);
}

.bars {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    align-items: end;
    gap: 12px;
    height: 150px;
    margin-bottom: 22px;
}

.bars span {
    border-radius: 18px 18px 8px 8px;
    background: linear-gradient(180deg, var(--accent) 0%, var(--accent-strong) 100%);
}

.dashboard-note {
    position: relative;
    z-index: 1;
    padding: 18px;
    border-radius: 22px;
    background: #11180d;
    color: #eff5db;
}

.dashboard-note p {
    margin: 8px 0 0;
    color: rgba(239, 245, 219, 0.8);
}

.mini-stack {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: -30px;
    padding: 0 18px;
}

.mini-stack article {
    padding: 18px;
}

.mini-stack span,
.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: var(--accent);
    color: var(--accent-deep);
    font-weight: 700;
    margin-bottom: 12px;
}

.logo-band {
    padding: 12px 0 30px;
}

.logo-row {
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
    padding: 16px 0;
    color: #5a6250;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.8rem;
}

.section {
    padding: 46px 0 70px;
}

.surface {
    background: rgba(255, 255, 255, 0.45);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.section-heading {
    margin-bottom: 28px;
}

.section-heading.narrow {
    max-width: 760px;
}

.split-heading {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 390px);
    gap: 22px;
    align-items: end;
}

.feature-grid,
.offers-grid,
.faq-grid {
    display: grid;
    gap: 20px;
}

.feature-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.offers-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.feature-card,
.offer-card,
.retainer-card,
.faq-card {
    padding: 24px;
}

.offer-card.featured,
.retainer-card {
    background:
        linear-gradient(180deg, rgba(215, 255, 100, 0.25) 0%, rgba(255, 255, 255, 0.92) 42%);
}

.badge {
    background: rgba(17, 24, 13, 0.06);
    color: #334226;
}

.mini-badge {
    background: var(--dark);
    color: #fff;
}

.badge-dark {
    background: var(--dark);
    color: #eef5d8;
}

.price-line,
.cta-panel,
.payment-grid {
    display: grid;
    gap: 18px;
}

.price-line strong,
.retainer-price {
    display: block;
    font-family: "Syne", sans-serif;
    font-size: 2rem;
    line-height: 1;
}

.offer-list {
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
    color: var(--ink);
}

.offer-list li {
    position: relative;
    padding-left: 18px;
    line-height: 1.5;
}

.offer-list li::before {
    content: "";
    position: absolute;
    top: 9px;
    left: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-strong);
}

.offer-list.compact li:last-child {
    color: var(--muted);
}

.text-link {
    display: inline-block;
    margin-top: 18px;
    color: #334226;
    font-weight: 700;
}

.offer-actions {
    display: grid;
    gap: 12px;
    margin-top: 20px;
}

.duration-switch {
    display: inline-flex;
    gap: 10px;
    padding: 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid var(--line);
    margin-bottom: 24px;
}

.duration-pill {
    cursor: pointer;
    border: 0;
    background: transparent;
    color: var(--muted);
}

.duration-pill.active {
    background: var(--dark);
    color: #fff;
}

.retainer-grid {
    display: none;
    gap: 20px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.retainer-grid.active {
    display: grid;
}

.retainer-price small {
    font-size: 0.85rem;
    color: var(--muted);
}

.payment-strip {
    background: linear-gradient(180deg, #11180d 0%, #1a2715 100%);
    color: #eff5db;
}

.payment-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: start;
}

.payment-strip .eyebrow,
.payment-strip p,
.payment-strip span {
    color: rgba(239, 245, 219, 0.78);
}

.payment-steps {
    display: grid;
    gap: 14px;
}

.payment-steps article {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 14px;
    align-items: center;
    padding: 18px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.payment-steps strong {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: var(--accent);
    color: var(--accent-deep);
    font-family: "Syne", sans-serif;
}

.cta-panel {
    grid-template-columns: minmax(0, 1fr) minmax(0, 420px);
    align-items: center;
    padding: 28px;
}

.cta-points {
    display: grid;
    gap: 12px;
}

.cta-points p {
    margin: 0;
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(215, 255, 100, 0.24);
    font-weight: 500;
}

.notice {
    padding: 18px 20px;
    margin-bottom: 24px;
}

.notice span {
    display: block;
    margin-top: 8px;
    color: var(--muted);
}

.payment-shell {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 24px;
}

.checkout-body {
    min-height: 100vh;
    background:
        radial-gradient(circle at top left, rgba(215, 255, 100, 0.4), transparent 24%),
        linear-gradient(180deg, #f7fbef 0%, #eff3e6 100%);
}

.checkout-shell {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    padding: 36px 0 60px;
}

.checkout-clean {
    display: grid;
    place-items: center;
    padding: 24px;
}

.checkout-clean-shell {
    width: min(760px, 100%);
}

.back-link {
    display: inline-flex;
    margin-bottom: 22px;
    color: var(--muted);
    font-weight: 700;
}

.checkout-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(380px, 460px);
    gap: 22px;
}

.checkout-layout.single {
    grid-template-columns: 1fr;
    max-width: 720px;
}

.checkout-panel {
    padding: 28px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.88);
    box-shadow: var(--shadow);
}

.checkout-summary h1 {
    max-width: none;
    font-size: clamp(2.3rem, 5vw, 4rem);
}

.checkout-price-card {
    margin: 24px 0 18px;
    padding: 22px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(215, 255, 100, 0.32) 0%, rgba(255, 255, 255, 0.9) 100%);
}

.checkout-price-card strong {
    display: block;
    margin-bottom: 6px;
    font-size: 2.2rem;
    font-family: "Syne", sans-serif;
}

.checkout-price-card span,
.checkout-meta p {
    color: var(--muted);
}

.checkout-meta {
    margin-top: 24px;
    padding-top: 18px;
    border-top: 1px solid var(--line);
}

.checkout-form {
    display: grid;
    gap: 16px;
    margin-top: 18px;
}

.checkout-form label {
    display: grid;
    gap: 8px;
    color: var(--ink);
    font-weight: 700;
}

.checkout-form input {
    width: 100%;
    min-height: 54px;
    padding: 0 16px;
    border-radius: 16px;
    border: 1px solid rgba(17, 24, 13, 0.12);
    background: #fff;
    color: var(--ink);
    font: inherit;
}

.checkout-form input:focus {
    outline: 2px solid rgba(183, 237, 34, 0.55);
    border-color: transparent;
}

.checkout-assurance {
    display: grid;
    gap: 10px;
    margin-top: 18px;
}

.checkout-assurance p {
    margin: 0;
    padding: 12px 14px;
    border-radius: 16px;
    background: rgba(17, 24, 13, 0.04);
    color: var(--muted);
}

.embedded-checkout-shell {
    padding: 18px;
    border-radius: 22px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.95);
}

.embedded-checkout-shell.checkout-only {
    margin-top: 0;
    padding: 10px;
    min-height: 540px;
    display: grid;
    align-items: center;
}

.checkout-trust {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin: 6px 0 14px;
}

.checkout-trust span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(17, 24, 13, 0.06);
    color: var(--ink);
    font-size: 0.9rem;
    font-weight: 700;
}

.checkout-legal-links {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
    margin: 16px 0 4px;
}

.checkout-legal-links a {
    color: var(--muted);
    font-size: 0.92rem;
    font-weight: 500;
}

.legal-shell {
    width: min(920px, calc(100% - 40px));
    margin: 0 auto;
    padding: 48px 0 80px;
}

.legal-card {
    padding: 34px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow);
}

.legal-card h1 {
    max-width: none;
    font-size: clamp(2.2rem, 5vw, 4rem);
    margin-bottom: 18px;
}

.legal-card h2 {
    font-size: 1.35rem;
    margin: 26px 0 10px;
}

.legal-card p {
    color: var(--muted);
    line-height: 1.75;
    margin: 0;
}

.embedded-checkout-head {
    margin-bottom: 16px;
}

.embedded-checkout-head strong {
    display: block;
    margin-bottom: 4px;
    font-family: "Syne", sans-serif;
    font-size: 1.1rem;
}

.embedded-checkout-head span {
    color: var(--muted);
}

.hidden {
    display: none !important;
}

.payment-card {
    width: min(680px, 100%);
    padding: 36px;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.summary {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid var(--line);
}

@media (max-width: 1080px) {
    .hero-grid,
    .split-heading,
    .payment-grid,
    .cta-panel,
    .checkout-layout,
    .offers-grid,
    .retainer-grid,
    .feature-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .hero-proof,
    .mini-stack,
    .metric-panel {
        grid-template-columns: 1fr;
    }

    .mini-stack {
        padding: 0;
        margin-top: 16px;
    }
}

@media (max-width: 820px) {
    .site-header {
        position: static;
        padding-top: 12px;
    }

    .nav-shell {
        border-radius: 28px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .nav-links {
        order: 3;
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        gap: 14px 20px;
    }

    h1 {
        max-width: none;
    }

    .topbar-inner {
        flex-direction: column;
        text-align: center;
    }
}
