/* ============================================================
   hyperlocal — farmers-market produce, delivered.
   warm-paper + produce palette, harmonized with codyh.xyz
   ============================================================ */

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

:root {
    color-scheme: light;

    /* warm-paper base (cousin of codyh.xyz #f2eee6) */
    --bg:        #f7f1e6;
    --bg-deep:   #efe6d4;
    --paper:     #fffdf8;
    --paper-2:   #f3ead8;
    --ink:       #211a12;
    --ink-soft:  #4a3f31;
    --muted:     #7c6f5c;
    --line:      #ddcfb4;
    --line-soft: #e7dcc6;

    /* produce accents */
    --tomato:  #d2402b;
    --tomato-deep: #a82b1d;
    --green:   #4f7a34;
    --green-deep: #3a5d24;
    --gold:    #d99a1c;
    --gold-deep: #b67c0c;
    --plum:    #6b3f6e;
    --soil:    #2b2117;

    --shadow:    0 18px 44px -22px rgba(43, 33, 23, 0.45);
    --shadow-sm: 0 6px 20px -12px rgba(43, 33, 23, 0.4);
    --radius:    16px;
    --radius-sm: 10px;

    --maxw: 1120px;
    --ease: cubic-bezier(0.22, 0.61, 0.36, 1);

    --f-display: "Syne", "Outfit", system-ui, sans-serif;
    --f-body:    "Outfit", system-ui, sans-serif;
    --f-mono:    "Azeret Mono", ui-monospace, monospace;
}

@media (prefers-color-scheme: dark) {
    :root {
        color-scheme: dark;
        --bg:        #15120d;
        --bg-deep:   #100d09;
        --paper:     #1f1a13;
        --paper-2:   #251f16;
        --ink:       #f1e9da;
        --ink-soft:  #d6c9b2;
        --muted:     #a08f74;
        --line:      #352c1f;
        --line-soft: #2a2318;

        --tomato:  #ef6249;
        --tomato-deep: #d2402b;
        --green:   #8db666;
        --green-deep: #6f9a47;
        --gold:    #ecb949;
        --gold-deep: #d99a1c;
        --plum:    #b78fba;
        --soil:    #0f0c08;

        --shadow:    0 22px 60px -24px rgba(0, 0, 0, 0.7);
        --shadow-sm: 0 8px 26px -14px rgba(0, 0, 0, 0.6);
    }
}

html { scroll-behavior: smooth; scroll-padding-top: 84px; }

body {
    background: var(--bg);
    color: var(--ink);
    font-family: var(--f-body);
    font-size: 17px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
strong { font-weight: 700; color: var(--ink); }

::selection { background: color-mix(in srgb, var(--tomato) 30%, transparent); color: var(--ink); }

:focus-visible {
    outline: 2.5px solid var(--green);
    outline-offset: 3px;
    border-radius: 4px;
}

.sr-only {
    position: absolute; width: 1px; height: 1px;
    padding: 0; margin: -1px; overflow: hidden;
    clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.wrap { width: min(100%, var(--maxw)); margin-inline: auto; padding-inline: clamp(1.1rem, 4vw, 2.5rem); }

/* ---------- reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
    .hero-ticker ul, * { animation: none !important; }
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
    position: fixed; inset: 0 0 auto 0; z-index: 100;
    transition: background .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
    border-bottom: 1px solid transparent;
}
.nav-inner {
    width: min(100%, var(--maxw)); margin-inline: auto;
    padding: 1rem clamp(1.1rem, 4vw, 2.5rem);
    display: flex; align-items: center; gap: 1.5rem;
    transition: padding .35s var(--ease);
}
.nav.is-stuck {
    background: color-mix(in srgb, var(--bg) 86%, transparent);
    backdrop-filter: blur(14px) saturate(1.2);
    -webkit-backdrop-filter: blur(14px) saturate(1.2);
    border-bottom-color: var(--line);
    box-shadow: var(--shadow-sm);
}
.nav.is-stuck .nav-inner { padding-top: .7rem; padding-bottom: .7rem; }

.nav-brand { display: flex; align-items: center; gap: .5rem; margin-right: auto; }
.nav-mark { color: var(--tomato); display: grid; place-items: center; }
.nav-word { font-family: var(--f-display); font-weight: 800; font-size: 1.18rem; letter-spacing: -.02em; }

.nav-links { display: flex; gap: 1.4rem; }
.nav-links a {
    font-family: var(--f-mono); font-size: .76rem; letter-spacing: .02em;
    color: var(--ink-soft); position: relative; padding: .2rem 0;
}
.nav-links a::after {
    content: ""; position: absolute; left: 0; bottom: -1px; height: 2px; width: 0;
    background: var(--tomato); transition: width .25s var(--ease);
}
.nav-links a:hover::after, .nav-links a:focus-visible::after { width: 100%; }

.nav-cta {
    font-family: var(--f-mono); font-size: .76rem; font-weight: 600;
    padding: .55rem .95rem; border-radius: 999px;
    background: var(--ink); color: var(--bg);
    transition: transform .2s var(--ease), box-shadow .2s var(--ease);
    white-space: nowrap;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: var(--shadow-sm); }

.nav-burger { display: none; background: none; border: 0; cursor: pointer; padding: .4rem; flex-direction: column; gap: 5px; }
.nav-burger span { width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .3s var(--ease), opacity .2s; }
.nav-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
    display: none; flex-direction: column; gap: .25rem;
    padding: .5rem clamp(1.1rem, 4vw, 2.5rem) 1.25rem;
    background: color-mix(in srgb, var(--bg) 92%, transparent);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
}
.nav-mobile[hidden] { display: none; }
.nav-mobile a { font-family: var(--f-mono); font-size: .9rem; padding: .55rem 0; border-bottom: 1px solid var(--line-soft); }
.nav-mobile-cta { color: var(--tomato) !important; font-weight: 600; border-bottom: 0 !important; }

@media (max-width: 880px) {
    .nav-links, .nav-cta { display: none; }
    .nav-burger { display: flex; }
    .nav-mobile.is-open { display: flex; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
    position: relative; isolation: isolate; overflow: hidden;
    padding: clamp(7.5rem, 16vh, 10rem) 0 clamp(2.5rem, 6vh, 4rem);
}
.hero-bg {
    position: absolute; inset: 0; z-index: -2;
    background:
        radial-gradient(120% 90% at 85% -10%, color-mix(in srgb, var(--gold) 32%, transparent), transparent 55%),
        radial-gradient(90% 70% at 5% 105%, color-mix(in srgb, var(--green) 24%, transparent), transparent 60%),
        radial-gradient(70% 60% at 60% 120%, color-mix(in srgb, var(--tomato) 18%, transparent), transparent 60%),
        linear-gradient(180deg, var(--bg-deep), var(--bg));
}
.hero-grain {
    position: absolute; inset: 0; z-index: -1; opacity: .5; mix-blend-mode: soft-light;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");
}
.hero-inner { width: min(100%, var(--maxw)); margin-inline: auto; padding-inline: clamp(1.1rem, 4vw, 2.5rem); }

.eyebrow {
    display: inline-flex; align-items: center; gap: .55rem;
    font-family: var(--f-mono); font-size: .74rem; font-weight: 600;
    text-transform: lowercase; letter-spacing: .04em; color: var(--green-deep);
    margin-bottom: 1.2rem;
}
.eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--tomato); box-shadow: 0 0 0 4px color-mix(in srgb, var(--tomato) 22%, transparent); }
.eyebrow-light { color: color-mix(in srgb, var(--gold) 80%, var(--ink)); }

.hero-title {
    font-family: var(--f-display); font-weight: 800;
    font-size: clamp(2.6rem, 7.5vw, 5.6rem);
    line-height: .98; letter-spacing: -.03em;
    text-transform: lowercase; text-wrap: balance;
    max-width: 17ch; margin-bottom: 1.5rem;
}
.hl { position: relative; white-space: nowrap; }
.hl-tomato { color: var(--tomato); }
.hl-gold   { color: var(--gold-deep); }
.hl-green  { color: var(--green-deep); }
.hl-tomato::after, .hl-gold::after {
    content: ""; position: absolute; left: -.05em; right: -.05em; bottom: .08em; height: .14em; z-index: -1;
    border-radius: 2px; transform: scaleX(0); transform-origin: left; transition: transform .9s var(--ease) .35s;
}
.hl-tomato::after { background: color-mix(in srgb, var(--tomato) 30%, transparent); }
.hl-gold::after   { background: color-mix(in srgb, var(--gold) 38%, transparent); }
.hero-title.is-in .hl-tomato::after, .hero-title.is-in .hl-gold::after { transform: scaleX(1); }
@media (prefers-reduced-motion: reduce) { .hl-tomato::after, .hl-gold::after { transform: scaleX(1) !important; } }

.hero-sub { font-size: clamp(1.05rem, 2vw, 1.32rem); color: var(--ink-soft); max-width: 56ch; line-height: 1.55; margin-bottom: 2rem; }

.hero-cta { display: flex; flex-wrap: wrap; gap: .85rem; margin-bottom: 1.1rem; }
.hero-micro { font-family: var(--f-mono); font-size: .8rem; color: var(--muted); max-width: 48ch; }

/* buttons */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
    font-family: var(--f-body); font-weight: 600; font-size: 1rem;
    padding: .9rem 1.6rem; border-radius: 999px; cursor: pointer; border: 1.5px solid transparent;
    transition: transform .2s var(--ease), box-shadow .25s var(--ease), background .25s, color .25s;
    text-transform: lowercase;
}
.btn-primary { background: var(--tomato); color: #fff5ef; box-shadow: 0 10px 28px -12px color-mix(in srgb, var(--tomato) 80%, transparent); }
.btn-primary:hover { background: var(--tomato-deep); transform: translateY(-2px); box-shadow: 0 16px 34px -12px color-mix(in srgb, var(--tomato) 75%, transparent); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--green); color: var(--green-deep); transform: translateY(-2px); }

/* ticker */
.hero-ticker {
    list-style: none; display: flex; flex-wrap: wrap; gap: .55rem .65rem;
    margin: clamp(2.5rem, 6vh, 4rem) auto 0;
    width: min(100%, var(--maxw)); padding-inline: clamp(1.1rem, 4vw, 2.5rem);
    padding-top: 1.5rem; border-top: 1px dashed var(--line);
}
.hero-ticker li {
    display: inline-flex; align-items: center; gap: .45rem;
    font-family: var(--f-mono); font-size: .78rem; color: var(--ink-soft);
    background: var(--paper); border: 1px solid var(--line-soft);
    padding: .35rem .8rem; border-radius: 999px;
}
.tick-dot { width: 8px; height: 8px; border-radius: 50%; }
.tick-tomato { background: var(--tomato); } .tick-green { background: var(--green); }
.tick-gold { background: var(--gold); } .tick-plum { background: var(--plum); }

/* ============================================================
   SECTION SCAFFOLD
   ============================================================ */
.section { padding: clamp(4rem, 10vh, 7rem) 0; position: relative; }
.section-title {
    font-family: var(--f-display); font-weight: 700;
    font-size: clamp(1.9rem, 4.5vw, 3.1rem); line-height: 1.05;
    letter-spacing: -.025em; text-transform: lowercase; text-wrap: balance;
    max-width: 24ch; margin-bottom: 1rem;
}
.lede { font-size: 1.15rem; color: var(--ink-soft); max-width: 60ch; margin-bottom: 2.5rem; }

/* ---------- 2. PROBLEM ---------- */
.section-problem { background: var(--bg-deep); border-block: 1px solid var(--line-soft); }
.problem-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; margin-bottom: 2.25rem; }
.opt-card {
    background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
    padding: 1.8rem 1.7rem; position: relative; box-shadow: var(--shadow-sm);
}
.opt-num { font-family: var(--f-mono); font-size: .82rem; font-weight: 700; color: var(--tomato); }
.opt-card h3 { font-family: var(--f-display); font-weight: 700; font-size: 1.35rem; text-transform: lowercase; margin: .35rem 0 .7rem; letter-spacing: -.01em; }
.opt-card p { color: var(--ink-soft); font-size: 1rem; }
.problem-closer { font-size: 1.2rem; color: var(--ink-soft); max-width: 50ch; margin-bottom: 2.5rem; }

.pullquote { position: relative; max-width: 46ch; margin: 0; padding-left: 1.5rem; border-left: 4px solid var(--tomato); }
.pullquote blockquote {
    font-family: var(--f-display); font-weight: 600; font-style: normal;
    font-size: clamp(1.25rem, 3vw, 1.85rem); line-height: 1.3; letter-spacing: -.01em; color: var(--ink);
    text-transform: lowercase;
}
.pullquote blockquote::before { content: "“"; color: var(--tomato); }
.pullquote blockquote::after { content: "”"; color: var(--tomato); }

/* ---------- 3. HOW IT WORKS ---------- */
.steps { list-style: none; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; counter-reset: step; }
.step {
    background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
    padding: 1.7rem 1.6rem; position: relative; overflow: hidden;
    transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.step::before { content: ""; position: absolute; inset: 0 auto 0 0; width: 4px; background: linear-gradient(var(--green), var(--gold)); opacity: .85; }
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--green); }
.step-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; }
.step-num { font-family: var(--f-mono); font-weight: 700; font-size: .95rem; color: var(--green-deep); }
.step-icon { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 12px; background: color-mix(in srgb, var(--green) 14%, transparent); color: var(--green-deep); }
.step-icon svg { width: 22px; height: 22px; }
.step h3 { font-family: var(--f-display); font-weight: 700; font-size: 1.3rem; text-transform: lowercase; letter-spacing: -.01em; margin-bottom: .55rem; }
.step p { color: var(--ink-soft); font-size: .98rem; }
.how-closer { margin-top: 2.5rem; font-size: clamp(1.2rem, 2.6vw, 1.55rem); font-family: var(--f-display); font-weight: 600; text-transform: lowercase; max-width: 40ch; letter-spacing: -.01em; }

/* ---------- 4+5. MARKETPLACE ---------- */
.section-market { background: var(--bg-deep); border-block: 1px solid var(--line-soft); }
.market-toggle, .contact-toggle {
    position: relative; display: inline-flex; padding: 5px; gap: 0;
    background: var(--paper-2); border: 1px solid var(--line); border-radius: 999px; margin-bottom: 2.5rem;
}
.mt-btn, .ct-btn {
    position: relative; z-index: 1; border: 0; background: transparent; cursor: pointer;
    font-family: var(--f-mono); font-size: .82rem; font-weight: 600;
    padding: .6rem 1.3rem; border-radius: 999px; color: var(--muted);
    transition: color .25s var(--ease); white-space: nowrap;
}
.mt-btn.is-active, .ct-btn.is-active { color: #fff5ef; }
.mt-thumb, .ct-thumb {
    position: absolute; z-index: 0; top: 5px; bottom: 5px; left: 5px; width: calc(50% - 5px);
    background: var(--tomato); border-radius: 999px; transition: transform .35s var(--ease);
    box-shadow: var(--shadow-sm);
}
.market-toggle[data-side="farms"] .mt-thumb, .ct-thumb.is-right { transform: translateX(100%); }
.market-toggle[data-side="farms"] .mt-thumb { background: var(--green); }

.market-panel, .lead-form { display: none; }
.market-panel.is-active, .lead-form.is-active { display: block; }
.market-panel[hidden], .lead-form[hidden] { display: none; }

.market-lead { margin-bottom: 1.5rem; }
.market-h3 { font-family: var(--f-display); font-weight: 700; font-size: clamp(1.5rem, 3.5vw, 2.3rem); text-transform: lowercase; letter-spacing: -.02em; line-height: 1.1; margin-bottom: .9rem; max-width: 22ch; }
.market-lead p { color: var(--ink-soft); max-width: 56ch; font-size: 1.08rem; }

.value-list { list-style: none; display: grid; gap: .15rem; margin-bottom: 2rem; }
.value-list li {
    padding: 1rem 0 1rem 2.1rem; border-bottom: 1px solid var(--line-soft); position: relative; color: var(--ink-soft);
}
.value-list li::before {
    content: ""; position: absolute; left: 0; top: 1.25rem; width: 16px; height: 16px;
    background: no-repeat center / contain
      url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234f7a34' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m20 6-11 11-5-5'/%3E%3C/svg%3E");
}
#panel-farms .value-list li::before { stroke: var(--green); }
.value-list strong { display: inline; }

.offer-block {
    background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
    padding: 1.8rem; box-shadow: var(--shadow-sm); position: relative; overflow: hidden;
}
.offer-block::after { content: ""; position: absolute; top: -40px; right: -40px; width: 140px; height: 140px; border-radius: 50%; background: radial-gradient(circle, color-mix(in srgb, var(--gold) 30%, transparent), transparent 70%); }
.offer-tag {
    display: inline-block; font-family: var(--f-display); font-weight: 700; font-size: 1.3rem;
    color: var(--tomato); text-transform: lowercase; margin-bottom: .6rem;
}
.offer-block p { color: var(--ink-soft); max-width: 54ch; margin-bottom: 1.4rem; }
.farm-closer { font-family: var(--f-display); font-weight: 600; font-size: clamp(1.2rem, 2.5vw, 1.5rem); color: var(--ink); text-transform: lowercase; }

/* ---------- 6. PRICING ---------- */
.price-stage { display: grid; grid-template-columns: 1.45fr 1fr; gap: 1.25rem; align-items: stretch; margin-bottom: 2.5rem; }

.receipt {
    background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
    padding: 1.6rem 1.7rem 1.4rem; box-shadow: var(--shadow); position: relative;
}
.receipt::before, .receipt::after { content: ""; position: absolute; left: 12px; right: 12px; height: 8px; }
.receipt::before { top: -8px; background: radial-gradient(circle at 6px 8px, transparent 6px, var(--paper) 6px) repeat-x 0/14px 8px; filter: drop-shadow(0 -1px 0 var(--line)); }
.receipt::after  { bottom: -8px; background: radial-gradient(circle at 6px 0, transparent 6px, var(--paper) 6px) repeat-x 0/14px 8px; filter: drop-shadow(0 1px 0 var(--line)); }
.receipt-head { display: flex; align-items: baseline; justify-content: space-between; padding-bottom: 1rem; border-bottom: 2px dashed var(--line); }
.receipt-brand { font-family: var(--f-display); font-weight: 800; font-size: 1.4rem; }
.receipt-meta { font-family: var(--f-mono); font-size: .68rem; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; }

.receipt-cols, .receipt-rows li, .receipt-fee, .receipt-foot {
    display: grid; grid-template-columns: 1.7fr .9fr 1fr 1fr; gap: .5rem; align-items: baseline;
}
.receipt-cols { padding: .8rem 0 .5rem; font-family: var(--f-mono); font-size: .64rem; text-transform: uppercase; letter-spacing: .07em; color: var(--muted); }
.ta-r { text-align: right; }
.receipt-rows { list-style: none; }
.receipt-rows li { padding: .7rem 0; border-bottom: 1px solid var(--line-soft); }
.r-item { font-size: .95rem; color: var(--ink); }
.r-item em { display: block; font-style: normal; font-family: var(--f-mono); font-size: .68rem; color: var(--muted); }
.r-num { font-family: var(--f-mono); font-size: .92rem; font-weight: 500; color: var(--ink-soft); }
.r-markup { color: var(--gold-deep); }
.r-markup i { display: block; font-style: normal; font-size: .62rem; opacity: .8; }
.r-total { font-weight: 700; color: var(--ink); }
.receipt-fee { padding: .9rem 0; grid-template-columns: 1fr auto; border-bottom: 2px dashed var(--line); font-family: var(--f-mono); font-size: .82rem; color: var(--ink-soft); }
.receipt-fee s { color: var(--muted); }
.receipt-foot { padding-top: 1rem; grid-template-columns: 1fr auto; }
.receipt-foot span:first-child { font-family: var(--f-mono); font-size: .8rem; color: var(--muted); text-transform: lowercase; }
.receipt-foot-num { font-family: var(--f-display); font-weight: 800; font-size: 1.7rem; color: var(--green-deep); }

.redacted {
    background: var(--soil); color: #cabfac; border-radius: var(--radius);
    padding: 1.6rem 1.7rem; display: flex; flex-direction: column;
    box-shadow: var(--shadow); position: relative; overflow: hidden;
    background-image: repeating-linear-gradient(45deg, rgba(255,255,255,.018) 0 12px, transparent 12px 24px);
}
.redacted-head { display: flex; align-items: baseline; justify-content: space-between; padding-bottom: 1rem; border-bottom: 1px solid rgba(255,255,255,.12); }
.redacted-brand { font-family: var(--f-display); font-weight: 800; font-size: 1.4rem; color: #f1e9da; }
.redacted-meta { font-family: var(--f-mono); font-size: .66rem; color: #8a7d68; text-transform: uppercase; letter-spacing: .08em; }
.redacted-rows { list-style: none; padding: .4rem 0; flex: 1; }
.redacted-rows li { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: .75rem 0; border-bottom: 1px solid rgba(255,255,255,.07); font-family: var(--f-mono); font-size: .82rem; color: #b6a98f; }
.bar { flex: 1; max-width: 130px; height: 14px; border-radius: 3px; background: #2f2a22; position: relative; overflow: hidden; }
.bar::after { content: ""; position: absolute; inset: 0; background: repeating-linear-gradient(90deg, #000 0 8px, #1a160f 8px 16px); opacity: .85; }
.bar-short { max-width: 80px; }
.redacted-foot { display: flex; align-items: baseline; justify-content: space-between; padding-top: 1rem; }
.redacted-foot span:first-child { font-family: var(--f-mono); font-size: .8rem; color: #8a7d68; }
.redacted-q { font-family: var(--f-display); font-weight: 800; font-size: 2.2rem; color: var(--tomato); letter-spacing: .05em; }
.redacted-note { font-family: var(--f-mono); font-size: .72rem; color: #8a7d68; margin-top: .75rem; line-height: 1.5; }

/* compare table */
.compare { margin-bottom: 2.5rem; overflow-x: auto; }
.compare-table { width: 100%; border-collapse: collapse; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.compare-table th, .compare-table td { padding: .95rem 1.1rem; text-align: left; border-bottom: 1px solid var(--line-soft); }
.compare-table thead th { font-family: var(--f-mono); font-size: .76rem; text-transform: lowercase; letter-spacing: .03em; }
.compare-table thead .c-us { color: var(--green-deep); }
.compare-table thead .c-them { color: var(--muted); }
.compare-table tbody th { font-family: var(--f-mono); font-size: .82rem; font-weight: 500; color: var(--ink-soft); text-transform: lowercase; }
.compare-table tbody tr:last-child th, .compare-table tbody tr:last-child td { border-bottom: 0; }
.compare-table .c-us { background: color-mix(in srgb, var(--green) 7%, transparent); }
.pill { display: inline-block; font-family: var(--f-mono); font-size: .74rem; padding: .25rem .6rem; border-radius: 999px; }
.pill-yes { background: color-mix(in srgb, var(--green) 18%, transparent); color: var(--green-deep); }
.pill-no { background: color-mix(in srgb, var(--ink) 9%, transparent); color: var(--muted); }

.trust-line { background: var(--paper); border: 1px dashed var(--tomato); border-radius: var(--radius); padding: 1.5rem 1.7rem; max-width: 70ch; }
.trust-line p { color: var(--ink-soft); font-size: 1.02rem; }

/* ---------- 7. WHY ---------- */
.section-why { background: var(--soil); color: #ece2d0; }
.section-why .section-title, .section-why strong { color: #f6efe0; }
.why-title { background: linear-gradient(95deg, var(--gold), var(--tomato) 70%); -webkit-background-clip: text; background-clip: text; color: transparent; max-width: 22ch; }
.why-grid { display: grid; grid-template-columns: 1.6fr 1fr; gap: 2.5rem; align-items: start; }
.why-body p { color: #c8bca8; margin-bottom: 1.1rem; font-size: 1.06rem; }
.why-body strong { color: #f6efe0; }
.why-bet { font-family: var(--f-display); font-weight: 600; font-size: 1.3rem; color: #f6efe0 !important; text-transform: lowercase; }
.why-sig { font-family: var(--f-mono); font-size: .85rem; color: var(--gold) !important; margin-top: 1.5rem; }
.why-stats { display: grid; gap: .9rem; }
.stat { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); border-radius: var(--radius-sm); padding: 1.2rem 1.3rem; }
.stat-num { display: block; font-family: var(--f-display); font-weight: 800; font-size: 2rem; color: var(--gold); line-height: 1; margin-bottom: .35rem; }
.stat-label { font-family: var(--f-mono); font-size: .73rem; color: #9a8d77; line-height: 1.4; }
.stat-accent .stat-num { color: var(--tomato); }

/* ---------- 8. CONTACT ---------- */
.section-contact { background: var(--bg-deep); border-top: 1px solid var(--line-soft); }
.form-intro { font-size: 1.1rem; color: var(--ink-soft); margin-bottom: 1.5rem; max-width: 50ch; }
.field-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.1rem 1.25rem; margin-bottom: 1.6rem; }
.field { display: flex; flex-direction: column; gap: .4rem; }
.field-full { grid-column: 1 / -1; }
.field label { font-family: var(--f-mono); font-size: .74rem; color: var(--ink-soft); text-transform: lowercase; letter-spacing: .02em; }
.field label .opt { color: var(--muted); }
.field input, .field textarea, .field select {
    font-family: var(--f-body); font-size: 1rem; color: var(--ink);
    background: var(--paper); border: 1.5px solid var(--line); border-radius: var(--radius-sm);
    padding: .8rem .95rem; width: 100%; transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field input::placeholder, .field textarea::placeholder { color: var(--muted); opacity: .8; }
.field input:focus, .field textarea:focus, .field select:focus {
    outline: none; border-color: var(--green);
    box-shadow: 0 0 0 4px color-mix(in srgb, var(--green) 18%, transparent);
}
.field textarea { resize: vertical; min-height: 64px; }
.select-wrap { position: relative; }
.select-wrap::after { content: ""; position: absolute; right: 1rem; top: 50%; width: 9px; height: 9px; border-right: 2px solid var(--muted); border-bottom: 2px solid var(--muted); transform: translateY(-70%) rotate(45deg); pointer-events: none; }
.field select { appearance: none; cursor: pointer; }
.btn-submit { width: 100%; padding: 1rem; font-size: 1.05rem; }
.form-confirm {
    margin-top: 1.2rem; padding: 1.1rem 1.3rem; border-radius: var(--radius-sm);
    background: color-mix(in srgb, var(--green) 14%, transparent); border: 1px solid var(--green);
    color: var(--green-deep); font-size: 1rem; font-weight: 500;
}
.form-confirm[hidden] { display: none; }

/* ---------- COMING SOON (roadmap teaser, de-emphasized) ---------- */
.coming-soon {
    margin-top: 2.5rem; padding: 1.4rem 1.6rem; border-radius: var(--radius-sm);
    background: color-mix(in srgb, var(--bg-deep) 60%, transparent);
    border: 1px dashed var(--line); opacity: .72;
}
.coming-soon .cs-label {
    display: inline-block; font-family: var(--f-mono); font-size: .72rem; font-weight: 600;
    letter-spacing: .06em; text-transform: uppercase; color: var(--muted);
    padding: .25rem .55rem; border: 1px solid var(--line); border-radius: 999px; margin-bottom: .7rem;
}
.coming-soon .cs-body { color: var(--muted); font-size: .95rem; max-width: 56ch; margin: 0; }

/* ---------- FOOTER ---------- */
.site-footer { background: var(--soil); color: #c8bca8; padding: clamp(3rem, 7vh, 4.5rem) 0 2rem; }
.footer-inner { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2rem; padding-bottom: 2.5rem; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-word { font-family: var(--f-display); font-weight: 800; font-size: 1.6rem; color: #f6efe0; }
.footer-tag { font-family: var(--f-mono); font-size: .82rem; color: var(--gold); margin-top: .5rem; }
.footer-links { display: flex; flex-direction: column; gap: .55rem; }
.footer-links a, .footer-contact a { font-family: var(--f-mono); font-size: .84rem; color: #c8bca8; transition: color .2s; }
.footer-links a:hover, .footer-contact a:hover { color: var(--gold); }
.footer-contact p { font-family: var(--f-mono); font-size: .84rem; }
.footer-contact a { border-bottom: 1px solid var(--gold); }
.footer-legal { font-family: var(--f-mono); font-size: .7rem; color: #7d715d; margin-top: 1.5rem; line-height: 1.6; }

.anchor-target { display: block; position: relative; top: -84px; visibility: hidden; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 920px) {
    .why-grid { grid-template-columns: 1fr; gap: 1.75rem; }
    .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
    body { font-size: 16px; }
    .problem-grid, .steps { grid-template-columns: 1fr; }
    .price-stage { grid-template-columns: 1fr; }
    .field-grid { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr; gap: 1.5rem; }
    .hero-title { max-width: 100%; }
    .hl { white-space: normal; }
}
