/* ── Brand tokens ─────────────────────────────────────────── */
:root {
    --bg:         #fdfaf6; /* cream-50  */
    --bg2:        #f7f2ea; /* cream-100 */
    --ink:        #1e1410; /* bark-900  */
    --muted:      #7a5843; /* bark-600  */
    --muted-lt:   #856046; /* bark-500 — darkened to meet WCAG AA (4.5:1) on cream */
    --gold:       #d4b483; /* gold      */
    --gold-light: #e2c89a; /* gold-light */
    --gold-faint: #f5eddb; /* gold-faint */
    --terra:      #c45c3a; /* CTA       */
    --terra-dark: #9c3e22; /* CTA hover */
    --terra-faint:#f5eae4; /* terra bg  */
    --line:       #ede3d3; /* cream-200 */
    --chip:       #fdfaf6; /* input bg  */
    --shadow-sm:  0 1px 4px rgb(30 20 16 / 7%);
    --shadow:     0 4px 24px rgb(30 20 16 / 12%), 0 1px 4px rgb(30 20 16 / 8%);
    --shadow-lg:  0 10px 48px rgb(30 20 16 / 16%), 0 2px 8px rgb(30 20 16 / 10%);
}

/* Motion prefs */
html:focus-within {
    scroll-behavior: smooth;
}

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

    * {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
}

/* ── Base / layout ────────────────────────────────────────── */
* {
    box-sizing: border-box;
}

html,
body {
    height: 100%;
}

body {
    margin: 0;
    font-family: Nunito, system-ui, -apple-system, sans-serif;
    color: var(--ink);
    background-color: var(--bg2);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Warm ambient mesh — matches member app radial gradient pattern */
body::before {
    content: "";
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    height: clamp(420px, 60vh, 720px);
    z-index: -1;
    pointer-events: none;
    background:
        radial-gradient(ellipse 900px 560px at 85% -5%,  rgb(196 92 58 /  10%) 0%, transparent 55%),
        radial-gradient(ellipse 760px 480px at 0%  10%,  rgb(212 180 131 / 9%) 0%, transparent 55%),
        radial-gradient(ellipse 600px 400px at 50% 80%,  rgb(212 180 131 / 5%) 0%, transparent 50%);
    mask-image: linear-gradient(to bottom, #000 60%, transparent 100%);
}

body::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    opacity: .025;
}

@media (width <= 640px) {
    body::before {
        height: clamp(360px, 52vh, 560px);
        background:
            radial-gradient(ellipse 500px 360px at 90%  0%,  rgb(196 92 58 /  10%) 0%, transparent 55%),
            radial-gradient(ellipse 420px 300px at 0%   8%,  rgb(212 180 131 / 8%) 0%, transparent 55%);
        mask-image: linear-gradient(to bottom, #000 55%, transparent 100%);
    }
}

.wrap {
    max-width: 1080px;
    margin: 0 auto;
    padding: 16px 20px 24px;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h2 {
    font-family: "DM Serif Display", Georgia, serif;
    font-weight: 400;
    letter-spacing: -0.01em;
}

/* Skip link */
.skip-link {
    position: absolute;
    left: -9999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.skip-link:focus {
    left: 16px;
    top: 12px;
    width: auto;
    height: auto;
    padding: 10px 12px;
    background: #fff;
    color: #000;
    border-radius: 8px;
    z-index: 1000;
}

/* ── Header ── */
.nav {
    padding: 8px 0 0;
    margin-bottom: 8px;
}

.brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

@media (width >= 960px) {
    .brand {
        flex-direction: row;
        align-items: flex-center;
        justify-content: space-between;
    }
}

.logo-row {
    display: flex;
    align-items: flex-end;
    text-decoration: none;
    color: var(--ink);
}

.logo-img {
    height: 160px;
    width: auto;
    display: block;
}

@media (width >= 640px) {
    .logo-img {
        height: 160px;
    }
}

.badge {
    display: inline-block;
    font-family: Nunito, system-ui, sans-serif;
    font-size: 11px;
    letter-spacing: .08em;
    font-weight: 700;
    text-transform: uppercase;
    background: var(--gold-faint);
    color: var(--muted);
    border: 1px solid var(--gold);
    padding: 7px 14px;
    border-radius: 999px;
    box-shadow: var(--shadow-sm);
    text-align: center;
}

/* ── Hero ── */
.hero {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 36px;
    align-items: center;
    padding: 12px 0 28px;
}

@media (width <= 960px) {
    .hero {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 8px 0 20px;
    }

    .hero-copy {
        text-align: center;
    }
}

h1 {
    font-size: clamp(34px, 6vw, 64px);
    line-height: 1.05;
    margin: 6px 0 8px;
}

.hero-copy h1 {
    letter-spacing: -0.01em;
    word-spacing: 0.04em;
}

.h2 {
    font-size: clamp(20px, 3.2vw, 28px);
    margin: 0 0 6px;
    text-align: center;
}

.sub {
    font-size: clamp(16px, 2.6vw, 19px);
    color: var(--muted);
    max-width: 46ch;
    margin: 0 auto 18px;
    line-height: 1.6;
}

@media (width >= 961px) {
    .sub {
        margin: 0 0 18px;
    }
}

.card {
    background: rgb(253 250 246 / 92%);
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 22px;
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow);
}

/* ── Programme highlights ── */
.bullets {
    list-style: none;
    margin: 1.5rem 0;
    padding: 0;
    display: grid;
    gap: 0.9rem;
}

.bullets li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    color: var(--muted);
    font-size: clamp(0.95rem, 2vw, 1.05rem);
    line-height: 1.55;
    opacity: 1;
    transform: none;
    animation: none;
}

.bullets i {
    color: var(--terra);
    font-size: 1.1em;
    margin-top: 0.15em;
    flex-shrink: 0;
}

@keyframes eva-fade-up {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.bullets.reveal.reveal--in li {
    opacity: 0;
    transform: translateY(6px);
    animation: eva-fade-up .55s ease forwards;
    animation-delay: var(--delay, 0s);
}

.trust {
    color: var(--muted-lt);
    font-size: 13px;
    margin-top: 8px;
}

.legal {
    margin-top: 10px;
    text-align: center;
}

.cta {
    text-align: center;
}

/* ── Form grid ── */
.grid {
    display: grid;
    gap: 10px;
    margin: 14px 0;
}

.field {
    display: block;
}

.span-2 {
    grid-column: 1 / -1;
}

@media (width >= 720px) {
    .grid {
        grid-template-columns: 1fr 1fr;
    }

    .field {
        grid-column: auto;
    }

    .span-2 {
        grid-column: 1 / -1;
    }
}

/* Controls */
input,
select,
button,
textarea {
    font: inherit;
    border-radius: 10px;
    border: 1px solid var(--line);
    padding: 13px 14px;
    background: var(--chip);
    color: var(--ink);
    outline: none;
    transition: box-shadow .15s ease, border-color .15s ease, transform .1s ease;
    min-height: 44px;
    width: 100%;
}

input::placeholder {
    color: var(--muted-lt);
}

select {
    appearance: none;
}

:where(input, select, textarea):focus-visible {
    border-color: var(--terra);
    box-shadow: 0 0 0 3px rgb(196 92 58 / 18%);
}

:where(input, select)[aria-invalid="true"],
:where(input, select):user-invalid {
    border-color: var(--terra);
    box-shadow: 0 0 0 3px rgb(196 92 58 / 22%);
}

.micro {
    font-size: 13px;
    text-align: center;
    color: var(--muted-lt);
}

/* Button — terra gradient, matches member app .btn-terra.
   Self-contained so it renders identically as <button> or <a>. */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--terra) 0%, var(--terra-dark) 100%);
    color: #fff;
    border: 1px solid transparent;
    border-radius: 12px;
    min-height: 48px;
    padding: 13px 22px;
    font-family: Nunito, system-ui, sans-serif;
    font-weight: 700;
    font-size: 1rem;
    line-height: 1.1;
    text-decoration: none;
    cursor: pointer;
    transform: translateZ(0);
    box-shadow: var(--shadow-sm);
    letter-spacing: .01em;
    transition: box-shadow .15s ease, transform .1s ease, opacity .15s ease;
}

.btn:hover {
    box-shadow: var(--shadow);
    transform: translateY(-1px);
    opacity: .95;
}

.btn:active {
    transform: translateY(0);
    box-shadow: var(--shadow-sm);
}

.btn:disabled {
    opacity: .45;
    cursor: not-allowed;
}

/* Honeypot */
.hp {
    position: absolute;
    left: -9999px;
}

/* Footer */
.foot {
    border-top: 1px solid var(--line);
    margin-top: 28px;
    padding: 18px 0;
    color: var(--muted-lt);
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.foot .credit {
    flex-basis: 100%;
    text-align: center;
    font-size: 13px;
    color: var(--muted-lt);
}

.foot .credit a {
    color: var(--terra);
    text-decoration: none;
    font-weight: 600;
    transition: color .2s ease;
}

.foot .credit a:hover,
.foot .credit a:focus-visible {
    color: var(--terra-dark);
}

@media (width >= 720px) {
    .foot .credit {
        flex-basis: auto;
        text-align: right;
    }
}

.foot .social-link,
.foot .social-link:link,
.foot .social-link:visited {
    color: var(--muted-lt) !important;
    text-decoration: none;
    transition: transform .2s ease, color .2s ease;
    display: inline-flex;
    align-items: center;
}

.foot .social-link i,
.foot .social-link svg {
    font-size: 1.6rem;
    width: 1.6rem;
    height: 1.6rem;
    line-height: 1;
    display: inline-block;
    vertical-align: middle;
    color: var(--muted-lt);
}

.foot .social-link:hover,
.foot .social-link:focus-visible {
    color: var(--terra) !important;
    transform: translateY(-2px);
}

.foot .social-link svg path {
    fill: currentcolor !important;
}

.foot .social-link:hover i,
.foot .social-link:focus-visible i {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.link {
    color: var(--terra-dark);
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* SR-only utility */
.visually-hidden {
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px);
    white-space: nowrap;
    border: 0;
    padding: 0;
    margin: -1px;
}

/* ===== Mobile hero improvements ===== */
@media (width <= 640px) {
    .hero {
        padding: 12px 0 22px;
        gap: 20px;
    }

    .hero-copy {
        text-align: center;
    }

    h1 {
        font-size: clamp(28px, 7.2vw, 40px);
        line-height: 1.15;
        letter-spacing: .1px;
        margin: 10px 0 12px;
    }

    .sub {
        max-width: 30ch;
        margin: 0 auto 18px;
        line-height: 1.6;
    }

    .bullets {
        max-width: 32ch;
        margin: 14px auto 8px;
        gap: 12px;
        padding: 0;
    }

    .bullets li {
        justify-content: center;
        align-items: center;
        gap: 8px;
        padding: 10px 12px;
        border: 1px solid var(--line);
        border-radius: 12px;
        background: rgb(253 250 246 / 50%);
    }

    .trust {
        margin-top: 10px;
    }
}

/* Status helper */
.status {
    margin-top: .75rem;
    font-size: .95rem;
    min-height: 1.25rem;
    text-align: center;
}

.status.is-info {
    color: var(--muted-lt);
}

.status.is-success {
    color: #3a6b37;
}

.status.is-error {
    color: var(--terra-dark);
}

.btn[aria-busy="true"] {
    opacity: .7;
    pointer-events: none;
}

/* ── Reveal on scroll ── */
.reveal {
    --delay: 0s;

    opacity: 0;
    transform: translateY(10px);
    will-change: opacity, transform;
}

.reveal.reveal--in {
    animation: eva-fade-up .60s ease forwards;
    animation-delay: var(--delay);
}

/* ── Tiers Section ── */
.tiers {
    text-align: center;
    margin: 64px auto 48px;
    padding: 0 16px;
    max-width: 1080px;
}

.tier-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 32px;
}

.tier-card {
    background: rgb(253 250 246 / 90%);
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 28px 24px 32px;
    box-shadow: var(--shadow-sm);
    text-align: left;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.tier-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: var(--gold);
}

.tier-card.featured {
    background: linear-gradient(160deg,
        rgb(253 250 246 / 95%) 0%,
        rgb(245 237 219 / 80%) 100%
    );
    border-color: var(--gold);
    box-shadow: 0 4px 24px rgb(212 180 131 / 18%), 0 1px 4px rgb(30 20 16 / 8%);
}

.tier-name {
    font-family: "DM Serif Display", Georgia, serif;
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--ink);
    margin-bottom: 10px;
}

.tier-desc {
    font-size: .95rem;
    color: var(--muted);
    line-height: 1.65;
    margin-bottom: 14px;
}

.tier-name i {
    color: var(--terra);
    margin-right: 8px;
    font-size: .95rem;
    vertical-align: middle;
}

.tier-card .tier-name>i,
.tier-card .tier-name>.fa-solid,
.tier-card .tier-name>.fa-regular,
.tier-card .tier-name>.fa-light,
.tier-card .tier-name>.fa-duotone,
.tier-card .tier-name>svg,
.tier-card .tier-name>svg path {
    color: var(--terra) !important;
    fill: var(--terra) !important;
    opacity: 1;
}

.tier-card .tier-name>.fa-duotone {
    --fa-primary-color: var(--terra);
    --fa-secondary-color: var(--terra);
}

.tier-card .tier-name,
.tier-card .tier-name i {
    -webkit-text-fill-color: currentcolor !important;
    background: none;
}

/* Ghost button — secondary action. Self-contained for <a> and <button>. */
.btn--ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgb(253 250 246 / 70%);
    color: var(--ink);
    border: 1px solid var(--line);
    border-radius: 12px;
    min-height: 48px;
    padding: 13px 22px;
    font-family: Nunito, system-ui, sans-serif;
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.1;
    text-decoration: none;
    cursor: pointer;
    transition: box-shadow .15s ease, border-color .15s ease, transform .1s ease;
}

.btn--ghost:hover,
.btn--ghost:focus-visible {
    border-color: var(--gold);
    box-shadow: var(--shadow-sm);
    transform: translateY(-1px);
}

/* Notice text in tiers */
.notice {
    color: var(--muted);
    font-size: clamp(15px, 2vw, 17px);
    line-height: 1.7;
    max-width: 70ch;
    margin: 0 auto;
}

/* ════════════════════════════════════════════════════════════
   Multi-page chrome — added when the marketing site grew from a
   single waitlist page into the full IA (issue #99).
   ════════════════════════════════════════════════════════════ */

/* ── Primary navigation ── */
.site-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgb(253 250 246 / 85%);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
}

.nav-inner {
    max-width: 1080px;
    margin: 0 auto;
    padding: 8px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.site-nav .logo-row {
    align-items: center;
    gap: 6px;
}

/* Icon-only infinity-loop mark; the wordmark carries the name. */
.site-nav .logo-img {
    height: 50px;
    width: auto;
}

.logo-word {
    font-family: "DM Serif Display", Georgia, serif;
    font-size: 1.55rem;
    line-height: 1;
    color: var(--ink);
    letter-spacing: -0.01em;
}

@media (width <= 420px) {
    .logo-word {
        font-size: 1.35rem;
    }

    .site-nav .logo-img {
        height: 42px;
    }
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-wrap: wrap;
}

.nav-menu a {
    color: var(--ink);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    padding: 8px 12px;
    border-radius: 8px;
    transition: background .15s ease, color .15s ease;
}

.nav-menu a:hover,
.nav-menu a:focus-visible {
    background: var(--gold-faint);
    color: var(--terra-dark);
}

.nav-menu a[aria-current="page"] {
    color: var(--terra-dark);
}

.nav-cta {
    background: linear-gradient(135deg, var(--terra) 0%, var(--terra-dark) 100%);
    color: #fff !important;
    box-shadow: var(--shadow-sm);
}

.nav-cta:hover,
.nav-cta:focus-visible {
    background: var(--terra-dark) !important;
    color: #fff !important;
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 0;
    background: transparent;
    border: 1px solid var(--line);
    border-radius: 10px;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 3px auto;
    background: var(--ink);
    border-radius: 2px;
}

@media (width <= 860px) {
    .nav-toggle {
        display: inline-block;
    }

    .nav-menu {
        display: none;
        position: absolute;
        left: 0;
        right: 0;
        top: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 2px;
        padding: 12px 20px 18px;
        background: var(--bg);
        border-bottom: 1px solid var(--line);
        box-shadow: var(--shadow);
    }

    .nav-menu.is-open {
        display: flex;
    }

    .nav-menu a {
        padding: 12px;
    }

    .nav-cta {
        text-align: center;
        margin-top: 6px;
    }
}

/* ── Generic page sections ── */
.section {
    max-width: 1080px;
    margin: 0 auto;
    padding: 56px 20px;
}

.section--narrow {
    max-width: 820px;
}

.section--tint {
    background: linear-gradient(180deg, transparent, var(--gold-faint) 50%, transparent);
}

.eyebrow {
    display: inline-block;
    font-family: Nunito, system-ui, sans-serif;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--terra-dark);
    background: var(--terra-faint);
    border-radius: 999px;
    padding: 6px 12px;
    margin-bottom: 14px;
}

.section h2 {
    font-size: clamp(24px, 4vw, 36px);
    margin: 0 0 14px;
    text-align: left;
}

.section .lead {
    color: var(--muted);
    font-size: clamp(16px, 2.4vw, 19px);
    line-height: 1.65;
    max-width: 60ch;
    margin: 0 0 8px;
}

.section--center {
    text-align: center;
}

.section--center h2,
.section--center .lead {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

/* ── Page hero (interior pages) ── */
.page-hero {
    max-width: 1080px;
    margin: 0 auto;
    padding: 48px 20px 8px;
    text-align: center;
}

.page-hero h1 {
    font-size: clamp(32px, 6vw, 56px);
    margin: 10px 0 12px;
}

.page-hero .sub {
    margin: 0 auto 22px;
    max-width: 56ch;
}

.hero-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 6px;
}

.btn-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 14px;
}

/* ── Feature / card grids ── */
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 22px;
    margin-top: 28px;
}

/* Fixed 2-column grid (e.g. the four pillars as a calm 2x2). */
.cards--2col {
    grid-template-columns: repeat(2, 1fr);
    max-width: 880px;
    margin-left: auto;
    margin-right: auto;
}

@media (width <= 640px) {
    .cards--2col {
        grid-template-columns: 1fr;
    }
}

.feature {
    display: flex;
    flex-direction: column;
    text-align: left;
    background: rgb(253 250 246 / 90%);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 26px 24px;
    box-shadow: var(--shadow-sm);
}

/* Push a card's CTA to the bottom so CTAs align across a row */
.feature .btn-row {
    margin-top: auto;
}

/* Icon in a soft tinted chip for hierarchy + polish. */
.feature i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: var(--terra-faint);
    color: var(--terra);
    font-size: 1.25rem;
    margin-bottom: 16px;
}

.feature h3 {
    font-size: 1.2rem;
    margin: 0 0 8px;
}

.feature p {
    color: var(--muted);
    line-height: 1.6;
    margin: 0;
    font-size: .98rem;
}

/* ── Numbered steps ── */
.steps {
    display: grid;
    gap: 18px;
    margin-top: 28px;
    counter-reset: step;
}

.step {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    background: rgb(253 250 246 / 90%);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 22px 24px;
    box-shadow: var(--shadow-sm);
}

.step::before {
    counter-increment: step;
    content: counter(step);
    flex: 0 0 auto;
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--terra) 0%, var(--terra-dark) 100%);
    color: #fff;
    font-family: "DM Serif Display", Georgia, serif;
    font-size: 1.1rem;
}

.step h3 {
    margin: 4px 0 6px;
    font-size: 1.15rem;
}

.step p {
    color: var(--muted);
    line-height: 1.6;
    margin: 0;
}

/* ── Pricing ── */
.price-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 32px;
    align-items: stretch;
}

.price-card {
    display: flex;
    flex-direction: column;
    background: rgb(253 250 246 / 92%);
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 28px 26px;
    box-shadow: var(--shadow-sm);
}

.price-card.featured {
    border-color: var(--gold);
    box-shadow: 0 4px 24px rgb(212 180 131 / 20%), 0 1px 4px rgb(30 20 16 / 8%);
}

.price-card .tier-name {
    margin: 0 0 4px;
}

.price {
    font-family: "DM Serif Display", Georgia, serif;
    font-size: 2.2rem;
    color: var(--ink);
    margin: 8px 0 2px;
}

.price span {
    font-family: Nunito, system-ui, sans-serif;
    font-size: .95rem;
    color: var(--muted-lt);
}

.price-was {
    font-family: Nunito, system-ui, sans-serif;
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--muted-lt);
    text-decoration: line-through;
    margin-right: 6px;
}

.founder-tag {
    margin: 4px 0 0;
}

.founder-banner {
    margin: 24px 0 0;
    padding: 14px 18px;
    background: var(--gold-faint);
    border: 1px solid var(--gold);
    border-radius: 14px;
    font-family: Nunito, system-ui, sans-serif;
    color: var(--muted);
    font-size: 1rem;
}

.price-card ul {
    list-style: none;
    padding: 0;
    margin: 16px 0 22px;
    display: grid;
    gap: 10px;
}

.price-card li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    color: var(--muted);
    line-height: 1.5;
    font-size: .96rem;
}

.price-card li i {
    color: var(--terra);
    margin-top: .2em;
    flex-shrink: 0;
}

.price-card li.locked {
    color: var(--muted-lt);
}

.price-card li.locked i {
    color: var(--muted-lt);
}

.price-card .btn,
.price-card .btn--ghost {
    margin-top: auto;
}

.price-foot {
    text-align: center;
    margin-top: 22px;
}

/* ── FAQ (details/summary) ── */
.faq {
    margin-top: 28px;
    display: grid;
    gap: 12px;
}

.faq details {
    background: rgb(253 250 246 / 90%);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 4px 20px;
    box-shadow: var(--shadow-sm);
}

.faq summary {
    cursor: pointer;
    font-weight: 700;
    padding: 16px 0;
    list-style: none;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: center;
}

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

.faq summary::after {
    content: "+";
    color: var(--terra);
    font-size: 1.4rem;
    line-height: 1;
}

.faq details[open] summary::after {
    content: "\2013";
}

.faq details p {
    color: var(--muted);
    line-height: 1.65;
    margin: 0 0 16px;
}

/* ── CTA band ── */
.cta-band {
    text-align: center;
    background: linear-gradient(160deg, rgb(245 237 219 / 80%) 0%, rgb(245 234 228 / 70%) 100%);
    border: 1px solid var(--gold);
    border-radius: 24px;
    padding: 40px 28px;
    margin: 8px auto 0;
    box-shadow: var(--shadow-sm);
}

.cta-band h2 {
    text-align: center;
    margin: 0 0 10px;
}

.cta-band .lead {
    margin: 0 auto 18px;
}

/* ── Prose (long-form pages) ── */
.prose {
    max-width: 760px;
    margin: 0 auto;
}

.prose p,
.prose li {
    color: var(--muted);
    line-height: 1.7;
}

.prose h2 {
    margin-top: 36px;
    text-align: left;
}

.prose h3 {
    margin-top: 24px;
    font-size: 1.2rem;
}

/* ── Footer nav columns ── */
.foot-nav {
    border-top: 1px solid var(--line);
    margin-top: 40px;
    padding-top: 32px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 24px;
    max-width: 1080px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}

.foot-nav h4 {
    font-family: Nunito, system-ui, sans-serif;
    font-size: 12px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--muted-lt);
    margin: 0 0 12px;
}

.foot-nav a {
    display: block;
    color: var(--muted);
    text-decoration: none;
    padding: 4px 0;
    font-size: .95rem;
}

.foot-nav a:hover,
.foot-nav a:focus-visible {
    color: var(--terra-dark);
}

/* Enlarge footer-link tap targets on mobile so adjacent links don't overlap
   (Lighthouse SEO "tap-targets" runs under mobile emulation; min 48px tall). */
@media (width <= 640px) {
    .foot-nav a {
        min-height: 48px;
        padding: 12px 0;
        display: flex;
        align-items: center;
    }
}

/* ── Product screenshots (#191) ─────────────────────────────────────────────── */
.shots {
    display: grid;
    gap: clamp(1.5rem, 4vw, 3rem);
    margin-top: 2.5rem;
}

@media (width >= 820px) {
    .shots--2col {
        grid-template-columns: 1fr 1fr;
        align-items: start;
    }
}

.shot {
    margin: 0;
}

.shot img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 16px;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
    background: var(--bg2);
}

.shot figcaption {
    margin-top: 0.85rem;
    text-align: center;
    color: var(--muted-lt);
    font-size: 0.95rem;
}
