:root {
    --lp-ink: #102a43;
    --lp-ink-soft: #486581;
    --lp-blue: #0f72b4;
    --lp-blue-deep: #075b94;
    --lp-blue-dark: #073b66;
    --lp-blue-pale: #eaf6fd;
    --lp-orange: #ff6b35;
    --lp-orange-dark: #e85420;
    --lp-orange-pale: #fff1eb;
    --lp-mist: #f5f9fc;
    --lp-white: #ffffff;
    --lp-border: #dceaf3;
    --lp-shadow: 0 24px 70px rgba(7, 59, 102, 0.13);
    --lp-shadow-soft: 0 12px 34px rgba(7, 59, 102, 0.09);
    --lp-page-gutter: clamp(40px, 8vw, 176px);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 94px;
}

body {
    margin: 0;
    background: var(--lp-white);
    color: var(--lp-ink);
    font-family: 'Manrope', 'Segoe UI', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

body,
button,
select,
input {
    font-family: 'Manrope', 'Segoe UI', sans-serif;
}

img {
    max-width: 100%;
}

.lp-container {
    width: min(1880px, calc(100% - var(--lp-page-gutter)));
    margin-inline: auto;
}

.lp-skip-link {
    position: fixed;
    top: 10px;
    inset-inline-start: 10px;
    z-index: 5000;
    padding: 10px 16px;
    border-radius: 10px;
    background: var(--lp-blue-dark);
    color: white;
    text-decoration: none;
    transform: translateY(-160%);
}

.lp-skip-link:focus {
    transform: translateY(0);
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    height: 82px;
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid rgba(15, 114, 180, 0.16);
    backdrop-filter: blur(18px);
    transition: box-shadow 180ms ease, background 180ms ease;
}

.site-header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 10px 30px rgba(7, 59, 102, 0.08);
}

.lp-nav {
    min-height: 82px;
    display: flex;
    align-items: center;
    gap: 30px;
}

.lp-brand {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
}

.lp-brand img {
    display: block;
    width: 166px;
    height: auto;
}

.lp-emblem {
    display: none;
    flex: 0 0 auto;
}

.lp-emblem img {
    display: block;
    width: 42px;
    height: 42px;
    object-fit: contain;
}

.lp-nav-links {
    display: flex;
    align-items: center;
    gap: 26px;
    margin-inline-start: auto;
}

.lp-nav-links a {
    color: var(--lp-ink-soft);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: color 160ms ease;
}

.lp-nav-links a:hover {
    color: var(--lp-blue);
}

.lp-nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.lp-nav-button {
    min-height: 42px;
    padding: 10px 17px;
    border: 1px solid transparent;
    border-radius: 13px;
    font-size: 13px;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
    transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.lp-nav-button:hover {
    transform: translateY(-1px);
}

.lp-nav-button.is-quiet {
    border-color: var(--lp-border);
    background: white;
    color: var(--lp-blue-deep);
}

.lp-nav-button.is-blue {
    background: var(--lp-blue);
    color: white;
    box-shadow: 0 8px 20px rgba(15, 114, 180, 0.2);
}

.lp-nav-button.is-orange {
    background: var(--lp-orange);
    color: white;
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.22);
}

.site-header .language-selector {
    margin: 0;
}

.site-header .language-dropdown {
    display: none;
}

.site-header .lang-dd {
    position: relative;
}

.site-header .lang-dd-btn {
    min-height: 42px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 11px;
    border: 1px solid var(--lp-border);
    border-radius: 13px;
    background: white;
    color: var(--lp-blue-deep);
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
}

.site-header .lang-dd-btn:hover {
    background: var(--lp-blue-pale);
}

.site-header .lang-dd-flag {
    width: 24px;
    height: 17px;
    border-radius: 3px;
    object-fit: cover;
}

.site-header .lang-dd-caret {
    font-size: 11px;
}

.site-header .lang-dd-list {
    position: absolute;
    top: calc(100% + 8px);
    inset-inline-end: 0;
    inset-inline-start: auto;
    z-index: 1200;
    min-width: 176px;
    display: none;
    margin: 0;
    padding: 7px;
    border: 1px solid var(--lp-border);
    border-radius: 15px;
    background: white;
    box-shadow: var(--lp-shadow-soft);
    list-style: none;
}

.site-header .lang-dd.open .lang-dd-list {
    display: block;
}

.site-header .lang-dd-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 10px;
    border-radius: 9px;
    color: var(--lp-ink);
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
}

.site-header .lang-dd-item:hover,
.site-header .lang-dd-item.selected {
    background: var(--lp-blue-pale);
    color: var(--lp-blue-deep);
}

/* Shared type and controls */
.lp-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin: 0 0 18px;
    color: var(--lp-blue-deep);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
    line-height: 1.4;
    text-transform: uppercase;
}

.lp-eyebrow::before {
    content: '';
    width: 26px;
    height: 3px;
    border-radius: 999px;
    background: var(--lp-orange);
}

.lp-section-heading {
    margin: 0;
    font-family: 'Sora', 'Segoe UI', sans-serif;
    font-size: clamp(32px, 4vw, 54px);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.04em;
    color: var(--lp-ink);
}

.lp-section-lede {
    max-width: 690px;
    margin: 20px 0 0;
    color: var(--lp-ink-soft);
    font-size: 18px;
    line-height: 1.75;
}

.lp-button {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 22px;
    border: 1px solid transparent;
    border-radius: 15px;
    font-size: 15px;
    font-weight: 800;
    text-decoration: none;
    transition: transform 170ms ease, box-shadow 170ms ease, background 170ms ease;
}

.lp-button:hover {
    transform: translateY(-2px);
}

.lp-button.is-primary {
    background: var(--lp-orange);
    color: white;
    box-shadow: 0 13px 28px rgba(255, 107, 53, 0.25);
}

.lp-button.is-primary:hover {
    background: var(--lp-orange-dark);
}

.lp-button.is-secondary {
    border-color: var(--lp-border);
    background: rgba(255, 255, 255, 0.92);
    color: var(--lp-blue-deep);
}

.lp-button.is-secondary:hover {
    background: var(--lp-blue-pale);
}

.lp-button svg,
.lp-download svg,
.lp-tool-icon svg,
.lp-check-icon svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

a:focus-visible,
button:focus-visible,
[role='option']:focus-visible {
    outline: 3px solid rgba(255, 107, 53, 0.42);
    outline-offset: 3px;
}

/* Hero */
.lp-hero {
    position: relative;
    isolation: isolate;
    min-height: 690px;
    overflow: hidden;
    background: white;
}

.lp-hero::before {
    content: '';
    position: absolute;
    z-index: 1;
    inset: 0;
    background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0.98) 31%, rgba(255, 255, 255, 0.84) 47%, rgba(255, 255, 255, 0.12) 72%, rgba(255, 255, 255, 0) 100%);
    pointer-events: none;
}

.lp-hero::after {
    content: '';
    position: absolute;
    z-index: 2;
    inset-inline-start: -180px;
    bottom: -330px;
    width: 720px;
    height: 560px;
    border: 86px solid rgba(15, 114, 180, 0.055);
    border-top-color: rgba(255, 107, 53, 0.08);
    border-radius: 50%;
    transform: rotate(-13deg);
    pointer-events: none;
}

.lp-hero-inner {
    position: relative;
    z-index: 3;
    min-height: 690px;
    display: flex;
    align-items: center;
    padding-block: 74px 82px;
}

.lp-hero-copy {
    width: min(760px, 52%);
}

.lp-hero h1 {
    max-width: 820px;
    margin: 0;
    font-family: 'Sora', 'Segoe UI', sans-serif;
    font-size: clamp(46px, 5.5vw, 78px);
    font-weight: 700;
    line-height: 0.99;
    letter-spacing: -0.055em;
    color: var(--lp-ink);
}

.lp-hero h1::after {
    content: '';
    display: block;
    width: 84px;
    height: 7px;
    margin-top: 24px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--lp-orange) 0 43%, var(--lp-blue) 43% 100%);
}

.lp-hero-lede {
    max-width: 710px;
    margin: 25px 0 0;
    color: var(--lp-ink-soft);
    font-size: 18px;
    line-height: 1.75;
}

.lp-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.lp-confidence-note {
    margin: 13px 0 0;
    color: #627d98;
    font-size: 12px;
    font-weight: 650;
}

.lp-solution-path {
    width: min(510px, 100%);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-top: 30px;
}

.lp-path-step {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--lp-blue-dark);
    font-size: 12px;
    font-weight: 800;
}

.lp-path-step:not(:last-child)::after {
    content: '';
    height: 1px;
    flex: 1;
    min-width: 22px;
    margin-inline: 3px 8px;
    background: repeating-linear-gradient(90deg, rgba(15, 114, 180, 0.35) 0 6px, transparent 6px 11px);
}

.lp-path-node {
    width: 10px;
    height: 10px;
    flex: 0 0 10px;
    border-radius: 50%;
    background: var(--lp-blue);
    box-shadow: 0 0 0 5px rgba(15, 114, 180, 0.1);
}

.lp-path-step:nth-child(2) .lp-path-node {
    background: #42a5d8;
}

.lp-path-step:nth-child(3) .lp-path-node {
    background: var(--lp-orange);
    box-shadow: 0 0 0 5px rgba(255, 107, 53, 0.12);
}

.lp-hero-media {
    position: absolute;
    z-index: 0;
    inset: 0;
}

.lp-hero-media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: 60% center;
}

.lp-downloads {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.lp-download {
    min-height: 45px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 13px;
    border: 1px solid rgba(7, 91, 148, 0.15);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.88);
    color: var(--lp-blue-dark);
    text-decoration: none;
    box-shadow: 0 7px 20px rgba(7, 59, 102, 0.07);
}

.lp-download:hover {
    background: white;
    border-color: rgba(15, 114, 180, 0.32);
}

.lp-download-copy {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.lp-download-copy small {
    color: #829ab1;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.lp-download-copy strong {
    margin-top: 3px;
    font-size: 12px;
    font-weight: 800;
}

/* Trust strip */
.lp-proof {
    position: relative;
    z-index: 5;
    margin-top: -1px;
    background: var(--lp-blue-dark);
    color: white;
}

.lp-proof-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.lp-proof-item {
    min-height: 128px;
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 18px;
    padding: 28px 34px;
}

.lp-proof-item + .lp-proof-item {
    border-inline-start: 1px solid rgba(255, 255, 255, 0.15);
}

.lp-proof-mark {
    width: 11px;
    height: 52px;
    border-radius: 999px;
    background: var(--lp-orange);
}

.lp-proof-item:nth-child(2) .lp-proof-mark {
    background: #55b7e8;
}

.lp-proof-value {
    display: block;
    font-family: 'Sora', 'Segoe UI', sans-serif;
    font-size: 23px;
    font-weight: 700;
    letter-spacing: -0.03em;
}

.lp-proof-label {
    display: block;
    max-width: 260px;
    margin-top: 5px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 12px;
    line-height: 1.55;
}

/* Growing subject library */
.lp-subjects {
    position: relative;
    padding: 112px 0;
    overflow: hidden;
    background: white;
}

.lp-subjects::after {
    content: '';
    position: absolute;
    width: 420px;
    height: 420px;
    inset-inline-end: -250px;
    bottom: -250px;
    border: 70px solid rgba(15, 114, 180, 0.05);
    border-radius: 50%;
    pointer-events: none;
}

.lp-subjects-layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(360px, 0.72fr) minmax(660px, 1.28fr);
    align-items: center;
    gap: clamp(54px, 6vw, 118px);
}

.lp-subjects-copy .lp-section-lede {
    max-width: 610px;
}

.lp-subjects-panel {
    padding: 22px;
    border: 1px solid var(--lp-border);
    border-radius: 28px;
    background: var(--lp-mist);
    box-shadow: var(--lp-shadow-soft);
}

.lp-subject-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.lp-subject-card {
    min-height: 112px;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px;
    border: 1px solid rgba(15, 114, 180, 0.1);
    border-radius: 18px;
    background: white;
    color: var(--lp-ink);
    transition: transform 170ms ease, box-shadow 170ms ease, border-color 170ms ease;
}

.lp-subject-card:hover {
    transform: translateY(-3px);
    border-color: rgba(15, 114, 180, 0.24);
    box-shadow: 0 12px 28px rgba(7, 59, 102, 0.09);
}

.lp-subject-icon {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: var(--lp-blue-pale);
    color: var(--lp-blue);
    font-size: 18px;
}

.lp-subject-card:nth-child(2n) .lp-subject-icon,
.lp-subject-card:nth-child(5) .lp-subject-icon {
    background: var(--lp-orange-pale);
    color: var(--lp-orange);
}

.lp-subject-card strong {
    font-size: 14px;
    font-weight: 800;
    line-height: 1.35;
}

.lp-subjects-more {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 12px;
    padding: 14px 16px;
    border-radius: 15px;
    background: var(--lp-blue-dark);
    color: rgba(255, 255, 255, 0.78);
    font-size: 12px;
    font-weight: 700;
}

.lp-subjects-plus {
    width: 28px;
    height: 28px;
    flex: 0 0 28px;
    display: grid;
    place-items: center;
    border-radius: 9px;
    background: var(--lp-orange);
    color: white;
    font-size: 20px;
    line-height: 1;
}

@media (min-width: 1700px) {
    .site-header {
        height: 94px;
    }

    .lp-nav {
        min-height: 94px;
        gap: clamp(24px, 1.7vw, 36px);
    }

    .lp-brand img {
        width: 204px;
    }

    .lp-nav-links {
        gap: clamp(24px, 1.65vw, 34px);
    }

    .lp-nav-links a {
        font-size: 15px;
    }

    .lp-nav-actions {
        gap: 12px;
    }

    .site-header .lang-dd-btn,
    .lp-nav-button {
        min-height: 48px;
        border-radius: 15px;
    }

    .site-header .lang-dd-btn {
        padding: 10px 14px;
        font-size: 14px;
    }

    .lp-nav-button {
        padding: 12px 19px;
        font-size: 14px;
    }

    .lp-hero,
    .lp-hero-inner {
        min-height: clamp(730px, 73svh, 840px);
    }

    .lp-hero-inner {
        padding-block: 78px 84px;
    }

    .lp-hero-copy {
        width: min(900px, 48%);
    }

    .lp-hero .lp-eyebrow {
        margin-bottom: 22px;
        font-size: 14px;
    }

    .lp-hero h1 {
        max-width: 900px;
        font-size: clamp(72px, 4.25vw, 92px);
        line-height: 0.98;
    }

    .lp-hero h1::after {
        width: 100px;
        height: 8px;
        margin-top: 28px;
    }

    .lp-hero-lede {
        max-width: 790px;
        margin-top: 28px;
        font-size: 20px;
        line-height: 1.72;
    }

    .lp-hero-actions {
        gap: 14px;
        margin-top: 34px;
    }

    .lp-hero .lp-button {
        min-height: 58px;
        padding: 15px 26px;
        font-size: 16px;
    }

    .lp-confidence-note {
        margin-top: 15px;
        font-size: 13px;
    }

    .lp-solution-path {
        width: min(600px, 100%);
        margin-top: 32px;
    }

    .lp-path-step {
        gap: 10px;
        font-size: 13.5px;
    }

    .lp-path-node {
        width: 12px;
        height: 12px;
        flex-basis: 12px;
    }

    .lp-downloads {
        gap: 12px;
        margin-top: 23px;
    }

    .lp-download {
        min-height: 52px;
        padding: 9px 16px;
        border-radius: 14px;
    }

    .lp-download-copy small {
        font-size: 10px;
    }

    .lp-download-copy strong {
        font-size: 14px;
    }

    .lp-hero::before {
        background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0.99) 30%, rgba(255, 255, 255, 0.86) 46%, rgba(255, 255, 255, 0.12) 69%, rgba(255, 255, 255, 0) 100%);
    }

    .lp-hero-media img {
        object-position: 62% center;
    }

    .lp-proof-item {
        min-height: 156px;
        padding: 34px clamp(38px, 2.8vw, 58px);
    }

    .lp-proof-mark {
        width: 12px;
        height: 60px;
    }

    .lp-proof-value {
        font-size: 27px;
    }

    .lp-proof-label {
        max-width: 380px;
        font-size: 14px;
    }

    .lp-tools-grid {
        gap: 22px;
    }

    .lp-tool-card {
        --lp-tool-pad: 32px;
        min-height: 540px;
        padding: 0 var(--lp-tool-pad) var(--lp-tool-pad);
    }
}

@media (max-width: 1180px) {
    .lp-subjects-layout {
        grid-template-columns: 1fr;
        gap: 46px;
    }

    .lp-subjects-copy {
        max-width: 760px;
    }
}

@media (max-width: 680px) {
    .lp-subjects {
        padding-block: 82px;
    }

    .lp-subjects-panel {
        padding: 12px;
        border-radius: 21px;
    }

    .lp-subject-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

    .lp-subject-card {
        min-height: 104px;
        flex-direction: column;
        align-items: flex-start;
        gap: 11px;
        padding: 14px;
    }

    .lp-subject-icon {
        width: 38px;
        height: 38px;
        flex-basis: 38px;
    }

    .lp-subject-card strong {
        font-size: 12px;
    }
}

/* Learning path */
.lp-process {
    position: relative;
    padding: 118px 0 124px;
    background:
        linear-gradient(rgba(15, 114, 180, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15, 114, 180, 0.035) 1px, transparent 1px),
        var(--lp-mist);
    background-size: 34px 34px;
}

.lp-process-head {
    max-width: 900px;
}

.lp-process-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 54px;
}

.lp-process-grid::before {
    content: '';
    position: absolute;
    top: 35px;
    inset-inline: 12%;
    z-index: 0;
    height: 2px;
    background: repeating-linear-gradient(90deg, rgba(15, 114, 180, 0.32) 0 7px, transparent 7px 13px);
}

.lp-step-card {
    position: relative;
    z-index: 1;
    min-height: 310px;
    padding: 26px;
    border: 1px solid var(--lp-border);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--lp-shadow-soft);
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.lp-step-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--lp-shadow);
}

.lp-step-number {
    width: 70px;
    height: 70px;
    display: grid;
    place-items: center;
    border: 8px solid white;
    border-radius: 50%;
    background: var(--lp-blue);
    color: white;
    box-shadow: 0 0 0 1px var(--lp-border), 0 10px 22px rgba(15, 114, 180, 0.2);
    font-family: 'Sora', 'Segoe UI', sans-serif;
    font-size: 16px;
    font-weight: 700;
}

.lp-step-card:nth-child(2) .lp-step-number {
    background: #42a5d8;
}

.lp-step-card:nth-child(3) .lp-step-number {
    background: var(--lp-orange);
    box-shadow: 0 0 0 1px var(--lp-border), 0 10px 22px rgba(255, 107, 53, 0.22);
}

.lp-step-card:nth-child(4) .lp-step-number {
    background: #266c9f;
    box-shadow: 0 0 0 1px var(--lp-border), 0 10px 22px rgba(38, 108, 159, 0.22);
}

.lp-step-card h3 {
    margin: 30px 0 12px;
    color: var(--lp-ink);
    font-family: 'Sora', 'Segoe UI', sans-serif;
    font-size: 22px;
    line-height: 1.2;
    letter-spacing: -0.025em;
}

.lp-step-card p {
    margin: 0;
    color: var(--lp-ink-soft);
    font-size: 15px;
    line-height: 1.75;
}

/* Platform tools */
.lp-tools {
    position: relative;
    padding: 116px 0;
    overflow: hidden;
    background: var(--lp-blue-dark);
    color: white;
}

.lp-tools::before {
    content: '';
    position: absolute;
    width: 540px;
    height: 540px;
    top: -270px;
    inset-inline-end: -140px;
    border: 90px solid rgba(255, 255, 255, 0.035);
    border-radius: 50%;
}

.lp-tools-head {
    position: relative;
    z-index: 1;
    max-width: 900px;
}

.lp-tools .lp-eyebrow {
    color: #8fd5f4;
}

.lp-tools .lp-section-heading,
.lp-tools .lp-section-lede {
    color: white;
}

.lp-tools .lp-section-lede {
    color: rgba(255, 255, 255, 0.7);
}

.lp-system-showcase {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(270px, 0.72fr) minmax(0, 1.28fr);
    align-items: center;
    gap: clamp(30px, 4vw, 70px);
    margin-top: 54px;
    padding: clamp(30px, 3.4vw, 56px);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 34px;
    background:
        radial-gradient(circle at 18% 10%, rgba(85, 183, 232, 0.18), transparent 36%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.035));
    box-shadow: 0 28px 80px rgba(0, 15, 31, 0.28);
    overflow: hidden;
}

.lp-system-showcase::after {
    content: '';
    position: absolute;
    width: 260px;
    height: 260px;
    inset-inline-start: -120px;
    bottom: -170px;
    border: 46px solid rgba(255, 107, 53, 0.08);
    border-radius: 50%;
    pointer-events: none;
}

.lp-system-copy {
    position: relative;
    z-index: 1;
}

.lp-system-kicker {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 18px;
    padding: 8px 12px;
    border: 1px solid rgba(143, 213, 244, 0.24);
    border-radius: 999px;
    background: rgba(85, 183, 232, 0.09);
    color: #a9e0f7;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.lp-live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #7fe09b;
    box-shadow: 0 0 0 5px rgba(127, 224, 155, 0.11);
}

.lp-system-copy h3 {
    max-width: 490px;
    margin: 0;
    color: white;
    font-family: 'Sora', 'Segoe UI', sans-serif;
    font-size: clamp(29px, 2.35vw, 43px);
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.lp-system-copy p {
    max-width: 560px;
    margin: 20px 0 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 15px;
    line-height: 1.75;
}

.lp-system-chips {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 28px;
}

.lp-system-chips span {
    padding: 9px 12px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 11px;
    background: rgba(255, 255, 255, 0.065);
    color: rgba(255, 255, 255, 0.82);
    font-size: 12px;
    font-weight: 700;
}

.lp-system-chips i {
    color: var(--lp-orange);
    font-size: 12px;
}

.lp-system-console {
    position: relative;
    z-index: 1;
    min-width: 0;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 25px;
    background: rgba(4, 25, 45, 0.72);
    box-shadow: 0 24px 54px rgba(0, 10, 22, 0.3);
}

.lp-console-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 2px 3px 16px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 12px;
}

.lp-console-topbar > span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #9ce4b0;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.lp-console-topbar > span > i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #7fe09b;
}

.lp-console-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    gap: 12px;
}

.lp-console-card {
    min-width: 0;
    padding: 17px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 17px;
    background: rgba(255, 255, 255, 0.065);
}

.lp-console-assessment {
    grid-row: span 2;
}

.lp-console-card-head {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.lp-console-card-head > div {
    min-width: 0;
}

.lp-console-card-head strong,
.lp-console-next strong {
    display: block;
    color: white;
    font-size: 12px;
    line-height: 1.4;
}

.lp-console-card-head small,
.lp-console-next small,
.lp-console-signal small {
    display: block;
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.48);
    font-size: 9px;
    line-height: 1.4;
}

.lp-console-icon {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    display: grid;
    place-items: center;
    border-radius: 11px;
    background: rgba(85, 183, 232, 0.13);
    color: #8fd5f4;
    font-size: 13px;
}

.lp-difficulty-track {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 6px;
    margin-top: 31px;
}

.lp-difficulty-track span {
    height: 5px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
}

.lp-difficulty-track .is-done {
    background: #55b7e8;
}

.lp-difficulty-track .is-active {
    background: var(--lp-orange);
    box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.1);
}

.lp-console-signal {
    margin-top: 23px;
    padding: 14px;
    border-inline-start: 3px solid var(--lp-orange);
    border-radius: 0 11px 11px 0;
    background: rgba(255, 107, 53, 0.08);
}

.lp-console-signal strong {
    display: block;
    margin-top: 4px;
    color: #ffd4c4;
    font-size: 11px;
    line-height: 1.4;
}

.lp-mini-map {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 19px;
}

.lp-mini-map > i {
    color: rgba(255, 255, 255, 0.28);
    font-size: 8px;
}

.lp-map-node {
    min-width: 0;
    padding: 7px 8px;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 9px;
    color: rgba(255, 255, 255, 0.66);
    font-size: 8px;
    font-weight: 700;
    text-align: center;
}

.lp-map-node.is-foundation {
    border-color: rgba(255, 107, 53, 0.28);
    color: #ffb094;
}

.lp-map-node.is-current {
    border-color: rgba(85, 183, 232, 0.35);
    color: #a8ddf6;
}

.lp-map-node.is-next {
    border-color: rgba(127, 224, 155, 0.28);
    color: #a8e6b8;
}

.lp-console-next {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 11px;
}

.lp-console-next > i {
    color: var(--lp-orange);
    font-size: 10px;
}

.lp-console-next small {
    margin: 0 0 3px;
}

.lp-tools-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 48px;
}

.lp-tool-card {
    --lp-tool-pad: 26px;
    min-height: 470px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0 var(--lp-tool-pad) var(--lp-tool-pad);
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.065);
    backdrop-filter: blur(12px);
    overflow: hidden;
    transition: background 180ms ease, transform 180ms ease;
}

.lp-tool-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
}

.lp-tool-visual {
    position: relative;
    width: calc(100% + (var(--lp-tool-pad) * 2));
    aspect-ratio: 1.62 / 1;
    flex: 0 0 auto;
    margin-inline: calc(var(--lp-tool-pad) * -1);
    border-bottom: 1px solid rgba(143, 213, 244, 0.16);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-color: #eaf3f8;
    box-shadow: inset 0 -24px 34px -30px rgba(11, 65, 108, 0.28);
}

.lp-tool-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(11, 65, 108, 0.1), transparent 32%);
    pointer-events: none;
}

.lp-tool-visual--adaptive {
    background-image: url('../images/landing/feature-adaptive-editorial.jpg');
}

.lp-tool-visual--tutor {
    background-image: url('../images/landing/feature-tutor-editorial.jpg');
}

.lp-tool-visual--workspace {
    background-image: url('../images/landing/feature-workspace-editorial.jpg');
}

.lp-tool-visual--exams {
    background-image: url('../images/landing/feature-exams-editorial.jpg');
}

.lp-tool-visual--map {
    background-image: url('../images/landing/feature-map-editorial.jpg');
}

.lp-tool-visual--reports {
    background-image: url('../images/landing/feature-reports-editorial.jpg');
}

.lp-tool-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 15px;
    background: rgba(85, 183, 232, 0.15);
    color: #8fd5f4;
    position: relative;
    z-index: 2;
    margin-top: -24px;
    border: 1px solid rgba(143, 213, 244, 0.2);
    box-shadow: 0 13px 26px rgba(2, 22, 39, 0.28);
}

.lp-tool-icon i {
    font-size: 20px;
}

.lp-tool-card:nth-child(2) .lp-tool-icon,
.lp-tool-card:nth-child(4) .lp-tool-icon {
    background: rgba(255, 107, 53, 0.14);
    color: #ff9a75;
}

.lp-tool-card h3 {
    margin: 18px 0 10px;
    color: white;
    font-family: 'Sora', 'Segoe UI', sans-serif;
    font-size: 18px;
    line-height: 1.3;
}

.lp-tool-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.65);
    font-size: 13px;
    line-height: 1.7;
}

/* Family section */
.lp-family {
    padding: 124px 0;
    background: white;
}

.lp-family-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(480px, 0.92fr);
    align-items: center;
    gap: clamp(54px, 5vw, 108px);
}

.lp-family-media {
    position: relative;
}

.lp-family-image {
    position: relative;
    z-index: 1;
    overflow: hidden;
    border-radius: 30px 30px 130px 30px;
    box-shadow: var(--lp-shadow);
    background: var(--lp-blue-pale);
}

.lp-family-image img {
    width: 100%;
    min-height: 500px;
    display: block;
    object-fit: cover;
    object-position: 42% center;
}

.lp-family-media::before {
    content: '';
    position: absolute;
    z-index: 0;
    width: 180px;
    height: 180px;
    inset-inline-start: -28px;
    bottom: -28px;
    border-radius: 38px;
    background: var(--lp-orange-pale);
    transform: rotate(9deg);
}

.lp-progress-note {
    position: absolute;
    z-index: 3;
    inset-inline-end: -28px;
    bottom: 46px;
    width: 206px;
    padding: 17px;
    border: 1px solid var(--lp-border);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--lp-shadow-soft);
}

.lp-progress-note-label {
    display: block;
    color: var(--lp-ink-soft);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.lp-progress-note-value {
    display: block;
    margin-top: 6px;
    color: var(--lp-blue-dark);
    font-family: 'Sora', 'Segoe UI', sans-serif;
    font-size: 17px;
    font-weight: 700;
}

.lp-progress-line {
    height: 7px;
    margin-top: 12px;
    overflow: hidden;
    border-radius: 999px;
    background: var(--lp-blue-pale);
}

.lp-progress-line::before {
    content: '';
    display: block;
    width: 78%;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--lp-blue), #55b7e8, var(--lp-orange));
}

.lp-family-list {
    display: grid;
    gap: 22px;
    margin-top: 32px;
}

.lp-family-point {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 14px;
}

.lp-check-icon {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 11px;
    background: var(--lp-blue-pale);
    color: var(--lp-blue);
}

.lp-family-point:nth-child(2) .lp-check-icon {
    background: var(--lp-orange-pale);
    color: var(--lp-orange);
}

.lp-family-point h3 {
    margin: 0;
    color: var(--lp-ink);
    font-size: 15px;
    font-weight: 800;
}

.lp-family-point p {
    margin: 5px 0 0;
    color: var(--lp-ink-soft);
    font-size: 13px;
    line-height: 1.65;
}

.lp-text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 29px;
    color: var(--lp-blue-deep);
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
}

.lp-text-link::after {
    content: '→';
    transition: transform 150ms ease;
}

[dir='rtl'] .lp-text-link::after {
    content: '←';
}

.lp-text-link:hover::after {
    transform: translateX(4px);
}

[dir='rtl'] .lp-text-link:hover::after {
    transform: translateX(-4px);
}

/* Language section */
.lp-languages {
    padding: 105px 0;
    background: var(--lp-blue-pale);
}

.lp-languages-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(430px, 1.05fr);
    align-items: center;
    gap: 70px;
}

.lp-language-stack {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 13px;
}

.lp-language-card {
    min-height: 122px;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    border: 1px solid rgba(15, 114, 180, 0.12);
    border-radius: 21px;
    background: white;
    box-shadow: 0 9px 25px rgba(7, 59, 102, 0.07);
}

.lp-language-card:nth-child(even) {
    transform: translateY(18px);
}

.lp-language-flag {
    width: 49px;
    height: 35px;
    flex: 0 0 auto;
    overflow: hidden;
    border-radius: 7px;
    box-shadow: 0 0 0 1px rgba(16, 42, 67, 0.08);
}

.lp-language-flag img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.lp-language-name {
    display: block;
    color: var(--lp-ink);
    font-family: 'Sora', 'Segoe UI', sans-serif;
    font-size: 17px;
    font-weight: 700;
}

.lp-language-note {
    display: block;
    margin-top: 3px;
    color: var(--lp-ink-soft);
    font-size: 11px;
}

/* Final CTA */
.lp-final {
    padding: 104px 0;
    background: white;
}

.lp-final-panel {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1.2fr auto;
    align-items: center;
    gap: 40px;
    padding: 62px 66px;
    border-radius: 30px;
    background: var(--lp-blue);
    color: white;
    box-shadow: var(--lp-shadow);
}

.lp-final-panel::before,
.lp-final-panel::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.lp-final-panel::before {
    width: 370px;
    height: 370px;
    inset-inline-end: -190px;
    top: -230px;
    border: 66px solid rgba(255, 255, 255, 0.09);
}

.lp-final-panel::after {
    width: 170px;
    height: 170px;
    inset-inline-start: 45%;
    bottom: -142px;
    border: 44px solid rgba(255, 107, 53, 0.65);
}

.lp-final-copy,
.lp-final-actions {
    position: relative;
    z-index: 1;
}

.lp-final .lp-eyebrow {
    color: white;
}

.lp-final .lp-eyebrow::before {
    background: #ffd0bf;
}

.lp-final h2 {
    max-width: 700px;
    margin: 0;
    color: white;
    font-family: 'Sora', 'Segoe UI', sans-serif;
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.lp-final p {
    max-width: 650px;
    margin: 18px 0 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: 15px;
}

.lp-final-actions {
    min-width: 230px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
}

.lp-final-actions .lp-button {
    background: white;
    color: var(--lp-blue-deep);
    box-shadow: 0 12px 25px rgba(4, 42, 71, 0.2);
}

.lp-final-login {
    color: rgba(255, 255, 255, 0.75);
    font-size: 11px;
    text-align: center;
}

.lp-final-login a {
    color: white;
    font-weight: 800;
}

/* Footer */
.site-footer {
    padding: 70px 0 26px;
    background: #062f52;
    color: white;
}

.lp-footer-grid {
    display: grid;
    grid-template-columns: minmax(260px, 1.4fr) repeat(2, minmax(150px, 0.6fr));
    gap: 70px;
}

.lp-footer-brand img {
    width: 165px;
    filter: drop-shadow(0 5px 12px rgba(0, 0, 0, 0.12));
}

.lp-footer-brand p {
    max-width: 420px;
    margin: 20px 0 0;
    color: rgba(255, 255, 255, 0.64);
    font-size: 13px;
    line-height: 1.75;
}

.lp-footer-group h3 {
    margin: 4px 0 18px;
    color: white;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.lp-footer-group a {
    display: block;
    margin: 11px 0;
    color: rgba(255, 255, 255, 0.66);
    font-size: 13px;
    text-decoration: none;
}

.lp-footer-group a:hover {
    color: white;
}

.lp-footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-top: 55px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.11);
    color: rgba(255, 255, 255, 0.48);
    font-size: 11px;
}

.lp-footer-bottom a {
    color: inherit;
}

/* Voice controls: retain the existing experience, align it to the redesign */
.voice-assistant-btn {
    width: 58px !important;
    height: 58px !important;
    right: 22px !important;
    bottom: 22px !important;
    border: 2px solid rgba(255, 255, 255, 0.72) !important;
    background: var(--lp-orange) !important;
    box-shadow: 0 12px 30px rgba(255, 107, 53, 0.3) !important;
}

[dir='rtl'] .voice-assistant-btn {
    right: auto !important;
    left: 22px !important;
}

.voice-modal-header h2,
.voice-modal-header p {
    font-family: 'Manrope', 'Segoe UI', sans-serif !important;
}

/* Reveal motion */
.lp-reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 650ms ease, transform 650ms ease;
}

.lp-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

[dir='rtl'] .lp-eyebrow {
    letter-spacing: 0;
}

[dir='rtl'] .lp-hero::before {
    background: linear-gradient(270deg, #ffffff 0%, rgba(255, 255, 255, 0.98) 31%, rgba(255, 255, 255, 0.84) 47%, rgba(255, 255, 255, 0.12) 72%, rgba(255, 255, 255, 0) 100%);
}

[dir='rtl'] .lp-hero-media img {
    transform: scaleX(-1);
}

@media (max-width: 1500px) {
    .lp-nav-links {
        display: none;
    }

    .lp-nav-actions {
        margin-inline-start: auto;
    }
}

@media (max-width: 1280px) {
    .lp-process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .lp-process-grid::before {
        display: none;
    }

    .lp-step-card {
        min-height: 270px;
    }
}

@media (max-width: 1120px) {
    .lp-nav-links {
        display: none;
    }

    .lp-nav-actions {
        margin-inline-start: auto;
    }

    .lp-hero-copy {
        width: 60%;
    }

    .lp-hero::before {
        background: linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0.97) 38%, rgba(255, 255, 255, 0.72) 57%, rgba(255, 255, 255, 0.02) 86%);
    }

    [dir='rtl'] .lp-hero::before {
        background: linear-gradient(270deg, #fff 0%, rgba(255, 255, 255, 0.97) 38%, rgba(255, 255, 255, 0.72) 57%, rgba(255, 255, 255, 0.02) 86%);
    }

    .lp-proof-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .lp-proof-item:nth-child(3) {
        border-inline-start: 0;
    }

    .lp-proof-item:nth-child(n + 3) {
        border-top: 1px solid rgba(255, 255, 255, 0.13);
    }

    .lp-system-showcase {
        grid-template-columns: 1fr;
    }
    
    .lp-system-copy {
        max-width: 720px;
    }
    
    .lp-system-console {
        width: 100%;
    }
    
    .lp-tools-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .lp-tool-card {
        min-height: 470px;
    }

    .lp-family-grid {
        gap: 54px;
    }

    .lp-progress-note {
        inset-inline-end: -14px;
    }
}

@media (max-width: 900px) {
    .lp-container {
        width: min(100% - 36px, 760px);
    }

    .lp-nav-button.is-quiet {
        display: none;
    }

    .lp-hero {
        min-height: auto;
        padding: 0;
    }

    .lp-hero::before,
    .lp-hero::after {
        display: none;
    }

    .lp-hero-inner {
        min-height: auto;
        padding: 66px 0 42px;
    }

    .lp-hero-copy {
        width: 100%;
        max-width: 700px;
    }

    .lp-hero-media {
        position: relative;
        height: 420px;
        overflow: hidden;
    }

    .lp-hero-media::before {
        content: '';
        position: absolute;
        z-index: 1;
        inset: 0;
        background: linear-gradient(180deg, white 0%, transparent 16%);
        pointer-events: none;
    }

    .lp-hero-media img {
        object-position: 66% center;
    }

    .lp-proof-grid,
    .lp-process-grid,
    .lp-family-grid,
    .lp-languages-grid,
    .lp-final-panel,
    .lp-footer-grid {
        grid-template-columns: 1fr;
    }

    .lp-proof-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .lp-proof-item {
        grid-template-columns: 1fr;
        align-content: center;
        gap: 10px;
        padding: 24px 18px;
    }

    .lp-proof-mark {
        width: 38px;
        height: 5px;
    }

    .lp-proof-item:nth-child(3) {
        border-inline-start: 0;
    }

    .lp-proof-item:nth-child(n + 3) {
        border-top: 1px solid rgba(255, 255, 255, 0.13);
    }

    .lp-process-grid::before {
        top: 0;
        bottom: 0;
        inset-inline-start: 34px;
        inset-inline-end: auto;
        width: 2px;
        height: auto;
        background: repeating-linear-gradient(180deg, rgba(15, 114, 180, 0.32) 0 7px, transparent 7px 13px);
    }

    .lp-step-card {
        min-height: auto;
        padding: 28px 28px 30px 98px;
    }

    [dir='rtl'] .lp-step-card {
        padding: 28px 98px 30px 28px;
    }

    .lp-step-number {
        position: absolute;
        top: 28px;
        inset-inline-start: 0;
        transform: translateX(-50%);
    }

    [dir='rtl'] .lp-step-number {
        transform: translateX(50%);
    }

    .lp-step-card h3 {
        margin-top: 4px;
    }

    .lp-family-grid {
        gap: 72px;
    }

    .lp-family-media {
        max-width: 680px;
    }

    .lp-languages-grid {
        gap: 45px;
    }

    .lp-final-panel {
        gap: 34px;
    }

    .lp-final-actions {
        width: min(100%, 330px);
    }

    .lp-footer-grid {
        gap: 38px;
    }

    .lp-footer-group {
        display: none;
    }
}

@media (max-width: 680px) {
    .site-header {
        height: 70px;
    }

    .lp-nav {
        min-height: 70px;
        gap: 10px;
    }

    .lp-brand img {
        width: 126px;
    }

    .lp-emblem,
    .lp-nav-button.is-blue,
    .site-header .lang-dd-caret {
        display: none !important;
    }

    .site-header .lang-dd-btn {
        width: 56px;
        justify-content: center;
        padding: 7px;
    }

    .site-header .lang-dd-btn .lang-dd-flag {
        display: none;
    }

    .site-header .lang-dd-label {
        display: block !important;
        font-size: 0;
    }

    .site-header .lang-dd-label::after {
        content: attr(data-short);
        font-size: 11px;
        font-weight: 800;
    }

    .site-header .lang-dd-list {
        min-width: 170px;
    }

    .lp-nav-actions {
        gap: 7px;
    }

    .lp-nav-button {
        min-height: 41px;
        padding: 9px 13px;
        font-size: 12px;
    }

    .lp-hero-inner {
        padding-top: 50px;
    }

    .lp-hero h1 {
        font-size: clamp(39px, 12vw, 57px);
    }

    .lp-hero-lede {
        font-size: 16px;
    }

    .lp-hero-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .lp-button {
        width: 100%;
    }

    .lp-solution-path {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .lp-path-step:not(:last-child)::after {
        display: none;
    }

    .lp-downloads {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .lp-download {
        justify-content: center;
    }

    .lp-hero-media {
        height: 310px;
    }

    .lp-proof-grid {
        grid-template-columns: 1fr;
        padding-block: 8px;
    }

    .lp-proof-item {
        min-height: 102px;
        grid-template-columns: auto 1fr;
        padding: 18px 6px;
    }

    .lp-proof-item + .lp-proof-item {
        border-inline-start: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.13);
    }

    .lp-proof-mark {
        width: 7px;
        height: 42px;
    }

    .lp-process,
    .lp-tools,
    .lp-family,
    .lp-languages,
    .lp-final {
        padding-block: 82px;
    }

    .lp-section-heading {
        font-size: 36px;
    }

    .lp-section-lede {
        font-size: 16px;
    }

    .lp-process-grid {
        margin-inline-start: 34px;
    }

    [dir='rtl'] .lp-process-grid {
        margin-inline-start: 0;
        margin-inline-end: 34px;
    }

    .lp-step-card {
        padding: 92px 24px 27px;
    }

    [dir='rtl'] .lp-step-card {
        padding: 92px 24px 27px;
    }

    .lp-step-number {
        top: 22px;
        inset-inline-start: 34px;
    }

    .lp-tools-grid {
        grid-template-columns: 1fr;
    }

    .lp-tool-card {
        min-height: auto;
    }

    .lp-family-image {
        border-radius: 24px 24px 80px 24px;
    }

    .lp-system-showcase {
        margin-top: 38px;
        padding: 22px;
        border-radius: 24px;
    }

    .lp-system-chips {
        flex-wrap: wrap;
    }

    .lp-system-console {
        padding: 14px;
        border-radius: 19px;
    }

    .lp-console-grid {
        grid-template-columns: 1fr;
    }

    .lp-console-assessment {
        grid-row: auto;
    }

    .lp-mini-map {
        flex-wrap: wrap;
    }


    .lp-family-image img {
        min-height: 390px;
    }

    .lp-progress-note {
        inset-inline-end: 12px;
        bottom: -36px;
    }

    .lp-family-copy {
        margin-top: 22px;
    }

    .lp-language-stack {
        gap: 9px;
    }

    .lp-language-card {
        min-height: 100px;
        gap: 10px;
        padding: 13px;
        border-radius: 17px;
    }

    .lp-language-flag {
        width: 38px;
        height: 27px;
    }

    .lp-language-name {
        font-size: 14px;
    }

    .lp-language-note {
        display: none;
    }

    .lp-final-panel {
        padding: 42px 26px;
        border-radius: 24px;
    }

    .lp-footer-bottom {
        flex-direction: column;
        gap: 10px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }

    .lp-reveal {
        opacity: 1;
        transform: none;
    }
}
