body.landing-body {
    background: #f6f8f4;
    color: #17212b;
    font-family: Inter, Arial, sans-serif;
    margin: 0;
}

.landing-nav {
    align-items: center;
    background: rgba(246, 248, 244, 0.96);
    border-bottom: 1px solid #dfe7dc;
    box-sizing: border-box;
    display: flex;
    height: 72px;
    justify-content: space-between;
    left: 0;
    padding: 0 clamp(20px, 6vw, 86px);
    position: sticky;
    right: 0;
    top: 0;
    z-index: 20;
}

.brand-link {
    align-items: center;
    color: #132033;
    display: inline-flex;
    font-size: 1.15rem;
    font-weight: 900;
    gap: 10px;
    text-decoration: none;
}

.brand-mark {
    border: 3px solid #2f8f5b;
    border-radius: 50%;
    display: inline-block;
    height: 22px;
    position: relative;
    width: 22px;
}

.brand-mark::after {
    background: #2f8f5b;
    border-radius: 999px;
    content: "";
    height: 9px;
    left: 9px;
    position: absolute;
    top: 4px;
    width: 3px;
}

.nav-actions {
    align-items: center;
    display: flex;
    gap: 18px;
}

.nav-actions a {
    color: #4b5a6b;
    font-weight: 800;
    text-decoration: none;
}

.nav-actions .nav-button {
    background: #203246;
    border-radius: 8px;
    color: #ffffff;
    padding: 11px 18px;
}

.landing-hero {
    align-items: center;
    box-sizing: border-box;
    display: grid;
    gap: clamp(34px, 5vw, 76px);
    grid-template-columns: minmax(330px, 0.82fr) minmax(520px, 1fr);
    margin: 0 auto;
    max-width: 1440px;
    min-height: calc(92vh - 72px);
    padding: clamp(44px, 7vh, 78px) clamp(20px, 6vw, 86px) 72px;
}

.hero-content {
    max-width: 650px;
}

.eyebrow {
    color: #2f6f48;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0;
    margin: 0 0 16px;
    text-transform: uppercase;
}

.hero-content h1 {
    color: #101d2f;
    font-size: clamp(3.35rem, 7vw, 6.5rem);
    line-height: 0.92;
    margin: 0 0 24px;
}

.hero-copy {
    color: #4d5c6f;
    font-size: 1.16rem;
    line-height: 1.7;
    margin: 0 0 30px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 28px;
}

.primary-link,
.secondary-link,
.plan-card a {
    align-items: center;
    border-radius: 8px;
    display: inline-flex;
    font-weight: 900;
    min-height: 48px;
    padding: 0 20px;
    text-decoration: none;
}

.primary-link {
    background: #203246;
    color: #ffffff;
}

.secondary-link {
    background: #ffffff;
    border: 1px solid #d6ded3;
    color: #203246;
}

.disabled-link {
    background: #6f7b86;
    cursor: not-allowed;
    opacity: 0.72;
    pointer-events: none;
}

.hero-points {
    color: #405269;
    display: grid;
    gap: 11px;
}

.hero-points span {
    align-items: center;
    display: flex;
    gap: 10px;
}

.hero-points span::before {
    background: #2f8f5b;
    border-radius: 999px;
    content: "";
    flex: 0 0 9px;
    height: 9px;
    width: 9px;
}

.product-showcase {
    align-items: end;
    display: grid;
    min-height: 560px;
    position: relative;
}

.showcase-screen {
    background: #ffffff;
    border: 1px solid #dbe5dc;
    border-radius: 8px;
    box-shadow: 0 28px 76px rgba(28, 42, 55, 0.16);
    box-sizing: border-box;
    min-height: 460px;
    overflow: hidden;
    padding: 24px;
    width: min(100%, 690px);
}

.screen-bar {
    align-items: center;
    border-bottom: 1px solid #e5ece4;
    display: grid;
    gap: 14px;
    grid-template-columns: 1fr auto 1fr;
    margin: -4px -4px 24px;
    padding: 0 0 18px;
}

.screen-bar div {
    display: flex;
    gap: 7px;
}

.screen-bar strong {
    color: #17212b;
}

.screen-bar small {
    color: #2f6f48;
    font-weight: 900;
    justify-self: end;
}

.window-dot {
    background: #2f8f5b;
    border-radius: 999px;
    display: block;
    height: 10px;
    width: 10px;
}

.window-dot.muted {
    background: #d8e2d8;
}

.screen-summary {
    border: 1px solid #e2e9df;
    border-radius: 8px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-bottom: 22px;
}

.screen-summary div {
    padding: 18px;
}

.screen-summary div + div {
    border-left: 1px solid #e2e9df;
}

.screen-summary span,
.screen-row.heading span {
    color: #6a7889;
    display: block;
    font-size: 0.8rem;
    font-weight: 900;
}

.screen-summary strong {
    color: #132033;
    display: block;
    font-size: 1.8rem;
    margin-top: 8px;
}

.screen-table {
    border: 1px solid #e2e9df;
    border-radius: 8px;
    overflow: hidden;
}

.screen-row {
    align-items: center;
    display: grid;
    gap: 14px;
    grid-template-columns: minmax(0, 1.2fr) auto minmax(90px, 0.7fr);
    min-height: 58px;
    padding: 0 18px;
}

.screen-row + .screen-row {
    border-top: 1px solid #e2e9df;
}

.screen-row.heading {
    background: #f5f8f3;
    min-height: 44px;
}

.screen-row strong {
    color: #1d2b3f;
}

.screen-row > span {
    color: #5b6878;
    font-weight: 800;
}

.screen-row mark {
    background: #ddf2e7;
    border-radius: 999px;
    color: #1f7a4d;
    font-weight: 900;
    padding: 8px 12px;
}

.screen-row mark.out {
    background: #eef2ec;
    color: #526372;
}

.screen-row mark.pending {
    background: #fff0cf;
    color: #986114;
}

.screen-row.review > span {
    color: #203246;
}

.clock-preview {
    background: #17212b;
    border: 8px solid #ffffff;
    border-radius: 8px;
    bottom: 0;
    box-shadow: 0 24px 70px rgba(23, 33, 43, 0.24);
    box-sizing: border-box;
    color: #ffffff;
    padding: 24px 20px;
    position: absolute;
    right: 0;
    text-align: center;
    width: 220px;
}

.phone-notch {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    display: block;
    height: 5px;
    margin: 0 auto 18px;
    width: 58px;
}

.clock-label {
    color: #b7c9d8;
    font-size: 0.78rem;
    font-weight: 900;
    margin: 0 0 8px;
    text-transform: uppercase;
}

.code-sample {
    background: #f7faf8;
    border-radius: 8px;
    color: #17212b;
    display: block;
    font-size: 2.25rem;
    margin-bottom: 14px;
    padding: 14px;
}

.clock-preview p {
    font-weight: 800;
    line-height: 1.4;
    margin: 0 0 16px;
}

.clock-buttons {
    display: grid;
    gap: 8px;
    grid-template-columns: 1fr;
}

.clock-buttons span {
    background: #2f8f5b;
    border-radius: 8px;
    font-weight: 900;
    padding: 10px;
}

.clock-buttons span + span {
    background: #a64236;
}

.landing-section {
    box-sizing: border-box;
    padding: 82px clamp(20px, 7vw, 100px);
}

.feature-band {
    background: #ffffff;
    border-bottom: 1px solid #e0e8dd;
    border-top: 1px solid #e0e8dd;
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(3, 1fr);
}

.feature-band article,
.security-grid article,
.plan-card {
    background: #ffffff;
    border: 1px solid #dfe7dc;
    border-radius: 8px;
    padding: 24px;
}

.feature-band span,
.plan-card span {
    color: #2f6f48;
    display: block;
    font-size: 0.8rem;
    font-weight: 900;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.feature-band strong,
.security-grid strong,
.plan-card strong {
    color: #132033;
    display: block;
    font-size: 1.2rem;
    line-height: 1.3;
    margin-bottom: 10px;
}

.feature-band p,
.security-grid p,
.plan-card p,
.section-copy {
    color: #566579;
    line-height: 1.65;
    margin: 0;
}

.split-section {
    align-items: start;
    display: grid;
    gap: 56px;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
}

.app-download-band {
    align-items: center;
    background: #ffffff;
    border-bottom: 1px solid #e0e8dd;
    border-top: 1px solid #e0e8dd;
    display: flex;
    gap: 28px;
    justify-content: space-between;
}

.app-download-band > div {
    max-width: 760px;
}

.app-download-actions {
    align-items: center;
    display: grid;
    gap: 10px;
    justify-items: start;
}

.app-download-actions small {
    color: #526174;
    font-weight: 700;
}

.app-download-hero {
    grid-template-columns: minmax(330px, 0.9fr) minmax(320px, 0.7fr);
    min-height: calc(86vh - 72px);
}

.app-install-panel {
    background: #ffffff;
    border: 1px solid #dfe7dc;
    border-radius: 8px;
    box-shadow: 0 22px 60px rgba(23, 33, 43, 0.08);
    box-sizing: border-box;
    padding: 30px;
}

.app-install-panel strong {
    color: #132033;
    display: block;
    font-size: 1.45rem;
    margin-bottom: 12px;
}

.app-install-panel p {
    color: #566579;
    line-height: 1.65;
    margin: 0 0 20px;
}

.landing-section h2,
.landing-cta h2 {
    color: #101d2f;
    font-size: clamp(2.15rem, 4vw, 4rem);
    line-height: 1.03;
    margin: 0 0 18px;
}

.workflow-list {
    display: grid;
    gap: 14px;
}

.workflow-list div {
    align-items: start;
    background: #ffffff;
    border: 1px solid #dfe7dc;
    border-radius: 8px;
    display: grid;
    gap: 16px;
    grid-template-columns: auto 1fr;
    padding: 18px;
}

.workflow-list span {
    align-items: center;
    background: #203246;
    border-radius: 999px;
    color: #ffffff;
    display: flex;
    font-weight: 900;
    height: 36px;
    justify-content: center;
    width: 36px;
}

.workflow-list p {
    color: #566579;
    line-height: 1.55;
    margin: 6px 0 0;
}

.security-section {
    background: #eef3ec;
}

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

.security-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(4, 1fr);
}

.plans-section {
    background: #f6f8f4;
}

.plan-grid {
    display: grid;
    gap: 22px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 860px;
}

.plan-card {
    display: grid;
    gap: 14px;
}

.plan-card.highlight {
    border-color: #2f8f5b;
    box-shadow: 0 18px 42px rgba(47, 143, 91, 0.13);
}

.plan-card strong {
    font-size: 1.85rem;
}

.plan-card a {
    background: #203246;
    color: #ffffff;
    justify-self: start;
    margin-top: 4px;
}

.landing-cta {
    background: #17212b;
    color: #ffffff;
    padding: 72px clamp(20px, 7vw, 100px);
}

.landing-cta .eyebrow {
    color: #9bd4ad;
}

.landing-cta h2 {
    color: #ffffff;
    max-width: 760px;
}

.landing-cta .primary-link {
    background: #ffffff;
    color: #17212b;
}

.landing-footer {
    align-items: center;
    background: #101926;
    color: #ffffff;
    display: flex;
    justify-content: space-between;
    padding: 30px clamp(20px, 7vw, 100px);
}

.landing-footer nav {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.landing-footer a {
    color: #ffffff;
    font-weight: 800;
    text-decoration: none;
}

@media (max-width: 1080px) {
    .landing-hero,
    .split-section,
    .app-download-hero {
        grid-template-columns: 1fr;
    }

    .product-showcase {
        justify-items: center;
        min-height: 540px;
    }

    .clock-preview {
        right: max(0px, calc((100% - 690px) / 2));
    }

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

@media (max-width: 760px) {
    .landing-nav {
        align-items: flex-start;
        height: auto;
        padding: 16px 20px;
    }

    .nav-actions {
        gap: 10px;
    }

    .nav-actions a:not(.nav-button) {
        display: none;
    }

    .landing-hero {
        min-height: auto;
        padding-top: 42px;
    }

    .hero-content h1 {
        font-size: 3.5rem;
    }

    .product-showcase {
        min-height: 0;
    }

    .showcase-screen {
        min-height: 0;
        padding: 18px;
    }

    .screen-bar {
        grid-template-columns: 1fr;
    }

    .screen-bar strong,
    .screen-bar small {
        justify-self: start;
    }

    .screen-summary,
    .feature-band,
    .security-grid,
    .plan-grid {
        grid-template-columns: 1fr;
    }

    .screen-summary div + div {
        border-left: 0;
        border-top: 1px solid #e2e9df;
    }

    .screen-row {
        align-items: start;
        grid-template-columns: 1fr;
        padding-bottom: 14px;
        padding-top: 14px;
    }

    .clock-preview {
        display: none;
    }

    .landing-section {
        padding-bottom: 56px;
        padding-top: 56px;
    }

    .landing-footer {
        align-items: flex-start;
        display: grid;
        gap: 16px;
    }

    .app-download-band {
        align-items: flex-start;
        display: grid;
    }
}
