:root {
    --lh-bg: #f6f9ff;
    --lh-surface: #ffffff;
    --lh-surface-soft: #edf4ff;
    --lh-line: #d6e2f0;
    --lh-line-strong: #c3d2e4;
    --lh-text: #111a35;
    --lh-muted: #62728d;
    --lh-primary: rgb(56, 91, 248);
    --lh-primary-dark: rgb(42, 74, 221);
    --lh-primary-soft: #edf4ff;
    --lh-shadow: 0 24px 70px rgba(34, 61, 121, 0.06);
    --lh-radius-xl: 18px;
    --lh-radius-lg: 12px;
    --lh-radius-md: 8px;
    --lh-radius-sm: 8px;
}

body.public-site {
    background:
        radial-gradient(circle at 8% 10%, rgba(81, 131, 255, 0.12), transparent 16%),
        radial-gradient(circle at 88% 24%, rgba(162, 198, 255, 0.18), transparent 18%),
        radial-gradient(circle at 18% 80%, rgba(197, 225, 255, 0.2), transparent 14%),
        linear-gradient(180deg, #f8fbff 0%, #f4f8ff 52%, #ffffff 100%);
    color: var(--lh-text);
    font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

.ps-topbar,
.ps-main,
.ps-footer,
.ps-flash {
    width: min(1120px, calc(100% - 28px));
}

.ps-topbar {
    margin-top: 14px;
    margin-bottom: 20px;
    position: sticky;
    top: 12px;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 10px 14px;
    border: 1px solid transparent;
    border-radius: 12px;
    background: transparent;
    backdrop-filter: none;
    box-shadow: none;
    transition: background 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease, backdrop-filter 0.24s ease;
}

.ps-topbar.is-scrolled {
    border-color: rgba(214, 226, 240, 0.92);
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(12px);
    box-shadow: 0 10px 30px rgba(16, 37, 63, 0.05);
}

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

.ps-brand img {
    height: 38px;
    width: auto;
}

.ps-nav {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    flex: 1 1 auto;
    justify-content: center;
}

.ps-nav a {
    padding: 10px 12px;
    border-radius: 999px;
    color: var(--lh-muted);
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
}

.ps-nav a:hover,
.ps-nav a.is-active {
    background: rgba(56, 91, 248, 0.08);
    color: var(--lh-primary);
}

.ps-topbar-actions {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.ps-locale,
.ps-btn {
    height: 42px;
    border-radius: 14px;
    font-size: 13px;
    font-weight: 700;
}

.ps-locale {
    min-width: 72px;
    border: 1px solid var(--lh-line);
    background: rgba(255, 255, 255, 0.88);
    color: var(--lh-text);
    padding: 0 10px;
}

.ps-btn {
    padding: 0 16px;
    border: 1px solid transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    white-space: nowrap;
    transition: 0.18s ease;
}

.ps-btn-primary {
    background: var(--lh-primary);
    border-color: var(--lh-primary);
    color: #fff;
}

.ps-btn-primary:hover {
    background: var(--lh-primary-dark);
    border-color: var(--lh-primary-dark);
}

.ps-btn-soft,
.ps-btn-ghost {
    background: rgba(255, 255, 255, 0.9);
    border-color: var(--lh-line);
    color: var(--lh-text);
}

.ps-btn-soft:hover,
.ps-btn-ghost:hover {
    background: #fff;
}

.ps-main {
    display: grid;
    gap: 56px;
    margin-bottom: 30px;
}

.lh-full-bleed {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    border-radius: 0;
}

.lh-bleed-inner {
    width: min(1320px, calc(100% - 56px));
    margin: 0 auto;
}

.lh-bottom-stack {
    display: grid;
    gap: 0;
}

.lh-hero {
    padding: 18px 8px 12px;
    background: transparent;
}

.lh-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(700px, 1.1fr);
    gap: 10px;
    align-items: start;
}

.lh-kicker,
.lh-story-eyebrow {
    margin: 0 0 12px;
    color: #6f82a1;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.lh-hero-copy h1 {
    margin: 0;
    max-width: 680px;
    font-size: clamp(2.35rem, 4.3vw, 4rem);
    line-height: 1.02;
    letter-spacing: 0;
    font-weight: 800;
}

.lh-title-accent {
    color: #4264ff;
}

.lh-subtitle {
    margin: 16px 0px 0px;
    max-width: 660px;
    color: var(--lh-muted);
    font-size: 1rem;
    line-height: 1.55;
}

.lh-hero-list {
    list-style: none;
    margin: 24px 0 0;
    padding: 0;
    display: grid;
    gap: 12px;
    max-width: 570px;
}

.lh-hero-list li {
    position: relative;
    padding-left: 26px;
    color: var(--lh-text);
    font-weight: 500;
    line-height: 1.42;
    font-size: 0.98rem;
}

.lh-hero-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0.06em;
    width: 16px;
    height: 16px;
    border-radius: 999px;
    background: rgba(66, 100, 255, 0.12);
    color: var(--lh-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 800;
}

.lh-hero-actions,
.lh-inline-actions,
.lh-types-actions,
.lh-store-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.lh-hero-visual {
    display: grid;
    align-items: center;
    overflow: visible;
}

.lh-hero-stage {
    position: relative;
    min-height: 560px;
}

.lh-hero-stage--reference {
    min-height: 590px;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    overflow: visible;
}

.lh-hero-reference-art {
    display: block;
    width: min(1120px, 100%);
    height: auto;
    margin-left: auto;
    margin-right: -72px;
    transform: translateY(0);
    filter: drop-shadow(0 12px 22px rgba(64, 90, 160, 0.05));
    border-radius: 10px;
}

.lh-hero-orb {
    position: absolute;
    border-radius: 999px;
    background: rgba(215, 227, 248, 0.92);
}

.lh-hero-orb--left {
    width: 138px;
    height: 138px;
    left: 26px;
    top: 122px;
}

.lh-hero-orb--right {
    width: 228px;
    height: 228px;
    right: 18px;
    bottom: 78px;
}

.lh-hero-orb--bottom {
    width: 104px;
    height: 104px;
    right: 212px;
    bottom: 18px;
}

.lh-hero-desktop {
    position: absolute;
    top: 6px;
    right: -10px;
    width: min(100%, 760px);
    min-height: 386px;
    padding-bottom: 18px;
    border-radius: 34px;
    border: 2px solid rgba(255, 255, 255, 0.95);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 18px 46px rgba(15, 23, 42, 0.08);
    overflow: hidden;
}

.lh-hero-desktop__topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 11px 15px;
    background: linear-gradient(90deg, var(--lh-primary) 0%, #5277ff 100%);
}

.lh-hero-desktop__tabs,
.lh-hero-desktop__profile {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-wrap: nowrap;
}

.lh-hero-desktop__tabs span,
.lh-hero-desktop__profile span,
.lh-hero-desktop__profile strong {
    min-height: 21px;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.88);
    font-size: 9px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
}

.lh-hero-desktop__tabs span.is-active,
.lh-hero-desktop__profile strong {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.lh-hero-desktop__tabs span.is-icon {
    width: 21px;
    padding: 0;
    justify-content: center;
    position: relative;
}

.lh-hero-desktop__tabs span.is-icon::before {
    content: "";
    width: 10px;
    height: 6px;
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(-45deg);
}

.lh-hero-desktop__toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 15px 16px 8px;
}

.lh-hero-desktop__toolbar-group {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.lh-hero-desktop__toolbar button {
    min-height: 30px;
    padding: 0 12px;
    border-radius: 9px;
    border: 1px solid var(--lh-line);
    background: #fff;
    color: #7384a1;
    font-size: 10.5px;
    font-weight: 700;
}

.lh-hero-desktop__toolbar button.is-primary {
    border-color: rgba(56, 91, 248, 0.24);
    background: rgba(56, 91, 248, 0.1);
    color: var(--lh-primary);
}

.lh-hero-desktop__header,
.lh-hero-desktop__row {
    display: grid;
    grid-template-columns: 1.75fr 1fr 1fr 92px;
    gap: 12px;
    align-items: center;
    margin: 0 16px;
}

.lh-hero-desktop__header {
    min-height: 32px;
    padding: 0 16px;
    border-radius: 12px;
    background: #f6f9ff;
    color: #7a8aa8;
    font-size: 9.5px;
    font-weight: 700;
}

.lh-hero-desktop__row {
    min-height: 36px;
    padding: 0 16px;
    border-bottom: 1px solid #e4ecf8;
    color: #1b2944;
    font-size: 10px;
}

.lh-hero-status {
    min-height: 18px;
    padding: 0 10px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 9.7px;
    font-weight: 700;
}

.lh-hero-status--ok {
    background: #e9faf3;
    color: #0f8c66;
}

.lh-hero-status--warning {
    background: #fff4e6;
    color: #c77712;
}

.lh-hero-status--neutral {
    background: #f8fbff;
    color: #6d7d99;
}

.lh-hero-desktop__icons {
    display: inline-flex;
    justify-content: flex-end;
    gap: 6px;
}

.lh-hero-desktop__icons i {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: #d3ddef;
    display: block;
}

.lh-hero-desktop__icons i:last-child {
    background: var(--lh-primary);
}

.lh-hero-desktop__footer {
    display: flex;
    justify-content: center;
    gap: 26px;
    padding-top: 12px;
    color: #9aabc4;
    font-size: 10px;
    font-weight: 700;
}

.lh-hero-phone {
    position: absolute;
    left: 8px;
    top: 78px;
    width: 244px;
    z-index: 2;
}

.lh-hero-phone__shell {
    padding: 12px;
    border-radius: 34px;
    border: 7px solid #e3ebfa;
    background: #f6faff;
    box-shadow: 0 24px 50px rgba(15, 23, 42, 0.11);
}

.lh-hero-phone__notch {
    width: 74px;
    height: 8px;
    border-radius: 999px;
    background: #d4dcee;
    margin: 2px auto 14px;
}

.lh-hero-phone__appbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.lh-hero-phone__brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.lh-hero-phone__brand-mark {
    width: 28px;
    height: 28px;
    border-radius: 999px;
    background: #edf3ff;
    color: var(--lh-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0;
    font-weight: 800;
    position: relative;
}

.lh-hero-phone__brand-mark::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--lh-primary) 0%, #6a86ff 100%);
}

.lh-hero-phone__brand strong {
    color: #23304d;
    font-size: 13px;
    line-height: 1.06;
}

.lh-hero-phone__menu {
    color: #23304d;
    font-size: 16px;
    font-weight: 700;
}

.lh-hero-phone__timecard {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 14px;
    padding: 12px 14px;
    border-radius: 16px;
    background: linear-gradient(180deg, #233a63 0%, #182d52 100%);
}

.lh-hero-phone__timecard span,
.lh-hero-phone__timecard small {
    display: block;
    color: rgba(255, 255, 255, 0.74);
    font-size: 9px;
}

.lh-hero-phone__timecard strong {
    display: block;
    margin: 2px 0;
    color: #fff;
    font-size: 19px;
    line-height: 1;
}

.lh-hero-phone h3 {
    margin: 16px 0 0;
    color: #1b2944;
    font-size: 15px;
    line-height: 1.1;
}

.lh-hero-phone p {
    margin: 10px 0 0;
    color: #7b8ba7;
    font-size: 9.6px;
    line-height: 1.38;
}

.lh-hero-phone__section-title {
    margin-top: 16px;
    color: #1b2944;
    font-size: 11px;
    font-weight: 700;
}

.lh-hero-phone__task {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-top: 10px;
    padding: 11px 11px;
    border-radius: 12px;
    border: 1px solid #e2e9f8;
    background: #f7faff;
}

.lh-hero-phone__task.is-complete {
    border-color: #63d4af;
    background: #edfcf6;
}

.lh-hero-phone__task-icon {
    width: 22px;
    height: 22px;
    border-radius: 999px;
    background: #dde8fb;
    flex: 0 0 auto;
}

.lh-hero-phone__task strong {
    display: block;
    color: #1b2944;
    font-size: 10.2px;
    line-height: 1.2;
}

.lh-hero-phone__task small {
    display: block;
    margin-top: 4px;
    color: #6077b4;
    font-size: 9px;
    line-height: 1.2;
}

.lh-hero-phone__task.is-complete small {
    color: #2fb182;
    font-weight: 700;
}

.lh-hero-phone__task.is-soft strong {
    color: var(--lh-primary);
}

.lh-hero-cta-pill {
    position: absolute;
    left: 126px;
    bottom: 36px;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    min-height: 46px;
    padding: 0 18px 0 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.09);
    z-index: 3;
}

.lh-hero-cta-pill__badge {
    width: 30px;
    height: 30px;
    border-radius: 999px;
    background: #223261;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    font-weight: 800;
}

.lh-hero-cta-pill span,
.lh-hero-cta-pill strong {
    font-size: 12.5px;
    line-height: 1.15;
}

.lh-hero-cta-pill span {
    color: #1b2944;
}

.lh-hero-cta-pill strong {
    color: var(--lh-primary);
}

.lh-ops-window,
.lh-device-phone,
.lh-hero-note {
    border: 1px solid rgba(214, 226, 240, 0.95);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 18px 38px rgba(15, 23, 42, 0.07);
}

.lh-ops-window {
    position: absolute;
    top: 0;
    right: 0;
    width: min(100%, 560px);
    min-height: 430px;
    padding: 0;
    border-radius: 26px;
    z-index: 1;
    overflow: hidden;
}

.lh-ops-window__topbar {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 18px;
    background: linear-gradient(90deg, var(--lh-primary-dark) 0%, var(--lh-primary) 100%);
    color: #fff;
}

.lh-ops-window__nav,
.lh-ops-window__profile {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.lh-ops-window__nav span,
.lh-ops-window__profile span,
.lh-ops-window__profile strong {
    min-height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    font-size: 11px;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.88);
}

.lh-ops-window__nav span.is-active,
.lh-ops-window__profile strong {
    background: rgba(255, 255, 255, 0.16);
    color: #fff;
}

.lh-ops-window__toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 18px 14px;
}

.lh-ops-window__filter,
.lh-ops-window__action {
    min-height: 36px;
    padding: 0 14px;
    border-radius: 10px;
    border: 1px solid var(--lh-line);
    background: #fff;
    color: var(--lh-text);
    display: inline-flex;
    align-items: center;
    font-size: 12px;
    font-weight: 700;
}

.lh-ops-window__action {
    border-color: rgba(56, 91, 248, 0.24);
    background: rgba(56, 91, 248, 0.08);
    color: var(--lh-primary);
}

.lh-ops-window__table {
    padding: 0 18px 18px;
}

.lh-ops-window__thead,
.lh-ops-window__row {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr) minmax(0, 1fr) 88px;
    gap: 12px;
    align-items: center;
}

.lh-ops-window__thead {
    padding: 12px 14px;
    border-radius: 14px;
    background: #f7f9fe;
    color: var(--lh-muted);
    font-size: 11px;
    font-weight: 700;
}

.lh-ops-window__row {
    padding: 14px;
    border-bottom: 1px solid rgba(214, 226, 240, 0.72);
    font-size: 12px;
    color: var(--lh-text);
}

.lh-ops-window__row:last-child {
    border-bottom: 0;
}

.lh-ops-window__status {
    color: #6d7e99;
    font-weight: 700;
}

.lh-ops-window__status.is-ok {
    color: #0f8c66;
}

.lh-ops-window__status.is-pending {
    color: #ca7a1b;
}

.lh-ops-window__icons {
    display: inline-flex;
    justify-content: flex-end;
    gap: 8px;
}

.lh-ops-window__icons i {
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: #d5def0;
    display: inline-block;
}

.lh-ops-window__icons i:first-child {
    background: rgba(56, 91, 248, 0.9);
}

.lh-ops-window__footer {
    display: flex;
    justify-content: center;
    gap: 24px;
    padding: 8px 18px 18px;
    color: #9aa8bf;
    font-size: 11px;
    font-weight: 700;
}

.lh-device-phone {
    position: absolute;
    top: 90px;
    left: 42px;
    width: 244px;
    padding: 12px;
    border-radius: 30px;
    z-index: 3;
}

.lh-device-screen {
    min-height: 470px;
    border-radius: 22px;
    background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
    padding: 16px 16px 18px;
}

.lh-device-chip {
    display: inline-flex;
    min-height: 30px;
    align-items: center;
    border-radius: 999px;
    padding: 0 10px;
    background: #eef4ff;
    color: var(--lh-primary);
    font-size: 11px;
    font-weight: 800;
}

.lh-device-phone__appbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.lh-device-phone__appbar strong {
    margin: 0;
    font-size: 1.08rem;
    line-height: 1.15;
}

.lh-device-times {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 16px;
    padding: 14px;
    border-radius: 16px;
    background: linear-gradient(180deg, #173053 0%, #1d3358 100%);
    color: #fff;
}

.lh-device-times span,
.lh-device-times small,
.lh-flow-mini span,
.lh-device-card small,
.lh-device-summary {
    color: var(--lh-muted);
}

.lh-device-times span,
.lh-device-times small {
    display: block;
    color: rgba(255, 255, 255, 0.72);
}

.lh-device-times strong {
    display: block;
    margin-top: 4px;
    font-size: 1.35rem;
    line-height: 1;
    color: #fff;
}

.lh-device-screen > strong {
    display: block;
    margin-top: 14px;
    font-size: 1.26rem;
    line-height: 1.14;
    color: var(--lh-text);
}

.lh-device-summary {
    margin: 10px 0 0;
    font-size: 12px;
    line-height: 1.55;
}

.lh-flow-mini {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
}

.lh-flow-mini span {
    min-height: 26px;
    padding: 0 10px;
    border-radius: 999px;
    background: #f2f6fd;
    display: inline-flex;
    align-items: center;
    font-size: 10px;
    font-weight: 700;
}

.lh-flow-mini--stacked {
    margin-top: 12px;
}

.lh-device-card {
    margin-top: 12px;
    border-radius: 16px;
    padding: 14px;
    background: #f7faff;
    display: grid;
    gap: 4px;
}

.lh-device-card span {
    color: var(--lh-text);
    font-size: 13px;
    font-weight: 700;
}

.lh-device-card small {
    font-size: 11px;
    line-height: 1.45;
}

.lh-device-card.is-accent {
    background: #eef4ff;
}

.lh-device-card.is-accent span {
    color: var(--lh-primary);
}

.lh-device-card.is-accent small {
    color: #5470bb;
}

.lh-device-card.is-complete {
    border: 1px solid rgba(111, 224, 191, 0.65);
    background: rgba(236, 255, 248, 0.96);
}

.lh-device-card.is-complete span {
    color: #0f8c66;
}

.lh-device-card.is-complete small {
    color: #319476;
}

.lh-hero-note {
    position: absolute;
    left: 74px;
    bottom: 8px;
    min-height: 42px;
    padding: 0 16px 0 10px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    z-index: 4;
}

.lh-hero-note__badge {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    background: var(--lh-primary);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 800;
    flex: 0 0 auto;
}

.lh-hero-note span,
.lh-hero-note strong {
    font-size: 12px;
    line-height: 1.2;
}

.lh-hero-note span {
    color: var(--lh-text);
}

.lh-hero-note strong {
    color: var(--lh-primary);
    font-weight: 800;
}

.lh-logo-strip,
.lh-flow-band,
.lh-section,
.lh-integration-banner,
.lh-testimonial-strip,
.lh-app-band,
.lh-dark-cta {
    border-radius: var(--lh-radius-lg);
}

.lh-logo-strip {
    padding: 0 0 4px;
    margin-top: -22px;
}

.lh-logo-row {
    width: 100%;
    min-height: 126px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 26px 34px;
    padding: 28px 34px;
    border: 1px solid rgba(219, 230, 241, 0.92);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 12px 34px rgba(56, 91, 248, 0.05);
}

.lh-logo-row img {
    display: block;
    width: auto;
    height: 50px;
    max-width: 264px;
    object-fit: contain;
    flex: 0 0 auto;
}

.lh-flow-band,
.lh-section,
.lh-integration-banner,
.lh-app-band,
.lh-dark-cta {
    padding: 42px 44px;
}

.lh-flow-band,
.lh-section {
    border: 1px solid rgba(214, 226, 240, 0.92);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.96) 70%);
}

.lh-flow-band {
    background: linear-gradient(180deg, #fff 0%, #fff 70%);
}

.lh-stats,
.lh-testimonial-strip {
    padding: 6px 0 0;
    background: transparent;
    border: 0;
}

.lh-soft-panel-head,
.lh-section-head,
.lh-centered-head {
    text-align: center;
}

.lh-soft-panel-head h2,
.lh-section-head h2,
.lh-dark-cta h2,
.lh-app-copy h2 {
    margin: 0;
    font-size: clamp(1.45rem, 2.3vw, 1.72rem);
    line-height: 1.08;
    letter-spacing: 0;
    font-weight: 600;
}

.lh-soft-panel-head p,
.lh-section-head p,
.lh-dark-cta p,
.lh-app-copy p {
    margin: 14px auto 0;
    /* max-width: 760px; */
    color: var(--lh-muted);
    line-height: 1.7;
    font-size: 1.02rem;
}

.lh-process-rail {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 32px;
    margin-top: 34px;
}

.lh-process-item {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 16px;
    align-items: flex-start;
    padding: 8px 0 18px;
    border-bottom: 1px solid rgba(214, 226, 240, 0.82);
}

.lh-process-mark {
    width: 52px;
    height: 52px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(214, 226, 240, 0.92);
    color: var(--lh-primary);
    font-size: 1rem;
    font-weight: 800;
}

.lh-process-body span,
.lh-module-card small,
.lh-pricing-card small {
    display: inline-block;
    margin-bottom: 12px;
    color: #7486a0;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.lh-process-body h3,
.lh-structure-item strong,
.lh-pricing-card h3,
.lh-module-card h3,
.lh-resource-card h2,
.lh-story-copy h3,
.lh-testimonial-placeholder strong {
    margin: 0;
    font-size: 1.18rem;
    line-height: 1.18;
}

.lh-process-body p,
.lh-pricing-card p,
.lh-module-card p,
.lh-resource-card p,
.lh-story-copy p,
.lh-testimonial-placeholder p {
    margin: 10px 0 0;
    color: var(--lh-muted);
    line-height: 1.65;
}

.lh-process-body a,
.lh-structure-item a,
.lh-story-copy a {
    display: inline-flex;
    margin-top: 14px;
    color: var(--lh-primary);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}

.lh-structure-band {
    display: grid;
    grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1fr);
    gap: 28px;
    align-items: start;
    margin-top: 36px;
    padding-top: 10px;
}

.lh-structure-copy {
    max-width: 360px;
}

.lh-structure-copy h3 {
    margin: 0;
    font-size: clamp(1.8rem, 2.8vw, 2.5rem);
    line-height: 1.15;
    letter-spacing: -0.04em;
}

.lh-structure-copy p {
    margin: 12px 0 0;
    color: var(--lh-muted);
}

.lh-structure-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 20px;
}

.lh-structure-item {
    display: flex;
    align-items: center;
    gap: 16px;
    min-height: 116px;
    padding: 18px 20px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(214, 226, 240, 0.82);
}

.lh-type-icon {
    width: 66px;
    height: 66px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #ddecff, #f8fbff);
    color: var(--lh-primary);
    font-size: 1.35rem;
    font-weight: 800;
}

.lh-structure-item strong {
    display: block;
}

.lh-structure-item a {
    margin-top: 8px;
}

.lh-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 24px;
}

.lh-stats-grid article {
    text-align: center;
}

.lh-stats-grid strong {
    display: block;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1;
    letter-spacing: -0.05em;
    font-weight: 800;
}

.lh-stats-grid span {
    display: block;
    margin-top: 10px;
    color: var(--lh-muted);
    font-weight: 600;
}

.lh-cert-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 24px;
}

.lh-cert-row span {
    display: inline-flex;
    min-height: 40px;
    align-items: center;
    padding: 0 4px;
    color: #7285a2;
    font-size: 12px;
    font-weight: 700;
}

.lh-story-shell {
    display: grid;
    gap: 26px;
}

.lh-story-stack {
    display: grid;
    gap: 34px;
}

.lh-story-row {
    display: grid;
    grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1fr);
    gap: 34px;
    align-items: center;
}

.lh-story-row.is-reversed {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.95fr);
}

.lh-story-row.is-reversed .lh-story-media {
    order: 2;
}

.lh-story-row.is-reversed .lh-story-copy {
    order: 1;
}

.lh-story-media {
    aspect-ratio: auto;
    border-radius: 0;
    overflow: visible;
    border: 0;
    background: transparent;
    box-shadow: none;
}

.lh-story-media img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.lh-story-copy h3 {
    font-size: clamp(1.7rem, 3vw, 2.1rem);
    line-height: 1.08;
    /* letter-spacing: -0.04em; */
}

.lh-story-copy p {
    max-width: 460px;
}

.lh-story-extra {
    margin-top: 12px;
}

.lh-module-grid,
.lh-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 28px;
}

.lh-module-card,
.lh-pricing-card,
.lh-resource-card,
.lh-testimonial-placeholder {
    border-radius: var(--lh-radius-md);
    border: 1px solid rgba(214, 226, 240, 0.95);
    background: rgba(255, 255, 255, 0.96);
}

.lh-module-card,
.lh-pricing-card {
    padding: 24px;
}

.lh-module-card span,
.lh-pricing-card span {
    display: block;
    margin-top: 16px;
    color: var(--lh-primary);
    font-weight: 700;
}

.lh-pricing-card strong {
    display: block;
    margin-top: 16px;
    font-size: 2rem;
    line-height: 1;
    letter-spacing: -0.05em;
}

.lh-pricing-card ul {
    margin: 16px 0 0;
    padding-left: 18px;
    color: var(--lh-muted);
    display: grid;
    gap: 10px;
}

.lh-pricing-card.is-featured {
    border-color: rgba(49, 94, 251, 0.26);
    background: linear-gradient(180deg, #f5f8ff 0%, #ffffff 100%);
}

.lh-pricing-card .ps-btn {
    width: 100%;
    margin-top: 20px;
}

.lh-dual-resource {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.lh-resource-card {
    padding: 28px;
}

.lh-resource-list {
    display: grid;
    gap: 14px;
    margin-top: 18px;
}

.lh-resource-list div {
    border-radius: 16px;
    background: #f7f9fc;
    padding: 16px;
}

.lh-resource-list strong,
.lh-resource-list span {
    display: block;
}

.lh-resource-list span {
    margin-top: 8px;
    color: var(--lh-muted);
}

.lh-integration-banner,
.lh-dark-cta,
.lh-app-band {
    position: relative;
    overflow: hidden;
}

.lh-integration-banner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.9fr);
    gap: 22px;
    padding: 32px 34px;
    border: 1px solid rgba(214, 226, 240, 0.92);
    background: linear-gradient(180deg, #eef5ff 0%, #f7fbff 100%);
}

.lh-integration-copy h2 {
    margin: 0;
    font-size: clamp(1.55rem, 2.4vw, 2rem);
    line-height: 1.06;
    letter-spacing: 0;
}

.lh-integration-copy p {
    margin: 12px 0 0;
    max-width: 520px;
    color: var(--lh-muted);
    line-height: 1.7;
}

.lh-integration-visual {
    position: relative;
    min-height: 260px;
    overflow: hidden;
}

.lh-integration-logo {
    position: absolute;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 16px;
    min-height: 62px;
    border-radius: 18px;
    border: 1px solid rgba(214, 226, 240, 0.78);
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 16px 34px rgba(28, 48, 96, 0.08);
    backdrop-filter: blur(10px);
    opacity: var(--logo-opacity, 0.85);
    transition: transform 180ms ease, opacity 180ms ease;
}

.lh-integration-logo img {
    display: block;
    width: auto;
    height: 28px;
    max-width: 150px;
    object-fit: contain;
}

.lh-integration-banner:hover .lh-integration-logo {
    opacity: 1;
}

.lh-integration-logo:nth-child(1) { top: 8px; left: 12px; transform: rotate(-4deg); }
.lh-integration-logo:nth-child(2) { top: 18px; right: 24px; transform: rotate(3deg); }
.lh-integration-logo:nth-child(3) { top: 82px; left: 18%; transform: rotate(-2deg); }
.lh-integration-logo:nth-child(4) { top: 90px; right: 8%; transform: rotate(4deg); }
.lh-integration-logo:nth-child(5) { top: 144px; left: 2%; transform: rotate(-3deg); }
.lh-integration-logo:nth-child(6) { top: 150px; left: 34%; transform: rotate(2deg); }
.lh-integration-logo:nth-child(7) { top: 146px; right: 26%; transform: rotate(-2deg); }
.lh-integration-logo:nth-child(8) { top: 196px; right: 2%; transform: rotate(3deg); }
.lh-integration-logo:nth-child(9) { top: 200px; left: 24%; transform: rotate(-1deg); }
.lh-integration-logo:nth-child(10) { top: 34px; left: 42%; transform: rotate(2deg); }

.lh-testimonial-strip {
    text-align: center;
}

.lh-testimonial-placeholder {
    padding: 24px;
    margin-top: 18px;
    background: linear-gradient(180deg, #fafcff 0%, #ffffff 100%);
}

.lh-dark-cta {
    padding: 0;
    background: linear-gradient(180deg, #1f285e 0%, #1a214f 100%);
    color: #fff;
}

.lh-dark-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 32px 36px;
    border-radius: 0;
    background: linear-gradient(180deg, rgba(33, 42, 95, 0.98) 0%, rgba(25, 33, 79, 0.98) 100%);
}

.lh-dark-cta .lh-kicker,
.lh-dark-cta p {
    color: rgba(255, 255, 255, 0.82);
}

.lh-dark-cta h2 {
    margin: 0;
    max-width: 840px;
    font-size: clamp(1.55rem, 2.2vw, 2rem);
    line-height: 1.12;
    letter-spacing: 0;
}

.lh-dark-cta .ps-btn-soft {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.22);
    color: #fff;
}

.lh-app-band {
    position: relative;
    padding: 0;
    background: url('/images/landing/home-footer.jpg') center/cover no-repeat;
}

.lh-app-band::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(13, 21, 45, 0.58) 0%, rgba(13, 21, 45, 0.42) 38%, rgba(13, 21, 45, 0.14) 72%, rgba(13, 21, 45, 0.04) 100%);
    pointer-events: none;
}

.lh-app-overlay {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 24px;
    align-items: center;
    min-height: 560px;
    padding: 44px 52px;
    border-radius: 0;
    overflow: hidden;
    background: transparent;
}

.lh-app-copy,
.lh-app-copy .lh-kicker,
.lh-app-copy p,
.lh-app-copy h2 {
    color: #fff;
}

.lh-app-copy {
    max-width: 650px;
    padding: 8px 0;
    background: transparent;
}

.lh-app-copy h2 {
    max-width: 620px;
    font-size: clamp(1.55rem, 2.4vw, 2rem);
    line-height: 1.1;
    letter-spacing: 0;
}

.lh-app-copy p {
    max-width: 560px;
}

.lh-store-row span {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    border-radius: 14px;
    padding: 0 14px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
}

.lh-app-panel {
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.94);
    padding: 18px;
    box-shadow: 0 22px 50px rgba(17, 26, 53, 0.2);
}

.lh-app-panel-head {
    display: flex;
    gap: 8px;
    margin-bottom: 14px;
}

.lh-app-panel-head span {
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: #d9dfeb;
}

.lh-app-panel-body {
    display: grid;
    gap: 10px;
}

.lh-app-panel-body > .is-placeholder {
    height: 36px;
    border-radius: 12px;
    background: #eef3fb;
}

.lh-app-panel-body > .is-placeholder.is-wide {
    height: 92px;
}

.lh-booking-panel {
    gap: 12px;
}

.lh-booking-panel__summary,
.lh-booking-panel__row,
.lh-booking-panel__footer {
    height: auto;
    border-radius: 14px;
    border: 1px solid rgba(221, 231, 243, 0.94);
    background: #f8fbff;
}

.lh-booking-panel__summary {
    min-height: 92px;
    display: grid;
    align-content: center;
    gap: 6px;
    padding: 16px 18px;
}

.lh-booking-panel__eyebrow {
    display: block;
    color: #7688a3;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.lh-booking-panel__summary strong {
    display: block;
    color: #172742;
    font-size: 16px;
    line-height: 1.18;
    font-weight: 800;
}

.lh-booking-panel__summary small {
    display: block;
    color: #6f819c;
    font-size: 11px;
    line-height: 1.5;
    font-weight: 600;
}

.lh-booking-panel__row {
    min-height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 18px;
}

.lh-booking-panel__guest {
    min-width: 0;
    flex: 1 1 auto;
    display: grid;
    gap: 4px;
}

.lh-booking-panel__row strong {
    display: block;
    color: #162642;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 800;
}

.lh-booking-panel__row span {
    display: block;
    color: #6a7d98;
    font-size: 11px;
    line-height: 1.4;
}

.lh-booking-panel__row b {
    flex: 0 0 auto;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 800;
    white-space: nowrap;
}

.lh-booking-panel__row .is-confirmed {
    background: rgba(43, 182, 115, 0.14);
    color: #148453;
}

.lh-booking-panel__row .is-pending {
    background: rgba(242, 175, 43, 0.16);
    color: #9b6500;
}

.lh-booking-panel__row .is-direct {
    background: rgba(56, 91, 248, 0.12);
    color: var(--lh-primary);
}

.lh-booking-panel__footer {
    min-height: 86px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    padding: 16px 18px;
}

.lh-booking-panel__metric {
    min-height: 52px;
    border-radius: 12px;
    background: rgba(233, 240, 250, 0.9);
    display: grid;
    align-content: center;
    gap: 4px;
    padding: 10px 12px;
}

.lh-booking-panel__metric small {
    display: block;
    color: #7284a1;
    font-size: 10px;
    line-height: 1.2;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.lh-booking-panel__metric strong {
    display: block;
    color: #1b2d49;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 800;
}

.ps-footer {
    margin-top: 22px;
    margin-bottom: 28px;
    padding-top: 28px;
    border-top: 1px solid rgba(214, 226, 240, 0.82);
}

.ps-footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(6, minmax(0, 1fr));
    gap: 24px;
}

.ps-footer-logo {
    height: 40px;
    width: auto;
    margin-bottom: 10px;
}

.ps-footer h4 {
    margin: 0 0 10px;
    font-size: 14px;
    font-weight: 800;
}

.ps-footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 8px;
}

.ps-footer a,
.ps-footer p,
.ps-footer li,
.ps-copyright {
    color: var(--lh-muted);
    text-decoration: none;
    line-height: 1.7;
}

.ps-copyright {
    margin-top: 22px;
    font-size: 13px;
}

@media (max-width: 1120px) {
    .lh-hero-grid,
    .lh-integration-banner,
    .lh-app-overlay,
    .lh-dark-cta-inner,
    .lh-dual-resource,
    .lh-structure-band {
        grid-template-columns: 1fr;
        display: grid;
    }

    .lh-device-stack {
        min-height: auto;
        display: grid;
        gap: 18px;
    }

    .lh-flow-orbit {
        min-height: auto;
        display: grid;
        gap: 18px;
    }

    .lh-hero-stage {
        min-height: auto;
        display: grid;
        gap: 18px;
    }

    .lh-hero-stage--reference {
        min-height: auto;
        display: block;
    }

    .lh-hero-desktop,
    .lh-hero-phone,
    .lh-hero-cta-pill,
    .lh-hero-orb {
        position: static;
        width: 100%;
    }

    .lh-hero-orb {
        display: none;
    }

    .lh-hero-phone {
        max-width: 320px;
        margin: 0 auto;
    }

    .lh-hero-reference-art {
        width: 100%;
        max-width: 780px;
        margin: 0 auto;
        transform: none;
    }

    .lh-hero-cta-pill {
        justify-content: flex-start;
    }

    .lh-process-rail,
    .lh-structure-grid,
    .lh-module-grid,
    .lh-pricing-grid,
    .ps-footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .lh-story-row,
    .lh-story-row.is-reversed {
        grid-template-columns: 1fr;
    }

    .lh-story-row.is-reversed .lh-story-media,
    .lh-story-row.is-reversed .lh-story-copy {
        order: initial;
    }
}

@media (max-width: 780px) {
    .lh-bleed-inner {
        width: min(100%, calc(100% - 18px));
    }

    .lh-hero,
    .lh-flow-band,
    .lh-stats,
    .lh-section,
    .lh-integration-banner,
    .lh-testimonial-strip,
    .lh-dark-cta {
        padding: 24px;
    }

    .lh-hero-copy h1,
    .lh-soft-panel-head h2,
    .lh-section-head h2,
    .lh-dark-cta h2,
    .lh-app-copy h2 {
        font-size: clamp(1.45rem, 6.4vw, 2rem);
    }

    .lh-process-rail,
    .lh-structure-grid,
    .lh-stats-grid,
    .lh-module-grid,
    .lh-pricing-grid,
    .ps-footer-grid {
        grid-template-columns: 1fr;
    }

    .lh-hero-desktop__topbar,
    .lh-hero-desktop__toolbar {
        flex-direction: column;
        align-items: stretch;
    }

    .lh-hero-desktop__header,
    .lh-hero-desktop__row {
        grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    }

    .lh-hero-desktop__header span:nth-child(3),
    .lh-hero-desktop__header span:nth-child(4),
    .lh-hero-desktop__row span:nth-child(3),
    .lh-hero-desktop__row span:nth-child(4) {
        display: none;
    }

    .lh-hero-list {
        gap: 10px;
    }

    .lh-hero-actions,
    .lh-inline-actions,
    .lh-types-actions,
    .lh-store-row {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
    }

    .lh-hero-actions .ps-btn,
    .lh-inline-actions .ps-btn,
    .lh-types-actions .ps-btn {
        width: 100%;
    }

    .lh-logo-row {
        min-height: 0;
        justify-content: center;
        gap: 18px 24px;
        padding: 18px 18px;
    }

    .lh-logo-row img {
        height: 34px;
        max-width: 190px;
    }

    .lh-integration-visual {
        min-height: 360px;
        margin-top: 8px;
    }

    .lh-integration-logo {
        min-height: 52px;
        padding: 10px 12px;
        border-radius: 14px;
    }

    .lh-integration-logo img {
        height: 21px;
        max-width: 116px;
    }

    .lh-integration-logo:nth-child(1) { top: 8px; left: 0; }
    .lh-integration-logo:nth-child(2) { top: 18px; right: 0; }
    .lh-integration-logo:nth-child(3) { top: 86px; left: 8%; }
    .lh-integration-logo:nth-child(4) { top: 92px; right: 6%; }
    .lh-integration-logo:nth-child(5) { top: 160px; left: 0; }
    .lh-integration-logo:nth-child(6) { top: 166px; left: 34%; }
    .lh-integration-logo:nth-child(7) { top: 170px; right: 10%; }
    .lh-integration-logo:nth-child(8) { top: 242px; right: 0; }
    .lh-integration-logo:nth-child(9) { top: 252px; left: 12%; }
    .lh-integration-logo:nth-child(10) { top: 248px; left: 48%; }

    .lh-story-media {
        aspect-ratio: 16 / 10;
    }

    .lh-proof-grid > .lh-proof-card + .lh-proof-card {
        border-left: 0;
        border-top: 1px solid #d7e4ef;
        padding-left: 0;
        padding-top: 18px;
    }

    .lh-proof-card {
        padding-right: 0;
    }

    .lh-resource-list div,
    .lh-structure-item {
        padding-top: 12px;
        padding-bottom: 12px;
    }

    .lh-dark-cta-inner,
    .lh-app-overlay {
        padding: 26px 22px;
        border-radius: 0;
    }

    .lh-app-overlay {
        min-height: auto;
    }

    .lh-app-copy {
        padding: 22px 20px;
        background: rgba(18, 26, 54, 0.54);
    }
}

/* Frontend heading normalization */
.lh-hero-copy h1 {
    font-size: clamp(2rem, 3.4vw, 3rem);
    line-height: 1.04;
}

@media (max-width: 860px) {
    .lh-hero-copy h1 {
        font-size: clamp(1.7rem, 7vw, 2.2rem);
        line-height: 1.06;
    }
}
