/* ============================================================
   Loan Pricer — site stylesheet
   Dark "terminal" identity: graphite base, EMERALD accent, mono figures.
   Family tie to Bulk Pricer: Inter + IBM Plex Mono, navy structural,
   shared rhythm. Distinct by design — green is the core-engine / best-ex
   color; amber appears only as the counter-offer marker.
   ============================================================ */
:root {
    --lp-graphite: #0E1726; --lp-graphite-2: #131F33; --lp-graphite-3: #0c1626;
    --lp-green: #2FBF71; --lp-green-deep: #12633A; --lp-green-bright: #5FD08A;
    --lp-navy: #052B66; --lp-amber: #E8A33D; --lp-text: #E6EAF2; --lp-muted: #93A1B8;
    --lp-faint: #5d6a80; --lp-line: rgba(255,255,255,0.09); --lp-ink: #04140b;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: Inter, system-ui, -apple-system, sans-serif; background: var(--lp-graphite); color: var(--lp-text); -webkit-font-smoothing: antialiased; line-height: 1.5; }
.mono { font-family: 'IBM Plex Mono', ui-monospace, monospace; }
a { text-decoration: none; }
.lp-container { max-width: 1080px; margin: 0 auto; padding: 0 28px; }
.lp-green { color: var(--lp-green); }
.lp-center { text-align: center; }

/* ===== NAV ===== */
.lp-nav { position: sticky; top: 0; z-index: 50; display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 16px max(28px, calc((100% - 1200px) / 2)); background: rgba(14, 23, 38, 0.82); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-bottom: 1px solid var(--lp-line); }
.lp-logo { display: flex; align-items: center; gap: 13px; }
.lp-logo__mark { width: 34px; height: 34px; border-radius: 8px; background: linear-gradient(140deg, var(--lp-green), var(--lp-green-deep)); position: relative; flex: none; box-shadow: 0 6px 18px rgba(47,191,113,.30); overflow: hidden; }
/* mini 2x2 pricing-grid glyph */
.lp-logo__mark::before { content: ""; position: absolute; left: 9px; top: 9px; width: 6px; height: 6px; border-radius: 1.5px; background: #04140b; box-shadow: 10px 0 0 #04140b, 0 10px 0 #04140b, 10px 10px 0 rgba(4,20,11,.55); opacity: .9; }
.lp-logo__txt { display: flex; flex-direction: column; line-height: 1; }
.lp-logo__name { font-weight: 700; font-size: 1.18rem; letter-spacing: -0.01em; color: var(--lp-text); }
.lp-logo__endorse { display: flex; align-items: center; gap: 6px; font-size: .58rem; letter-spacing: .14em; text-transform: uppercase; color: var(--lp-muted); margin-top: 6px; }
.lp-logo__endorse img { height: 13px; opacity: .92; }
.lp-nav__links { display: flex; align-items: center; gap: 28px; }
.lp-nav__link { color: var(--lp-muted); font-size: .92rem; font-weight: 500; transition: color .15s; }
.lp-nav__link:hover { color: var(--lp-text); }
.lp-nav__link.is-active { color: var(--lp-green); }
.lp-nav__cta { background: var(--lp-green); color: var(--lp-ink); font-weight: 600; padding: 10px 18px; border-radius: 9px; font-size: .9rem; transition: transform .15s, box-shadow .15s; }
.lp-nav__cta:hover { transform: translateY(-1px); box-shadow: 0 8px 22px rgba(47,191,113,.34); }
.lp-nav__toggle { display: none; background: none; border: none; color: var(--lp-text); font-size: 1.5rem; cursor: pointer; }

/* ===== BUTTONS ===== */
.lp-cta { display: inline-block; background: var(--lp-green); color: var(--lp-ink); font-weight: 600; padding: 14px 26px; border-radius: 11px; font-size: .98rem; transition: transform .15s, box-shadow .15s; border: none; cursor: pointer; }
.lp-cta:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(47,191,113,.34); }
.lp-cta--ghost { background: transparent; color: var(--lp-text); border: 1px solid var(--lp-line); }
.lp-cta--ghost:hover { border-color: var(--lp-green); box-shadow: none; }

/* ===== HERO (home) ===== */
.lp-hero { position: relative; overflow: hidden; padding-bottom: 70px; }
.lp-hero__bg { position: absolute; inset: 0; z-index: 0; }
.lp-hero__glow { position: absolute; top: -200px; right: -160px; width: 720px; height: 720px; background: radial-gradient(circle, rgba(47,191,113,.18), rgba(47,191,113,0) 62%); filter: blur(10px); }
.lp-hero__grid { position: absolute; inset: 0; background-image: repeating-linear-gradient(0deg, rgba(255,255,255,.028) 0, rgba(255,255,255,.028) 1px, transparent 1px, transparent 34px); mask-image: linear-gradient(180deg, transparent, #000 12%, #000 70%, transparent); }
.lp-hero__inner { position: relative; z-index: 2; max-width: 1200px; margin: 0 auto; padding: 30px 28px 0; display: grid; grid-template-columns: 1.04fr .96fr; gap: 54px; align-items: center; }
.lp-eyebrow { display: inline-flex; align-items: center; gap: 9px; font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--lp-green); font-weight: 600; margin-bottom: 20px; }
.lp-eyebrow::before { content: ""; width: 22px; height: 1.5px; background: var(--lp-green); }
.lp-h1 { font-size: clamp(2.5rem, 5vw, 3.95rem); line-height: 1.03; font-weight: 700; letter-spacing: -0.022em; margin: 0 0 22px; }
.lp-h1 em { color: var(--lp-green); font-style: normal; }
.lp-lead { font-size: 1.13rem; line-height: 1.6; color: var(--lp-muted); max-width: 32em; margin: 0 0 28px; }
.lp-lead strong { color: var(--lp-text); font-weight: 600; }
.lp-stats { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 32px; }
.lp-stat { border: 1px solid var(--lp-line); background: rgba(255,255,255,.025); border-radius: 10px; padding: 11px 15px; }
.lp-stat__n { font-family: 'IBM Plex Mono', monospace; font-size: 1.12rem; font-weight: 600; color: var(--lp-green); }
.lp-stat__l { font-size: .72rem; color: var(--lp-muted); margin-top: 3px; letter-spacing: .02em; }
.lp-cta-row { display: flex; gap: 14px; flex-wrap: wrap; }

/* ===== BEST-EX MATRIX PANEL (hero signature) ===== */
.lp-term { position: relative; background: linear-gradient(180deg, var(--lp-graphite-2), var(--lp-graphite-3)); border: 1px solid var(--lp-line); border-radius: 16px; box-shadow: 0 34px 90px rgba(0,0,0,.55); overflow: hidden; }
.lp-term__head { display: flex; align-items: center; gap: 10px; padding: 14px 18px; border-bottom: 1px solid var(--lp-line); }
.lp-term__dot { width: 9px; height: 9px; border-radius: 50%; background: var(--lp-green); box-shadow: 0 0 0 0 rgba(47,191,113,.55); animation: lppulse 1.8s infinite; flex: none; }
.lp-term__title { font-family: 'IBM Plex Mono', monospace; font-size: .76rem; color: var(--lp-muted); }
.lp-term__title b { color: var(--lp-text); font-weight: 600; }
.lp-term__badge { margin-left: auto; font-family: 'IBM Plex Mono', monospace; font-size: .68rem; color: var(--lp-green); border: 1px solid rgba(47,191,113,.35); border-radius: 20px; padding: 3px 10px; white-space: nowrap; }
/* two-engine flow strip inside the panel */
.lp-flowline { display: flex; align-items: center; gap: 8px; padding: 12px 18px; border-bottom: 1px solid var(--lp-line); font-family: 'IBM Plex Mono', monospace; font-size: .7rem; color: var(--lp-muted); background: rgba(47,191,113,.045); }
.lp-flowline b { color: var(--lp-green-bright); font-weight: 600; }
.lp-flowline .lp-flowline__arr { color: var(--lp-green); opacity: .6; }
/* the matrix */
.lp-matrix { position: relative; padding: 6px 0 0; }
.lp-matrix__row { display: grid; grid-template-columns: .9fr 1fr 1fr 1fr; align-items: center; gap: 8px; padding: 8px 18px; font-family: 'IBM Plex Mono', monospace; font-size: .82rem; }
.lp-matrix__row--head { font-size: .6rem; letter-spacing: .08em; text-transform: uppercase; color: #69768c; padding-bottom: 6px; border-bottom: 1px solid var(--lp-line); }
.lp-matrix__rate { color: var(--lp-text); }
.lp-matrix__cell { text-align: right; color: var(--lp-muted); border-radius: 6px; padding: 3px 8px; }
.lp-matrix__cell.best { color: var(--lp-ink); background: linear-gradient(180deg, var(--lp-green), var(--lp-green-deep)); font-weight: 700; box-shadow: 0 4px 16px rgba(47,191,113,.35); position: relative; }
.lp-matrix__cell.hi { color: var(--lp-green-bright); font-weight: 600; }
.lp-matrix__cell.co { color: var(--lp-amber); }
.lp-matrix__cell.no { color: #6b7689; }
.lp-matrix__scan { position: absolute; left: 0; right: 0; top: 0; height: 58px; background: linear-gradient(180deg, rgba(47,191,113,0), rgba(47,191,113,.10), rgba(47,191,113,0)); pointer-events: none; animation: lpscan 3.8s ease-in-out infinite; }
.lp-term__foot { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--lp-line); background: rgba(47,191,113,.06); }
.lp-wa { padding: 12px 16px; border-right: 1px solid var(--lp-line); }
.lp-wa:last-child { border-right: none; }
.lp-wa__k { font-size: .56rem; letter-spacing: .12em; text-transform: uppercase; color: var(--lp-muted); }
.lp-wa__v { font-family: 'IBM Plex Mono', monospace; font-weight: 600; font-size: 1.0rem; color: var(--lp-green); margin-top: 3px; }
.lp-term__cap { text-align: center; font-size: .68rem; color: var(--lp-faint); margin-top: 12px; font-style: italic; }

/* ===== PIPELINE STRIP ===== */
.lp-pipe { position: relative; z-index: 2; max-width: 1200px; margin: 14px auto 0; padding: 26px 28px 6px; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.lp-pipe__step { display: flex; align-items: center; gap: 10px; padding: 11px 16px; border: 1px solid var(--lp-line); border-radius: 11px; background: rgba(255,255,255,.022); }
.lp-pipe__n { font-family: 'IBM Plex Mono', monospace; font-size: .72rem; color: var(--lp-green); border: 1px solid rgba(47,191,113,.35); border-radius: 6px; width: 22px; height: 22px; display: grid; place-items: center; flex: none; }
.lp-pipe__l { font-weight: 600; font-size: .9rem; }
.lp-pipe__l span { display: block; font-weight: 400; font-size: .7rem; color: var(--lp-muted); margin-top: 1px; }
.lp-pipe__arrow { color: #44506a; }

/* ===== INNER PAGE HEADER ===== */
.lp-phead { position: relative; overflow: hidden; padding: 50px 0 36px; border-bottom: 1px solid var(--lp-line); }
.lp-phead__glow { position: absolute; top: -240px; left: 40%; width: 620px; height: 620px; background: radial-gradient(circle, rgba(47,191,113,.13), rgba(47,191,113,0) 62%); }
.lp-phead__inner { position: relative; z-index: 2; }
.lp-phead__title { font-size: clamp(2.1rem, 4vw, 3rem); font-weight: 700; letter-spacing: -0.02em; line-height: 1.08; margin: 0 0 16px; }
.lp-phead__title em { color: var(--lp-green); font-style: normal; }
.lp-phead__lead { font-size: 1.12rem; line-height: 1.6; color: var(--lp-muted); max-width: 44em; }
.lp-phead__lead strong { color: var(--lp-text); font-weight: 600; }

/* ===== SECTIONS ===== */
.lp-section { padding: 60px 0; }
.lp-section--alt { background: var(--lp-graphite-2); }
.lp-section--band { background: rgba(47,191,113,.045); border-top: 1px solid rgba(47,191,113,.16); border-bottom: 1px solid rgba(47,191,113,.16); }
.lp-shead { margin-bottom: 36px; max-width: 44em; }
.lp-shead--center { text-align: center; margin-left: auto; margin-right: auto; }
.lp-keyer { font-size: .7rem; letter-spacing: .16em; text-transform: uppercase; color: var(--lp-green); font-weight: 600; margin-bottom: 12px; }
.lp-h2 { font-size: clamp(1.6rem, 3vw, 2.15rem); font-weight: 700; letter-spacing: -0.02em; margin: 0; }
.lp-sub { color: var(--lp-muted); font-size: 1.05rem; margin-top: 10px; line-height: 1.6; }

/* ===== CARD GRID ===== */
.lp-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 18px; }
.lp-grid--2 { grid-template-columns: repeat(2, 1fr); }
.lp-grid--3 { grid-template-columns: repeat(3, 1fr); }
.lp-card { background: rgba(255,255,255,.025); border: 1px solid var(--lp-line); border-radius: 14px; padding: 26px; }
.lp-card__icon { color: var(--lp-green); font-size: 1.5rem; margin-bottom: 14px; line-height: 1; }
.lp-card__title { font-weight: 700; font-size: 1.12rem; margin: 0 0 9px; }
.lp-card__body { color: var(--lp-muted); line-height: 1.65; font-size: .96rem; margin: 0; }
.lp-card__body strong { color: var(--lp-text); }
.lp-card code { font-family: 'IBM Plex Mono', monospace; color: var(--lp-green-bright); font-size: .86em; }
.lp-card--feature { border-top: 2px solid var(--lp-green); }

/* ===== TWO-ENGINE DUO ===== */
.lp-duo { display: grid; grid-template-columns: 1fr auto 1fr; gap: 18px; align-items: stretch; }
.lp-duo__panel { background: rgba(255,255,255,.025); border: 1px solid var(--lp-line); border-radius: 14px; padding: 26px; }
.lp-duo__panel--accent { border-color: rgba(47,191,113,.4); background: rgba(47,191,113,.06); }
.lp-duo__tag { font-family: 'IBM Plex Mono', monospace; font-size: .68rem; letter-spacing: .06em; text-transform: uppercase; color: var(--lp-green); margin-bottom: 10px; }
.lp-duo__q { font-size: 1.35rem; font-weight: 700; letter-spacing: -0.01em; margin-bottom: 10px; }
.lp-duo__desc { color: var(--lp-muted); line-height: 1.65; margin: 0; font-size: .96rem; }
.lp-duo__arrow { display: grid; place-items: center; color: var(--lp-green); font-size: 1.5rem; }
.lp-duo__note { margin-top: 20px; color: var(--lp-muted); line-height: 1.7; max-width: 62em; }
.lp-duo__note strong { color: var(--lp-text); }

/* ===== STAGE BLOCKS ===== */
.lp-stage { display: grid; grid-template-columns: 64px 1fr; gap: 24px; padding: 34px 0; border-bottom: 1px solid var(--lp-line); }
.lp-stage:last-child { border-bottom: none; }
.lp-stage__num { font-family: 'IBM Plex Mono', monospace; font-size: 1.3rem; font-weight: 600; color: var(--lp-green); border: 1px solid rgba(47,191,113,.35); border-radius: 12px; width: 56px; height: 56px; display: grid; place-items: center; }
.lp-stage__title { font-size: 1.4rem; font-weight: 700; letter-spacing: -0.01em; margin: 4px 0 10px; }
.lp-stage__lead { color: var(--lp-text); font-size: 1.05rem; line-height: 1.6; margin: 0 0 8px; }
.lp-stage__body { color: var(--lp-muted); line-height: 1.65; margin: 0; max-width: 54em; }
.lp-stage__body strong { color: var(--lp-text); }

/* ===== SPEC LIST ===== */
.lp-spec { margin-top: 18px; border: 1px solid var(--lp-line); border-radius: 12px; overflow: hidden; }
.lp-spec__row { display: grid; grid-template-columns: 200px 1fr; gap: 16px; padding: 11px 16px; border-bottom: 1px solid var(--lp-line); font-size: .92rem; }
.lp-spec__row:last-child { border-bottom: none; }
.lp-spec__k { color: var(--lp-green); font-weight: 600; font-family: 'IBM Plex Mono', monospace; font-size: .74rem; letter-spacing: .04em; text-transform: uppercase; padding-top: 2px; }
.lp-spec__v { color: var(--lp-muted); }
.lp-spec__v code { font-family: 'IBM Plex Mono', monospace; color: var(--lp-green-bright); font-size: .88em; }

/* ===== USE-CASE / FEATURE LANES ===== */
.lp-lane { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 40px; align-items: center; padding: 40px 0; border-bottom: 1px solid var(--lp-line); }
.lp-lane:last-child { border-bottom: none; }
.lp-lane--flip .lp-lane__panel { order: -1; }
.lp-lane__tag { display: inline-block; font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; color: var(--lp-green); border: 1px solid rgba(47,191,113,.35); border-radius: 20px; padding: 4px 12px; margin-bottom: 14px; font-weight: 600; }
.lp-lane__title { font-size: 1.5rem; font-weight: 700; letter-spacing: -0.01em; margin: 0 0 12px; }
.lp-lane__body { color: var(--lp-muted); line-height: 1.7; margin: 0 0 14px; }
.lp-lane__body strong { color: var(--lp-text); }
.lp-lane__panel { background: rgba(255,255,255,.025); border: 1px solid var(--lp-line); border-radius: 14px; padding: 22px; }
.lp-lane__panel ul { margin: 0; padding-left: 18px; }
.lp-lane__panel li { color: var(--lp-muted); line-height: 1.6; margin-bottom: 9px; font-size: .94rem; }
.lp-lane__panel li::marker { color: var(--lp-green); }

/* ===== CALLOUT ===== */
.lp-callout { display: flex; gap: 18px; background: rgba(47,191,113,.06); border: 1px solid rgba(47,191,113,.25); border-radius: 14px; padding: 26px 28px; }
.lp-callout__icon { color: var(--lp-green); font-size: 1.7rem; line-height: 1; flex: none; }
.lp-callout__title { font-weight: 700; font-size: 1.15rem; margin: 0 0 8px; }
.lp-callout__body { color: var(--lp-muted); line-height: 1.65; margin: 0; }
.lp-callout__body strong { color: var(--lp-text); }
.lp-callout__body code { font-family: 'IBM Plex Mono', monospace; color: var(--lp-green-bright); font-size: .88em; }

/* ===== STAT BAND ===== */
.lp-statband { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.lp-statband__item { text-align: center; }
.lp-statband__n { font-family: 'IBM Plex Mono', monospace; font-size: 2.2rem; font-weight: 600; color: var(--lp-green); }
.lp-statband__l { font-size: .82rem; color: var(--lp-muted); margin-top: 6px; line-height: 1.4; }
.lp-statband__l strong { color: var(--lp-text); }

/* ===== PHONE MOCK (mobile page) ===== */
.lp-phone { position: relative; width: 300px; margin: 0 auto; border: 10px solid #1c2740; border-radius: 42px; background: var(--lp-graphite-3); box-shadow: 0 34px 90px rgba(0,0,0,.55); overflow: hidden; }
.lp-phone__notch { position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 120px; height: 22px; background: #1c2740; border-radius: 0 0 14px 14px; z-index: 3; }
.lp-phone__screen { padding: 34px 16px 20px; }
.lp-phone__bar { display: flex; align-items: center; gap: 8px; font-family: 'IBM Plex Mono', monospace; font-size: .64rem; color: var(--lp-muted); margin-bottom: 12px; }
.lp-phone__bar .lp-term__dot { width: 7px; height: 7px; }
.lp-phone__card { background: rgba(255,255,255,.03); border: 1px solid var(--lp-line); border-radius: 12px; padding: 12px 13px; margin-bottom: 10px; }
.lp-phone__k { font-size: .58rem; letter-spacing: .1em; text-transform: uppercase; color: var(--lp-muted); }
.lp-phone__v { font-family: 'IBM Plex Mono', monospace; font-size: .92rem; color: var(--lp-text); margin-top: 3px; }
.lp-phone__v.best { color: var(--lp-green-bright); font-weight: 600; }
.lp-phone__cta { text-align: center; background: linear-gradient(180deg, var(--lp-green), var(--lp-green-deep)); color: var(--lp-ink); font-weight: 700; font-size: .82rem; padding: 11px; border-radius: 10px; }
/* full-bleed boot-splash screen (real app splash image) */
.lp-phone--splash { background: #052b66; width: 244px; }
.lp-phone__splash { aspect-ratio: 300 / 620; background: #052b66 url('images/loanpricer-mobile-splash.png') center/cover no-repeat; }
.lp-phone__splashcap { position: absolute; left: 0; right: 0; bottom: 20px; text-align: center; z-index: 3; }
.lp-phone__splashcap b { display: block; color: #fff; font-weight: 700; font-size: .98rem; letter-spacing: .01em; }
.lp-phone__splashcap span { display: block; font-size: .56rem; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.7); margin-top: 5px; }
.lp-phone__splashcap span i { color: #63C174; font-style: normal; } /* brand rule: only the "1" is green */

/* ===== CONTACT FORM ===== */
.lp-form { max-width: 560px; }
.lp-field { margin-bottom: 16px; }
.lp-label { display: block; font-size: .85rem; font-weight: 500; color: var(--lp-text); margin-bottom: 7px; }
.lp-input, .lp-textarea { width: 100%; padding: 12px 15px; background: rgba(255,255,255,.03); border: 1px solid var(--lp-line); border-radius: 10px; color: var(--lp-text); font-family: inherit; font-size: .95rem; }
.lp-input:focus, .lp-textarea:focus { outline: none; border-color: var(--lp-green); box-shadow: 0 0 0 3px rgba(47,191,113,.18); }
.lp-input::placeholder, .lp-textarea::placeholder { color: var(--lp-faint); }
.lp-textarea { min-height: 120px; resize: vertical; }
select.lp-input { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%2393A1B8' d='M1 1l5 5 5-5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 15px center; padding-right: 38px; }
.contact-form__submit--success { background: var(--lp-green); color: var(--lp-ink); }
.contact-form__submit--error { background: #d9534f; color: #fff; }

/* ===== FOOTER ===== */
.lp-footer { border-top: 1px solid var(--lp-line); padding: 38px 0 34px; background: var(--lp-graphite-3); margin-top: 20px; }
.lp-footer__inner { max-width: 1200px; margin: 0 auto; padding: 0 28px; display: flex; flex-wrap: wrap; gap: 18px 28px; align-items: center; justify-content: space-between; }
.lp-footer__powered { display: flex; align-items: center; gap: 8px; font-size: .8rem; color: var(--lp-muted); }
.lp-footer__powered img { height: 16px; }
.lp-footer__links { display: flex; gap: 22px; flex-wrap: wrap; }
.lp-footer__link { color: var(--lp-muted); font-size: .9rem; }
.lp-footer__link:hover { color: var(--lp-text); }
.lp-footer__copy { color: var(--lp-faint); font-size: .8rem; width: 100%; margin-top: 4px; }

@keyframes lppulse { 0% { box-shadow: 0 0 0 0 rgba(47,191,113,.5); } 70% { box-shadow: 0 0 0 8px rgba(47,191,113,0); } 100% { box-shadow: 0 0 0 0 rgba(47,191,113,0); } }
@keyframes lpscan { 0% { transform: translateY(-60px); opacity: 0; } 40% { opacity: 1; } 100% { transform: translateY(360px); opacity: 0; } }

/* ===== RESPONSIVE ===== */
@media (max-width: 920px) {
    .lp-hero__inner { grid-template-columns: 1fr; gap: 38px; }
    .lp-term { max-width: 520px; }
    .lp-nav__links { position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; align-items: stretch; gap: 0; background: var(--lp-graphite-2); border-bottom: 1px solid var(--lp-line); padding: 8px 0; display: none; }
    .lp-nav__links--open { display: flex; }
    .lp-nav__links .lp-nav__link, .lp-nav__links .lp-nav__cta { padding: 14px 28px; border-radius: 0; text-align: left; }
    .lp-nav__toggle { display: block; }
    .lp-pipe__step:nth-child(n+8) { display: none; }
    .lp-grid--2, .lp-grid--3 { grid-template-columns: 1fr; }
    .lp-duo { grid-template-columns: 1fr; }
    .lp-duo__arrow { transform: rotate(90deg); }
    .lp-lane { grid-template-columns: 1fr; gap: 22px; }
    .lp-lane--flip .lp-lane__panel { order: 0; }
    .lp-statband { grid-template-columns: repeat(2, 1fr); gap: 26px 18px; }
}
@media (max-width: 560px) {
    .lp-stage { grid-template-columns: 1fr; gap: 14px; }
    .lp-spec__row { grid-template-columns: 1fr; gap: 4px; }
    .lp-term__foot { grid-template-columns: repeat(2, 1fr); }
    .lp-wa:nth-child(2) { border-right: none; }
    .lp-wa:nth-child(-n+2) { border-bottom: 1px solid var(--lp-line); }
}
@media (prefers-reduced-motion: reduce) { .lp-matrix__scan, .lp-term__dot { animation: none; } }
