.landing-page {
    min-height: 100vh;
    color: var(--rk-text);
    background: linear-gradient(180deg, #fcfbf7 0%, #faf9f5 48%, #f2eee6 100%);
}

.landing-page .btn {
    min-height: 48px;
    border-radius: 8px;
    padding: 12px 18px;
}

.landing-nav {
    position: sticky;
    top: 0;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 16px 24px;
    background: rgba(250, 249, 245, 0.9);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(67, 101, 92, 0.1);
}

.landing-nav__brand {
    font-family: var(--rk-font-display);
    font-size: 1.6rem;
    font-style: italic;
    font-weight: 600;
    color: var(--rk-primary);
}

.landing-nav__links,
.landing-nav__actions,
.landing-hero__actions,
.landing-footer__links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.landing-nav__links a,
.landing-footer__links a {
    color: var(--rk-text-muted);
    font-weight: 700;
}

.landing-main {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 28px 0 64px;
}

.landing-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    gap: 28px;
    align-items: center;
    min-height: 74vh;
    padding: 28px 0 22px;
}

.landing-kicker {
    margin: 0 0 12px;
    color: var(--rk-secondary);
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

.landing-hero__title,
.landing-section__title,
.landing-feature h3,
.landing-module h3,
.landing-flow__step h3 {
    font-family: var(--rk-font-display);
    letter-spacing: 0;
}

.landing-hero__title {
    margin: 0;
    max-width: 9ch;
    font-size: 5.2rem;
    line-height: 0.94;
    color: var(--rk-primary);
}

.landing-hero__subtitle,
.landing-section__subtitle,
.landing-phone__note span,
.landing-feature p,
.landing-module p,
.landing-flow__step p {
    color: var(--rk-text-muted);
}

.landing-hero__subtitle {
    margin: 18px 0 0;
    max-width: 42ch;
    font-size: 1.1rem;
    line-height: 1.65;
}

.landing-hero__actions {
    margin-top: 24px;
}

.landing-hero__signals {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.landing-hero__visual {
    display: grid;
    gap: 16px;
}

.landing-phone,
.landing-hero-card,
.landing-feature,
.landing-module,
.landing-flow__step {
    border-radius: 8px;
    border: 1px solid rgba(67, 101, 92, 0.12);
    box-shadow: var(--rk-shadow-soft);
}

.landing-phone {
    padding: 18px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(244, 244, 240, 0.92)),
        linear-gradient(145deg, rgba(1, 38, 31, 0.06), rgba(144, 77, 0, 0.08));
}

.landing-phone__bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 8px;
    background: #1a3c34;
    color: #ffffff;
}

.landing-phone__bar span {
    font-weight: 800;
}

.landing-phone__screen {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 14px;
}

.landing-action-tile {
    display: flex;
    align-items: center;
    min-height: 88px;
    padding: 14px;
    border: 1px solid rgba(67, 101, 92, 0.12);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--rk-primary);
    font-weight: 800;
}

.landing-action-tile--primary {
    background: var(--rk-primary);
    color: #ffffff;
    box-shadow: 0 10px 20px rgba(20, 83, 45, 0.16);
}

.landing-phone__note {
    display: grid;
    gap: 4px;
    margin-top: 14px;
    padding: 16px;
    border-radius: 8px;
    background: rgba(255, 220, 195, 0.54);
}

.landing-phone__note strong {
    color: var(--rk-primary);
}

.landing-hero-card {
    padding: 20px;
}

.landing-hero-card--secondary {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    background: linear-gradient(180deg, #1a3c34 0%, #01261f 100%);
    color: #ffffff;
}

.landing-stat {
    display: grid;
    gap: 7px;
    padding: 16px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
}

.landing-stat__label {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

.landing-stat__value {
    font-family: var(--rk-font-display);
    font-size: 2.2rem;
    line-height: 1;
}

.landing-stat small {
    color: rgba(255, 255, 255, 0.72);
}

.landing-section {
    padding: 42px 0;
}

.landing-section--accent {
    padding: 42px 28px;
    border-radius: 8px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.76), rgba(244, 244, 240, 0.86)),
        linear-gradient(145deg, rgba(1, 38, 31, 0.04), rgba(144, 77, 0, 0.06));
    box-shadow: var(--rk-shadow-soft);
}

.landing-section--cta {
    padding-top: 52px;
}

.landing-section__head {
    max-width: 680px;
    margin-bottom: 22px;
}

.landing-section__title {
    margin: 0;
    color: var(--rk-primary);
    font-size: 3.1rem;
    line-height: 1;
}

.landing-section__subtitle {
    margin: 14px 0 0;
    max-width: 54ch;
    font-size: 1rem;
    line-height: 1.65;
}

.landing-grid {
    display: grid;
    gap: 16px;
}

.landing-grid--features,
.landing-grid--modules {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.landing-feature,
.landing-module,
.landing-flow__step {
    padding: 22px;
    background: rgba(255, 255, 255, 0.78);
}

.landing-feature__number,
.landing-flow__number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin-bottom: 14px;
    border-radius: 8px;
    background: rgba(255, 220, 195, 0.6);
    color: var(--rk-secondary);
    font-weight: 900;
}

.landing-feature h3,
.landing-module h3,
.landing-flow__step h3 {
    margin: 0 0 10px;
    color: var(--rk-primary);
    font-size: 1.7rem;
    line-height: 1.05;
}

.landing-feature p,
.landing-module p,
.landing-flow__step p {
    margin: 0;
    line-height: 1.55;
}

.landing-module__eyebrow {
    margin: 0 0 8px;
    color: var(--rk-secondary);
    font-size: 0.86rem;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

.landing-flow {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.landing-section--preview {
    display: grid;
    grid-template-columns: minmax(180px, 0.75fr) minmax(0, 1fr);
    gap: 24px;
    align-items: center;
    padding: 28px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(67, 101, 92, 0.12);
    box-shadow: var(--rk-shadow-soft);
}

.landing-section--preview img {
    width: 100%;
    max-height: 420px;
    object-fit: cover;
    object-position: top center;
    border-radius: 8px;
    border: 1px solid rgba(67, 101, 92, 0.12);
}

.landing-cta {
    padding: 36px 28px;
    border-radius: 8px;
    background: linear-gradient(180deg, #1a3c34 0%, #01261f 100%);
    box-shadow: 0 24px 48px rgba(1, 38, 31, 0.16);
}

.landing-cta .landing-kicker,
.landing-cta .landing-section__title {
    color: #ffffff;
}

.landing-cta .landing-section__subtitle {
    color: rgba(255, 255, 255, 0.76);
}

.landing-footer {
    padding: 24px 16px 34px;
}

.landing-footer__inner {
    width: min(1180px, 100%);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    padding: 20px 22px;
    border-radius: 8px;
    background: rgba(1, 38, 31, 0.96);
    color: rgba(255, 255, 255, 0.82);
}

.landing-footer__inner p {
    margin: 0;
}

.landing-footer__links a {
    color: rgba(255, 255, 255, 0.72);
}

@media (max-width: 1080px) {
    .landing-hero,
    .landing-grid--features,
    .landing-grid--modules,
    .landing-flow,
    .landing-section--preview {
        grid-template-columns: 1fr;
    }

    .landing-hero {
        min-height: auto;
    }

    .landing-hero__title {
        max-width: 11ch;
        font-size: 4.4rem;
    }

    .landing-section__title {
        font-size: 2.7rem;
    }
}

@media (max-width: 760px) {
    .landing-nav {
        align-items: flex-start;
        padding: 14px 12px;
    }

    .landing-nav__links {
        display: none;
    }

    .landing-nav__actions {
        justify-content: flex-end;
        gap: 8px;
    }

    .landing-nav__actions .btn--ghost {
        display: none;
    }

    .landing-main {
        width: min(100%, calc(100% - 24px));
        padding: 16px 0 44px;
    }

    .landing-hero {
        padding: 12px 0 16px;
        gap: 20px;
    }

    .landing-hero__title {
        max-width: 10ch;
        font-size: 3.2rem;
    }

    .landing-section__title {
        font-size: 2.25rem;
    }

    .landing-hero__subtitle,
    .landing-section__subtitle {
        font-size: 1rem;
        line-height: 1.55;
    }

    .landing-hero__actions,
    .landing-hero__actions .btn {
        width: 100%;
    }

    .landing-phone__screen,
    .landing-hero-card--secondary {
        grid-template-columns: 1fr;
    }

    .landing-action-tile {
        min-height: 66px;
        text-align: left;
    }

    .landing-section {
        padding: 30px 0;
    }

    .landing-section--accent,
    .landing-section--preview,
    .landing-cta,
    .landing-feature,
    .landing-module,
    .landing-flow__step,
    .landing-phone,
    .landing-hero-card {
        padding: 18px;
    }

    .landing-section--preview img {
        max-height: 280px;
    }

    .landing-footer__inner {
        padding: 18px;
    }
}

@media (max-width: 520px) {
    .landing-nav {
        align-items: center;
        gap: 10px;
    }

    .landing-nav__brand {
        font-size: 1.35rem;
    }

    .landing-nav__actions {
        flex: 1 1 auto;
    }

    .landing-nav__actions .btn {
        min-height: 44px;
        padding: 10px 12px;
    }

    .landing-main {
        width: min(100%, calc(100% - 18px));
        padding-top: 12px;
    }

    .landing-hero__title,
    .landing-section__title,
    .landing-feature h3,
    .landing-module h3,
    .landing-flow__step h3 {
        letter-spacing: 0;
    }

    .landing-hero__title {
        max-width: 9ch;
        font-size: 2.7rem;
    }

    .landing-section__title {
        font-size: 2rem;
        line-height: 1.05;
    }

    .landing-hero__actions .btn {
        min-height: 48px;
    }

    .landing-phone,
    .landing-hero-card,
    .landing-feature,
    .landing-module,
    .landing-flow__step,
    .landing-section--accent,
    .landing-section--preview,
    .landing-cta,
    .landing-footer__inner {
        border-radius: 8px;
        padding: 16px;
    }

    .landing-stat {
        border-radius: 8px;
    }

    .landing-section--preview img {
        max-height: 220px;
    }
}
