: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: #315efb;
    --lh-primary-dark: #151f44;
    --lh-primary-soft: #eff3ff;
    --lh-shadow: 0 24px 70px rgba(34, 61, 121, 0.06);
    --lh-radius-xl: 24px;
    --lh-radius-lg: 18px;
    --lh-radius-md: 12px;
    --lh-radius-sm: 6px;
}

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);
}

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

.ps-topbar {
    margin-top: 14px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 10px 0;
    background: transparent;
}

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

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

.ps-brand-copy {
    display: grid;
    gap: 2px;
    color: var(--lh-text);
}

.ps-brand-copy strong {
    font-size: 15px;
    font-weight: 800;
    line-height: 1;
}

.ps-brand-copy small {
    font-size: 12px;
    color: var(--lh-muted);
    line-height: 1;
}

.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(49, 94, 251, 0.08);
    color: var(--lh-text);
}

.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: #244ee4;
    border-color: #244ee4;
}

.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 16px;
    background: transparent;
}

.lh-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 430px);
    gap: 38px;
    align-items: center;
}

.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: 660px;
    font-size: clamp(2.5rem, 3vw, 2.3rem);
    line-height: 1.18;
    letter-spacing: -0.06em;
    font-weight: 800;
}

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

.lh-hero-list {
    list-style: none;
    margin: 22px 0 0;
    padding: 0;
    display: grid;
    gap: 10px;
    max-width: 470px;
}

.lh-hero-list li {
    position: relative;
    padding-left: 20px;
    color: var(--lh-text);
    font-weight: 600;
    line-height: 1.55;
}

.lh-hero-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.58em;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--lh-primary);
}

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

.lh-hero-visual {
    display: grid;
}

.lh-device-stack {
    position: relative;
    min-height: 430px;
}

.lh-device-phone,
.lh-device-dashboard {
    border: 1px solid rgba(214, 226, 240, 0.95);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 30px 60px rgba(49, 94, 251, 0.14);
}

.lh-device-phone {
    position: absolute;
    top: 24px;
    left: 0;
    width: 180px;
    padding: 10px;
    border-radius: 28px;
    z-index: 2;
}

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

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

.lh-device-screen strong {
    display: block;
    margin-top: 14px;
    font-size: 1.2rem;
    line-height: 1.12;
}

.lh-device-line {
    height: 12px;
    border-radius: 999px;
    background: #e9f0f8;
    margin-top: 14px;
}

.lh-device-line.short {
    width: 68%;
}

.lh-device-card {
    margin-top: 12px;
    border-radius: 16px;
    padding: 14px;
    background: #f7faff;
    color: var(--lh-text);
    font-size: 13px;
    font-weight: 700;
}

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

.lh-device-dashboard {
    position: absolute;
    right: 0;
    top: 0;
    width: calc(100% - 92px);
    min-height: 408px;
    border-radius: 26px;
    padding: 20px;
}

.lh-dashboard-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.lh-dashboard-top small,
.lh-dashboard-stats small,
.lh-dashboard-list span {
    color: var(--lh-muted);
}

.lh-dashboard-top strong {
    display: block;
    margin-top: 4px;
    font-size: 1.05rem;
}

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

.lh-dashboard-stats div,
.lh-dashboard-list div {
    border-radius: 18px;
    background: #f8fbff;
    padding: 14px;
}

.lh-dashboard-stats strong {
    display: block;
    margin-top: 8px;
    font-size: 1.35rem;
}

.lh-dashboard-list {
    display: grid;
    gap: 12px;
    margin-top: 18px;
}

.lh-dashboard-list strong {
    display: block;
    margin-bottom: 8px;
    font-size: 0.98rem;
}

.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 {
    display: grid;
    gap: 14px;
    justify-items: center;
    padding-top: 4px;
}

.lh-logo-strip p {
    margin: 0;
    color: #7a8da9;
    font-size: 14px;
    font-weight: 700;
}

.lh-logo-row {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 22px;
}

.lh-logo-row span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 22px;
    color: #95a2b7;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.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(248, 251, 255, 0.96) 100%);
}

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

.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.72rem, 2.8vw, 1.95rem);
    line-height: 1.08;
    letter-spacing: -0.05em;
    font-weight: 800;
}

.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: 4 / 3;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(214, 226, 240, 0.95);
    background: #fff;
    box-shadow: 0 18px 40px rgba(34, 61, 121, 0.08);
}

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

.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-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.8rem, 3vw, 2.6rem);
    line-height: 1.06;
    letter-spacing: -0.04em;
}

.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: 190px;
    display: grid;
    place-items: center;
}

.lh-integration-visual span {
    position: absolute;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    border-radius: 14px;
    padding: 0 16px;
    background: #fff;
    border: 1px solid rgba(214, 226, 240, 0.95);
    color: var(--lh-text);
    font-size: 13px;
    font-weight: 700;
}

.lh-integration-visual span:nth-child(1) { top: 18px; left: 18px; }
.lh-integration-visual span:nth-child(2) { top: 22px; right: 26px; }
.lh-integration-visual span:nth-child(3) { left: 22%; bottom: 22px; }
.lh-integration-visual span:nth-child(4) { right: 16%; bottom: 40px; }
.lh-integration-visual span:nth-child(5) { top: 50%; left: 38%; transform: translate(-50%, -50%); }
.lh-integration-visual span:nth-child(6) { top: 55%; right: 18%; }

.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.72rem, 2.4vw, 2.6rem);
    line-height: 1.12;
    letter-spacing: -0.05em;
}

.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 {
    padding: 0;
    background: url('/images/landing/hospitality-reception-live.png') center/cover no-repeat;
}

.lh-app-overlay {
    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: 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%);
}

.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.72rem, 2.8vw, 2.75rem);
    line-height: 1.1;
}

.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 div {
    height: 36px;
    border-radius: 12px;
    background: #eef3fb;
}

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

.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-device-phone,
    .lh-device-dashboard {
        position: static;
        width: 100%;
    }

    .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) {
    .ps-topbar,
    .ps-main,
    .ps-footer,
    .ps-flash {
        width: min(100%, calc(100% - 18px));
    }

    .ps-topbar {
        flex-wrap: wrap;
        gap: 12px;
        padding: 8px 0;
    }

    .ps-nav {
        order: 3;
        width: 100%;
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 2px;
    }

    .ps-topbar-actions {
        width: 100%;
        justify-content: space-between;
    }

    .ps-brand-copy {
        display: none;
    }

    .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.7rem, 8vw, 2.5rem);
    }

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

    .lh-device-phone {
        width: 78%;
    }

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

    .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);
    }
}
