:root {
    --green: #1d6842;
    --green-light: #2d8a52;
    --bg: #f5f2ee;
    --paper: #fffdf9;
    --sand: #ece3d8;
    --ink: #1c241f;
    --ink-soft: #435047;
    --line: rgba(28, 36, 31, 0.12);
    --accent: #c36b32;
    --shadow: 0 24px 64px rgba(29, 47, 35, 0.12);
    --radius: 22px;
    --radius-sm: 16px;
    --max-width: 1180px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;
    background:
        radial-gradient(circle at top left, rgba(195, 107, 50, 0.16), transparent 24rem),
        radial-gradient(circle at top right, rgba(45, 138, 82, 0.15), transparent 28rem),
        linear-gradient(180deg, #f8f3ec 0%, var(--bg) 100%);
    color: var(--ink);
    font-family: "Space Grotesk", sans-serif;
    font-size: 18px;
    line-height: 1.6;
}

a {
    color: inherit;
}

img,
svg {
    display: block;
    max-width: 100%;
}

.page-shell {
    overflow: clip;
}

.container {
    width: min(calc(100% - 32px), var(--max-width));
    margin: 0 auto;
}

.section {
    padding: 88px 0;
}

.eyebrow {
    margin: 0 0 14px;
    color: var(--green);
    font-family: "JetBrains Mono", monospace;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.eyebrow-light {
    color: rgba(255, 255, 255, 0.8);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(14px);
    background: rgba(245, 242, 238, 0.86);
    border-bottom: 1px solid rgba(28, 36, 31, 0.08);
}

.header-row {
    display: flex;
    align-items: center;
    gap: 18px;
    justify-content: space-between;
    padding: 16px 0;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}

.brand-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 18px;
    background: linear-gradient(160deg, var(--green) 0%, var(--green-light) 100%);
    color: #fff;
    font-family: "JetBrains Mono", monospace;
    font-weight: 700;
    text-transform: lowercase;
    box-shadow: 0 14px 30px rgba(29, 104, 66, 0.2);
}

.brand-text {
    display: grid;
    gap: 2px;
}

.brand-title {
    font-size: 1.2rem;
    font-weight: 700;
}

.brand-subtitle {
    color: var(--ink-soft);
    font-size: 0.9rem;
}

.site-nav {
    display: none;
    gap: 18px;
    align-items: center;
}

.site-nav a {
    text-decoration: none;
    color: var(--ink-soft);
    font-size: 0.95rem;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.footer-links a:hover,
.footer-links a:focus-visible {
    color: var(--green);
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 14px 22px;
    border-radius: 999px;
    border: 1px solid transparent;
    text-decoration: none;
    font-weight: 700;
    line-height: 1.2;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.button:hover,
.button:focus-visible {
    transform: translateY(-1px);
}

.button-primary {
    background: linear-gradient(135deg, var(--green) 0%, var(--green-light) 100%);
    color: #fff;
    box-shadow: 0 18px 30px rgba(29, 104, 66, 0.2);
}

.button-secondary {
    background: rgba(255, 255, 255, 0.75);
    border-color: rgba(29, 104, 66, 0.18);
    color: var(--green);
}

.button-small {
    min-height: 48px;
    padding: 12px 18px;
    background: var(--ink);
    color: #fff;
}

.button-contrast {
    background: #fff;
    color: var(--green);
}

.button-ghost {
    border-color: rgba(255, 255, 255, 0.35);
    color: #fff;
    background: transparent;
}

.hero {
    padding-top: 68px;
}

.hero-grid {
    display: grid;
    gap: 28px;
    align-items: start;
}

.hero-copy,
.hero-panel,
.pain-card,
.step-card,
.benefit-card,
.price-card,
.placeholder-review,
.faq-item,
.cta-box {
    animation: rise-in 0.7s ease both;
}

.hero-copy h1,
.section-heading h2,
.final-cta h2 {
    margin: 0;
    font-size: clamp(2.2rem, 7vw, 4.8rem);
    line-height: 0.98;
    letter-spacing: -0.04em;
}

.hero-lead,
.section-intro,
.workflow-note,
.pricing-note,
.cta-copy p,
.faq-item p,
.pain-card p,
.step-card p,
.benefit-card p,
.placeholder-review p {
    color: var(--ink-soft);
}

.hero-lead {
    margin: 24px 0 0;
    max-width: 42rem;
    font-size: 1.14rem;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 32px;
}

.microcopy {
    margin: 14px 0 0;
    color: var(--ink-soft);
    font-size: 0.96rem;
}

.hero-panel {
    display: grid;
    gap: 18px;
}

.hero-card,
.hero-note,
.pain-card,
.step-card,
.benefit-card,
.price-card,
.placeholder-review,
.faq-item {
    background: rgba(255, 253, 249, 0.78);
    border: 1px solid rgba(28, 36, 31, 0.08);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.hero-card {
    padding: 24px;
}

.hero-card-label,
.hero-note-kicker,
.price-plan,
.step-number {
    display: inline-flex;
    margin-bottom: 12px;
    color: var(--green);
    font-family: "JetBrains Mono", monospace;
    font-size: 0.88rem;
    font-weight: 700;
    text-transform: uppercase;
}

.hero-list,
.feature-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.hero-list li,
.feature-list li {
    position: relative;
    padding-left: 26px;
}

.hero-list li + li,
.feature-list li + li {
    margin-top: 14px;
}

.hero-list li::before,
.feature-list li::before {
    content: "";
    position: absolute;
    top: 0.72em;
    left: 0;
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: var(--accent);
}

.hero-note {
    padding: 24px;
    background: linear-gradient(135deg, rgba(29, 104, 66, 0.92), rgba(18, 62, 38, 0.94));
    color: #fff;
}

.hero-note p,
.hero-note strong {
    margin: 0;
}

.hero-note p {
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.78);
}

.section-heading {
    max-width: 52rem;
    margin-bottom: 28px;
}

.section-heading h2 {
    font-size: clamp(1.9rem, 4.8vw, 3.4rem);
}

.section-intro {
    margin: 16px 0 0;
}

.pain-grid,
.steps,
.benefit-list,
.pricing-grid,
.faq-list {
    display: grid;
    gap: 18px;
}

.pain-card,
.step-card,
.benefit-card {
    padding: 24px;
}

.pain-index {
    display: inline-flex;
    margin-bottom: 16px;
    color: rgba(29, 104, 66, 0.42);
    font-family: "JetBrains Mono", monospace;
    font-size: 1.3rem;
    font-weight: 700;
}

.pain-card p,
.step-card p,
.benefit-card p {
    margin: 0;
}

.section-footnote {
    margin: 24px 0 0;
    padding: 18px 20px;
    border-left: 4px solid var(--accent);
    background: rgba(195, 107, 50, 0.08);
}

.section-footnote span {
    display: block;
    margin-top: 8px;
    color: var(--ink-soft);
    font-size: 0.94rem;
}

.workflow {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0)),
        repeating-linear-gradient(135deg, rgba(29, 104, 66, 0.04) 0, rgba(29, 104, 66, 0.04) 2px, transparent 2px, transparent 14px);
}

.step-card h3,
.benefit-card h3 {
    margin: 0 0 12px;
    font-size: 1.3rem;
}

.workflow-note,
.pricing-note {
    margin: 24px 0 0;
}

.benefits {
    position: relative;
}

.benefits::before {
    content: "";
    position: absolute;
    inset: 10% auto auto -8rem;
    width: 16rem;
    height: 16rem;
    border-radius: 999px;
    background: rgba(45, 138, 82, 0.08);
    filter: blur(10px);
    pointer-events: none;
}

.pricing-grid {
    align-items: stretch;
}

.price-card {
    position: relative;
    display: grid;
    gap: 22px;
    padding: 24px;
}

.price-card-popular {
    border: 2px solid rgba(29, 104, 66, 0.36);
    transform: translateY(-4px);
}

.popular-badge {
    position: absolute;
    top: 18px;
    right: 18px;
    padding: 8px 12px;
    border-radius: 999px;
    background: var(--accent);
    color: #fff;
    font-family: "JetBrains Mono", monospace;
    font-size: 0.78rem;
    font-weight: 700;
}

.price-head {
    padding-right: 92px;
}

.price-plan {
    margin: 0;
}

.price-value {
    margin: 0;
    font-size: clamp(2.2rem, 9vw, 3.4rem);
    font-weight: 700;
    line-height: 1;
}

.price-value span {
    font-size: 1rem;
    color: var(--ink-soft);
}

.feature-off {
    color: var(--ink-soft);
    opacity: 0.68;
}

.feature-off::before {
    background: rgba(28, 36, 31, 0.18);
}

.price-button {
    width: 100%;
}

.placeholder-review {
    padding: 28px;
    text-align: center;
    border-style: dashed;
}

.faq-item {
    padding: 0;
    overflow: hidden;
}

.faq-item summary {
    cursor: pointer;
    list-style: none;
    padding: 22px 58px 22px 22px;
    position: relative;
    font-weight: 700;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "+";
    position: absolute;
    top: 18px;
    right: 22px;
    color: var(--green);
    font-size: 1.6rem;
    line-height: 1;
}

.faq-item[open] summary::after {
    content: "–";
}

.faq-item p {
    margin: 0;
    padding: 0 22px 22px;
}

.final-cta {
    padding-bottom: 96px;
}

.cta-box {
    padding: 30px;
    background:
        radial-gradient(circle at top left, rgba(195, 107, 50, 0.28), transparent 18rem),
        linear-gradient(135deg, #173a28 0%, #235339 54%, #2d8a52 100%);
    color: #fff;
}

.cta-copy p {
    margin: 16px 0 0;
    color: rgba(255, 255, 255, 0.84);
}

.cta-actions {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 28px;
}

.cta-contact {
    margin: 20px 0 0;
    color: rgba(255, 255, 255, 0.8);
}

.cta-contact a {
    color: #fff;
}

.site-footer {
    border-top: 1px solid var(--line);
    padding: 24px 0 48px;
}

.footer-row {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-row p {
    margin: 0;
    color: var(--ink-soft);
}

.footer-links {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--ink-soft);
    text-decoration: none;
}

@keyframes rise-in {
    from {
        opacity: 0;
        transform: translateY(26px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (min-width: 768px) {
    .section {
        padding: 108px 0;
    }

    .site-nav {
        display: inline-flex;
    }

    .hero-grid {
        grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
        gap: 34px;
    }

    .hero-actions,
    .cta-actions,
    .footer-row {
        flex-direction: row;
        align-items: center;
    }

    .pain-grid,
    .steps,
    .benefit-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .cta-box {
        padding: 44px;
    }

    .footer-row {
        justify-content: space-between;
    }
}

@media (min-width: 1040px) {
    .pain-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

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

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

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .button,
    .hero-copy,
    .hero-panel,
    .pain-card,
    .step-card,
    .benefit-card,
    .price-card,
    .placeholder-review,
    .faq-item,
    .cta-box {
        animation: none;
        transition: none;
    }
}
