/*
 * Landing page — Direction B ("Three Lanes")
 * Source: April 2026 Claude Design handoff (direction-b.jsx).
 *
 * All selectors prefixed `.lp-` so the file is self-contained and
 * can't collide with the rest of the app's CSS. The file is loaded
 * ONLY by templates/landing.html — no other surface should reach
 * for these classes.
 *
 * Palette (verbatim from wire-primitives.jsx):
 *   PURPLE       #7C5CDB   Submissions accent + main brand
 *   PURPLE_SOFT  #EDE7FB   Submissions tint
 *   AMBER        #D88A2C   Publish accent
 *   AMBER_SOFT   #FAEFD9   Publish tint
 *   TEAL         #2F9E8A   Bookings accent
 *   TEAL_SOFT    #DDF0EC   Bookings tint
 *   INK          #2A2733   Body text
 *   MUTE         #8A8594   Secondary text
 *   LINE         #C9C4D4   Borders / dividers
 *   PAPER        #FBFAF7   Page background
 *   CREAM        #EDEAE1   Out-of-page background (the design canvas)
 */

:root {
    --lp-purple:       #7C5CDB;
    --lp-purple-soft:  #EDE7FB;
    --lp-amber:        #D88A2C;
    --lp-amber-soft:   #FAEFD9;
    --lp-teal:         #2F9E8A;
    --lp-teal-soft:    #DDF0EC;
    --lp-ink:          #2A2733;
    --lp-mute:         #8A8594;
    --lp-line:         #C9C4D4;
    --lp-paper:        #FBFAF7;
    --lp-cream:        #EDEAE1;
}

/* ── Base ───────────────────────────────────────────────────────── */

.lp-body {
    margin: 0;
    padding: 0;
    background: var(--lp-paper);
    color: var(--lp-ink);
    font-family: 'Inter', ui-sans-serif, system-ui, -apple-system, sans-serif;
    font-size: 14px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.lp-body * { box-sizing: border-box; }


/* ── Reusable typography ──────────────────────────────────────── */

/* Display headings — Cormorant Garamond, serif. Italics carry the
 * editorial emphasis (handoff convention: italicise the highlight
 * phrase, not the lead-in). */
.lp-display {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: -0.5px;
    color: var(--lp-mute);
    margin: 0;
    text-align: center;
}
.lp-display em {
    color: var(--lp-ink);
    font-style: italic;
    font-weight: 600;
    font-family: 'Cormorant Garamond', Georgia, serif;
}
.lp-display--64 { font-size: 64px; }
.lp-display--52 { font-size: 52px; }
.lp-display--48 { font-size: 48px; }
.lp-display--44 { font-size: 44px; }


/* ── Pills (eyebrows) ──────────────────────────────────────────── */

.lp-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 999px;
    border: 1.5px solid var(--lp-line);
    background: transparent;
    color: var(--lp-ink);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.lp-pill--accent {
    border-color: var(--lp-purple);
    color: var(--lp-purple);
    background: #FFFFFF;
}


/* ── Buttons ───────────────────────────────────────────────────── */

.lp-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 14px;
    border: 1.5px solid var(--lp-purple);
    background: #FFFFFF;
    color: var(--lp-purple);
    font-family: inherit;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: filter 120ms ease, transform 120ms ease;
}
.lp-btn:hover {
    filter: brightness(0.96);
    transform: translateY(-1px);
}

.lp-btn--sm  { padding: 8px 14px; font-size: 12px; }
.lp-btn--md  { padding: 12px 20px; font-size: 13px; }
.lp-btn--lg  { padding: 16px 26px; font-size: 14px; }

.lp-btn--filled {
    background: var(--lp-purple);
    color: #FFFFFF;
}
.lp-btn--filled:hover { background: #6C4DCE; }

.lp-btn--ghost {
    background: transparent;
}

/* Module-coloured filled CTAs (the "Explore Submissions →" buttons) */
.lp-btn--mod-submissions { background: var(--lp-purple); border-color: var(--lp-purple); color: #FFFFFF; }
.lp-btn--mod-publish     { background: var(--lp-amber);  border-color: var(--lp-amber);  color: #FFFFFF; }
.lp-btn--mod-bookings    { background: var(--lp-teal);   border-color: var(--lp-teal);   color: #FFFFFF; }


/* ── Module chips ──────────────────────────────────────────────── */

.lp-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 999px;
    border: 1.5px solid;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.4px;
}
.lp-chip__glyph { font-size: 13px; line-height: 1; }
.lp-chip--lg { padding: 10px 18px; font-size: 13px; }
.lp-chip--lg .lp-chip__glyph { font-size: 15px; }

.lp-chip--submissions { color: var(--lp-purple); border-color: var(--lp-purple); background: var(--lp-purple-soft); }
.lp-chip--publish     { color: var(--lp-amber);  border-color: var(--lp-amber);  background: var(--lp-amber-soft); }
.lp-chip--bookings    { color: var(--lp-teal);   border-color: var(--lp-teal);   background: var(--lp-teal-soft); }

.lp-chip--active.lp-chip--submissions { background: var(--lp-purple); color: #FFFFFF; }
.lp-chip--active.lp-chip--publish     { background: var(--lp-amber);  color: #FFFFFF; }
.lp-chip--active.lp-chip--bookings    { background: var(--lp-teal);   color: #FFFFFF; }


/* ── Nav ───────────────────────────────────────────────────────── */

.lp-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 40px;
    background: var(--lp-paper);
    border-bottom: 1px solid transparent;
}
.lp-nav__brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--lp-ink);
}
.lp-nav__brand-mark {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: var(--lp-purple-soft);
    border: 1.5px solid var(--lp-purple);
    color: var(--lp-purple);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 13px;
}
.lp-nav__brand-name {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 22px;
    font-weight: 500;
}
.lp-nav__links {
    display: flex;
    align-items: center;
    gap: 24px;
}
.lp-nav__link {
    color: var(--lp-mute);
    font-size: 13px;
    text-decoration: none;
    transition: color 120ms ease;
}
.lp-nav__link:hover { color: var(--lp-ink); }


/* ── Hero ──────────────────────────────────────────────────────── */

.lp-hero {
    padding: 30px 60px 60px;
    position: relative;
}
.lp-hero__pill {
    text-align: center;
    margin-bottom: 24px;
}
.lp-hero__grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 40px;
    max-width: 1260px;
    margin: 0 auto;
}
.lp-hero__col {
    /* one column of the 3-col headline */
}
.lp-hero__col--left  { text-align: right; }
.lp-hero__col--right { text-align: left; }

.lp-hero__line {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 72px;
    line-height: 1;
    font-weight: 500;
}
.lp-hero__line + .lp-hero__line {
    margin-top: 8px;
    line-height: 1.05;
}
.lp-hero__line--mute   { color: var(--lp-mute); }
.lp-hero__line--ink    { color: var(--lp-ink); font-weight: 600; }
.lp-hero__line--italic { font-style: italic; }

.lp-hero__mascot {
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle at 40% 35%, #F7F3FF 0%, var(--lp-purple-soft) 55%, #DCD1F5 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.lp-hero__mascot img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    /* Slight scale-down so the PNG sits nicely within the soft circle. */
    transform: scale(0.9);
}

.lp-hero__sub {
    max-width: 640px;
    margin: 36px auto 0;
    text-align: center;
    font-size: 15px;
    color: var(--lp-mute);
    line-height: 1.6;
}
.lp-hero__ctas {
    display: flex;
    gap: 14px;
    margin-top: 28px;
    justify-content: center;
    flex-wrap: wrap;
}


/* ── Three Lanes ───────────────────────────────────────────────── */

.lp-lanes-section {
    padding: 60px 0 0;
}
.lp-lanes-section__intro {
    text-align: center;
    margin-bottom: 48px;
    padding: 0 60px;
}
.lp-lanes-section__intro .lp-pill {
    margin-bottom: 24px;
}
.lp-lanes-section__sub {
    margin-top: 14px;
    color: var(--lp-mute);
    font-size: 14px;
}

.lp-lanes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: 1.5px solid var(--lp-line);
    border-bottom: 1.5px solid var(--lp-line);
}
.lp-lane {
    padding: 44px 32px 40px;
    display: flex;
    flex-direction: column;
    gap: 22px;
    position: relative;
    border-left: 1.5px dashed var(--lp-line);
}
.lp-lane:first-child { border-left: none; }

.lp-lane--submissions { background: var(--lp-purple-soft); }
.lp-lane--publish     { background: var(--lp-amber-soft); }
.lp-lane--bookings    { background: var(--lp-teal-soft); }

.lp-lane__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.lp-lane__eyebrow {
    font-family: ui-monospace, Menlo, monospace;
    font-size: 11px;
    letter-spacing: 1px;
    font-weight: 700;
    color: var(--lp-mute);
}
.lp-lane--submissions .lp-lane__eyebrow { color: var(--lp-purple); }
.lp-lane--publish     .lp-lane__eyebrow { color: var(--lp-amber); }
.lp-lane--bookings    .lp-lane__eyebrow { color: var(--lp-teal); }

.lp-lane__promise {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 36px;
    font-weight: 500;
    line-height: 1.1;
    color: var(--lp-ink);
}
.lp-lane__copy {
    font-size: 14px;
    color: var(--lp-ink);
    line-height: 1.55;
    opacity: 0.85;
    margin: 0;
}

/* Hatched dashboard placeholder — to be replaced with real captures. */
.lp-lane__shot {
    height: 180px;
    border-radius: 16px;
    border: 1.5px dashed var(--lp-line);
    background: repeating-linear-gradient(135deg, #F5F1E8 0 10px, #EEEAE2 10px 11px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--lp-mute);
    font-family: ui-monospace, Menlo, monospace;
    font-size: 11px;
    letter-spacing: 0.5px;
    text-align: center;
    padding: 12px;
}
.lp-lane--submissions .lp-lane__shot {
    border-color: var(--lp-purple);
    background: repeating-linear-gradient(135deg, #F7F3FF 0 10px, var(--lp-purple-soft) 10px 11px);
    color: var(--lp-purple);
}
.lp-lane--publish .lp-lane__shot {
    border-color: var(--lp-amber);
    background: repeating-linear-gradient(135deg, #FDF7EC 0 10px, var(--lp-amber-soft) 10px 11px);
    color: var(--lp-amber);
}
.lp-lane--bookings .lp-lane__shot {
    border-color: var(--lp-teal);
    background: repeating-linear-gradient(135deg, #F0F8F6 0 10px, var(--lp-teal-soft) 10px 11px);
    color: var(--lp-teal);
}

.lp-lane__bullets {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.lp-lane__bullets li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 13.5px;
}
.lp-lane__tick {
    font-weight: 800;
    flex-shrink: 0;
}
.lp-lane--submissions .lp-lane__tick { color: var(--lp-purple); }
.lp-lane--publish     .lp-lane__tick { color: var(--lp-amber); }
.lp-lane--bookings    .lp-lane__tick { color: var(--lp-teal); }

.lp-lane__stat {
    background: #FFFFFF;
    border: 1.5px solid var(--lp-line);
    border-radius: 18px;
    padding: 16px;
}
.lp-lane--submissions .lp-lane__stat { border-color: var(--lp-purple); }
.lp-lane--publish     .lp-lane__stat { border-color: var(--lp-amber); }
.lp-lane--bookings    .lp-lane__stat { border-color: var(--lp-teal); }

.lp-lane__stat-row {
    display: flex;
    align-items: baseline;
    gap: 8px;
}
.lp-lane__stat-big {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 38px;
    font-weight: 600;
}
.lp-lane--submissions .lp-lane__stat-big { color: var(--lp-purple); }
.lp-lane--publish     .lp-lane__stat-big { color: var(--lp-amber); }
.lp-lane--bookings    .lp-lane__stat-big { color: var(--lp-teal); }

.lp-lane__stat-small { font-size: 12px; color: var(--lp-mute); }
.lp-lane__stat-note  { margin-top: 6px; font-size: 11px; color: var(--lp-mute); font-style: italic; }


/* ── Section frames (shared core, personas, pricing, final CTA) ── */

.lp-section {
    padding: 90px 60px;
}
.lp-section--paper { background: var(--lp-paper); }
.lp-section--white { background: #FFFFFF; }

.lp-section__head {
    text-align: center;
    margin-bottom: 50px;
}
.lp-section__head .lp-pill { margin-bottom: 22px; }
.lp-section__head .lp-display { margin-bottom: 14px; }
.lp-section__sub {
    color: var(--lp-mute);
    font-size: 14px;
    margin: 12px 0 0;
}
.lp-section__footnote {
    text-align: center;
    margin-top: 24px;
    color: var(--lp-mute);
    font-size: 13px;
}


/* ── Shared Core grid ──────────────────────────────────────────── */

.lp-core-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    max-width: 1100px;
    margin: 0 auto;
}
.lp-core-card {
    border: 1.5px solid var(--lp-line);
    border-radius: 18px;
    background: #FFFFFF;
    padding: 26px;
}
.lp-core-card__icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background: var(--lp-purple-soft);
    border: 1.5px dashed var(--lp-purple);
    color: var(--lp-purple);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}
.lp-core-card__title {
    margin-top: 18px;
    font-weight: 700;
    font-size: 17px;
    color: var(--lp-ink);
}
.lp-core-card__copy {
    margin: 10px 0 0;
    color: var(--lp-mute);
    font-size: 13.5px;
    line-height: 1.55;
}


/* ── Persona cards ─────────────────────────────────────────────── */

.lp-persona-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}
.lp-persona-card {
    border: 1.5px solid var(--lp-line);
    border-radius: 18px;
    padding: 22px;
    background: #FFFFFF;
}
.lp-persona-card--submissions { border-color: var(--lp-purple); background: var(--lp-purple-soft); }
.lp-persona-card--publish     { border-color: var(--lp-amber);  background: var(--lp-amber-soft); }
.lp-persona-card--bookings    { border-color: var(--lp-teal);   background: var(--lp-teal-soft); }

.lp-persona-card__title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 26px;
    font-weight: 600;
    color: var(--lp-ink);
}
.lp-persona-card__line {
    margin: 10px 0 16px;
    font-size: 13.5px;
    color: var(--lp-ink);
    line-height: 1.5;
}


/* ── Plan builder (pricing — only when PUBLIC_PRICING_ENABLED) ── */

.lp-plan-builder {
    max-width: 920px;
    margin: 0 auto;
    border: 1.5px solid var(--lp-purple);
    border-radius: 18px;
    background: #FFFFFF;
    padding: 28px;
}
.lp-plan-builder__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}
.lp-plan-builder__label {
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--lp-mute);
}
.lp-plan-builder__price {
    display: flex;
    align-items: baseline;
    gap: 4px;
}
.lp-plan-builder__price-num {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 44px;
    font-weight: 600;
    color: var(--lp-ink);
}
.lp-plan-builder__price-unit {
    color: var(--lp-mute);
    font-size: 14px;
}

.lp-plan-tiers {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}
.lp-plan-tier {
    border: 1.5px solid var(--lp-line);
    border-radius: 14px;
    padding: 16px;
    background: #FFFFFF;
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0.55;
}
.lp-plan-tier--on { opacity: 1; }
.lp-plan-tier--submissions.lp-plan-tier--on { border-color: var(--lp-purple); background: var(--lp-purple-soft); }
.lp-plan-tier--publish.lp-plan-tier--on     { border-color: var(--lp-amber);  background: var(--lp-amber-soft); }
.lp-plan-tier--bookings.lp-plan-tier--on    { border-color: var(--lp-teal);   background: var(--lp-teal-soft); }

.lp-plan-tier__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.lp-plan-tier__check {
    width: 18px;
    height: 18px;
    border-radius: 5px;
    border: 1.5px solid var(--lp-line);
    color: #FFFFFF;
    font-size: 12px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}
.lp-plan-tier--submissions.lp-plan-tier--on .lp-plan-tier__check { background: var(--lp-purple); border-color: var(--lp-purple); }
.lp-plan-tier--publish.lp-plan-tier--on     .lp-plan-tier__check { background: var(--lp-amber);  border-color: var(--lp-amber); }
.lp-plan-tier--bookings.lp-plan-tier--on    .lp-plan-tier__check { background: var(--lp-teal);   border-color: var(--lp-teal); }

.lp-plan-tier__price {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 26px;
    font-weight: 600;
    color: var(--lp-ink);
}
.lp-plan-tier__price-unit { font-size: 12px; color: var(--lp-mute); margin-left: 4px; }
.lp-plan-tier__note { font-size: 11.5px; color: var(--lp-mute); }

.lp-plan-builder__foot {
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}
.lp-plan-builder__small { font-size: 12px; color: var(--lp-mute); }


/* ── Final CTA ─────────────────────────────────────────────────── */

.lp-final-cta {
    padding: 100px 60px;
    text-align: center;
    background: #FFFFFF;
    border-top: 1.5px solid var(--lp-line);
}
.lp-final-cta .lp-display { margin: 22px 0 30px; }
.lp-final-cta__btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}


/* ── Footer ────────────────────────────────────────────────────── */

.lp-footer {
    padding: 24px 40px;
    border-top: 1.5px solid var(--lp-line);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: var(--lp-mute);
    background: var(--lp-paper);
    flex-wrap: wrap;
    gap: 16px;
}
.lp-footer__copy { font-size: 12px; }
.lp-footer__links { display: flex; gap: 20px; }
.lp-footer__link {
    color: var(--lp-mute);
    text-decoration: none;
    transition: color 120ms ease;
}
.lp-footer__link:hover { color: var(--lp-ink); }


/* ── Auth flow pages (login / signup / email confirmed / etc.) ─ */
/*
 * Shared chrome for the focused single-action pages between
 * marketing and the app: sign in, sign up, email confirmation,
 * MFA challenge, verification-sent. The pattern is always
 * "centred frame · brand · white card · primary CTA · help line".
 *
 * Pages compose by setting <body class="lp-body lp-auth"> and
 * dropping a .lp-auth-frame > .lp-auth-card inside.
 */

body.lp-auth {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 32px 24px;
}

.lp-auth-frame { width: 100%; max-width: 520px; }

.lp-auth-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-decoration: none;
    color: var(--lp-ink);
    margin-bottom: 28px;
}
.lp-auth-brand__mark {
    width: 38px; height: 38px;
    border-radius: 10px;
    background: var(--lp-purple-soft);
    border: 1.5px solid var(--lp-purple);
    color: var(--lp-purple);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800; font-size: 13px;
    font-family: 'Inter', ui-sans-serif, sans-serif;
}
.lp-auth-brand__name {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 22px; font-weight: 500;
}

.lp-auth-card {
    background: #FFFFFF;
    border: 1.5px solid var(--lp-line);
    border-radius: 18px;
    padding: 36px 32px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.lp-auth-card--centred { text-align: center; }

.lp-auth-icon {
    width: 72px; height: 72px;
    margin: 0 auto 24px;
    background: var(--lp-purple-soft);
    border: 1.5px dashed var(--lp-purple);
    color: var(--lp-purple);
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.lp-auth-icon svg { width: 32px; height: 32px; }
.lp-auth-icon--ok {
    background: var(--lp-teal-soft);
    border-color: var(--lp-teal);
    color: var(--lp-teal);
}

.lp-auth-card h1,
.lp-auth-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 600;
    font-size: 32px;
    color: var(--lp-ink);
    margin: 0 0 12px;
    letter-spacing: -0.3px;
}
.lp-auth-card--centred h1,
.lp-auth-card--centred .lp-auth-title { text-align: center; }

.lp-auth-sub {
    color: var(--lp-mute);
    font-size: 15px;
    line-height: 1.6;
    margin: 0 0 24px;
}
.lp-auth-card--centred .lp-auth-sub { text-align: center; }
.lp-auth-sub a { color: var(--lp-purple); text-decoration: none; font-weight: 600; }
.lp-auth-sub a:hover { text-decoration: underline; }

.lp-auth-callout {
    background: var(--lp-purple-soft);
    border-left: 3px solid var(--lp-purple);
    border-radius: 12px;
    padding: 16px 18px;
    margin-bottom: 24px;
    text-align: left;
}
.lp-auth-callout--ok {
    background: var(--lp-teal-soft);
    border-left-color: var(--lp-teal);
}
.lp-auth-callout__title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 14px;
    color: var(--lp-ink);
    margin-bottom: 6px;
}
.lp-auth-callout__copy {
    font-size: 13.5px;
    color: var(--lp-ink);
    line-height: 1.55;
}
.lp-auth-callout__copy ul {
    margin: 6px 0 0 18px;
    padding: 0;
}
.lp-auth-callout__copy li { margin-bottom: 4px; }

.lp-auth-help {
    color: var(--lp-mute);
    font-size: 13px;
    margin-top: 22px;
    padding-top: 22px;
    border-top: 1px solid var(--lp-line);
    text-align: center;
}
.lp-auth-help a {
    color: var(--lp-purple);
    text-decoration: none;
    font-weight: 500;
}
.lp-auth-help a:hover { text-decoration: underline; }

/* Inline form pieces for login/signup. */
.lp-form-group { margin-bottom: 16px; }
.lp-form-label {
    display: block;
    font-weight: 600;
    font-size: 13px;
    color: var(--lp-ink);
    margin-bottom: 6px;
}
.lp-form-input {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid var(--lp-line);
    border-radius: 10px;
    font-family: 'Inter', ui-sans-serif, sans-serif;
    font-size: 14px;
    color: var(--lp-ink);
    background: #FFFFFF;
    transition: border-color 120ms ease, box-shadow 120ms ease;
}
.lp-form-input:focus {
    outline: none;
    border-color: var(--lp-purple);
    box-shadow: 0 0 0 3px var(--lp-purple-soft);
}
.lp-form-help {
    color: var(--lp-mute);
    font-size: 12px;
    margin-top: 6px;
}
.lp-form-error {
    color: #B53D3D;
    font-size: 12.5px;
    margin-top: 6px;
}

/* Email-display pill (used on verification_sent). */
.lp-auth-email-pill {
    background: var(--lp-purple-soft);
    border: 1.5px solid var(--lp-purple);
    border-radius: 10px;
    padding: 10px 14px;
    font-family: ui-monospace, Menlo, monospace;
    font-size: 13px;
    color: var(--lp-purple);
    margin: 0 auto 20px;
    word-break: break-all;
    display: inline-block;
}

/* Auth-page divider with "or" label. */
.lp-auth-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 18px 0;
    font-size: 12px;
    color: var(--lp-mute);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.lp-auth-divider::before,
.lp-auth-divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: var(--lp-line);
}

/* Social-login button (Google / Apple) — matches the auth card. */
.lp-auth-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid var(--lp-line);
    border-radius: 10px;
    background: #FFFFFF;
    color: var(--lp-ink);
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    margin-bottom: 10px;
    cursor: pointer;
    transition: border-color 120ms ease, background-color 120ms ease;
}
.lp-auth-social:hover {
    border-color: var(--lp-purple);
    background: var(--lp-paper);
}


/* ── Marketing pages (about / privacy / terms) ─────────────────── */
/*
 * Same chrome as the landing page (nav, footer, fonts, palette,
 * buttons) but for content-heavy pages — long-form copy with
 * H2/H3, lists, paragraph runs, and an optional "highlight box"
 * intro. The .lp-doc- prefix stays inside the same .lp-* family
 * so adding a marketing page is "load landing.css + use these
 * classes."
 */

/* Document hero — narrower than landing's, no flanking columns. */
.lp-doc-hero {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 40px 30px;
    text-align: center;
}
.lp-doc-hero__title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 600;
    font-size: 56px;
    line-height: 1.1;
    letter-spacing: -0.5px;
    color: var(--lp-ink);
    margin: 0 0 16px;
}
.lp-doc-hero__title em {
    font-style: italic;
    color: var(--lp-ink);
    font-family: 'Cormorant Garamond', Georgia, serif;
}
.lp-doc-hero__sub {
    font-size: 17px;
    color: var(--lp-mute);
    line-height: 1.6;
    margin: 0;
}
.lp-doc-hero__date {
    color: var(--lp-mute);
    font-size: 14px;
    margin: 0;
}

/* Body container — narrower than landing for legibility. */
.lp-doc-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 40px 60px;
}

/* Highlight box — coloured intro panel for the "essentials" /
 * "at a glance" sections. Matches the lane stat-card aesthetic. */
.lp-doc-highlight {
    background: var(--lp-purple-soft);
    border: 1.5px solid var(--lp-purple);
    border-radius: 18px;
    padding: 28px 30px;
    margin: 24px 0 48px;
}
.lp-doc-highlight__title {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--lp-purple);
    font-weight: 700;
    font-size: 16px;
    margin: 0 0 14px;
}
.lp-doc-highlight__title svg {
    flex-shrink: 0;
}
.lp-doc-highlight ul {
    margin: 0;
    padding-left: 22px;
    color: var(--lp-ink);
}
.lp-doc-highlight li {
    margin-bottom: 8px;
    line-height: 1.55;
    font-size: 14px;
}
.lp-doc-highlight strong {
    color: var(--lp-purple);
    font-weight: 700;
}

/* Long-form content typography. */
.lp-doc-content {
    color: var(--lp-ink);
    line-height: 1.75;
    font-size: 15px;
}
.lp-doc-content h2 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 600;
    font-size: 28px;
    color: var(--lp-ink);
    margin: 40px 0 14px;
    letter-spacing: -0.2px;
}
.lp-doc-content h2:first-child { margin-top: 0; }
.lp-doc-content h3 {
    font-family: 'Inter', ui-sans-serif, sans-serif;
    font-weight: 600;
    font-size: 17px;
    color: var(--lp-ink);
    margin: 28px 0 10px;
}
.lp-doc-content p {
    margin: 0 0 14px;
}
.lp-doc-content ul,
.lp-doc-content ol {
    margin: 0 0 16px;
    padding-left: 24px;
}
.lp-doc-content li {
    margin-bottom: 6px;
}
.lp-doc-content strong {
    color: var(--lp-purple);
    font-weight: 600;
}
.lp-doc-content a {
    color: var(--lp-purple);
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* Section divider — matches the landing's lane top/bottom rules. */
.lp-doc-divider {
    border: none;
    border-top: 1.5px solid var(--lp-line);
    margin: 48px 0;
}

/* About page section blocks. */
.lp-doc-section {
    padding: 32px 0;
}
.lp-doc-section__title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 600;
    font-size: 36px;
    color: var(--lp-ink);
    margin: 0 0 18px;
    letter-spacing: -0.3px;
}
.lp-doc-section__title em {
    font-style: italic;
    font-family: 'Cormorant Garamond', Georgia, serif;
}
.lp-doc-section p {
    color: var(--lp-ink);
    line-height: 1.75;
    font-size: 15px;
    margin: 0 0 14px;
}

/* About page values grid — same card chrome as landing's lane stat
 * cards / shared-core cards, sized for a 2-col block. */
.lp-doc-values {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-top: 24px;
}
.lp-doc-value {
    border: 1.5px solid var(--lp-line);
    border-radius: 18px;
    background: #FFFFFF;
    padding: 22px 24px;
    transition: border-color 120ms ease, transform 120ms ease;
}
.lp-doc-value:hover {
    border-color: var(--lp-purple);
    transform: translateY(-2px);
}
.lp-doc-value__icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--lp-purple-soft);
    border: 1.5px dashed var(--lp-purple);
    color: var(--lp-purple);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}
.lp-doc-value__title {
    font-weight: 700;
    font-size: 16px;
    color: var(--lp-ink);
    margin: 0 0 6px;
}
.lp-doc-value__copy {
    color: var(--lp-mute);
    font-size: 14px;
    line-height: 1.55;
    margin: 0;
}

/* Bottom CTA strip on doc pages. */
.lp-doc-cta {
    text-align: center;
    padding: 48px 0 16px;
}
.lp-doc-cta__title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 600;
    font-size: 36px;
    color: var(--lp-ink);
    margin: 0 0 10px;
}
.lp-doc-cta__sub {
    color: var(--lp-mute);
    font-size: 15px;
    margin: 0 0 20px;
}


/* ── Responsive ────────────────────────────────────────────────── */

/* Tablet: collapse the hero's 3-col headline + lanes still 3-col */
@media (max-width: 1024px) {
    .lp-hero__line { font-size: 56px; }
    .lp-hero__mascot { width: 240px; height: 240px; }
    .lp-display--64 { font-size: 52px; }
    .lp-display--52 { font-size: 42px; }
    .lp-display--48 { font-size: 38px; }
    .lp-display--44 { font-size: 36px; }
    .lp-section { padding: 70px 40px; }

    .lp-doc-hero__title { font-size: 44px; }
    .lp-doc-section__title { font-size: 30px; }
    .lp-doc-cta__title { font-size: 30px; }
}

/* Phone: full vertical stack */
@media (max-width: 720px) {
    .lp-nav {
        padding: 18px 20px;
        flex-wrap: wrap;
        gap: 12px;
    }
    .lp-nav__links {
        gap: 14px;
        flex-wrap: wrap;
    }
    .lp-nav__brand-name { font-size: 18px; }

    .lp-hero { padding: 20px 20px 40px; }
    .lp-hero__grid {
        grid-template-columns: 1fr;
        gap: 24px;
        text-align: center;
    }
    .lp-hero__col--left,
    .lp-hero__col--right { text-align: center; }
    .lp-hero__line { font-size: 44px; }
    .lp-hero__mascot {
        width: 200px;
        height: 200px;
        margin: 0 auto;
    }
    .lp-hero__sub { font-size: 14px; padding: 0 8px; }

    .lp-lanes {
        grid-template-columns: 1fr;
        border-left: none;
        border-right: none;
    }
    .lp-lane {
        border-left: none;
        border-top: 1.5px dashed var(--lp-line);
    }
    .lp-lane:first-child { border-top: none; }

    .lp-core-grid,
    .lp-persona-grid,
    .lp-plan-tiers {
        grid-template-columns: 1fr;
    }

    .lp-section { padding: 60px 20px; }
    .lp-final-cta { padding: 80px 20px; }
    .lp-footer { padding: 18px 20px; }

    .lp-display--64 { font-size: 38px; }
    .lp-display--52 { font-size: 32px; }
    .lp-display--48 { font-size: 30px; }
    .lp-display--44 { font-size: 28px; }

    .lp-doc-hero { padding: 40px 20px 20px; }
    .lp-doc-hero__title { font-size: 34px; }
    .lp-doc-container { padding: 0 20px 40px; }
    .lp-doc-highlight { padding: 22px 20px; }
    .lp-doc-section__title { font-size: 26px; }
    .lp-doc-values { grid-template-columns: 1fr; }
    .lp-doc-cta__title { font-size: 26px; }
}
