/* ══════════════════════════════════════════════════════════════════════════
   Landing page ("/") — the public, signed-out front door.

   Visual language follows the reference comps in Sample_Art: a floating pill
   nav, an eyebrow badge, a two-tone headline, dual CTAs, a product-UI panel
   with floating callout chips, tinted-icon feature cards, and a gradient
   closing banner.

   Colours derive from MudBlazor palette variables via color-mix, so the page
   follows the active DoitAll branding and works in light and dark instead of
   pinning its own palette. Layout is intrinsic (clamp + auto-fit grid), so it
   holds from phone to ultrawide without breakpoint-by-breakpoint patching.
   ══════════════════════════════════════════════════════════════════════════ */

/* Self-hosted from TheTechIdea.Beep.Fonts (SIL OFL — see fonts/Inter-OFL.txt). One variable file
   covers the whole 100–900 range, so every weight the page uses costs a single request.
   font-display: swap keeps text visible while it loads. */
@font-face {
    font-family: "Inter Variable";
    src: url("../fonts/Inter-Variable.ttf") format("truetype-variations");
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

.lp {
    font-family: "Inter Variable", var(--mud-typography-default-family, system-ui), sans-serif;
    --lp-ink: var(--mud-palette-text-primary);
    --lp-dim: var(--mud-palette-text-secondary);
    --lp-brand: var(--mud-palette-primary);
    --lp-on-brand: var(--mud-palette-primary-text);
    --lp-surface: var(--mud-palette-surface);
    --lp-line: var(--mud-palette-lines-default);
    --lp-tint: color-mix(in srgb, var(--lp-brand) 6%, var(--mud-palette-background));
    --lp-gutter: clamp(1.1rem, 4vw, 2.5rem);
    --lp-radius: 0.85rem;

    background: var(--mud-palette-background);
    color: var(--lp-ink);
    overflow-x: clip;

    /* Own the full viewport width regardless of what encloses it. .lp-shell does the actual
       content centring, so this only guarantees backgrounds and borders reach the edges. */
    width: 100%;
    min-height: 100vh;
    margin-inline: 0;
    max-width: none;
}

.lp a { text-decoration: none; }

.lp-shell {
    width: min(74rem, 100%);
    margin-inline: auto;
    padding-inline: var(--lp-gutter);
}

/* ── Floating nav ───────────────────────────────────────────────────────── */

.lp-nav {
    position: sticky;
    top: 0.75rem;
    z-index: 20;
    padding-inline: var(--lp-gutter);
    margin-top: 0.75rem;
}

.lp-nav-inner {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    width: min(74rem, 100%);
    margin-inline: auto;
    padding: 0.6rem 0.7rem 0.6rem 1.1rem;
    border: 1px solid var(--lp-line);
    border-radius: 999px;
    /* Translucent so hero colour shows through as the page scrolls under it. */
    background: color-mix(in srgb, var(--lp-surface) 82%, transparent);
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 14px rgb(0 0 0 / 0.05);
}

.lp-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    color: inherit;
}

.lp-logo-mark {
    display: grid;
    place-items: center;
    width: 1.9rem;
    height: 1.9rem;
    border-radius: 0.55rem;
    background: var(--lp-brand);
    color: var(--lp-on-brand);
    font-size: 0.75rem;
    font-weight: 700;
}

.lp-logo-text {
    font-weight: 650;
    font-size: 1.02rem;
    letter-spacing: -0.015em;
}

.lp-nav-links {
    display: flex;
    gap: 1.5rem;
    margin: 0 auto 0 1rem;
    padding: 0;
    list-style: none;
    font-size: 0.92rem;
}

.lp-nav-links a {
    color: var(--lp-dim);
    transition: color 120ms ease;
}

.lp-nav-links a:hover { color: var(--lp-ink); }

@media (max-width: 46rem) {
    .lp-nav-links { display: none; }
    .lp-nav-inner { justify-content: space-between; }
}

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

.lp-hero {
    position: relative;
    isolation: isolate;
    padding-block: clamp(2.5rem, 8vh, 5rem) clamp(2.5rem, 7vh, 4.5rem);
}

.lp-hero-glow {
    position: absolute;
    inset-block-start: -30%;
    inset-inline-start: 50%;
    translate: -50% 0;
    z-index: -1;
    width: min(78rem, 150%);
    aspect-ratio: 1;
    border-radius: 50%;
    background: radial-gradient(
        closest-side,
        color-mix(in srgb, var(--lp-brand) 20%, transparent),
        transparent 70%);
}

.lp-hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(2.5rem, 6vw, 4rem);
    align-items: center;
}

@media (min-width: 62rem) {
    .lp-hero-grid { grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr); }
}

.lp-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0 0 1.25rem;
    padding: 0.35rem 0.85rem 0.35rem 0.6rem;
    border: 1px solid color-mix(in srgb, var(--lp-brand) 25%, var(--lp-line));
    border-radius: 999px;
    background: color-mix(in srgb, var(--lp-brand) 9%, transparent);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--lp-brand);
}

.lp-badge-dot {
    width: 0.45rem;
    height: 0.45rem;
    border-radius: 50%;
    background: var(--lp-brand);
}

.lp-title {
    margin: 0;
    font-size: clamp(2.3rem, 5.4vw, 3.9rem);
    line-height: 1.06;
    font-weight: 700;
    letter-spacing: -0.035em;
    text-wrap: balance;
}

.lp-title-accent {
    display: block;
    color: var(--lp-brand);
}

.lp-lede {
    margin: 1.35rem 0 0;
    max-width: 34rem;
    font-size: clamp(1rem, 1.4vw, 1.12rem);
    line-height: 1.65;
    color: var(--lp-dim);
    text-wrap: pretty;
}

.lp-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.8rem;
    margin-top: 2rem;
}

.lp-signed-in {
    font-size: 0.88rem;
    color: var(--lp-dim);
}

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

.lp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    min-height: 2.85rem;
    padding-inline: 1.5rem;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 0.94rem;
    font-weight: 600;
    cursor: pointer;
    transition: translate 120ms ease, box-shadow 120ms ease, background-color 120ms ease;
}

.lp-btn-sm {
    min-height: 2.35rem;
    padding-inline: 1.15rem;
    font-size: 0.88rem;
}

.lp-btn:focus-visible {
    outline: 2px solid var(--lp-brand);
    outline-offset: 3px;
}

/* Sign-in while the identity provider is unreachable. Rendered as a <span>, so there is no link
   to follow; this only makes that legible. Keeps the button's footprint so the hero and the nav
   do not reflow when the provider drops. */
.lp-btn.is-disabled {
    opacity: 0.45;
    cursor: not-allowed;
    box-shadow: none;
    pointer-events: none;
}

.lp-btn-primary {
    background: var(--lp-brand);
    color: var(--lp-on-brand);
    box-shadow: 0 1px 2px rgb(0 0 0 / 0.14);
}

.lp-btn-primary:hover {
    translate: 0 -1px;
    box-shadow: 0 8px 20px color-mix(in srgb, var(--lp-brand) 36%, transparent);
}

.lp-btn-ghost {
    color: var(--lp-ink);
    border-color: var(--lp-line);
    background: var(--lp-surface);
}

.lp-btn-ghost:hover {
    background: color-mix(in srgb, var(--lp-brand) 8%, var(--lp-surface));
    border-color: color-mix(in srgb, var(--lp-brand) 40%, var(--lp-line));
}

.lp-btn-invert {
    background: var(--lp-surface);
    color: var(--lp-brand);
}

.lp-btn-invert:hover {
    translate: 0 -1px;
    box-shadow: 0 8px 22px rgb(0 0 0 / 0.18);
}

/* ── Stat band ──────────────────────────────────────────────────────────── */

.lp-stats {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(1.5rem, 5vw, 3rem);
    margin: clamp(2.25rem, 5vh, 3rem) 0 0;
    padding-top: 1.75rem;
    border-top: 1px solid var(--lp-line);
}

.lp-stat { margin: 0; }

.lp-stat-value {
    margin: 0;
    font-size: clamp(1.4rem, 2.3vw, 1.8rem);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.lp-stat-label {
    margin: 0.1rem 0 0;
    font-size: 0.83rem;
    color: var(--lp-dim);
}

/* ── Hero product preview ───────────────────────────────────────────────── */

.lp-preview {
    position: relative;
    /* Slight perspective tilt, as in the reference comps. */
    rotate: -0.6deg;
}

.lp-window {
    border: 1px solid var(--lp-line);
    border-radius: 1rem;
    background: var(--lp-surface);
    box-shadow: 0 24px 60px rgb(0 0 0 / 0.14);
    overflow: hidden;
}

.lp-window-bar {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.7rem 0.95rem;
    border-bottom: 1px solid var(--lp-line);
    background: var(--lp-tint);
}

.lp-dot { width: 0.6rem; height: 0.6rem; border-radius: 50%; }
.lp-dot-a { background: #f45f57; }
.lp-dot-b { background: #f5bd4f; }
.lp-dot-c { background: #4fc44f; }

.lp-window-title {
    margin-left: 0.6rem;
    font-size: 0.78rem;
    color: var(--lp-dim);
}

.lp-window-body { padding: 1.1rem; }

.lp-kpis {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.6rem;
    margin-bottom: 1rem;
}

.lp-kpi {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    padding: 0.7rem 0.75rem;
    border: 1px solid var(--lp-line);
    border-radius: 0.6rem;
    background: var(--lp-tint);
}

.lp-kpi-label { font-size: 0.68rem; color: var(--lp-dim); }

.lp-kpi-value {
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    font-variant-numeric: tabular-nums;
}

.lp-kpi-delta {
    font-size: 0.68rem;
    font-weight: 600;
    color: #12925b;
}

.lp-ledger {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.78rem;
    font-variant-numeric: tabular-nums;
}

.lp-ledger td {
    padding: 0.5rem 0.15rem;
    border-bottom: 1px solid color-mix(in srgb, var(--lp-line) 60%, transparent);
}

.lp-ledger-acct { color: var(--lp-dim); }

.lp-ledger-num { text-align: right; }

.lp-ledger-total td {
    border-bottom: none;
    padding-top: 0.7rem;
    font-weight: 700;
    color: var(--lp-ink);
}

/* Floating callout chips, as in the reference comps. */
.lp-float {
    position: absolute;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 0.85rem;
    border: 1px solid var(--lp-line);
    border-radius: 999px;
    background: var(--lp-surface);
    box-shadow: 0 10px 26px rgb(0 0 0 / 0.12);
    font-size: 0.78rem;
    font-weight: 600;
    white-space: nowrap;
}

.lp-float-a {
    inset-block-start: -0.9rem;
    inset-inline-end: 1.5rem;
    color: #12925b;
}

.lp-float-b {
    inset-block-end: -0.9rem;
    inset-inline-start: -0.6rem;
    color: var(--lp-ink);
}

.lp-float-value {
    font-size: 1rem;
    font-weight: 700;
    color: var(--lp-brand);
}

@media (max-width: 62rem) {
    .lp-preview { rotate: none; margin-inline: auto; max-width: 32rem; }
    .lp-float-b { inset-inline-start: 0.5rem; }
}

/* ── Trust strip ────────────────────────────────────────────────────────── */

.lp-trust {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.9rem 1.75rem;
    margin-top: clamp(2.5rem, 7vh, 4rem);
    padding-top: 1.75rem;
    border-top: 1px solid var(--lp-line);
}

.lp-trust-label {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--lp-dim);
}

.lp-trust-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem 1.5rem;
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 0.92rem;
    font-weight: 600;
    color: color-mix(in srgb, var(--lp-ink) 62%, transparent);
}

/* ── Sections ───────────────────────────────────────────────────────────── */

.lp-section { padding-block: clamp(3.25rem, 9vh, 5.75rem); }

.lp-section-alt {
    background: var(--lp-tint);
    border-block: 1px solid var(--lp-line);
}

.lp-kicker {
    margin: 0 0 0.6rem;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: var(--lp-brand);
}

.lp-section-title {
    margin: 0;
    font-size: clamp(1.65rem, 3.2vw, 2.3rem);
    font-weight: 700;
    letter-spacing: -0.028em;
    text-wrap: balance;
}

.lp-section-lede {
    margin: 0.85rem 0 0;
    max-width: 42rem;
    line-height: 1.65;
    color: var(--lp-dim);
    text-wrap: pretty;
}

/* ── Cards ──────────────────────────────────────────────────────────────── */

.lp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 17rem), 1fr));
    gap: 1.1rem;
    margin-top: 2.5rem;
}

.lp-card {
    padding: 1.5rem 1.4rem 1.65rem;
    border: 1px solid var(--lp-line);
    border-radius: var(--lp-radius);
    background: var(--lp-surface);
    transition: translate 140ms ease, box-shadow 140ms ease, border-color 140ms ease;
}

.lp-card:hover {
    translate: 0 -3px;
    border-color: color-mix(in srgb, var(--lp-brand) 38%, var(--lp-line));
    box-shadow: 0 12px 30px rgb(0 0 0 / 0.09);
}

.lp-card-icon {
    display: grid;
    place-items: center;
    flex: none;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.6rem;
    background: color-mix(in srgb, var(--lp-brand) 13%, transparent);
    color: var(--lp-brand);
}

.lp-card-title {
    margin: 1rem 0 0;
    font-size: 1.05rem;
    font-weight: 650;
    letter-spacing: -0.012em;
}

.lp-card-body {
    margin: 0.45rem 0 0;
    font-size: 0.92rem;
    line-height: 1.6;
    color: var(--lp-dim);
    text-wrap: pretty;
}

/* Two-column icon+text list (platform section). */
.lp-split {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 24rem), 1fr));
    gap: 1.75rem 2.5rem;
    margin-top: 2.5rem;
}

.lp-split-item {
    display: flex;
    gap: 1rem;
}

.lp-split-item .lp-card-title { margin-top: 0.15rem; }

/* ── Standards chips ────────────────────────────────────────────────────── */

.lp-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin: 2rem 0 0;
    padding: 0;
    list-style: none;
}

.lp-chip {
    padding: 0.4rem 0.9rem;
    border: 1px solid color-mix(in srgb, var(--lp-brand) 26%, var(--lp-line));
    border-radius: 999px;
    background: var(--lp-surface);
    font-size: 0.83rem;
    font-weight: 600;
    font-variant-numeric: tabular-nums;
}

/* ── Closing CTA ────────────────────────────────────────────────────────── */

.lp-cta-wrap { padding-block: clamp(2.5rem, 7vh, 4rem); }

.lp-cta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.75rem;
    padding: clamp(2rem, 5vw, 3.25rem);
    border-radius: 1.25rem;
    background: linear-gradient(
        120deg,
        var(--lp-brand),
        color-mix(in srgb, var(--lp-brand) 62%, #7c4dff));
    color: var(--lp-on-brand);
    box-shadow: 0 18px 44px color-mix(in srgb, var(--lp-brand) 30%, transparent);
}

.lp-cta-title {
    margin: 0;
    font-size: clamp(1.5rem, 2.9vw, 2.05rem);
    font-weight: 700;
    letter-spacing: -0.025em;
}

.lp-cta-body {
    margin: 0.4rem 0 0;
    opacity: 0.9;
}

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

.lp-footer {
    padding-block: clamp(2.5rem, 6vh, 3.5rem) 1.5rem;
    border-top: 1px solid var(--lp-line);
    background: var(--lp-tint);
}

.lp-footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 12rem), 1fr));
    gap: 2rem;
}

.lp-footer-grid > div:first-child { grid-column: span 1; max-width: 20rem; }

.lp-footer-blurb {
    margin: 0.85rem 0 0;
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--lp-dim);
}

.lp-footer-heading {
    margin: 0 0 0.75rem;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: var(--lp-dim);
}

.lp-footer-col ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.5rem;
    font-size: 0.92rem;
}

.lp-footer-col a {
    color: var(--lp-ink);
    transition: color 120ms ease;
}

.lp-footer-col a:hover { color: var(--lp-brand); }

.lp-footer-base {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: space-between;
    margin-top: 2.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--lp-line);
    font-size: 0.84rem;
}

.lp-footer-dim { color: var(--lp-dim); }

/* Respect users who ask for less motion. */
@media (prefers-reduced-motion: reduce) {
    .lp-btn, .lp-card, .lp-nav-links a, .lp-footer-col a { transition: none; }
    .lp-btn:hover, .lp-card:hover { translate: none; }
    .lp-preview { rotate: none; }
}

/* ── Setup / degraded-status page ───────────────────────────────────────── */

.lp-setup { max-width: 46rem; }

.lp-kicker-warn { color: #b26a00; }

.lp-setup-h2 {
    margin: 2.5rem 0 0;
    font-size: 1.15rem;
    font-weight: 650;
    letter-spacing: -0.015em;
}

.lp-callout {
    display: grid;
    gap: 0.5rem;
    margin-top: 1.75rem;
    padding: 1.1rem 1.25rem;
    border: 1px solid color-mix(in srgb, #b26a00 32%, var(--lp-line));
    border-left-width: 3px;
    border-radius: var(--lp-radius);
    background: color-mix(in srgb, #b26a00 6%, var(--lp-surface));
}

.lp-callout-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #b26a00;
}

.lp-callout-body {
    font-family: ui-monospace, "Cascadia Code", "Fira Code", monospace;
    font-size: 0.86rem;
    line-height: 1.55;
    color: var(--lp-ink);
    overflow-wrap: anywhere;
}

.lp-steps {
    display: grid;
    gap: 1rem;
    margin: 1.25rem 0 0;
    padding-left: 1.15rem;
}

.lp-steps li { line-height: 1.6; }

.lp-steps strong { display: block; font-weight: 650; }

.lp-steps span {
    display: block;
    margin-top: 0.15rem;
    font-size: 0.93rem;
    color: var(--lp-dim);
}

.lp-setup-note {
    margin-top: 1.75rem;
    font-size: 0.9rem;
    color: var(--lp-dim);
}

/* ── Dependency health rows (status page) ───────────────────────────────── */

.lp-health {
    display: grid;
    gap: 0.75rem;
    margin-top: 1.75rem;
}

.lp-health-row {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    padding: 0.9rem 1.1rem;
    border: 1px solid var(--lp-line);
    border-radius: var(--lp-radius);
    background: var(--lp-surface);
}

.lp-health-row strong { display: block; font-weight: 650; }

.lp-health-row span:not(.lp-pill) {
    display: block;
    margin-top: 0.1rem;
    font-size: 0.88rem;
    color: var(--lp-dim);
}

.lp-pill {
    flex: none;
    min-width: 3.4rem;
    padding: 0.2rem 0.6rem;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-align: center;
    text-transform: uppercase;
}

.lp-pill-ok {
    background: color-mix(in srgb, #12925b 14%, transparent);
    color: #0d7346;
}

.lp-pill-bad {
    background: color-mix(in srgb, #c62828 13%, transparent);
    color: #b3261e;
}

/* ── Module extras + industry grid ──────────────────────────────────────── */

.lp-subhead {
    margin: 2.75rem 0 0;
    font-size: 0.95rem;
    font-weight: 650;
    letter-spacing: -0.01em;
}

.lp-chip-quiet {
    border-color: var(--lp-line);
    font-weight: 500;
    color: var(--lp-dim);
}

.lp-industries {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 19rem), 1fr));
    gap: 0.75rem 1.5rem;
    margin-top: 2.5rem;
}

.lp-industry {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 0.85rem;
    border-radius: 0.65rem;
    transition: background-color 130ms ease;
}

.lp-industry:hover {
    background: color-mix(in srgb, var(--lp-brand) 7%, transparent);
}

.lp-industry-icon {
    display: grid;
    place-items: center;
    flex: none;
    width: 2rem;
    height: 2rem;
    border-radius: 0.5rem;
    background: color-mix(in srgb, var(--lp-brand) 12%, transparent);
    color: var(--lp-brand);
}

.lp-industry strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 650;
    letter-spacing: -0.01em;
}

.lp-industry span:not(.lp-industry-icon) {
    display: block;
    margin-top: 0.1rem;
    font-size: 0.86rem;
    line-height: 1.5;
    color: var(--lp-dim);
}

@media (prefers-reduced-motion: reduce) {
    .lp-industry { transition: none; }
}

/* ── How it works (numbered flow) ───────────────────────────────────────── */

.lp-steps-flow {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 16rem), 1fr));
    gap: 1.25rem;
    margin: 2.75rem 0 0;
    padding: 0;
    list-style: none;
    counter-reset: none;
}

.lp-step {
    position: relative;
    padding: 1.6rem 1.4rem 1.75rem;
    border: 1px solid var(--lp-line);
    border-radius: var(--lp-radius);
    background: var(--lp-surface);
}

.lp-step-num {
    position: absolute;
    top: -0.85rem;
    left: 1.4rem;
    display: grid;
    place-items: center;
    width: 1.7rem;
    height: 1.7rem;
    border-radius: 50%;
    background: var(--lp-brand);
    color: var(--lp-on-brand);
    font-size: 0.78rem;
    font-weight: 700;
}

.lp-step-icon {
    display: grid;
    place-items: center;
    width: 2.5rem;
    height: 2.5rem;
    margin-top: 0.5rem;
    border-radius: 0.6rem;
    background: color-mix(in srgb, var(--lp-brand) 13%, transparent);
    color: var(--lp-brand);
}

/* ── FAQ ────────────────────────────────────────────────────────────────── */

.lp-faq {
    display: grid;
    gap: 0.75rem;
    margin-top: 2.5rem;
    max-width: 48rem;
}

.lp-faq-item {
    border: 1px solid var(--lp-line);
    border-radius: var(--lp-radius);
    background: var(--lp-surface);
    overflow: hidden;
}

.lp-faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.25rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
}

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

/* Chevron drawn in CSS so the control needs no icon font or script. */
.lp-faq-item summary::after {
    content: "";
    flex: none;
    width: 0.55rem;
    height: 0.55rem;
    border-right: 2px solid var(--lp-brand);
    border-bottom: 2px solid var(--lp-brand);
    rotate: 45deg;
    transition: rotate 150ms ease;
}

.lp-faq-item[open] summary::after { rotate: -135deg; }

.lp-faq-item summary:focus-visible {
    outline: 2px solid var(--lp-brand);
    outline-offset: -2px;
}

.lp-faq-item p {
    margin: 0;
    padding: 0 1.25rem 1.15rem;
    line-height: 1.65;
    color: var(--lp-dim);
    text-wrap: pretty;
}

@media (prefers-reduced-motion: reduce) {
    .lp-faq-item summary::after { transition: none; }
}
