:root {
    --bg: #0f1411;
    --bg-2: #161d18;
    --fg: #eef1ea;
    --accent: #4fc99f;
    --accent-2: #66d4af;
    --on-accent: #0f1411;
    --muted: #899389;
    --fg-2: #ccd3c9;
    --card: #1f2822;
    --border: #283029;
    --maxw: 1060px;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display",
                 "Segoe UI", "Helvetica Neue", sans-serif;
    background: var(--bg);
    color: var(--fg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
[hidden] { display: none !important; }

.skip-link {
    position: absolute;
    left: -9999px;
    top: 8px;
    padding: 10px 16px;
    background: var(--accent);
    color: var(--on-accent);
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    z-index: 10;
}
.skip-link:focus { left: 16px; }

/* The page had no brand and no persistent way into the app: the only entries
   were two buttons that scrolled away. */
.topbar {
    border-bottom: 1px solid var(--border);
    background: var(--bg);
}
.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 16px 24px;
}
.wordmark {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-family: "Fraunces", "Iowan Old Style", Charter, Georgia, serif;
    font-size: 21px;
    font-weight: 600;
    letter-spacing: -0.01em;
    /* Explicit, because this is a <span> on the home page and an <a> on the
       content pages. Without it the anchor form fell through to the UA default
       link blue — #0000ee on this background is 1.98:1, a WCAG AA failure and
       genuinely hard to read. */
    color: var(--fg);
}
.brand-mark {
    display: block;
    width: 32px;
    height: 32px;
    flex: 0 0 32px;
    border-radius: 8px;
}

/* Baseline colour for any link in running copy.
 *
 * Every link on the original single-page site was a button, a nav item or a
 * footer link, each carrying its own colour — so the stylesheet never needed a
 * rule for a plain <a> in a paragraph. The content pages are mostly prose, and
 * their inline links fell straight through to the UA default (#0000ee: 1.98:1
 * against this background — a WCAG 2.1 AA failure, confirmed with axe-core).
 *
 * Scoped to `main` and kept at element specificity (0,0,2) on purpose: every
 * component selector below is a class and outranks it, and `footer a` matches
 * this specificity but is declared later, so it still wins. The point is that
 * an unstyled anchor is no longer a possible state rather than a bug someone
 * has to remember not to reintroduce.
 */
main a {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 2px;
}
main a:hover { color: var(--accent-2); }

.container {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 24px 64px;
}

h1 {
    font-family: "Fraunces", "Iowan Old Style", Charter, Georgia, serif;
    font-size: clamp(36px, 6vw, 60px);
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
    line-height: 1.1;
    max-width: 20ch;
}
h1 span { color: var(--accent); font-style: italic; font-weight: 500; }
h2 {
    font-family: "Fraunces", "Iowan Old Style", Charter, Georgia, serif;
    font-size: clamp(26px, 3.4vw, 36px);
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin-bottom: 12px;
    max-width: 24ch;
}
.eyebrow {
    display: inline-block;
    margin-bottom: 20px;
    padding: 6px 13px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: var(--bg-2);
    color: var(--accent-2);
    font-size: 13px;
    font-weight: 600;
}
.hero { padding: clamp(48px, 8vw, 88px) 0 clamp(32px, 5vw, 56px); }
.lede {
    font-size: clamp(18px, 2.2vw, 21px);
    color: var(--fg-2);
    margin-bottom: 28px;
    max-width: 58ch;
}
.section-lede {
    color: var(--muted);
    margin-bottom: 28px;
    max-width: 58ch;
}
.hero-cta { margin-bottom: 12px; }
.reassurance {
    color: var(--muted);
    font-size: 14px;
    letter-spacing: 0.02em;
}

.app-ctas {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}
.app-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 20px;
    border: 1px solid var(--accent);
    border-radius: 10px;
    color: var(--accent);
    font-weight: 600;
    text-decoration: none;
}
.app-cta-primary {
    background: var(--accent);
    color: var(--on-accent);
}
.app-cta-lg {
    min-height: 56px;
    padding: 16px 30px;
    font-size: 17px;
}
.app-cta:hover { background: var(--card); }
.app-cta-primary:hover { background: var(--accent-2); }
.app-cta:focus-visible {
    outline: 3px solid var(--accent);
    outline-offset: 3px;
}

.section { padding: clamp(36px, 5vw, 64px) 0; border-top: 1px solid var(--border); }

.preview {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 20px;
}
.preview-text { flex-grow: 1; }
.preview-text strong { display: block; margin-bottom: 4px; }
.preview-text small { color: var(--muted); font-size: 14px; }

/* Two-column value contrast — the "what you're choosing between" argument the
   page previously never made. */
.compare {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
}
.compare-col {
    padding: 22px 24px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: var(--bg-2);
}
.compare-with {
    background: rgba(79, 201, 159, 0.08);
    border-color: rgba(79, 201, 159, 0.32);
}
.compare-label {
    margin-bottom: 14px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.compare-with .compare-label { color: var(--accent-2); }
.compare-col ul { list-style: none; display: grid; gap: 12px; }
.compare-col li {
    position: relative;
    padding-left: 22px;
    color: var(--fg-2);
    line-height: 1.5;
}
.compare-col li::before {
    position: absolute;
    left: 0;
    color: var(--muted);
    content: "—";
}
.compare-with li::before { color: var(--accent); content: "✓"; }

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    list-style: none;
}
.steps li {
    padding: 22px 24px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: var(--bg-2);
}
.step-n {
    display: block;
    margin-bottom: 10px;
    font-family: "Fraunces", "Iowan Old Style", Charter, Georgia, serif;
    font-size: 26px;
    font-style: italic;
    color: var(--accent);
}
.steps strong { display: block; margin-bottom: 6px; font-size: 17px; }
.steps small { color: var(--muted); font-size: 14px; line-height: 1.55; }

.trust {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    list-style: none;
}
.trust li {
    padding: 22px 24px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: var(--bg-2);
}
.trust strong { display: block; margin-bottom: 6px; font-size: 17px; }
.trust small { color: var(--muted); font-size: 14px; line-height: 1.55; }

/* FAQ. Plain <dl>, always expanded — no accordion. The answers are the page's
   densest block of indexable text and the part an answer engine is most likely
   to quote, so nothing here is hidden behind a click or a script. */
/* Section nav in the topbar. Collapses out of the bar on narrow screens rather
   than wrapping into the CTAs — the footer carries the same links, so nothing
   becomes unreachable. */
.site-nav { display: none; gap: 22px; margin-right: auto; margin-left: 28px; }
.site-nav a {
    color: var(--muted);
    text-decoration: none;
    font-size: 14px;
    padding: 4px 0;
    border-bottom: 1px solid transparent;
}
.site-nav a:hover { color: var(--fg); border-bottom-color: var(--accent); }
.site-nav a:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
@media (min-width: 760px) { .site-nav { display: flex; } }

a.wordmark { text-decoration: none; }

/* Source list on /sources/. Multi-column so 16 feeds read as a scannable
   register rather than a long scroll. */
.feed-group {
    font-size: 15px;
    font-weight: 600;
    color: var(--accent);
    margin: 28px 0 12px;
}
.feeds {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
    gap: 10px 24px;
    list-style: none;
}
.feeds li {
    padding-left: 16px;
    position: relative;
    font-size: 15px;
    color: var(--fg-2);
}
.feeds li::before { content: "·"; position: absolute; left: 0; color: var(--accent); }
.feeds a { color: var(--fg-2); text-decoration: none; border-bottom: 1px solid var(--border); }
.feeds a:hover { color: var(--fg); border-bottom-color: var(--accent); }

.faq { display: grid; gap: 24px; max-width: 68ch; }
.faq dt {
    font-size: 17px;
    font-weight: 600;
    color: var(--fg);
    margin-bottom: 6px;
}
.faq dd {
    margin: 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.6;
}
.faq dd a { color: var(--accent); }

form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 480px;
}
label { font-size: 14px; color: var(--muted); }
input[type="email"], input[type="text"], select, textarea {
    background: var(--card);
    border: 1px solid var(--border);
    color: var(--fg);
    padding: 14px 16px;
    border-radius: 10px;
    font-size: 16px;
    font-family: inherit;
    width: 100%;
}
input[type="email"]:focus, input[type="text"]:focus, select:focus, textarea:focus {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}
button {
    background: var(--accent);
    color: var(--on-accent);
    border: none;
    padding: 16px 24px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
}
button:hover { background: var(--accent-2); }
button:disabled { opacity: 0.5; cursor: not-allowed; }

.ai-disclosure {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 16px;
    font-size: 14px;
    color: var(--muted);
    margin-bottom: 24px;
}
.ai-disclosure strong { color: var(--fg); }

.pricing {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: clamp(24px, 4vw, 36px);
    margin-bottom: 24px;
}
.pricing-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 8px;
}
.pricing strong { font-size: 18px; color: var(--fg); }
.pricing-price { font-size: 24px; font-weight: 700; color: var(--accent); }
.pricing p { font-size: 14px; color: var(--muted); line-height: 1.6; }
.pricing-benefits {
    display: grid;
    gap: 11px;
    margin: 22px 0;
    list-style: none;
}
.pricing-benefits li {
    position: relative;
    padding-left: 24px;
    color: var(--fg-2);
    line-height: 1.5;
}
.pricing-benefits li::before {
    position: absolute;
    left: 0;
    color: var(--accent);
    content: "✓";
}
.pricing-cta { margin-top: 4px; }

.waitlist { padding: clamp(36px, 5vw, 64px) 0 0; border-top: 1px solid var(--border); }

.ok-message {
    background: rgba(92, 201, 160, 0.12);
    border: 1px solid rgba(92, 201, 160, 0.32);
    color: #5cc9a0;
    padding: 16px;
    border-radius: 10px;
    margin-top: 16px;
}
.err-message {
    background: rgba(240, 128, 120, 0.12);
    border: 1px solid rgba(240, 128, 120, 0.32);
    color: #f08078;
    padding: 16px;
    border-radius: 10px;
    margin-top: 16px;
}
footer {
    font-size: 13px;
    color: var(--muted);
    border-top: 1px solid var(--border);
    padding-top: 32px;
    margin-top: 64px;
}
/* inline-block + vertical padding lifts each link's hit area past the WCAG
   2.5.8 24px minimum. The home footer's single row happened to pass on
   spacing alone; the content pages' longer footers wrap into rows that sit
   too close, which is exactly the case Lighthouse's target-size audit
   flagged (95 → 100 with this rule). */
footer a {
    color: var(--muted);
    display: inline-block;
    padding: 8px 0;
    margin-right: 16px;
}
footer a:hover { color: var(--fg); }
@media (prefers-reduced-motion: reduce) {
    * { animation: none !important; transition: none !important; }
}

/* Visible breadcrumb on the content pages. It exists because the pages carry
   BreadcrumbList markup, and structured data is supposed to describe what is
   actually on the page — markup with no visible counterpart is the kind of
   thing Google treats as a mismatch. It also gives a visitor who landed from
   search one obvious way up, which is most of them. */
.breadcrumb {
    display: flex;
    gap: 8px;
    align-items: center;
    padding-top: 28px;
    font-size: 13px;
    color: var(--muted);
}
.breadcrumb a {
    color: var(--muted);
    text-decoration: none;
    /* Same WCAG 2.5.8 hit-area rule as the footer links. */
    display: inline-block;
    padding: 6px 0;
}
.breadcrumb a:hover { color: var(--accent); }

/* Motion-rich public homepage. The document remains plain semantic HTML for
   crawlers and no-script visitors; these layers only enhance its presentation. */
html[data-theme="light"] {
    --bg: #f5f2e9;
    --bg-2: #ebe8dd;
    --fg: #172019;
    --accent: #168662;
    --accent-2: #0f7655;
    --on-accent: #f8fff9;
    --muted: #657067;
    --fg-2: #3d493f;
    --card: rgba(255, 255, 252, 0.78);
    --border: rgba(23, 32, 25, 0.12);
}
html { scroll-behavior: smooth; }
body {
    min-height: 100vh;
    background:
        radial-gradient(circle at 12% 8%, rgba(79, 201, 159, 0.08), transparent 34rem),
        radial-gradient(circle at 88% 18%, rgba(103, 121, 226, 0.06), transparent 32rem),
        var(--bg);
    transition: background-color 300ms ease, color 300ms ease;
}
.landing-home { overflow-x: hidden; }
.landing-home .container,
.landing-home footer,
.topbar { position: relative; z-index: 2; }
.scroll-progress {
    position: fixed;
    inset: 0 auto auto 0;
    z-index: 20;
    width: var(--scroll-progress, 0%);
    height: 2px;
    background: linear-gradient(90deg, var(--accent), #8de7c7);
    box-shadow: 0 0 14px rgba(79, 201, 159, 0.45);
    pointer-events: none;
}
.ambient {
    position: fixed;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}
.orb {
    position: absolute;
    display: block;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.12;
    will-change: transform;
}
.orb-a {
    width: min(52vw, 720px);
    aspect-ratio: 1;
    top: -18%;
    left: -14%;
    background: var(--accent);
    transform: translate3d(calc(var(--pointer-x, 0) * 22px), calc(var(--pointer-y, 0) * 18px), 0);
    animation: orb-drift-a 20s ease-in-out infinite alternate;
}
.orb-b {
    width: min(45vw, 640px);
    aspect-ratio: 1;
    top: 20%;
    right: -16%;
    background: #6679e2;
    transform: translate3d(calc(var(--pointer-x, 0) * -28px), calc(var(--pointer-y, 0) * -22px), 0);
    animation: orb-drift-b 26s ease-in-out infinite alternate;
}
.orb-c {
    width: min(38vw, 520px);
    aspect-ratio: 1;
    left: 34%;
    bottom: -22%;
    background: #d8a958;
    opacity: 0.07;
    animation: orb-drift-c 23s ease-in-out infinite alternate;
}
.topbar {
    position: sticky;
    top: 0;
    z-index: 15;
    background: color-mix(in srgb, var(--bg) 78%, transparent);
    -webkit-backdrop-filter: blur(18px) saturate(135%);
    backdrop-filter: blur(18px) saturate(135%);
}
.wordmark,
.site-nav a,
.app-cta,
.theme-toggle { transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease; }
.wordmark:hover { transform: translateY(-1px); }
.brand-mark { box-shadow: 0 8px 24px rgba(79, 201, 159, 0.2); }
.theme-toggle {
    display: inline-grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border: 1px solid var(--border);
    border-radius: 50%;
    background: color-mix(in srgb, var(--card) 78%, transparent);
    color: var(--fg);
    padding: 0;
    font-size: 18px;
    line-height: 1;
}
.theme-toggle:hover { background: var(--card); transform: rotate(10deg); }
.landing-home .container {
    max-width: 1160px;
    padding-inline: 28px;
}
.landing-home .hero {
    max-width: 980px;
    margin-inline: auto;
    padding: clamp(72px, 10vw, 132px) 0 48px;
    text-align: center;
}
.landing-home h1 {
    max-width: 14ch;
    margin-inline: auto;
    margin-bottom: 26px;
    font-size: clamp(48px, 7.6vw, 82px);
    line-height: 0.99;
    letter-spacing: -0.045em;
    font-variation-settings: "wght" var(--headline-weight, 600);
    text-wrap: balance;
    transition: font-weight 260ms ease;
}
.landing-home .eyebrow {
    position: relative;
    overflow: hidden;
    padding: 7px 14px;
    background: color-mix(in srgb, var(--bg-2) 74%, transparent);
    box-shadow: inset 0 1px rgba(255, 255, 255, 0.04);
    animation: hero-enter 700ms 80ms both;
}
.landing-home .eyebrow::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, transparent 25%, rgba(255,255,255,.12) 48%, transparent 72%);
    content: "";
    transform: translateX(-120%);
    animation: sheen 4.8s 1.4s ease-in-out infinite;
}
.landing-home .hero h1 { animation: hero-enter 760ms 150ms both; }
.landing-home .lede {
    max-width: 64ch;
    margin-inline: auto;
    font-size: clamp(18px, 2vw, 21px);
    text-wrap: balance;
    animation: hero-enter 760ms 230ms both;
}
.hero-cta {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 14px;
    animation: hero-enter 760ms 310ms both;
}
.landing-home .reassurance { animation: hero-enter 760ms 380ms both; }
.app-cta:hover { transform: translateY(-2px); }
.app-cta-primary {
    border-color: var(--accent);
    box-shadow: 0 10px 30px rgba(79, 201, 159, 0.16);
}
.app-cta-primary:hover { box-shadow: 0 14px 36px rgba(79, 201, 159, 0.24); }
.app-cta-secondary {
    border-color: var(--border);
    color: var(--fg);
    background: color-mix(in srgb, var(--card) 55%, transparent);
}
.hero-stage {
    position: relative;
    z-index: 2;
    max-width: 650px;
    margin: 0 auto clamp(64px, 9vw, 110px);
    perspective: 1000px;
    animation: hero-enter 900ms 430ms both;
}
.landing-home .preview {
    position: relative;
    display: block;
    overflow: hidden;
    padding: clamp(26px, 4vw, 38px);
    border-color: color-mix(in srgb, var(--accent) 25%, var(--border));
    border-radius: 24px;
    text-align: left;
    background:
        linear-gradient(145deg, color-mix(in srgb, var(--card) 94%, transparent), color-mix(in srgb, var(--bg-2) 86%, transparent));
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.26), inset 0 1px rgba(255, 255, 255, 0.05);
    transform: rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
    transform-style: preserve-3d;
    transition: transform 220ms ease, box-shadow 220ms ease;
    animation: card-float 6s ease-in-out infinite;
}
.preview-glow {
    position: absolute;
    width: 260px;
    height: 260px;
    top: -190px;
    right: -80px;
    border-radius: 50%;
    background: var(--accent);
    filter: blur(45px);
    opacity: 0.18;
}
.preview-label,
.preview-kicker,
.preview-duration,
.preview-footer {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: var(--muted);
}
.preview-label { margin-bottom: 28px; color: var(--accent-2); }
.preview-heading {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 24px;
}
.preview-kicker { margin-bottom: 8px; }
.preview-heading strong {
    display: block;
    max-width: 22ch;
    font-family: "Fraunces", "Iowan Old Style", Charter, Georgia, serif;
    font-size: clamp(20px, 3vw, 27px);
    line-height: 1.16;
    letter-spacing: -0.025em;
}
.preview-duration {
    flex: 0 0 auto;
    padding-top: 4px;
}
.waveform {
    display: flex;
    align-items: center;
    gap: 5px;
    height: 74px;
    margin: 30px 0 24px;
}
.waveform span {
    width: 100%;
    height: var(--h);
    min-height: 5px;
    border-radius: 99px;
    background: linear-gradient(to top, var(--accent), var(--accent-2));
    transform-origin: center;
    animation: equalize 1.3s calc(var(--d) * -90ms) ease-in-out infinite alternate;
}
.waveform span:nth-child(1) { --h: 35%; --d: 0; }
.waveform span:nth-child(2) { --h: 62%; --d: 1; }
.waveform span:nth-child(3) { --h: 44%; --d: 2; }
.waveform span:nth-child(4) { --h: 82%; --d: 3; }
.waveform span:nth-child(5) { --h: 55%; --d: 4; }
.waveform span:nth-child(6) { --h: 92%; --d: 5; }
.waveform span:nth-child(7) { --h: 48%; --d: 6; }
.waveform span:nth-child(8) { --h: 72%; --d: 7; }
.waveform span:nth-child(9) { --h: 38%; --d: 8; }
.waveform span:nth-child(10) { --h: 68%; --d: 9; }
.waveform span:nth-child(11) { --h: 88%; --d: 10; }
.waveform span:nth-child(12) { --h: 52%; --d: 11; }
.waveform span:nth-child(13) { --h: 76%; --d: 12; }
.waveform span:nth-child(14) { --h: 42%; --d: 13; }
.waveform span:nth-child(15) { --h: 64%; --d: 14; }
.waveform span:nth-child(16) { --h: 32%; --d: 15; }
.preview-footer {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding-top: 18px;
    border-top: 1px solid var(--border);
    letter-spacing: 0.04em;
    text-transform: none;
}
.preview-status { color: var(--fg-2); }
.preview-status i {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-right: 7px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 5px rgba(79, 201, 159, 0.1);
    animation: status-pulse 2s ease-out infinite;
}
.metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-width: 760px;
    margin: 0 auto clamp(72px, 10vw, 120px);
    border-block: 1px solid var(--border);
}
.metrics p {
    padding: 28px 20px;
    text-align: center;
}
.metrics p + p { border-left: 1px solid var(--border); }
.metrics strong {
    display: block;
    margin-bottom: 4px;
    font-family: "Fraunces", "Iowan Old Style", Charter, Georgia, serif;
    font-size: clamp(28px, 4vw, 39px);
    font-style: italic;
    color: var(--accent-2);
}
.metrics span { color: var(--muted); font-size: 13px; }
.landing-home .section {
    padding: clamp(72px, 9vw, 116px) 0;
}
.landing-home .section > h2,
.landing-home .section > .section-lede {
    margin-inline: auto;
    text-align: center;
    text-wrap: balance;
}
.landing-home .section > h2 {
    max-width: 23ch;
    font-size: clamp(34px, 5vw, 54px);
}
.landing-home .section > .section-lede {
    max-width: 60ch;
    margin-bottom: 44px;
    font-size: 17px;
}
.compare { gap: 22px; }
.compare-col,
.steps li,
.trust li,
.pricing {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    background: color-mix(in srgb, var(--card) 82%, transparent);
    box-shadow: 0 18px 50px rgba(0,0,0,.08);
    transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}
.compare-col:hover,
.steps li:hover,
.trust li:hover,
.pricing:hover {
    transform: translateY(-5px);
    border-color: color-mix(in srgb, var(--accent) 40%, var(--border));
    box-shadow: 0 24px 60px rgba(0,0,0,.14);
}
.steps { gap: 24px; }
.steps li { padding: 28px; }
.step-n {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border: 1px solid color-mix(in srgb, var(--accent) 34%, transparent);
    border-radius: 50%;
    background: rgba(79, 201, 159, 0.08);
}
.is-reveal {
    opacity: 0;
    filter: blur(6px);
    transform: translateY(28px);
    transition: opacity 720ms ease, filter 720ms ease, transform 720ms cubic-bezier(.2,.8,.2,1);
}
.is-reveal.is-visible {
    opacity: 1;
    filter: none;
    transform: none;
}
@keyframes hero-enter {
    from { opacity: 0; transform: translateY(20px); filter: blur(6px); }
    to { opacity: 1; transform: none; filter: none; }
}
@keyframes sheen {
    0%, 55% { transform: translateX(-120%); }
    85%, 100% { transform: translateX(120%); }
}
@keyframes card-float {
    0%, 100% { translate: 0 0; }
    50% { translate: 0 -9px; }
}
@keyframes equalize {
    from { transform: scaleY(.58); opacity: .62; }
    to { transform: scaleY(1.08); opacity: 1; }
}
@keyframes status-pulse {
    0% { box-shadow: 0 0 0 0 rgba(79,201,159,.34); }
    70%, 100% { box-shadow: 0 0 0 8px rgba(79,201,159,0); }
}
@keyframes orb-drift-a {
    to { translate: 9vw 10vh; scale: 1.12; }
}
@keyframes orb-drift-b {
    to { translate: -11vw 8vh; scale: .9; }
}
@keyframes orb-drift-c {
    to { translate: 6vw -12vh; scale: 1.14; }
}
@media (max-width: 760px) {
    .topbar-inner { padding-inline: 18px; gap: 10px; }
    .site-nav { display: none; }
    .theme-toggle { width: 38px; height: 38px; }
    .app-ctas { gap: 7px; }
    .app-ctas .app-cta { min-height: 40px; padding: 8px 12px; font-size: 13px; }
    .landing-home .container { padding-inline: 18px; }
    .landing-home .hero { padding-top: 70px; }
    .landing-home h1 { font-size: clamp(43px, 13vw, 62px); }
    .preview-footer { align-items: flex-start; flex-direction: column; }
    .metrics { grid-template-columns: 1fr; }
    .metrics p + p { border-left: 0; border-top: 1px solid var(--border); }
}
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .is-reveal { opacity: 1; filter: none; transform: none; }
    .landing-home .preview { transform: none; }
}
