/* FireDoorApp.co.uk marketing site
 * Modern SaaS-style layout for ?page=landing
 * All styles are scoped to .landing-body and lp-* classes.
 */

/* Base */

body.landing-body {
    /* Design tokens */
    --lp-font-sans: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --lp-font-size-body: 16px;
    --lp-line-height-body: 1.6;
    --lp-text-measure: 68ch;

    --lp-space-2: 4px;
    --lp-space-3: 8px;
    --lp-space-4: 12px;
    --lp-space-5: 16px;
    --lp-space-6: 24px;
    --lp-space-7: 32px;
    --lp-space-8: 48px;
    --lp-space-9: 64px;
    --lp-space-10: 80px;
    --lp-space-11: 96px;

    --lp-radius-sm: 8px;
    --lp-radius-md: 14px;
    --lp-radius-lg: 20px;
    --lp-radius-xl: 24px;
    --lp-radius-full: 999px;

    --lp-shadow-soft: 0 10px 22px rgba(15, 23, 42, 0.05);
    --lp-shadow-card: 0 16px 32px rgba(15, 23, 42, 0.07);
    --lp-shadow-hero: 0 22px 60px rgba(15, 23, 42, 0.14);
    --lp-shadow-glow: 0 0 0 1px rgba(148, 163, 184, 0.32), 0 22px 60px rgba(15, 23, 42, 0.22);

    --lp-color-bg: #f6f7fb;
    --lp-color-surface: #ffffff;
    --lp-color-surface-soft: #f9fafb;
    --lp-color-border-subtle: rgba(226, 232, 240, 0.9);
    --lp-color-text: #020617;
    --lp-color-text-muted: #6b7280;
    --lp-color-accent: #0ea5e9;
    --lp-color-brand: #f97316;
    --lp-color-brand-dark: #ea580c;

    margin: 0;
    font-family: var(--lp-font-sans);
    color: var(--lp-color-text);
    background: var(--lp-color-bg);
    font-size: var(--lp-font-size-body);
    line-height: var(--lp-line-height-body);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    scroll-behavior: smooth;
}

body.landing-body *,
body.landing-body *::before,
body.landing-body *::after {
    box-sizing: border-box;
}

body.landing-body .lp-visually-hidden {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

body.landing-body {
    --lp-header-height: 72px;
    --lp-scroll-margin-top: calc(var(--lp-header-height, 72px) + 18px);
}

body.landing-body.lp-mobile-nav-open,
body.landing-body.lp-modal-open {
    overflow: hidden;
}

body.landing-body :where([id]) {
    scroll-margin-top: var(--lp-scroll-margin-top);
}

body.landing-body [hidden] {
    display: none !important;
}

body.landing-body a {
    color: inherit;
}

body.landing-body img {
    max-width: 100%;
    height: auto;
}

body.landing-body :where(p, li) {
    text-wrap: pretty;
}

.lp-hero-copy,
.lp-section-header,
.lp-step,
.lp-faq,
.lp-cta-copy,
.lp-cta-mid__copy {
    max-width: var(--lp-text-measure);
}

.lp-hero-copy {
    max-width: min(var(--lp-text-measure), 560px);
}

.lp-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.lp-shell {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 var(--lp-space-6);
}

.lp-main {
    flex: 1;
    padding-bottom: var(--lp-space-10);
}

/* Scroll indicator */

.lp-scroll-indicator {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 3px;
    z-index: 30;
    pointer-events: none;
}

.lp-scroll-indicator__bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #22c55e, #3b82f6, #0ea5e9);
    transform-origin: left center;
    transition: width 80ms linear;
}

/* Header */

.lp-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(255, 255, 255, 0.995);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.lp-header.lp-header--scrolled {
    background: rgba(255, 255, 255, 0.995);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.10);
}

.lp-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--lp-space-5);
    padding: 10px 0;
}

.lp-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.lp-brand-logo {
    display: block;
    height: 44px;
    max-height: 44px;
    width: auto;
}

.lp-brand-mark {
    width: 32px;
    height: 32px;
    border-radius: var(--lp-radius-full);
    background: linear-gradient(135deg, var(--lp-color-brand), var(--lp-color-brand-dark));
    color: #fff7ed;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 700;
}

.lp-brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    font-size: 0.84rem;
    color: #4b5563;
}

.lp-brand-text strong {
    font-size: 0.98rem;
    color: #020617;
}

.lp-brand-wordmark {
    font-weight: 600;
}

.lp-brand-letter-accent {
    color: #ef4444;
}

.lp-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.92rem;
}

.lp-nav a {
    position: relative;
    text-decoration: none;
    color: #6b7280;
    padding: 6px 12px;
    border-radius: 999px;
    transition:
        color 150ms ease-out,
        background-color 150ms ease-out,
        box-shadow 150ms ease-out,
        transform 150ms ease-out;
    transform: translateY(0);
}

.lp-nav a::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 999px;
    background: linear-gradient(90deg, #22c55e, #3b82f6);
    opacity: 0;
    transform: scale(0.96);
    z-index: -1;
    transition:
        opacity 160ms ease-out,
        transform 160ms ease-out;
}

.lp-nav a:hover {
    color: #0f172a;
    background: rgba(248, 250, 252, 0.9);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.lp-nav a:hover::after {
    opacity: 1;
    transform: scale(1);
}

.lp-nav a.is-active {
    color: #0f172a;
    background: transparent;
    font-weight: 600;
    transform: translateY(-1px);
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.18);
}

.lp-nav a.is-active::after {
    opacity: 1;
    transform: scale(1);
}

.lp-header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
}

.lp-mobile-nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    border: 1px solid rgba(226, 232, 240, 0.9);
    background: rgba(255, 255, 255, 0.92);
    color: #0f172a;
    cursor: pointer;
    box-shadow: 0 12px 26px rgba(15, 23, 42, 0.08);
    transition:
        transform 150ms ease-out,
        box-shadow 150ms ease-out,
        background-color 150ms ease-out;
}

.lp-mobile-nav-toggle svg {
    width: 22px;
    height: 22px;
}

.lp-mobile-nav-toggle:hover,
.lp-mobile-nav-toggle:focus-visible {
    outline: none;
    transform: translateY(-1px);
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.12);
}

.lp-mobile-nav-overlay {
    position: fixed;
    inset: 0;
    z-index: 70;
    background: rgba(2, 6, 23, 0.55);
    opacity: 0;
    pointer-events: none;
    transition: opacity 160ms ease-out;
}

.lp-mobile-nav-overlay.is-visible {
    opacity: 1;
    pointer-events: auto;
}

.lp-mobile-nav {
    position: fixed;
    inset: 0;
    z-index: 75;
    display: flex;
    justify-content: flex-end;
    pointer-events: none;
}

.lp-mobile-nav.is-open {
    pointer-events: auto;
}

.lp-mobile-nav__panel {
    pointer-events: auto;
    width: min(92vw, 360px);
    height: 100%;
    padding: 16px;
    padding-top: calc(16px + env(safe-area-inset-top, 0px));
    padding-bottom: calc(16px + env(safe-area-inset-bottom, 0px));
    background: rgba(255, 255, 255, 0.98);
    border-left: 1px solid rgba(226, 232, 240, 0.9);
    box-shadow: 0 30px 70px rgba(15, 23, 42, 0.22);
    transform: translateX(102%);
    transition: transform 180ms ease-out;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.lp-mobile-nav.is-open .lp-mobile-nav__panel {
    transform: translateX(0);
}

.lp-mobile-nav__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.lp-mobile-nav__title {
    font-weight: 650;
    color: #0f172a;
    letter-spacing: -0.01em;
}

.lp-mobile-nav__close {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    border: 1px solid rgba(226, 232, 240, 0.9);
    background: rgba(248, 250, 252, 0.9);
    cursor: pointer;
    color: #0f172a;
    font-size: 20px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.lp-mobile-nav__links {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.lp-mobile-nav__links a {
    display: flex;
    align-items: center;
    min-height: 44px;
    padding: 10px 12px;
    border-radius: 14px;
    text-decoration: none;
    color: #334155;
    background: rgba(248, 250, 252, 0.5);
    border: 1px solid rgba(226, 232, 240, 0.8);
}

.lp-mobile-nav__links a.is-active {
    color: #0f172a;
    background: rgba(14, 165, 233, 0.08);
    border-color: rgba(96, 165, 250, 0.55);
    font-weight: 650;
}

.lp-mobile-nav__actions {
    margin-top: auto;
    display: grid;
    gap: 10px;
}

.lp-mobile-nav__actions .lp-btn {
    width: 100%;
    min-height: 44px;
}

.lp-link {
    text-decoration: none;
    color: #6b7280;
}

.lp-link:hover {
    color: #111827;
}

.lp-link--cta {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 2px;
    transition:
        color 160ms ease-out,
        transform 160ms ease-out;
}

.lp-link--cta::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    height: 1px;
    width: 0;
    border-radius: 999px;
    background: currentColor;
    opacity: 0.35;
    transition:
        width 180ms ease-out,
        opacity 180ms ease-out;
}

.lp-link--cta:hover,
.lp-link--cta:focus-visible {
    transform: translateX(2px);
}

.lp-link--cta:hover::after,
.lp-link--cta:focus-visible::after {
    width: 100%;
    opacity: 0.8;
}

/* Buttons */

.lp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.94rem;
    padding: 10px 18px;
    text-decoration: none;
    transition:
        background-color 150ms ease-out,
        color 150ms ease-out,
        box-shadow 150ms ease-out,
        transform 150ms ease-out;
    white-space: nowrap;
}

.lp-btn--primary {
    background: linear-gradient(135deg, #f97316, #ea580c);
    color: #fffbeb;
    box-shadow: 0 16px 30px rgba(248, 113, 22, 0.35);
}

.lp-btn--primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 20px 40px rgba(248, 113, 22, 0.4);
}

.lp-btn--ghost {
    background: #ffffff;
    color: #0f172a;
    border: 1px solid rgba(148, 163, 184, 0.6);
}

.lp-btn--ghost:hover {
    background: #f9fafb;
    border-color: rgba(148, 163, 184, 0.9);
}

.lp-btn--sm {
    padding: 7px 14px;
    font-size: 0.86rem;
}

/* Hero */

.lp-hero {
    padding: 40px 0 32px;
}

.lp-hero__inner {
    border-radius: 28px;
    padding: 32px 32px 36px;
    background:
        radial-gradient(circle at top left, rgba(59, 130, 246, 0.2), transparent 50%),
        radial-gradient(circle at bottom right, rgba(56, 189, 248, 0.18), transparent 50%),
        rgba(255, 255, 255, 0.94);
    box-shadow:
        var(--lp-shadow-hero),
        0 0 0 1px rgba(226, 232, 240, 0.9);
    animation: fadeInUp 700ms ease-out;
}

.lp-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 40px;
    align-items: center;
}

.lp-hero-copy {
    max-width: 560px;
}

.lp-hero-copy h1 {
    margin: 6px 0 12px;
    font-size: 3rem;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: #020617;
}

.lp-eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.76rem;
    font-weight: 600;
    color: #0ea5e9;
}

.lp-hero-lede {
    margin: 0 0 22px;
    font-size: 1rem;
    color: #4b5563;
    max-width: 560px;
}

.lp-hero-personas {
    margin: 0 0 8px;
    font-size: 0.9rem;
    color: var(--lp-color-text-muted);
}

.lp-hero-compliance {
    margin: 0 0 10px;
    font-size: 0.8rem;
    color: #6b7280;
}

.lp-hero-list {
    margin: 0 0 14px;
    padding-left: 1.1rem;
    font-size: 0.92rem;
    color: #4b5563;
}

.lp-hero-list li + li {
    margin-top: 4px;
}

.lp-hero-strip {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: var(--lp-radius-full);
    background: rgba(248, 250, 252, 0.95);
    border: 1px solid rgba(226, 232, 240, 0.9);
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.06);
    font-size: 0.84rem;
    color: var(--lp-color-text-muted);
    margin: 0 0 14px;
}

.lp-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 10px;
}

.lp-hero-meta {
    margin: 0 0 12px;
    font-size: 0.86rem;
    color: #6b7280;
}

.lp-hero-meta--secondary {
    margin-top: 2px;
    font-size: 0.84rem;
}

.lp-mt-6 {
    margin-top: 6px;
}

.lp-mt-10 {
    margin-top: 10px;
}

.lp-mt-14 {
    margin-top: 14px;
}

.lp-mt-16 {
    margin-top: 16px;
}

.lp-ml-8 {
    margin-left: 8px;
}

.lp-why-matters {
    color: rgba(15, 23, 42, 0.82);
}

.lp-pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 6px;
}

.lp-pill {
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 0.78rem;
    background: rgba(15, 23, 42, 0.02);
    color: #4b5563;
    border: 1px solid rgba(148, 163, 184, 0.5);
}

.lp-workflow-index {
    padding-top: var(--lp-space-6);
    padding-bottom: var(--lp-space-4);
}

.lp-workflow-index__row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 10px;
}

.lp-workflow-index__pill {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 14px;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.9);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
    text-decoration: none;
    color: #0f172a;
    font-size: 0.82rem;
    transition:
        transform 150ms ease-out,
        box-shadow 150ms ease-out,
        border-color 150ms ease-out,
        background-color 150ms ease-out;
}

.lp-workflow-index__pill:hover,
.lp-workflow-index__pill:focus-visible {
    transform: translateY(-1px);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.10);
    border-color: rgba(96, 165, 250, 0.95);
    outline: none;
}

.lp-workflow-index__eyebrow {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #9ca3af;
    margin-bottom: 2px;
}

.lp-workflow-index__title {
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0 0 2px;
}

.lp-workflow-index__meta {
    font-size: 0.78rem;
    color: #6b7280;
}

/* Hero product window */

.lp-hero-media {
    display: flex;
    justify-content: center;
}
.lp-hero-window {
    width: 100%;
    max-width: 520px;
    border-radius: 24px;
    background: radial-gradient(circle at top left, #0f172a, #020617);
    box-shadow:
        0 32px 80px rgba(15, 23, 42, 0.7),
        0 0 0 1px rgba(30, 64, 175, 0.5);
    color: #e5e7eb;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    animation: float 7s ease-in-out infinite;
}

.lp-hero-window--static {
    animation: none;
}

.lp-hero-window__header {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 12px;
    background: rgba(15, 23, 42, 0.96);
    font-size: 0.8rem;
}

.lp-hero-window__header span {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: rgba(148, 163, 184, 0.9);
}

.lp-hero-window__header span:nth-child(1) {
    background: #f97316;
}

.lp-hero-window__header span:nth-child(2) {
    background: #22c55e;
}

.lp-hero-window__header span:nth-child(3) {
    background: #38bdf8;
}

.lp-hero-window__body {
    padding: 16px 18px 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
}

.lp-hero-window__body img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 18px;
    /* Slightly zoomed by default so the screenshot fills more of the window
       without changing the overall hero layout. */
    transform: scale(1.02);
    transform-origin: center;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.5);
    transition:
        transform 220ms ease-out,
        box-shadow 220ms ease-out;
}

.lp-hero-window:hover .lp-hero-window__body img {
    transform: scale(1.06);
    box-shadow: 0 26px 70px rgba(15, 23, 42, 0.65);
}

img[data-screenshot-modal] {
    cursor: zoom-in;
}

.lp-screenshot-hint {
    position: absolute;
    right: 12px;
    bottom: 12px;
    padding: 2px 8px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.8);
    color: #e5e7eb;
    font-size: 0.7rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    pointer-events: none;
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.75);
}

/* Screenshot modal */

.lp-modal-backdrop {
    position: fixed;
    inset: 0;
    z-index: 80;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: radial-gradient(circle at top, rgba(15, 23, 42, 0.92), rgba(15, 23, 42, 0.86));
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease-out;
}

.lp-modal-backdrop.is-visible {
    opacity: 1;
    pointer-events: auto;
}

.lp-modal {
    position: relative;
    width: min(1200px, 96vw);
    max-height: 90vh;
    border-radius: 26px;
    background: #020617;
    box-shadow:
        0 40px 120px rgba(15, 23, 42, 0.9),
        0 0 0 1px rgba(30, 64, 175, 0.7);
    overflow: hidden;
}

.lp-modal__body {
    background: radial-gradient(circle at top left, rgba(56, 189, 248, 0.32), transparent 60%), #020617;
}

.lp-modal__body img {
    display: block;
    max-width: 100%;
    max-height: 80vh;
    width: auto;
    height: auto;
    margin: 0 auto;
}

.lp-modal__caption {
    margin: 10px 16px 14px;
    text-align: center;
    font-size: 0.8rem;
    color: #cbd5f5;
    letter-spacing: 0.03em;
}

.lp-modal__close {
    position: absolute;
    top: 10px;
    right: 12px;
    width: 32px;
    height: 32px;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.5);
    background: rgba(15, 23, 42, 0.96);
    color: #e5e7eb;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    line-height: 1;
    box-shadow: 0 14px 40px rgba(15, 23, 42, 0.8);
    transition:
        background-color 150ms ease-out,
        color 150ms ease-out,
        transform 150ms ease-out,
        box-shadow 150ms ease-out;
}

.lp-modal__close:hover,
.lp-modal__close:focus-visible {
    background: rgba(15, 23, 42, 0.9);
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.95);
}

.lp-modal__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 34px;
    height: 34px;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.6);
    background: rgba(15, 23, 42, 0.92);
    color: #e5e7eb;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    line-height: 1;
    box-shadow: 0 16px 48px rgba(15, 23, 42, 0.85);
    transition:
        background-color 150ms ease-out,
        color 150ms ease-out,
        transform 150ms ease-out,
        box-shadow 150ms ease-out;
}

.lp-modal__nav--prev {
    left: 14px;
}

.lp-modal__nav--next {
    right: 14px;
}

.lp-modal__nav:hover,
.lp-modal__nav:focus-visible {
    background: rgba(15, 23, 42, 0.9);
    color: #ffffff;
    transform: translateY(-50%) translateY(-1px);
    box-shadow: 0 22px 60px rgba(15, 23, 42, 0.95);
}

@media (max-width: 640px) {
    .lp-modal {
        width: 100%;
        border-radius: 20px;
    }

    .lp-modal-backdrop {
        padding: 12px;
    }
}

.lp-hero-metric {
    padding: 10px 12px;
    border-radius: 14px;
    background: rgba(15, 23, 42, 0.96);
    border: 1px solid rgba(148, 163, 184, 0.55);
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.8);
}

.lp-hero-metric p {
    margin: 0 0 2px;
    font-size: 0.78rem;
    color: #9ca3af;
}

.lp-hero-metric strong {
    font-size: 1rem;
    color: #f9fafb;
}

.lp-hero-metric span {
    display: block;
    margin-top: 1px;
    font-size: 0.76rem;
    color: #9ca3af;
}

.lp-hero-timeline {
    margin-top: 4px;
    padding-top: 8px;
    border-top: 1px dashed rgba(75, 85, 99, 0.8);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.lp-hero-timeline__row {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 8px;
    padding: 6px 8px;
    border-radius: 999px;
    font-size: 0.76rem;
    background: rgba(15, 23, 42, 0.9);
}

.lp-hero-timeline__row--orange {
    background: linear-gradient(90deg, rgba(248, 113, 22, 0.26), rgba(15, 23, 42, 0.95));
}

.lp-hero-timeline__row--blue {
    background: linear-gradient(90deg, rgba(59, 130, 246, 0.22), rgba(15, 23, 42, 0.95));
}

.lp-hero-timeline__dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #22c55e;
}

.lp-hero-timeline__pill {
    padding: 3px 8px;
    border-radius: 999px;
    font-size: 0.7rem;
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid rgba(148, 163, 184, 0.7);
}

.lp-hero-timeline__row--orange .lp-hero-timeline__pill {
    border-color: rgba(248, 113, 22, 0.9);
}

.lp-hero-timeline__row--blue .lp-hero-timeline__pill {
    border-color: rgba(59, 130, 246, 0.9);
}

.lp-strip {
    padding: 16px 0 40px;
}

.lp-strip--compliance {
    padding: 16px 0 36px;
    background:
        radial-gradient(circle at top left, rgba(34, 197, 94, 0.05), transparent 60%),
        #f8fafc;
}

.lp-strip--compliance .lp-strip-label {
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #0f172a;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.lp-strip--compliance .lp-strip-label::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: radial-gradient(circle at center, #22c55e, #16a34a);
}

.lp-strip--compliance .lp-strip-pill {
    background: #ffffff;
}

.lp-strip-meta {
    margin: 0 0 10px;
    font-size: 0.8rem;
    color: #6b7280;
    text-align: center;
}

.lp-strip--differentiators {
    background:
        radial-gradient(circle at top right, rgba(249, 115, 22, 0.05), transparent 60%),
        #f8fafc;
}

.lp-strip--outputs {
    background:
        radial-gradient(circle at top left, rgba(59, 130, 246, 0.05), transparent 60%),
        #f8fafc;
}

.lp-strip--outputs .lp-strip-pill__label {
    white-space: normal;
}

.lp-strip-label {
    margin: 0 0 10px;
    font-size: 0.86rem;
    color: #6b7280;
    text-align: center;
}

.lp-strip-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    font-size: 0.84rem;
    color: #4b5563;
}

.lp-strip-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(226, 232, 240, 0.9);
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.06);
    transition:
        transform 160ms ease-out,
        box-shadow 160ms ease-out,
        border-color 160ms ease-out;
}

.lp-strip-pill:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 30px rgba(15, 23, 42, 0.1);
    border-color: rgba(96, 165, 250, 0.8);
}

.lp-strip-pill__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 14px;
    height: 14px;
    border-radius: 999px;
    background: rgba(59, 130, 246, 0.06);
    color: #1d4ed8;
}

.lp-strip-pill__icon svg {
    width: 10px;
    height: 10px;
}

.lp-strip-pill__label {
    white-space: nowrap;
}

/* Product page sub‑nav */

.lp-product-nav {
    position: sticky;
    top: var(--lp-header-height, 60px);
    z-index: 15;
    background: rgba(248, 250, 252, 0.995);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    opacity: 0;
    pointer-events: none;
    transform: translateY(4px);
    height: 0;
    overflow: hidden;
    transition:
        opacity 220ms cubic-bezier(0.22, 0.61, 0.36, 1),
        transform 220ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

.lp-product-nav.lp-product-nav--visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    height: auto;
    overflow: visible;
}

.lp-product-nav__inner {
    display: flex;
    gap: 6px;
    padding: 8px 0;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    position: relative;
}

.lp-product-nav__inner::-webkit-scrollbar {
    display: none;
}

.lp-product-nav__link {
    flex: 0 0 auto;
    font-size: 0.84rem;
    padding: 6px 12px;
    border-radius: 999px;
    border: 1px solid rgba(226, 232, 240, 0.9);
    background: rgba(255, 255, 255, 0.9);
    color: #6b7280;
    text-decoration: none;
    transition:
        background-color 150ms ease-out,
        color 150ms ease-out,
        box-shadow 150ms ease-out,
        transform 150ms ease-out,
        border-color 150ms ease-out;
}

.lp-product-nav__link:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.lp-product-nav__link.is-active {
    color: #0f172a;
    border-color: rgba(96, 165, 250, 0.9);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.09);
    background: linear-gradient(135deg, #ffffff, #eff6ff);
    font-weight: 600;
}

.lp-product-nav__indicator {
    position: absolute;
    left: 0;
    bottom: 2px;
    height: 2px;
    width: 0;
    border-radius: 999px;
    background: linear-gradient(90deg, #22c55e, #3b82f6, #0ea5e9);
    transition:
        transform 220ms cubic-bezier(0.22, 0.61, 0.36, 1),
        width 220ms cubic-bezier(0.22, 0.61, 0.36, 1);
    pointer-events: none;
}

.lp-product-progress {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0;
    pointer-events: none;
    z-index: 14;
    transition: opacity 220ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

.lp-product-progress::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 1px;
    border-radius: 999px;
    background: linear-gradient(to bottom, rgba(148, 163, 184, 0.5), rgba(148, 163, 184, 0.15));
}

.lp-product-progress__dot {
    position: relative;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: rgba(148, 163, 184, 0.7);
    box-shadow: 0 4px 10px rgba(15, 23, 42, 0.18);
    transition:
        transform 180ms cubic-bezier(0.22, 0.61, 0.36, 1),
        background-color 180ms cubic-bezier(0.22, 0.61, 0.36, 1),
        box-shadow 180ms cubic-bezier(0.22, 0.61, 0.36, 1),
        opacity 180ms cubic-bezier(0.22, 0.61, 0.36, 1);
    opacity: 0.6;
}

.lp-product-progress__dot.is-active {
    background: #0ea5e9;
    transform: scale(1.25);
    box-shadow:
        0 6px 16px rgba(15, 23, 42, 0.22),
        0 0 0 4px rgba(56, 189, 248, 0.18);
    opacity: 1;
}

.lp-product-progress__dot::after {
    content: "";
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translate(-100%, -50%);
    padding: 2px 8px;
    border-radius: 999px;
    font-size: 0.74rem;
    white-space: nowrap;
    background: rgba(255, 255, 255, 0.98);
    color: #4b5563;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.22);
    opacity: 0;
    pointer-events: none;
    transition:
        opacity 160ms cubic-bezier(0.22, 0.61, 0.36, 1),
        transform 160ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

.lp-product-progress__dot.is-active::after,
.lp-product-progress__dot:hover::after {
    content: attr(data-label);
    opacity: 1;
    transform: translate(calc(-100% - 4px), -50%);
}

.lp-product-progress--visible {
    opacity: 1;
}

@media (max-width: 1024px) {
    .lp-product-progress {
        display: none;
    }
}

/* Sections */

.lp-section {
    padding: 48px 0;
}

.lp-section--muted {
    background: var(--lp-color-surface-soft);
}

.lp-section--product {
    position: relative;
}

#features,
#workflow,
#faq {
    scroll-margin-top: var(--lp-scroll-margin-top);
}

span[id^="ops-"] {
    scroll-margin-top: var(--lp-scroll-margin-top);
}

.lp-section--product-inspections {
    background:
        radial-gradient(circle at top right, rgba(59, 130, 246, 0.10), transparent 55%) #f1f5ff;
}

.lp-section--product-builder {
    background:
        radial-gradient(circle at top right, rgba(56, 189, 248, 0.10), transparent 55%) #edfaff;
}

.lp-section--product-remedials {
    background:
        radial-gradient(circle at top right, rgba(34, 197, 94, 0.10), transparent 55%) #ecfdf3;
}

.lp-section--product-docs {
    background:
        radial-gradient(circle at top right, rgba(129, 140, 248, 0.12), transparent 55%) #eef2ff;
}

.lp-section--product-billing {
    background:
        radial-gradient(circle at top right, rgba(249, 115, 22, 0.12), transparent 55%) #fff7ed;
}

.lp-section--product-analytics {
    background:
        radial-gradient(circle at top right, rgba(45, 212, 191, 0.12), transparent 55%) #ecfdf5;
}

.lp-section--product-outcomes {
    background:
        radial-gradient(circle at top right, rgba(59, 130, 246, 0.10), transparent 55%) #eff6ff;
}

.lp-section--workflow-inspections {
    background:
        radial-gradient(circle at top right, rgba(59, 130, 246, 0.10), transparent 55%) #f1f5ff;
}

.lp-section--workflow-quotes {
    background:
        radial-gradient(circle at top right, rgba(129, 140, 248, 0.12), transparent 55%) #eef2ff;
}

.lp-section--workflow-remedials {
    background:
        radial-gradient(circle at top right, rgba(34, 197, 94, 0.10), transparent 55%) #ecfdf3;
}

.lp-section--workflow-portal {
    background:
        radial-gradient(circle at top right, rgba(249, 115, 22, 0.12), transparent 55%) #fff7ed;
}

/* Landing page section tints */

.lp-strip--landing-personas {
    background:
        radial-gradient(circle at top right, rgba(56, 189, 248, 0.06), transparent 60%),
        #f8fafc;
}

.lp-section--landing-features {
    background:
        radial-gradient(circle at top left, rgba(59, 130, 246, 0.06), transparent 55%),
        radial-gradient(circle at bottom right, rgba(56, 189, 248, 0.05), transparent 55%),
        #f8fafc;
}

.lp-section--landing-reasons {
    background:
        radial-gradient(circle at top left, rgba(59, 130, 246, 0.03), transparent 55%),
        #f9fafb;
}

.lp-section--landing-workflow {
    background:
        radial-gradient(circle at top right, rgba(34, 197, 94, 0.06), transparent 55%),
        #f4f5fb;
    padding-bottom: 18px;
}

.lp-section--landing-faq {
    background:
        radial-gradient(circle at top center, rgba(129, 140, 248, 0.04), transparent 55%),
        #f9fafb;
}

/* Landing page polish helpers */

.lp-mt-6 {
    margin-top: 6px;
}

.lp-mt-12 {
    margin-top: 12px;
}

.lp-mt-16 {
    margin-top: 16px;
}

.lp-w-full {
    width: 100%;
}

.lp-step-meta {
    margin: 10px 0 0;
}

/* Pricing + FAQ page section tints */

.lp-section--pricing-plans {
    background:
        radial-gradient(circle at top left, rgba(59, 130, 246, 0.05), transparent 55%),
        radial-gradient(circle at bottom right, rgba(56, 189, 248, 0.04), transparent 55%),
        #f8fafc;
}

.lp-section--pricing-faq {
    background:
        radial-gradient(circle at top right, rgba(249, 115, 22, 0.04), transparent 55%),
        #f9fafb;
}

.lp-section--faq-topics {
    background:
        radial-gradient(circle at top left, rgba(59, 130, 246, 0.05), transparent 55%),
        radial-gradient(circle at bottom right, rgba(34, 197, 94, 0.04), transparent 55%),
        #f9fafb;
}

/* Product sections use consistent spacing; visual separation comes from content, not extra bands. */

.lp-section-header {
    max-width: 720px;
    margin: 0 auto 24px;
    text-align: left;
}

.lp-section-header--compact {
    margin: 0 auto 12px;
}

.lp-section-header--left {
    margin-left: 0;
}

.lp-section-header--pulse {
    animation: lp-section-pulse 520ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

.lp-section-header h2 {
    margin: 0 0 8px;
    font-size: 1.9rem;
    letter-spacing: -0.04em;
    color: #020617;
}

.lp-accent {
    color: var(--lp-color-accent);
}

.lp-section-header p {
    margin: 0;
    font-size: 1rem;
    color: #4b5563;
}

.lp-workflow-spotlight {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
    gap: 24px;
    align-items: stretch;
}

.lp-workflow-spotlight__copy .lp-section-header {
    margin-bottom: 12px;
}

.lp-workflow-spotlight__copy [data-workflow-caption] {
    margin-top: 26px;
    margin-bottom: 0;
}

.lp-workflow-spotlight__carousel {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
}

.lp-workflow-spotlight__viewport {
    position: relative;
    flex: 1;
    overflow-x: auto;
    overflow-y: hidden;
    border-radius: 20px;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
}

.lp-workflow-spotlight__frames {
    display: flex;
    flex-wrap: nowrap;
    gap: 12px;
    padding-bottom: 4px;
}

.lp-workflow-frame {
    min-width: 0;
    min-height: 150px;
    border-radius: 18px;
    border: 1px solid rgba(226, 232, 240, 0.9);
    background: #ffffff;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
    padding: 10px 10px 12px;
    display: flex;
    flex-direction: column;
    flex: 0 0 100%;
    scroll-snap-align: start;
    cursor: pointer;
    transition:
        transform 180ms ease-out,
        box-shadow 180ms ease-out,
        border-color 180ms ease-out;
}

.lp-workflow-frame__step {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border-radius: 999px;
    background: rgba(14, 165, 233, 0.14);
    color: #0ea5e9;
    font-size: 0.72rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.lp-workflow-frame__title {
    font-size: 0.86rem;
    font-weight: 500;
    color: #020617;
    margin-bottom: 6px;
    text-align: left;
}

.lp-workflow-frame__thumb {
    flex: 1;
    min-height: 120px;
    aspect-ratio: 16 / 9;
    border-radius: 12px;
    background:
        linear-gradient(135deg, rgba(59, 130, 246, 0.08), rgba(14, 116, 144, 0.08)),
        linear-gradient(to bottom, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.8));
    position: relative;
    overflow: hidden;
}

.lp-workflow-frame__thumb--image {
    background: transparent;
}

.lp-workflow-frame__thumb--image::before,
.lp-workflow-frame__thumb--image::after {
    display: none;
}

.lp-workflow-frame__thumb--image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    transform: scale(1.02);
    transform-origin: center;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.85);
    transition:
        transform 180ms ease-out,
        box-shadow 180ms ease-out;
}

.lp-workflow-frame:hover .lp-workflow-frame__thumb--image img,
.lp-workflow-frame.is-active .lp-workflow-frame__thumb--image img {
    transform: scale(1.05);
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.95);
}

/* Ensure image thumbnails override the generic placeholder pseudo-elements. */
.lp-workflow-frame__thumb.lp-workflow-frame__thumb--image::before,
.lp-workflow-frame__thumb.lp-workflow-frame__thumb--image::after {
    display: none;
}

.lp-workflow-frame__thumb::before {
    content: "";
    position: absolute;
    inset: 12% 14% auto 14%;
    border-radius: 10px;
    background: rgba(15, 23, 42, 0.96);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.9);
}

.lp-workflow-frame__thumb::after {
    content: "";
    position: absolute;
    inset: auto 14% 12% 14%;
    border-radius: 8px;
    border: 1px solid rgba(148, 163, 184, 0.5);
    background: rgba(15, 23, 42, 0.7);
}

.lp-workflow-frame.is-active {
    transform: translateY(-2px) scale(1.02) rotate3d(0, 0, 1, -0.4deg);
    box-shadow: 0 22px 52px rgba(15, 23, 42, 0.18);
    border-color: rgba(96, 165, 250, 0.95);
}

.lp-workflow-frame:hover {
    transform: translateY(-2px) scale(1.02) rotate3d(0, 0, 1, -0.4deg);
    box-shadow: 0 22px 52px rgba(15, 23, 42, 0.18);
    border-color: rgba(96, 165, 250, 0.95);
}

.lp-workflow-frame:focus-visible {
    outline: none;
    transform: translateY(-2px) scale(1.02) rotate3d(0, 0, 1, -0.4deg);
    box-shadow: 0 0 0 2px rgba(191, 219, 254, 0.95), 0 22px 52px rgba(15, 23, 42, 0.18);
    border-color: rgba(96, 165, 250, 0.95);
}

.lp-workflow-nav {
    border: 1px solid rgba(226, 232, 240, 0.95);
    background: #ffffff;
    color: #0ea5e9;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.12);
    transition:
        background-color 150ms ease-out,
        color 150ms ease-out,
        transform 150ms ease-out,
        box-shadow 150ms ease-out;
}

.lp-workflow-nav:hover,
.lp-workflow-nav:focus-visible {
    outline: none;
    background: #0ea5e9;
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 20px 44px rgba(15, 23, 42, 0.18);
}

.lp-workflow-nav--prev,
.lp-workflow-nav--next {
    flex-shrink: 0;
}

@media (max-width: 900px) {
    .lp-workflow-spotlight {
        grid-template-columns: minmax(0, 1fr);
    }
    .lp-workflow-spotlight__carousel {
        gap: 10px;
    }
}

/* Features grid */

.lp-feature-tabs {
    margin-top: 18px;
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.5fr);
    gap: 18px;
    align-items: flex-start;
}

.lp-feature-tabs__list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
}

.lp-feature-tab {
    border: none;
    border-radius: 999px;
    padding: 8px 12px;
    font-size: 0.86rem;
    background: transparent;
    color: #6b7280;
    cursor: pointer;
    text-align: left;
    display: inline-flex;
    align-items: center;
    transition:
        background-color 150ms ease-out,
        color 150ms ease-out,
        box-shadow 150ms ease-out,
        transform 150ms ease-out;
    transform: translateY(0);
}

.lp-feature-tab.is-active {
    background: #ffffff;
    color: #0f172a;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
    font-weight: 600;
}

.lp-feature-tab.is-active::after {
    content: "";
    display: block;
    height: 2px;
    margin-top: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, #22c55e, #3b82f6);
}

.lp-section--faq-topics .lp-feature-tab__count {
    margin-left: 10px;
    min-width: 28px;
    height: 22px;
    padding: 0 8px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.78rem;
    font-weight: 700;
    background: rgba(15, 23, 42, 0.06);
    color: #0f172a;
}

.lp-section--faq-topics .lp-feature-tab.is-active .lp-feature-tab__count {
    background: rgba(59, 130, 246, 0.12);
    color: #1d4ed8;
}

.lp-section--faq-topics .lp-feature-tab.is-dimmed {
    opacity: 0.45;
}

.lp-feature-tab:hover {
    transform: translateY(-1px);
}

.lp-sticky-trial {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 40;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 999px;
    background: linear-gradient(135deg, #0ea5e9, #6366f1);
    color: #f9fafb;
    font-size: 0.86rem;
    font-weight: 600;
    border: none;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.35);
    cursor: pointer;
    opacity: 0;
    transform: translateY(8px);
    pointer-events: none;
    transition:
        opacity 180ms ease-out,
        transform 180ms ease-out,
        box-shadow 180ms ease-out;
}

.lp-sticky-trial svg {
    width: 16px;
    height: 16px;
}

.lp-sticky-trial.is-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.lp-sticky-trial:hover {
    box-shadow: 0 22px 48px rgba(15, 23, 42, 0.45);
}

@media (max-width: 640px) {
    .lp-sticky-trial {
        right: 12px;
        bottom: 12px;
        left: 12px;
        justify-content: center;
    }
}

.lp-feature-tabs__panes {
    margin-top: 0;
}

@media (max-width: 900px) {
    .lp-section--faq-topics .lp-feature-tabs {
        grid-template-columns: minmax(0, 1fr);
    }

    .lp-section--faq-topics .lp-feature-tabs__list {
        flex-direction: row;
        gap: 8px;
        overflow-x: auto;
        padding-bottom: 10px;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .lp-section--faq-topics .lp-feature-tabs__list::-webkit-scrollbar {
        display: none;
    }

    .lp-section--faq-topics .lp-feature-tab {
        white-space: nowrap;
    }
}

.lp-feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
}

.lp-feature-grid--split {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
}

.lp-feature {
    padding: 20px 20px 22px;
    border-radius: 20px;
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.9);
    box-shadow: 0 16px 32px rgba(15, 23, 42, 0.05);
    transition:
        transform 180ms ease-out,
        box-shadow 180ms ease-out,
        border-color 180ms ease-out;
}

.lp-feature--resource {
    display: flex;
    flex-direction: column;
}

.lp-feature--resource .lp-feature-points {
    margin-top: 12px;
}

.lp-feature--resource .lp-feature__link {
    margin-top: auto;
    padding-top: 12px;
}

.lp-feature h3 {
    margin: 0 0 4px;
    font-size: 1.02rem;
}

.lp-feature p {
    margin: 0;
    font-size: 0.95rem;
    color: #4b5563;
}

.lp-feature-points {
    margin: 8px 0 0;
    padding-left: 1.1rem;
    font-size: 0.92rem;
    color: #4b5563;
}

.lp-feature-points--checks {
    list-style: none;
    padding-left: 0;
}

.lp-feature-points--checks li {
    position: relative;
    padding-left: 1.35rem;
}

.lp-feature-points--checks li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0.1rem;
    font-size: 0.82rem;
    color: #16a34a;
}

.lp-feature-points li + li {
    margin-top: 2px;
}

/* Staggered reveal for module bullets and chips on product page */

.lp-section--product .lp-feature-points li,
.lp-section--product .lp-module-chip {
    opacity: 0;
    transform: translateY(6px);
    transition:
        opacity 420ms cubic-bezier(0.22, 0.61, 0.36, 1),
        transform 420ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

.lp-section--product.is-visible .lp-feature-points li,
.lp-section--product.is-visible .lp-module-chip {
    opacity: 1;
    transform: translateY(0);
}

.lp-section--product.is-visible .lp-feature-points li:nth-child(1),
.lp-section--product.is-visible .lp-module-chip:nth-child(1) {
    transition-delay: 40ms;
}

.lp-section--product.is-visible .lp-feature-points li:nth-child(2),
.lp-section--product.is-visible .lp-module-chip:nth-child(2) {
    transition-delay: 80ms;
}

.lp-section--product.is-visible .lp-feature-points li:nth-child(3),
.lp-section--product.is-visible .lp-module-chip:nth-child(3) {
    transition-delay: 120ms;
}

.lp-section--product.is-visible .lp-feature-points li:nth-child(4),
.lp-section--product.is-visible .lp-module-chip:nth-child(4) {
    transition-delay: 160ms;
}

.lp-feature:hover {
    transform: translateY(-3px) rotate3d(0, 0, 1, -0.4deg);
    box-shadow: 0 22px 44px rgba(15, 23, 42, 0.10);
    border-color: rgba(96, 165, 250, 0.9);
}

/* Details blocks (used to collapse long explanations without adding links/buttons). */
body.landing-body details {
    margin-top: 12px;
    border-radius: 16px;
    border: 1px solid rgba(226, 232, 240, 0.9);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.04);
    padding: 10px 12px;
}

body.landing-body details[open] {
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.06);
}

body.landing-body summary {
    cursor: pointer;
    list-style: none;
    font-weight: 650;
    color: #0f172a;
    outline: none;
}

body.landing-body summary::-webkit-details-marker {
    display: none;
}

body.landing-body details > summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

body.landing-body details > summary::after {
    content: "▾";
    opacity: 0.65;
    transition: transform 160ms ease-out;
}

body.landing-body details[open] > summary::after {
    transform: rotate(180deg);
}

body.landing-body details > :where(p, ul) {
    margin-top: 10px;
}

.lp-feature--visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lp-feature:focus-visible {
    outline: none;
    transform: translateY(-2px) rotate3d(0, 0, 1, -0.4deg);
    box-shadow: 0 0 0 2px rgba(191, 219, 254, 0.9), 0 24px 50px rgba(15, 23, 42, 0.12);
    border-color: rgba(96, 165, 250, 0.9);
}

.lp-feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 999px;
    border: 1px solid rgba(226, 232, 240, 0.9);
    background: rgba(14, 165, 233, 0.08);
    color: #0ea5e9;
}

.lp-feature-icon svg {
    width: 18px;
    height: 18px;
}

.lp-feature-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}

.lp-section--product-inspections .lp-feature-icon {
    background: rgba(59, 130, 246, 0.08);
    color: #1d4ed8;
    border-color: rgba(129, 140, 248, 0.6);
}

.lp-section--product-builder .lp-feature-icon {
    background: rgba(34, 211, 238, 0.10);
    color: #0e7490;
    border-color: rgba(34, 211, 238, 0.6);
}

.lp-section--product-remedials .lp-feature-icon {
    background: rgba(34, 197, 94, 0.10);
    color: #15803d;
    border-color: rgba(74, 222, 128, 0.7);
}

.lp-section--product-docs .lp-feature-icon {
    background: rgba(129, 140, 248, 0.14);
    color: #4f46e5;
    border-color: rgba(129, 140, 248, 0.7);
}

.lp-section--product-billing .lp-feature-icon {
    background: rgba(249, 115, 22, 0.14);
    color: #ea580c;
    border-color: rgba(249, 115, 22, 0.7);
}

.lp-section--product-analytics .lp-feature-icon {
    background: rgba(45, 212, 191, 0.12);
    color: #0f766e;
    border-color: rgba(45, 212, 191, 0.7);
}

.lp-feature--resource--violet .lp-feature-icon {
    background: rgba(129, 140, 248, 0.14);
    color: #4f46e5;
    border-color: rgba(129, 140, 248, 0.7);
}

.lp-feature--resource--green .lp-feature-icon {
    background: rgba(34, 197, 94, 0.10);
    color: #15803d;
    border-color: rgba(74, 222, 128, 0.7);
}

.lp-feature--resource--amber .lp-feature-icon {
    background: rgba(249, 115, 22, 0.14);
    color: #ea580c;
    border-color: rgba(249, 115, 22, 0.7);
}

/* Product page module layout */

.lp-section-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
    gap: 28px;
    align-items: center;
}

.lp-section-grid__copy {
    min-width: 0;
}

.lp-section-grid__preview {
    min-width: 0;
    display: flex;
    justify-content: center;
}

@media (min-width: 901px) {
    .lp-section-grid--flip {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
    }

    .lp-section-grid--flip .lp-section-grid__copy {
        grid-column: 2;
        grid-row: 1;
    }

    .lp-section-grid--flip .lp-section-grid__preview {
        grid-column: 1;
        grid-row: 1;
    }
}

.lp-module-preview {
    width: 100%;
    max-width: 360px;
    border-radius: 22px;
    padding: 16px 16px 18px;
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.9);
    box-shadow: 0 22px 48px rgba(15, 23, 42, 0.08);
    transition:
        transform 220ms cubic-bezier(0.22, 0.61, 0.36, 1),
        box-shadow 220ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

.lp-module-preview__eyebrow {
    margin: 0 0 4px;
    font-size: 0.76rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #6b7280;
}

.lp-module-preview__title {
    margin: 0 0 8px;
    font-size: 0.96rem;
    font-weight: 600;
    color: #0f172a;
}

.lp-module-preview__media {
    margin: 0 0 10px;
    border-radius: 20px;
    padding: 0;
    background: transparent;
    box-shadow: none;
    position: relative;
}

.lp-module-preview__media img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 16px;
    transform: scale(0.96);
    transform-origin: center;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.9);
    transition:
        transform 200ms ease-out,
        box-shadow 200ms ease-out;
}

.lp-module-preview:hover .lp-module-preview__media img {
    transform: scale(1);
    box-shadow: 0 26px 70px rgba(15, 23, 42, 0.95);
}

.lp-module-preview__rows {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 10px;
}

.lp-module-chip {
    padding: 3px 9px;
    border-radius: 999px;
    font-size: 0.74rem;
    background: rgba(248, 250, 252, 0.95);
    border: 1px solid rgba(226, 232, 240, 0.9);
    color: #4b5563;
}

.lp-module-preview__meta {
    margin: 0;
    font-size: 0.8rem;
    color: #6b7280;
}

.lp-module-preview--inspections {
    background: #ffffff;
}

.lp-module-preview--builder {
    background: #ffffff;
}

.lp-module-preview--remedials {
    background: #ffffff;
}

.lp-module-preview--documents {
    background: #ffffff;
}

.lp-module-preview--billing {
    background: #ffffff;
}

.lp-module-preview--analytics {
    background: #ffffff;
}

@media (max-width: 900px) {
    .lp-feature-grid--split {
        grid-template-columns: minmax(0, 1fr);
    }
    .lp-section-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .lp-section-grid__preview {
        margin-top: 12px;
    }

    .lp-why {
        grid-template-columns: minmax(0, 1fr);
        gap: 16px;
    }
}

/* Workflow steps */

.lp-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
}

.lp-steps--compact {
    margin-top: 10px;
    margin-bottom: 6px;
}

.lp-step {
    padding: 18px 18px 20px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(226, 232, 240, 0.9);
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.06);
    transition:
        transform 160ms ease-out,
        box-shadow 160ms ease-out,
        border-color 160ms ease-out;
}

.lp-step-eyebrow {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    color: #9ca3af;
    margin: 0 0 4px;
}

.lp-step h3 {
    margin: 0 0 6px;
    font-size: 1.02rem;
}

.lp-step p {
    margin: 0;
    font-size: 0.9rem;
    color: #4b5563;
}

.lp-workflow-progress {
    margin: 0 0 4px;
    font-size: 0.76rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: #9ca3af;
}

.lp-section--workflow-inspections .lp-workflow-progress {
    color: #38bdf8;
}

.lp-section--workflow-quotes .lp-workflow-progress {
    color: #a855f7;
}

.lp-section--workflow-remedials .lp-workflow-progress {
    color: #22c55e;
}

.lp-section--workflow-portal .lp-workflow-progress {
    color: #f97316;
}

.lp-step:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 42px rgba(15, 23, 42, 0.12);
    border-color: rgba(96, 165, 250, 0.7);
}

.lp-step-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 999px;
    background: rgba(14, 165, 233, 0.08);
    color: #0ea5e9;
    margin-bottom: 6px;
}

.lp-step-icon--green {
    background: rgba(34, 197, 94, 0.10);
    color: #16a34a;
}

.lp-step-icon--amber {
    background: rgba(249, 115, 22, 0.12);
    color: #ea580c;
}

.lp-step-icon--violet {
    background: rgba(168, 85, 247, 0.10);
    color: #7c3aed;
}

.lp-step-icon svg {
    width: 18px;
    height: 18px;
}

/* Resource page polish (icons + hierarchy). */
.lp-section-header--icon {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.lp-section-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    border: 1px solid rgba(191, 219, 254, 0.9);
    background: radial-gradient(circle at top left, rgba(37, 99, 235, 0.12), rgba(255, 255, 255, 0.96));
    color: #2563eb;
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.07);
    flex: 0 0 auto;
    margin-top: 4px;
}

.lp-section-icon svg {
    width: 18px;
    height: 18px;
}

.lp-section-icon--green {
    border-color: rgba(187, 247, 208, 0.9);
    background: radial-gradient(circle at top left, rgba(34, 197, 94, 0.14), rgba(255, 255, 255, 0.96));
    color: #16a34a;
}

.lp-section-icon--amber {
    border-color: rgba(254, 215, 170, 0.9);
    background: radial-gradient(circle at top left, rgba(249, 115, 22, 0.14), rgba(255, 255, 255, 0.96));
    color: #ea580c;
}

.lp-section-icon--violet {
    border-color: rgba(233, 213, 255, 0.9);
    background: radial-gradient(circle at top left, rgba(168, 85, 247, 0.14), rgba(255, 255, 255, 0.96));
    color: #7c3aed;
}

.lp-section-header__body {
    flex: 1;
    min-width: 0;
}

.lp-resource-meta {
    margin-top: 10px;
    padding: 12px 14px;
    border-radius: 18px;
    background: rgba(248, 250, 252, 0.92);
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.05);
    color: #4b5563;
    font-size: 0.92rem;
    line-height: 1.6;
}

.lp-resource-meta strong {
    color: #0f172a;
}

.lp-step--with-icon h3 {
    margin-top: 2px;
}

@media (max-width: 520px) {
    .lp-section-header--icon {
        gap: 10px;
    }

    .lp-section-icon {
        width: 30px;
        height: 30px;
        margin-top: 2px;
    }
}

/* Pricing */

.lp-pricing {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(0, 1.1fr);
    gap: 22px;
    align-items: stretch;
}

.lp-pricing-chooser {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin: 0 0 28px;
}

.lp-pricing-chooser__tile {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 12px 13px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.06);
    text-decoration: none;
    color: #0f172a;
    transition:
        transform 180ms cubic-bezier(0.22, 0.61, 0.36, 1),
        box-shadow 180ms cubic-bezier(0.22, 0.61, 0.36, 1),
        border-color 180ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

.lp-pricing-chooser__tile:hover,
.lp-pricing-chooser__tile:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 22px 48px rgba(15, 23, 42, 0.10);
    border-color: rgba(96, 165, 250, 0.85);
}

.lp-pricing-chooser__icon {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    background: rgba(14, 165, 233, 0.08);
    color: #0ea5e9;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.lp-pricing-chooser__icon svg {
    width: 18px;
    height: 18px;
}

.lp-pricing-chooser__copy {
    display: grid;
    gap: 4px;
    min-width: 0;
}

.lp-pricing-chooser__copy strong {
    font-size: 0.92rem;
    letter-spacing: -0.01em;
}

.lp-pricing-chooser__copy span {
    font-size: 0.84rem;
    color: #4b5563;
}

.lp-pricing-chooser__pill {
    display: inline-flex;
    align-items: center;
    padding: 2px 8px;
    border-radius: 999px;
    font-size: 0.76rem;
    font-weight: 600;
    border: 1px solid rgba(226, 232, 240, 0.95);
    background: rgba(15, 23, 42, 0.03);
    color: #0f172a;
    vertical-align: baseline;
}

.lp-pricing-chooser__pill--seat {
    border-color: rgba(191, 219, 254, 0.9);
    background: rgba(37, 99, 235, 0.08);
    color: #1d4ed8;
}

.lp-pricing-chooser__pill--usage {
    border-color: rgba(253, 186, 116, 0.9);
    background: rgba(249, 115, 22, 0.08);
    color: #c2410c;
}

.lp-pricing-included {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin: 0 0 16px;
}

.lp-pricing-included__item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 12px 13px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.06);
    text-decoration: none;
    color: #0f172a;
    transition:
        transform 180ms cubic-bezier(0.22, 0.61, 0.36, 1),
        box-shadow 180ms cubic-bezier(0.22, 0.61, 0.36, 1),
        border-color 180ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

.lp-pricing-included__item:hover,
.lp-pricing-included__item:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 22px 48px rgba(15, 23, 42, 0.10);
    border-color: rgba(96, 165, 250, 0.85);
}

.lp-pricing-included__icon {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    background: rgba(14, 165, 233, 0.08);
    color: #0ea5e9;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.lp-pricing-included__icon svg {
    width: 18px;
    height: 18px;
}

.lp-pricing-included__copy {
    display: grid;
    gap: 4px;
    min-width: 0;
}

.lp-pricing-included__copy strong {
    font-size: 0.92rem;
    letter-spacing: -0.01em;
}

.lp-pricing-included__copy span {
    font-size: 0.84rem;
    color: #4b5563;
}

.lp-pricing-main:target,
.lp-pricing-side:target {
    outline: 3px solid rgba(14, 165, 233, 0.28);
    outline-offset: 3px;
    border-color: rgba(14, 165, 233, 0.45);
}

.lp-pricing-main {
    border-radius: 22px;
    padding: 22px 22px 24px;
    background: #ffffff;
    border: 2px solid rgba(249, 115, 22, 0.55);
    box-shadow: 0 22px 46px rgba(15, 23, 42, 0.08);
    transition:
        transform 180ms cubic-bezier(0.22, 0.61, 0.36, 1),
        box-shadow 180ms cubic-bezier(0.22, 0.61, 0.36, 1),
        border-color 180ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

.lp-pricing-main h3 {
    margin: 0 0 8px;
    font-size: 1.1rem;
}

.lp-pricing-main__header {
    margin-bottom: 12px;
}

.lp-pricing-main__tagline {
    margin: 0;
    font-size: 0.88rem;
    color: #6b7280;
}

.lp-pricing-main__body {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.2fr);
    gap: 16px;
    align-items: flex-start;
}

.lp-pricing-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 999px;
    background: rgba(14, 165, 233, 0.08);
    color: #0ea5e9;
    margin-right: 6px;
}

.lp-pricing-icon svg {
    width: 16px;
    height: 16px;
}

.lp-pricing-main ul {
    margin: 0 0 12px;
    padding-left: 1.1rem;
    font-size: 0.9rem;
    line-height: 1.55;
    color: #4b5563;
}

.lp-pricing-main li + li {
    margin-top: 4px;
}

.lp-pricing-main__list {
    margin: 0;
}

.lp-pricing-main__benefits {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.lp-pricing-price {
    border-radius: 18px;
    padding: 14px 14px 16px;
    background: radial-gradient(circle at top left, rgba(37, 99, 235, 0.08), rgba(248, 250, 252, 0.98));
    border: 1px solid rgba(191, 219, 254, 0.9);
}

.lp-pricing-price__label {
    margin: 0 0 2px;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    color: #6b7280;
}

.lp-pricing-price__value {
    margin: 0 0 4px;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.04em;
    color: #0f172a;
}

.lp-pricing-price__amount {
    font-size: 1.7rem;
}

.lp-pricing-price__unit {
    margin-left: 4px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #6b7280;
}

.lp-pricing-price__meta {
    margin: 0 0 8px;
    font-size: 0.86rem;
    color: #4b5563;
}

.lp-pricing-callout {
    margin: 0;
    font-size: 0.84rem;
    color: #4b5563;
    padding: 10px 12px;
    border-radius: 16px;
    background: rgba(248, 250, 252, 0.92);
    border: 1px solid rgba(226, 232, 240, 0.95);
}

.lp-pricing-asides {
    margin-top: 12px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.lp-pricing-aside {
    padding: 12px 12px 13px;
    border-radius: 18px;
    background: rgba(248, 250, 252, 0.92);
    border: 1px solid rgba(226, 232, 240, 0.95);
    color: #0f172a;
}

.lp-pricing-aside__title {
    margin: 0 0 6px;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #6b7280;
}

.lp-pricing-aside__body {
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.55;
    color: #4b5563;
}

.lp-pricing-fineprint {
    margin: 12px 0 0;
}

.lp-pricing-fineprint__summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 9px 12px;
    border-radius: 999px;
    background: rgba(248, 250, 252, 0.92);
    border: 1px solid rgba(226, 232, 240, 0.95);
    font-size: 0.84rem;
    color: #0f172a;
}

.lp-pricing-fineprint__summary::-webkit-details-marker {
    display: none;
}

.lp-pricing-fineprint__label {
    font-weight: 600;
}

.lp-pricing-fineprint__chevron {
    font-size: 0.76rem;
    transition: transform 150ms ease-out;
    color: #64748b;
}

.lp-pricing-fineprint[open] .lp-pricing-fineprint__chevron {
    transform: rotate(180deg);
}

.lp-pricing-fineprint__list {
    margin: 10px 0 0;
    padding-left: 1.1rem;
    font-size: 0.84rem;
    color: #4b5563;
    line-height: 1.55;
}

.lp-pricing-fineprint__list li + li {
    margin-top: 6px;
}

.lp-pricing-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.lp-pricing-chip {
    display: inline-flex;
    align-items: center;
    padding: 3px 8px;
    border-radius: 999px;
    font-size: 0.76rem;
    background: rgba(15, 23, 42, 0.02);
    border: 1px solid rgba(191, 219, 254, 0.9);
    color: #1f2937;
    transition:
        transform 160ms ease-out,
        box-shadow 160ms ease-out,
        border-color 160ms ease-out;
}

.lp-pricing-chip:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 30px rgba(15, 23, 42, 0.1);
    border-color: rgba(96, 165, 250, 0.85);
}

.lp-pricing-note {
    margin: 0;
    font-size: 0.88rem;
    color: #6b7280;
}

.lp-pricing-actions {
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.lp-pricing-side {
    border-radius: 22px;
    padding: 20px 20px 22px;
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.9);
    box-shadow: 0 22px 46px rgba(15, 23, 42, 0.08);
    transition:
        transform 180ms cubic-bezier(0.22, 0.61, 0.36, 1),
        box-shadow 180ms cubic-bezier(0.22, 0.61, 0.36, 1),
        border-color 180ms cubic-bezier(0.22, 0.61, 0.36, 1);
    color: #0f172a;
}

.lp-pricing-main:hover,
.lp-pricing-side:hover {
    transform: translateY(-3px);
    box-shadow: 0 26px 60px rgba(15, 23, 42, 0.12);
    border-color: rgba(96, 165, 250, 0.85);
}

.lp-pricing-side-eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.78rem;
    color: #6b7280;
    margin: 0 0 6px;
}

.lp-pricing-main__badge {
    display: inline-flex;
    align-items: center;
    padding: 2px 10px;
    border-radius: 999px;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    background: rgba(248, 113, 22, 0.10);
    color: #ea580c;
    margin: 0 0 6px;
}

.lp-pricing-side ul {
    margin: 0;
    padding-left: 1.1rem;
    font-size: 0.9rem;
}

.lp-pricing-side li + li {
    margin-top: 4px;
}

.lp-pricing-secondary {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.lp-pricing-side:target {
    scroll-margin-top: var(--lp-scroll-margin-top);
}

.lp-pricing-main:target {
    scroll-margin-top: var(--lp-scroll-margin-top);
}

.lp-pricing-side--help {
    background: #f9fafb;
    border-style: dashed;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
    font-size: 0.9rem;
}

.lp-pricing-side--help h3 {
    margin: 0 0 8px;
    font-size: 1.02rem;
}

.lp-pricing-side--help p {
    margin: 0 0 8px;
    color: #4b5563;
}

.lp-pricing-side--help ul {
    margin-bottom: 14px;
}

@media (max-width: 1024px) {
    .lp-pricing {
        grid-template-columns: 1fr;
    }

    .lp-pricing-main__body {
        grid-template-columns: 1fr;
    }

    .lp-pricing-chooser {
        grid-template-columns: 1fr;
    }

    .lp-pricing-included {
        grid-template-columns: 1fr;
    }

    .lp-pricing-asides {
        grid-template-columns: 1fr;
    }
}

/* FAQ */

.lp-faq-search {
    margin: 0 0 16px;
}

.lp-faq-search__row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.lp-faq-search__input {
    flex: 1;
    min-width: 0;
    height: 44px;
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid rgba(226, 232, 240, 0.95);
    background: rgba(255, 255, 255, 0.92);
    color: #0f172a;
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.06);
    transition:
        border-color 150ms ease-out,
        box-shadow 150ms ease-out,
        background-color 150ms ease-out;
}

.lp-faq-search__input::placeholder {
    color: #94a3b8;
}

.lp-faq-search__input:focus {
    outline: none;
    border-color: rgba(96, 165, 250, 0.95);
    box-shadow: 0 0 0 2px rgba(191, 219, 254, 0.9), 0 16px 34px rgba(15, 23, 42, 0.10);
    background: #ffffff;
}

.lp-faq-search__clear {
    border: none;
    height: 44px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.06);
    color: #0f172a;
    font-weight: 600;
    cursor: pointer;
    transition:
        background-color 150ms ease-out,
        transform 150ms ease-out;
}

.lp-faq-search__clear:hover {
    background: rgba(15, 23, 42, 0.10);
    transform: translateY(-1px);
}

.lp-faq-search__meta {
    margin: 8px 0 0;
    font-size: 0.86rem;
    color: #6b7280;
}

.lp-faq-search__empty {
    margin: 8px 0 0;
    font-size: 0.9rem;
    color: #4b5563;
}

.lp-faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 14px;
}

.lp-faq {
    padding: 16px 16px 18px;
    border-radius: 20px;
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.9);
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.05);
    transition:
        transform 180ms ease-out,
        box-shadow 180ms ease-out,
        border-color 180ms ease-out;
}

.lp-faq h3 {
    margin: 0 0 6px;
    font-size: 1.02rem;
    display: flex;
    align-items: center;
}

.lp-faq p {
    margin: 0;
    font-size: 0.95rem;
    color: #4b5563;
}

.lp-faq .lp-feature-points {
    margin-top: 10px;
}

.lp-faq .lp-feature-points li + li {
    margin-top: 4px;
}

/* FAQ page: keep cards scannable, with details still in the markup. */
.lp-section--faq-topics .lp-faq p {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

.lp-faq:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 42px rgba(15, 23, 42, 0.12);
    border-color: rgba(96, 165, 250, 0.9);
}

.lp-faq:focus-within {
    outline: none;
    transform: translateY(-2px);
    box-shadow: 0 0 0 2px rgba(191, 219, 254, 0.9), 0 20px 42px rgba(15, 23, 42, 0.12);
    border-color: rgba(96, 165, 250, 0.9);
}

.lp-faq-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 999px;
    background: rgba(14, 165, 233, 0.08);
    color: #0ea5e9;
    margin-right: 6px;
}

.lp-faq-icon svg {
    width: 14px;
    height: 14px;
}

/* Testimonials */

.lp-testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
}

.lp-testimonial {
    padding: 18px 20px 20px;
    border-radius: 20px;
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.9);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
    transition:
        transform 160ms ease-out,
        box-shadow 160ms ease-out,
        border-color 160ms ease-out;
}

.lp-testimonial-quote {
    margin: 0 0 10px;
    font-size: 0.88rem;
    line-height: 1.55;
    color: #111827;
}

.lp-testimonial-author {
    margin: 0;
    font-weight: 600;
    font-size: 0.86rem;
    color: #0f172a;
}

.lp-testimonial-role {
    margin: 2px 0 0;
    font-size: 0.82rem;
    color: #6b7280;
}

.lp-testimonial:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 46px rgba(15, 23, 42, 0.12);
    border-color: rgba(96, 165, 250, 0.7);
}

/* Benefits */

.lp-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
}

.lp-benefit {
    padding: 18px 20px 20px;
    border-radius: var(--lp-radius-lg);
    background: var(--lp-color-surface);
    border: 1px solid var(--lp-color-border-subtle);
    box-shadow: var(--lp-shadow-soft);
    transition:
        transform 160ms ease-out,
        box-shadow 160ms ease-out,
        border-color 160ms ease-out;
}

.lp-benefit-metric {
    margin: 0 0 8px;
    font-size: 0.94rem;
    font-weight: 600;
    color: #0f172a;
}

.lp-benefit-detail {
    margin: 0;
    font-size: 0.86rem;
    color: var(--lp-color-text-muted);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4px;
}

.lp-benefit-before {
    text-decoration: line-through;
    text-decoration-thickness: 1px;
}

.lp-benefit-arrow {
    opacity: 0.8;
}

.lp-benefit-after {
    font-weight: 500;
    color: #0f172a;
}

.lp-benefit:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 46px rgba(15, 23, 42, 0.12);
    border-color: rgba(96, 165, 250, 0.7);
}

/* Compare */

.lp-compare {
    border-radius: var(--lp-radius-xl);
    background: var(--lp-color-surface);
    box-shadow: var(--lp-shadow-card);
    border: 1px solid var(--lp-color-border-subtle);
    overflow: hidden;
}

.lp-compare__head {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1.6fr) minmax(0, 1.6fr);
    gap: 0;
    padding: 12px 20px;
    background: linear-gradient(90deg, rgba(148, 163, 184, 0.12), rgba(148, 163, 184, 0.04));
    border-bottom: 1px solid var(--lp-color-border-subtle);
    font-size: 0.82rem;
    color: var(--lp-color-text-muted);
}

.lp-compare__col {
    font-weight: 600;
}

.lp-compare__col--weak {
    color: #9ca3af;
}

.lp-compare__col--strong {
    color: #0f172a;
}

.lp-compare__row {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1.6fr) minmax(0, 1.6fr);
    gap: 0;
    padding: 12px 20px;
    font-size: 0.86rem;
    transition: background-color 150ms ease-out;
}

.lp-compare__row:nth-child(even) {
    background: var(--lp-color-surface-soft);
}

.lp-compare__row:hover {
    background: rgba(241, 245, 249, 0.9);
}

.lp-compare__label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
    color: #0f172a;
}

.lp-compare__cell {
    color: var(--lp-color-text-muted);
}

.lp-compare__cell--weak {
    opacity: 0.9;
}

.lp-compare__cell--strong {
    color: #0f172a;
}

.lp-compare-label-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 999px;
    background: rgba(148, 163, 184, 0.18);
    color: #0f172a;
}

.lp-compare-label-icon svg {
    width: 14px;
    height: 14px;
}

.lp-compare-toggle {
    margin-top: 14px;
}

.lp-compare-toggle__summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 9px 14px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(219, 234, 254, 0.9), rgba(239, 246, 255, 0.95));
    border: 1px solid rgba(96, 165, 250, 0.9);
    box-shadow: 0 10px 24px rgba(37, 99, 235, 0.16);
    font-size: 0.86rem;
    color: #0f172a;
}

.lp-compare-toggle__summary::-webkit-details-marker {
    display: none;
}

.lp-compare-toggle__label {
    font-weight: 500;
}

.lp-compare-toggle__chevron {
    font-size: 0.76rem;
    transition: transform 150ms ease-out;
}

.lp-compare-toggle__summary:hover {
    box-shadow: 0 14px 30px rgba(37, 99, 235, 0.22);
}

.lp-compare-toggle[open] .lp-compare-toggle__chevron {
    transform: rotate(180deg);
}

.lp-compare--subtle {
    margin-top: 14px;
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.04);
    background: rgba(255, 255, 255, 0.96);
}

.lp-compare--subtle .lp-compare__row:nth-child(even),
.lp-compare--subtle .lp-compare__row:hover {
    background: transparent;
}

.lp-compare--compact {
    margin-top: 14px;
    border-radius: var(--lp-radius-lg);
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.06);
}

.lp-compare--compact .lp-compare__head,
.lp-compare--compact .lp-compare__row {
    padding: 10px 14px;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.25fr) minmax(0, 1.25fr);
    font-size: 0.82rem;
}

.lp-compare--compact .lp-compare__head {
    background: linear-gradient(90deg, rgba(148, 163, 184, 0.10), rgba(148, 163, 184, 0.02));
}

.lp-compare--compact .lp-compare__label {
    font-size: 0.84rem;
}

.lp-compare--compact .lp-compare__cell {
    font-size: 0.8rem;
}

@media (max-width: 720px) {
    .lp-compare--compact .lp-compare__head,
    .lp-compare--compact .lp-compare__row {
        grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.3fr);
        row-gap: 6px;
    }
    .lp-compare--compact .lp-compare__spacer {
        display: none;
    }
    .lp-compare--compact .lp-compare__label {
        grid-column: 1 / -1;
    }
    .lp-compare--compact .lp-compare__cell {
        grid-column: span 1;
    }
}

/* Why FireDoor band */

.lp-why {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.3fr);
    gap: 24px;
    align-items: flex-start;
}

.lp-why-list {
    margin: 0;
    padding-left: 0;
    list-style: none;
    font-size: 0.9rem;
    color: #4b5563;
}

.lp-why-list--checks li {
    position: relative;
    padding-left: 1.35rem;
}

.lp-why-list--checks li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0.15rem;
    font-size: 0.82rem;
    color: #16a34a;
}

.lp-why-list li + li {
    margin-top: 6px;
}

.lp-why--with-testimonials {
    align-items: flex-start;
}

.lp-why-testimonials__title {
    margin: 0 0 4px;
    font-size: 1.05rem;
}

.lp-why-testimonials__lede {
    margin: 0 0 12px;
    font-size: 0.9rem;
    color: var(--lp-color-text-muted);
}

@media (max-width: 768px) {
    .lp-compare__head {
        display: none;
    }
    .lp-compare__row {
        grid-template-columns: 1fr;
        row-gap: 4px;
    }
}

/* CTA band */

.lp-cta {
    padding-bottom: 52px;
}

.lp-cta-inner {
    border-radius: 24px;
    padding: 20px 22px 22px;
    background: linear-gradient(120deg, #22c55e, #3b82f6, #0ea5e9);
    color: #ecfdf5;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    box-shadow: 0 28px 60px rgba(15, 23, 42, 0.6);
}

.lp-cta .lp-hero-meta,
.lp-cta .lp-hero-meta--secondary {
    color: #e5e7eb;
}

.lp-cta .lp-link {
    color: #e5e7eb;
}

.lp-cta-copy h2 {
    margin: 0 0 6px;
    font-size: 1.6rem;
}

.lp-cta-copy p {
    margin: 0;
    font-size: 0.94rem;
}

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

.lp-cta .lp-btn--primary {
    background: #020617;
    color: #e5e7eb;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.9);
}

.lp-cta .lp-btn--primary:hover {
    transform: translateY(-1px);
}

.lp-cta .lp-btn--ghost {
    background: transparent;
    border-color: rgba(226, 232, 240, 0.9);
    color: #eef2ff;
}

.lp-cta .lp-btn--ghost:hover {
    background: rgba(15, 23, 42, 0.18);
}

.lp-cta-mid {
    border-radius: 22px;
    padding: 18px 20px;
    background:
        radial-gradient(circle at top left, rgba(59, 130, 246, 0.18), transparent 55%),
        linear-gradient(135deg, rgba(15, 23, 42, 0.98), rgba(15, 23, 42, 0.96));
    color: #e5e7eb;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    box-shadow: var(--lp-shadow-card);
}

.lp-cta-mid__copy h2 {
    margin: 0 0 4px;
    font-size: 1.4rem;
}

.lp-cta-mid__copy p {
    margin: 0;
    font-size: 0.94rem;
    color: #cbd5f5;
}

.lp-cta-mid__meta {
    margin-top: 6px;
    font-size: 0.86rem;
    color: #9ca3af;
}

.lp-cta-mid__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

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

.lp-cta-mid__input {
    min-width: 220px;
    padding: 8px 10px;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.85);
    background: rgba(15, 23, 42, 0.9);
    color: #e5e7eb;
    font-size: 0.88rem;
}

.lp-cta-mid__input::placeholder {
    color: #9ca3af;
}

.lp-cta-mid__input:focus {
    outline: none;
    border-color: rgba(96, 165, 250, 0.95);
    box-shadow: 0 0 0 1px rgba(96, 165, 250, 0.9);
}

.lp-cta-mid__link {
    border: none;
    padding: 0;
    margin: 0;
    background: none;
    color: #e5e7eb;
    font-size: 0.88rem;
    text-decoration: underline;
    text-underline-offset: 2px;
    cursor: pointer;
}

@media (max-width: 768px) {
    .lp-cta-mid {
        flex-direction: column;
        align-items: flex-start;
    }
    .lp-cta-mid__form {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
    }
    .lp-cta-mid__input {
        flex: 1 1 100%;
    }
    .lp-cta-mid__form .lp-btn {
        width: 100%;
    }
}

/* Footer */

.lp-footer {
    border-top: 1px solid rgba(203, 213, 225, 0.9);
    padding: 20px 0 26px;
    background: #f9fafb;
    color: #6b7280;
}

.lp-footer__inner {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1.3fr);
    gap: 16px;
    font-size: 0.84rem;
    color: #6b7280;
}

.lp-footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.lp-footer-logo {
    display: block;
    height: clamp(32px, 6vw, 56px);
    max-height: 56px;
    width: auto;
}

.lp-footer-brand-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.lp-footer-brand-text strong {
    font-size: 0.95rem;
    color: #0f172a;
}

.lp-footer-brand-text span {
    font-size: 0.82rem;
    color: #6b7280;
}

.lp-footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 24px;
}

.lp-footer-column {
    min-width: 120px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.lp-footer-column-title {
    margin: 0 0 4px;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    color: #9ca3af;
}

.lp-footer-column a {
    text-decoration: none;
    color: #4b5563;
    font-size: 0.84rem;
}

.lp-footer-column a:hover {
    text-decoration: underline;
    color: #0f172a;
}

.lp-footer-meta {
    grid-column: 1 / -1;
    margin: 0;
    font-size: 0.8rem;
    color: #9ca3af;
}

@media (max-width: 768px) {
    .lp-footer__inner {
        grid-template-columns: minmax(0, 1fr);
    }
    .lp-footer-nav {
        justify-content: flex-start;
    }
}

/* Animations */

[data-animate] {
    opacity: 0;
    will-change: opacity, transform;
    transition:
        opacity 640ms cubic-bezier(0.22, 0.61, 0.36, 1),
        transform 640ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

[data-animate="left"] {
    transform: translateX(-24px);
}

[data-animate="right"] {
    transform: translateX(24px);
}

[data-animate="soft-up"] {
    transform: translateY(12px);
    transition:
        opacity 520ms cubic-bezier(0.22, 0.61, 0.36, 1),
        transform 520ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

[data-animate="up"],
[data-animate]:not([data-animate="left"]):not([data-animate="right"]) {
    transform: translateY(22px);
}

[data-animate].is-visible {
    opacity: 1;
    transform: translateY(0);
}

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

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes lp-section-pulse {
    0% {
        transform: translateY(0);
        box-shadow: 0 0 0 rgba(15, 23, 42, 0);
    }
    40% {
        transform: translateY(-2px);
        box-shadow: 0 18px 32px rgba(15, 23, 42, 0.12);
    }
    100% {
        transform: translateY(0);
        box-shadow: 0 0 0 rgba(15, 23, 42, 0);
    }
}


/* Responsive */

@media (max-width: 960px) {
    .lp-header__inner {
        flex-wrap: nowrap;
        align-items: center;
        row-gap: 0;
    }

    .lp-nav {
        display: none;
    }

    .lp-mobile-nav-toggle {
        display: inline-flex;
        margin-left: 10px;
    }

    .lp-header-actions {
        margin-left: auto;
        gap: 10px;
    }

    .lp-brand-text > span {
        display: none;
    }

    .lp-brand-text strong {
        display: block;
        max-width: 46vw;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        font-size: 0.92rem;
    }

    /* Keep header compact: show only the primary CTA in the header row. */
    .lp-header-actions .lp-link {
        display: none;
    }

    .lp-header-actions .lp-btn--ghost.lp-btn--sm[data-install-app] {
        display: none;
    }

    .lp-hero__inner {
        padding: 26px 22px 30px;
    }

    .lp-hero-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 26px;
    }

    .lp-hero-media {
        order: -1;
    }
}

@media (max-width: 768px) {
    .lp-shell {
        padding: 0 18px;
    }

    .lp-header__inner {
        padding: 12px 0;
    }

    .lp-hero {
        padding-top: 28px;
    }

    .lp-hero-window {
        animation: none;
    }

    .lp-hero-window__body {
        padding: 12px 12px 14px;
    }

    .lp-pill {
        backdrop-filter: none;
    }

    .lp-hero-copy h1 {
        font-size: 2.1rem;
        line-height: 1.12;
    }

    .lp-hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    /* Landing: "Reasons teams switch..." (mobile redesign) */
    .lp-section--landing-reasons .lp-why {
        grid-template-columns: minmax(0, 1fr);
        gap: 16px;
        align-items: stretch;
    }

    .lp-section--landing-reasons .lp-why-copy {
        width: 100%;
        max-width: none;
    }

    .lp-section--landing-reasons .lp-why-list {
        display: flex;
        gap: 12px;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding: 2px 2px 12px;
        margin: 0;
        scroll-snap-type: x mandatory;
        scroll-padding-left: 18px;
        scrollbar-width: none;
        -ms-overflow-style: none;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior-x: contain;
    }

    .lp-section--landing-reasons .lp-why-list::-webkit-scrollbar {
        display: none;
    }

    .lp-section--landing-reasons .lp-why-list li {
        flex: 0 0 100%;
        scroll-snap-align: start;
        scroll-snap-stop: always;
        padding: 16px 16px 16px 56px;
        border-radius: 22px;
        background: rgba(255, 255, 255, 0.96);
        border: 1px solid rgba(226, 232, 240, 0.9);
        box-shadow: 0 18px 44px rgba(15, 23, 42, 0.07);
    }

    .lp-section--landing-reasons .lp-why-list strong {
        display: block;
        margin-bottom: 6px;
        font-size: 1rem;
        letter-spacing: -0.01em;
        color: #0f172a;
    }

    .lp-section--landing-reasons .lp-why-list--checks li::before {
        top: 16px;
        left: 16px;
        width: 28px;
        height: 28px;
        border-radius: 999px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: rgba(34, 197, 94, 0.14);
        color: #15803d;
        border: 1px solid rgba(74, 222, 128, 0.55);
        font-size: 0.9rem;
        line-height: 1;
    }

    .lp-section--landing-reasons .lp-why-testimonials {
        margin-top: 8px;
    }

    .lp-section--landing-reasons .lp-why-testimonials__title {
        font-size: 1.1rem;
    }

    .lp-section--landing-reasons .lp-testimonial-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .lp-section {
        padding: 36px 0;
    }

    .lp-cta-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    :where(.lp-btn, .lp-feature-tab, .lp-pricing-chooser__tile, .lp-workflow-nav, .lp-modal__close, .lp-modal__nav) {
        min-height: 44px;
    }

    .lp-btn--sm {
        padding: 12px 18px;
        font-size: 0.94rem;
    }

    .lp-header-actions .lp-btn--sm {
        padding: 10px 14px;
        font-size: 0.9rem;
    }

    .lp-feature-tabs {
        grid-template-columns: minmax(0, 1fr);
        gap: 12px;
    }

    .lp-feature-tabs__list {
        flex-direction: row;
        gap: 8px;
        overflow-x: auto;
        padding-bottom: 10px;
        scrollbar-width: none;
        -ms-overflow-style: none;
        scroll-snap-type: x proximity;
    }

    .lp-feature-tabs__list::-webkit-scrollbar {
        display: none;
    }

    .lp-feature-tab {
        white-space: nowrap;
        scroll-snap-align: start;
    }

    .lp-workflow-nav {
        width: 44px;
        height: 44px;
    }

    .lp-modal__close,
    .lp-modal__nav {
        width: 44px;
        height: 44px;
        font-size: 20px;
    }

    .lp-modal-backdrop {
        padding: max(12px, env(safe-area-inset-top, 0px)) max(12px, env(safe-area-inset-right, 0px))
            max(12px, env(safe-area-inset-bottom, 0px)) max(12px, env(safe-area-inset-left, 0px));
    }

    .lp-modal {
        max-height: calc(100dvh - 24px);
    }

    .lp-modal__body {
        overflow: auto;
        -webkit-overflow-scrolling: touch;
    }

    .lp-modal__body img {
        max-height: calc(100dvh - 160px);
        object-fit: contain;
    }

    :where(.lp-cta-mid__input, .lp-faq-search__input) {
        font-size: 16px;
    }

    /* Landing: "A trial that..." CTA */
    .lp-cta-mid__actions {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
    }

    body.landing-body details > summary {
        min-height: 44px;
    }

    .lp-cta-mid__input {
        min-height: 44px;
        padding: 12px 14px;
    }

    .lp-cta-mid__link {
        min-height: 44px;
        padding: 12px 18px;
        border-radius: 999px;
        border: 1px solid rgba(148, 163, 184, 0.55);
        background: rgba(255, 255, 255, 0.06);
        text-decoration: none;
        text-align: center;
        width: 100%;
    }

    .lp-pricing-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .lp-pricing-actions .lp-btn {
        width: 100%;
    }

    .lp-header {
        backdrop-filter: none;
    }

    .lp-product-nav {
        backdrop-filter: none;
        top: calc(var(--lp-header-height, 72px) - 1px);
    }
}

@media (prefers-reduced-motion: reduce) {
    body.landing-body {
        scroll-behavior: auto;
    }

    body.landing-body *,
    body.landing-body *::before,
    body.landing-body *::after {
        animation-duration: 1ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 1ms !important;
    }

    [data-animate] {
        opacity: 1 !important;
        transform: none !important;
    }
}
