/* Retail-mandate traceability wedge pages.
 *
 * Palette, type stack and component shapes are lifted from the canonical
 * marketing surface, greenreach-central/public/purchase.html — tokens at its
 * :root (lines ~31-41), nav (~1090-1110), hero/button rules (~140-215) and
 * footer rules (~781-850). purchase.html keeps its styles inline; these five
 * sibling pages share one sheet instead of carrying five copies of it.
 *
 * Light palette, matching purchase.html. Deliberately no dark-mode block: the
 * marketing surface commits to one look and a half-converted page would read as
 * a different site mid-funnel.
 */

:root {
    --primary: #2d5016;
    --primary-dark: #1f3a0f;
    --accent: #82c341;
    --accent-dark: #6aa634;
    --text: #1d1d1f;
    --text-light: #86868b;
    --bg: #fbfbfd;
    --surface: #ffffff;
    --border: #e6e6eb;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', Roboto, 'Segoe UI', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.47059;
    font-size: 17px;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

/* ── Fixed navigation ── */
header.site-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(251, 251, 253, 0.78);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 14px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -0.01em;
    display: inline-flex;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: 28px;
    align-items: center;
    list-style: none;
}

.nav-links a {
    color: var(--text);
    font-size: 13px;
    font-weight: 500;
    opacity: 0.85;
    transition: opacity .2s, color .2s;
}

.nav-links a:hover { opacity: 1; color: var(--primary); }

.nav-cta {
    background: var(--primary);
    color: #fff !important;
    padding: 8px 16px;
    border-radius: 980px;
    font-weight: 600 !important;
    opacity: 1 !important;
}

/* ── Hero ── */
.hero {
    padding: 168px 22px 88px;
    text-align: center;
    position: relative;
}

.hero-inner { max-width: 920px; margin: 0 auto; position: relative; z-index: 2; }

.eyebrow {
    color: var(--accent-dark);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.eyebrow-light { color: var(--accent); }

.hero h1 {
    font-size: clamp(44px, 7vw, 76px);
    line-height: 1.05;
    letter-spacing: -0.025em;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 22px;
}

.hero h1 .accent {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p.lede {
    font-size: clamp(19px, 2.2vw, 24px);
    color: var(--text-light);
    line-height: 1.4;
    max-width: 720px;
    margin: 0 auto 32px;
}

.hero-ctas {
    display: inline-flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
}

/* ── Buttons ── */
.btn {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 980px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: transform .15s, background .2s, color .2s, border-color .2s, box-shadow .2s;
    font-family: inherit;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 6px 18px rgba(45, 80, 22, 0.28);
}

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

.btn-ghost {
    background: transparent;
    color: var(--primary);
    border: 1.5px solid var(--primary);
}

.btn-ghost:hover { background: var(--primary); color: #fff; }

/* ── Bands ── */
.band { padding: 88px 22px; }
.band-alt { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.band-dark { background: var(--primary-dark); color: #fff; }

.wrap { max-width: 1120px; margin: 0 auto; }

.band h2 {
    font-size: clamp(30px, 4vw, 42px);
    line-height: 1.12;
    letter-spacing: -0.02em;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 16px;
}

.h2-light { color: #fff !important; }

.section-lede {
    font-size: 18px;
    color: var(--text-light);
    max-width: 720px;
    margin-bottom: 44px;
    line-height: 1.5;
}

.lede-light { color: rgba(255, 255, 255, 0.78); }

/* ── Requirement cards ── */
.card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 30px 28px;
}

.band-alt .card { background: var(--bg); }

.card h3 {
    font-size: 19px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.card p { font-size: 15px; color: var(--text-light); line-height: 1.55; }
.card p + p { margin-top: 12px; }

.card .src {
    font-size: 12px;
    color: var(--accent-dark);
    font-weight: 600;
    letter-spacing: 0.01em;
}

/* ── Capability list ── */
.feature-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px 32px;
}

.feature h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 10px;
    letter-spacing: -0.01em;
    padding-left: 18px;
    position: relative;
}

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

.feature p { font-size: 15px; color: var(--text-light); line-height: 1.55; padding-left: 18px; }

/* ── Boundary list (the honest "what we do not do") ── */
.boundary { list-style: none; display: grid; gap: 20px; max-width: 860px; }

.boundary li {
    font-size: 16px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.78);
    padding-left: 26px;
    position: relative;
}

.boundary li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 12px;
    height: 2px;
    background: var(--accent);
}

.boundary strong { color: #fff; display: block; margin-bottom: 4px; font-weight: 600; }

/* ── Retailer cards ── */
.retailer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.retailer {
    display: block;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 28px 24px;
    transition: transform .15s, box-shadow .2s, border-color .2s;
}

.retailer:hover {
    transform: translateY(-2px);
    border-color: var(--accent);
    box-shadow: 0 10px 26px rgba(45, 80, 22, 0.09);
}

.retailer h3 { font-size: 18px; font-weight: 700; color: var(--primary); margin-bottom: 10px; }
.retailer p { font-size: 14px; color: var(--text-light); line-height: 1.5; margin-bottom: 16px; }
.retailer .go { font-size: 13px; font-weight: 600; color: var(--accent-dark); }

.footnote { margin-top: 28px; font-size: 14px; color: var(--text-light); }

/* ── Verification status block (retailer pages) ── */
.status-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }

.status {
    border-radius: 18px;
    padding: 30px 28px;
    border: 1px solid var(--border);
    background: var(--surface);
}

.status.verified { border-left: 4px solid var(--accent); }
.status.unverified { border-left: 4px solid #c9a227; }

.status h3 { font-size: 18px; font-weight: 700; color: var(--primary); margin-bottom: 14px; }
.status ul { list-style: none; display: grid; gap: 14px; }
.status li { font-size: 15px; color: var(--text-light); line-height: 1.55; }
.status li strong { color: var(--text); font-weight: 600; }
.status .src { margin-top: 16px; font-size: 12px; color: var(--accent-dark); font-weight: 600; }

/* ── CTA band ── */
.cta-band {
    padding: 96px 22px;
    text-align: center;
    background: var(--surface);
    border-top: 1px solid var(--border);
}

.cta-band h2 {
    font-size: clamp(30px, 4vw, 44px);
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.cta-band p {
    font-size: 18px;
    color: var(--text-light);
    max-width: 640px;
    margin: 0 auto 32px;
    line-height: 1.5;
}

/* ── Footer ── */
footer.site-footer {
    background: #1f3a0f;
    color: #fff;
    padding: 80px 22px 32px;
}

.footer-content {
    max-width: 1120px;
    margin: 0 auto 48px;
    display: grid;
    grid-template-columns: 2fr repeat(4, 1fr);
    gap: 40px;
}

.footer-about h3 { font-size: 22px; color: #fff; margin-bottom: 14px; font-weight: 700; }
.footer-about p { font-size: 14px; line-height: 1.6; color: rgba(255,255,255,0.75); }

.footer-column h4 {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 14px;
    color: var(--accent);
}

.footer-column ul { list-style: none; padding: 0; }
.footer-column li { margin-bottom: 10px; }
.footer-column a { color: rgba(255,255,255,0.75); font-size: 14px; transition: color .2s; }
.footer-column a:hover { color: #fff; }

.footer-bottom {
    max-width: 1120px;
    margin: 0 auto;
    padding-top: 28px;
    border-top: 1px solid rgba(255,255,255,0.12);
    text-align: center;
    color: rgba(255,255,255,0.55);
    font-size: 12px;
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .card-grid,
    .feature-list,
    .retailer-grid,
    .status-grid { grid-template-columns: 1fr; }
    .footer-content { grid-template-columns: 1fr 1fr; }
    .band { padding: 72px 20px; }
    .hero { padding: 140px 20px 72px; }
}

@media (max-width: 600px) {
    .nav-links { display: none; }
    .footer-content { grid-template-columns: 1fr; }
}
