/* ============================================================
   Halo dek — marketing landing page
   White body + single azure accent (#0a84ff from base.css).
   One deliberate charcoal color-block (automation). No glass.
   Motivated motion only; everything degrades under reduced-motion.
   Scoped on <body class="landing"> so base.css dark tokens are
   overridden here without touching the dashboard.
   ============================================================ */

.landing {
    /* light surface ramp */
    --page: #ffffff;
    --page-2: #f4f7fc;
    /* tinted section bands                */
    --page-3: #eef3fb;
    /* shot stage wash                     */
    --ink: #0f1417;
    /* off-black (never pure)              */
    --ink-2: #2b333b;
    --soft: #5b6772;
    /* muted body                          */
    --faint-2: #8a949e;
    --line: #e4e9f0;
    --line-2: #cdd6e1;

    /* charcoal block (single inverted section)                  */
    --char: #14181b;
    --char-2: #1b2024;
    --char-line: rgba(255, 255, 255, 0.10);

    --wash: rgba(10, 132, 255, 0.08);
    --wash-2: rgba(10, 132, 255, 0.14);
    --shadow-soft: 0 22px 60px -42px rgba(15, 30, 60, 0.40);
    --shadow-card: 0 26px 70px -50px rgba(15, 30, 60, 0.46);
    --shadow-lift: 0 34px 84px -48px rgba(10, 60, 130, 0.42);

    color: var(--ink);
    background: var(--page);
    overflow-x: hidden;
    position: relative;
}

/* kill the dark ambient mesh from base.css on this page */
.landing .mesh {
    display: none;
}

/* hero wash — absolute so it scrolls away with the hero instead of
   staying pinned to the viewport (a fixed band leaves a grey seam) */
.landing::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 680px;
    z-index: -3;
    pointer-events: none;
    background:
        radial-gradient(46vw 32vw at 84% -2%, rgba(10, 132, 255, 0.13), transparent 66%),
        radial-gradient(34vw 26vw at 12% 6%, rgba(10, 132, 255, 0.06), transparent 72%),
        linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
}

.landing .wrap {
    width: min(100% - 40px, 1200px);
    margin-inline: auto;
}

/* inline code chip (Routing / FAQ); excludes the embed <pre><code>) */
.landing :not(pre)>code {
    font-family: var(--mono);
    font-size: 0.86em;
    padding: 2px 7px;
    border-radius: 6px;
    background: var(--wash);
    color: var(--accent);
    white-space: nowrap;
}

/* ---------------------------------------------------------------
   Skip link + focus discipline
--------------------------------------------------------------- */
.lp-skip {
    position: absolute;
    left: 20px;
    top: -64px;
    z-index: 200;
    padding: 11px 16px;
    border-radius: var(--r-sm);
    background: var(--accent);
    color: var(--accent-ink);
    font-weight: 600;
}

.lp-skip:focus {
    top: 16px;
}

.landing :focus-visible {
    outline: 3px solid var(--accent-line);
    outline-offset: 2px;
    border-radius: 4px;
}

/* ---------------------------------------------------------------
   Buttons (light theme)
--------------------------------------------------------------- */
.landing .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px 12px 22px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: #fff;
    color: var(--ink);
    font-weight: 600;
    font-size: 15px;
    box-shadow: 0 14px 30px -26px rgba(15, 30, 60, 0.5);
    transition: transform 0.45s var(--ease), border-color 0.45s var(--ease), box-shadow 0.45s var(--ease);
}

.landing .btn:hover {
    transform: translateY(-2px);
    border-color: var(--line-2);
    box-shadow: 0 20px 38px -26px rgba(15, 30, 60, 0.5);
}

.landing .btn:active {
    transform: translateY(0) scale(0.98);
}

.landing .btn .ico {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--wash);
    color: var(--accent);
    transition: transform 0.45s var(--ease-spring), background 0.45s var(--ease);
}

.landing .btn:hover .ico {
    transform: translate(3px, 0);
}

.landing .btn-primary {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--accent-ink);
    box-shadow: 0 20px 40px -22px rgba(10, 132, 255, 0.85);
}

.landing .btn-primary .ico {
    background: rgba(255, 255, 255, 0.22);
    color: #fff;
}

.landing .btn-primary:hover {
    filter: brightness(1.05);
}

.landing .btn-ghost {
    background: transparent;
    box-shadow: none;
    border-color: transparent;
}

.landing .btn-ghost:hover {
    background: var(--page-2);
    border-color: var(--line);
}

.landing .btn.on-dark {
    background: #fff;
    border-color: #fff;
    color: var(--ink);
}

.landing .btn.on-char {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--char-line);
    color: #fff;
    box-shadow: none;
}

.landing .btn.on-char .ico {
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
}

/* ---------------------------------------------------------------
   Eyebrow (rationed: hero + max 3 sections)
--------------------------------------------------------------- */
.landing .eyebrow {
    display: inline-flex;
    align-items: center;
    font-family: var(--font);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent);
    margin-bottom: 16px;
    padding-left: 10px;
    border-left: 2px solid var(--accent);
    background: transparent !important;
    border-top: none !important;
    border-right: none !important;
    border-bottom: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}

.landing .eyebrow .dot {
    display: none !important;
}

.landing .eyebrow::before {
    display: none !important;
}

.landing .eyebrow.on-char {
    border-left: 2px solid rgba(255, 255, 255, 0.6);
    color: rgba(255, 255, 255, 0.88);
    background: transparent !important;
    border-top: none !important;
    border-right: none !important;
    border-bottom: none !important;
    border-radius: 0 !important;
    padding-left: 10px;
}

/* ---------------------------------------------------------------
   Scroll progress bar — fixed hairline over the nav top edge
--------------------------------------------------------------- */
.lp-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    z-index: 90;
    pointer-events: none;
    transform: scaleX(0);
    transform-origin: 0 50%;
    background: linear-gradient(90deg, var(--accent), var(--accent-2));
    transition: transform 0.12s ease-out;
}

/* ---------------------------------------------------------------
   Navigation — single line, <= 74px
--------------------------------------------------------------- */
.lp-nav {
    position: sticky;
    top: 0;
    z-index: 80;
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: saturate(150%) blur(16px);
    -webkit-backdrop-filter: saturate(150%) blur(16px);
    border-bottom: 1px solid transparent;
    transition: border-color 0.4s var(--ease), box-shadow 0.4s var(--ease), background 0.4s var(--ease);
}

.lp-nav.scrolled {
    border-bottom-color: var(--line);
    box-shadow: 0 18px 40px -38px rgba(15, 30, 60, 0.5);
}

.lp-nav-inner {
    height: 72px;
    display: flex;
    align-items: center;
    gap: 26px;
}

.lp-brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    font-weight: 800;
    font-size: 18px;
    letter-spacing: -0.01em;
    color: var(--ink);
}

.lp-brand-logo {
    display: block;
    width: 132px;
    height: 34px;
    line-height: 0;
}

.lp-brand-logo svg {
    display: block;
    width: 100%;
    height: 100%;
}

.lp-mark {
    position: relative;
    width: 34px;
    height: 34px;
    border-radius: 11px;
    background: linear-gradient(150deg, var(--accent), var(--accent-2));
    box-shadow: 0 14px 26px -14px rgba(10, 132, 255, 0.85);
    flex: none;
}

.lp-mark::before {
    content: "";
    position: absolute;
    inset: 9px 8px 11px;
    border-radius: 8px 8px 8px 2px;
    background: #fff;
}

.lp-mark::after {
    content: "";
    position: absolute;
    left: 18px;
    bottom: 8px;
    width: 7px;
    height: 7px;
    background: #fff;
    clip-path: polygon(0 0, 100% 0, 0 100%);
}

.lp-links {
    display: flex;
    gap: 26px;
    margin-left: auto;
    color: var(--soft);
    font-size: 14.5px;
    font-weight: 600;
}

.lp-links a {
    position: relative;
    padding: 4px 0;
    transition: color 0.3s var(--ease);
}

.lp-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    border-radius: 2px;
    background: var(--accent);
    transition: width 0.32s var(--ease);
}

.lp-links a:hover {
    color: var(--ink);
}

.lp-links a:hover::after {
    width: 100%;
}

.lp-links a.active {
    color: var(--ink);
}

.lp-links a.active::after {
    width: 100%;
}

.lp-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* ---------------------------------------------------------------
   HERO — Zendesk-style full image card
--------------------------------------------------------------- */
.lp-hero {
    position: relative;
    padding: 18px 0 64px;
}

.lp-hero.wrap {
    width: min(100% - 68px, 1900px);
}

.lp-hero-card {
    position: relative;
    min-height: clamp(700px, 76vh, 960px);
    overflow: hidden;
    border-radius: 24px;
    border: 0px solid rgba(15, 23, 42, 0);
    background: #101416;
    box-shadow: 0 36px 90px -56px rgba(15, 30, 60, .62);
    isolation: isolate;
}

.lp-hero-bg {
    position: absolute;
    inset: 0;
    z-index: -3;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transform: scale(1.01);
}

.lp-hero-card::before,
.lp-hero-card::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.lp-hero-card::before {
    z-index: -2;
    background:
        linear-gradient(90deg, rgba(13, 17, 18, .88) 0%, rgba(17, 20, 20, .76) 25%, rgba(17, 20, 20, .28) 55%, rgba(17, 20, 20, .08) 100%),
        linear-gradient(180deg, rgba(13, 17, 18, .14) 0%, rgba(13, 17, 18, .2) 66%, rgba(13, 17, 18, .58) 100%);
}

.lp-hero-card::after {
    z-index: -1;
    background:
        radial-gradient(42% 58% at 22% 46%, rgba(10, 132, 255, .22), transparent 68%),
        radial-gradient(35% 44% at 78% 24%, rgba(118, 199, 255, .14), transparent 70%);
    mix-blend-mode: screen;
    opacity: .75;
}

.lp-hero-copy {
    position: relative;
    z-index: 2;
    max-width: min(880px, 48vw);
    padding: clamp(96px, 11vh, 150px) clamp(28px, 9.2vw, 176px);
    color: #ffffff;
}

.lp-hero .eyebrow {
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    color: rgba(255, 255, 255, .92) !important;
    box-shadow: none !important;
    font-size: clamp(.82rem, .86vw, 1rem) !important;
    font-weight: 800 !important;
    letter-spacing: .01em !important;
    text-transform: uppercase !important;
}

.lp-hero .eyebrow .dot {
    display: none;
}

.lp-hero h1 {
    margin-top: 18px;
    max-width: 11.7em;
    color: #ffffff;
    font-size: clamp(3.25rem, 4.15vw, 5rem);
    line-height: 1.04;
    letter-spacing: 0;
    font-weight: 800;
    text-wrap: balance;
}

.lp-hero h1 .accent {
    color: #8fd0ff;
    font-weight: inherit;
}

.lp-hero .lede {
    margin-top: 28px;
    max-width: 46ch;
    color: rgba(255, 255, 255, .93);
    font-size: clamp(1.05rem, 1.1vw, 1.25rem);
    font-weight: 500;
    line-height: 1.48;
    text-wrap: balance;
}

.lp-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 38px;
}

.lp-hero-actions .btn {
    min-height: 48px;
    border-radius: 13px;
    font-size: 16px;
    font-weight: 800;
}

.lp-hero-actions .btn:not(.btn-primary) {
    background: rgba(255, 255, 255, .92);
    border-color: rgba(255, 255, 255, .72);
    color: #111827;
}

.lp-hero-actions .btn:not(.btn-primary):hover {
    background: #ffffff;
    border-color: #ffffff;
}

/* hero animated chat stories */
.lp-hero-stories {
    position: absolute;
    right: clamp(22px, 7vw, 150px);
    bottom: clamp(28px, 8vw, 118px);
    z-index: 3;
    width: min(420px, 34vw);
    min-height: 250px;
    pointer-events: none;
}

.lp-story {
    position: absolute;
    inset: auto 0 0 auto;
    display: grid;
    gap: 12px;
    width: 100%;
    opacity: 0;
    transform: translateY(42px) scale(.97);
    filter: blur(8px);
    animation: lp-story-cycle 20s cubic-bezier(.16, 1, .3, 1) infinite;
}

.lp-story:nth-child(2) {
    animation-delay: 4s;
}

.lp-story:nth-child(3) {
    animation-delay: 8s;
}

.lp-story:nth-child(4) {
    animation-delay: 12s;
}

.lp-story:nth-child(5) {
    animation-delay: 16s;
}

.lp-story-pill {
    justify-self: start;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .94);
    color: #111827;
    box-shadow: 0 18px 48px -30px rgba(0, 0, 0, .58);
    font-size: 13px;
    font-weight: 800;
}

.story-dot,
.story-check,
.story-bot {
    width: 21px;
    height: 21px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: #0a84ff;
    color: #ffffff;
    font-size: 10px;
    font-weight: 900;
}

.story-dot::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: inherit;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, .24);
}

.story-check::before {
    content: "✓";
}

.story-bot {
    font-family: var(--mono);
}

.lp-story-bubble {
    width: min(100%, 360px);
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, .96);
    color: #15191d;
    box-shadow: 0 24px 56px -32px rgba(0, 0, 0, .62);
}

.lp-story-bubble.visitor {
    justify-self: end;
    border-bottom-right-radius: 6px;
}

.lp-story-bubble.agent {
    justify-self: start;
    border-bottom-left-radius: 6px;
}

.lp-story-bubble b,
.lp-story-bubble span {
    display: block;
}

.lp-story-bubble b {
    margin-bottom: 7px;
    font-size: 13px;
}

.lp-story-bubble span {
    font-size: 16px;
    line-height: 1.36;
}

.lp-story-mini {
    justify-self: end;
    display: inline-grid;
    gap: 2px;
    min-width: 118px;
    padding: 13px 16px;
    border-radius: 16px;
    background: #0a84ff;
    color: #ffffff;
    box-shadow: 0 22px 46px -28px rgba(10, 132, 255, .86);
}

.lp-story-mini span {
    font-size: 11px;
    color: rgba(255, 255, 255, .72);
    font-weight: 700;
}

.lp-story-mini strong {
    font-size: 22px;
    line-height: 1;
}

.lp-feature-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.lp-feature-chips span {
    padding: 9px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .95);
    color: #111827;
    font-size: 12px;
    font-weight: 800;
    box-shadow: 0 18px 36px -28px rgba(0, 0, 0, .56);
}

@keyframes lp-story-cycle {
    0% {
        opacity: 0;
        transform: translateY(44px) scale(.97);
        filter: blur(8px);
    }

    5%,
    16% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }

    20%,
    100% {
        opacity: 0;
        transform: translateY(-24px) scale(.98);
        filter: blur(5px);
    }
}

/* product shots reused below */
.lp-shot {
    overflow: hidden;
    border-radius: var(--r-xl);
    border: 1px solid var(--line);
    background: #0c1117;
    box-shadow: var(--shadow-lift);
}

.lp-shot img {
    width: 100%;
    height: auto;
    display: block;
}

.lp-float-card {
    position: absolute;
    left: -26px;
    bottom: 30px;
    width: min(264px, 56%);
    padding: 15px 16px;
    border-radius: var(--r-md);
    border: 1px solid rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 26px 56px -30px rgba(15, 30, 60, 0.55);
}

.lp-float-card .ttl {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--mono);
    font-size: 12px;
    color: var(--accent);
    font-weight: 600;
}

.lp-float-card .ttl .live {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--online);
    box-shadow: 0 0 0 4px rgba(46, 194, 138, 0.18);
}

.lp-float-card p {
    margin-top: 8px;
    color: var(--soft);
    font-size: 12.5px;
    line-height: 1.45;
}

/* floating chat signal bubbles (decorative, drift) */
.lp-signal {
    position: absolute;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 13px;
    border-radius: 14px 14px 14px 4px;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: 0 18px 38px -24px rgba(15, 30, 60, 0.45);
    font-size: 13px;
    font-weight: 600;
    color: var(--ink-2);
    white-space: nowrap;
    animation: lp-drift 7s var(--ease) infinite;
}

.lp-signal .av {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--wash-2);
    display: grid;
    place-items: center;
    color: var(--accent);
    font-size: 11px;
    font-weight: 800;
}

.lp-signal.from-op {
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 14px;
}

.lp-signal.from-vis {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
    border-radius: 14px 14px 4px 14px;
}

.lp-signal.s1 {
    top: 8%;
    right: -18px;
    animation-delay: 0s;
}

.lp-signal.s2 {
    top: 42%;
    left: -34px;
    animation-delay: 1.4s;
}

@keyframes lp-drift {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

/* ---------------------------------------------------------------
   Tech strip (logo wall equivalent, honest self-host stack)
--------------------------------------------------------------- */
.lp-strip {
    padding: 18px 0 56px;
}

.lp-strip-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 14px 34px;
    padding: 22px 32px;
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    background: #fff;
    box-shadow: var(--shadow-soft);
}

.lp-strip-lab {
    color: var(--faint-2);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-right: 8px;
}

.lp-strip-item {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--ink-2);
    font-weight: 700;
    font-size: 15px;
}

.lp-strip-item svg {
    width: 19px;
    height: 19px;
    color: var(--accent);
}

/* ---------------------------------------------------------------
   Customer logo wall (Indonesian brands) — left label + grayscale row
--------------------------------------------------------------- */
.lp-logos {
    padding: 6px 0 52px;
}

.lp-logos-inner {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 40px;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid var(--line);
}

.lp-logos-lab {
    color: var(--soft);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    line-height: 1.55;
}

.lp-logos-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 18px 40px;
}

.lp-wm {
    font-weight: 800;
    font-size: 21px;
    letter-spacing: -0.02em;
    color: #98a2af;
    white-space: nowrap;
    transition: color 0.3s var(--ease);
}

.lp-wm:hover {
    color: var(--ink-2);
}

.lp-wm .lp-wm-accent {
    color: #aeb6c1;
}

.lp-wm:hover .lp-wm-accent {
    color: var(--accent);
}

/* ---------------------------------------------------------------
   Big impact numbers (ref 2 of round-2) — centered giant figures
--------------------------------------------------------------- */
.lp-impact {
    text-align: center;
}

.lp-impact .lp-head {
    margin: 0 auto;
}

.lp-impact-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 56px;
}

.lp-impact .big {
    font-family: var(--mono);
    font-weight: 600;
    font-size: clamp(3rem, 6.8vw, 6rem);
    line-height: 1;
    letter-spacing: -0.03em;
    color: var(--accent);
}

.lp-impact .cap {
    margin-top: 14px;
    color: var(--soft);
    font-size: 15.5px;
}

/* ---------------------------------------------------------------
   Pricing — 3 tiers, middle elevated
--------------------------------------------------------------- */
.lp-pricing {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    align-items: stretch;
}

.lp-plan {
    display: flex;
    flex-direction: column;
    padding: 32px 30px;
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    background: #fff;
    box-shadow: var(--shadow-soft);
    transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}

.lp-plan:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
}

.lp-plan.feat {
    position: relative;
    border-color: var(--accent);
    background: linear-gradient(180deg, #ffffff, #f6fbff);
    box-shadow: 0 32px 72px -44px rgba(10, 132, 255, 0.55);
}

.lp-plan.feat:hover {
    transform: translateY(-7px);
    box-shadow: 0 40px 84px -44px rgba(10, 132, 255, 0.6);
}

.lp-plan .badge {
    position: absolute;
    top: -13px;
    left: 30px;
    padding: 5px 13px;
    border-radius: 999px;
    background: var(--accent);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.lp-plan h3 {
    font-size: 20px;
    letter-spacing: -0.01em;
}

.lp-plan .price {
    margin-top: 16px;
    font-size: clamp(2rem, 3vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1;
}

.lp-plan .price small {
    font-size: 14px;
    font-weight: 500;
    color: var(--soft);
    letter-spacing: 0;
}

.lp-plan .desc {
    margin-top: 10px;
    color: var(--soft);
    font-size: 14px;
    line-height: 1.55;
}

.lp-plan ul {
    list-style: none;
    margin: 24px 0 26px;
    padding: 0;
    display: grid;
    gap: 11px;
}

.lp-plan li {
    display: flex;
    gap: 10px;
    font-size: 14.5px;
    color: var(--ink-2);
    line-height: 1.4;
}

.lp-plan li svg {
    width: 17px;
    height: 17px;
    color: var(--accent);
    flex: none;
    margin-top: 2px;
}

.lp-plan .btn {
    margin-top: auto;
    justify-content: center;
}

.lp-plan .btn.full {
    width: 100%;
}

.lp-price-note {
    margin-top: 24px;
    text-align: center;
    color: var(--faint-2);
    font-size: 13.5px;
}

/* ---------------------------------------------------------------
   Section shell + heads
--------------------------------------------------------------- */
.lp-section {
    padding: 90px 0;
}

.lp-section.tint {
    background: var(--page-2);
    border-block: 1px solid var(--line);
}

.lp-head {
    max-width: 760px;
}

.lp-head.center {
    margin: 0 auto 46px;
    text-align: center;
}

.lp-head.aside h2 {
    font-size: clamp(2rem, 3.3vw, 3.1rem);
}

.lp-head h2 {
    margin-top: 16px;
    font-size: clamp(2.3rem, 4.2vw, 4rem);
    line-height: 1.04;
    letter-spacing: -0.02em;
    font-weight: 800;
    text-wrap: balance;
}

.lp-head p {
    margin-top: 18px;
    max-width: 60ch;
    color: var(--soft);
    font-size: 17px;
    line-height: 1.68;
}

.lp-head.center p {
    margin-inline: auto;
}

/* ---------------------------------------------------------------
   Stats band (count-up) — full-width strip, no floating card
--------------------------------------------------------------- */
.lp-stats-band {
    background: #fff;
    border-block: 1px solid var(--line);
}

.lp-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.lp-stat {
    padding: 36px 36px;
    border-right: 1px solid var(--line);
    transition: background 0.4s var(--ease);
}

.lp-stat:hover {
    background: var(--page-2);
}

.lp-stat:last-child {
    border-right: none;
}

.lp-stat .n {
    font-family: var(--mono);
    font-size: clamp(2rem, 3.1vw, 3rem);
    line-height: 1;
    color: var(--accent);
    font-weight: 600;
    letter-spacing: -0.02em;
}

.lp-stat .n .u {
    font-size: 0.5em;
    color: var(--ink-2);
    margin-left: 2px;
}

.lp-stat p {
    margin-top: 16px;
    color: var(--soft);
    font-size: 14.5px;
    line-height: 1.55;
}

/* ---------------------------------------------------------------
   Annotated product shot (ref 2 pattern)
--------------------------------------------------------------- */
.lp-stage {
    position: relative;
    max-width: 1120px;
    margin: 0 auto;
    padding: 28px;
    border-radius: var(--r-xl);
    background:
        radial-gradient(120% 120% at 80% 0%, rgba(10, 132, 255, 0.14), transparent 60%),
        var(--page-3);
    box-shadow: inset 0 0 0 1px rgba(10, 132, 255, 0.10);
}

.lp-stage .lp-shot {
    border-radius: var(--r-lg);
    box-shadow: 0 30px 80px -52px rgba(8, 30, 70, 0.7);
}

.lp-stage-clean-shot .lp-callout {
    display: none;
}

.lp-callout {
    position: absolute;
    display: grid;
    gap: 4px;
    width: 198px;
    padding: 13px 15px;
    border: 1px solid var(--line);
    border-radius: var(--r-sm);
    background: #fff;
    box-shadow: 0 22px 48px -32px rgba(15, 30, 60, 0.6);
}

.lp-callout::before {
    content: "";
    position: absolute;
    width: 32px;
    height: 2px;
    border-radius: 2px;
    background: var(--accent);
    top: 50%;
}

.lp-callout::after {
    content: "";
    position: absolute;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 4px var(--wash);
    top: calc(50% - 4px);
}

.lp-callout b {
    font-size: 13.5px;
    line-height: 1.2;
}

.lp-callout span {
    color: var(--soft);
    font-size: 11.5px;
    line-height: 1.4;
}

.lp-callout.c1 {
    left: -8px;
    top: 16%;
}

.lp-callout.c1::before {
    right: -32px;
}

.lp-callout.c1::after {
    right: -36px;
}

.lp-callout.c2 {
    right: -8px;
    top: 20%;
}

.lp-callout.c2::before {
    left: -32px;
}

.lp-callout.c2::after {
    left: -36px;
}

.lp-callout.c3 {
    left: 2%;
    bottom: 12%;
}

.lp-callout.c3::before {
    right: -32px;
}

.lp-callout.c3::after {
    right: -36px;
}

.lp-callout.c4 {
    right: 1%;
    bottom: 14%;
}

.lp-callout.c4::before {
    left: -32px;
}

.lp-callout.c4::after {
    left: -36px;
}

/* ---------------------------------------------------------------
   Routing — sticky copy + timeline
--------------------------------------------------------------- */
.lp-split {
    display: grid;
    grid-template-columns: 0.86fr 1.14fr;
    gap: 50px;
    align-items: start;
}

.lp-split-aside {
    position: sticky;
    top: 100px;
}

.lp-split-aside .modes {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 24px;
}

.lp-chip {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 13px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: #fff;
    font-size: 13px;
    font-weight: 600;
    color: var(--ink-2);
}

.lp-chip i {
    width: 7px;
    height: 7px;
    border-radius: 2px;
    background: var(--accent);
    transform: rotate(45deg);
}

.lp-timeline {
    display: grid;
    gap: 16px;
}

.lp-tl-card {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 18px;
    padding: 24px 26px;
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    background: #fff;
    box-shadow: 0 20px 50px -46px rgba(15, 30, 60, 0.4);
    transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), border-color 0.5s var(--ease);
}

.lp-tl-card:hover {
    transform: translateX(6px);
    border-color: var(--line-2);
    box-shadow: var(--shadow-card);
}

.lp-tl-card .num {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: var(--wash);
    color: var(--accent);
    font-family: var(--mono);
    font-weight: 700;
    font-size: 14px;
}

.lp-tl-card h3 {
    font-size: 22px;
    line-height: 1.15;
    letter-spacing: -0.01em;
}

.lp-tl-card p {
    margin-top: 9px;
    color: var(--soft);
    line-height: 1.6;
    font-size: 15px;
}

/* ---------------------------------------------------------------
   Feature grid (ref 3 pattern) — product shots in tinted tiles
--------------------------------------------------------------- */
.lp-features {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    max-width: 1120px;
    margin-inline: auto;
    align-items: stretch;
}

.lp-feature {
    display: grid;
    grid-template-rows: auto 1fr;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    background: #fff;
    box-shadow: 0 24px 64px -54px rgba(15, 30, 60, 0.42);
    transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}

.lp-feature:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-card);
}

.lp-feature:hover .media img {
    transform: scale(1.04);
}

.lp-feature .media {
    display: grid;
    place-items: center;
    min-height: clamp(260px, 25vw, 340px);
    padding: 18px;
    background: linear-gradient(160deg, var(--wash), rgba(10, 132, 255, 0.03));
}

.lp-feature .media img {
    width: 100%;
    height: 100%;
    max-height: 304px;
    aspect-ratio: 16 / 9;
    object-fit: contain;
    display: block;
    border-radius: var(--r-md);
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 26px 56px -42px rgba(8, 30, 70, 0.62);
    transition: transform 0.6s var(--ease);
}

.lp-feature .body {
    align-self: start;
    padding: 24px 28px 30px;
}

.lp-feature .kicker {
    font-family: var(--mono);
    font-size: 12px;
    color: var(--accent);
    font-weight: 600;
    letter-spacing: 0.04em;
}

.lp-feature h3 {
    margin-top: 8px;
    font-size: 24px;
    line-height: 1.15;
    letter-spacing: -0.01em;
}

.lp-feature p {
    margin-top: 11px;
    color: var(--soft);
    line-height: 1.62;
    font-size: 15px;
}

.lp-feature ul {
    margin: 16px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 9px;
}

.lp-feature li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    color: var(--ink-2);
    font-size: 14px;
}

.lp-feature li svg {
    width: 17px;
    height: 17px;
    color: var(--accent);
    flex: none;
    margin-top: 2px;
}

.lp-feature:nth-child(1) {
    background: linear-gradient(180deg, #fff, #fbfdff);
}

.lp-feature:nth-child(2) {
    background: linear-gradient(180deg, #fff, #f8fbff);
}

.lp-feature:nth-child(3) {
    background: linear-gradient(180deg, #fff, #f9fcff);
}

.lp-feature:nth-child(4) {
    background: linear-gradient(180deg, #fff, #fbfdff);
}

.lp-feature:nth-child(1) .media,
.lp-feature:nth-child(4) .media {
    background:
        radial-gradient(70% 90% at 18% 0%, rgba(10, 132, 255, 0.12), transparent 62%),
        linear-gradient(160deg, #eef6ff, rgba(10, 132, 255, 0.035));
}

.lp-feature:nth-child(2) .media,
.lp-feature:nth-child(3) .media {
    background:
        radial-gradient(70% 90% at 86% 8%, rgba(10, 132, 255, 0.10), transparent 62%),
        linear-gradient(160deg, #f6faff, rgba(10, 132, 255, 0.035));
}

/* ---------------------------------------------------------------
   Feature bento — wide hero tiles (rows 1 & 3) break the 2×2 grid,
   alternating media side; rows 2 keeps the paired columns.
   Gated to wide viewports; <=920px keeps the original stacked cards.
--------------------------------------------------------------- */
@media (min-width: 921px) {
    .lp-feature:nth-child(1),
    .lp-feature:nth-child(4) {
        grid-column: 1 / -1;
        grid-template-rows: auto;
        grid-template-columns: 1.04fr 0.96fr;
        align-items: stretch;
    }

    .lp-feature:nth-child(1) .body,
    .lp-feature:nth-child(4) .body {
        align-self: center;
        padding: 38px 44px;
    }

    .lp-feature:nth-child(1) .media,
    .lp-feature:nth-child(4) .media {
        min-height: 100%;
    }

    .lp-feature:nth-child(4) .media {
        order: 2;
    }

    .lp-feature:nth-child(4) .body {
        order: 1;
    }
}

/* ---------------------------------------------------------------
   Automation — single deliberate charcoal color-block
--------------------------------------------------------------- */
.lp-char {
    background: var(--char);
    color: #fff;
    border-block: 1px solid var(--char);
    position: relative;
    overflow: hidden;
}

.lp-char::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(40vw 30vw at 88% -6%, rgba(10, 132, 255, 0.20), transparent 60%),
        radial-gradient(30vw 26vw at 6% 110%, rgba(10, 132, 255, 0.10), transparent 64%);
}

.lp-char .lp-head h2 {
    color: #fff;
}

.lp-char .lp-head p {
    color: rgba(255, 255, 255, 0.66);
}

.lp-char-grid {
    position: relative;
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    gap: 26px;
    align-items: stretch;
}

.lp-auto-list {
    display: grid;
    gap: 13px;
    align-content: start;
}

.lp-auto {
    padding: 22px 24px;
    border: 1px solid var(--char-line);
    border-radius: var(--r-md);
    background: rgba(255, 255, 255, 0.045);
    transition: background 0.45s var(--ease), border-color 0.45s var(--ease), transform 0.45s var(--ease);
}

.lp-auto:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.lp-auto .top {
    display: flex;
    align-items: center;
    gap: 11px;
}

.lp-auto .ic {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    background: rgba(10, 132, 255, 0.18);
    color: var(--accent-2);
}

.lp-auto .ic svg {
    width: 19px;
    height: 19px;
}

.lp-auto b {
    font-size: 17px;
    letter-spacing: -0.01em;
}

.lp-auto span {
    display: block;
    margin-top: 10px;
    color: rgba(255, 255, 255, 0.64);
    line-height: 1.55;
    font-size: 14.5px;
}

.lp-char-shot {
    border-radius: var(--r-lg);
    overflow: hidden;
    border: 1px solid var(--char-line);
    background: #070d13;
    box-shadow: 0 40px 90px -50px rgba(0, 0, 0, 0.8);
    align-self: center;
}

.lp-char-shot img {
    width: 100%;
    height: auto;
    display: block;
}

/* ---------------------------------------------------------------
   Live demo — animated chat sequence inside a section
--------------------------------------------------------------- */
.lp-demo-grid {
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    gap: 48px;
    align-items: center;
}

.lp-window {
    border: 1px solid var(--line);
    border-radius: var(--r-xl);
    background: #fff;
    box-shadow: var(--shadow-card);
    overflow: hidden;
}

.lp-window-bar {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 14px 18px;
    border-bottom: 1px solid var(--line);
    background: var(--page-2);
}

.lp-window-bar .av {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: linear-gradient(150deg, var(--accent), var(--accent-2));
    display: grid;
    place-items: center;
    color: #fff;
    font-weight: 800;
    font-size: 14px;
}

.lp-window-bar .who b {
    font-size: 14.5px;
    display: block;
    line-height: 1.1;
}

.lp-window-bar .who small {
    color: var(--online);
    font-size: 12px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.lp-window-bar .who small::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--online);
    box-shadow: 0 0 0 0 rgba(46, 194, 138, 0.5);
    animation: lp-online-pulse 2.4s var(--ease) infinite;
}

@keyframes lp-online-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(46, 194, 138, 0.5);
    }

    70% {
        box-shadow: 0 0 0 6px rgba(46, 194, 138, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(46, 194, 138, 0);
    }
}

.lp-thread {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 24px 22px;
    min-height: 320px;
}

.lp-msg {
    max-width: 80%;
    padding: 11px 15px;
    border-radius: 16px;
    font-size: 14.5px;
    line-height: 1.5;
    opacity: 0;
    transform: translateY(10px);
}

.lp-thread.run .lp-msg {
    animation: lp-pop 0.5s var(--ease-spring) forwards;
}

.lp-thread.run .lp-msg:nth-child(1) {
    animation-delay: 0.2s;
}

.lp-thread.run .lp-msg:nth-child(2) {
    animation-delay: 1.1s;
}

.lp-thread.run .lp-msg:nth-child(3) {
    animation-delay: 2.1s;
}

.lp-thread.run .lp-msg:nth-child(4) {
    animation-delay: 3.2s;
}

.lp-thread.run .lp-msg:nth-child(5) {
    animation-delay: 4.3s;
}

@keyframes lp-pop {
    to {
        opacity: 1;
        transform: none;
    }
}

.lp-msg.vis {
    align-self: flex-end;
    background: var(--accent);
    color: #fff;
    border-bottom-right-radius: 5px;
}

.lp-msg.op {
    align-self: flex-start;
    background: var(--page-2);
    border: 1px solid var(--line);
    border-bottom-left-radius: 5px;
}

.lp-msg.bot {
    align-self: flex-start;
    background: var(--wash);
    border: 1px solid var(--wash-2);
    color: var(--ink);
    border-bottom-left-radius: 5px;
}

.lp-msg .tag {
    display: block;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 4px;
    opacity: 0.7;
}

.lp-msg.bot .tag {
    color: var(--accent);
}

.lp-window-foot {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    border-top: 1px solid var(--line);
    color: var(--faint-2);
    font-size: 13.5px;
}

.lp-window-foot .field {
    flex: 1;
    padding: 10px 14px;
    border-radius: 999px;
    background: var(--page-2);
    border: 1px solid var(--line);
}

.lp-window-foot .send {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--accent);
    display: grid;
    place-items: center;
    color: #fff;
}

.lp-window-foot .send svg {
    width: 17px;
    height: 17px;
}

.lp-demo-points {
    display: grid;
    gap: 16px;
}

.lp-demo-point {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.lp-demo-point .ic {
    width: 40px;
    height: 40px;
    flex: none;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: var(--wash);
    color: var(--accent);
}

.lp-demo-point .ic svg {
    width: 20px;
    height: 20px;
}

.lp-demo-point b {
    font-size: 17px;
    letter-spacing: -0.01em;
}

.lp-demo-point p {
    margin-top: 5px;
    color: var(--soft);
    font-size: 14.5px;
    line-height: 1.55;
}

/* ---------------------------------------------------------------
   Testimonial + FAQ
--------------------------------------------------------------- */
.lp-quote-grid {
    display: grid;
    gap: 24px;
    min-width: 0;
    max-width: 100%;
}

.lp-quote-list {
    display: flex;
    gap: 0;
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    background: #fff;
    box-shadow: var(--shadow-soft);
}

.lp-faq {
    min-width: 0;
    max-width: 100%;
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    background: #fff;
    box-shadow: var(--shadow-soft);
}

.lp-quote {
    flex: 1 1 0;
    min-width: 0;
    max-width: 100%;
    padding: 24px 26px;
    display: flex;
    flex-direction: column;
    background: transparent;
}

.lp-quote+.lp-quote {
    border-left: 1px solid var(--line);
}

.lp-quote .mark {
    display: none;
}

.lp-quote blockquote {
    margin: 0;
    font-size: 15.5px;
    line-height: 1.58;
    letter-spacing: 0;
    color: var(--ink);
}

.lp-quote.compact {
    padding: 24px 26px;
}

.lp-quote.compact blockquote {
    font-size: 15.5px;
}

.lp-quote figcaption {
    margin-top: auto;
    padding-top: 18px;
    display: flex;
    align-items: center;
    gap: 13px;
}

.lp-quote figcaption img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: var(--page-2);
}

.lp-quote figcaption b {
    display: block;
    font-size: 15px;
}

.lp-quote figcaption span {
    color: var(--soft);
    font-size: 13px;
}

.lp-quote .stars {
    margin-top: 13px;
    display: flex;
    gap: 3px;
    color: #f6c454;
}

.lp-quote .stars svg {
    width: 17px;
    height: 17px;
}

.lp-faq {
    padding: 8px 24px;
}

.lp-faq details {
    border-bottom: 1px solid var(--line);
}

.lp-faq details:last-child {
    border-bottom: 0;
}

.lp-faq summary {
    list-style: none;
    cursor: pointer;
    padding: 22px 0;
    font-weight: 700;
    font-size: 16px;
    display: flex;
    justify-content: space-between;
    gap: 18px;
    color: var(--ink);
}

.lp-faq summary::-webkit-details-marker {
    display: none;
}

.lp-faq summary::after {
    content: "+";
    font-family: var(--mono);
    color: var(--accent);
    font-size: 20px;
    line-height: 1;
    transition: transform 0.3s var(--ease);
}

.lp-faq details[open] summary::after {
    content: "\2212";
}

.lp-faq details p {
    margin: -4px 0 22px;
    color: var(--soft);
    line-height: 1.62;
    font-size: 15px;
}

/* embed snippet card */
.lp-embed {
    margin-top: 24px;
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
    border-radius: var(--r-md);
    border: 1px solid var(--char-line);
    background: var(--char);
}

.lp-embed-head {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-bottom: 1px solid var(--char-line);
    color: rgba(255, 255, 255, 0.6);
    font: 12px var(--mono);
}

.lp-embed-head .dots {
    display: inline-flex;
    gap: 6px;
}

.lp-embed-head .dots i {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
}

.lp-embed-head button {
    margin-left: auto;
    border: 1px solid var(--char-line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 7px 14px;
    font: 12px/1 var(--font);
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s var(--ease);
}

.lp-embed-head button:hover {
    background: rgba(255, 255, 255, 0.18);
}

.lp-embed pre {
    max-width: 100%;
    min-width: 0;
    margin: 0;
    padding: 18px;
    overflow-x: auto;
}

.lp-embed code {
    display: block;
    width: max-content;
    min-width: 100%;
    font: 13px/1.7 var(--mono);
    color: #e8eaed;
    white-space: pre;
}

.lp-embed .tok-tag {
    color: #8ab4ff;
}

.lp-embed .tok-attr {
    color: #7fd7a8;
}

.lp-embed .tok-str {
    color: #f6c454;
}

/* ---------------------------------------------------------------
   CTA band
--------------------------------------------------------------- */
.lp-cta {
    padding: 14px 0 92px;
}

.lp-cta-box {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 30px;
    align-items: center;
    padding: 48px;
    border-radius: var(--r-xl);
    background: linear-gradient(120deg, var(--accent), var(--accent-2));
    color: #fff;
    box-shadow: 0 36px 80px -42px rgba(10, 132, 255, 0.9);
}

.lp-cta-box::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(40% 80% at 92% 10%, rgba(255, 255, 255, 0.22), transparent 60%);
}

.lp-cta-box h2 {
    position: relative;
    font-size: clamp(2rem, 3.6vw, 3.6rem);
    line-height: 0.98;
    letter-spacing: -0.02em;
    font-weight: 800;
}

.lp-cta-box p {
    position: relative;
    margin-top: 14px;
    max-width: 56ch;
    color: rgba(255, 255, 255, 0.84);
    line-height: 1.6;
    font-size: 16.5px;
}

.lp-cta-box .acts {
    position: relative;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* secondary on azure: transparent fill keeps white label readable over the accent */
.lp-cta-box .btn.on-char {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.62);
    color: #fff;
    box-shadow: none;
}

.lp-cta-box .btn.on-char:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: #fff;
}

.lp-cta-box .btn.on-char .ico {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

/* decorative chat bubbles drifting in CTA */
.lp-cta-bubbles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.lp-cta-bubbles span {
    position: absolute;
    padding: 8px 12px;
    border-radius: 12px 12px 12px 3px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    animation: lp-drift 8s var(--ease) infinite;
}

.lp-cta-bubbles span:nth-child(1) {
    top: 16%;
    right: 32%;
    animation-delay: 0s;
}

.lp-cta-bubbles span:nth-child(2) {
    bottom: 18%;
    right: 12%;
    animation-delay: 1.6s;
}

/* ---------------------------------------------------------------
   Footer — full, multi-column
--------------------------------------------------------------- */
.lp-footer {
    background: var(--char);
    color: rgba(255, 255, 255, 0.7);
    padding: 64px 0 30px;
}

.lp-footer-top {
    display: grid;
    grid-template-columns: 1.4fr repeat(4, 1fr);
    gap: 40px 28px;
    padding-bottom: 44px;
    border-bottom: 1px solid var(--char-line);
}

.lp-footer .lp-brand {
    color: #fff;
    width: max-content;
}

.lp-footer .lp-brand-logo {
    width: 116px;
    height: 30px;
}

.lp-footer-about {
    max-width: 30ch;
    margin-top: 16px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    line-height: 1.6;
}

.lp-social {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.lp-social a {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    border: 1px solid var(--char-line);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    transition: background 0.3s var(--ease), transform 0.3s var(--ease), border-color 0.3s var(--ease);
}

.lp-social a:hover {
    background: var(--accent);
    border-color: var(--accent);
    transform: translateY(-2px);
}

.lp-social svg {
    width: 18px;
    height: 18px;
}

.lp-fcol h4 {
    color: #fff;
    font-size: 13px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 700;
}

.lp-fcol ul {
    list-style: none;
    margin: 18px 0 0;
    padding: 0;
    display: grid;
    gap: 12px;
}

.lp-fcol a {
    color: rgba(255, 255, 255, 0.66);
    font-size: 14.5px;
    transition: color 0.25s var(--ease);
}

.lp-fcol a:hover {
    color: #fff;
}

.lp-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 14px;
    padding-top: 26px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
}

.lp-footer-bottom .meta {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.lp-footer-bottom .status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.lp-footer-bottom .status::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--online);
    box-shadow: 0 0 0 3px rgba(46, 194, 138, 0.2);
}

/* ---------------------------------------------------------------
   Scroll reveal
--------------------------------------------------------------- */
.landing .reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
    transition-delay: var(--d, 0ms);
}

.landing .reveal.in {
    opacity: 1;
    transform: none;
}

/* ---------------------------------------------------------------
   Responsive
--------------------------------------------------------------- */
@media (max-width: 1080px) {

    .lp-hero-grid,
    .lp-split,
    .lp-char-grid,
    .lp-demo-grid,
    .lp-quote-grid,
    .lp-cta-box {
        grid-template-columns: 1fr;
    }

    .lp-hero-grid {
        gap: 36px;
    }

    .lp-hero-card {
        min-height: 760px;
    }

    .lp-hero-bg {
        object-position: 62% center;
    }

    .lp-hero-stories {
        right: 24px;
        bottom: 34px;
        width: min(420px, calc(100% - 48px));
    }

    .lp-split-aside {
        position: static;
    }

    .lp-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .lp-stat {
        border-right: none;
        border-bottom: 1px solid var(--line);
    }

    .lp-stat:nth-child(odd) {
        border-right: 1px solid var(--line);
    }

    .lp-stat:nth-last-child(-n+2):not(:nth-child(odd) ~ *) {
        border-bottom: none;
    }

    .lp-stat:last-child,
    .lp-stat:nth-last-child(2):nth-child(odd) {
        border-bottom: none;
    }

    .lp-pricing {
        grid-template-columns: 1fr;
        max-width: 460px;
        margin-inline: auto;
    }

    .lp-plan.feat {
        order: -1;
    }

    .lp-footer-top {
        grid-template-columns: 1fr 1fr;
    }

    .lp-cta-box .acts {
        justify-self: start;
    }

    .lp-quote {
        min-height: 100%;
    }
}

@media (max-width: 720px) {
    .lp-features {
        grid-template-columns: 1fr;
    }

    .lp-impact-row {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .lp-logos-inner {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .lp-quote-list {
        flex-direction: column;
    }

    .lp-quote+.lp-quote {
        border-left: 0;
        border-top: 1px solid var(--line);
    }
}

@media (max-width: 760px) {
    .landing .wrap {
        width: min(100% - 28px, 1200px);
    }

    .lp-nav-inner {
        height: 64px;
    }

    .lp-links {
        display: none;
    }

    .lp-actions .btn-ghost {
        display: none;
    }

    .lp-hero {
        padding: 10px 0 44px;
    }

    .lp-hero.wrap {
        width: min(100% - 28px, 1200px);
    }

    .lp-hero-card {
        display: grid;
        grid-template-areas:
            "copy"
            "media";
        gap: 22px;
        min-height: 0;
        overflow: visible;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
    }

    .lp-hero-bg {
        position: relative;
        inset: auto;
        grid-area: media;
        z-index: 0;
        width: 100%;
        height: clamp(390px, 105vw, 560px);
        object-fit: cover;
        object-position: 64% center;
        transform: none;
        border-radius: 22px;
        box-shadow: 0 28px 70px -42px rgba(15, 30, 60, .58);
    }

    .lp-hero-card::before {
        display: none;
        background:
            linear-gradient(180deg, rgba(12, 17, 18, .84) 0%, rgba(12, 17, 18, .74) 45%, rgba(12, 17, 18, .26) 72%, rgba(12, 17, 18, .62) 100%),
            linear-gradient(90deg, rgba(12, 17, 18, .74), rgba(12, 17, 18, .1));
    }

    .lp-hero-card::after {
        display: none;
    }

    .lp-hero-copy {
        grid-area: copy;
        max-width: 100%;
        padding: 28px 2px 0;
        color: var(--ink);
    }

    .lp-hero .eyebrow {
        color: var(--soft);
    }

    .lp-hero h1,
    .lp-hero .lede {
        color: var(--ink);
    }

    .lp-hero h1 {
        max-width: 11em;
        font-size: clamp(2.35rem, 10vw, 3.35rem);
        line-height: 1.04;
    }

    .lp-hero h1 .accent {
        color: var(--accent);
    }

    .lp-hero .lede {
        max-width: 34rem;
        color: var(--soft);
        font-size: 16px;
    }

    .lp-hero-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .lp-hero-actions .btn {
        justify-content: center;
    }

    .lp-hero-actions .btn:not(.btn-primary) {
        background: #ffffff;
        border-color: var(--line);
        color: var(--ink);
    }

    .lp-hero-stories {
        left: 16px;
        right: 16px;
        bottom: 24px;
        width: auto;
        min-height: 230px;
        z-index: 2;
    }

    .lp-story-bubble {
        width: min(100%, 315px);
    }

    .lp-story-bubble span {
        font-size: 14.5px;
    }

    .lp-feature-chips span {
        font-size: 11px;
    }

    .lp-signal {
        display: none;
    }

    .lp-float-card {
        position: static;
        width: auto;
        margin-top: 14px;
    }

    .lp-section {
        padding: 60px 0;
    }

    .lp-head.center {
        text-align: left;
    }

    .lp-head.center p {
        margin-inline: 0;
    }

    .lp-stats {
        grid-template-columns: 1fr;
    }

    .lp-stage {
        padding: 12px;
    }

    .lp-callout {
        position: relative;
        inset: auto !important;
        width: auto;
        margin-top: 10px;
    }

    .lp-callout::before,
    .lp-callout::after {
        display: none;
    }

    .lp-tl-card {
        grid-template-columns: 1fr;
    }

    .lp-tl-card:hover {
        transform: none;
    }

    .lp-feature .media {
        padding: 14px;
    }

    .lp-feature .body {
        padding: 24px 22px 26px;
    }

    .lp-quote {
        padding: 26px;
    }

    .lp-faq {
        padding-inline: 18px;
    }

    .lp-embed-head,
    .lp-embed pre {
        padding-inline: 12px;
    }

    .lp-embed pre {
        overflow-x: auto;
    }

    .lp-cta-box {
        padding: 30px;
    }

    .lp-cta-bubbles {
        display: none;
    }

    .lp-footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 30px 20px;
    }

    .lp-footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 460px) {
    .lp-footer-top {
        grid-template-columns: 1fr;
    }
}

/* ---------------------------------------------------------------
   Reduced motion
--------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
    .landing .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .lp-signal,
    .lp-story,
    .lp-cta-bubbles span {
        animation: none;
    }

    .lp-story {
        opacity: 0;
        transform: none;
        filter: none;
    }

    .lp-story:first-child {
        opacity: 1;
    }

    .lp-thread .lp-msg {
        opacity: 1;
        transform: none;
        animation: none !important;
    }

    .lp-tl-card:hover,
    .lp-feature:hover {
        transform: none;
    }

    .lp-feature:hover .media img {
        transform: none;
    }

    .lp-window-bar .who small::before {
        animation: none;
    }

    .lp-progress {
        transition: none;
    }
}