:root {
    --ls-navy: #151f31;
    --ls-navy-2: #24324a;
    --ls-orange: #f28a34;
    --ls-orange-dark: #d96f1f;
    --ls-orange-soft: #fff0de;
    --ls-cream: #fffaf3;
    --ls-blue-soft: #eef6fb;
    --ls-green-soft: #ecf8ef;
    --ls-line: #e6e9ef;
    --ls-muted: #657084;
    --ls-text: #172033;
    --ls-white: #ffffff;
    --ls-shadow: 0 22px 60px rgba(21, 31, 49, 0.12);
}

* {
    box-sizing: border-box;
}

.ls-landing-body {
    margin: 0;
    min-width: 320px;
    background:
        linear-gradient(180deg, #fffaf4 0%, #ffffff 22%, #f5f9fc 58%, #ffffff 100%);
    color: var(--ls-text);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
}

.ls-landing-body img {
    display: block;
    max-width: 100%;
}

.ls-landing-page {
    overflow: hidden;
}

.ls-topbar,
.ls-hero,
.ls-section,
.ls-mid-cta,
.ls-final-cta {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.ls-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 22px 0 16px;
}

.ls-brand {
    display: inline-flex;
    align-items: center;
    min-width: 142px;
}

.ls-brand img {
    width: 148px;
    height: auto;
}

.ls-nav {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ls-nav a,
.ls-btn {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
}

.ls-nav a {
    padding: 0 18px;
    border: 1px solid var(--ls-line);
    color: var(--ls-navy);
    background: rgba(255, 255, 255, 0.78);
}

.ls-hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(500px, 1.08fr);
    gap: 34px;
    align-items: center;
    min-height: 720px;
    padding: 46px 0 78px;
}

.ls-hero-copy {
    position: relative;
    z-index: 2;
}

.ls-kicker,
.ls-eyebrow {
    margin: 0 0 14px;
    color: var(--ls-orange-dark);
    font-size: 14px;
    font-weight: 900;
    line-height: 1.4;
}

.ls-hero h1 {
    margin: 0;
    color: #101522;
    font-size: clamp(42px, 4.3vw, 58px);
    line-height: 1.05;
    letter-spacing: 0;
    word-break: keep-all;
}

.ls-hero-title {
    display: flex;
    flex-direction: column;
}

.ls-title-mask {
    display: block;
    overflow: hidden;
    padding-bottom: 0.08em;
    margin-bottom: -0.08em;
}

.ls-title-line {
    display: block;
    opacity: 0;
    transform: translateY(112%);
    animation: lsTitleSlideIn 760ms cubic-bezier(0.2, 0.72, 0.2, 1) forwards;
    will-change: transform, opacity;
}

.ls-title-mask:nth-child(2) .ls-title-line {
    animation-delay: 150ms;
}

@keyframes lsTitleSlideIn {
    0% {
        opacity: 0;
        transform: translateY(112%);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.ls-hero-lead {
    max-width: 610px;
    margin: 24px 0 0;
    color: #343b4c;
    font-size: 21px;
    font-weight: 700;
    line-height: 1.72;
}

.ls-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.ls-btn {
    padding: 0 23px;
    border: 1px solid transparent;
    font-size: 15px;
}

.ls-btn-primary {
    color: #fff;
    background: linear-gradient(135deg, var(--ls-orange), var(--ls-orange-dark));
    box-shadow: 0 14px 28px rgba(217, 111, 31, 0.28);
}

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

.ls-btn-ghost {
    color: var(--ls-orange-dark);
    background: var(--ls-orange-soft);
    border-color: #f8d8b7;
}

.ls-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    margin-top: 22px;
}

.ls-proof span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 0;
    padding: 0;
    border-radius: 0;
    background: transparent;
    border: 0;
    color: #566276;
    font-size: 13px;
    font-weight: 800;
}

.ls-proof span::before {
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 999px;
    background: var(--ls-orange);
    box-shadow: 0 0 0 4px rgba(242, 138, 52, 0.12);
}

.ls-hero-media {
    position: relative;
    min-height: 650px;
}

.ls-hero-device-pair {
    position: absolute;
    left: -52px;
    right: -118px;
    top: 34px;
    margin: 0;
}

.ls-hero-device-pair img {
    display: block;
    width: 100%;
    height: auto;
}

.ls-phone-shot,
.ls-screen-shot,
.ls-dashboard-shot {
    margin: 0;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(230, 233, 239, 0.9);
    box-shadow: var(--ls-shadow);
}

.ls-phone-shot {
    border-radius: 30px;
}

.ls-screen-shot,
.ls-dashboard-shot {
    border-radius: 18px;
}

.ls-phone-shot img,
.ls-screen-shot img,
.ls-dashboard-shot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ls-monitor-shot {
    overflow: visible;
    background: transparent;
    border: 0;
    box-shadow: none;
}

.ls-monitor-shot img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.ls-hero-phone {
    position: absolute;
    left: 4px;
    top: 96px;
    z-index: 3;
    width: min(190px, 26vw);
    height: 410px;
    border: 8px solid #fff;
    border-radius: 36px;
    transform: none;
    box-shadow: 0 28px 72px rgba(21, 31, 49, 0.18);
}

.ls-hero-phone::before {
    content: "";
    position: absolute;
    top: 10px;
    left: 50%;
    z-index: 2;
    width: 58px;
    height: 6px;
    border-radius: 999px;
    background: rgba(21, 31, 49, 0.14);
    transform: translateX(-50%);
}

.ls-hero-dashboard {
    position: absolute;
    left: 100px;
    bottom: 112px;
    z-index: 2;
    width: min(540px, 56vw);
    height: clamp(316px, 23vw, 356px);
    max-height: 356px;
    overflow: visible;
    border: 1px solid rgba(209, 216, 228, 0.9);
    border-radius: 28px;
    background: linear-gradient(145deg, #ffffff 0%, #edf3fb 100%);
    box-shadow: 0 30px 80px rgba(21, 31, 49, 0.16);
    transform: none;
}

.ls-hero-dashboard::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -54px;
    width: 94px;
    height: 54px;
    background: linear-gradient(180deg, rgba(219, 227, 238, 0.95), rgba(184, 195, 210, 0.88));
    clip-path: polygon(28% 0, 72% 0, 90% 100%, 10% 100%);
    transform: translateX(-50%);
    z-index: 0;
}

.ls-hero-dashboard::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -68px;
    width: 190px;
    height: 18px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(177, 188, 203, 0.62), rgba(238, 242, 248, 0.94), rgba(177, 188, 203, 0.62));
    box-shadow: 0 18px 36px rgba(21, 31, 49, 0.12);
    transform: translateX(-50%);
    z-index: 0;
}

.ls-hero-dashboard img {
    position: absolute;
    z-index: 1;
    inset: 14px 14px 34px;
    width: calc(100% - 28px);
    height: calc(100% - 48px);
    border-radius: 18px;
    object-fit: cover;
    object-position: top center;
    box-shadow: inset 0 0 0 1px rgba(223, 228, 237, 0.9);
}

.ls-section {
    padding: 76px 0;
}

.ls-section-head {
    max-width: 780px;
    margin-bottom: 28px;
}

.ls-section-head h2,
.ls-showcase-copy h2,
.ls-addons h2,
.ls-mid-cta h2,
.ls-final-cta h2 {
    margin: 0;
    color: #111827;
    font-size: clamp(30px, 3.2vw, 46px);
    line-height: 1.18;
    letter-spacing: 0;
    word-break: keep-all;
}

.ls-section-head p:not(.ls-eyebrow),
.ls-showcase-copy p:not(.ls-eyebrow),
.ls-work-card p:not(.ls-eyebrow),
.ls-addons p:not(.ls-eyebrow) {
    margin: 16px 0 0;
    color: var(--ls-muted);
    font-size: 17px;
    font-weight: 700;
    line-height: 1.75;
}

.ls-feature-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.ls-feature-card {
    min-height: 168px;
    padding: 22px;
    border: 1px solid var(--ls-line);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 14px 34px rgba(21, 31, 49, 0.06);
}

.ls-feature-card span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 34px;
    height: 28px;
    margin-bottom: 18px;
    border-radius: 999px;
    color: var(--ls-orange-dark);
    background: var(--ls-orange-soft);
    font-size: 12px;
    font-weight: 900;
}

.ls-feature-card strong {
    display: block;
    color: var(--ls-navy);
    font-size: 19px;
    line-height: 1.3;
}

.ls-feature-card p {
    margin: 10px 0 0;
    color: var(--ls-muted);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.55;
}

.ls-mobile-section {
    width: 100%;
    max-width: none;
    padding: 86px max(20px, calc((100vw - 1180px) / 2));
    background: linear-gradient(180deg, #f4f8fb 0%, #ffffff 100%);
}

.ls-mobile-section .ls-section-head {
    width: min(1180px, 100%);
    margin-left: auto;
    margin-right: auto;
}

.ls-phone-grid {
    width: min(1180px, 100%);
    margin: 30px auto 0;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(12px, 2vw, 28px);
    align-items: end;
}

.ls-phone-grid .ls-phone-shot {
    position: relative;
    height: auto;
    margin-bottom: 0;
    padding: 0;
    overflow: visible;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
}

.ls-phone-grid .ls-phone-shot::before {
    display: none;
}

.ls-phone-grid .ls-phone-shot img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center bottom;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
}

.ls-phone-shot figcaption {
    position: absolute;
    left: 14px;
    bottom: 14px;
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    padding: 0 14px;
    border-radius: 999px;
    color: var(--ls-navy);
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid var(--ls-line);
    font-size: 14px;
    font-weight: 900;
}

.ls-employee-phone-grid .ls-phone-shot figcaption {
    position: static;
    min-height: 34px;
    margin-top: -18px;
    transform: none;
    white-space: nowrap;
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.08);
}

.ls-showcase {
    display: grid;
    grid-template-columns: 0.88fr 1.12fr;
    gap: 34px;
    align-items: center;
}

.ls-showcase-reverse {
    grid-template-columns: 1.12fr 0.88fr;
}

.ls-showcase-reverse .ls-showcase-copy {
    order: 2;
}

.ls-showcase-reverse .ls-screen-shot {
    order: 1;
}

.ls-showcase-copy {
    max-width: 460px;
}

.ls-showcase .ls-screen-shot {
    height: 430px;
}

.ls-showcase .ls-monitor-shot {
    height: auto;
}

.ls-showcase .ls-screen-shot img {
    object-position: top left;
}

.ls-statement-section {
    width: 100%;
    max-width: none;
    padding: 86px max(20px, calc((100vw - 1180px) / 2));
    background: linear-gradient(180deg, #fffaf3 0%, #ffffff 100%);
}

.ls-statement-section .ls-section-head,
.ls-statement-grid {
    width: min(1180px, 100%);
    margin-left: auto;
    margin-right: auto;
}

.ls-statement-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.24fr) minmax(260px, 0.56fr);
    gap: 18px;
    align-items: center;
    margin-top: 30px;
}

.ls-statement-grid .ls-screen-shot {
    height: 560px;
}

.ls-statement-grid .ls-monitor-shot {
    height: auto;
}

.ls-statement-phone {
    height: auto;
    aspect-ratio: 735 / 760;
    align-self: start;
}

.ls-statement-phone img {
    object-fit: contain;
    object-position: top center;
    background: #fff;
}

.ls-statement-phone-device {
    width: min(300px, 100%);
    aspect-ratio: auto;
    justify-self: center;
    align-self: center;
    overflow: visible;
    background: transparent;
    border: 0;
    box-shadow: none;
}

.ls-statement-phone-device img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
}

.ls-two-up-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.ls-work-card {
    display: grid;
    grid-template-rows: auto 1fr;
    gap: 20px;
    min-height: 580px;
    padding: 24px;
    border-radius: 20px;
    border: 1px solid var(--ls-line);
    background: #fff;
    box-shadow: 0 18px 48px rgba(21, 31, 49, 0.08);
}

.ls-work-card h3 {
    margin: 0;
    color: var(--ls-navy);
    font-size: 28px;
    line-height: 1.2;
    letter-spacing: 0;
}

.ls-work-card .ls-screen-shot {
    height: 330px;
    box-shadow: none;
}

.ls-work-card .ls-monitor-shot {
    height: auto;
}

.ls-work-card .ls-screen-shot img {
    object-position: top center;
}

.ls-addons {
    border-radius: 28px;
    padding: 38px;
    border: 1px solid #dbe5f0;
    background: linear-gradient(135deg, #f0f7fb 0%, #fff7ee 100%);
}

.ls-addons p:not(.ls-eyebrow) {
    max-width: 890px;
}

.ls-mid-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    margin-top: 12px;
    margin-bottom: 18px;
    padding: 28px 32px;
    border-radius: 24px;
    background: #fff;
    border: 1px solid #f3d8bd;
    box-shadow: 0 18px 48px rgba(217, 111, 31, 0.1);
}

.ls-mid-cta h2 {
    font-size: clamp(24px, 2.4vw, 34px);
}

.ls-final-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    margin-top: 72px;
    margin-bottom: 70px;
    padding: 42px;
    border-radius: 30px;
    background: var(--ls-navy);
    color: #fff;
    box-shadow: 0 26px 70px rgba(21, 31, 49, 0.22);
}

.ls-final-cta h2 {
    color: #fff;
}

.ls-final-cta .ls-eyebrow {
    color: #ffbd82;
}

.ls-final-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px;
}

.ls-final-cta .ls-btn-secondary {
    border-color: rgba(255, 255, 255, 0.18);
}

.ls-final-cta .ls-btn-ghost {
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.18);
}

@media (prefers-reduced-motion: reduce) {
    .ls-title-line {
        opacity: 1;
        transform: none;
        animation: none;
    }
}

@media (max-width: 980px) {
    .ls-hero {
        grid-template-columns: 1fr;
        min-height: 0;
        padding-top: 34px;
        gap: 34px;
    }

    .ls-hero-media {
        min-height: 560px;
    }

    .ls-hero-device-pair {
        left: -18px;
        right: -44px;
        top: 16px;
    }

    .ls-hero-phone {
        left: 6%;
        top: 42px;
        width: 160px;
        height: 346px;
    }

    .ls-hero-dashboard {
        left: 30%;
        width: 68%;
        height: 274px;
        bottom: 120px;
    }

    .ls-feature-grid,
    .ls-phone-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ls-showcase,
    .ls-showcase-reverse,
    .ls-statement-grid,
    .ls-two-up-grid {
        grid-template-columns: 1fr;
    }

    .ls-showcase-reverse .ls-showcase-copy,
    .ls-showcase-reverse .ls-screen-shot {
        order: initial;
    }

    .ls-showcase-copy {
        max-width: 760px;
    }

    .ls-final-cta {
        align-items: flex-start;
        flex-direction: column;
    }

    .ls-final-links {
        justify-content: flex-start;
    }
}

@media (max-width: 640px) {
    .ls-topbar,
    .ls-hero,
    .ls-section,
    .ls-mid-cta,
    .ls-final-cta {
        width: min(100% - 28px, 1180px);
    }

    .ls-topbar {
        padding-top: 16px;
    }

    .ls-brand img {
        width: 132px;
    }

    .ls-nav a {
        min-height: 40px;
        padding: 0 13px;
        font-size: 13px;
    }

    .ls-hero {
        padding-bottom: 50px;
    }

    .ls-hero h1 {
        font-size: 40px;
    }

    .ls-hero-lead {
        font-size: 18px;
        line-height: 1.65;
    }

    .ls-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .ls-btn {
        width: 100%;
    }

    .ls-hero-media {
        min-height: 420px;
    }

    .ls-hero-device-pair {
        left: -26px;
        right: -26px;
        top: 14px;
    }

    .ls-hero-phone {
        left: 16px;
        top: 42px;
        width: 126px;
        height: 272px;
        border-width: 6px;
        border-radius: 28px;
        transform: none;
    }

    .ls-hero-dashboard {
        left: 44px;
        bottom: 132px;
        width: calc(100% - 44px);
        height: 236px;
        transform: none;
    }

    .ls-section {
        padding-top: 58px;
        padding-bottom: 58px;
    }

    .ls-section-head h2,
    .ls-showcase-copy h2,
    .ls-addons h2,
    .ls-mid-cta h2,
    .ls-final-cta h2 {
        font-size: 30px;
    }

    .ls-section-head p:not(.ls-eyebrow),
    .ls-showcase-copy p:not(.ls-eyebrow),
    .ls-work-card p:not(.ls-eyebrow),
    .ls-addons p:not(.ls-eyebrow) {
        font-size: 16px;
    }

    .ls-feature-grid {
        grid-template-columns: 1fr;
    }

    .ls-phone-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px 12px;
    }

    .ls-feature-card {
        min-height: auto;
    }

    .ls-phone-grid .ls-phone-shot {
        height: auto;
        margin-bottom: 0;
        padding: 0;
        border-radius: 0;
    }

    .ls-phone-grid .ls-phone-shot::before {
        display: none;
    }

    .ls-phone-grid .ls-phone-shot img {
        border-radius: 0;
    }

    .ls-employee-phone-grid .ls-phone-shot figcaption {
        min-height: 28px;
        margin-top: -14px;
        padding: 0 10px;
        font-size: 12px;
    }

    .ls-showcase .ls-screen-shot,
    .ls-statement-grid .ls-screen-shot,
    .ls-statement-phone,
    .ls-work-card .ls-screen-shot {
        height: 330px;
    }

    .ls-showcase .ls-monitor-shot,
    .ls-statement-grid .ls-monitor-shot,
    .ls-work-card .ls-monitor-shot {
        height: auto;
    }

    .ls-statement-phone-device {
        width: min(220px, 68vw);
        height: auto;
        margin-left: auto;
        margin-right: auto;
    }

    .ls-work-card {
        min-height: 0;
        padding: 18px;
    }

    .ls-work-card h3 {
        font-size: 24px;
    }

    .ls-addons {
        border-radius: 22px;
        padding: 24px;
    }

    .ls-mid-cta {
        align-items: stretch;
        flex-direction: column;
        margin-top: 0;
        margin-bottom: 6px;
        padding: 24px;
        border-radius: 22px;
    }

    .ls-mid-cta h2 {
        font-size: 26px;
        line-height: 1.22;
    }

    .ls-final-cta {
        margin-top: 46px;
        margin-bottom: 42px;
        padding: 28px;
        border-radius: 24px;
    }
}
