/* Kaizen marketing — the dojo, in print form.
   Palette = the app's own tokens. Display voice = serif koans (Georgia — zero
   webfont bytes, instant LCP). The green is used like an inkan seal: rarely,
   and only to affirm. Vermilion appears exactly twice on the whole site: the
   not-financial-advice note and the Pro column mark. */

:root {
    --bg: #0a0a0b;
    --card: #161617;
    --card-2: #1f1f21;
    --border: #2a2a2d;
    --paper: #f5f5f7;
    --muted: #9a9aa2;
    --seal: #34d399;
    --vermilion: #fb923c;
    --serif: Georgia, "Times New Roman", serif;
    --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, sans-serif;
}

* {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--paper);
    font-family: var(--sans);
    line-height: 1.65;
    font-size: 17px;
}

.wrap {
    max-width: 880px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ── header ── */
.site-head {
    padding: 22px 0;
}
.site-head .wrap {
    display: flex;
    align-items: center;
    gap: 14px;
}
.mark {
    font-family: var(--serif);
    font-size: 22px;
    text-decoration: none;
    color: var(--paper);
}
.mark .do {
    color: var(--seal);
}
.site-nav {
    margin-left: auto;
    display: flex;
    gap: 22px;
    align-items: center;
}
.site-nav a {
    color: var(--muted);
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
}
.site-nav a:hover,
.site-nav a:focus-visible {
    color: var(--paper);
}

/* ── type ── */
h1,
h2 {
    font-family: var(--serif);
    font-weight: 400;
    letter-spacing: 0.01em;
}
h1 {
    font-size: clamp(38px, 7vw, 62px);
    line-height: 1.12;
    margin: 0 0 18px;
}
h2 {
    font-size: clamp(26px, 4vw, 34px);
    line-height: 1.25;
    margin: 0 0 14px;
}
h1 em,
h2 em {
    font-style: italic;
    color: var(--seal);
}
.lede {
    font-size: clamp(17px, 2.5vw, 20px);
    color: var(--muted);
    max-width: 560px;
    margin: 0 auto;
}
.eyebrow {
    font-family: var(--sans);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 12px;
    font-weight: 700;
    color: var(--muted);
    margin-bottom: 14px;
}

/* ── hero ── */
.hero {
    position: relative;
    text-align: center;
    padding: 72px 0 84px;
    overflow: hidden;
}
.hero-do {
    position: absolute;
    inset: -40px 0 auto 0;
    margin: auto;
    font-family: var(--serif);
    font-size: 340px;
    line-height: 1;
    color: var(--paper);
    opacity: 0.035;
    pointer-events: none;
    user-select: none;
}
.hero > .wrap {
    position: relative;
}
.hero-honest {
    margin-top: 18px;
    font-size: 15px;
    color: var(--muted);
}
.hero-honest b {
    color: var(--seal);
    font-weight: 700;
}

/* ── buttons ── */
.cta {
    display: inline-block;
    margin-top: 30px;
    background: var(--paper);
    color: #111;
    font-weight: 700;
    font-size: 17px;
    text-decoration: none;
    padding: 15px 34px;
    border-radius: 999px;
}
.cta:hover {
    background: #fff;
}
.cta:focus-visible,
.site-nav a:focus-visible,
a:focus-visible {
    outline: 2px solid var(--seal);
    outline-offset: 3px;
}
.cta.quiet {
    background: transparent;
    color: var(--paper);
    border: 1px solid var(--border);
}
.cta.quiet:hover {
    background: var(--card);
}

/* ── sections ── */
.section {
    padding: 72px 0;
    border-top: 1px solid var(--border);
}
.section .wrap > p {
    color: var(--muted);
    max-width: 620px;
}

/* ── the practice scroll (signature) ── */
.scroll {
    position: relative;
    margin: 44px auto 0;
    max-width: 640px;
    padding-left: 44px;
}
.scroll::before {
    content: "";
    position: absolute;
    left: 15px;
    top: 8px;
    bottom: 8px;
    width: 2px;
    background: linear-gradient(
        180deg,
        transparent,
        var(--border) 8%,
        var(--border) 92%,
        transparent
    );
}
.rite {
    position: relative;
    padding: 0 0 40px;
}
.rite:last-child {
    padding-bottom: 0;
}
.rite-n {
    position: absolute;
    left: -44px;
    top: 2px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--card);
    border: 1px solid var(--border);
    display: grid;
    place-items: center;
    font-family: var(--serif);
    font-size: 15px;
    color: var(--muted);
}
.rite h3 {
    margin: 0 0 6px;
    font-size: 19px;
    font-weight: 700;
}
.rite p {
    margin: 0;
    color: var(--muted);
    font-size: 16px;
}
.rite p b {
    color: var(--paper);
    font-weight: 600;
}
.rite .seal-note {
    color: var(--seal);
    font-size: 14px;
    font-weight: 600;
    margin-top: 6px;
    display: block;
}

/* ── quiet feature rows (no card grids) ── */
.row-list {
    margin: 36px 0 0;
    padding: 0;
    list-style: none;
}
.row-list li {
    display: flex;
    gap: 16px;
    align-items: baseline;
    padding: 18px 0;
    border-top: 1px solid var(--border);
    font-size: 16px;
}
.row-list li:first-child {
    border-top: none;
}
.row-list .k {
    flex: 0 0 190px;
    font-weight: 700;
}
.row-list .v {
    color: var(--muted);
}
.row-list .v b {
    color: var(--paper);
    font-weight: 600;
}
.tick {
    color: var(--seal);
    font-weight: 700;
}

/* ── free-features checklist (two quiet columns of seal ticks) ── */
.includes {
    list-style: none;
    margin: 36px 0 8px;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 11px 30px;
}
.includes li {
    position: relative;
    padding-left: 26px;
    color: var(--muted);
    font-size: 16px;
}
.includes li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--seal);
    font-weight: 700;
}
.includes li b {
    color: var(--paper);
    font-weight: 600;
}

/* ── koan pull-quote ── */
.koan {
    margin: 30px 0 0;
    padding: 4px 0 4px 22px;
    border-left: 2px solid var(--seal);
    font-family: var(--serif);
    font-style: italic;
    font-size: clamp(20px, 3vw, 27px);
    line-height: 1.4;
    color: var(--paper);
    max-width: 640px;
}

/* ── honesty notes ── */
.note {
    margin-top: 34px;
    padding: 16px 20px;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: var(--card);
    color: var(--muted);
    font-size: 15px;
    max-width: 640px;
}
.note.advice {
    border-left: 3px solid var(--vermilion);
}
.note.advice b {
    color: var(--vermilion);
}

/* ── pricing ── */
.plans {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 44px;
}
.plan {
    border: 1px solid var(--border);
    border-radius: 20px;
    background: var(--card);
    padding: 32px 30px;
}
.plan.free {
    border-color: rgba(52, 211, 153, 0.55);
    box-shadow: 0 0 34px -14px rgba(52, 211, 153, 0.35);
}
.plan.pro {
    border-top: 3px solid var(--vermilion);
}
.plan-name {
    font-family: var(--serif);
    font-size: 24px;
    margin: 0 0 4px;
}
.plan-price {
    font-size: 40px;
    font-weight: 800;
    margin: 10px 0 2px;
}
.plan-price .per {
    font-size: 15px;
    font-weight: 600;
    color: var(--muted);
}
.plan-alt {
    color: var(--muted);
    font-size: 14px;
    margin-bottom: 6px;
}
.plan-tag {
    font-size: 13px;
    font-weight: 700;
    color: var(--seal);
    letter-spacing: 0.04em;
}
.plan.pro .plan-tag {
    color: var(--vermilion);
}
.plan ul {
    list-style: none;
    margin: 22px 0 26px;
    padding: 0;
}
.plan li {
    padding: 8px 0;
    font-size: 15.5px;
    color: var(--muted);
}
.plan li b {
    color: var(--paper);
    font-weight: 600;
}
.plan li::before {
    content: "✓ ";
    color: var(--seal);
    font-weight: 700;
}
.plan.pro li::before {
    color: var(--vermilion);
}
.plan .cta {
    margin-top: 4px;
    width: 100%;
    text-align: center;
}

/* ── FAQ ── */
.faq {
    max-width: 720px;
}
.faq details {
    border-top: 1px solid var(--border);
    padding: 4px 0;
}
.faq summary {
    cursor: pointer;
    font-weight: 700;
    font-size: 17px;
    padding: 16px 0;
    list-style: none;
    display: flex;
    justify-content: space-between;
    gap: 12px;
}
.faq summary::-webkit-details-marker {
    display: none;
}
.faq summary::after {
    content: "+";
    color: var(--muted);
    font-size: 20px;
}
.faq details[open] summary::after {
    content: "−";
}
.faq details p {
    margin: 0 0 18px;
    color: var(--muted);
}

/* ── legal pages ── */
.legal h1 {
    font-size: clamp(30px, 5vw, 42px);
}
.legal h2 {
    font-size: 21px;
    margin-top: 40px;
    font-family: var(--sans);
    font-weight: 700;
}
.legal p,
.legal li {
    color: var(--muted);
    font-size: 16px;
}
.legal .updated {
    font-size: 14px;
    color: var(--muted);
}
.legal b,
.legal strong {
    color: var(--paper);
}

/* ── footer ── */
.site-foot {
    border-top: 1px solid var(--border);
    margin-top: 84px;
    padding: 36px 0 48px;
}
.site-foot .wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    align-items: baseline;
}
.site-foot .mark {
    font-size: 18px;
}
.site-foot nav {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}
.site-foot a {
    color: var(--muted);
    font-size: 14px;
    text-decoration: none;
}
.site-foot a:hover {
    color: var(--paper);
}
.site-foot .fine {
    flex-basis: 100%;
    color: var(--muted);
    font-size: 13px;
    opacity: 0.8;
}

@media (max-width: 700px) {
    .plans {
        grid-template-columns: 1fr;
    }
    .includes {
        grid-template-columns: 1fr;
    }
    .row-list li {
        flex-direction: column;
        gap: 4px;
    }
    .row-list .k {
        flex-basis: auto;
    }
    .hero {
        padding: 48px 0 60px;
    }
    .section {
        padding: 52px 0;
    }
    .hero-do {
        font-size: 210px;
    }
}
