/* ==========================================================================
   FarmingMode marketing site
   Hand-written. No Bootstrap, no Tailwind, no CDN, no build step.
   Palette is taken from the app so the site and the product feel like one thing.
   ========================================================================== */

:root {
    --green:        #4a8a28;
    --green-dark:   #3d7220;
    --green-deep:   #1a3a0a;
    --green-wash:   #f1f6ec;

    --ink:          #212529;
    --muted:        #6c757d;
    --border:       #dee2e6;
    --surface:      #f8f9fa;
    --white:        #ffffff;
    --nav:          #212529;

    --wrap:         1180px;
    --radius:       10px;
    --shadow-sm:    0 1px 2px rgba(16, 24, 16, .06), 0 2px 8px rgba(16, 24, 16, .05);
    --shadow-md:    0 2px 6px rgba(16, 24, 16, .07), 0 12px 32px rgba(16, 24, 16, .09);

    --font: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* --------------------------------------------------------------- reset --- */

*, *::before, *::after { box-sizing: border-box; }

html {
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font);
    font-size: 1rem;
    line-height: 1.65;
    color: var(--ink);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

img, svg { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4 {
    color: var(--green-deep);
    line-height: 1.2;
    margin: 0 0 .6em;
    font-weight: 700;
    letter-spacing: -.01em;
}

h1 { font-size: clamp(2rem, 5.2vw, 3.15rem); letter-spacing: -.02em; }
h2 { font-size: clamp(1.55rem, 3.6vw, 2.2rem); }
h3 { font-size: 1.2rem; }
h4 { font-size: 1.02rem; }

p { margin: 0 0 1rem; }
p:last-child { margin-bottom: 0; }

a { color: var(--green-dark); text-underline-offset: .18em; }
a:hover { color: var(--green-deep); }

ul, ol { margin: 0 0 1rem; padding-left: 1.25rem; }
li { margin-bottom: .35rem; }

strong { font-weight: 700; color: var(--green-deep); }

:focus-visible {
    outline: 3px solid var(--green);
    outline-offset: 2px;
    border-radius: 3px;
}

/* The header is sticky, so an anchor jump would land under it without this. */
:target { scroll-margin-top: 5.5rem; }

.visually-hidden {
    position: absolute; width: 1px; height: 1px;
    margin: -1px; padding: 0; overflow: hidden;
    clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap;
}

.skip-link {
    position: absolute; left: 0; top: -100%;
    z-index: 100;
    background: var(--green-deep); color: #fff;
    padding: .7rem 1.1rem; font-weight: 600;
}
.skip-link:focus { top: 0; color: #fff; }

/* -------------------------------------------------------------- layout --- */

.container {
    width: 100%;
    max-width: var(--wrap);
    margin-inline: auto;
    padding-inline: 1.15rem;
}

/* Generous by default. The site is meant to feel calm and unhurried, so
   sections breathe rather than stack tightly. */
.section { padding: 4.5rem 0; }
.section--tight { padding: 2.5rem 0; }

@media (min-width: 860px) {
    .section { padding: 6.5rem 0; }
}
.section--surface { background: var(--surface); border-block: 1px solid var(--border); }
.section--wash { background: var(--green-wash); border-block: 1px solid #e2ecd8; }

.section-head { max-width: 46rem; margin-bottom: 2rem; }
.section-head p { color: var(--muted); font-size: 1.06rem; margin-bottom: 0; }

.eyebrow {
    display: block;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: .5rem;
}

/* ------------------------------------------------------------- buttons --- */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    padding: .72rem 1.3rem;
    border: 2px solid transparent;
    border-radius: var(--radius);
    font: inherit;
    font-weight: 600;
    line-height: 1.25;
    text-decoration: none;
    cursor: pointer;
    transition: background-color .15s ease, border-color .15s ease, color .15s ease;
}

.btn-primary { background: var(--green); border-color: var(--green); color: #fff; }
.btn-primary:hover { background: var(--green-dark); border-color: var(--green-dark); color: #fff; }

.btn-outline { background: transparent; border-color: var(--border); color: var(--green-deep); }
.btn-outline:hover { border-color: var(--green); color: var(--green-deep); background: var(--green-wash); }

.btn-ghost { background: transparent; border-color: rgba(255,255,255,.28); color: #fff; padding: .5rem 1rem; }
.btn-ghost:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.5); color: #fff; }

.btn-lg { padding: .9rem 1.6rem; font-size: 1.05rem; }

.btn-row { display: flex; flex-wrap: wrap; gap: .75rem; }

/* -------------------------------------------------------------- header --- */

.site-header {
    background: var(--nav);
    position: sticky;
    top: 0;
    z-index: 50;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* The open mobile nav must drop onto its own full-width line rather than
       being squeezed in beside the brand and the toggle. */
    flex-wrap: wrap;
    gap: 1rem;
    min-height: 64px;
}

.brand { display: flex; align-items: center; gap: .6rem; text-decoration: none; flex: 0 0 auto; }
.brand-mark { width: 30px; height: 32px; }
.brand-type { width: 158px; height: 13px; }

.nav-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px; height: 44px;
    padding: 0 10px;
    background: transparent;
    border: 1px solid rgba(255,255,255,.25);
    border-radius: 8px;
    cursor: pointer;
}
.nav-toggle-bar { display: block; height: 2px; background: #fff; border-radius: 2px; }

.site-nav { display: none; flex: 0 0 100%; }
.site-nav.is-open { display: block; }

.site-nav ul {
    list-style: none;
    margin: 0;
    padding: .25rem 0 .75rem;
    border-top: 1px solid rgba(255,255,255,.12);
}
.site-nav li { margin: 0; }

/* Scoped to the list on purpose. A bare `.site-nav a` also matches the two
   button links in .nav-cta, and because it is more specific than `.btn` it
   would override their padding and flatten them against their own borders. */
.site-nav ul a {
    display: block;
    padding: .6rem .2rem;
    color: rgba(255,255,255,.86);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid rgba(255,255,255,.09);
}
.site-nav ul a:hover { color: #fff; }
.site-nav ul a[aria-current="page"] { color: #fff; font-weight: 700; }

.nav-cta { display: flex; flex-wrap: wrap; gap: .6rem; padding: .85rem 0 1rem; }
.nav-cta .btn { flex: 1 1 auto; }

@media (min-width: 1040px) {
    .nav-toggle { display: none; }

    .site-nav {
        display: flex !important;
        align-items: center;
        gap: 1.5rem;
        flex: 1 1 auto;
        justify-content: flex-end;
    }
    .site-nav ul { display: flex; align-items: center; gap: 1.15rem; padding: 0; border-top: 0; }
    .site-nav ul a {
        padding: .35rem 0;
        border-bottom: 2px solid transparent;
        font-size: .93rem;
        white-space: nowrap;
    }
    .site-nav ul a:hover { border-bottom-color: var(--green); }
    .site-nav ul a[aria-current="page"] { border-bottom-color: var(--green); }
    /* Extra separation so the bordered Sign in button does not crowd "Contact". */
    .nav-cta { padding: 0; gap: .6rem; margin-left: 1rem; }
    .nav-cta .btn {
        flex: 0 0 auto;
        font-size: .93rem;
        padding: .55rem 1.15rem;
        white-space: nowrap;
    }
}

/* ---------------------------------------------------------------- hero --- */

.hero {
    background: linear-gradient(160deg, var(--green-deep) 0%, #2f5c16 55%, var(--green) 130%);
    color: #fff;
    padding: 3rem 0 0;
    overflow: hidden;
}

.hero h1 { color: #fff; margin-bottom: .75rem; }

.hero-lede {
    font-size: 1.13rem;
    color: rgba(255,255,255,.9);
    max-width: 34rem;
    margin-bottom: 1.6rem;
}

.hero .btn-outline { border-color: rgba(255,255,255,.45); color: #fff; }
.hero .btn-outline:hover { background: rgba(255,255,255,.12); border-color: #fff; color: #fff; }

.hero-note {
    margin-top: 1rem;
    font-size: .9rem;
    color: rgba(255,255,255,.75);
}

.hero-shot { margin-top: 2.5rem; }

.hero-grid { display: grid; gap: 1rem; }

@media (min-width: 900px) {
    .hero { padding-top: 4.25rem; }
    .hero-grid {
        grid-template-columns: minmax(0, 1fr);
        align-items: center;
    }
    .hero-shot { margin-top: 3rem; }
}

/* Browser chrome around real screenshots, so they read as product not decoration. */
.shot {
    border-radius: 12px 12px 0 0;
    overflow: hidden;
    background: #fff;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0,0,0,.12);
    border-bottom: 0;
}
.shot--framed { border-radius: 12px; border-bottom: 1px solid rgba(0,0,0,.12); }

.shot-bar {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: .55rem .8rem;
    background: #e9ecef;
    border-bottom: 1px solid var(--border);
}
.shot-dot { width: 10px; height: 10px; border-radius: 50%; background: #c4c9ce; }
.shot img { width: 100%; height: auto; display: block; }

.shot-caption {
    font-size: .85rem;
    color: var(--muted);
    margin-top: .7rem;
}
.hero .shot-caption { color: rgba(255,255,255,.7); }

/* ------------------------------------------------------------- problem --- */

.problem-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: .9rem;
}
.problem-list li {
    position: relative;
    padding-left: 1.9rem;
    margin: 0;
    color: var(--muted);
}
.problem-list li::before {
    content: "";
    position: absolute;
    left: .35rem; top: .62em;
    width: 8px; height: 8px;
    border-radius: 2px;
    background: var(--green);
}
.problem-list strong { color: var(--ink); font-weight: 600; }

@media (min-width: 760px) {
    .problem-list { grid-template-columns: 1fr 1fr; gap: .9rem 2.5rem; }
}

/* --------------------------------------------------------------- cards --- */

.card-grid { display: grid; gap: 1.15rem; }

@media (min-width: 700px)  { .card-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1040px) { .card-grid--4 { grid-template-columns: repeat(4, 1fr); } }

.card {
    background: #fff;
    border: 1px solid var(--border);
    border-left: 4px solid var(--green);
    border-radius: var(--radius);
    padding: 1.4rem 1.35rem;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
}

.card h3 { margin-bottom: .4rem; }
.card > p { color: var(--muted); font-size: .95rem; }

.card-icon {
    font-size: 1.6rem;
    line-height: 1;
    margin-bottom: .7rem;
}

.card ul {
    list-style: none;
    padding: 0;
    margin: .9rem 0 1.2rem;
    font-size: .92rem;
}
.card ul li {
    position: relative;
    padding-left: 1.35rem;
    margin-bottom: .45rem;
    color: var(--ink);
}
.card ul li::before {
    content: "";
    position: absolute;
    left: 0; top: .55em;
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--green);
}

.card-link {
    margin-top: auto;
    font-weight: 600;
    font-size: .93rem;
    text-decoration: none;
}
.card-link:hover { text-decoration: underline; }
.card-link::after { content: " \2192"; }

/* --------------------------------------------------------------- steps --- */

.steps { display: grid; gap: 1.15rem; counter-reset: step; }

@media (min-width: 860px) { .steps { grid-template-columns: repeat(3, 1fr); } }

.step {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem 1.35rem;
}
.step::before {
    counter-increment: step;
    content: counter(step);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px; height: 34px;
    margin-bottom: .85rem;
    border-radius: 50%;
    background: var(--green);
    color: #fff;
    font-weight: 700;
    font-size: .95rem;
}
.step h3 { font-size: 1.08rem; margin-bottom: .35rem; }
.step p { color: var(--muted); font-size: .95rem; }

/* ------------------------------------------------------------ features --- */

.feature-grid { display: grid; gap: 1.6rem 2.5rem; }
@media (min-width: 760px) { .feature-grid { grid-template-columns: 1fr 1fr; } }

.feature h3 { font-size: 1.08rem; margin-bottom: .3rem; }
.feature p { color: var(--muted); font-size: .95rem; }

/* Access-level table */
.table-wrap { overflow-x: auto; }

table.roles {
    width: 100%;
    border-collapse: collapse;
    font-size: .95rem;
    min-width: 34rem;
}
table.roles th, table.roles td {
    text-align: left;
    padding: .8rem .9rem;
    border-bottom: 1px solid var(--border);
    vertical-align: top;
}
table.roles thead th {
    background: var(--surface);
    color: var(--green-deep);
    font-size: .8rem;
    letter-spacing: .05em;
    text-transform: uppercase;
}
table.roles tbody th { font-weight: 700; color: var(--green-deep); white-space: nowrap; }
table.roles td { color: var(--muted); }

.callout {
    border: 1px solid #d6e5c8;
    border-left: 4px solid var(--green);
    background: var(--green-wash);
    border-radius: var(--radius);
    padding: 1.2rem 1.3rem;
    margin-top: 1.5rem;
}
.callout h3 { font-size: 1.05rem; margin-bottom: .35rem; }
.callout p { font-size: .95rem; margin-bottom: 0; }

/* ------------------------------------------------------------- pricing --- */

.price-teaser {
    display: grid;
    gap: 1.5rem;
    align-items: center;
}
@media (min-width: 860px) { .price-teaser { grid-template-columns: 1.1fr .9fr; gap: 3rem; } }

.tier-strip { display: grid; grid-template-columns: repeat(2, 1fr); gap: .7rem; }
@media (min-width: 520px) { .tier-strip { grid-template-columns: repeat(4, 1fr); } }

.tier {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: .95rem .6rem;
    text-align: center;
}
.tier-count { display: block; font-size: .78rem; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); }
.tier-price { display: block; font-size: 1.32rem; font-weight: 700; color: var(--green-deep); margin-top: .2rem; }
.tier-per { display: block; font-size: .76rem; color: var(--muted); }

/* ---------------------------------------------------------------- band --- */

.cta-band {
    background: var(--green-deep);
    color: #fff;
    text-align: center;
    padding: 3.25rem 0;
}
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.85); max-width: 38rem; margin-inline: auto; margin-bottom: 1.6rem; }
.cta-band .btn-row { justify-content: center; }
.cta-band .btn-outline { border-color: rgba(255,255,255,.45); color: #fff; }
.cta-band .btn-outline:hover { background: rgba(255,255,255,.12); border-color: #fff; color: #fff; }
.cta-band .hero-note { color: rgba(255,255,255,.7); }

/* -------------------------------------------------------------- footer --- */

.site-footer {
    background: var(--surface);
    border-top: 1px solid var(--border);
    padding: 2.75rem 0 1.5rem;
    font-size: .93rem;
}

.footer-inner { display: grid; gap: 2rem; }
@media (min-width: 760px)  { .footer-inner { grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2.5rem; } }

.footer-brand .brand { margin-bottom: .8rem; }
.footer-brand .brand-mark { width: 28px; height: 30px; }
.footer-brand .brand-type { width: 146px; height: 12px; }
.footer-brand p { color: var(--muted); max-width: 22rem; }

.footer-col h2 {
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: .07em;
    color: var(--green-deep);
    margin-bottom: .7rem;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: .45rem; }
.footer-col a { color: var(--muted); text-decoration: none; }
.footer-col a:hover { color: var(--green-deep); text-decoration: underline; }

.footer-legal {
    border-top: 1px solid var(--border);
    margin-top: 2rem;
    padding-top: 1.25rem;
    display: flex;
    flex-wrap: wrap;
    gap: .5rem 1.25rem;
    align-items: center;
    justify-content: space-between;
    color: var(--muted);
    font-size: .87rem;
}
.footer-legal ul { display: flex; flex-wrap: wrap; gap: 1.25rem; list-style: none; margin: 0; padding: 0; }
.footer-legal li { margin: 0; }
.footer-legal a { color: var(--muted); }

/* ====================================================== ambient layout ====
   Quieter, roomier pieces used on the home page. Short copy, big air. */

/* Hero with the photograph alongside. */
.hero-photo { background: var(--nav); color: #fff; overflow: hidden; }
.hero-photo h1 { color: #fff; }

/* Same white-on-dark treatment the green hero gets. Without this the outline
   button renders dark-on-dark and the label disappears. */
.hero-photo .hero-lede { color: rgba(255,255,255,.9); }
.hero-photo .hero-note { color: rgba(255,255,255,.7); }
.hero-photo .btn-outline { border-color: rgba(255,255,255,.45); color: #fff; }
.hero-photo .btn-outline:hover { background: rgba(255,255,255,.12); border-color: #fff; color: #fff; }

.hero-photo-grid { display: grid; gap: 2.5rem; padding-block: 3.5rem; align-items: center; }

@media (min-width: 900px) {
    .hero-photo-grid {
        grid-template-columns: 1.05fr .95fr;
        gap: 4rem;
        padding-block: 5rem;
    }
}

.hero-photo-copy .hero-lede { margin-bottom: 1.75rem; }

.hero-photo-img {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 18px 50px rgba(0,0,0,.45);
}
.hero-photo-img img { width: 100%; height: auto; display: block; }

/* A single quiet statement, set large with room around it.
   max-width is in rem, not ch: ch resolves against this div's own 16px font,
   not the ~33px paragraph inside it, which would wrap the line far too short. */
.statement { text-align: center; max-width: 44rem; margin-inline: auto; }
.statement p {
    font-size: clamp(1.45rem, 3.6vw, 2.1rem);
    line-height: 1.35;
    color: var(--green-deep);
    font-weight: 600;
    letter-spacing: -.015em;
}
.statement p + p { margin-top: .9rem; color: var(--muted); font-weight: 400; font-size: clamp(1.05rem, 2vw, 1.2rem); }

/* Borderless module tiles. Name, one line, link. Nothing else. */
.tiles { display: grid; gap: 2.25rem; }
@media (min-width: 640px)  { .tiles { grid-template-columns: 1fr 1fr; gap: 2.5rem 3rem; } }
@media (min-width: 1040px) { .tiles { grid-template-columns: repeat(4, 1fr); gap: 2.5rem; } }

.tile { border-top: 2px solid var(--green); padding-top: 1.1rem; }
.tile-icon { font-size: 1.5rem; line-height: 1; display: block; margin-bottom: .6rem; }
.tile h3 { font-size: 1.15rem; margin-bottom: .3rem; }
.tile p { color: var(--muted); font-size: .97rem; margin-bottom: .9rem; }
.tile a { font-weight: 600; font-size: .93rem; text-decoration: none; }
.tile a:hover { text-decoration: underline; }
.tile a::after { content: " \2192"; }

/* Three short reassurances in a row. */
.trio { display: grid; gap: 2rem; }
@media (min-width: 760px) { .trio { grid-template-columns: repeat(3, 1fr); gap: 3rem; } }
.trio h3 { font-size: 1.08rem; margin-bottom: .35rem; }
.trio p { color: var(--muted); font-size: .97rem; }

/* Numbered steps, stripped back. */
.beats { display: grid; gap: 2rem; counter-reset: beat; }
@media (min-width: 800px) { .beats { grid-template-columns: repeat(3, 1fr); gap: 3rem; } }
.beat::before {
    counter-increment: beat;
    content: counter(beat);
    display: block;
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .12em;
    color: var(--green);
    margin-bottom: .55rem;
}
.beat h3 { font-size: 1.12rem; margin-bottom: .3rem; }
.beat p { color: var(--muted); font-size: .97rem; }

/* Benefit-led bullets. Benefit first, plain explanation after the dash. */
.benefits { list-style: none; padding: 0; margin: 0; display: grid; gap: 1.15rem; }
@media (min-width: 820px) {
    .benefits { grid-template-columns: 1fr 1fr; gap: 1.4rem 3rem; }
}
.benefits li {
    position: relative;
    padding-left: 1.85rem;
    margin: 0;
    color: var(--muted);
    font-size: .99rem;
    line-height: 1.6;
}
.benefits li::before {
    content: "";
    position: absolute;
    left: .2rem; top: .62em;
    width: 9px; height: 9px;
    border-radius: 2px;
    background: var(--green);
}
.benefits strong { color: var(--green-deep); font-weight: 700; }

/* Pull quote. Used where the copy is the owner speaking in his own voice. */
.pullquote {
    max-width: 44rem;
    margin: 0 auto;
    padding-left: 1.5rem;
    border-left: 3px solid var(--green);
    text-align: left;
}
.pullquote blockquote {
    margin: 0;
    font-size: clamp(1.15rem, 2.4vw, 1.42rem);
    line-height: 1.45;
    color: var(--green-deep);
    font-weight: 500;
}
.pullquote cite {
    display: block;
    margin-top: .9rem;
    font-style: normal;
    font-size: .93rem;
    color: var(--muted);
}
.pullquote cite strong { color: var(--green-deep); font-weight: 600; }

@media (min-width: 700px) {
    .pullquote { padding-left: 2rem; }
}

/* A wide, quiet screenshot with room around it. */
.plate { margin-top: 3.5rem; }
.plate .shot-caption { text-align: center; }

/* ---------------------------------------------------- "what you record" --- */

.spec { border-top: 1px solid var(--border); padding-top: 1.35rem; margin-top: 1.35rem; }
.spec:first-child { border-top: 0; padding-top: 0; margin-top: 0; }
.spec h3 { font-size: 1.08rem; margin-bottom: .25rem; }
.spec > p { color: var(--muted); font-size: .95rem; margin-bottom: .7rem; }

.spec dl { margin: 0; display: grid; gap: .5rem 1.1rem; }
@media (min-width: 640px) { .spec dl { grid-template-columns: 13rem 1fr; } }
.spec dt { font-weight: 600; color: var(--green-deep); font-size: .93rem; }
.spec dd { margin: 0; color: var(--muted); font-size: .93rem; }

/* --------------------------------------------------------- export chips --- */

.chip-list { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: .5rem; }
.chip-list li { margin: 0; }
.chip-list li span {
    display: inline-block;
    padding: .38rem .8rem;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 999px;
    font-size: .87rem;
    font-weight: 600;
    color: var(--green-deep);
}

/* ------------------------------------------------- honest-limits note --- */

.note {
    background: #fdf9ec;
    border: 1px solid #ecdfb8;
    border-left: 4px solid #c9a227;
    border-radius: var(--radius);
    padding: 1.1rem 1.2rem;
    margin-top: 1.6rem;
}
.note h3 { font-size: 1rem; margin-bottom: .3rem; color: #6b5610; }
.note p { font-size: .93rem; margin-bottom: 0; color: #7a651c; }

/* ------------------------------------------------------------ pricing --- */

.plan-grid { display: grid; gap: 1.1rem; }
@media (min-width: 640px)  { .plan-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1040px) { .plan-grid { grid-template-columns: repeat(4, 1fr); } }

.plan {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.6rem 1.3rem;
    text-align: center;
    display: flex;
    flex-direction: column;
}
.plan--feature { border-color: var(--green); box-shadow: var(--shadow-md); }

.plan-name { font-size: .78rem; text-transform: uppercase; letter-spacing: .07em; color: var(--muted); font-weight: 700; }
.plan-price { font-size: 2.1rem; font-weight: 700; color: var(--green-deep); line-height: 1.1; margin: .5rem 0 .05rem; }
.plan-per { font-size: .85rem; color: var(--muted); margin-bottom: 1.1rem; }
.plan > p { font-size: .92rem; color: var(--muted); margin-bottom: 1.2rem; }
.plan .btn { margin-top: auto; }

/* ---------------------------------------------------------------- faq --- */

.faq { margin-top: 1.25rem; max-width: 48rem; }
.faq details {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: #fff;
    margin-bottom: .7rem;
}
.faq summary {
    cursor: pointer;
    padding: 1rem 1.15rem;
    font-weight: 600;
    color: var(--green-deep);
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.35rem; line-height: 1; color: var(--green); font-weight: 400; }
.faq details[open] summary::after { content: "\2212"; }
.faq-body { padding: 0 1.15rem 1.1rem; color: var(--muted); font-size: .95rem; }
.faq-body p:last-child { margin-bottom: 0; }

/* ---------------------------------------------------- prose / legal --- */

.prose { max-width: 46rem; }
.prose .lede { font-size: 1.06rem; }
.prose h2 { margin-top: 2.4rem; font-size: 1.32rem; }
.prose h3 { margin-top: 1.6rem; font-size: 1.05rem; }
.prose p, .prose li { color: var(--muted); }
.prose dt { font-weight: 600; color: var(--green-deep); }
.prose dd { margin: 0 0 .8rem; color: var(--muted); }

.updated { font-size: .9rem; color: var(--muted); margin-bottom: 1.5rem; }

/* ------------------------------------------------------------- motion --- */

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        animation-duration: .001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .001ms !important;
    }
}
