/* EO Broker–style landing theme */
:root {
    --primary: #2f96f0;
    --primary-hover: #39b2ff;
    --text: #f5f5f5;
    --muted: #a9b5cb;
    --card-bg: linear-gradient(180deg, #1b2234 0%, #1e273b 100%);
    --card-border: linear-gradient(to bottom, rgba(72, 91, 132, 0.42), rgba(44, 56, 83, 0.42));
    --header-bg: linear-gradient(180deg, #202e5a 60px, rgba(32, 46, 90, 0.45) 100%);
}

*, *::before, *::after { box-sizing: border-box; }

html:has(.landing-body) {
    overflow-x: clip;
}

.landing-body {
    margin: 0;
    min-height: 100vh;
    font-family: Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: var(--text);
    background-color: #272e4a;
    background-image: radial-gradient(240% 100% at 75% 0%, #2e3e72 0%, #182031 30%, #151b27 100%);
    background-repeat: repeat-x;
    overflow-x: hidden;
}

.landing-body.landing-menu-open,
.landing-body.landing-auth-open,
.landing-body.landing-lang-open,
.landing-body.overlay-opened { overflow: hidden; }

a { color: inherit; text-decoration: none; transition: color 0.15s; }
a:hover { color: var(--primary-hover); }

.limiter {
    min-width: 0;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 25px;
}

.landing-main {
    padding-top: 110px;
    position: relative;
}

.landing-main::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to bottom, #202e5a 0%, transparent 100%);
    pointer-events: none;
    z-index: 1;
}

/* Header — EO Broker layout: menu | lang | chat | logo | login/register */
.landing-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    height: 64px;
    transform: translateY(30px);
    transition: transform 0.4s;
}

.landing-header.is-floating { transform: translateY(0); }

@media (max-width: 1024px) {
    .landing-header { transform: translateY(0); }
}

.landing-header__bar {
    display: flex;
    align-items: center;
    height: 64px;
    position: relative;
}

.landing-header__bar::before {
    content: '';
    position: absolute;
    top: -40px;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    background: var(--header-bg);
    backdrop-filter: blur(10px);
    border-radius: 0 0 8px 8px;
    box-shadow: inset 0 0 1px 0 rgba(156, 176, 234, 0.25), 0 0 1px 2px rgba(28, 35, 54, 0.3);
    transition: opacity 0.2s;
}

.landing-header.is-floating .landing-header__bar::before { opacity: 1; }

.landing-header__menu,
.landing-header__lang,
.landing-header__chat,
.landing-header__logo,
.landing-header__user {
    position: relative;
    z-index: 2;
}

.landing-header__menu {
    display: flex;
    align-items: center;
    gap: 0;
    height: 64px;
    border: none;
    background: none;
    padding: 0;
    cursor: pointer;
    margin-right: 18px;
    color: #fff;
    font: inherit;
    font-size: 14px;
    white-space: nowrap;
}

.landing-header__menu img { margin-right: 14px; }
.landing-header__menu-text { display: none; }

.landing-header__lang {
    margin: 0 18px 0 0;
    position: relative;
    z-index: 10001;
}

.landing-header__lang-btn {
    width: 64px;
    height: 64px;
    border: none;
    background: none;
    padding: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    outline: none;
    white-space: nowrap;
    transition: background-color 0.4s ease-in-out, opacity 0.4s ease-in-out;
}

.flag-icon {
    border-radius: 1px;
    width: 21px;
    height: 14px;
    object-fit: cover;
    flex-shrink: 0;
    transition: box-shadow 0.4s ease-in-out;
}

.landing-header__lang-btn:hover .flag-icon,
.landing-header__lang-btn:focus .flag-icon {
    box-shadow: 0 0 0 3px rgba(63, 172, 255, 0.3);
}

.landing-header__lang-drop {
    position: absolute;
    top: calc(100% - 4px);
    left: 0;
    z-index: 10002;
    opacity: 0;
    transform: translateY(5px);
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.landing-header__lang-drop.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.landing-header__lang-backdrop {
    display: none;
}

.landing-header__lang-panel {
    position: relative;
    width: 350px;
    margin-left: 12px;
    max-height: calc(100vh - 70px);
    overflow-y: auto;
    background: #2d3651;
    border-radius: 5px;
    box-sizing: border-box;
    box-shadow:
        0 1px 15px 0 rgba(12, 16, 22, 0.3),
        inset 0 0 0 1px #313b59;
}

.landing-header__lang-panel::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 12px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 8px 10px 8px;
    border-color: transparent transparent #313b59 transparent;
    pointer-events: none;
}

.landing-header__lang-grid {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: flex-start;
    border-radius: 5px;
    overflow: hidden;
}

.landing-header__lang-item {
    display: flex;
    align-items: center;
    width: 50%;
    height: 38px;
    padding: 8px 10px;
    border: none;
    background: none;
    color: #e8eef7;
    font: inherit;
    font-size: 14px;
    text-align: left;
    cursor: pointer;
    box-sizing: border-box;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: background-color 0.15s ease;
}

.landing-header__lang-item .flag-icon {
    margin: 0 15px 0 0;
}

.landing-header__lang-item span {
    color: #e8eef7;
    overflow: hidden;
    text-overflow: ellipsis;
}

.landing-header__lang-item:hover {
    background-color: #37405b;
}

.landing-header__lang-item.is-active {
    background-color: #414a65;
    color: #fff;
}

.landing-header__lang-item.is-active span {
    color: #fff;
}

.landing-body.landing-rtl .landing-header__lang {
    margin: 0 0 0 18px;
}

.landing-body.landing-rtl .landing-header__lang-panel {
    margin-left: 0;
    margin-right: 12px;
}

.landing-body.landing-rtl .landing-header__lang-panel::before {
    left: auto;
    right: 24px;
}

.landing-body.landing-rtl .landing-header__lang-item .flag-icon {
    margin: 0 0 0 15px;
}

.landing-header__chat {
    display: flex;
    align-items: center;
    height: 64px;
    padding: 0;
    border: none;
    background: none;
    color: #fff;
    font: inherit;
    font-size: 14px;
    cursor: pointer;
    outline: none;
    white-space: nowrap;
}

.landing-header__chat::before {
    content: '';
    display: block;
    background: url('../landing/img/icons/chat.svg') center/contain no-repeat;
    width: 22px;
    height: 22px;
    margin-right: 10px;
    transform: translateY(2px);
}

.landing-header__chat:hover,
.landing-header__chat:focus,
.landing-header__chat.is-active { color: var(--primary-hover); }

.landing-header__chat.is-loading {
    color: var(--muted);
    pointer-events: none;
}

.landing-header__chat.is-loading::before {
    animation: landing-chat-spin 0.9s linear infinite;
}

@keyframes landing-chat-spin {
    from { transform: translateY(2px) rotateY(0); }
    to { transform: translateY(2px) rotateY(360deg); }
}

@media (max-width: 1024px) {
    .landing-header__chat > span { display: none; }
    .landing-header__chat::before { margin-right: 0; }
}

.landing-header__logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 64px;
    width: 222px;
}

.landing-header__logo-full,
.landing-header__logo-icon {
    display: block;
    height: 40px;
    width: auto;
    max-width: 156px;
    max-height: 40px;
    object-fit: contain;
}

.landing-header__logo-icon { display: none; max-width: 40px; }

@media (max-width: 1024px) {
    .landing-header__logo { width: 64px; }
    .landing-header__logo-full { display: none; }
    .landing-header__logo-icon { display: block; }
}

@media (max-width: 550px) {
    .landing-header__logo { display: none; }
}

.landing-header__user {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 0;
}

.landing-header__user .landing-btn {
    margin-left: 15px;
    box-sizing: border-box;
}

.landing-header__user .landing-btn:first-child { margin-left: 0; }

.landing-header__user .landing-btn--ghost {
    border: 1px solid transparent;
}

.landing-btn--trade { min-width: 120px; }

@media (max-width: 768px) {
    .landing-header__lang-drop.is-open {
        position: fixed;
        inset: 0;
        z-index: 99996;
        opacity: 1;
        transform: none;
        pointer-events: auto;
    }

    .landing-header__lang-backdrop {
        display: block;
        position: absolute;
        inset: 0;
        border: 0;
        background: rgba(15, 20, 32, 0.58);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.25s ease;
    }

    .landing-header__lang-drop.is-open .landing-header__lang-backdrop {
        opacity: 1;
        pointer-events: auto;
    }

    .landing-header__lang-panel {
        position: fixed;
        left: 12px;
        right: 12px;
        top: 68px;
        width: auto;
        max-width: none;
        margin: 0;
        max-height: calc(100dvh - 84px);
        z-index: 1;
    }

    .landing-header__lang-panel::before {
        left: 32px;
        top: -10px;
    }

    .landing-header__lang-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0;
        height: auto !important;
        max-height: calc(100dvh - 120px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .landing-header__lang-item {
        width: 100%;
        min-width: 0;
        min-height: 44px;
        height: auto;
        padding: 10px 10px;
        font-size: 13px;
    }

    .landing-header__lang-item .flag-icon {
        margin: 0 10px 0 0;
        flex-shrink: 0;
    }

    .landing-body.landing-rtl .landing-header__lang-panel::before {
        left: auto;
        right: 32px;
    }

    .landing-body.landing-rtl .landing-header__lang-item .flag-icon {
        margin: 0 0 0 10px;
    }
}

@media (max-width: 550px) {
    .landing-header__menu { margin-right: 12px; }
    .landing-header__lang { margin: 0 12px 0 0; }
    .landing-header__lang-btn { width: 40px; }
    .landing-body.landing-rtl .landing-header__lang {
        margin: 0 0 0 12px;
    }
    .landing-header__user .landing-btn { margin-left: 0; font-size: 13px; padding: 0 10px; }
    .landing-btn--outline { min-width: 120px; padding-right: 27px; }
}

/* Full-screen overlay menu */
.landing-overlay {
    position: fixed;
    inset: 0;
    z-index: 1000;
    pointer-events: none;
}

.landing-overlay[aria-hidden="false"] { pointer-events: auto; }

.landing-overlay__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    opacity: 0;
    transition: opacity 0.3s;
}

.landing-overlay[aria-hidden="false"] .landing-overlay__backdrop { opacity: 1; }

.landing-overlay__panel {
    position: absolute;
    inset: 0;
    background: #151b27;
    overflow-y: auto;
    padding: 24px 0 40px;
    transform: translateY(100%);
    transition: transform 0.35s ease;
}

.landing-overlay[aria-hidden="false"] .landing-overlay__panel { transform: translateY(0); }

.landing-overlay__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto 32px;
    padding: 0 25px;
}

.landing-overlay__logo img { height: 32px; width: auto; }

.landing-overlay__close {
    border: none;
    background: none;
    color: #fff;
    font-size: 32px;
    line-height: 1;
    cursor: pointer;
    padding: 0 8px;
}

.landing-overlay__cols {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 25px;
}

@media (max-width: 1024px) {
    .landing-overlay__cols { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 550px) {
    .landing-overlay__cols { grid-template-columns: 1fr; gap: 16px; }
}

.landing-overlay__title {
    font-size: 16px;
    font-weight: 400;
    margin: 0 0 18px;
    color: #fff;
}

.landing-overlay__links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.landing-overlay__links li { margin-bottom: 12px; }

.landing-overlay__link {
    display: inline;
    border: none;
    background: none;
    padding: 0;
    color: var(--muted);
    font: inherit;
    font-size: 14px;
    cursor: pointer;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: color 0.15s, border-color 0.15s;
}

.landing-overlay__link:hover {
    color: var(--primary-hover);
    border-bottom-color: var(--primary-hover);
}

.landing-overlay__foot {
    max-width: 1200px;
    margin: 40px auto 0;
    padding: 0 25px;
}

.landing-btn--wide { width: 100%; max-width: 320px; }

body.landing-body { top: 0 !important; }
body.landing-rtl { direction: rtl; }

/* Buttons */
.landing-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 41px;
    padding: 8px 15px;
    border-radius: 8px;
    border: 1px solid transparent;
    font-size: 14px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s, box-shadow 0.2s, transform 0.2s;
    white-space: nowrap;
}

.landing-btn--ghost {
    background: transparent;
    color: #fff;
}

.landing-btn--ghost:hover { background: rgba(47, 150, 240, 0.11); }

.landing-btn--outline {
    border-color: #259efa;
    color: #fff;
    background: transparent;
    padding-right: 35px;
    position: relative;
}

.landing-btn--outline::after {
    content: '';
    width: 7px;
    height: 13px;
    background: url('../landing/img/icons/arrow-right-btn.svg') center/contain no-repeat;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-45%);
}

.landing-btn--outline:hover { background: rgba(47, 150, 240, 0.11); }

.landing-btn--primary {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.landing-btn--primary:hover {
    background: var(--primary-hover);
    border-color: var(--primary-hover);
}

.landing-btn--lg {
    min-height: 48px;
    padding: 0 30px;
    font-size: 18px;
}

.landing-btn--arrow {
    padding-right: 60px;
    position: relative;
}

.landing-btn--arrow::after {
    content: '';
    width: 9px;
    height: 16px;
    background: url('../landing/img/icons/arrow-right-btn-white.svg') center/contain no-repeat;
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-47%);
}

.landing-link { color: var(--primary-hover); border-bottom: 1px solid transparent; }
.landing-link:hover { border-bottom-color: var(--primary-hover); }

/* Hero — EO Broker layered graphics */
.landing-hero {
    position: relative;
    min-height: 650px;
    margin-bottom: 40px;
}

.landing-hero__inner {
    position: relative;
    min-height: 650px;
}

.landing-hero__copy {
    position: relative;
    z-index: 2;
    width: 50%;
    min-width: 330px;
    display: flex;
    flex-direction: column;
    margin-bottom: 40px;
}

.landing-hero__title {
    margin: 0;
    padding-top: 40px;
    font-size: 72px;
    font-weight: 200;
    line-height: 1.15;
}

.landing-hero__title > span > em {
    display: block;
    font-style: normal;
    font-weight: 600;
    background: linear-gradient(to right, #2f96f0, #a2d4ff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #2f96f0;
}

.landing-hero__title > span > span { display: block; }

.landing-hero__lead {
    margin-top: 70px;
    font-size: 20px;
    font-weight: 200;
    color: #7483aa;
    max-width: 100%;
}

.landing-hero__lead strong {
    display: block;
    font-weight: 400;
    line-height: 1.25;
}

.landing-hero__assets {
    display: flex;
    align-items: center;
    gap: 0;
    margin-top: 30px;
    flex-wrap: wrap;
}

.landing-hero__assets img {
    width: 36px;
    height: 36px;
    position: relative;
}

.landing-hero__badge {
    display: inline-flex;
    padding: 1px;
    border-radius: 20px;
    background: linear-gradient(to left, #485a84, rgba(44, 55, 83, 1));
    margin-left: 0;
}

.landing-hero__badge > span > span {
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 38px;
    padding: 0 22px;
    border-radius: 19px;
    background: rgba(44, 55, 83, 1);
    font-size: 19px;
    font-weight: 400;
    color: #e8eef7;
    white-space: nowrap;
    gap: 0.5ex;
}

.landing-hero__badge i { font-style: normal; font-weight: 200; }

.landing-hero__cta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin-top: 60px;
    max-width: 340px;
}

/* Graphics panel (right side) */
.landing-hero__graphics {
    position: absolute;
    z-index: 1;
    left: 40%;
    top: 0;
    height: 100%;
    width: 60%;
    pointer-events: none;
    transition: left 0.3s, width 0.3s;
}

.landing-hero__graphics-inner {
    position: relative;
    height: 100%;
    width: 100%;
}

.landing-hero__shape {
    width: 562px;
    position: absolute;
    pointer-events: none;
    right: 0;
    top: 0;
}

.landing-hero__shape--1 { transform: translate(255px, 15px); }
.landing-hero__shape--2 { transform: translate(15px, 15px); }
.landing-hero__shape--3 { width: 323px; transform: translate(-270px, -100px); }

.landing-hero__stage {
    position: absolute;
    right: 0;
    top: 0;
    transform: translate(141px, -160px);
    transition: transform 0.2s ease-out;
}

.landing-hero__sprite {
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    background-image: var(--hi);
    background-repeat: no-repeat;
    background-size: 100%;
    pointer-events: none;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .landing-hero__sprite { background-image: var(--hi2); }
}

.landing-hero__sprite--tesla { width: 41px; height: 33px; transform: translate(-398px, 163px); }
.landing-hero__sprite--fb { width: 54px; height: 45px; transform: translate(-51px, 257px); }
.landing-hero__sprite--brand { width: 132px; height: 106px; transform: translate(-462px, 246px); }
.landing-hero__sprite--netflix { width: 61px; height: 47px; transform: translate(-535px, 431px); }
.landing-hero__sprite--apple { width: 59px; height: 45px; transform: translate(-47px, 467px); }
.landing-hero__sprite--ibm { width: 81px; height: 66px; transform: translate(-143px, 634px); }
.landing-hero__sprite--google { width: 41px; height: 33px; transform: translate(-523px, 665px); }

.landing-hero__sprite--blink {
    width: 541px;
    height: 563px;
    transform: translate(-211px, 165px);
    animation: landing-hero-blink 4s ease-in-out infinite;
}

@keyframes landing-hero-blink {
    0%, 100% { opacity: 0.55; }
    50% { opacity: 1; }
}

.landing-hero__sprite--device { width: 413px; height: 594px; transform: translate(-118px, 148px); }
.landing-hero__sprite--screen-header { width: 289px; height: 107px; transform: translate(-139px, 182px); }
.landing-hero__sprite--assets-list { width: 325px; height: 335px; transform: translate(-38px, 334px); }
.landing-hero__sprite--stocks { width: 189px; height: 62px; transform: translate(-354px, 336px); }
.landing-hero__sprite--indices { width: 193px; height: 62px; transform: translate(-374px, 407px); }
.landing-hero__sprite--metals { width: 189px; height: 62px; transform: translate(-395px, 478px); }
.landing-hero__sprite--commodities { width: 264px; height: 62px; transform: translate(-410px, 549px); }
.landing-hero__sprite--etf { width: 152px; height: 62px; transform: translate(-439px, 621px); }

.landing-hero__sprite--tesla { animation: landing-hero-float-tesla 6s ease-in-out infinite; }
.landing-hero__sprite--fb { animation: landing-hero-float-fb 5.5s ease-in-out 0.4s infinite; }
.landing-hero__sprite--brand { animation: landing-hero-float-brand 7s ease-in-out 0.2s infinite; }
.landing-hero__sprite--netflix { animation: landing-hero-float-netflix 6.5s ease-in-out 0.6s infinite; }
.landing-hero__sprite--apple { animation: landing-hero-float-apple 5s ease-in-out 0.8s infinite; }
.landing-hero__sprite--ibm { animation: landing-hero-float-ibm 6.8s ease-in-out 1s infinite; }
.landing-hero__sprite--google { animation: landing-hero-float-google 5.2s ease-in-out 1.2s infinite; }

@keyframes landing-hero-float-tesla {
    0%, 100% { transform: translate(-398px, 163px); }
    50% { transform: translate(-398px, 153px); }
}
@keyframes landing-hero-float-fb {
    0%, 100% { transform: translate(-51px, 257px); }
    50% { transform: translate(-51px, 247px); }
}
@keyframes landing-hero-float-brand {
    0%, 100% { transform: translate(-462px, 246px); }
    50% { transform: translate(-462px, 236px); }
}
@keyframes landing-hero-float-netflix {
    0%, 100% { transform: translate(-535px, 431px); }
    50% { transform: translate(-535px, 421px); }
}
@keyframes landing-hero-float-apple {
    0%, 100% { transform: translate(-47px, 467px); }
    50% { transform: translate(-47px, 457px); }
}
@keyframes landing-hero-float-ibm {
    0%, 100% { transform: translate(-143px, 634px); }
    50% { transform: translate(-143px, 624px); }
}
@keyframes landing-hero-float-google {
    0%, 100% { transform: translate(-523px, 665px); }
    50% { transform: translate(-523px, 655px); }
}

/* Sections */
.landing-section { margin-bottom: 80px; position: relative; z-index: 2; }
.landing-section--glow::after {
    content: '';
    position: absolute;
    inset: -20% -10%;
    background: radial-gradient(20% 50% at 50% 50%, rgba(47, 150, 240, 0.1) 0%, transparent 100%);
    pointer-events: none;
    z-index: -1;
}

.landing-heading {
    font-size: clamp(28px, 4vw, 46px);
    font-weight: 200;
    line-height: 1.2;
    margin: 0 0 25px;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.landing-heading--center { justify-content: center; text-align: center; }

.landing-muted { color: var(--muted); }

.landing-icon {
    display: inline-block;
    width: 26px;
    height: 26px;
    background: var(--icon) center/contain no-repeat;
    flex-shrink: 0;
}

.landing-icon--lg { width: 46px; height: 46px; }

/* Cards */
.landing-card {
    border-radius: 16px;
    padding: 1px;
    background: var(--card-border);
    transition: box-shadow 0.15s;
}

.landing-card:hover { box-shadow: 0 0 0 2px rgba(47, 150, 240, 0.38); }

.landing-card--link { display: block; color: inherit; }

.landing-card__inner {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 20px;
    height: 100%;
}

.landing-card__inner h3 {
    margin: 0 0 8px;
    font-size: 20px;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 10px;
}

.landing-card__inner p { margin: 0; color: var(--muted); }

.landing-card__title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 20px;
    margin-bottom: 4px;
}

.landing-card__title img { width: 24px; height: 24px; }

.landing-card__sub {
    display: block;
    text-align: center;
    font-size: 14px;
    color: var(--muted);
}

.landing-card__inner--stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 8px;
    min-height: 90px;
}

.landing-stat {
    font-size: 20px;
    color: #279efa;
}

/* Grids */
.landing-device-grid,
.landing-steps,
.landing-stats {
    display: grid;
    gap: 20px;
}

.landing-device-grid { grid-template-columns: repeat(4, 1fr); }
.landing-steps { grid-template-columns: repeat(3, 1fr); }
.landing-stats { grid-template-columns: repeat(4, 1fr); }
.landing-stats--3 { grid-template-columns: repeat(3, 1fr); }

.landing-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.landing-split__text { margin-bottom: 24px; }

.landing-map {
    margin-top: 30px;
    overflow: hidden;
    height: 400px;
}

.landing-map__img {
    width: 958px;
    max-width: none;
    height: 100%;
    margin: 0 auto;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    transform: translateX(-50%);
    position: relative;
    left: 50%;
}

/* Inner pages */
.landing-page--inner { padding-bottom: 60px; }

.landing-page-head { margin-bottom: 32px; }

.landing-prose { color: #e8eef7; }
.landing-prose h2 { font-size: 20px; font-weight: 400; margin: 28px 0 12px; }
.landing-prose p { color: var(--muted); }

.landing-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.landing-list { margin: 0; padding: 0; list-style: none; }
.landing-list--bullets li {
    position: relative;
    padding: 0 0 1em 1.5em;
    color: var(--muted);
}
.landing-list--bullets li::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: radial-gradient(#3facff 50%, #259efa 100%);
    box-shadow: 0 3px 10px 0 #0048b5;
    position: absolute;
    left: 0;
    top: 8px;
}

.landing-feature-shots {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.landing-feature-shots img {
    max-width: 280px;
    height: auto;
    border-radius: 8px;
}

.landing-platform-block { margin-bottom: 48px; }
.landing-platform-block h2 { font-size: 32px; font-weight: 200; margin-bottom: 24px; }
.landing-platform-block h3 { font-size: 18px; margin: 0 0 6px; }
.landing-platform-block p { color: var(--muted); margin: 0 0 20px; }

.landing-platform-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
    border: 1px solid #334161;
    border-radius: 6px;
    background: radial-gradient(#1e2638 74%, #171d2b 83%);
    padding: 24px;
}

.landing-platform-grid__visual img { width: 100%; max-width: 360px; display: block; margin: 0 auto; }

.landing-web-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 30px;
    border: 1px solid #334161;
    border-radius: 6px;
    background: #222940;
}

.landing-lessons,
.landing-blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.landing-blog-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.landing-blog-filter {
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--muted);
    text-decoration: none;
    font-size: 14px;
    transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.landing-blog-filter:hover,
.landing-blog-filter.is-active {
    border-color: var(--accent, #3b82f6);
    color: #fff;
    background: rgba(59, 130, 246, 0.12);
}

.landing-blog-card {
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    background: rgba(27, 34, 52, 0.6);
    overflow: hidden;
    transition: border-color 0.2s, transform 0.2s;
}

.landing-blog-card:hover {
    border-color: rgba(59, 130, 246, 0.4);
    transform: translateY(-2px);
}

.landing-blog-card__link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.landing-blog-card__cover {
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #1a2030;
}

.landing-blog-card__cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.landing-blog-card__cover-placeholder {
    width: 100%;
    height: 100%;
    background:
        linear-gradient(135deg, rgba(59, 130, 246, 0.12) 0%, transparent 55%),
        linear-gradient(180deg, #1a2030 0%, #243049 100%);
}

.landing-blog-card__body {
    padding: 18px 20px 20px;
}

.landing-blog-card__category {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--accent, #3b82f6);
    margin-bottom: 8px;
}

.landing-blog-card__title {
    margin: 0 0 10px;
    font-size: 1.1rem;
    line-height: 1.35;
}

.landing-blog-card__excerpt {
    margin: 0 0 12px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.5;
}

.landing-blog-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 13px;
    color: var(--muted);
}

.landing-blog-pagination {
    margin-top: 28px;
}

.landing-pagination {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.landing-pagination-info {
    margin: 0;
    font-size: 14px;
    color: var(--muted);
}

.landing-pagination-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.landing-pagination-item {
    display: flex;
}

.landing-pagination-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 12px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--muted);
    text-decoration: none;
    font-size: 14px;
    transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.landing-pagination-link:hover {
    border-color: var(--accent, #3b82f6);
    color: #fff;
    background: rgba(59, 130, 246, 0.12);
}

.landing-pagination-item.is-active .landing-pagination-link {
    border-color: var(--accent, #3b82f6);
    color: #fff;
    background: rgba(59, 130, 246, 0.2);
}

.landing-pagination-item.is-disabled .landing-pagination-link {
    opacity: 0.4;
    pointer-events: none;
}

.landing-pagination-link.is-ellipsis {
    border-color: transparent;
    background: transparent;
}

.landing-blog-rss {
    margin-top: 28px;
    font-size: 14px;
}

.landing-blog-rss a {
    color: var(--accent, #3b82f6);
}

.landing-page--blog-post .landing-blog-back {
    margin: 0 0 12px;
    font-size: 14px;
}

.landing-page--blog-post .landing-blog-back a {
    color: var(--muted);
    text-decoration: none;
}

.landing-page--blog-post .landing-blog-back a:hover {
    color: #fff;
}

.landing-blog-post-meta {
    margin-top: 10px;
}

.landing-blog-post-cover {
    margin: 0 0 28px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.landing-blog-post-cover img {
    display: block;
    width: 100%;
    height: auto;
}

.landing-blog-post-body img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.landing-blog-source {
    margin-top: 32px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 14px;
}

.landing-blog-source a {
    color: var(--accent, #3b82f6);
}

/* Footer */
.landing-footer {
    position: relative;
    z-index: 2;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    margin-top: 40px;
}

.landing-footer__main {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    padding-block: 50px 40px;
}

.landing-footer__brand {
    width: 30%;
    min-width: 220px;
    color: var(--muted);
    font-size: 13px;
}

.landing-footer__brand p { margin: 12px 0 0; line-height: 1.5; }

.landing-footer__logo img { max-width: 138px; height: auto; }

.landing-footer__nav {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    width: 45%;
    min-width: 280px;
}

.landing-footer__col h3 {
    font-size: 16px;
    font-weight: 400;
    margin: 0 0 14px;
}

.landing-footer__col a {
    display: block;
    color: var(--muted);
    font-size: 14px;
    margin-bottom: 10px;
}

.landing-footer__col a:hover { color: var(--primary-hover); }

.landing-footer__auth-link {
    display: block;
    margin-bottom: 10px;
    background: none;
    border: none;
    padding: 0;
    font: inherit;
    color: inherit;
    cursor: pointer;
    text-align: left;
    transition: color 0.15s;
}

.landing-footer__auth-link:hover { color: var(--primary-hover); }

.landing-footer__side { width: 23%; min-width: 200px; }
.landing-footer__side h3 { font-size: 16px; margin: 0 0 14px; }
.landing-footer__partners { margin-bottom: 28px; }

.landing-footer__partners img,
.landing-footer__payments img {
    display: block;
    max-width: 100%;
    height: auto;
}

.landing-footer__legal {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    padding-block: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    background: #181e2d;
    color: var(--muted);
    font-size: 12px;
}

.landing-footer__disclaimer { flex: 1; min-width: 260px; }
.landing-footer__copy { min-width: 200px; }

/* Auth forms (login/register) */
.site-auth-wrap {
    display: flex;
    justify-content: center;
    padding: 20px 20px 80px;
}

.site-auth-card {
    width: 100%;
    max-width: 420px;
    background: var(--card-bg);
    border: 1px solid rgba(72, 91, 132, 0.42);
    border-radius: 16px;
    padding: 36px 32px;
}

.site-auth-card h1 { margin: 0 0 8px; font-size: 26px; font-weight: 400; }
.site-auth-sub { color: var(--muted); margin: 0 0 24px; font-size: 14px; }

.site-form label { display: block; margin-bottom: 16px; }
.site-form label span {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--muted);
    margin-bottom: 6px;
}

.site-form input[type="email"],
.site-form input[type="password"],
.site-form input[type="text"] {
    width: 100%;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid rgba(169, 181, 203, 0.25);
    background: #151b27;
    color: #f1f5f9;
    font-size: 15px;
    font-family: inherit;
}

.site-form input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(47, 150, 240, 0.2);
}

.site-checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--muted);
}

.site-auth-foot {
    text-align: center;
    margin: 20px 0 0;
    font-size: 14px;
    color: var(--muted);
}

.site-auth-foot a { color: var(--primary-hover); }

.site-alert {
    border-radius: 10px;
    padding: 12px 14px;
    margin-bottom: 20px;
    font-size: 14px;
}

.site-alert-error {
    background: rgba(215, 39, 107, 0.15);
    border: 1px solid rgba(215, 39, 107, 0.35);
    color: #fecaca;
}

.site-alert p { margin: 0; }

.site-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.site-btn-primary {
    background: var(--primary);
    color: #fff;
}

.site-btn-primary:hover { background: var(--primary-hover); }

.site-btn-block { width: 100%; }

/* Responsive */
@media (min-width: 550px) and (max-width: 650px) {
    .landing-hero__graphics { left: 120%; width: 40%; }
}

@media (min-width: 650px) and (max-width: 750px) {
    .landing-hero__graphics { left: 80%; width: 50%; }
}

@media (min-width: 750px) and (max-width: 900px) {
    .landing-hero__graphics { left: 80%; width: 40%; }
}

@media (min-width: 900px) and (max-width: 1100px) {
    .landing-hero__graphics { left: 50%; width: 60%; }
}

@media (min-width: 1100px) and (max-width: 2000px) {
    .landing-hero__graphics { left: 30%; width: 60%; }
}

@media (max-width: 1024px) {
    .landing-header { transform: translateY(0); }
    .landing-header__logo-full { display: none; }
    .landing-header__logo-icon { display: block; height: 40px; }
    .landing-split,
    .landing-two-col,
    .landing-platform-grid { grid-template-columns: 1fr; }
    .landing-device-grid { grid-template-columns: repeat(2, 1fr); }
    .landing-steps,
    .landing-stats { grid-template-columns: repeat(2, 1fr); }
    .landing-footer__brand,
    .landing-footer__nav,
    .landing-footer__side {
        width: 100%;
        min-width: 0;
    }
    .landing-footer__nav {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 28px 20px;
    }
    .landing-footer__side {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px;
        align-items: start;
    }
    .landing-footer__partners { margin-bottom: 0; }
}

@media (max-width: 550px) {
    .limiter { padding: 0 16px; }

    .landing-main {
        padding-top: 90px;
        padding-bottom: 8px;
    }

    .landing-page {
        overflow-x: clip;
    }

    .landing-section { margin-bottom: 48px; }

    .landing-heading {
        font-size: 26px;
        gap: 10px;
        margin-bottom: 20px;
    }

    .landing-heading--center {
        text-align: center;
    }

    .landing-split {
        gap: 24px;
    }

    .landing-split__copy .landing-heading {
        justify-content: flex-start;
        text-align: left;
    }

    .landing-split__text {
        font-size: 14px;
        line-height: 1.55;
    }

    .landing-card__inner {
        padding: 16px;
    }

    .landing-card__inner h3,
    .landing-card__title {
        font-size: 17px;
    }

    .landing-hero,
    .landing-hero__inner { min-height: auto; }
    .landing-hero {
        margin-bottom: 24px;
    }
    .landing-hero__inner { top: -40px; }
    .landing-hero__copy {
        width: 100%;
        min-width: 0;
        margin-bottom: 0;
    }
    .landing-hero__title {
        padding-top: min(340px, 72vw);
        font-size: clamp(28px, 9vw, 36px);
        max-width: 100%;
        line-height: 1.12;
    }
    .landing-hero__lead {
        margin-top: 20px;
        font-size: 14px;
        order: 2;
    }
    .landing-hero__assets {
        margin-top: 10px;
        order: 2;
    }
    .landing-hero__assets img {
        width: 32px;
        height: 32px;
        margin-left: -2px;
    }
    .landing-hero__badge > span > span {
        height: 32px;
        font-size: 13px;
        padding: 0 14px;
    }
    .landing-hero__cta {
        margin-top: 18px;
        max-width: 100%;
        width: 100%;
        order: 1;
    }
    .landing-hero__cta .landing-btn {
        width: 100%;
        max-width: 100%;
    }
    .landing-hero__graphics {
        left: 50%;
        right: auto;
        width: min(420px, 100%);
        max-width: 100%;
        overflow: hidden;
        transform: translateX(-50%);
    }
    .landing-hero__graphics-inner {
        transform: scale(0.52) translateY(48px);
        transform-origin: top center;
    }
    .landing-device-grid,
    .landing-steps,
    .landing-stats,
    .landing-stats--3 { grid-template-columns: 1fr; }
    .landing-header__actions .landing-btn--ghost span { display: none; }
    .landing-web-banner { flex-direction: column; align-items: flex-start; }
    .landing-map {
        height: 220px;
        margin-top: 20px;
    }
    .landing-map__img {
        width: 100%;
        max-width: 100%;
        left: 0;
        transform: none;
    }

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

    .landing-footer__main {
        padding-block: 32px 24px;
        gap: 28px;
    }

    .landing-footer__brand {
        text-align: center;
    }

    .landing-footer__logo {
        display: inline-block;
    }

    .landing-footer__brand p {
        margin-top: 10px;
        font-size: 12px;
        line-height: 1.55;
    }

    .landing-footer__nav {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 22px 14px;
    }

    .landing-footer__col h3 {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .landing-footer__col a,
    .landing-footer__auth-link {
        font-size: 13px;
        margin-bottom: 7px;
    }

    .landing-footer__side {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .landing-footer__partners,
    .landing-footer__payments {
        text-align: center;
    }

    .landing-footer__partners img,
    .landing-footer__payments img {
        margin-inline: auto;
    }

    .landing-footer__legal {
        flex-direction: column;
        gap: 14px;
        padding-block: 24px calc(20px + env(safe-area-inset-bottom, 0px));
        font-size: 11px;
        line-height: 1.55;
    }

    .landing-footer__disclaimer,
    .landing-footer__copy {
        min-width: 0;
        width: 100%;
    }

    .landing-footer__copy {
        text-align: center;
    }

    .landing-footer__copy p,
    .landing-footer__disclaimer p {
        margin: 0;
    }

    .landing-page--inner {
        padding-bottom: 40px;
    }

    .landing-page-head {
        margin-bottom: 24px;
    }

    .landing-prose {
        font-size: 14px;
    }
}

/* Auth modal — EO Broker (680px box + 400px form panel, eobroker.com) */
.landing-auth-portal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    pointer-events: none;
}

.landing-auth-portal[hidden] { display: none; }

.landing-auth-overlay {
    position: absolute;
    inset: 0;
    background: rgba(39, 46, 74, 0.8);
    opacity: 0;
    transition: opacity 0.3s;
}

.landing-auth-portal.is-open { pointer-events: auto; }
.landing-auth-portal.is-open .landing-auth-overlay { opacity: 1; }

.landing-auth-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -46%);
    z-index: 10001;
    width: 680px;
    max-width: calc(100% - 30px);
    opacity: 0;
    transition: transform 0.3s, opacity 0.3s;
}

.landing-auth-portal.is-open .landing-auth-modal {
    transform: translate(-50%, -50%);
    opacity: 1;
}

.landing-auth-modal__box {
    position: relative;
    width: 680px;
    max-width: 100%;
    min-height: 350px;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    background: rgba(21, 27, 39, 0.7);
    border-radius: 5px;
}

.landing-auth-close {
    position: absolute;
    top: -35px;
    right: -35px;
    width: 30px;
    height: 30px;
    border: none;
    background: none;
    color: #fff;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.2s;
    z-index: 10;
    padding: 0;
}

.landing-auth-close:hover,
.landing-auth-close:focus { opacity: 1; outline: none; }

/* Left carousel — 280px */
.landing-auth-carousel {
    flex: 0 0 280px;
    position: relative;
}

.landing-auth-carousel__slider {
    width: 280px;
    height: 100%;
    overflow: hidden;
}

.landing-auth-carousel__track {
    display: flex;
    width: 840px;
    transition: transform 0.3s;
}

.landing-auth-carousel__slide {
    width: 280px;
    box-sizing: border-box;
    padding: 50px;
    flex-shrink: 0;
}

.landing-auth-carousel__icon {
    display: block;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: 95%;
    margin-bottom: 35px;
}

.landing-auth-carousel__icon--apps {
    width: 68px;
    height: 65px;
    background-image: url('../landing/img/icons/apps.svg');
}

.landing-auth-carousel__icon--nyse {
    width: 65px;
    height: 69px;
    background-image: url('../landing/img/icons/nyse.svg');
}

.landing-auth-carousel__icon--education {
    width: 58px;
    height: 65px;
    background-image: url('../landing/img/icons/education.svg');
}

.landing-auth-carousel__title {
    font-size: 18px;
    margin-bottom: 0.5em;
    font-weight: 400;
}

.landing-auth-carousel__text {
    font-size: 12px;
    color: #a9b5cb;
    line-height: 1.5;
}

.landing-auth-carousel__dots {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 200;
}

.landing-auth-carousel__dots button {
    display: inline-block;
    width: 10px;
    height: 10px;
    padding: 0;
    margin: 0 6px;
    border: none;
    border-radius: 50%;
    background: #0c1019;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
    outline: none;
}

.landing-auth-carousel__dots button:hover,
.landing-auth-carousel__dots button:focus {
    background: rgba(37, 158, 250, 0.5);
}

.landing-auth-carousel__dots button.is-active {
    background: #259efa;
    box-shadow: 0 0 8px rgba(65, 129, 201, 0.4);
    transform: scale(1.1);
    cursor: default;
}

/* Right form panel — 400px */
.landing-auth-panel {
    width: 400px;
    flex: 0 0 400px;
    background: linear-gradient(-180deg, #263047 0%, #232c42 100%);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
    min-height: 350px;
}

.landing-auth-tabs {
    padding: 10px 20px 0;
    width: 400px;
    box-sizing: border-box;
}

.landing-auth-tab {
    display: inline-block;
    background: none;
    border: none;
    color: #787d91;
    font-family: inherit;
    font-size: 14px;
    margin-right: 25px;
    padding: 10px;
    position: relative;
    cursor: pointer;
    transition: color 0.3s;
    text-align: center;
}

.landing-auth-tab::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    background: #787d91;
    box-shadow: 0 0 10px rgba(16, 121, 213, 0.5);
    border-radius: 5px;
    opacity: 0.5;
    transition: opacity 0.3s, background 0.3s;
}

.landing-auth-tab:hover { color: #969baf; }
.landing-auth-tab:hover::after { background: #969baf; }

.landing-auth-tab.is-active {
    color: #fff;
    cursor: default;
}

.landing-auth-tab.is-active::after {
    opacity: 1;
    background: #369bf4;
}

.landing-auth-slider {
    width: 400px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.landing-auth-slides {
    width: 800px;
    display: flex;
    transition: transform 0.3s;
}

.landing-auth-slide {
    width: 400px;
    min-height: 240px;
    box-sizing: border-box;
    padding: 20px;
    flex-shrink: 0;
}

.landing-auth-alert {
    border-radius: 4px;
    padding: 10px 12px;
    margin-bottom: 16px;
    font-size: 13px;
}

.landing-auth-alert p { margin: 0; }

.landing-auth-alert--error {
    background: rgba(215, 39, 107, 0.15);
    border: 1px solid rgba(215, 39, 107, 0.35);
    color: #fecaca;
}

.landing-auth-alert--info {
    background: rgba(47, 150, 240, 0.12);
    border: 1px solid rgba(47, 150, 240, 0.3);
    color: #bfdbfe;
    margin-bottom: 12px;
}

/* EO form groups (margin-bottom: 16px) */
.landing-auth-form-group {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    flex-grow: 1;
    width: 100%;
}

.landing-auth-form-group:last-of-type { margin-bottom: 0; }

.landing-auth-form-group input[type="email"],
.landing-auth-form-group input[type="password"],
.landing-auth-form-group input[type="text"] {
    width: 100%;
    height: 36px;
    line-height: 36px;
    padding: 0 12px;
    border-radius: 4px;
    border: 1px solid rgba(47, 59, 81, 0.5);
    background-color: #20293e;
    color: #fff;
    font-size: 14px;
    font-family: inherit;
    box-sizing: border-box;
    outline: none;
    appearance: none;
    box-shadow: inset 0 2px 2px rgba(0, 0, 0, 0.075), inset 0 0 0 1px rgba(37, 158, 250, 0);
    transition: border-color 0.2s;
}

.landing-auth-form-group input::placeholder { color: #a9b5cb; }
.landing-auth-form-group input:hover { border-color: #444f65; }
.landing-auth-form-group input:focus { border-color: #259af3; }

.landing-auth-form-group--split {
    align-items: center;
    margin-bottom: 0;
}

.landing-auth-link-faded {
    background: none;
    border: none;
    padding: 0;
    font-family: inherit;
    font-size: 12px;
    color: #a9b5cb;
    cursor: pointer;
    transition: color 0.15s;
    text-align: left;
}

.landing-auth-link-faded:hover { color: #39b2ff; }

.landing-auth-submit {
    min-width: 130px;
    min-height: 36px;
    padding: 8px 15px;
    border: 1px solid #2f96f0;
    border-radius: 8px;
    background: #2f96f0;
    color: #fff;
    font-size: 14px;
    font-family: inherit;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s, box-shadow 0.2s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.landing-auth-submit:hover {
    background: #39b2ff;
    border-color: #39b2ff;
}

.landing-auth-submit--full {
    width: 100%;
    min-width: 0;
}

.landing-auth-form-group--terms {
    align-items: center;
    gap: 5px;
}

.landing-auth-checkbox {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    user-select: none;
    flex: 1;
    min-width: 0;
}

.landing-auth-checkbox input {
    position: absolute;
    opacity: 0;
    width: 20px;
    height: 20px;
    margin: 0;
    cursor: pointer;
    pointer-events: auto;
    z-index: 2;
}

.landing-auth-checkbox__box {
    width: 20px;
    min-width: 20px;
    height: 20px;
    border-radius: 4px;
    background: #20293e;
    border: 1px solid rgba(47, 59, 81, 0.5);
    box-shadow: inset 0 2px 2px rgba(0, 0, 0, 0.075);
    margin-right: 10px;
    position: relative;
    transition: border-color 0.2s;
}

.landing-auth-checkbox__text {
    font-size: 12px;
    color: #a9b5cb;
    line-height: 16px;
}

.landing-auth-checkbox:hover .landing-auth-checkbox__text { color: #f5f5f5; }
.landing-auth-checkbox:hover .landing-auth-checkbox__box { border-color: #444f65; }

.landing-auth-checkbox:has(input:checked) .landing-auth-checkbox__text { color: #f5f5f5; }

.landing-auth-checkbox:has(input:checked) .landing-auth-checkbox__box {
    border-color: #259af3;
}

.landing-auth-checkbox:has(input:checked) .landing-auth-checkbox__box::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 2px;
    width: 6px;
    height: 10px;
    border: solid #259af3;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.landing-auth-terms-info {
    display: inline-block;
    width: 18px;
    min-width: 18px;
    height: 20px;
    background: url('../landing/img/icons/information-outline.svg') no-repeat center / 18px;
    opacity: 0.7;
    transition: opacity 0.15s;
}

.landing-auth-terms-info:hover { opacity: 1; }

.landing-auth-social {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 400px;
    box-sizing: border-box;
    gap: 4%;
    padding: 15px 20px;
    background: #242d45;
    border-radius: 0 0 5px 5px;
    position: relative;
    overflow: hidden;
}

.landing-auth-social::before {
    content: '';
    position: absolute;
    opacity: 0.2;
    width: 100%;
    height: 200%;
    transform: translateY(-50%);
    left: 0;
    top: 50%;
    pointer-events: none;
    background-image: radial-gradient(closest-side at 50% 50%, #385bab 0%, #27314c 100%);
    z-index: 0;
}

.landing-auth-social-btn {
    position: relative;
    z-index: 1;
    flex: 1 1 100%;
    min-height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    border-radius: 8px;
    font-size: 14px;
    color: #fff;
    padding: 8px 10px 8px 25px;
    font-family: inherit;
    cursor: pointer;
    box-sizing: border-box;
    transition: background 0.2s, box-shadow 0.2s;
    text-decoration: none;
}

.landing-auth-social-btn span { position: relative; z-index: 1; }

.landing-auth-social-btn--fb {
    background: #3b5998;
    box-shadow: 1px 1px 10px rgba(64, 94, 157, 0);
}

.landing-auth-social-btn--fb::before {
    content: '';
    position: absolute;
    left: -3px;
    top: -1px;
    width: 38px;
    height: calc(100% + 2px);
    background: url('../landing/img/logos/social-fb.svg') no-repeat 50% 50% / 16px 17px;
}

.landing-auth-social-btn--fb:hover {
    background: #405e9d;
    box-shadow: 1px 1px 10px #405e9d;
}

.landing-auth-social-btn--gp {
    background: #ea4335;
    box-shadow: 1px 1px 10px rgba(239, 72, 58, 0);
    padding-left: 25px;
}

.landing-auth-social-btn--gp::before {
    content: '';
    position: absolute;
    left: 3px;
    top: -1px;
    width: 38px;
    height: calc(100% + 2px);
    background: url('../landing/img/logos/social-gp.svg') no-repeat 85% 50% / 26px 18px;
}

.landing-auth-social-btn--gp:hover {
    background: #ef483a;
    box-shadow: 1px 1px 10px #ef483a;
}

@media (max-width: 1024px) {
    .landing-auth-carousel { display: none; }
    .landing-auth-modal__box { background: transparent; }
}

@media (max-width: 550px) {
    .landing-auth-overlay { background: rgba(32, 41, 63, 0.9); }
    .landing-auth-modal { width: auto; max-width: calc(100% - 20px); }
    .landing-auth-modal__box { width: 320px; min-height: 240px; }
    .landing-auth-close { top: 20px; right: 20px; }
    .landing-auth-panel,
    .landing-auth-tabs,
    .landing-auth-slider,
    .landing-auth-social { width: 320px; flex-basis: 320px; }
    .landing-auth-slides { width: 640px; }
    .landing-auth-slide { width: 320px; min-height: 240px; }
    .landing-auth-tabs { margin: 0 auto; }
    .landing-auth-slider { margin: 0 auto; position: relative; }
    .landing-auth-form-group--split { flex-wrap: wrap; }
    .landing-auth-form-group--split .landing-auth-submit { width: 100%; margin-top: 8px; }
    .landing-auth-social-btn { font-size: 12px; }
    .landing-auth-social-btn--gp { padding: 8px 5px 8px 22px; }
    .landing-auth-social-btn--gp::before { width: 28px; background-size: 23px 15px; }
    .landing-auth-social-btn--fb::before { width: 35px; background-size: 14px 14px; }
}

/* Full-width inner pages sit under the floating header like EO */
.landing-main:has(.landing-page--full) { padding-top: 0; }
.landing-page--full { position: relative; z-index: 2; }
.landing-page-body { position: relative; }

.landing-section-heading {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 38px;
    font-weight: 200;
    line-height: 1.2;
    margin: 0 0 22px;
}
.landing-section-heading--center { justify-content: center; text-align: center; }
@media (max-width: 550px) {
    .landing-section-heading { font-size: 28px; margin-bottom: 18px; }
}

.landing-heading-icon {
    display: inline-flex;
    flex-shrink: 0;
    width: 46px;
    height: 1em;
    position: relative;
    vertical-align: text-bottom;
}
.landing-heading-icon--sm { width: 26px; }
.landing-heading-icon i {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-55%);
    width: 100%;
    padding-top: 100%;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: 0 50%;
    display: block;
}

.landing-muted { color: var(--muted); }

.landing-btn--block { width: 100%; display: flex; justify-content: center; }

.landing-wave-divider {
    height: 80px;
    margin: 20px 0 40px;
    background: url('../landing/img/bg/wave.png') center / cover no-repeat;
}
@supports (background-image: url('../landing/img/bg/wave.webp')) {
    .landing-wave-divider { background-image: url('../landing/img/bg/wave.webp'); }
}

/* About page */
.landing-about-hero {
    text-align: center;
    height: 520px;
    background: url('../landing/img/bg/bg-about-header.jpg') center / cover no-repeat;
    display: flex;
    align-items: center;
}
@supports (background-image: url('../landing/img/bg/bg-about-header.webp')) {
    .landing-about-hero { background-image: url('../landing/img/bg/bg-about-header.webp'); }
}
.landing-about-hero__inner { display: flex; align-items: center; height: 100%; justify-content: center; }
.landing-about-hero__title {
    font-size: 42px;
    font-style: italic;
    font-weight: 200;
    max-width: 70%;
    margin: 0 auto;
    position: relative;
}
.landing-about-hero__title::before,
.landing-about-hero__title::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 22px;
    background-repeat: no-repeat;
}
.landing-about-hero__title::before {
    left: -28px;
    bottom: -35px;
    background-image: url('../landing/img/graphics/quote.svg');
}
.landing-about-hero__title::after {
    top: -28px;
    right: -40px;
    background-image: url('../landing/img/graphics/quote-close.svg');
}
.landing-about-hero__line {
    position: relative;
    display: inline;
}
.landing-about-hero__line::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: -10px;
    width: 120px;
    height: 5px;
    background: url('../landing/img/graphics/heading-line.svg') no-repeat;
}
@media (max-width: 550px) {
    .landing-about-hero { height: 350px; padding: 0 20px; }
    .landing-about-hero__title { max-width: 90%; font-size: 32px; }
    .landing-about-hero__title::before { left: -10px; bottom: -30px; }
    .landing-about-hero__title::after { top: -26px; right: -10px; }
}

.landing-about-section {
    background: #1e2539;
    padding-bottom: 40px;
}
.landing-about-section--compact { padding-bottom: 20px; }
.landing-about-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}
.landing-about-grid__left { width: 415px; max-width: 100%; flex: 1 1 360px; }
.landing-about-grid__right { width: 493px; max-width: 100%; flex: 1 1 360px; padding-top: 50px; }
@media (max-width: 1024px) {
    .landing-about-grid__right { padding-top: 20px; }
}
.landing-about-building {
    width: 100%;
    height: 200px;
    margin-top: -40px;
    margin-bottom: 35px;
    border-radius: 8px;
    border: 1px solid #313b59;
    box-shadow: 0 0 20px rgba(12, 16, 22, 0.1);
    background: #2d3651 url('../landing/img/bg/about-building.jpg') center / cover no-repeat;
}
@supports (background-image: url('../landing/img/bg/about-building.webp')) {
    .landing-about-building { background-image: url('../landing/img/bg/about-building.webp'); }
}
.landing-about-intro p { margin-bottom: 1em; }

.landing-value-row {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    text-align: left;
}
.landing-value-row__num {
    width: 60px;
    flex-shrink: 0;
    font-size: 32px;
    line-height: 40px;
    text-align: center;
    position: relative;
}
.landing-value-row__num::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 5%;
    width: 90%;
    height: 3px;
    border-radius: 5px;
    background: #259efa;
    opacity: 0.3;
    transform: translateY(-50%);
}
.landing-value-row__text {
    color: var(--muted);
    letter-spacing: 0.2px;
    line-height: 22px;
    width: calc(90% - 40px);
}
.landing-value-row__text b { color: #fff; }

.landing-about-highlights {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 20px;
}
.landing-about-highlight { width: 22%; min-width: 200px; flex: 1 1 200px; }
.landing-about-highlight__title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    margin-bottom: 0.5em;
}

.landing-about-timeline-band {
    background: #1d2335;
    padding: 30px 0;
}
.landing-about-timeline {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}
.landing-about-timeline__item {
    max-width: 300px;
    padding: 20px;
    flex: 0 0 280px;
}

.landing-about-contact {
    background: #1e2539;
    padding: 40px 0 60px;
    text-align: center;
}
.landing-about-contact__grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    width: 75%;
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}
.landing-about-contact__support,
.landing-about-contact__form-wrap { width: 50%; min-width: 280px; flex: 1 1 320px; }
.landing-contact-card,
.landing-contact-form,
.landing-contact-chat-strip {
    background: #263047;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}
.landing-contact-card::before,
.landing-contact-chat-strip::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(-180deg, #369bf4 0%, #1c56bf 100%);
    opacity: 0.7;
}
.landing-contact-card { padding: 16px 20px; margin-bottom: 10px; }
.landing-contact-card__label { font-size: 14px; color: var(--muted); margin: 0 0 0.25em; }
.landing-contact-card__meta { margin-bottom: 1.5em; }
.landing-contact-form { padding: 20px; }
.landing-contact-form input,
.landing-contact-form textarea {
    width: 100%;
    background: #20293e;
    border: 1px solid rgba(47, 59, 81, 0.5);
    border-radius: 4px;
    color: #fff;
    font: inherit;
    font-size: 14px;
    padding: 0 12px;
    box-sizing: border-box;
}
.landing-contact-form input { height: 36px; }
.landing-contact-form textarea { padding: 12px; min-height: 120px; resize: vertical; }
.landing-contact-form__row { margin-bottom: 16px; }
.landing-contact-form__split {
    display: flex;
    gap: 20px;
    align-items: center;
}
.landing-contact-form__split input { flex: 1 1 55%; }
.landing-contact-form__split .landing-btn { flex: 0 0 calc(45% - 20px); min-height: 36px; }
.landing-contact-chat-strip {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 20px;
    margin-top: 20px;
    background-image: radial-gradient(closest-side at 50% 130%, #385bab 0%, #27314c 100%);
}
.landing-about-contact__footnote { margin-top: 40px; width: 45%; margin-left: auto; margin-right: auto; }
@media (max-width: 550px) {
    .landing-about-contact__grid { width: 100%; }
    .landing-about-contact__footnote { width: 100%; }
    .landing-contact-form__split { flex-direction: column; }
    .landing-contact-form__split .landing-btn { width: 100%; flex: 1 1 auto; }
}

/* Pricing / account types */
.landing-pricing-hero {
    min-height: 280px;
    padding: 40px 0 80px;
    background: url('../landing/img/bg/pricing-hero.jpg') center top / cover no-repeat;
}
.landing-pricing-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    padding-top: 20px;
}
.landing-pricing-card {
    min-width: 140px;
    padding: 18px 16px;
    border-radius: 8px;
    background: var(--tier-color);
    color: var(--tier-text);
    text-align: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}
.landing-pricing-card__name { display: block; font-size: 13px; text-transform: uppercase; letter-spacing: 0.06em; }
.landing-pricing-card__amount { display: block; font-size: 22px; font-weight: 600; margin-top: 6px; }
.landing-pricing-compare { background: #1e2539; padding: 0 0 40px; margin-top: -50px; }
.landing-pricing-compare__title {
    display: inline-block;
    background: #263047;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 32px;
    font-weight: 200;
    margin: 0 0 24px;
}
.landing-pricing-table-wrap { overflow-x: auto; }
.landing-pricing-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}
.landing-pricing-table th,
.landing-pricing-table td {
    padding: 14px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    text-align: center;
    color: var(--muted);
}
.landing-pricing-table th:first-child,
.landing-pricing-table td:first-child { text-align: left; color: #e8eef7; min-width: 220px; }
.landing-pricing-table thead th { color: #fff; font-weight: 600; }
.landing-pricing-note { margin-top: 20px; font-size: 13px; }
.landing-pricing-withdraw {
    background: #1e2539;
    padding: 40px 0 60px;
}
.landing-pricing-withdraw__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}
.landing-pricing-pay-logos { margin-top: 30px; max-width: 70%; }
.landing-pricing-card-img img { max-width: 100%; height: auto; }
@media (max-width: 900px) {
    .landing-pricing-withdraw__grid { grid-template-columns: 1fr; text-align: center; }
    .landing-pricing-pay-logos { margin: 30px auto 0; }
}

/* Social trading */
.landing-social-hero {
    background: url('../landing/img/bg/social-bg.jpg') center / cover no-repeat;
    padding: 60px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
@supports (background-image: url('../landing/img/bg/social-bg.webp')) {
    .landing-social-hero { background-image: url('../landing/img/bg/social-bg.webp'); }
}
.landing-social-hero__title { justify-content: center; }
.landing-social-hero__lead { max-width: 560px; margin: 0 auto 30px; }
.landing-social-globe {
    width: 200px;
    height: 200px;
    margin: 0 auto;
    position: relative;
}
.landing-social-globe__ring {
    position: absolute;
    inset: 0;
    border: 1px solid rgba(47, 150, 240, 0.35);
    border-radius: 50%;
    animation: landing-globe-pulse 4s ease-in-out infinite;
}
.landing-social-globe__ring--2 { inset: 15%; animation-delay: 0.5s; }
.landing-social-globe__ring--3 { inset: 30%; animation-delay: 1s; }
@keyframes landing-globe-pulse {
    0%, 100% { opacity: 0.35; transform: scale(1); }
    50% { opacity: 0.9; transform: scale(1.03); }
}
.landing-social-leaderboard { background: #1e2539; padding: 40px 0 60px; }
.landing-social-traders {
    display: grid;
    gap: 12px;
    margin: 28px 0 32px;
}
.landing-social-trader {
    display: grid;
    grid-template-columns: 48px 56px 48px 1fr auto;
    gap: 14px;
    align-items: center;
    padding: 14px 18px;
    background: #263047;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}
.landing-social-trader__rank { font-size: 18px; color: #279efa; font-weight: 600; }
.landing-social-trader__delta { font-size: 12px; color: #32a88a; }
.landing-social-trader__avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2f96f0, #7d3fe4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}
.landing-social-trader__info { display: flex; flex-direction: column; gap: 2px; }
.landing-social-trader__profit { text-align: right; }
.landing-social-trader__profit-val { color: #32a88a; display: block; }
@media (max-width: 550px) {
    .landing-social-trader { grid-template-columns: 40px 1fr auto; }
    .landing-social-trader__delta { display: none; }
}

/* FAQ page */
.limiter--faq {
    max-width: 820px;
}

.landing-page--faq .landing-page-head {
    text-align: center;
    margin-bottom: 36px;
}

.landing-faq-stage {
    position: relative;
}

.landing-faq-view {
    display: none;
}

.landing-faq-view.is-active {
    display: block;
    animation: landing-faq-fade 0.25s ease;
}

@keyframes landing-faq-fade {
    from { opacity: 0; transform: translateY(6px); }
    to { opacity: 1; transform: translateY(0); }
}

.landing-faq-lead {
    margin: 0 0 20px;
    text-align: center;
    color: var(--muted);
    font-size: 15px;
}

.landing-faq-cat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 14px;
}

.landing-faq-cat-card {
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
    padding: 18px 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    background: rgba(27, 34, 52, 0.72);
    color: inherit;
    text-align: left;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s, transform 0.2s;
}

.landing-faq-cat-card:hover {
    border-color: rgba(59, 130, 246, 0.45);
    background: rgba(34, 44, 68, 0.9);
    transform: translateY(-2px);
}

.landing-faq-cat-card:active {
    transform: translateY(0);
}

.landing-faq-cat-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
}

.landing-faq-cat-icon svg {
    width: 22px;
    height: 22px;
}

.landing-faq-cat-icon--rocket { color: #fcd34d; background: rgba(251, 191, 36, 0.14); }
.landing-faq-cat-icon--chart { color: #6ee7b7; background: rgba(16, 185, 129, 0.14); }
.landing-faq-cat-icon--wallet { color: #c4b5fd; background: rgba(167, 139, 250, 0.14); }
.landing-faq-cat-icon--tools { color: #fda4af; background: rgba(244, 114, 182, 0.14); }
.landing-faq-cat-icon--help { color: #93c5fd; background: rgba(59, 130, 246, 0.14); }

.landing-faq-cat-body {
    flex: 1;
    min-width: 0;
}

.landing-faq-cat-body strong {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 2px;
}

.landing-faq-cat-body span {
    font-size: 13px;
    color: var(--muted);
}

.landing-faq-cat-chevron {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    color: var(--muted);
    opacity: 0.7;
}

.landing-faq-back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 18px;
    padding: 8px 14px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    color: var(--muted);
    font-size: 14px;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.landing-faq-back svg {
    width: 16px;
    height: 16px;
}

.landing-faq-back:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.18);
}

.landing-faq-detail-title {
    margin: 0 0 24px;
    font-size: 1.35rem;
    font-weight: 600;
    color: #fff;
}

.landing-faq-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.landing-faq-block {
    padding: 22px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.landing-faq-block:first-child {
    padding-top: 0;
}

.landing-faq-block:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.landing-faq-block__question {
    margin: 0 0 12px;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    color: #fff;
}

.landing-faq-block__answer {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.65;
}

.landing-faq-block__answer p {
    margin: 0 0 0.85em;
}

.landing-faq-block__answer p:last-child {
    margin-bottom: 0;
}

.landing-faq-empty {
    text-align: center;
    color: var(--muted);
    padding: 40px 0;
}

/* Policy pages */
.landing-policy-content {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.7;
}

.landing-policy-updated {
    margin-top: 32px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 13px;
    color: var(--muted);
}

@media (max-width: 600px) {
    .landing-faq-cat-grid {
        grid-template-columns: 1fr;
    }

    .landing-faq-detail-title {
        font-size: 1.2rem;
    }
}

/* Features enhancements */
.landing-features-intro { margin-bottom: 10px; }
.landing-feature-shots--stack {
    flex-direction: column;
    align-items: flex-end;
}
.landing-platform-features { display: flex; flex-direction: column; gap: 18px; }
.landing-platform-feature {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}
.landing-platform-feature h3 { margin: 0 0 4px; font-size: 16px; }
.landing-platform-feature p { margin: 0; color: var(--muted); }
.landing-store-buttons {
    display: flex;
    gap: 12px;
    margin-top: 16px;
    flex-wrap: wrap;
}
.landing-store-buttons img { height: 44px; width: auto; }
.landing-platform-downloads { margin-top: 10px; }
.landing-web-banner--features {
    background-size: cover;
    background-position: center;
    min-height: 180px;
}

/* Islamic account prose */
.landing-islamic-prose { color: #e8eef7; max-width: 900px; }
.landing-islamic-prose h1 { font-size: 38px; font-weight: 200; margin-bottom: 20px; }
.landing-islamic-prose h3 { font-size: 18px; margin: 24px 0 12px; }
.landing-islamic-prose p,
.landing-islamic-prose li { color: var(--muted); line-height: 1.7; }
.landing-islamic-prose b { color: #fff; }
.landing-islamic-prose ul,
.landing-islamic-prose ol { padding-left: 1.4em; margin: 0 0 1em; }

/* Education */
.landing-edu-breadcrumbs {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    color: var(--muted);
    font-size: 14px;
}

.landing-edu-breadcrumbs li {
    display: inline-block;
}

.landing-edu-breadcrumbs li::after {
    content: '/';
    margin: 0 1.5ex;
}

.landing-edu-breadcrumbs li:last-child::after {
    display: none;
}

.landing-edu-breadcrumbs a {
    color: var(--muted);
    text-decoration: none;
}

.landing-edu-breadcrumbs a:hover {
    color: #39b2ff;
}

.landing-education-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px 0;
    margin-top: 30px;
}

.landing-education-grid--eo::after {
    content: '';
    width: calc(33.3333% - 20px);
}

.landing-education-card--eo {
    width: calc(33.3333% - 20px);
    margin-bottom: 10px;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 1px 15px rgba(12, 16, 22, 0.3), inset 0 0 0 1px #313b59;
}

.landing-education-card__link {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 200px;
    text-align: center;
    color: inherit;
    text-decoration: none;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #212a40;
}

.landing-education-card__spacer {
    display: block;
    height: 150px;
}

.landing-education-card__label {
    display: block;
    padding: 10px 8px;
    background: rgba(33, 42, 64, 0.7);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.35;
}

.landing-education-card--eo:hover .landing-education-card__label {
    background: rgba(33, 42, 64, 0.9);
}

.landing-edu-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin: 40px 0;
    padding: 18px 20px;
    border-radius: 5px;
    background: rgba(0, 0, 0, 0.15);
    color: #fff;
}

.landing-edu-cta__text {
    font-size: 18px;
}

.landing-edu-cta__btn {
    padding: 0 30px;
    height: 48px;
    border: 1px solid #2f96f0;
    border-radius: 8px;
    background: #2f96f0;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    white-space: nowrap;
}

.landing-edu-cta__btn:hover {
    background: #39b2ff;
    border-color: #39b2ff;
}

.landing-edu-article {
    max-width: 654px;
    margin: 0 auto 40px;
    color: var(--muted);
}

.landing-edu-article__title {
    margin: 0 0 24px;
    font-size: 2rem;
    font-weight: 200;
    line-height: 1.2;
    color: #fff;
    text-align: center;
}

.landing-edu-article__cover {
    display: block;
    width: 100%;
    max-width: 100%;
    margin: 0 auto 1.5em;
    border-radius: 16px;
}

.landing-edu-article__video {
    margin: 0 auto 1.5em;
    max-width: 640px;
}

.landing-edu-article__video iframe,
.landing-edu-article__video video {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    border: none;
    border-radius: 12px;
}

.landing-edu-article__body {
    line-height: 1.65;
}

.landing-prose--education h1 {
    margin: 0 0 0.75em;
    font-size: 2rem;
    font-weight: 200;
    line-height: 1.2;
    color: #fff;
}

.landing-prose--education h2 {
    margin: 1.5em 0 0.75em;
    font-size: 1.25rem;
    font-weight: 400;
    color: #fff;
}

.landing-prose--education p {
    margin: 0 0 1em;
    color: var(--muted);
}

.landing-prose--education img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 1em auto;
    border-radius: 16px;
}

.landing-prose--education ol,
.landing-prose--education ul {
    margin: 0 0 1em;
    padding-left: 4ex;
    color: var(--muted);
}

.landing-prose--education li {
    margin-bottom: 0.75em;
}

.landing-edu-article__body p {
    margin: 0 0 1em;
}

.landing-edu-nav {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    max-width: 654px;
    margin: 0 auto 30px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.landing-edu-nav__link {
    display: block;
    max-width: 48%;
    padding: 14px 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: inherit;
    text-decoration: none;
    transition: border-color 0.2s, background 0.2s;
}

.landing-edu-nav__link:hover {
    border-color: rgba(47, 150, 240, 0.45);
    background: rgba(47, 150, 240, 0.08);
}

.landing-edu-nav__link--next {
    margin-left: auto;
    text-align: right;
}

.landing-edu-nav__label {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--muted);
    margin-bottom: 4px;
}

.landing-edu-nav__title {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    line-height: 1.35;
}

@media (max-width: 1024px) {
    .landing-education-card--eo {
        width: calc(50% - 15px);
    }

    .landing-education-grid--eo::after {
        width: calc(50% - 15px);
    }
}

@media (max-width: 600px) {
    .landing-education-card--eo,
    .landing-education-grid--eo::after {
        width: 100%;
    }

    .landing-edu-cta {
        flex-direction: column;
        text-align: center;
    }

    .landing-edu-cta__btn {
        width: 100%;
        max-width: 280px;
    }

    .landing-edu-nav {
        flex-direction: column;
    }

    .landing-edu-nav__link {
        max-width: 100%;
    }

    .landing-edu-nav__link--next {
        text-align: left;
        margin-left: 0;
    }
}

/* Tutorials page */
.landing-page--tutorials .landing-page-head--tutorials {
    margin-bottom: 25px;
}

.landing-tutorials-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
}

.landing-tutorials-grid::after {
    content: '';
    width: calc(33.3333% - 20px);
}

.landing-tutorial-card {
    width: calc(33.3333% - 20px);
    margin-bottom: 30px;
    min-height: 250px;
}

.landing-tutorial-card__btn {
    position: relative;
    display: block;
    width: 100%;
    height: 250px;
    min-height: 250px;
    padding: 0;
    border: 1px solid #2b374d;
    border-radius: 5px;
    background: #2b3345;
    box-shadow: 0 1px 15px rgba(12, 16, 22, 0.2), inset 0 0 0 1px rgba(255, 255, 255, 0.07);
    cursor: pointer;
    overflow: hidden;
    text-align: left;
    transition: background 0.2s;
}

.landing-tutorial-card__btn:hover,
.landing-tutorial-card__btn:focus {
    background: #30384a;
    outline: none;
}

.landing-tutorial-card__image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: left center;
}

.landing-tutorial-card__title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0;
    padding: 9px 12px 8px 37px;
    min-height: 20px;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.35;
    z-index: 1;
    background: rgba(33, 42, 64, 0.5);
    color: #fff;
}

.landing-tutorial-card__title::before {
    position: absolute;
    left: 9px;
    top: 11px;
    content: '';
    display: block;
    width: 20px;
    height: 20px;
    opacity: 0.35;
    transition: opacity 0.2s;
    background-image: url('../landing/img/icons/play.svg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.landing-tutorial-card__btn:hover .landing-tutorial-card__title::before,
.landing-tutorial-card__btn:focus .landing-tutorial-card__title::before {
    opacity: 1;
}

.landing-tutorial-portal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    pointer-events: none;
}

.landing-tutorial-portal[hidden] {
    display: none !important;
}

.landing-tutorial-portal.is-open {
    pointer-events: auto;
}

.landing-tutorial-overlay {
    position: absolute;
    inset: 0;
    background: rgba(39, 46, 74, 0.8);
    opacity: 0;
    transition: opacity 0.3s;
}

.landing-tutorial-portal.is-open .landing-tutorial-overlay {
    opacity: 1;
}

.landing-tutorial-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 10001;
    transform: translate(-50%, -46%);
    opacity: 0;
    transition: transform 0.3s, opacity 0.3s;
}

.landing-tutorial-portal.is-open .landing-tutorial-modal {
    transform: translate(-50%, -50%);
    opacity: 1;
}

.landing-tutorial-modal__frame {
    position: relative;
    width: min(456px, calc(100vw - 40px), calc((100vh - 80px) * 9 / 16));
    aspect-ratio: 9 / 16;
    max-height: calc(100vh - 80px);
}

.landing-tutorial-modal__close {
    position: absolute;
    top: -35px;
    right: -35px;
    z-index: 10;
    width: 30px;
    height: 30px;
    padding: 0;
    border: none;
    background: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.landing-tutorial-modal__close:hover,
.landing-tutorial-modal__close:focus {
    opacity: 1;
    outline: none;
}

.landing-tutorial-modal__close img {
    display: block;
    width: 20px;
    height: 20px;
}

.landing-tutorial-modal__player {
    width: 100%;
    height: 100%;
    background: #000;
}

.landing-tutorial-modal__player iframe,
.landing-tutorial-modal__player video {
    display: block;
    width: 100%;
    height: 100%;
    border: none;
    background: #000;
    object-fit: cover;
}

.landing-tutorial-modal__empty {
    margin: 0;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    text-align: center;
    color: #a9b5cb;
    background: #151b27;
}

@media (max-width: 1024px) {
    .landing-tutorial-card {
        width: calc(50% - 15px);
    }

    .landing-tutorials-grid::after {
        width: calc(50% - 15px);
    }
}

@media (max-width: 550px) {
    .landing-tutorial-card {
        width: 100%;
    }

    .landing-tutorials-grid::after {
        display: none;
    }

    .landing-tutorial-modal__frame {
        width: min(456px, calc(100vw - 24px), calc((100vh - 48px) * 9 / 16));
        max-height: calc(100vh - 48px);
    }

    .landing-tutorial-modal__close {
        top: -30px;
        right: -8px;
    }
}
