:root {
    --landing-ink: #071226;
    --landing-ink-soft: #10213f;
    --landing-blue: #3b82f6;
    --landing-blue-bright: #62a2ff;
    --landing-cyan: #49d3ff;
    --landing-lime: #b7f34a;
    --landing-violet: #8b7cff;
    --landing-green: #22c780;
    --landing-paper: #f6f8fc;
    --landing-card: #ffffff;
    --landing-text: #14213a;
    --landing-muted: #60708b;
    --landing-border: #dce4f0;
    --landing-shadow: 0 24px 70px rgba(7, 18, 38, 0.12);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.landing-page {
    margin: 0;
    min-width: 320px;
    color: var(--landing-text);
    background: var(--landing-paper);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.landing-visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.landing-transition {
    display: none;
}

body.landing-page.is-leaving .landing-transition {
    display: none;
}

body.menu-open {
    overflow: hidden;
}

img,
svg {
    display: block;
}

a,
button,
summary {
    -webkit-tap-highlight-color: transparent;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
    outline: 3px solid var(--landing-lime);
    outline-offset: 4px;
}

.skip-link {
    position: fixed;
    z-index: 1000;
    top: 10px;
    left: 12px;
    padding: 10px 14px;
    color: var(--landing-ink);
    background: #ffffff;
    border-radius: 9px;
    font-weight: 800;
    transform: translateY(-150%);
    transition: transform 160ms ease;
}

.skip-link:focus {
    transform: translateY(0);
}

.landing-container {
    width: min(1180px, calc(100% - 48px));
    margin-inline: auto;
}

.landing-header {
    position: absolute;
    z-index: 30;
    inset: 0 0 auto;
    color: #ffffff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.landing-header::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -1px;
    left: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--landing-lime), var(--landing-cyan));
    transform: scaleX(var(--landing-scroll-progress, 0));
    transform-origin: left center;
    transition: transform 90ms linear;
}

.landing-header.is-scrolled {
    position: fixed;
    background: rgba(7, 18, 38, 0.94);
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.landing-nav-wrap {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.landing-brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    color: inherit;
    text-decoration: none;
    font-size: 1.08rem;
    font-weight: 900;
    letter-spacing: -0.02em;
}

.landing-brand-mark {
    width: 35px;
    height: 35px;
    display: grid;
    place-items: center;
    overflow: hidden;
    border-radius: 10px;
    background: transparent;
    box-shadow: none;
}

.landing-brand-mark img {
    width: 35px;
    height: 35px;
    object-fit: contain;
}

.landing-navigation {
    display: flex;
    align-items: center;
    gap: 28px;
}

.landing-navigation a {
    color: rgba(255, 255, 255, 0.74);
    text-decoration: none;
    font-size: 0.91rem;
    font-weight: 680;
    transition: color 150ms ease;
}

.landing-navigation a:hover {
    color: #ffffff;
}

.landing-navigation .landing-login {
    color: #ffffff;
}

.landing-navigation .landing-nav-cta {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 17px;
    color: var(--landing-ink);
    background: var(--landing-lime);
    border-radius: 10px;
    font-weight: 900;
}

.landing-navigation .landing-nav-cta:hover {
    color: var(--landing-ink);
    background: #c9ff68;
}

.landing-menu-button {
    width: 44px;
    height: 44px;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 11px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.07);
    cursor: pointer;
}

.landing-menu-button span {
    width: 19px;
    height: 2px;
    display: block;
    border-radius: 999px;
    background: currentColor;
    transition: transform 160ms ease, opacity 160ms ease;
}

.landing-menu-button[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.landing-menu-button[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.landing-menu-button[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.landing-hero {
    position: relative;
    min-height: 790px;
    display: flex;
    align-items: center;
    padding: 140px 0 88px;
    overflow: hidden;
    color: #ffffff;
    background:
        radial-gradient(circle at 73% 32%, rgba(73, 211, 255, 0.16), transparent 29%),
        radial-gradient(circle at 25% 95%, rgba(59, 130, 246, 0.18), transparent 34%),
        linear-gradient(145deg, #071226 0%, #0a1933 54%, #07142a 100%);
}

.landing-hero::after {
    content: "";
    position: absolute;
    right: -150px;
    bottom: -320px;
    width: 700px;
    height: 700px;
    border: 1px solid rgba(98, 162, 255, 0.12);
    border-radius: 50%;
    box-shadow: 0 0 0 110px rgba(98, 162, 255, 0.025), 0 0 0 220px rgba(98, 162, 255, 0.018);
}

.landing-grid-lines {
    position: absolute;
    inset: 0;
    opacity: 0.13;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(to bottom, black, transparent 82%);
}

.landing-hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(500px, 1.08fr);
    align-items: center;
    gap: clamp(48px, 6vw, 84px);
}

.landing-eyebrow,
.landing-kicker {
    margin: 0 0 20px;
    color: var(--landing-blue-bright);
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.landing-eyebrow {
    display: flex;
    align-items: center;
    gap: 9px;
    color: var(--landing-lime);
}

.landing-eyebrow .landing-eyebrow-dot {
    width: 7px;
    height: 7px;
    flex: 0 0 7px;
    border-radius: 50%;
    background: currentColor;
    box-shadow: 0 0 0 5px rgba(183, 243, 74, 0.13);
}

.landing-hero h1,
.landing-section-heading h2,
.landing-system-copy h2,
.landing-format-copy h2,
.landing-faq-grid h2,
.landing-final-card h2 {
    text-wrap: balance;
}

.landing-hero h1 {
    margin: 0;
    max-width: 690px;
    font-size: clamp(3rem, 5.6vw, 5.35rem);
    line-height: 0.98;
    letter-spacing: -0.065em;
}

.landing-hero h1 em,
.landing-section-heading h2 em {
    color: var(--landing-blue-bright);
    font-style: normal;
}

.landing-hero-lead {
    max-width: 640px;
    margin: 28px 0 0;
    color: rgba(231, 239, 255, 0.74);
    font-size: clamp(1.03rem, 1.5vw, 1.17rem);
    line-height: 1.74;
}

.landing-hero-actions {
    margin-top: 34px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.landing-button {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    padding: 13px 20px;
    border: 1px solid transparent;
    border-radius: 12px;
    text-decoration: none;
    font-size: 0.94rem;
    font-weight: 900;
    transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.landing-button:hover {
    transform: translateY(-2px);
}

.landing-button > span,
.landing-session-button > span,
.landing-text-link > span,
.landing-countdown-action a > span {
    display: inline-block;
    transition: transform 180ms ease;
}

.landing-button:hover > span,
.landing-session-button:hover > span,
.landing-text-link:hover > span,
.landing-countdown-action a:hover > span {
    transform: translateX(4px);
}

.landing-button-primary {
    color: var(--landing-ink);
    background: var(--landing-lime);
    box-shadow: 0 14px 35px rgba(183, 243, 74, 0.18);
}

.landing-button-primary:hover {
    background: #c9ff68;
    box-shadow: 0 17px 42px rgba(183, 243, 74, 0.24);
}

.landing-button-secondary {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.055);
}

.landing-button-secondary:hover {
    border-color: rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.1);
}

.landing-trust-list {
    margin: 26px 0 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
    color: rgba(220, 231, 249, 0.68);
    list-style: none;
    font-size: 0.83rem;
    font-weight: 650;
}

.landing-trust-list li {
    display: flex;
    align-items: center;
    gap: 7px;
}

.landing-trust-list span {
    color: var(--landing-lime);
    font-weight: 900;
}

.landing-product-stage {
    position: relative;
    min-height: 545px;
    display: grid;
    place-items: center;
}

.landing-orbit {
    position: absolute;
    border: 1px solid rgba(98, 162, 255, 0.17);
    border-radius: 50%;
}

.landing-orbit-one {
    width: 470px;
    height: 470px;
}

.landing-orbit-two {
    width: 585px;
    height: 585px;
    border-style: dashed;
}

.landing-product-card {
    position: relative;
    z-index: 3;
    width: min(100%, 490px);
    padding: 24px;
    color: var(--landing-text);
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 34px 100px rgba(0, 0, 0, 0.34);
    transform: rotate(1.2deg);
}

.landing-product-header {
    display: flex;
    justify-content: space-between;
    gap: 18px;
}

.landing-product-header > div {
    display: grid;
    gap: 6px;
}

.landing-product-label {
    color: #7b8aa4;
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.landing-product-header strong {
    font-size: 1.15rem;
}

.landing-live-pill {
    height: 29px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 5px 9px;
    color: #0a6844;
    background: #dcfced;
    border-radius: 999px;
    font-size: 0.68rem;
    font-weight: 900;
}

.landing-live-pill i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--landing-green);
}

.landing-score-row {
    margin-top: 22px;
    padding: 19px;
    display: flex;
    align-items: center;
    gap: 25px;
    border: 1px solid #e4eaf3;
    border-radius: 18px;
    background: #f8faff;
}

.landing-score-ring {
    width: 106px;
    height: 106px;
    display: grid;
    place-content: center;
    text-align: center;
    border-radius: 50%;
    background: radial-gradient(circle at center, #ffffff 59%, transparent 60%), conic-gradient(var(--landing-blue) 0 78%, #dce6f5 78% 100%);
    box-shadow: inset 0 0 0 1px rgba(37, 99, 235, 0.08);
}

.landing-score-ring span {
    font-size: 1.55rem;
    font-weight: 950;
    letter-spacing: -0.05em;
}

.landing-score-ring small,
.landing-score-gap span,
.landing-score-gap small {
    color: #7a8aa4;
    font-size: 0.68rem;
    font-weight: 700;
}

.landing-score-gap {
    display: grid;
    gap: 3px;
}

.landing-score-gap strong {
    color: #1d4ed8;
    font-size: 2.15rem;
    line-height: 1;
    letter-spacing: -0.06em;
}

.landing-recovery-list {
    margin-top: 14px;
    display: grid;
    gap: 8px;
}

.landing-recovery-list > div {
    min-height: 66px;
    display: grid;
    grid-template-columns: 32px minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px;
    padding: 11px 13px;
    border: 1px solid #e5eaf2;
    border-radius: 13px;
}

.landing-skill-index {
    color: #8a99b0;
    font-size: 0.72rem;
    font-weight: 900;
}

.landing-recovery-list p {
    margin: 0;
    display: grid;
    gap: 3px;
}

.landing-recovery-list strong {
    font-size: 0.87rem;
}

.landing-recovery-list small {
    color: #7d8ba0;
    font-size: 0.69rem;
}

.landing-recovery-list b {
    color: #1d4ed8;
    font-size: 0.8rem;
}

.landing-session-button {
    min-height: 45px;
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #ffffff;
    background: var(--landing-ink);
    border-radius: 11px;
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 900;
}

.landing-floating-note {
    position: absolute;
    z-index: 4;
    min-width: 130px;
    padding: 14px 16px;
    display: grid;
    gap: 5px;
    border: 1px solid rgba(255, 255, 255, 0.32);
    border-radius: 15px;
    color: #ffffff;
    background: rgba(12, 31, 61, 0.86);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.26);
}

.landing-floating-note span {
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.68rem;
    font-weight: 750;
}

.landing-floating-note strong {
    font-size: 0.87rem;
}

.landing-note-left {
    left: 0;
    bottom: 65px;
}

.landing-note-right {
    top: 82px;
    right: -10px;
}

.landing-countdown-section {
    position: relative;
    z-index: 7;
    scroll-margin-top: 76px;
    padding: 26px 0;
    color: #ffffff;
    background: #0b1b36;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.landing-countdown-card {
    min-height: 116px;
    padding: 18px 22px;
    display: grid;
    grid-template-columns: minmax(190px, 0.8fr) minmax(420px, 1.5fr) minmax(180px, 0.7fr);
    align-items: center;
    gap: clamp(22px, 4vw, 56px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    background: linear-gradient(115deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035));
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.16);
}

.landing-countdown-intro {
    display: grid;
    gap: 5px;
}

.landing-countdown-intro > span {
    color: var(--landing-lime);
    font-size: 0.67rem;
    font-weight: 900;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.landing-countdown-intro strong {
    font-size: 1.12rem;
    letter-spacing: -0.02em;
}

.landing-countdown-intro a {
    width: fit-content;
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.7rem;
    font-weight: 700;
    text-decoration: none;
}

.landing-countdown-intro a:hover {
    color: #ffffff;
}

.landing-countdown {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 9px;
}

.landing-countdown > div {
    min-height: 76px;
    padding: 11px 8px;
    display: grid;
    place-content: center;
    gap: 3px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 13px;
    background: rgba(5, 15, 31, 0.38);
}

.landing-countdown strong {
    color: #ffffff;
    font-variant-numeric: tabular-nums;
    font-size: clamp(1.35rem, 2.3vw, 1.9rem);
    line-height: 1;
    letter-spacing: -0.04em;
}

.landing-countdown span {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.6rem;
    font-weight: 800;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.landing-countdown-action {
    display: grid;
    justify-items: end;
    gap: 8px;
    text-align: right;
}

.landing-countdown-action strong {
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.84rem;
}

.landing-countdown-action a {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--landing-lime);
    font-size: 0.78rem;
    font-weight: 900;
    text-decoration: none;
}

.landing-proof {
    position: relative;
    z-index: 5;
    color: #ffffff;
    background: #0b1b36;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.landing-proof-grid {
    min-height: 132px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.landing-proof-grid > div {
    padding: 26px 30px;
    display: grid;
    align-content: center;
    gap: 3px;
    border-right: 1px solid rgba(255, 255, 255, 0.09);
}

.landing-proof-grid > div:first-child {
    border-left: 1px solid rgba(255, 255, 255, 0.09);
}

.landing-proof-grid strong {
    color: var(--landing-lime);
    font-size: clamp(1.8rem, 3vw, 2.45rem);
    line-height: 1;
    letter-spacing: -0.05em;
}

.landing-proof-grid span {
    color: rgba(231, 239, 255, 0.62);
    font-size: 0.76rem;
    font-weight: 650;
}

.landing-section {
    padding: clamp(88px, 10vw, 144px) 0;
}

.landing-difference {
    background: #ffffff;
}

.landing-section-heading {
    max-width: 790px;
}

.landing-section-heading h2,
.landing-system-copy h2,
.landing-format-copy h2,
.landing-faq-grid h2,
.landing-final-card h2 {
    margin: 0;
    color: var(--landing-ink);
    font-size: clamp(2.25rem, 4.6vw, 4.15rem);
    line-height: 1.05;
    letter-spacing: -0.055em;
}

.landing-section-heading > p:last-child,
.landing-system-copy > p,
.landing-faq-grid > div:first-child > p:last-child {
    max-width: 670px;
    margin: 25px 0 0;
    color: var(--landing-muted);
    font-size: 1.04rem;
    line-height: 1.75;
}

.landing-process-grid {
    margin-top: 64px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.landing-process-grid article {
    position: relative;
    min-height: 280px;
    padding: 31px;
    overflow: hidden;
    border: 1px solid var(--landing-border);
    border-radius: 20px;
    background: #ffffff;
    transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.landing-process-grid article:hover {
    transform: translateY(-5px);
    border-color: #b9c9df;
    box-shadow: var(--landing-shadow);
}

.landing-process-number {
    position: absolute;
    top: 20px;
    right: 22px;
    color: #dbe3ef;
    font-size: 2.5rem;
    font-weight: 950;
    letter-spacing: -0.08em;
}

.landing-process-icon {
    width: 55px;
    height: 55px;
    display: grid;
    place-items: center;
    color: #1d4ed8;
    border-radius: 15px;
    background: #eaf2ff;
}

.landing-process-icon svg {
    width: 25px;
    height: 25px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.landing-process-grid h3 {
    margin: 58px 0 10px;
    color: var(--landing-ink);
    font-size: 1.5rem;
    letter-spacing: -0.03em;
}

.landing-process-grid p {
    margin: 0;
    color: var(--landing-muted);
    line-height: 1.7;
}

.landing-system-section {
    color: #ffffff;
    background: var(--landing-ink);
}

.landing-system-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(520px, 1.2fr);
    gap: clamp(58px, 8vw, 105px);
    align-items: center;
}

.landing-system-copy h2 {
    color: #ffffff;
}

.landing-system-copy > p {
    color: rgba(225, 235, 250, 0.65);
}

.motion-ready .landing-reveal {
    opacity: 0;
    transform: translateY(28px);
    transition:
        opacity 440ms cubic-bezier(0.22, 1, 0.36, 1),
        transform 440ms cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--landing-reveal-delay, 0ms);
}

.motion-ready .landing-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.motion-ready .landing-hero-copy > *,
.motion-ready .landing-product-stage {
    opacity: 0;
    transform: translateY(22px);
}

.motion-ready.is-loaded .landing-hero-copy > *,
.motion-ready.is-loaded .landing-product-stage {
    animation: landing-enter 480ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.motion-ready.is-loaded .landing-hero-copy > :nth-child(1) { animation-delay: 20ms; }
.motion-ready.is-loaded .landing-hero-copy > :nth-child(2) { animation-delay: 60ms; }
.motion-ready.is-loaded .landing-hero-copy > :nth-child(3) { animation-delay: 100ms; }
.motion-ready.is-loaded .landing-hero-copy > :nth-child(4) { animation-delay: 140ms; }
.motion-ready.is-loaded .landing-hero-copy > :nth-child(5) { animation-delay: 180ms; }
.motion-ready.is-loaded .landing-product-stage { animation-delay: 90ms; }

@keyframes landing-enter {
    from {
        opacity: 0;
        transform: translateY(22px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.landing-text-link {
    margin-top: 28px;
    display: inline-flex;
    gap: 9px;
    color: var(--landing-lime);
    text-decoration: none;
    font-weight: 900;
}

.landing-text-link:hover {
    text-decoration: underline;
    text-underline-offset: 5px;
}

.landing-feature-stack {
    display: grid;
    gap: 12px;
}

.landing-feature-stack article {
    min-height: 116px;
    padding: 22px;
    display: grid;
    grid-template-columns: 78px minmax(0, 1fr);
    gap: 20px;
    align-items: start;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 17px;
    background: rgba(255, 255, 255, 0.055);
}

.landing-feature-tag {
    width: 70px;
    padding: 6px 7px;
    color: #0c6044;
    background: #bff6de;
    border-radius: 999px;
    text-align: center;
    font-size: 0.63rem;
    font-weight: 950;
    letter-spacing: 0.07em;
}

.landing-feature-tag-blue {
    color: #1646a3;
    background: #bcd5ff;
}

.landing-feature-tag-violet {
    color: #4430a4;
    background: #d6d0ff;
}

.landing-feature-tag-green {
    color: #096542;
    background: #b9f3d7;
}

.landing-feature-stack h3 {
    margin: 0 0 7px;
    font-size: 1.05rem;
}

.landing-feature-stack p {
    margin: 0;
    color: rgba(225, 235, 250, 0.62);
    font-size: 0.89rem;
    line-height: 1.58;
}

.landing-format-section {
    background: #eef3fa;
}

.landing-format-grid {
    display: grid;
    grid-template-columns: minmax(430px, 0.9fr) minmax(0, 1.1fr);
    align-items: center;
    gap: clamp(58px, 8vw, 100px);
}

.landing-format-visual {
    padding: clamp(24px, 4vw, 44px);
    border: 1px solid #d9e2ef;
    border-radius: 28px;
    background: #ffffff;
    box-shadow: var(--landing-shadow);
}

.landing-module-map {
    padding: 24px;
    border-radius: 20px;
    color: #ffffff;
    background: var(--landing-ink);
}

.landing-map-title,
.landing-map-section > div {
    display: flex;
    justify-content: space-between;
    gap: 12px;
}

.landing-map-title {
    padding-bottom: 21px;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.landing-map-title span {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.76rem;
    font-weight: 750;
}

.landing-map-title b {
    color: var(--landing-lime);
    font-size: 0.78rem;
}

.landing-map-section {
    padding: 25px 0;
}

.landing-map-section > span {
    display: block;
    margin-bottom: 13px;
    font-size: 0.86rem;
    font-weight: 850;
}

.landing-map-section > div {
    height: 40px;
}

.landing-map-section i {
    width: var(--module-width);
    height: 100%;
    display: block;
    border-radius: 8px;
    background: linear-gradient(90deg, var(--landing-blue), var(--landing-cyan));
}

.landing-map-math i {
    background: linear-gradient(90deg, #735eff, #a492ff);
}

.landing-map-section small {
    margin-top: 11px;
    display: block;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.7rem;
}

.landing-map-section small b {
    color: #ffffff;
}

.landing-map-break {
    padding: 8px 10px;
    color: #728099;
    background: #ffffff;
    border-radius: 8px;
    text-align: center;
    font-size: 0.68rem;
    font-weight: 850;
}

.landing-format-copy ul {
    margin: 34px 0 0;
    padding: 0;
    display: grid;
    gap: 20px;
    list-style: none;
}

.landing-format-copy li {
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 16px;
}

.landing-format-copy li > span {
    color: #9aa9bd;
    font-size: 0.71rem;
    font-weight: 900;
}

.landing-format-copy li p {
    margin: 0;
    display: grid;
    gap: 5px;
}

.landing-format-copy li strong {
    color: var(--landing-ink);
}

.landing-format-copy li small {
    color: var(--landing-muted);
    font-size: 0.88rem;
    line-height: 1.55;
}

.landing-disclaimer {
    margin: 27px 0 0;
    padding-top: 20px;
    color: #7a899f;
    border-top: 1px solid #d8e0eb;
    font-size: 0.75rem;
}

.landing-faq-section {
    background: #ffffff;
}

.landing-faq-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(520px, 1.2fr);
    gap: clamp(58px, 8vw, 100px);
}

.landing-faq-list {
    border-top: 1px solid var(--landing-border);
}

.landing-faq-list details {
    border-bottom: 1px solid var(--landing-border);
}

.landing-faq-list summary {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    color: var(--landing-ink);
    cursor: pointer;
    list-style: none;
    font-weight: 850;
}

.landing-faq-list summary::-webkit-details-marker {
    display: none;
}

.landing-faq-list summary span {
    color: #7b8ba2;
    font-size: 1.4rem;
    font-weight: 400;
    transition: transform 160ms ease;
}

.landing-faq-list details[open] summary span {
    transform: rotate(45deg);
}

.landing-faq-list details p {
    margin: -5px 42px 24px 0;
    color: var(--landing-muted);
    font-size: 0.91rem;
    line-height: 1.7;
}

.landing-final-cta {
    padding: 0 0 104px;
    background: #ffffff;
}

.landing-final-card {
    padding: clamp(38px, 6vw, 70px);
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(330px, 0.85fr);
    align-items: end;
    gap: 60px;
    color: #ffffff;
    border-radius: 28px;
    background:
        radial-gradient(circle at 80% 20%, rgba(73, 211, 255, 0.18), transparent 30%),
        var(--landing-ink);
}

.landing-final-card h2 {
    color: #ffffff;
}

.landing-final-card > div:last-child > p {
    margin: 0 0 23px;
    color: rgba(225, 235, 250, 0.68);
    line-height: 1.7;
}

.landing-button-light {
    color: var(--landing-ink);
    background: #ffffff;
}

.landing-button-light:hover {
    background: var(--landing-lime);
}

.landing-footer {
    padding: 70px 0 28px;
    color: rgba(225, 235, 250, 0.68);
    background: #06101f;
}

.landing-footer-grid {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 50px;
}

.landing-footer-brand {
    color: #ffffff;
}

.landing-footer-grid > div > p {
    margin: 15px 0 0;
    font-size: 0.86rem;
}

.landing-footer nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 15px 28px;
}

.landing-footer nav a {
    color: rgba(225, 235, 250, 0.65);
    text-decoration: none;
    font-size: 0.83rem;
    font-weight: 700;
}

.landing-footer nav a:hover {
    color: #ffffff;
}

.landing-footer-bottom {
    margin-top: 52px;
    padding-top: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.landing-footer-bottom p {
    margin: 0;
    font-size: 0.7rem;
}

@media (max-width: 1080px) {
    .landing-navigation {
        gap: 19px;
    }

    .landing-hero {
        padding-top: 134px;
    }

    .landing-hero-grid {
        grid-template-columns: 1fr;
    }

    .landing-hero-copy {
        max-width: 760px;
    }

    .landing-product-stage {
        width: min(100%, 680px);
        margin-inline: auto;
    }

    .landing-countdown-card {
        grid-template-columns: minmax(180px, 0.65fr) minmax(400px, 1.35fr);
    }

    .landing-countdown-action {
        grid-column: 1 / -1;
        grid-template-columns: 1fr auto;
        justify-items: stretch;
        text-align: left;
    }

    .landing-system-grid,
    .landing-format-grid,
    .landing-faq-grid {
        grid-template-columns: 1fr;
    }

    .landing-system-copy,
    .landing-format-copy,
    .landing-faq-grid > div:first-child {
        max-width: 760px;
    }

    .landing-format-visual {
        width: min(100%, 660px);
    }
}

@media (max-width: 820px) {
    .landing-container {
        width: min(100% - 32px, 1180px);
    }

    .landing-header,
    .landing-header.is-scrolled {
        position: fixed;
        background: rgba(7, 18, 38, 0.96);
    }

    .landing-nav-wrap {
        min-height: 68px;
    }

    .landing-menu-button {
        display: flex;
    }

    .landing-navigation {
        position: fixed;
        z-index: 40;
        inset: 68px 0 auto;
        max-height: calc(100dvh - 68px);
        padding: 20px 16px 28px;
        display: grid;
        align-items: stretch;
        gap: 4px;
        overflow-y: auto;
        border-top: 1px solid rgba(255, 255, 255, 0.09);
        background: #071226;
        box-shadow: 0 28px 50px rgba(0, 0, 0, 0.32);
        transform: translateY(-120%);
        opacity: 0;
        pointer-events: none;
        transition: transform 180ms ease, opacity 180ms ease;
    }

    .landing-navigation.is-open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .landing-navigation a {
        min-height: 48px;
        padding: 12px 10px;
        display: flex;
        align-items: center;
        color: rgba(255, 255, 255, 0.82);
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .landing-navigation .landing-nav-cta {
        margin-top: 10px;
        justify-content: center;
        color: var(--landing-ink);
        border-bottom: 0;
    }

    .landing-hero {
        min-height: auto;
        padding: 126px 0 80px;
    }

    .landing-product-stage {
        min-height: 510px;
    }

    .landing-countdown-card {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .landing-countdown-intro {
        grid-template-columns: 1fr auto;
        align-items: center;
    }

    .landing-countdown-intro > span {
        grid-column: 1 / -1;
    }

    .landing-countdown-intro a {
        justify-self: end;
    }

    .landing-countdown-action {
        grid-column: auto;
    }

    .landing-orbit-two {
        width: 520px;
        height: 520px;
    }

    .landing-proof-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .landing-proof-grid > div,
    .landing-proof-grid > div:first-child {
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-width: 0 1px 1px 0;
    }

    .landing-process-grid {
        grid-template-columns: 1fr;
    }

    .landing-process-grid article {
        min-height: 250px;
    }

    .landing-process-grid h3 {
        margin-top: 50px;
    }

    .landing-final-card {
        grid-template-columns: 1fr;
        align-items: start;
        gap: 30px;
    }

    .landing-footer-grid,
    .landing-footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .landing-footer nav {
        justify-content: flex-start;
    }
}

@media (max-width: 560px) {
    .landing-container {
        width: min(100% - 24px, 1180px);
    }

    .landing-hero h1 {
        font-size: clamp(2.65rem, 13.5vw, 4rem);
    }

    .landing-hero-lead {
        font-size: 0.98rem;
    }

    .landing-hero-actions,
    .landing-hero-actions .landing-button {
        width: 100%;
    }

    .landing-trust-list {
        display: grid;
    }

    .landing-countdown-section {
        padding: 18px 0;
    }

    .landing-countdown-card {
        padding: 17px;
        border-radius: 17px;
    }

    .landing-countdown {
        gap: 6px;
    }

    .landing-countdown > div {
        min-height: 67px;
        padding-inline: 4px;
        border-radius: 11px;
    }

    .landing-countdown strong {
        font-size: 1.35rem;
    }

    .landing-countdown-action {
        grid-template-columns: 1fr auto;
        align-items: center;
    }

    .landing-product-stage {
        min-height: 500px;
        margin-top: 6px;
    }

    .landing-product-card {
        padding: 17px;
        border-radius: 20px;
        transform: none;
    }

    .landing-orbit-one {
        width: 390px;
        height: 390px;
    }

    .landing-orbit-two {
        width: 480px;
        height: 480px;
    }

    .landing-score-row {
        gap: 16px;
        padding: 14px;
    }

    .landing-score-ring {
        width: 86px;
        height: 86px;
    }

    .landing-floating-note {
        display: none;
    }

    .landing-proof-grid > div {
        padding: 22px 16px;
    }

    .landing-section {
        padding: 80px 0;
    }

    .landing-section-heading h2,
    .landing-system-copy h2,
    .landing-format-copy h2,
    .landing-faq-grid h2,
    .landing-final-card h2 {
        font-size: clamp(2.08rem, 11vw, 3.2rem);
    }

    .landing-process-grid {
        margin-top: 42px;
    }

    .landing-process-grid article {
        padding: 25px;
    }

    .landing-feature-stack article {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .landing-format-visual {
        padding: 12px;
        border-radius: 20px;
    }

    .landing-module-map {
        padding: 18px;
    }

    .landing-map-section > div {
        height: 32px;
    }

    .landing-faq-list summary {
        min-height: 70px;
        font-size: 0.92rem;
    }

    .landing-final-cta {
        padding-bottom: 72px;
    }

    .landing-final-card {
        width: calc(100% - 24px);
        border-radius: 22px;
    }
}

@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;
    }

    .landing-reveal,
    .landing-hero-copy > *,
    .landing-product-stage {
        opacity: 1 !important;
        transform: none !important;
    }
}

.error-page {
    min-height: 100vh;
    color: #ffffff;
    background:
        radial-gradient(circle at 75% 20%, rgba(73, 211, 255, 0.15), transparent 28%),
        #071226;
}

.error-shell {
    width: min(940px, calc(100% - 32px));
    min-height: 100vh;
    margin-inline: auto;
    padding: 36px 0 60px;
    display: grid;
    align-content: space-between;
    gap: 70px;
}

.error-brand {
    color: #ffffff;
}

.error-card {
    max-width: 760px;
    padding-bottom: 10vh;
}

.error-card h1 {
    margin: 0;
    font-size: clamp(3.2rem, 9vw, 7rem);
    line-height: 0.94;
    letter-spacing: -0.07em;
}

.error-card > p:not(.landing-eyebrow) {
    max-width: 560px;
    margin: 25px 0 0;
    color: rgba(231, 239, 255, 0.7);
    font-size: 1.05rem;
    line-height: 1.7;
}
