@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400 800;
    font-display: swap;
    src: url('/assets/fonts/inter-latin.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400 800;
    font-display: swap;
    src: url('/assets/fonts/inter-latin-ext.woff2') format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root {
    --green: #209560;
    --green-dark: #176C46;
    --green-light: #4EB788;
    --olive: #B9D3C3;
    --ink: #111111;
    --ink-soft: #555555;
    --ink-faint: #767676;
    --canvas: #F2F2F2;
    --canvas-warm: #F7F8F6;
    --tint: #EAF3EE;
    --card: #FFFFFF;
    --line: #E4E7E3;
    --error: #D32F2F;
    --card-shadow: 0 1px 2px rgba(17, 17, 17, 0.04), 0 16px 40px -20px rgba(17, 17, 17, 0.18);
    --lift-shadow: 0 2px 4px rgba(17, 17, 17, 0.04), 0 24px 50px -24px rgba(17, 17, 17, 0.22);
    --container: 68rem;
    --nav-h: 4.5rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    height: 100%;
    scroll-behavior: smooth;
    scroll-padding-top: var(--nav-h);
}

body {
    min-height: 100%;
    min-height: 100dvh;
    font-family: 'Inter', -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;
    color: var(--ink);
    background-color: var(--canvas);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2.5rem 1.5rem;
    text-align: center;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

/* ============================================================
   MARKETING SITE LAYOUT  (body.site)
   Utility pages keep the bare centred-card body above.
   ============================================================ */

body.site {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    min-height: 100dvh;
    padding: 0;
    text-align: left;
    background: var(--card);
}

.site main {
    display: block;
    width: 100%;
    max-width: none;
    flex: 1 0 auto;
}

.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ---------- Header / nav ---------- */

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.86);
    backdrop-filter: saturate(1.1) blur(12px);
    -webkit-backdrop-filter: saturate(1.1) blur(12px);
    border-bottom: 1px solid var(--line);
}

.site-nav {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    height: var(--nav-h);
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.site-nav .brand {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}

.site-nav .brand img {
    display: block;
    height: 1.55rem;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    list-style: none;
}

.nav-links a:not(.btn) {
    display: inline-block;
    padding: 0.5rem 0.85rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--ink-soft);
    text-decoration: none;
    border-radius: 8px;
    transition: color 0.18s ease, background 0.18s ease;
}

.nav-links a:not(.btn):hover {
    color: var(--ink);
    background: var(--canvas-warm);
}

.nav-links a.is-current {
    color: var(--green-dark);
}

.nav-links .nav-cta {
    margin-left: 0.4rem;
}

.nav-toggle {
    display: none;
    width: 2.75rem;
    height: 2.75rem;
    margin-right: -0.5rem;
    border: 0;
    background: transparent;
    cursor: pointer;
    color: var(--ink);
    border-radius: 10px;
}

.nav-toggle:hover {
    background: var(--canvas-warm);
}

.nav-toggle svg {
    width: 1.4rem;
    height: 1.4rem;
    display: block;
    margin: 0 auto;
}

/* ---------- Buttons ---------- */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
    border: 1px solid transparent;
    border-radius: 999px;
    padding: 0.85rem 1.6rem;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.btn-primary {
    background: var(--green);
    color: #fff;
}

.btn-primary:hover {
    background: var(--green-dark);
}

.btn-ghost {
    background: transparent;
    color: var(--ink);
    border-color: var(--line);
}

.btn-ghost:hover {
    border-color: var(--green);
    color: var(--green-dark);
}

.btn-sm {
    padding: 0.6rem 1.1rem;
    font-size: 0.92rem;
}

.btn:focus-visible {
    outline: 3px solid var(--green-light);
    outline-offset: 2px;
}

.btn.is-disabled,
.btn[aria-disabled="true"] {
    background: var(--olive);
    color: #fff;
    cursor: not-allowed;
    pointer-events: none;
    box-shadow: none;
}

.btn-ghost.is-disabled,
.btn-ghost[aria-disabled="true"] {
    background: transparent;
    color: var(--ink-faint);
    border-color: var(--line);
}

/* Disabled download control group */
.get {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    align-items: flex-start;
}

.get-note {
    font-size: 0.82rem;
    color: var(--ink-faint);
    letter-spacing: 0.01em;
}

.get-badges {
    display: flex;
    gap: 0.65rem;
    flex-wrap: wrap;
}

.store-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.6rem 1.05rem;
    border-radius: 12px;
    background: var(--ink);
    color: #fff;
    text-decoration: none;
    opacity: 0.32;
    cursor: not-allowed;
    pointer-events: none;
    min-width: 9.5rem;
}

.store-badge--live {
    opacity: 1;
    cursor: pointer;
    pointer-events: auto;
    transition: transform 0.2s ease, background 0.2s ease;
}

.store-badge--live:hover {
    transform: translateY(-2px);
    background: var(--green-dark);
}

.store-badge svg {
    width: 1.5rem;
    height: 1.5rem;
    flex-shrink: 0;
}

.store-badge .sb-small {
    display: block;
    font-size: 0.62rem;
    line-height: 1.1;
    letter-spacing: 0.02em;
    opacity: 0.85;
}

.store-badge .sb-big {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.15;
}

/* ---------- Section rhythm ---------- */

.section {
    padding: 5.5rem 0;
}

.section--tight {
    padding: 4rem 0;
}

.section--warm {
    background: var(--canvas-warm);
}

.section--tint {
    background: var(--tint);
}

.eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--green);
    margin-bottom: 0.75rem;
}

.section h2 {
    font-weight: 700;
    font-size: clamp(1.7rem, 4vw, 2.5rem);
    letter-spacing: -0.025em;
    line-height: 1.12;
    max-width: 20ch;
}

.section > .container > .section-lede,
.section-lede {
    font-size: clamp(1.05rem, 1.6vw, 1.2rem);
    line-height: 1.6;
    color: var(--ink-soft);
    max-width: 46ch;
    margin-top: 1.1rem;
}

.payoff {
    color: var(--green);
    font-weight: 700;
}

/* ---------- Hero ---------- */

.hero {
    position: relative;
    overflow: hidden;
    padding: clamp(3.5rem, 7vw, 6rem) 0 clamp(4rem, 7vw, 6.5rem);
    background:
        radial-gradient(120% 90% at 100% 0%, var(--tint) 0%, rgba(234, 243, 238, 0) 55%),
        var(--card);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--green-dark);
    background: var(--tint);
    border: 1px solid rgba(32, 149, 96, 0.18);
    padding: 0.4rem 0.85rem;
    border-radius: 999px;
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-weight: 800;
    font-size: clamp(2.6rem, 7vw, 4.35rem);
    letter-spacing: -0.035em;
    line-height: 1.02;
    margin-bottom: 1.25rem;
}

.hero h1 .payoff {
    display: block;
}

.hero-lede {
    font-size: clamp(1.08rem, 1.6vw, 1.28rem);
    line-height: 1.6;
    color: var(--ink-soft);
    max-width: 40ch;
    margin-bottom: 2rem;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-weight: 600;
    color: var(--green-dark);
    text-decoration: none;
    padding: 0.4rem 0;
    border-bottom: 2px solid transparent;
    transition: border-color 0.18s ease;
}

.text-link:hover {
    border-color: var(--green);
}

.text-link svg {
    width: 1rem;
    height: 1rem;
    transition: transform 0.18s ease;
}

.text-link:hover svg {
    transform: translateX(3px);
}

/* Hero visual: brand panel now, screenshot slot later */
.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-panel {
    position: relative;
    width: 100%;
    max-width: 25rem;
    aspect-ratio: 4 / 5;
    border-radius: 28px;
    background: linear-gradient(158deg, var(--green-light) 0%, var(--green) 52%, var(--green-dark) 100%);
    box-shadow: var(--lift-shadow);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding: 2.5rem;
    overflow: hidden;
}

.brand-panel::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(80% 55% at 50% 12%, rgba(255, 255, 255, 0.18), transparent 70%);
    pointer-events: none;
}

.brand-panel img {
    width: 42%;
    max-width: 8.5rem;
    height: auto;
    position: relative;
    z-index: 1;
}

.brand-panel p {
    position: relative;
    z-index: 1;
    color: #fff;
    text-align: center;
    font-size: 1.35rem;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -0.01em;
    max-width: 15ch;
}

/* ---------- Device mockup (app screenshots) ---------- */

.device {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 15.5rem;
    margin: 0 auto;
    background: #0f0f0f;
    border-radius: 2.4rem;
    padding: 0.4rem;
    box-shadow: 0 2px 4px rgba(17, 17, 17, 0.06), 0 30px 60px -26px rgba(17, 17, 17, 0.42);
}

.device::after {
    content: "";
    position: absolute;
    inset: 0.4rem;
    border-radius: 2.05rem;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.07);
    pointer-events: none;
}

.device img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 2.05rem;
}

.device--hero {
    max-width: 16.5rem;
}

.device-pair {
    display: flex;
    gap: clamp(0.9rem, 2vw, 1.5rem);
    justify-content: center;
    align-items: flex-start;
}

.device-pair .device {
    flex: 1 1 0;
    min-width: 0;
    max-width: 13rem;
    margin: 0;
}

.device-pair .device:nth-child(2) {
    margin-top: 2.25rem;
}

.hero-visual::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 26rem;
    height: 26rem;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(78, 183, 136, 0.3), rgba(78, 183, 136, 0) 66%);
    z-index: 0;
    pointer-events: none;
}

/* ---------- The moment (feature callout) ---------- */

.split {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: start;
}

.split .body-copy {
    font-size: clamp(1.05rem, 1.5vw, 1.18rem);
    line-height: 1.7;
    color: var(--ink-soft);
    max-width: 52ch;
}

.split .body-copy strong {
    color: var(--ink);
    font-weight: 600;
}

.split .body-copy + .body-copy {
    margin-top: 1.1rem;
}

.stat-row {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
    margin-top: 2.5rem;
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.stat .n {
    font-size: 1.9rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--green);
}

.stat .l {
    font-size: 0.9rem;
    color: var(--ink-faint);
    line-height: 1.4;
    max-width: 18ch;
}

/* ---------- Steps ---------- */

.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.step {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 1.75rem 1.5rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.step:hover {
    transform: translateY(-4px);
    box-shadow: var(--lift-shadow);
    border-color: transparent;
}

.step .num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 12px;
    background: var(--tint);
    color: var(--green-dark);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 1.1rem;
}

.step h3 {
    font-size: 1.15rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    margin-bottom: 0.5rem;
}

.step p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--ink-soft);
}

/* ---------- PA capability list ---------- */

.pa-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.85rem 2rem;
    margin-top: 2.5rem;
}

.pa-item {
    display: flex;
    gap: 0.85rem;
    align-items: flex-start;
    padding: 0.35rem 0;
}

.pa-item .tick {
    flex-shrink: 0;
    width: 1.4rem;
    height: 1.4rem;
    margin-top: 0.1rem;
    color: var(--green);
}

.pa-item span {
    font-size: 1rem;
    line-height: 1.5;
    color: var(--ink-soft);
}

.pa-item span b {
    color: var(--ink);
    font-weight: 600;
}

.pa-layout {
    display: grid;
    grid-template-columns: 0.82fr 1.18fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
}

.pa-visual {
    order: -1;
}

.pa-content .pa-grid {
    grid-template-columns: 1fr;
    margin-top: 2rem;
}

/* ---------- Green payoff band ---------- */

.band {
    position: relative;
    overflow: hidden;
    background: linear-gradient(155deg, var(--green) 0%, var(--green-dark) 100%);
    color: #fff;
    padding: clamp(3.5rem, 6vw, 5.5rem) 0;
    text-align: center;
}

.band::before {
    content: "";
    position: absolute;
    right: -3rem;
    top: 50%;
    transform: translateY(-50%);
    width: 22rem;
    height: 22rem;
    background: url('/assets/pantry-icon-white.svg') no-repeat center / contain;
    opacity: 0.06;
    pointer-events: none;
}

.band .eyebrow {
    color: rgba(255, 255, 255, 0.72);
}

.band h2 {
    color: #fff;
    max-width: 22ch;
    margin: 0 auto;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    letter-spacing: -0.025em;
    line-height: 1.12;
}

.band p {
    color: rgba(255, 255, 255, 0.88);
    font-size: clamp(1.05rem, 1.6vw, 1.2rem);
    line-height: 1.6;
    max-width: 44ch;
    margin: 1.1rem auto 0;
}

.band .btn-primary {
    background: #fff;
    color: var(--green-dark);
    margin-top: 2rem;
}

.band .btn-primary:hover {
    background: var(--canvas-warm);
}

/* ---------- Pricing ---------- */

.price-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
    align-items: stretch;
}

.plan {
    position: relative;
    display: flex;
    flex-direction: column;
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 2rem 1.75rem;
}

.plan.is-featured {
    border-color: var(--green);
    box-shadow: 0 0 0 1px var(--green), var(--lift-shadow);
}

.plan .tag {
    position: absolute;
    top: -0.8rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--green);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.32rem 0.85rem;
    border-radius: 999px;
    white-space: nowrap;
}

.plan .plan-name {
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.plan .plan-price {
    display: flex;
    align-items: baseline;
    gap: 0.3rem;
    margin: 0.9rem 0 0.4rem;
}

.plan .plan-price .amount {
    font-size: 2.6rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1;
}

.plan .plan-price .per {
    font-size: 0.95rem;
    color: var(--ink-faint);
}

.plan .plan-price .soon {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--green);
    letter-spacing: -0.01em;
}

.plan .plan-line {
    font-size: 0.95rem;
    color: var(--ink-soft);
    line-height: 1.5;
    min-height: 2.6rem;
    margin-bottom: 1.4rem;
    padding-bottom: 1.4rem;
    border-bottom: 1px solid var(--line);
}

.plan ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.75rem;
    flex: 1;
}

.plan ul li {
    display: flex;
    gap: 0.7rem;
    align-items: flex-start;
    font-size: 0.95rem;
    line-height: 1.45;
    color: var(--ink-soft);
}

.plan ul li b {
    color: var(--ink);
    font-weight: 600;
}

.plan ul .tick {
    flex-shrink: 0;
    width: 1.2rem;
    height: 1.2rem;
    margin-top: 0.12rem;
    color: var(--green);
}

.plan .btn {
    width: 100%;
}

.price-note {
    max-width: 46ch;
    margin: 2.5rem auto 0;
    text-align: center;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--ink-soft);
}

.price-smallprint {
    max-width: 50ch;
    margin: 0.75rem auto 0;
    text-align: center;
    font-size: 0.82rem;
    line-height: 1.55;
    color: var(--ink-faint);
}

/* ---------- FAQ ---------- */

.faq {
    max-width: 46rem;
    margin: 3rem auto 0;
    border-top: 1px solid var(--line);
}

.faq details {
    border-bottom: 1px solid var(--line);
}

.faq summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    list-style: none;
    padding: 1.4rem 0.25rem;
    font-size: 1.08rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: var(--ink);
}

.faq summary::-webkit-details-marker {
    display: none;
}

.faq summary .chev {
    flex-shrink: 0;
    width: 1.25rem;
    height: 1.25rem;
    color: var(--green);
    transition: transform 0.22s ease;
}

.faq details[open] summary .chev {
    transform: rotate(180deg);
}

.faq .answer {
    padding: 0 0.25rem 1.5rem;
    font-size: 1rem;
    line-height: 1.65;
    color: var(--ink-soft);
    max-width: 60ch;
}

.faq .answer a {
    color: var(--green-dark);
}

/* ---------- About / founders ---------- */

.prose {
    max-width: 42rem;
    margin: 0 auto;
}

.prose p {
    font-size: clamp(1.05rem, 1.5vw, 1.18rem);
    line-height: 1.75;
    color: var(--ink-soft);
}

.prose p + p {
    margin-top: 1.4rem;
}

.prose p strong {
    color: var(--ink);
    font-weight: 600;
}

.founder-card {
    display: flex;
    gap: 1.25rem;
    align-items: center;
    background: var(--canvas-warm);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 1.5rem;
    max-width: 30rem;
    margin: 2.5rem auto 0;
}

.founder-card img {
    width: 4.5rem;
    height: 4.5rem;
    border-radius: 14px;
    flex-shrink: 0;
}

.founder-card .who {
    font-weight: 700;
    letter-spacing: -0.01em;
}

.founder-card .role {
    font-size: 0.92rem;
    color: var(--ink-faint);
    line-height: 1.45;
    margin-top: 0.2rem;
}

/* Media placeholder (screenshot slots) */
.shot {
    position: relative;
    border-radius: 20px;
    background: var(--canvas-warm);
    border: 1px solid var(--line);
    aspect-ratio: 4 / 3;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.shot::before {
    content: "";
    width: 30%;
    max-width: 5rem;
    aspect-ratio: 280 / 421;
    background: url('/assets/pantry-icon-green.svg') no-repeat center / contain;
    opacity: 0.22;
}

.shot--tall {
    aspect-ratio: 3 / 4;
}

/* ---------- Footer ---------- */

.site-footer {
    background: var(--ink);
    color: rgba(255, 255, 255, 0.7);
    padding: 4rem 0 2.5rem;
}

.site-footer .footer-top {
    display: flex;
    justify-content: space-between;
    gap: 2.5rem;
    flex-wrap: wrap;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.site-footer .brand img {
    height: 3.5rem;
    width: auto;
}

.site-footer .footer-strap {
    margin-top: 1.1rem;
    max-width: 26ch;
    font-size: 0.95rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.62);
}

.footer-cols {
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
}

.footer-col h4 {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.78);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.18s ease;
}

.footer-col a:hover {
    color: #fff;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    padding-top: 2rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.8);
    transition: background 0.18s ease, color 0.18s ease;
}

.footer-social a:hover {
    background: var(--green);
    color: #fff;
}

.footer-social svg {
    width: 1.15rem;
    height: 1.15rem;
}

/* ---------- Page hero (interior pages) ---------- */

.page-hero {
    padding: clamp(3rem, 6vw, 4.5rem) 0 clamp(2rem, 4vw, 3rem);
    background:
        radial-gradient(110% 80% at 100% 0%, var(--tint) 0%, rgba(234, 243, 238, 0) 60%),
        var(--card);
    text-align: center;
}

.page-hero h1 {
    font-weight: 800;
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    letter-spacing: -0.03em;
    line-height: 1.05;
    max-width: 18ch;
    margin: 0.5rem auto 0;
}

.page-hero .page-lede {
    font-size: clamp(1.08rem, 1.6vw, 1.25rem);
    line-height: 1.6;
    color: var(--ink-soft);
    max-width: 44ch;
    margin: 1.1rem auto 0;
}

/* ---------- Interior step blocks (How it works) ---------- */

.walk {
    display: flex;
    flex-direction: column;
    gap: 4.5rem;
    margin-top: 1rem;
}

.walk-step {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
}

.walk-step:nth-child(even) .walk-media {
    order: -1;
}

.walk-step .num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.6rem;
    height: 2.6rem;
    border-radius: 12px;
    background: var(--tint);
    color: var(--green-dark);
    font-weight: 700;
    font-size: 1.15rem;
    margin-bottom: 1.25rem;
}

.walk-step h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin-bottom: 0.9rem;
}

.walk-step p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--ink-soft);
    max-width: 44ch;
}

/* ============================================================
   ORIGINAL UTILITY-PAGE STYLES (card / legal / form)
   Preserved verbatim for contact, privacy, delete-account, auth.
   ============================================================ */

.wordmark {
    display: inline-block;
    margin-bottom: 2.25rem;
    animation: rise 0.6s ease-out both;
}

.wordmark img {
    display: block;
    height: 2rem;
    width: auto;
}

.site main.centered {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 3rem 1.5rem;
}

main {
    width: 100%;
    max-width: 26.5rem;
}

.site main.centered,
.site main.legal {
    max-width: none;
    width: 100%;
}

.centered .card,
.legal .card {
    width: 100%;
    max-width: 26.5rem;
    margin: 0 auto;
}

.legal .card {
    max-width: 42rem;
}

.card {
    background: var(--card);
    border-radius: 20px;
    padding: 3rem 2.25rem 2.75rem;
    box-shadow: var(--card-shadow);
    animation: rise 0.6s ease-out 0.1s both;
}

.badge {
    width: 5.5rem;
    height: 5.5rem;
    margin: 0 auto 1.75rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--green);
    animation: pop 0.55s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s both;
}

.badge.is-error {
    background: var(--card);
    border: 2px solid var(--error);
}

.badge svg {
    width: 2.6rem;
    height: 2.6rem;
}

.badge .tick {
    stroke: #fff;
    stroke-width: 7;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
    stroke-dasharray: 60;
    stroke-dashoffset: 60;
    animation: draw 0.5s ease-out 0.6s forwards;
}

.badge .hourglass {
    stroke: var(--error);
    stroke-width: 5;
    stroke-linecap: round;
    fill: none;
}

.card .eyebrow {
    margin-bottom: 0.75rem;
    animation: rise 0.6s ease-out 0.3s both;
}

.card h1,
.card .card-title {
    font-weight: 700;
    font-size: clamp(1.7rem, 6.5vw, 2.1rem);
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin-bottom: 0.9rem;
    animation: rise 0.6s ease-out 0.4s both;
}

.lede {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--ink-soft);
    margin-bottom: 2rem;
    animation: rise 0.6s ease-out 0.5s both;
}

.lede:last-child {
    margin-bottom: 0;
}

.cta {
    display: inline-block;
    background: var(--green);
    color: #fff;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border: 0;
    cursor: pointer;
    padding: 0.95rem 2.5rem;
    border-radius: 999px;
    transition: background 0.2s ease;
    animation: rise 0.6s ease-out 0.6s both;
}

.cta:hover {
    background: var(--green-dark);
}

.cta:focus-visible {
    outline: 3px solid var(--green-light);
    outline-offset: 2px;
}

.aside {
    font-size: 0.85rem;
    line-height: 1.55;
    color: var(--ink-faint);
    margin-top: 1.5rem;
    animation: rise 0.6s ease-out 0.7s both;
}

.divider {
    border: 0;
    border-top: 1px solid var(--olive);
    margin: 1.75rem auto;
    width: 3.5rem;
}

form {
    text-align: left;
    animation: rise 0.6s ease-out 0.55s both;
}

.field {
    margin-bottom: 1.1rem;
}

.field label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.35rem;
}

.field .optional {
    font-weight: 400;
    color: var(--ink-faint);
}

.field input,
.field textarea {
    width: 100%;
    font-family: inherit;
    font-size: 1rem;
    color: var(--ink);
    background: var(--card);
    border: 1px solid #D9D9D9;
    border-radius: 10px;
    padding: 0.7rem 0.85rem;
    resize: vertical;
}

.field input:focus-visible,
.field textarea:focus-visible {
    outline: 2px solid var(--green);
    outline-offset: 0;
    border-color: var(--green);
}

form .cta {
    display: block;
    width: 100%;
    margin-top: 0.35rem;
}

.form-error {
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--error);
    margin: 0 0 1rem;
}

.form-error a,
.aside a {
    color: inherit;
}

main.legal {
    max-width: 42rem;
}

.legal .card {
    text-align: left;
}

.legal .card > .eyebrow,
.legal .card > h1,
.legal .card > .updated {
    text-align: center;
}

.legal .updated {
    font-size: 0.85rem;
    color: var(--ink-faint);
    margin-bottom: 2rem;
}

.legal h2 {
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    margin: 1.9rem 0 0.6rem;
}

.legal p,
.legal li {
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--ink-soft);
}

.legal p + p {
    margin-top: 0.6rem;
}

.legal ul {
    padding-left: 1.25rem;
    margin: 0.5rem 0;
}

.legal li {
    margin-bottom: 0.35rem;
}

.legal a {
    color: var(--green-dark);
}

.legal .footnote {
    margin-top: 2.25rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--olive);
    font-size: 0.85rem;
    color: var(--ink-faint);
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
}

[hidden] {
    display: none !important;
}

/* ---------- Animations ---------- */

@keyframes rise {
    from {
        opacity: 0;
        transform: translateY(0.75rem);
    }
    to {
        opacity: 1;
        transform: none;
    }
}

@keyframes pop {
    from {
        opacity: 0;
        transform: scale(0.6);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes draw {
    to {
        stroke-dashoffset: 0;
    }
}

/* Staggered load reveal for hero content */
.reveal > * {
    animation: rise 0.6s ease-out both;
}

.reveal > *:nth-child(1) { animation-delay: 0.05s; }
.reveal > *:nth-child(2) { animation-delay: 0.13s; }
.reveal > *:nth-child(3) { animation-delay: 0.21s; }
.reveal > *:nth-child(4) { animation-delay: 0.29s; }
.reveal > *:nth-child(5) { animation-delay: 0.37s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 860px) {
    :root {
        --nav-h: 4rem;
    }

    .nav-toggle {
        display: block;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0.15rem;
        padding: 0.6rem 1.5rem 1rem;
        background: var(--card);
        border-bottom: 1px solid var(--line);
        box-shadow: var(--card-shadow);
    }

    .site-nav[data-open="true"] .nav-links {
        display: flex;
    }

    .nav-links a:not(.btn) {
        padding: 0.75rem 0.5rem;
        font-size: 1rem;
    }

    .nav-links .nav-cta {
        margin: 0.4rem 0 0;
        text-align: center;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .hero-visual {
        order: -1;
    }

    .brand-panel {
        max-width: 20rem;
        aspect-ratio: 5 / 4;
    }

    .device {
        max-width: 13.5rem;
    }

    .device--hero {
        max-width: 14.5rem;
    }

    .hero-visual::before {
        width: 18rem;
        height: 18rem;
    }

    .split {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .pa-grid {
        grid-template-columns: 1fr;
    }

    .pa-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .pa-visual {
        order: 0;
    }

    .price-grid {
        grid-template-columns: 1fr;
        max-width: 26rem;
        margin-left: auto;
        margin-right: auto;
    }

    .plan.is-featured {
        order: -1;
    }

    .walk-step {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .walk-step:nth-child(even) .walk-media {
        order: 0;
    }

    .footer-top {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-cols {
        gap: 2.5rem;
    }
}

@media (max-width: 480px) {
    .section {
        padding: 4rem 0;
    }

    .steps {
        grid-template-columns: 1fr;
    }

    .stat-row {
        gap: 1.75rem;
    }

    .footer-cols {
        gap: 2rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    * {
        animation-duration: 0.01ms !important;
        animation-delay: 0s !important;
    }
    .badge .tick {
        stroke-dashoffset: 0;
    }
}
