/* ============================================================
   declar.ar — Landing redesign (2026)
   Aesthetic: clean / airy SaaS · navy #242c4f + green #10B981 · SF Pro
   Scoped with the `lp-` prefix so it never collides with the shared
   styles.min.css (which still powers the footer, WhatsApp button and base
   reset/@font-face). Loaded AFTER styles.min.css.
   ============================================================ */

:root {
    --lp-ink: #242c4f;
    --lp-ink-2: #1a2140;
    --lp-green: #10b981;
    --lp-green-600: #059669;
    --lp-mint: #ecfdf5;
    --lp-mint-2: #d1fae5;
    --lp-bg: #ffffff;
    --lp-bg-soft: #f7f9fc;
    --lp-line: #e7eaf1;
    --lp-line-2: #dfe3ee;
    --lp-text: #1f2937;
    --lp-muted: #6b7280;
    --lp-radius: 22px;
    --lp-radius-sm: 14px;
    --lp-radius-lg: 28px;
    --lp-shadow-sm: 0 1px 2px rgba(16, 24, 40, .05);
    --lp-shadow: 0 1px 2px rgba(16, 24, 40, .04), 0 14px 34px -14px rgba(36, 44, 79, .16);
    --lp-shadow-lg: 0 28px 64px -22px rgba(36, 44, 79, .28);
    --lp-ease: cubic-bezier(.22, 1, .36, 1);
}

/* ---- Layout primitives ---------------------------------------------------- */
.lp-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.lp-section {
    padding: clamp(64px, 9vw, 116px) 0;
}

.lp-section--soft {
    background-color: var(--lp-bg-soft);
    background-image: radial-gradient(rgba(36, 44, 79, .05) 1px, transparent 1px);
    background-size: 22px 22px;
}

/* Ambient background wash for the whole landing (behind transparent sections)
   so the white areas never read as flat/empty. Fixed = subtle, calm parallax. */
.lp-page::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background:
        radial-gradient(44% 34% at 88% 3%, rgba(16, 185, 129, .07), transparent 72%),
        radial-gradient(40% 32% at 2% 26%, rgba(36, 44, 79, .05), transparent 72%),
        radial-gradient(40% 30% at 98% 62%, rgba(16, 185, 129, .06), transparent 72%),
        radial-gradient(38% 30% at 4% 90%, rgba(36, 44, 79, .045), transparent 72%);
}

/* smooth-scroll offset so anchored sections clear the floating nav */
.lp-section,
.lp-hero {
    scroll-margin-top: 96px;
}

/* ---- Shared type + eyebrow ------------------------------------------------ */
.lp-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .55em;
    font-family: var(--font-family-mono);
    font-size: .74rem;
    font-weight: 600;
    letter-spacing: .11em;
    text-transform: uppercase;
    color: var(--lp-green-600);
    background: var(--lp-mint);
    border: 1px solid var(--lp-mint-2);
    padding: .5em .85em;
    border-radius: 999px;
}

.lp-eyebrow .lp-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--lp-green);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, .18);
}

.lp-head {
    max-width: 680px;
    margin: 0 auto clamp(42px, 6vw, 68px);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}

.lp-title {
    font-family: var(--font-family-heading);
    font-weight: 700;
    letter-spacing: -.028em;
    line-height: 1.08;
    color: var(--lp-ink);
    font-size: clamp(1.85rem, 3.6vw, 2.7rem);
    margin: 0;
}

.lp-desc {
    color: var(--lp-muted);
    font-size: clamp(1rem, 1.4vw, 1.16rem);
    line-height: 1.65;
    margin: 0;
    max-width: 60ch;
}

/* ---- Buttons -------------------------------------------------------------- */
.lp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5em;
    font-family: var(--font-family-button);
    font-weight: 600;
    font-size: 1rem;
    line-height: 1;
    padding: .92em 1.5em;
    border-radius: 999px;
    border: 1px solid transparent;
    cursor: pointer;
    white-space: nowrap;
    transition: transform .2s var(--lp-ease), box-shadow .2s var(--lp-ease), background .2s ease, border-color .2s ease;
}

.lp-btn svg {
    width: 1.1em;
    height: 1.1em;
}

.lp-btn-primary {
    background: var(--lp-ink);
    color: #fff;
    box-shadow: 0 10px 22px -10px rgba(36, 44, 79, .55);
}

.lp-btn-primary:hover {
    background: var(--lp-ink-2);
    transform: translateY(-2px);
    box-shadow: 0 16px 30px -12px rgba(36, 44, 79, .6);
}

.lp-btn-green {
    background: var(--lp-green);
    color: #fff;
    box-shadow: 0 10px 22px -10px rgba(16, 185, 129, .6);
}

.lp-btn-green:hover {
    background: var(--lp-green-600);
    transform: translateY(-2px);
}

.lp-btn-secondary {
    background: #fff;
    color: var(--lp-ink);
    border-color: var(--lp-line);
}

.lp-btn-secondary:hover {
    border-color: var(--lp-line-2);
    transform: translateY(-2px);
    box-shadow: var(--lp-shadow);
}

.lp-btn-ghost {
    background: transparent;
    color: var(--lp-ink);
}

.lp-btn-ghost:hover {
    background: var(--lp-bg-soft);
}

.lp-btn-lg {
    font-size: 1.06rem;
    padding: 1.05em 1.8em;
}

.lp-btn-arrow {
    transition: transform .2s var(--lp-ease);
}

.lp-btn:hover .lp-btn-arrow {
    transform: translateX(3px);
}

/* ============================================================
   Floating pill navbar  (keeps id="header" for shared script)
   ============================================================ */
.lp-nav {
    position: fixed;
    top: 14px;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    justify-content: center;
    padding: 0 16px;
    pointer-events: none;
}

.lp-nav-inner {
    pointer-events: auto;
    width: 100%;
    max-width: 1120px;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 9px 9px 9px 20px;
    background: rgba(255, 255, 255, .72);
    -webkit-backdrop-filter: blur(16px) saturate(170%);
    backdrop-filter: blur(16px) saturate(170%);
    border: 1px solid rgba(231, 234, 241, .9);
    border-radius: 999px;
    box-shadow: 0 10px 30px -16px rgba(36, 44, 79, .3);
    transition: transform .28s var(--lp-ease), background .28s ease, box-shadow .28s ease, border-radius .28s ease;
}

.lp-nav.scrolled .lp-nav-inner {
    background: rgba(255, 255, 255, .92);
    box-shadow: 0 14px 34px -14px rgba(36, 44, 79, .34);
    transform: scale(.982);
}

.lp-nav-brand {
    display: inline-flex;
    align-items: center;
    gap: .5em;
    font-family: var(--font-family-heading);
    font-weight: 700;
    font-size: 1.14rem;
    letter-spacing: -.02em;
    color: var(--lp-ink);
}

.lp-nav-brand img {
    width: 27px;
    height: 27px;
    display: block;
}

.lp-nav-links {
    display: flex;
    align-items: center;
    gap: 2px;
    margin: 0 auto;
}

.lp-nav-links a {
    padding: .55em .8em;
    border-radius: 999px;
    color: #3b4363;
    font-weight: 500;
    font-size: .94rem;
    transition: background .18s ease, color .18s ease;
}

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

.lp-nav-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.lp-nav-actions .lp-btn {
    padding: .7em 1.15em;
    font-size: .93rem;
}

.lp-nav-burger {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    background: transparent;
    border-radius: 12px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.lp-nav-burger span {
    display: block;
    width: 20px;
    height: 2px;
    border-radius: 2px;
    background: var(--lp-ink);
    transition: transform .25s var(--lp-ease), opacity .2s ease;
}

.lp-nav-burger.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.lp-nav-burger.is-open span:nth-child(2) {
    opacity: 0;
}

.lp-nav-burger.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* mobile overlay menu */
.lp-mobile {
    position: fixed;
    inset: 0;
    z-index: 99;
    background: rgba(255, 255, 255, .98);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    padding: 90px 28px 40px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity .25s ease, transform .25s var(--lp-ease), visibility .25s;
}

.lp-mobile.is-open {
    opacity: 1;
    visibility: visible;
    transform: none;
}

.lp-mobile a.lp-mobile-link {
    font-family: var(--font-family-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--lp-ink);
    padding: .5em 0;
    border-bottom: 1px solid var(--lp-line);
}

.lp-mobile-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 26px;
}

.lp-mobile-actions .lp-btn {
    width: 100%;
    padding: 1em;
}

/* ============================================================
   Hero
   ============================================================ */
.lp-hero {
    position: relative;
    padding: clamp(128px, 17vw, 168px) 0 clamp(64px, 9vw, 104px);
    overflow: hidden;
}

.lp-hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(58% 46% at 80% 12%, rgba(16, 185, 129, .11), transparent 70%),
        radial-gradient(48% 40% at 10% 6%, rgba(36, 44, 79, .06), transparent 72%);
}

.lp-hero-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(36, 44, 79, .045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(36, 44, 79, .045) 1px, transparent 1px);
    background-size: 46px 46px;
    -webkit-mask-image: radial-gradient(72% 60% at 50% 26%, #000, transparent 76%);
    mask-image: radial-gradient(72% 60% at 50% 26%, #000, transparent 76%);
}

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

.lp-hero-title {
    font-family: var(--font-family-heading);
    font-weight: 700;
    letter-spacing: -.035em;
    line-height: 1.03;
    color: var(--lp-ink);
    font-size: clamp(2.3rem, 5.4vw, 3.95rem);
    margin: 22px 0 0;
}

.lp-hl {
    position: relative;
    color: var(--lp-green-600);
    white-space: nowrap;
}

.lp-hl::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: .06em;
    height: .14em;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--lp-green), rgba(16, 185, 129, .35));
}

.lp-hero-sub {
    font-size: clamp(1.06rem, 1.5vw, 1.24rem);
    color: var(--lp-muted);
    line-height: 1.62;
    max-width: 40ch;
    margin: 22px 0 0;
}

.lp-hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.lp-hero-note {
    display: inline-flex;
    align-items: center;
    gap: .5em;
    margin-top: 16px;
    font-size: .9rem;
    color: var(--lp-muted);
}

.lp-hero-note svg {
    width: 17px;
    height: 17px;
    color: var(--lp-green-600);
}

.lp-hero-trust {
    margin-top: 42px;
}

.lp-hero-trust-label {
    font-family: var(--font-family-mono);
    font-size: .68rem;
    letter-spacing: .13em;
    text-transform: uppercase;
    color: var(--lp-muted);
}

.lp-hero-logos {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 26px;
    margin-top: 16px;
}

.lp-hero-logos img {
    height: 26px;
    width: auto;
    opacity: .62;
    filter: grayscale(1);
    transition: opacity .2s ease, filter .2s ease;
}

.lp-hero-logos img:hover {
    opacity: 1;
    filter: none;
}

/* ---- Hero app panel (signature "living panel") --------------------------- */
.lp-hero-visual {
    position: relative;
}

.lp-panel {
    position: relative;
    background: #fff;
    border: 1px solid var(--lp-line);
    border-radius: var(--lp-radius);
    box-shadow: var(--lp-shadow-lg);
    overflow: hidden;
    animation: lp-rise .8s var(--lp-ease) both;
}

.lp-panel-bar {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 13px 16px;
    border-bottom: 1px solid var(--lp-line);
    background: var(--lp-bg-soft);
}

.lp-panel-bar i {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #d7dbe6;
}

.lp-panel-url {
    margin-left: 10px;
    font-family: var(--font-family-mono);
    font-size: .74rem;
    color: var(--lp-muted);
}

.lp-panel-body {
    display: grid;
    grid-template-columns: 92px 1fr;
    min-height: 300px;
}

.lp-panel-rail {
    border-right: 1px solid var(--lp-line);
    padding: 16px 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    background: #fcfdff;
}

.lp-panel-rail .lp-rail-brand {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 700;
    font-size: .78rem;
    color: var(--lp-ink);
    margin-bottom: 10px;
}

.lp-panel-rail .lp-rail-brand img {
    width: 18px;
    height: 18px;
}

.lp-rail-item {
    font-size: .76rem;
    color: var(--lp-muted);
    padding: .45em .55em;
    border-radius: 8px;
}

.lp-rail-item.is-active {
    background: var(--lp-mint);
    color: var(--lp-green-600);
    font-weight: 600;
}

.lp-panel-main {
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.lp-panel-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.lp-mini-stat {
    border: 1px solid var(--lp-line);
    border-radius: var(--lp-radius-sm);
    padding: 12px 14px;
    background: #fff;
}

.lp-mini-stat .lp-ms-label {
    font-size: .7rem;
    color: var(--lp-muted);
    text-transform: uppercase;
    letter-spacing: .04em;
}

.lp-mini-stat .lp-ms-value {
    display: block;
    font-family: var(--font-family-heading);
    font-weight: 700;
    font-size: 1.28rem;
    color: var(--lp-ink);
    margin-top: 3px;
    letter-spacing: -.02em;
}

.lp-mini-stat .lp-ms-trend {
    font-size: .72rem;
    font-weight: 600;
    color: var(--lp-green-600);
}

.lp-mini-stat .lp-ms-trend.is-muted {
    color: var(--lp-muted);
}

.lp-panel-chart {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 78px;
    padding: 0 2px;
}

.lp-panel-chart span {
    flex: 1;
    border-radius: 6px 6px 0 0;
    background: linear-gradient(180deg, var(--lp-green), rgba(16, 185, 129, .45));
    opacity: .9;
}

.lp-panel-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.lp-panel-row {
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    align-items: center;
    gap: 10px;
    padding: 9px 12px;
    border: 1px solid var(--lp-line);
    border-radius: 12px;
    font-size: .8rem;
}

.lp-panel-row .lp-pr-id {
    font-family: var(--font-family-mono);
    color: var(--lp-muted);
}

.lp-panel-row .lp-pr-name {
    color: var(--lp-text);
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.lp-panel-row .lp-pr-amount {
    font-weight: 600;
    color: var(--lp-ink);
}

.lp-stamp {
    display: inline-flex;
    align-items: center;
    gap: .3em;
    font-family: var(--font-family-mono);
    font-size: .66rem;
    font-weight: 600;
    color: var(--lp-green-600);
    background: var(--lp-mint);
    border: 1px solid var(--lp-mint-2);
    padding: .25em .5em;
    border-radius: 6px;
    white-space: nowrap;
}

/* floating cards for depth */
.lp-float {
    position: absolute;
    background: #fff;
    border: 1px solid var(--lp-line);
    border-radius: 14px;
    box-shadow: var(--lp-shadow);
    padding: 11px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: lp-float 5.5s ease-in-out infinite;
}

.lp-float-badge {
    top: 16px;
    right: -18px;
}

.lp-float-note {
    bottom: 22px;
    left: -22px;
    animation-delay: .8s;
}

.lp-float-ico {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--lp-mint);
    color: var(--lp-green-600);
    flex-shrink: 0;
}

.lp-float-ico svg {
    width: 18px;
    height: 18px;
}

.lp-float-t {
    font-size: .74rem;
    font-weight: 700;
    color: var(--lp-ink);
    line-height: 1.2;
}

.lp-float-s {
    font-size: .68rem;
    color: var(--lp-muted);
}

/* ============================================================
   Icon tiles + generic card
   ============================================================ */
.lp-ico {
    width: 52px;
    height: 52px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--lp-mint);
    color: var(--lp-green-600);
    margin-bottom: 18px;
}

.lp-ico svg {
    width: 26px;
    height: 26px;
}

.lp-ico--ink {
    background: rgba(36, 44, 79, .07);
    color: var(--lp-ink);
}

.lp-card {
    background: #fff;
    border: 1px solid var(--lp-line);
    border-radius: var(--lp-radius);
    padding: 26px;
    box-shadow: var(--lp-shadow);
    transition: transform .22s var(--lp-ease), box-shadow .22s var(--lp-ease), border-color .22s ease;
}

.lp-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--lp-shadow-lg);
    border-color: var(--lp-line-2);
}

.lp-card h3 {
    font-family: var(--font-family-heading);
    font-size: 1.13rem;
    font-weight: 600;
    letter-spacing: -.01em;
    color: var(--lp-ink);
    margin: 0 0 8px;
}

.lp-card p {
    color: var(--lp-muted);
    font-size: .96rem;
    line-height: 1.6;
    margin: 0;
}

.lp-grid-4 {
    display: grid;
    gap: 20px;
    grid-template-columns: 1fr;
}

.lp-grid-2 {
    display: grid;
    gap: 20px;
    grid-template-columns: 1fr;
}

/* ============================================================
   Benefit bands (zig-zag)
   ============================================================ */
.lp-bands {
    display: flex;
    flex-direction: column;
    gap: clamp(44px, 7vw, 84px);
}

.lp-band-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(28px, 5vw, 56px);
    align-items: center;
}

.lp-band-copy .lp-title {
    font-size: clamp(1.6rem, 3vw, 2.15rem);
    margin-bottom: 14px;
}

.lp-band-copy .lp-eyebrow {
    margin-bottom: 18px;
}

.lp-band-desc {
    color: var(--lp-muted);
    font-size: clamp(1rem, 1.3vw, 1.12rem);
    line-height: 1.65;
    margin: 0 0 22px;
}

.lp-points {
    list-style: none;
    padding: 0;
    margin: 0 0 26px;
    display: grid;
    gap: 12px;
}

.lp-points li {
    display: flex;
    align-items: flex-start;
    gap: .6em;
    font-size: .98rem;
    font-weight: 500;
    color: var(--lp-text);
    line-height: 1.4;
}

.lp-check {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--lp-mint);
    color: var(--lp-green-600);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
}

.lp-check svg {
    width: 13px;
    height: 13px;
}

.lp-textlink {
    display: inline-flex;
    align-items: center;
    gap: .4em;
    font-weight: 600;
    color: var(--lp-green-600);
}

.lp-textlink:hover .lp-btn-arrow {
    transform: translateX(3px);
}

/* band visual panel */
.lp-band-visual {
    position: relative;
    border: 1px solid var(--lp-line);
    border-radius: var(--lp-radius);
    padding: clamp(22px, 3vw, 32px);
    background: linear-gradient(155deg, var(--lp-mint) 0%, #fff 72%);
    box-shadow: var(--lp-shadow);
    display: flex;
    flex-direction: column;
    gap: 14px;
    min-height: 230px;
    justify-content: center;
}

.lp-band--ink .lp-band-visual {
    background: linear-gradient(155deg, rgba(36, 44, 79, .08) 0%, #fff 72%);
}

.lp-band--ink .lp-eyebrow {
    color: var(--lp-ink);
    background: rgba(36, 44, 79, .06);
    border-color: rgba(36, 44, 79, .12);
}

.lp-band--ink .lp-eyebrow .lp-dot {
    background: var(--lp-ink);
    box-shadow: 0 0 0 3px rgba(36, 44, 79, .14);
}

.lp-vico {
    width: 54px;
    height: 54px;
    border-radius: 15px;
    background: #fff;
    box-shadow: var(--lp-shadow);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--lp-green-600);
}

.lp-band--ink .lp-vico {
    color: var(--lp-ink);
}

.lp-vico svg {
    width: 28px;
    height: 28px;
}

.lp-vrow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .6rem;
    padding: .65rem .85rem;
    background: #fff;
    border: 1px solid var(--lp-line);
    border-radius: 12px;
    box-shadow: var(--lp-shadow-sm);
    font-size: .85rem;
    font-weight: 500;
    color: var(--lp-text);
}

.lp-vstack {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.lp-vchips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.lp-chip {
    padding: .4rem .85rem;
    background: #fff;
    border: 1px solid var(--lp-line);
    border-radius: 999px;
    box-shadow: var(--lp-shadow-sm);
    font-size: .82rem;
    font-weight: 500;
    color: var(--lp-text);
}

.lp-chip--accent {
    background: var(--lp-mint);
    border-color: var(--lp-mint-2);
    color: var(--lp-green-600);
}

.lp-vflow {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.lp-vflow-arrow {
    color: var(--lp-muted);
    font-weight: 700;
}

.lp-vbars {
    display: flex;
    align-items: flex-end;
    gap: 7px;
    height: 74px;
}

.lp-vbars span {
    flex: 1;
    border-radius: 6px 6px 0 0;
    background: linear-gradient(180deg, var(--lp-green), rgba(16, 185, 129, .4));
    opacity: .9;
}

/* ============================================================
   How it works — steps
   ============================================================ */
.lp-steps {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
}

.lp-step {
    position: relative;
    background: #fff;
    border: 1px solid var(--lp-line);
    border-radius: var(--lp-radius);
    padding: 28px 26px;
    box-shadow: var(--lp-shadow);
}

.lp-step-n {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: var(--lp-ink);
    color: #fff;
    font-family: var(--font-family-heading);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 18px;
}

.lp-step h3 {
    font-family: var(--font-family-heading);
    font-size: 1.18rem;
    font-weight: 600;
    color: var(--lp-ink);
    margin: 0 0 8px;
    letter-spacing: -.01em;
}

.lp-step p {
    color: var(--lp-muted);
    font-size: .97rem;
    line-height: 1.6;
    margin: 0 0 18px;
}

.lp-step-vis {
    border-top: 1px dashed var(--lp-line-2);
    padding-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* ============================================================
   Trust
   ============================================================ */
.lp-grid-3 {
    display: grid;
    gap: 20px;
    grid-template-columns: 1fr;
}

/* ============================================================
   Integrations / API
   ============================================================ */
.lp-int {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(32px, 5vw, 56px);
    align-items: center;
}

.lp-int-feats {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin: 26px 0 28px;
}

.lp-int-feat {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.lp-int-feat .lp-ico {
    width: 44px;
    height: 44px;
    margin: 0;
    border-radius: 12px;
    flex-shrink: 0;
}

.lp-int-feat .lp-ico svg {
    width: 22px;
    height: 22px;
}

.lp-int-feat h4 {
    font-family: var(--font-family-heading);
    font-size: 1.02rem;
    font-weight: 600;
    color: var(--lp-ink);
    margin: 2px 0 4px;
}

.lp-int-feat p {
    color: var(--lp-muted);
    font-size: .93rem;
    line-height: 1.55;
    margin: 0;
}

.lp-code {
    background: var(--lp-ink-2);
    border-radius: var(--lp-radius);
    box-shadow: var(--lp-shadow-lg);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .08);
}

.lp-code-bar {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 13px 16px;
    background: rgba(255, 255, 255, .04);
    border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.lp-code-bar i {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .22);
}

.lp-code-title {
    margin-left: 8px;
    font-family: var(--font-family-mono);
    font-size: .74rem;
    color: rgba(255, 255, 255, .55);
}

.lp-code pre {
    margin: 0;
    padding: 22px;
    overflow-x: auto;
    font-family: var(--font-family-mono);
    font-size: .82rem;
    line-height: 1.7;
    color: #e7ebf5;
}

.lp-code .c-com { color: #7c85a3; }
.lp-code .c-key { color: #7dd3fc; }
.lp-code .c-var { color: #fca5a5; }
.lp-code .c-prop { color: #a5f3d0; }
.lp-code .c-str { color: #fcd9a5; }
.lp-code .c-num { color: #c4b5fd; }
.lp-code .c-fn { color: #93c5fd; }

/* ============================================================
   FAQ (reuses .faq-feed markup + shared carousel JS)
   ============================================================ */
.lp-faq .faq-carousel {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
}

.lp-faq .faq-feed {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 6px 4px 18px;
    scrollbar-width: none;
    flex: 1;
}

.lp-faq .faq-feed::-webkit-scrollbar {
    display: none;
}

.lp-faq .faq-feed-card {
    scroll-snap-align: start;
    flex: 0 0 clamp(280px, 82vw, 360px);
    background: #fff;
    border: 1px solid var(--lp-line);
    border-radius: var(--lp-radius);
    padding: 26px;
    box-shadow: var(--lp-shadow);
    display: flex;
    flex-direction: column;
}

.lp-faq .faq-feed-title {
    font-family: var(--font-family-heading);
    font-size: 1.08rem;
    font-weight: 600;
    color: var(--lp-ink);
    margin: 0 0 12px;
    line-height: 1.3;
}

.lp-faq .faq-feed-body {
    color: var(--lp-muted);
    font-size: .94rem;
    line-height: 1.6;
    flex: 1;
}

.lp-faq .faq-feed-body p {
    margin: 0 0 10px;
}

.lp-faq .faq-feed-more {
    margin-top: 16px;
    font-weight: 600;
    color: var(--lp-green-600);
    font-size: .92rem;
}

.lp-faq .faq-carousel-btn {
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid var(--lp-line);
    background: #fff;
    color: var(--lp-ink);
    font-size: 1.4rem;
    line-height: 1;
    cursor: pointer;
    box-shadow: var(--lp-shadow);
    transition: transform .2s var(--lp-ease), border-color .2s;
}

.lp-faq .faq-carousel-btn:hover {
    transform: scale(1.06);
    border-color: var(--lp-line-2);
}

/* ============================================================
   Stats (navy panel)
   ============================================================ */
.lp-stats-panel {
    position: relative;
    background: var(--lp-ink);
    border-radius: var(--lp-radius-lg);
    padding: clamp(40px, 6vw, 64px);
    overflow: hidden;
    box-shadow: var(--lp-shadow-lg);
}

.lp-stats-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(50% 80% at 88% 0%, rgba(16, 185, 129, .28), transparent 62%);
    pointer-events: none;
}

.lp-stats-tag {
    position: relative;
    max-width: 720px;
    color: rgba(255, 255, 255, .82);
    font-size: clamp(1.05rem, 1.6vw, 1.28rem);
    line-height: 1.55;
    margin: 0 0 40px;
}

.lp-stats-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

.lp-stat .stat-number {
    display: block;
    font-family: var(--font-family-heading);
    font-weight: 700;
    font-size: clamp(2.4rem, 5vw, 3.2rem);
    letter-spacing: -.03em;
    color: #fff;
    line-height: 1;
}

.lp-stat .lp-stat-label {
    display: block;
    margin-top: 10px;
    color: var(--lp-mint-2);
    font-size: .92rem;
    font-weight: 500;
}

/* ============================================================
   Final CTA (navy panel)
   ============================================================ */
.lp-cta-panel {
    position: relative;
    background: var(--lp-ink);
    border-radius: var(--lp-radius-lg);
    padding: clamp(44px, 6vw, 72px);
    overflow: hidden;
    box-shadow: var(--lp-shadow-lg);
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    align-items: center;
}

.lp-cta-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(46% 90% at 100% 100%, rgba(16, 185, 129, .3), transparent 60%),
        radial-gradient(40% 80% at 0% 0%, rgba(16, 185, 129, .12), transparent 60%);
    pointer-events: none;
}

.lp-cta-panel > * {
    position: relative;
}

.lp-cta-title {
    font-family: var(--font-family-heading);
    font-weight: 700;
    letter-spacing: -.028em;
    font-size: clamp(1.7rem, 3.4vw, 2.5rem);
    color: #fff;
    margin: 0 0 12px;
    line-height: 1.1;
}

.lp-cta-desc {
    color: rgba(255, 255, 255, .8);
    font-size: clamp(1rem, 1.4vw, 1.14rem);
    line-height: 1.6;
    margin: 0;
    max-width: 46ch;
}

.lp-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.lp-cta-panel .lp-btn-secondary {
    background: rgba(255, 255, 255, .1);
    color: #fff;
    border-color: rgba(255, 255, 255, .2);
}

.lp-cta-panel .lp-btn-secondary:hover {
    background: rgba(255, 255, 255, .16);
}

/* ============================================================
   Reveal on scroll (safe: visible by default, JS adds .lp-in)
   ============================================================ */
.lp-reveal.lp-in {
    animation: lp-rise .7s var(--lp-ease) both;
}

@keyframes lp-rise {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes lp-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* ============================================================
   Responsive
   ============================================================ */
@media (min-width: 640px) {
    .lp-grid-2 { grid-template-columns: 1fr 1fr; }
    .lp-grid-3 { grid-template-columns: repeat(3, 1fr); }
    .lp-grid-4 { grid-template-columns: 1fr 1fr; }
    .lp-stats-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 900px) {
    .lp-steps { grid-template-columns: repeat(3, 1fr); }
    .lp-band-inner { grid-template-columns: 1.02fr .98fr; }
    .lp-band--reverse .lp-band-visual { order: 2; }
    .lp-band--reverse .lp-band-copy { order: 1; }
    .lp-int { grid-template-columns: 1.05fr .95fr; }
    .lp-cta-panel { grid-template-columns: 1.3fr .7fr; }
    .lp-cta-actions { justify-content: flex-end; }
}

@media (min-width: 980px) {
    .lp-hero-grid { grid-template-columns: 1.04fr .96fr; }
}

@media (min-width: 1024px) {
    .lp-grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* steps connector line on desktop */
@media (min-width: 900px) {
    .lp-steps::before {
        content: "";
        position: absolute;
        top: 50px;
        left: 16%;
        right: 16%;
        height: 2px;
        background: repeating-linear-gradient(90deg, var(--lp-line-2) 0 8px, transparent 8px 16px);
        z-index: 0;
    }
    .lp-step { z-index: 1; }
}

/* nav collapses to burger */
@media (max-width: 900px) {
    .lp-nav-links,
    .lp-nav-actions {
        display: none;
    }
    .lp-nav-burger {
        display: flex;
        margin-left: auto;
    }
    .lp-nav-inner {
        padding: 8px 8px 8px 18px;
    }
}

@media (max-width: 560px) {
    .lp-float-badge { right: 6px; top: 10px; }
    .lp-float-note { left: 6px; bottom: 12px; }
    .lp-panel-body { grid-template-columns: 1fr; }
    .lp-panel-rail { display: none; }
}

@media (prefers-reduced-motion: reduce) {
    .lp-panel,
    .lp-float,
    .lp-reveal.lp-in {
        animation: none !important;
    }
    .lp-btn,
    .lp-card,
    .lp-nav-inner {
        transition: none !important;
    }
}
