/* Front-page landing styles (scoped to body.landing-page). */
body.landing-page {
    --landing-bg: #060810;
    --landing-card: #0c0f1d;
    --landing-card-2: #0f1424;
    --landing-text: #e2e8f0;
    --landing-muted: #94a3b8;
    --landing-border: #1e2540;
    --landing-accent: #22d3ee;
    --landing-accent-2: #7c3aed;
    --landing-accent-3: #f59e0b;
    --landing-gradient: linear-gradient(135deg, #22d3ee, #7c3aed);
    background: var(--landing-bg);
    color: var(--landing-text);
}

body.landing-page .landing-wrap {
    width: min(1200px, 100% - 56px);
    margin: 0 auto;
}

body.landing-page .landing-content {
    width: 100%;
    padding: 0;
}

body.landing-page .landing-header {
    position: fixed;
    top: var(--aihub-admin-offset);
    left: 0;
    right: 0;
    z-index: 120;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(18px);
    background: rgba(6, 8, 16, 0.76);
}

body.landing-page .landing-nav {
    min-height: 74px;
    display: flex;
    align-items: center;
    gap: 16px;
}

body.landing-page .landing-logo {
    font-weight: 700;
    text-decoration: none;
    color: var(--landing-text);
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

body.landing-page .landing-nav__desktop {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 24px;
}

body.landing-page .landing-nav__desktop a {
    color: var(--landing-muted);
    text-decoration: none;
    font-size: 0.95rem;
}

body.landing-page .landing-nav__desktop a:hover {
    color: var(--landing-text);
}

body.landing-page .landing-nav__actions {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: auto;
}

body.landing-page .landing-nav__lang {
    display: inline-flex;
    align-items: center;
}

body.landing-page .landing-nav__lang .aihub-lang-switcher {
    display: inline-flex;
}

body.landing-page .landing-nav__lang .aihub-lang-switcher__toggle {
    min-height: 40px;
    padding: 0 12px;
}

body.landing-page .landing-nav__lang .aihub-lang-switcher__menu {
    right: 0;
    left: auto;
}

body.landing-page .landing-nav__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border: 1px solid transparent;
    border-radius: 10px;
    padding: 0.5rem 0.95rem;
    min-height: 40px;
    font-weight: 600;
    color: #fff;
    background: var(--landing-gradient);
}

body.landing-page .landing-nav__cta:hover {
    opacity: 0.88;
}

body.landing-page .landing-nav__toggle {
    display: none;
    border: 1px solid var(--landing-border);
    background: var(--landing-card);
    color: var(--landing-text);
    border-radius: 10px;
    width: 44px;
    height: 44px;
    padding: 0;
    cursor: pointer;
    flex: 0 0 44px;
    align-content: center;
    justify-content: center;
    justify-items: center;
    grid-template-columns: repeat(2, 6px);
    grid-template-rows: repeat(2, 6px);
    gap: 5px;
    transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

body.landing-page .landing-nav__toggle span {
    width: 6px;
    height: 6px;
    display: block;
    border-radius: 999px;
    background: currentColor;
}

body.landing-page .landing-nav__toggle:hover {
    border-color: rgba(34, 211, 238, 0.6);
    background: rgba(15, 20, 36, 0.9);
}

body.landing-page .landing-nav__toggle:focus-visible {
    outline: none;
    border-color: rgba(34, 211, 238, 0.85);
    box-shadow: 0 0 0 2px rgba(34, 211, 238, 0.25);
}

body.landing-page .landing-mobile-nav .mobile-nav__panel {
    max-width: 340px;
    padding: 1.1rem 1rem;
    gap: 0.85rem;
}

body.landing-page .landing-mobile-nav__section {
    flex: 1 1 auto;
}

body.landing-page .landing-mobile-nav .mobile-nav__list {
    gap: 0.48rem;
}

body.landing-page .landing-hero {
    position: relative;
    overflow: hidden;
    padding: 130px 0 70px;
}

body.landing-page .landing-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(110px);
    pointer-events: none;
    opacity: 0.18;
}

body.landing-page .landing-orb--1 {
    width: 520px;
    height: 520px;
    top: -180px;
    right: -80px;
    background: var(--landing-accent);
}

body.landing-page .landing-orb--2 {
    width: 420px;
    height: 420px;
    bottom: -120px;
    left: -90px;
    background: var(--landing-accent-2);
}

body.landing-page .landing-hero__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 48px;
    align-items: center;
}

body.landing-page .landing-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 999px;
    border: 1px solid rgba(34, 211, 238, 0.32);
    background: rgba(34, 211, 238, 0.1);
    color: var(--landing-accent);
    padding: 6px 14px;
    font-size: 0.8rem;
    margin-bottom: 18px;
}

body.landing-page .landing-eyebrow::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: currentColor;
}

body.landing-page .landing-hero h1 {
    margin: 0 0 14px;
    font-size: clamp(2rem, 5vw, 3.7rem);
    line-height: 1.08;
    letter-spacing: -0.04em;
}

body.landing-page .landing-hero p {
    margin: 0;
    color: var(--landing-muted);
    max-width: 56ch;
    line-height: 1.68;
}

body.landing-page .landing-hero__actions {
    margin-top: 26px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

body.landing-page .landing-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 10px;
    padding: 0.75rem 1.2rem;
    font-weight: 600;
    border: 1px solid transparent;
    transition: opacity 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

body.landing-page .landing-btn:hover {
    transform: translateY(-1px);
}

body.landing-page .landing-btn--primary {
    background: var(--landing-gradient);
    color: #fff;
}

body.landing-page .landing-btn--ghost {
    background: transparent;
    color: var(--landing-text);
    border-color: var(--landing-border);
}

body.landing-page .landing-btn--ghost:hover {
    border-color: var(--landing-accent);
}

body.landing-page .landing-stats {
    margin-top: 34px;
    padding-top: 26px;
    border-top: 1px solid var(--landing-border);
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

body.landing-page .landing-stats strong {
    display: block;
    font-size: 1.65rem;
}

body.landing-page .landing-stats span {
    color: var(--landing-muted);
    font-size: 0.84rem;
}

body.landing-page .landing-hero__cards {
    display: grid;
    gap: 14px;
    perspective: 1100px;
}

body.landing-page .landing-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(63, 95, 171, 0.48);
    background: linear-gradient(160deg, rgba(10, 14, 36, 0.94), rgba(9, 12, 29, 0.94));
    border-radius: 16px;
    padding: 18px;
    box-shadow:
        0 18px 34px rgba(2, 6, 23, 0.45),
        inset 0 1px 0 rgba(148, 163, 184, 0.08);
    opacity: 0;
    transform: translate3d(0, 18px, 0) scale(0.99);
    transition:
        opacity 0.92s cubic-bezier(0.22, 1, 0.36, 1),
        transform 1s cubic-bezier(0.22, 1, 0.36, 1),
        border-color 0.4s ease,
        box-shadow 0.4s ease;
    animation: landingCardFloat 10s ease-in-out infinite;
    animation-play-state: paused;
    will-change: transform;
}

body.landing-page .landing-card::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(circle at 18% 16%, rgba(34, 211, 238, 0.16), transparent 46%);
    opacity: 0.65;
}

body.landing-page .landing-card h3 {
    margin: 0 0 10px;
    font-size: 1rem;
    color: #f8fafc;
}

body.landing-page .landing-card p {
    margin: 0;
    color: #a8bbde;
    font-size: 0.92rem;
    line-height: 1.6;
}

body.landing-page .landing-card strong {
    color: #f8fafc;
    font-size: clamp(1.6rem, 2.2vw, 2rem);
    letter-spacing: -0.03em;
}

body.landing-page .landing-card--main {
    border-color: rgba(82, 134, 247, 0.56);
    box-shadow:
        0 22px 42px rgba(5, 9, 25, 0.56),
        inset 0 1px 0 rgba(191, 219, 254, 0.1);
}

body.landing-page .landing-hero__cards.visible .landing-card {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    animation-play-state: running;
}

body.landing-page .landing-hero__cards.visible .landing-card:nth-child(1) {
    transition-delay: 80ms;
    animation-delay: -0.4s;
}

body.landing-page .landing-hero__cards.visible .landing-card:nth-child(2) {
    transition-delay: 180ms;
    animation-delay: -2.8s;
}

body.landing-page .landing-hero__cards.visible .landing-card:nth-child(3) {
    transition-delay: 280ms;
    animation-delay: -5.2s;
}

body.landing-page .landing-card__tags {
    margin-top: 12px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

body.landing-page .landing-card__tags span {
    font-size: 0.74rem;
    border: 1px solid rgba(95, 136, 224, 0.55);
    background: rgba(14, 22, 53, 0.7);
    color: #e2e8f0;
    border-radius: 999px;
    padding: 3px 9px;
}

@keyframes landingCardFloat {
    0%,
    100% {
        transform: translate3d(0, 0, 0) scale(1);
    }

    50% {
        transform: translate3d(0, -8px, 0) scale(1.004);
    }
}

body.landing-page .landing-section {
    padding: 86px 0;
}

body.landing-page .landing-section[id] {
    scroll-margin-top: calc(100px + var(--aihub-admin-offset));
}

body.landing-page .landing-section--alt {
    background: var(--landing-card);
    border-top: 1px solid var(--landing-border);
    border-bottom: 1px solid var(--landing-border);
}

body.landing-page .landing-section__head span {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--landing-accent);
    font-size: 0.76rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.16em;
}

body.landing-page .landing-section__head h2 {
    margin: 0 0 12px;
    font-size: clamp(1.7rem, 4vw, 2.8rem);
    line-height: 1.14;
}

body.landing-page .landing-section__head p {
    margin: 0;
    color: var(--landing-muted);
    max-width: 60ch;
}

body.landing-page .landing-section__head--center {
    text-align: center;
}

body.landing-page .landing-section__head--center p {
    margin-left: auto;
    margin-right: auto;
}

body.landing-page .landing-problem {
    margin-top: 34px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
    gap: 24px;
}

body.landing-page .landing-problem ul,
body.landing-page .landing-solution ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

body.landing-page .landing-problem li {
    border: 1px solid var(--landing-border);
    background: var(--landing-card);
    border-radius: 12px;
    padding: 16px;
}

body.landing-page .landing-problem li + li {
    margin-top: 12px;
}

body.landing-page .landing-problem li p {
    margin: 8px 0 0;
    color: var(--landing-muted);
    font-size: 0.92rem;
}

body.landing-page .landing-solution {
    border: 1px solid var(--landing-border);
    background: linear-gradient(160deg, var(--landing-card-2), var(--landing-card));
    border-radius: 16px;
    padding: 24px;
}

body.landing-page .landing-solution h3 {
    margin: 0 0 10px;
    font-size: 1.35rem;
}

body.landing-page .landing-solution p {
    margin: 0 0 16px;
    color: var(--landing-muted);
}

body.landing-page .landing-solution li {
    position: relative;
    padding-left: 24px;
    margin-top: 10px;
}

body.landing-page .landing-solution li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--landing-accent);
}

body.landing-page .landing-grid {
    margin-top: 32px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

body.landing-page .landing-grid article {
    border: 1px solid var(--landing-border);
    background: var(--landing-card);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
}

body.landing-page .landing-grid article:hover {
    border-color: rgba(34, 211, 238, 0.58);
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(2, 6, 23, 0.24);
}

body.landing-page .landing-grid__card-link {
    display: block;
    height: 100%;
    color: inherit;
    text-decoration: none;
    padding: 20px;
}

body.landing-page .landing-grid__card-link:focus-visible {
    outline: 2px solid rgba(34, 211, 238, 0.82);
    outline-offset: -2px;
}

body.landing-page .landing-grid h3 {
    margin: 0 0 8px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

body.landing-page .landing-grid p {
    margin: 0;
    color: var(--landing-muted);
    font-size: 0.92rem;
}

body.landing-page .landing-grid p + p {
    margin-top: 10px;
}

body.landing-page .landing-grid__link--disabled {
    color: #cbd5e1;
    cursor: default;
}

body.landing-page .landing-grid__item--disabled:hover {
    border-color: var(--landing-border);
    transform: none;
    box-shadow: none;
}

body.landing-page .landing-grid__card-link--disabled {
    pointer-events: none;
}

body.landing-page .landing-soon-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: 1px solid rgba(245, 158, 11, 0.52);
    background: rgba(245, 158, 11, 0.16);
    color: #fcd34d;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 3px 9px;
}

body.landing-page .landing-steps {
    margin-top: 26px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

body.landing-page .landing-steps article {
    border: 1px solid var(--landing-border);
    border-radius: 12px;
    background: var(--landing-card-2);
    padding: 18px;
    text-align: center;
}

body.landing-page .landing-step__icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 1px solid rgba(34, 211, 238, 0.26);
    background: linear-gradient(135deg, rgba(34, 211, 238, 0.12), rgba(124, 58, 237, 0.08));
    color: var(--landing-accent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    animation: landingStepPulse 6.5s ease-in-out infinite;
}

body.landing-page .landing-step__icon svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

body.landing-page .landing-steps article:nth-child(2) .landing-step__icon {
    animation-delay: 0.25s;
}

body.landing-page .landing-steps article:nth-child(3) .landing-step__icon {
    animation-delay: 0.5s;
}

body.landing-page .landing-steps article:nth-child(4) .landing-step__icon {
    animation-delay: 0.75s;
}

body.landing-page .landing-steps article:nth-child(5) .landing-step__icon {
    animation-delay: 1s;
}

body.landing-page .landing-steps article:nth-child(6) .landing-step__icon {
    animation-delay: 1.25s;
}

body.landing-page .landing-steps strong {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    border: 1px solid var(--landing-border);
    color: var(--landing-accent);
}

body.landing-page .landing-steps p {
    margin: 10px 0 0;
}

@keyframes landingStepPulse {
    0%,
    100% {
        transform: translateY(0);
        box-shadow: 0 0 0 0 rgba(34, 211, 238, 0);
    }

    50% {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(34, 211, 238, 0.15);
    }
}

body.landing-page .landing-steps__note {
    margin: 14px 0 0;
    text-align: center;
    color: var(--landing-muted);
    font-size: 0.94rem;
}

body.landing-page .landing-pricing {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

body.landing-page .landing-plan {
    border: 1px solid var(--landing-border);
    border-radius: 14px;
    background: var(--landing-card);
    padding: 22px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
}

body.landing-page .landing-plan--featured {
    border-color: rgba(124, 58, 237, 0.55);
    background: linear-gradient(160deg, #101437, #0b0f23);
}

body.landing-page .landing-plan--gold {
    border-color: rgba(245, 158, 11, 0.74);
    background: linear-gradient(160deg, rgba(33, 24, 5, 0.94), rgba(14, 12, 24, 0.96));
    box-shadow:
        0 0 0 1px rgba(245, 158, 11, 0.3),
        0 12px 26px rgba(0, 0, 0, 0.28),
        0 0 22px rgba(245, 158, 11, 0.16);
    animation: landingGoldBreath 5.2s ease-in-out infinite;
}

body.landing-page .landing-plan__title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

body.landing-page .landing-plan__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 999px;
    padding: 4px 11px;
    font-size: 0.72rem;
    font-weight: 700;
    color: #111827;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
}

body.landing-page .landing-plan h3,
body.landing-page .landing-plan strong,
body.landing-page .landing-plan p {
    margin: 0;
}

body.landing-page .landing-plan p {
    color: var(--landing-muted);
    flex-grow: 0;
}

body.landing-page .landing-plan__price {
    font-size: clamp(2.8rem, 7vw, 4rem);
    line-height: 1;
    letter-spacing: 0.02em;
}

body.landing-page .landing-plan__list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex-grow: 1;
}

body.landing-page .landing-plan__list li {
    position: relative;
    padding-left: 1.4em;
    color: color-mix(in srgb, var(--landing-text) 76%, transparent);
    line-height: 1.45;
}

body.landing-page .landing-plan__list li::before {
    content: "\2606";
    position: absolute;
    left: 0;
    top: 0;
    color: color-mix(in srgb, var(--landing-accent) 72%, #fff 28%);
    font-weight: 700;
}

body.landing-page .landing-plan__item--achievement,
body.landing-page .landing-plan__item--highlight {
    font-weight: 600;
    color: #f8fafc;
}

body.landing-page .landing-plan__item--achievement::before,
body.landing-page .landing-plan__item--highlight::before {
    color: color-mix(in srgb, var(--landing-accent) 80%, #fff 20%);
}

body.landing-page .landing-plan .landing-plan__access {
    color: color-mix(in srgb, var(--landing-text) 88%, transparent);
    font-size: 0.95rem;
    line-height: 1.45;
    flex-grow: 0;
}

@keyframes landingGoldBreath {
    0%,
    100% {
        border-color: rgba(245, 158, 11, 0.74);
        box-shadow:
            0 0 0 1px rgba(245, 158, 11, 0.3),
            0 12px 26px rgba(0, 0, 0, 0.28),
            0 0 22px rgba(245, 158, 11, 0.16);
    }

    50% {
        border-color: rgba(251, 191, 36, 0.98);
        box-shadow:
            0 0 0 2px rgba(245, 158, 11, 0.42),
            0 14px 30px rgba(0, 0, 0, 0.32),
            0 0 34px rgba(245, 158, 11, 0.34);
    }
}

body.landing-page .landing-section--telegram {
    text-align: center;
}

body.landing-page .landing-telegram {
    margin: 0 auto;
    max-width: 760px;
    border: 1px solid rgba(124, 58, 237, 0.4);
    border-radius: 22px;
    padding: 40px 28px;
    background: linear-gradient(135deg, rgba(34, 211, 238, 0.09), rgba(124, 58, 237, 0.09));
}

body.landing-page .landing-telegram h2 {
    margin: 0 0 10px;
}

body.landing-page .landing-telegram p {
    margin: 0 auto 20px;
    max-width: 62ch;
    color: var(--landing-muted);
}

body.landing-page .landing-footer {
    border-top: 1px solid var(--landing-border);
    padding: 42px 0 34px;
}

body.landing-page .landing-footer__inner {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
}

body.landing-page .landing-footer__brand p {
    margin: 8px 0 0;
    color: var(--landing-muted);
}

body.landing-page .landing-footer__links {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

body.landing-page .landing-footer__links a {
    text-decoration: none;
    color: var(--landing-muted);
}

body.landing-page .landing-footer__links a:hover {
    color: var(--landing-text);
}

body.landing-page .fade-up {
    opacity: 0;
    transform: translate3d(0, 22px, 0) scale(0.99);
    filter: blur(1px);
    transition:
        opacity 0.86s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.94s cubic-bezier(0.22, 1, 0.36, 1),
        filter 0.78s ease;
}

body.landing-page .fade-up.visible {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
}

@media (max-width: 1024px) {
    body.landing-page .landing-nav {
        display: grid;
        grid-template-columns: auto minmax(0, 1fr) auto;
        gap: 10px;
    }

    body.landing-page .landing-nav__desktop {
        display: none;
    }

    body.landing-page .landing-nav__toggle {
        display: grid;
        justify-self: start;
    }

    body.landing-page .landing-logo {
        justify-self: start;
    }

    body.landing-page .landing-nav__actions {
        justify-self: end;
        gap: 8px;
        margin-left: 0;
    }

    body.landing-page .landing-hero__grid,
    body.landing-page .landing-problem {
        grid-template-columns: 1fr;
    }

    body.landing-page .landing-steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    body.landing-page .landing-pricing {
        grid-template-columns: 1fr;
    }

    body.landing-page .landing-plan__price {
        font-size: clamp(2.6rem, 14vw, 3.6rem);
    }
}

@media (max-width: 768px) {
    body.landing-page .landing-wrap {
        width: min(1200px, 100% - 32px);
    }

    body.landing-page .landing-nav {
        min-height: 70px;
        gap: 8px;
    }

    body.landing-page .landing-nav__cta {
        min-height: 38px;
        padding: 0.45rem 0.75rem;
        font-size: 0.93rem;
    }

    body.landing-page .landing-nav__lang .aihub-lang-switcher__toggle {
        min-height: 38px;
        padding: 0 10px;
    }

    body.landing-page .landing-section {
        padding: 70px 0;
    }

    body.landing-page .landing-grid,
    body.landing-page .landing-steps {
        grid-template-columns: 1fr;
    }

    body.landing-page .landing-hero__cards.visible .landing-card {
        animation-name: landingCardFloatMobile;
        animation-duration: 12s;
    }
}

@media (max-width: 420px) {
    body.landing-page .landing-logo {
        font-size: 0.98rem;
    }

    body.landing-page .landing-nav__cta {
        padding: 0.4rem 0.64rem;
        font-size: 0.88rem;
    }

    body.landing-page .landing-nav__lang .aihub-lang-switcher__toggle {
        min-width: 52px;
        font-size: 0.85rem;
    }
}

@keyframes landingCardFloatMobile {
    0%,
    100% {
        transform: translate3d(0, 0, 0) scale(1);
    }

    50% {
        transform: translate3d(0, -4px, 0) scale(1.002);
    }
}

@media (prefers-reduced-motion: reduce) {
    body.landing-page .fade-up {
        opacity: 1;
        transform: none;
        filter: none;
        transition: none;
    }

    body.landing-page .landing-hero__cards .landing-card {
        opacity: 1;
        transform: none;
        transition: none;
        animation: none;
    }

    body.landing-page .landing-step__icon {
        animation: none;
        transform: none;
        box-shadow: none;
    }

    body.landing-page .landing-plan--gold {
        animation: none;
        border-color: rgba(245, 158, 11, 0.68);
        box-shadow:
            0 0 0 1px rgba(245, 158, 11, 0.26),
            0 12px 26px rgba(0, 0, 0, 0.28),
            0 0 14px rgba(245, 158, 11, 0.12);
    }
}
