.wl-page {
    --wl-bg: #050b1d;
    --wl-surface: #0a1532;
    --wl-surface-strong: #101f43;
    --wl-border: rgba(100, 164, 255, .2);
    --wl-border-bright: rgba(64, 202, 255, .42);
    --wl-text: #f7f9ff;
    --wl-muted: #a9b8d6;
    --wl-blue: #4d8dff;
    --wl-cyan: #45d7ef;
    --wl-warm: #ff7a45;
    background: var(--wl-bg);
    color: var(--wl-text);
    font-family: "Segoe UI Variable", "Segoe UI", sans-serif;
    overflow: hidden;
}

.wl-page *,
.wl-page *::before,
.wl-page *::after {
    box-sizing: border-box;
}

.wl-shell {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.wl-hero {
    position: relative;
    padding: 112px 0 92px;
    background:
        radial-gradient(circle at 14% 25%, rgba(77, 141, 255, .22), transparent 34%),
        radial-gradient(circle at 86% 36%, rgba(69, 215, 239, .12), transparent 30%),
        linear-gradient(145deg, #071027 0%, #050b1d 68%);
}

.wl-hero::before {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px);
    background-size: 56px 56px;
    content: "";
    mask-image: linear-gradient(to bottom, #000, transparent 85%);
    pointer-events: none;
}

.wl-hero__grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(360px, .8fr);
    gap: clamp(44px, 7vw, 96px);
    align-items: center;
}

.wl-kicker {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #8fdffc;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .13em;
    line-height: 1.2;
    text-transform: uppercase;
}

.wl-kicker::before {
    width: 26px;
    height: 1px;
    background: currentColor;
    content: "";
}

.wl-hero h1 {
    max-width: 820px;
    margin: 22px 0 24px;
    color: var(--wl-text);
    font-size: clamp(2.55rem, 5.3vw, 5rem);
    font-weight: 720;
    letter-spacing: -.055em;
    line-height: .99;
}

.wl-hero__lead {
    max-width: 720px;
    margin: 0;
    color: var(--wl-muted);
    font-size: clamp(1.05rem, 1.6vw, 1.25rem);
    line-height: 1.65;
}

.wl-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}

.wl-button {
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    padding: 12px 22px;
    border: 1px solid transparent;
    border-radius: 10px;
    color: #fff;
    font-size: .96rem;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    transition: transform .2s ease, border-color .2s ease, background-color .2s ease;
}

.wl-button:hover {
    color: #fff;
    transform: translateY(-2px);
}

.wl-button--primary {
    color: #07142f;
    background: linear-gradient(135deg, var(--wl-warm), #ff5c38);
    box-shadow: 0 12px 32px rgba(255, 103, 57, .2);
}

.wl-button--primary:hover {
    color: #07142f;
}

.wl-button--secondary {
    border-color: var(--wl-border-bright);
    background: rgba(11, 27, 61, .72);
}

.wl-button--secondary:hover {
    border-color: var(--wl-cyan);
    background: rgba(23, 48, 96, .88);
}

.wl-button:focus-visible,
.wl-trust-card a:focus-visible,
.wl-faq__trigger:focus-visible {
    outline: 3px solid #fff;
    outline-offset: 4px;
}

.wl-hero__signal {
    position: relative;
    padding: 26px;
    border: 1px solid var(--wl-border-bright);
    border-radius: 20px;
    background: linear-gradient(150deg, rgba(15, 35, 75, .88), rgba(7, 17, 41, .96));
    box-shadow: 0 30px 80px rgba(0, 0, 0, .35);
}

.wl-hero__signal::after {
    position: absolute;
    right: 24px;
    bottom: -1px;
    left: 24px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--wl-cyan), transparent);
    content: "";
}

.wl-signal__top {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #d9e7ff;
    font-size: .92rem;
    font-weight: 650;
}

.wl-live-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #43e39f;
    box-shadow: 0 0 0 6px rgba(67, 227, 159, .1);
}

.wl-signal__flow {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 10px;
    align-items: center;
    margin: 30px 0;
}

.wl-signal__flow div {
    display: grid;
    min-width: 0;
    min-height: 92px;
    place-items: center;
    padding: 12px 6px;
    border: 1px solid var(--wl-border);
    border-radius: 14px;
    background: rgba(255, 255, 255, .035);
}

.wl-signal__flow span {
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    border-radius: 12px;
    background: rgba(77, 141, 255, .18);
    color: #b8d2ff;
    font-weight: 800;
}

.wl-signal__flow small {
    color: #8191b2;
    font-size: .7rem;
    letter-spacing: .05em;
}

.wl-signal__flow i {
    color: var(--wl-cyan);
    font-style: normal;
}

.wl-hero__signal p {
    margin: 0;
    color: var(--wl-muted);
    font-size: .9rem;
    line-height: 1.55;
}

.wl-section {
    padding: 96px 0;
}

.wl-section--tint {
    border-top: 1px solid rgba(255, 255, 255, .045);
    border-bottom: 1px solid rgba(255, 255, 255, .045);
    background: #071027;
}

.wl-heading {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, .72fr);
    gap: 64px;
    align-items: end;
    margin-bottom: 42px;
}

.wl-heading h2,
.wl-exchanges h2,
.wl-faq-layout h2,
.wl-final h2 {
    margin: 16px 0 0;
    color: var(--wl-text);
    font-size: clamp(2rem, 3.7vw, 3.3rem);
    font-weight: 700;
    letter-spacing: -.04em;
    line-height: 1.08;
}

.wl-heading > p,
.wl-exchanges__copy p,
.wl-final p {
    margin: 0;
    color: var(--wl-muted);
    font-size: 1.03rem;
    line-height: 1.7;
}

.wl-grid {
    display: grid;
    gap: 16px;
}

.wl-grid--four {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.wl-grid--three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.wl-card {
    min-width: 0;
    min-height: 190px;
    padding: 26px;
    border: 1px solid var(--wl-border);
    border-radius: 16px;
    background: linear-gradient(150deg, rgba(15, 31, 66, .76), rgba(8, 18, 43, .92));
}

.wl-card h3,
.wl-flow__step h3 {
    margin: 0 0 12px;
    color: var(--wl-text);
    font-size: 1.08rem;
    font-weight: 680;
    line-height: 1.35;
}

.wl-card p,
.wl-flow__step p,
.wl-trust-card p {
    margin: 0;
    color: var(--wl-muted);
    font-size: .94rem;
    line-height: 1.65;
}

.wl-flow {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    counter-reset: wl-flow;
    gap: 1px;
    overflow: hidden;
    border: 1px solid var(--wl-border);
    border-radius: 18px;
    background: var(--wl-border);
}

.wl-flow__step {
    min-width: 0;
    min-height: 205px;
    padding: 28px;
    background: #09142e;
}

.wl-flow__step h3 {
    color: #a9c9ff;
}

.wl-section--exchanges {
    background:
        radial-gradient(circle at 78% 48%, rgba(69, 215, 239, .1), transparent 28%),
        #050b1d;
}

.wl-exchanges {
    display: grid;
    grid-template-columns: minmax(280px, .72fr) minmax(0, 1.28fr);
    gap: clamp(48px, 8vw, 110px);
    align-items: center;
}

.wl-exchanges__copy strong {
    display: block;
    margin-top: 26px;
    color: #d6e7ff;
    font-size: .98rem;
}

.wl-exchange-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-content: center;
}

.wl-exchange {
    display: inline-flex;
    min-height: 54px;
    align-items: center;
    padding: 13px 20px;
    border: 1px solid var(--wl-border);
    border-radius: 999px;
    background: rgba(13, 29, 64, .75);
    color: #e9f2ff;
    font-size: .96rem;
    font-weight: 680;
    letter-spacing: .01em;
}

#exchanges a.wl-exchange {
    color: #e9f2ff;
    text-decoration: none;
    transition:
        border-color .2s ease,
        background-color .2s ease,
        color .2s ease,
        transform .2s ease;
}

#exchanges a.wl-exchange:hover {
    border-color: var(--wl-cyan);
    background: rgba(23, 48, 96, .92);
    color: #fff;
    transform: translateY(-2px);
}

#exchanges a.wl-exchange:focus-visible {
    outline: 3px solid #fff;
    outline-offset: 3px;
    border-color: var(--wl-cyan);
}

.wl-exchange::before {
    width: 7px;
    height: 7px;
    margin-right: 10px;
    border-radius: 50%;
    background: var(--wl-cyan);
    box-shadow: 0 0 14px rgba(69, 215, 239, .75);
    content: "";
}

.wl-section--trust {
    padding-top: 26px;
}

.wl-trust-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.wl-trust-card {
    padding: 34px;
    border: 1px solid var(--wl-border);
    border-radius: 18px;
    background: #09142e;
}

.wl-trust-card > span {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    margin-bottom: 24px;
    border: 1px solid var(--wl-border-bright);
    border-radius: 10px;
    color: var(--wl-cyan);
    font-size: 1.1rem;
    font-weight: 800;
}

.wl-trust-card h2 {
    margin: 0 0 14px;
    color: var(--wl-text);
    font-size: 1.42rem;
    font-weight: 690;
}

.wl-trust-card a {
    display: inline-flex;
    margin-top: 20px;
    color: #8fdffc;
    font-weight: 650;
    text-decoration: none;
}

.wl-trust-card a:hover {
    color: #fff;
}

.wl-faq-layout {
    display: grid;
    grid-template-columns: minmax(260px, .55fr) minmax(0, 1fr);
    gap: clamp(48px, 8vw, 112px);
    align-items: start;
}

.wl-faq-list {
    border-top: 1px solid var(--wl-border);
}

.wl-faq {
    border-bottom: 1px solid var(--wl-border);
}

.wl-faq__heading {
    margin: 0;
}

.wl-faq__trigger {
    display: block;
    position: relative;
    width: 100%;
    margin: 0;
    padding: 24px 46px 24px 0;
    border: 0;
    background: transparent;
    color: var(--wl-text);
    cursor: pointer;
    font-family: inherit;
    font-size: 1.02rem;
    font-weight: 650;
    line-height: 1.45;
    text-align: left;
}

.wl-faq__trigger::before,
.wl-faq__trigger::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 9px;
    width: 17px;
    height: 2px;
    border-radius: 2px;
    background: var(--wl-cyan);
    transform: translateY(-50%);
    transform-origin: center;
    transition: opacity .18s ease, transform .22s ease;
}

.wl-faq__trigger::after {
    transform: translateY(-50%) rotate(90deg);
}

.wl-faq__trigger[aria-expanded="true"]::before {
    transform: translateY(-50%) rotate(180deg);
}

.wl-faq__trigger[aria-expanded="true"]::after {
    opacity: 0;
    transform: translateY(-50%) rotate(90deg) scaleX(0);
}

.wl-faq__collapse.collapsing {
    transition: height .35s ease;
}

.wl-faq__body {
    opacity: 1;
    transform: scale(1);
    transform-origin: top left;
    transition: opacity .2s ease, transform .2s ease;
}

.wl-faq__collapse:not(.show) .wl-faq__body {
    opacity: 0;
    transform: scale(.97);
}

.wl-faq p {
    max-width: 760px;
    margin: -4px 48px 24px 0;
    color: var(--wl-muted);
    line-height: 1.65;
}

.wl-final {
    padding: 32px 0 104px;
}

.wl-final__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 48px;
    align-items: center;
    padding: clamp(32px, 5vw, 58px);
    border: 1px solid var(--wl-border-bright);
    border-radius: 22px;
    background:
        linear-gradient(120deg, rgba(77, 141, 255, .18), transparent 52%),
        #0a1733;
}

.wl-final h2 {
    margin-top: 0;
    font-size: clamp(1.8rem, 3.2vw, 2.8rem);
}

.wl-final p {
    max-width: 700px;
    margin-top: 16px;
}

.wl-final .wl-actions {
    flex-wrap: nowrap;
    margin-top: 0;
}

@media (max-width: 991px) {
    .wl-hero__grid,
    .wl-heading,
    .wl-exchanges,
    .wl-faq-layout,
    .wl-final__inner {
        grid-template-columns: 1fr;
    }

    .wl-hero__signal {
        max-width: 620px;
    }

    .wl-grid--four,
    .wl-grid--three {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .wl-flow {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .wl-heading {
        gap: 24px;
        align-items: start;
    }

    .wl-final .wl-actions {
        flex-wrap: wrap;
    }
}

@media (max-width: 767px) {
    .wl-shell {
        width: min(100% - 30px, 1180px);
    }

    .wl-hero {
        padding: 76px 0 64px;
    }

    .wl-section {
        padding: 72px 0;
    }

    .wl-grid--four,
    .wl-grid--three,
    .wl-flow,
    .wl-trust-grid {
        grid-template-columns: 1fr;
    }

    .wl-card,
    .wl-flow__step {
        min-height: 0;
    }
}

@media (max-width: 575px) {
    .wl-shell {
        width: min(100% - 24px, 1180px);
    }

    .wl-hero h1 {
        font-size: clamp(2.25rem, 12vw, 3.25rem);
        overflow-wrap: anywhere;
    }

    .wl-actions,
    .wl-final .wl-actions {
        display: grid;
        grid-template-columns: 1fr;
        width: 100%;
    }

    .wl-button {
        width: 100%;
    }

    .wl-hero__signal,
    .wl-card,
    .wl-flow__step,
    .wl-trust-card {
        padding: 22px;
    }

    .wl-signal__flow {
        gap: 5px;
    }

    .wl-signal__flow div {
        min-height: 78px;
    }

    .wl-signal__flow span {
        width: 34px;
        height: 34px;
        font-size: .78rem;
    }

    .wl-signal__flow small {
        font-size: .7rem;
        letter-spacing: .03em;
    }

    .wl-heading {
        margin-bottom: 30px;
    }

    .wl-exchange {
        min-height: 46px;
        padding: 10px 15px;
        font-size: .88rem;
    }

    .wl-final__inner {
        gap: 32px;
        padding: 28px 22px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .wl-page *,
    .wl-page *::before,
    .wl-page *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
    }

    #exchanges a.wl-exchange:hover {
        transform: none;
    }

    .wl-faq__body {
        transform: none !important;
    }
}
