:root {
    --wb-bg: #f7f4ff;
    --wb-bg-2: #ffffff;
    --wb-text: #17132d;
    --wb-muted: #635d78;
    --wb-soft: #8b5cf6;
    --wb-soft-2: #a855f7;
    --wb-line: rgba(113, 79, 236, 0.16);
    --wb-line-strong: rgba(113, 79, 236, 0.28);
    --wb-card: rgba(255, 255, 255, 0.86);
    --wb-card-solid: #ffffff;
    --wb-green: #14b8a6;
    --wb-orange: #fb923c;
    --wb-shadow: 0 22px 70px rgba(65, 44, 132, 0.12);
    --wb-shadow-soft: 0 16px 44px rgba(65, 44, 132, 0.10);
    --wb-radius-xl: 34px;
    --wb-radius-lg: 26px;
    --wb-radius-md: 18px;
    --wb-radius-sm: 14px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--wb-text);
    background: var(--wb-bg);
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}
a { color: inherit; }
img, svg { max-width: 100%; }

.wbm-page {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 8%, rgba(184, 146, 255, 0.34), transparent 32%),
        radial-gradient(circle at 86% 16%, rgba(218, 178, 255, 0.38), transparent 30%),
        linear-gradient(180deg, #fbf9ff 0%, #f7f4ff 42%, #ffffff 100%);
}
.wbm-bg-orb {
    position: absolute;
    width: 520px;
    height: 520px;
    border-radius: 999px;
    pointer-events: none;
    filter: blur(16px);
    opacity: .55;
}
.wbm-bg-orb--one { top: -230px; right: -120px; background: rgba(151, 71, 255, .22); }
.wbm-bg-orb--two { top: 420px; left: -260px; background: rgba(20, 184, 166, .13); }
.wbm-bg-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(122, 82, 255, .055) 1px, transparent 1px), linear-gradient(90deg, rgba(122, 82, 255, .055) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,.6), transparent 72%);
    pointer-events: none;
}

.wbm-shell {
    position: relative;
    z-index: 1;
    width: min(1200px, calc(100% - 32px));
    margin: 0 auto;
    padding: 18px 0 64px;
}

.wbm-topbar {
    position: relative;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 62px;
    margin: 0 auto 52px;
    padding: 10px 12px 10px 16px;
    border: 1px solid var(--wb-line);
    border-radius: 22px;
    background: rgba(255, 255, 255, .72);
    box-shadow: 0 14px 48px rgba(79, 55, 150, .08);
    backdrop-filter: blur(18px) saturate(150%);
    -webkit-backdrop-filter: blur(18px) saturate(150%);
}
.wbm-brand {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-width: 126px;
    text-decoration: none;
    font-weight: 900;
    letter-spacing: -0.045em;
    font-size: 22px;
    color: #FF69B4;
}

.wbm-brand__text {
    display: inline-flex;
    align-items: baseline;
}
.wbm-brand__wb {
    color: #FF69B4;
}
.wbm-brand__tail {
    color: #7B3DFF;
}

.wbm-brand__mark {
    width: 26px;
    height: 26px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--wb-soft), var(--wb-soft-2));
    box-shadow: 0 10px 24px rgba(139, 92, 246, .34);
    position: relative;
}
.wbm-brand__mark::before,
.wbm-brand__mark::after {
    content: "";
    position: absolute;
    border: 2px solid #fff;
    border-radius: 999px;
    opacity: .95;
}
.wbm-brand__mark::before { inset: 5px; border-right-color: transparent; transform: rotate(-32deg); }
.wbm-brand__mark::after { inset: 9px; border-left-color: transparent; transform: rotate(26deg); }
.wbm-brand__tail { color: #7B3DFF; }

.wbm-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}
.wbm-nav__link,
.wbm-nav__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 38px;
    padding: 0 14px;
    border: 1px solid transparent;
    border-radius: 999px;
    background: transparent;
    color: #3a3354;
    text-decoration: none;
    font-family: inherit;
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
    cursor: pointer;
    transition: transform .15s ease, border-color .15s ease, background .15s ease, color .15s ease;
}
.wbm-nav__link:hover,
.wbm-nav__btn:hover,
.wbm-nav__link--active,
.wbm-tools.is-open .wbm-nav__btn {
    color: #5b21e6;
    border-color: var(--wb-line-strong);
    background: rgba(139, 92, 246, .08);
}
.wbm-nav__cta {
    color: #fff;
    background: linear-gradient(135deg, var(--wb-soft), var(--wb-soft-2));
    border-color: transparent;
    box-shadow: 0 14px 30px rgba(139, 92, 246, .24);
}
.wbm-nav__cta:hover { color: #fff; transform: translateY(-1px); background: linear-gradient(135deg, #7c3aed, #9333ea); }

.wbm-nav__icon { flex: 0 0 auto; }
.wbm-kicker::before {
    content: "✦";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border-radius: 8px;
    background: rgba(139, 92, 246, .14);
    color: #7c3aed;
    font-size: 12px;
}
.wbm-button::after {
    content: "↗";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 999px;
    background: rgba(139, 92, 246, .10);
    color: currentColor;
    font-size: 13px;
    line-height: 1;
}
.wbm-button--primary::after,
.wbm-button--dark::after,
.wbm-nav__cta .wbm-nav__icon {
    background: rgba(255, 255, 255, .18);
}
.wbm-footer__links a { display: inline-flex; align-items: center; gap: 6px; }
.wbm-footer__links a::before { content: "•"; color: #8b5cf6; font-size: 18px; line-height: 1; }
.wbm-tools { position: relative; }
.wbm-tools__chevron { transition: transform .18s ease; opacity: .75; }
.wbm-tools.is-open .wbm-tools__chevron { transform: rotate(180deg); }
.wbm-tools__menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: auto;
    width: 270px;
    padding: 8px;
    display: grid;
    gap: 3px;
    border: 1px solid var(--wb-line);
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 22px 70px rgba(65, 44, 132, 0.18);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px) scale(.98);
    transition: opacity .16s ease, transform .16s ease, visibility 0s .16s;
    z-index: 300;
}
.wbm-tools.is-open .wbm-tools__menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    transition: opacity .16s ease, transform .16s ease;
}
.wbm-tools__item {
    display: grid;
    grid-template-columns: 34px 1fr;
    gap: 10px;
    align-items: center;
    padding: 10px;
    border-radius: 14px;
    color: #2c2546;
    text-decoration: none;
    transition: background .14s ease, color .14s ease;
}
.wbm-tools__item:hover,
.wbm-tools__item--active { background: rgba(139, 92, 246, .09); color: #5b21e6; }
.wbm-tools__icon {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: #f0e9ff;
    color: #7c3aed;
}
.wbm-tools__item strong { display: block; font-size: 13.5px; line-height: 1.2; }
.wbm-tools__item span { display: block; margin-top: 3px; color: #777086; font-size: 12px; line-height: 1.25; }

.wbm-hero {
    display: grid;
    grid-template-columns: minmax(0, .94fr) minmax(430px, 1fr);
    gap: 56px;
    align-items: center;
    margin-bottom: 38px;
}
.wbm-hero--center { display: block; text-align: center; max-width: 920px; margin-left: auto; margin-right: auto; }
.wbm-hero > div:first-child { min-width: 0; max-width: 650px; position: relative; z-index: 2; }
.wbm-hero .wbm-preview { min-width: 0; position: relative; z-index: 1; }
.wbm-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 34px;
    padding: 6px 12px;
    border: 1px solid var(--wb-line-strong);
    border-radius: 999px;
    background: rgba(139, 92, 246, .10);
    color: #6d28d9;
    font-size: 13px;
    font-weight: 900;
}
.wbm-hero h1,
.wbm-title {
    margin: 18px 0 16px;
    font-size: clamp(38px, 5.35vw, 68px);
    line-height: .94;
    letter-spacing: -0.067em;
    color: var(--wb-text);
}
.wbm-hero p,
.wbm-lead {
    margin: 0;
    color: var(--wb-muted);
    font-size: clamp(16px, 2vw, 20px);
    line-height: 1.65;
}
.wbm-hero__actions,
.wbm-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}
.wbm-hero--center .wbm-actions { justify-content: center; }
.wbm-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 50px;
    padding: 0 20px;
    border: 1px solid var(--wb-line-strong);
    border-radius: 999px;
    background: rgba(255, 255, 255, .86);
    color: #5b21e6;
    text-decoration: none;
    font-weight: 900;
    box-shadow: 0 12px 32px rgba(77, 50, 128, .08);
    transition: transform .16s ease, box-shadow .16s ease, background .16s ease;
}
.wbm-button:hover { transform: translateY(-2px); box-shadow: 0 18px 42px rgba(77, 50, 128, .13); }
.wbm-button--primary { color: #fff; background: linear-gradient(135deg, var(--wb-soft), var(--wb-soft-2)); border-color: transparent; box-shadow: 0 18px 42px rgba(139, 92, 246, .28); }
.wbm-button--dark { color: #fff; background: #17132d; border-color: #17132d; }
.wbm-note {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 14px;
    color: #6b647b;
    font-size: 13.5px;
    font-weight: 700;
}

.wbm-preview {
    position: relative;
    padding: 22px;
    border: 1px solid var(--wb-line);
    border-radius: var(--wb-radius-xl);
    background: rgba(255,255,255,.58);
    box-shadow: var(--wb-shadow);
    overflow: hidden;
}
.wbm-preview::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 78% 2%, rgba(139, 92, 246, .18), transparent 40%), radial-gradient(circle at 16% 100%, rgba(20, 184, 166, .12), transparent 36%);
    pointer-events: none;
}
.wbm-preview > * { position: relative; z-index: 1; }
.wbm-browser {
    overflow: hidden;
    border: 1px solid rgba(139, 92, 246, .16);
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 18px 44px rgba(58, 36, 115, .10);
}
.wbm-browser__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 12px 14px;
    border-bottom: 1px solid #efe7ff;
    background: #fbf9ff;
}
.wbm-browser__dots { display: flex; gap: 6px; }
.wbm-browser__dots span { width: 9px; height: 9px; border-radius: 999px; background: #d9ccff; }
.wbm-browser__url { flex: 1; min-width: 0; padding: 8px 12px; border-radius: 999px; color: #706983; background: #f5f1ff; font-size: 12px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.wbm-browser__body { padding: 18px; }
.wbm-placeholder {
    min-height: 300px;
    display: grid;
    place-items: center;
    border: 1px dashed rgba(139, 92, 246, .36);
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(248, 244, 255, .9), rgba(255,255,255,.85));
    color: #8a7ca5;
    text-align: center;
    padding: 24px;
}
.wbm-placeholder strong { display: block; color: #211a3d; font-size: 18px; margin-bottom: 8px; }
.wbm-placeholder span { display: block; max-width: 400px; line-height: 1.55; }
.wbm-placeholder__mock { width: 100%; display: grid; gap: 12px; }
.wbm-mock-row { display: grid; grid-template-columns: 48px 1fr 92px 86px; gap: 12px; align-items: center; padding: 12px; border: 1px solid #efe7ff; border-radius: 16px; background: rgba(255,255,255,.9); }
.wbm-mock-img { width: 48px; height: 48px; border-radius: 14px; background: linear-gradient(135deg, #ede5ff, #fff); border: 1px solid #e7ddff; }
.wbm-mock-line { height: 9px; width: 100%; border-radius: 999px; background: #e8defe; }
.wbm-mock-line--short { width: 62%; margin-top: 9px; background: #f0eaff; }
.wbm-mock-pill { justify-self: start; padding: 7px 10px; border-radius: 999px; background: #ede5ff; color: #6d28d9; font-size: 12px; font-weight: 900; }
.wbm-mock-price { font-weight: 900; color: #17132d; text-align: right; }

.wbm-section {
    margin: 26px 0;
    padding: 34px;
    border: 1px solid var(--wb-line);
    border-radius: var(--wb-radius-xl);
    background: rgba(255, 255, 255, .72);
    box-shadow: var(--wb-shadow-soft);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}
.wbm-section--flat { box-shadow: none; background: rgba(255,255,255,.54); }
.wbm-section__head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 24px;
}
.wbm-section__head h2,
.wbm-section h2 {
    margin: 0;
    color: var(--wb-text);
    font-size: clamp(26px, 4vw, 42px);
    line-height: 1.05;
    letter-spacing: -0.04em;
}
.wbm-section__head p,
.wbm-section > p {
    max-width: 720px;
    margin: 10px 0 0;
    color: var(--wb-muted);
    font-size: 16px;
    line-height: 1.65;
}
.wbm-grid { display: grid; gap: 16px; }
.wbm-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.wbm-grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.wbm-grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.wbm-card {
    padding: 22px;
    border: 1px solid rgba(139, 92, 246, .14);
    border-radius: 24px;
    background: rgba(255,255,255,.86);
    box-shadow: 0 10px 30px rgba(77, 50, 128, .06);
}
.wbm-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin-bottom: 16px;
    border-radius: 16px;
    color: #7c3aed;
    background: #f0e9ff;
}
.wbm-card h3 { margin: 0 0 9px; font-size: 18px; line-height: 1.25; letter-spacing: -0.025em; }
.wbm-card p { margin: 0; color: var(--wb-muted); line-height: 1.6; font-size: 14.5px; }
.wbm-card--accent { background: linear-gradient(135deg, rgba(139,92,246,.10), rgba(255,255,255,.9)); border-color: rgba(139, 92, 246, .25); }
.wbm-list { display: grid; gap: 12px; list-style: none; padding: 0; margin: 0; }
.wbm-list li { display: flex; align-items: flex-start; gap: 10px; color: #4e465f; line-height: 1.55; }
.wbm-check {
    flex: 0 0 auto;
    width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: #047857;
    background: #dcfce7;
    margin-top: 1px;
}

.wbm-steps { counter-reset: step; display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.wbm-step { position: relative; padding: 22px; border: 1px solid var(--wb-line); border-radius: 24px; background: rgba(255,255,255,.84); }
.wbm-step::before { counter-increment: step; content: counter(step); display: inline-flex; align-items: center; justify-content: center; width: 32px; height: 32px; margin-bottom: 14px; border-radius: 12px; background: linear-gradient(135deg, var(--wb-soft), var(--wb-soft-2)); color: #fff; font-weight: 900; box-shadow: 0 12px 25px rgba(139, 92, 246, .22); }
.wbm-step h3 { margin: 0 0 8px; font-size: 17px; }
.wbm-step p { margin: 0; color: var(--wb-muted); line-height: 1.55; font-size: 14px; }

.wbm-screens { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.wbm-screen { padding: 12px; border: 1px solid var(--wb-line); border-radius: 24px; background: rgba(255,255,255,.72); }
.wbm-screen .wbm-placeholder { min-height: 210px; }
.wbm-screen figcaption { margin: 12px 4px 0; color: #6d657e; font-size: 13.5px; line-height: 1.45; }

.wbm-faq { display: grid; gap: 12px; }
.wbm-faq details { padding: 18px 20px; border: 1px solid var(--wb-line); border-radius: 20px; background: rgba(255,255,255,.84); }
.wbm-faq summary { cursor: pointer; font-weight: 900; color: var(--wb-text); }
.wbm-faq p { margin: 12px 0 0; color: var(--wb-muted); line-height: 1.6; }

.wbm-cta {
    margin-top: 28px;
    padding: 34px;
    border: 1px solid rgba(139, 92, 246, .28);
    border-radius: var(--wb-radius-xl);
    background: linear-gradient(135deg, rgba(139, 92, 246, .12), rgba(255,255,255,.86));
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.wbm-cta h2 { margin: 0 0 8px; font-size: clamp(26px, 4vw, 42px); letter-spacing: -0.045em; }
.wbm-cta p { margin: 0; color: var(--wb-muted); line-height: 1.6; }

.wbm-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-top: 34px;
    padding: 22px;
    border: 1px solid var(--wb-line);
    border-radius: 24px;
    background: rgba(255,255,255,.62);
}
.wbm-footer__brand { font-weight: 900; letter-spacing: -0.035em; }
.wbm-footer__muted { display: block; margin-top: 4px; color: #7b728c; font-size: 13px; }
.wbm-footer__links { display: flex; flex-wrap: wrap; align-items: center; justify-content: flex-end; gap: 10px; }
.wbm-footer__links a { color: #5f5671; font-size: 13.5px; font-weight: 700; text-decoration: none; }
.wbm-footer__links a:hover { color: #6d28d9; }

.wbm-text-page { max-width: 900px; margin: 0 auto; }
.wbm-text-page h1 { margin: 0 0 16px; font-size: clamp(34px, 5vw, 58px); line-height: .98; letter-spacing: -0.06em; }
.wbm-text-page h2 { margin: 32px 0 12px; font-size: 26px; letter-spacing: -0.03em; }
.wbm-text-page p, .wbm-text-page li { color: var(--wb-muted); line-height: 1.7; font-size: 15.5px; }
.wbm-text-page ul { padding-left: 20px; }

@media (max-width: 980px) {
    .wbm-shell { width: min(100% - 24px, 760px); }
    .wbm-topbar { align-items: flex-start; }
    .wbm-nav { flex-wrap: wrap; justify-content: flex-end; }
    .wbm-hero { grid-template-columns: 1fr; }
    .wbm-grid--4, .wbm-grid--3, .wbm-grid--2, .wbm-steps, .wbm-screens { grid-template-columns: 1fr 1fr; }
    .wbm-cta { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 680px) {
    .wbm-shell { width: min(100% - 20px, 520px); padding-top: 10px; }
    .wbm-topbar { margin-bottom: 34px; padding: 10px; border-radius: 18px; }
    .wbm-brand { font-size: 19px; min-width: 112px; }
    .wbm-nav__link:not(.wbm-nav__cta) { display: inline-flex; }
    .wbm-nav__btn { padding: 0 12px; }
    .wbm-tools__menu { left: auto; right: -52px; width: min(300px, calc(100vw - 28px)); }
    .wbm-hero h1, .wbm-title { font-size: 42px; }
    .wbm-section, .wbm-cta { padding: 22px; border-radius: 24px; }
    .wbm-grid--4, .wbm-grid--3, .wbm-grid--2, .wbm-steps, .wbm-screens { grid-template-columns: 1fr; }
    .wbm-section__head { display: block; }
    .wbm-mock-row { grid-template-columns: 42px 1fr; }
    .wbm-mock-pill, .wbm-mock-price { display: none; }
    .wbm-footer { flex-direction: column; align-items: flex-start; }
    .wbm-footer__links { justify-content: flex-start; }
}

/* Mobile header drawer polish. Kept last to override older mobile rules above. */
@media (max-width: 680px) {
    .wbm-topbar {
        min-height: 58px;
        padding: 8px 10px;
        border-radius: 22px;
    }

    .wbm-brand {
        min-width: 0;
        font-size: 21px;
        letter-spacing: -0.035em;
    }

    .wbm-brand__mark {
        width: 26px;
        height: 26px;
        border-radius: 10px;
    }

    .wbm-mobile-toggle {
        width: 44px;
        height: 44px;
        border-radius: 16px;
        background: rgba(255,255,255,.92);
    }

    .wbm-nav {
        left: auto;
        right: 0;
        width: min(280px, calc(100vw - 28px));
        padding: 12px;
        gap: 9px;
        border-radius: 22px;
    }

    .wbm-nav__link,
    .wbm-nav__btn,
    .wbm-nav__link:not(.wbm-nav__cta) {
        min-height: 44px;
        justify-content: flex-start;
        padding: 0 14px;
        border-radius: 15px;
        font-size: 14px;
    }

    .wbm-tools,
    .wbm-auth {
        width: 100%;
    }

    .wbm-tools__menu {
        position: fixed;
        top: 138px;
        left: 14px;
        right: auto;
        width: min(320px, calc(100vw - 28px));
        max-height: calc(100svh - 174px);
        overflow-y: auto;
        padding: 12px;
        border-radius: 22px;
        border: 1px solid rgba(139, 92, 246, .18);
        background: rgba(255, 255, 255, .96);
        box-shadow: 0 24px 72px rgba(65, 44, 132, .20);
        backdrop-filter: blur(18px) saturate(150%);
        -webkit-backdrop-filter: blur(18px) saturate(150%);
        display: grid;
        gap: 7px;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateX(-10px) scale(.98);
        transition: opacity .16s ease, transform .16s ease, visibility 0s .16s;
        z-index: 10020;
    }

    .wbm-tools.is-open .wbm-tools__menu {
        display: grid;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateX(0) scale(1);
        transition: opacity .16s ease, transform .16s ease;
    }

    .wbm-tools__item {
        grid-template-columns: 42px 1fr;
        gap: 12px;
        padding: 11px;
        border-radius: 16px;
    }

    .wbm-tools__item > .wbm-tools__icon {
        width: 42px;
        height: 42px;
        flex-basis: 42px;
        border-radius: 15px;
    }

    .wbm-tools__item > .wbm-tools__icon svg {
        width: 20px;
        height: 20px;
    }

    .wbm-tools__item strong {
        font-size: 15px;
        line-height: 1.2;
    }

    .wbm-tools__item > span:not(.wbm-tools__icon) > span {
        max-width: 100%;
        font-size: 13px;
    }
}

@media (max-width: 380px) {
    .wbm-nav {
        width: min(260px, calc(100vw - 20px));
    }

    .wbm-tools__menu {
        top: 128px;
        left: 10px;
        width: min(300px, calc(100vw - 20px));
        max-height: calc(100svh - 158px);
    }
}

/* Contacts and document pages */
.wbm-contact-hero { max-width: 980px; }
.wbm-contact-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}
.wbm-contact-card {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 16px;
    align-items: flex-start;
    padding: 22px;
    border: 1px solid rgba(139, 92, 246, .16);
    border-radius: 26px;
    background: rgba(255, 255, 255, .84);
    color: var(--wb-text);
    text-decoration: none;
    box-shadow: 0 12px 34px rgba(77, 50, 128, .07);
    transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease, background .16s ease;
}
.wbm-contact-card:hover {
    transform: translateY(-2px);
    border-color: rgba(139, 92, 246, .32);
    background: #fff;
    box-shadow: 0 18px 44px rgba(77, 50, 128, .12);
}
.wbm-contact-card--primary {
    background: linear-gradient(135deg, rgba(139, 92, 246, .14), rgba(255, 255, 255, .92));
    border-color: rgba(139, 92, 246, .34);
}
.wbm-contact-card__icon {
    width: 54px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    color: #7c3aed;
    background: #f0e9ff;
    box-shadow: inset 0 0 0 1px rgba(139, 92, 246, .12);
}
.wbm-contact-card__body { display: grid; gap: 7px; min-width: 0; }
.wbm-contact-card__body strong { font-size: 20px; line-height: 1.15; letter-spacing: -0.025em; }
.wbm-contact-card__body span { color: var(--wb-muted); line-height: 1.55; font-size: 14.5px; }
.wbm-contact-card__body em { color: #6d28d9; font-style: normal; font-weight: 900; font-size: 13.5px; word-break: break-word; }
.wbm-contact-actions {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}
.wbm-contact-action {
    display: grid;
    gap: 10px;
    padding: 22px;
    border: 1px solid rgba(139, 92, 246, .16);
    border-radius: 24px;
    background: rgba(255,255,255,.84);
    color: var(--wb-text);
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(77, 50, 128, .06);
    transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}
.wbm-contact-action:hover { transform: translateY(-2px); border-color: rgba(139, 92, 246, .32); box-shadow: 0 16px 40px rgba(77, 50, 128, .11); }
.wbm-contact-action strong { font-size: 18px; letter-spacing: -0.025em; }
.wbm-contact-action span:last-child { color: var(--wb-muted); line-height: 1.55; font-size: 14.5px; }
.wbm-doc-date {
    margin: 0 0 24px;
    color: #8b8497;
    font-size: 14px;
    font-weight: 800;
}
.wbm-highlight {
    margin-top: 22px;
    padding: 20px;
    border: 1px solid rgba(20, 184, 166, .24);
    border-radius: 22px;
    background: rgba(20, 184, 166, .08);
}
.wbm-highlight p { margin: 0; color: #3f5860; }
.wbm-privacy-page a { color: #6d28d9; font-weight: 800; text-decoration: none; }
.wbm-privacy-page a:hover { text-decoration: underline; }

@media (max-width: 980px) {
    .wbm-contact-grid,
    .wbm-contact-actions { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
    .wbm-contact-card { grid-template-columns: 46px 1fr; padding: 18px; border-radius: 22px; }
    .wbm-contact-card__icon { width: 46px; height: 46px; border-radius: 16px; }
}

/* ===== Global dropdown layer and icon alignment fix =====
   Keeps the tools dropdown above hero/section cards on all marketing pages
   and prevents generic span rules from breaking menu icon centering. */
.wbm-topbar {
    position: relative;
    z-index: 10000;
    isolation: isolate;
}

.wbm-tools {
    position: relative;
    z-index: 10001;
}

.wbm-tools.is-open {
    z-index: 10002;
}

.wbm-tools__menu {
    z-index: 10003;
}

.wbm-hero,
.wbm-section,
.wbm-cta,
.wbm-footer {
    position: relative;
    z-index: 1;
}

.wbm-tools__item > .wbm-tools__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
    margin-top: 0;
    border-radius: 12px;
    background: #f0e9ff;
    color: #7c3aed;
    font-size: 0;
    line-height: 1;
}

.wbm-tools__item > .wbm-tools__icon svg {
    display: block;
    width: 17px;
    height: 17px;
    margin: auto;
    flex: 0 0 auto;
}

.wbm-tools__item > span:not(.wbm-tools__icon) {
    display: block;
    margin-top: 0;
    color: inherit;
    font-size: inherit;
    line-height: inherit;
}

.wbm-tools__item > span:not(.wbm-tools__icon) > span {
    display: block;
    margin-top: 3px;
    color: #777086;
    font-size: 12px;
    line-height: 1.25;
}

.wbm-nav__icon,
.wbm-tools__chevron {
    display: block;
    flex: 0 0 auto;
}

/* ===== Marketing topbar mobile single-line fix ===== */
.wbm-topbar,
.wbm-nav {
    flex-wrap: nowrap;
}

.wbm-brand,
.wbm-nav,
.wbm-tools,
.wbm-nav__link,
.wbm-nav__btn {
    min-width: 0;
}

.wbm-brand,
.wbm-nav__link,
.wbm-nav__btn {
    white-space: nowrap;
}

@media (max-width: 980px) {
    .wbm-topbar {
        align-items: center;
        justify-content: space-between;
        flex-wrap: nowrap;
    }

    .wbm-nav {
        flex-wrap: nowrap;
        justify-content: flex-end;
    }
}

@media (max-width: 680px) {
    .wbm-shell {
        width: min(100% - 14px, 520px);
    }

    .wbm-topbar {
        align-items: center;
        flex-wrap: nowrap;
        gap: 6px;
        min-height: 50px;
        margin-bottom: 34px;
        padding: 7px;
        border-radius: 18px;
    }

    .wbm-brand {
        flex: 0 0 auto;
        gap: 6px;
        min-width: 0;
        font-size: 19px;
    }

    .wbm-brand__mark {
        width: 23px;
        height: 23px;
        border-radius: 9px;
    }

    .wbm-nav {
        display: flex;
        flex: 1 1 auto;
        align-items: center;
        justify-content: flex-end;
        flex-wrap: nowrap;
        gap: 5px;
        width: auto;
        min-width: 0;
    }

    .wbm-tools {
        flex: 0 1 auto;
    }

    .wbm-nav__link,
    .wbm-nav__btn,
    .wbm-nav__link:not(.wbm-nav__cta) {
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        flex: 0 1 auto;
        min-width: 0;
        min-height: 34px;
        padding: 0 9px;
        gap: 5px;
        font-size: 12px;
        line-height: 1;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .wbm-nav__link span,
    .wbm-nav__btn span {
        min-width: 0;
        white-space: nowrap;
    }

    .wbm-nav__icon {
        width: 13px;
        height: 13px;
        flex: 0 0 13px;
    }

    .wbm-tools__chevron {
        width: 11px;
        height: 11px;
        flex: 0 0 11px;
    }

    .wbm-tools__menu {
        position: fixed;
        top: 62px;
        left: 10px;
        right: 10px;
        width: auto;
        max-width: none;
        z-index: 10003;
    }
}

@media (max-width: 420px) {
    .wbm-shell {
        width: min(100% - 10px, 520px);
    }

    .wbm-topbar {
        gap: 4px;
        padding: 6px;
    }

    .wbm-brand {
        gap: 5px;
        font-size: 18px;
    }

    .wbm-brand__mark {
        width: 21px;
        height: 21px;
        border-radius: 8px;
    }

    .wbm-nav {
        gap: 4px;
    }

    .wbm-nav__link,
    .wbm-nav__btn,
    .wbm-nav__link:not(.wbm-nav__cta) {
        min-height: 32px;
        padding: 0 7px;
        gap: 4px;
        font-size: 11.5px;
    }

    .wbm-nav__icon {
        width: 12px;
        height: 12px;
        flex-basis: 12px;
    }

    .wbm-tools__chevron {
        width: 10px;
        height: 10px;
        flex-basis: 10px;
    }
}

@media (max-width: 360px) {
    .wbm-brand {
        font-size: 17px;
    }

    .wbm-brand__mark {
        width: 20px;
        height: 20px;
    }

    .wbm-nav__link,
    .wbm-nav__btn,
    .wbm-nav__link:not(.wbm-nav__cta) {
        padding: 0 6px;
        font-size: 11px;
    }

    .wbm-nav__icon {
        display: none;
    }

    .wbm-tools__chevron {
        display: block;
    }
}

/* ===== Mobile brand abbreviation: WBRay -> WR ===== */
/* @media (max-width: 680px) {
    .wbm-brand {
        flex: 0 0 auto;
        min-width: 48px;
    }

    .wbm-brand__text {
        flex: 0 0 auto;
        min-width: 24px;
        line-height: 1;
    }

    .wbm-brand__wb,
    .wbm-brand__tail {
        font-size: 0;
        line-height: 1;
    }

    .wbm-brand__wb::before {
        content: "W";
        color: #FF69B4;
        font-size: 19px;
        line-height: 1;
    }

    .wbm-brand__tail::before {
        content: "R";
        color: #7B3DFF;
        font-size: 19px;
        line-height: 1;
    }
}

@media (max-width: 420px) {
    .wbm-brand {
        min-width: 46px;
    }

    .wbm-brand__wb::before,
    .wbm-brand__tail::before {
        font-size: 18px;
    }
}

@media (max-width: 360px) {
    .wbm-brand {
        min-width: 44px;
    }

    .wbm-brand__wb::before,
    .wbm-brand__tail::before {
        font-size: 17px;
    }
} */

/* ===== WBRay header/footer update: original CSS preserved, scoped additions only ===== */

.wbm-page--blog .wbm-topbar {
    margin: 0 auto 0;
}

.wbm-mobile-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 1px solid rgba(139, 92, 246, .22);
    border-radius: 15px;
    background: rgba(255, 255, 255, .82);
    color: #5b21e6;
    box-shadow: 0 10px 26px rgba(77, 50, 128, .08);
    cursor: pointer;
    position: relative;
    z-index: 10010;
    pointer-events: auto;
    touch-action: manipulation;
}

.wbm-mobile-toggle__line {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition: transform .18s ease, opacity .18s ease;
}

.wbm-topbar.is-mobile-menu-open .wbm-mobile-toggle__line:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.wbm-topbar.is-mobile-menu-open .wbm-mobile-toggle__line:nth-child(2) { opacity: 0; }
.wbm-topbar.is-mobile-menu-open .wbm-mobile-toggle__line:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.wbm-nav__btn--tools {
    color: #5b21e6;
    border: 1.5px solid rgba(124, 58, 237, .72);
    background: rgba(255, 255, 255, .72);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .72), 0 12px 26px rgba(77, 50, 128, .08);
}

.wbm-nav__btn--tools:hover,
.wbm-tools.is-open .wbm-nav__btn--tools {
    color: #4c1d95;
    border-color: rgba(109, 40, 217, .88);
    background: rgba(139, 92, 246, .10);
}

.wbm-nav__btn--tools .wbm-nav__icon {
    background: transparent;
}

.wbm-tools__menu {
    left: auto;
    right: 0;
}

.wbm-tools__item > span:not(.wbm-tools__icon) > span {
    max-width: 178px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.wbm-footer {
    position: relative;
    z-index: 1;
    display: block;
    margin-top: 42px;
    padding: 30px;
    overflow: hidden;
    border: 1px solid rgba(139, 92, 246, .18);
    border-radius: 34px;
    background:
        radial-gradient(circle at 6% 20%, rgba(255, 105, 180, .13), transparent 30%),
        radial-gradient(circle at 92% 18%, rgba(139, 92, 246, .15), transparent 34%),
        linear-gradient(135deg, rgba(255,255,255,.88), rgba(248,244,255,.74));
    box-shadow: 0 24px 80px rgba(65, 44, 132, .13);
    backdrop-filter: blur(18px) saturate(145%);
    -webkit-backdrop-filter: blur(18px) saturate(145%);
}

.wbm-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(122, 82, 255, .04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(122, 82, 255, .04) 1px, transparent 1px);
    background-size: 36px 36px;
    mask-image: linear-gradient(130deg, rgba(0,0,0,.34), transparent 72%);
    pointer-events: none;
}

.wbm-footer > * {
    position: relative;
    z-index: 1;
}

.wbm-footer__top {
    display: grid;
    grid-template-columns: minmax(220px, 1.05fr) minmax(180px, .8fr) minmax(160px, .72fr) minmax(320px, 1.25fr);
    gap: 28px;
    align-items: start;
}

.wbm-footer__about,
.wbm-footer__group,
.wbm-footer__social {
    min-width: 0;
}

.wbm-footer__logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #FF69B4;
    text-decoration: none;
    font-size: 26px;
    font-weight: 900;
    letter-spacing: -0.05em;
}

.wbm-footer__about p {
    max-width: 260px;
    margin: 18px 0 0;
    color: #635d78;
    font-size: 15px;
    line-height: 1.55;
}

.wbm-footer__copyright {
    display: inline-flex;
    margin-top: 22px;
    color: #6e6682;
    font-size: 13.5px;
    font-weight: 800;
}

.wbm-footer h2 {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 2px 0 16px;
    color: #17132d;
    font-size: 16px;
    line-height: 1.2;
    letter-spacing: -0.025em;
}

.wbm-footer h2::after {
    content: "✦";
    color: #8b5cf6;
    font-size: 13px;
}

.wbm-footer__list {
    display: grid;
    gap: 5px;
}

.wbm-footer__list a {
    display: flex;
    align-items: center;
    gap: 9px;
    min-height: 34px;
    padding: 6px 9px;
    border-radius: 13px;
    color: #4e465f;
    font-size: 13.5px;
    font-weight: 750;
    line-height: 1.25;
    text-decoration: none;
    transition: background .14s ease, color .14s ease, transform .14s ease;
}

.wbm-footer__list a::before {
    content: "";
    flex: 0 0 auto;
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: rgba(139, 92, 246, .42);
    box-shadow: 0 0 0 4px rgba(139, 92, 246, .08);
}

.wbm-footer__list a:hover {
    color: #5b21e6;
    background: rgba(139, 92, 246, .08);
    transform: translateX(2px);
}

.wbm-social-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.wbm-social {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 44px;
    min-width: 0;
    padding: 8px 12px;
    border: 1px solid rgba(139, 92, 246, .16);
    border-radius: 17px;
    background: rgba(255, 255, 255, .76);
    color: #2e2748;
    text-decoration: none;
    font-size: 13.5px;
    font-weight: 850;
    box-shadow: 0 10px 26px rgba(77, 50, 128, .05);
    transition: transform .15s ease, border-color .15s ease, background .15s ease, box-shadow .15s ease;
}

.wbm-social:hover {
    transform: translateY(-2px);
    border-color: rgba(139, 92, 246, .32);
    background: #fff;
    box-shadow: 0 14px 34px rgba(77, 50, 128, .10);
}

.wbm-social__mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 30px;
    width: 30px;
    height: 30px;
    border-radius: 11px;
    color: #fff;
    font-size: 10px;
    font-weight: 950;
    letter-spacing: -0.03em;
}

.wbm-social--vk .wbm-social__mark { background: #2787f5; }
.wbm-social--tg .wbm-social__mark { background: #2aabee; }
.wbm-social--bot .wbm-social__mark { background: linear-gradient(135deg, #7c3aed, #a855f7); }
.wbm-social--ig .wbm-social__mark { background: linear-gradient(135deg, #f58529, #dd2a7b 48%, #8134af); }
.wbm-social--yt .wbm-social__mark { background: #ff0000; }
.wbm-social--chrome .wbm-social__mark { background: linear-gradient(135deg, #16a34a, #f59e0b 48%, #2563eb); }

.wbm-footer__follow {
    display: grid;
    grid-template-columns: 32px 1fr;
    gap: 10px;
    align-items: center;
    margin-top: 16px;
    padding: 14px;
    border: 1px solid rgba(139, 92, 246, .14);
    border-radius: 18px;
    background: rgba(139, 92, 246, .07);
}

.wbm-footer__follow > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 12px;
    background: #f0e9ff;
    color: #7c3aed;
    font-weight: 900;
}

.wbm-footer__follow p {
    margin: 0;
    color: #5f5671;
    font-size: 13.5px;
    font-weight: 750;
    line-height: 1.4;
}

.wbm-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-top: 28px;
    padding-top: 22px;
    border-top: 1px solid rgba(139, 92, 246, .14);
}

.wbm-footer__help {
    display: inline-grid;
    grid-template-columns: 38px 1fr;
    gap: 11px;
    align-items: center;
    min-width: 280px;
    padding: 12px 14px;
    border: 1px solid rgba(139, 92, 246, .14);
    border-radius: 18px;
    background: rgba(255, 255, 255, .58);
    color: #2d2646;
    text-decoration: none;
}

.wbm-footer__help:hover {
    background: #fff;
    color: #5b21e6;
}

.wbm-footer__help-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 14px;
    background: #f0e9ff;
    color: #7c3aed;
    font-size: 18px;
    font-weight: 950;
}

.wbm-footer__help strong,
.wbm-footer__help em {
    display: block;
    line-height: 1.25;
}

.wbm-footer__help strong {
    font-size: 13.5px;
    font-weight: 900;
}

.wbm-footer__help em {
    margin-top: 3px;
    color: #6b647b;
    font-size: 12.5px;
    font-style: normal;
    font-weight: 750;
}

.wbm-footer__badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px;
}

.wbm-footer__badges span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 36px;
    padding: 8px 11px;
    border: 1px solid rgba(139, 92, 246, .12);
    border-radius: 999px;
    background: rgba(255, 255, 255, .52);
    color: #635d78;
    font-size: 12.5px;
    font-weight: 800;
    line-height: 1.15;
}

.wbm-footer__badges i {
    color: #7c3aed;
    font-style: normal;
}

@media (max-width: 1100px) {
    .wbm-footer__top {
        grid-template-columns: 1fr 1fr;
    }

    .wbm-footer__social {
        grid-column: span 2;
    }
}

@media (max-width: 680px) {
    .wbm-page--blog .wbm-topbar {
        margin: 0 auto 0;
    }

    .wbm-topbar {
        justify-content: space-between;
        overflow: visible;
    }

    .wbm-mobile-toggle {
        display: inline-flex;
        order: 2;
        margin-left: auto;
    }

    .wbm-brand {
        order: 1;
    }

    .wbm-nav {
        position: absolute;
        top: calc(100% + 10px);
        left: 0;
        right: 0;
        order: 3;
        display: grid;
        width: 100%;
        gap: 7px;
        padding: 10px;
        border: 1px solid rgba(139, 92, 246, .18);
        border-radius: 20px;
        background: rgba(255, 255, 255, .96);
        box-shadow: 0 22px 70px rgba(65, 44, 132, .18);
        backdrop-filter: blur(18px) saturate(150%);
        -webkit-backdrop-filter: blur(18px) saturate(150%);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-8px) scale(.98);
        transition: opacity .16s ease, transform .16s ease, visibility 0s .16s;
        z-index: 10005;
    }

    .wbm-topbar.is-mobile-menu-open .wbm-nav {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0) scale(1);
        transition: opacity .16s ease, transform .16s ease;
    }

    .wbm-nav__link,
    .wbm-nav__btn,
    .wbm-nav__link:not(.wbm-nav__cta) {
        width: 100%;
        min-height: 46px;
        justify-content: flex-start;
        padding: 0 14px;
        gap: 9px;
        border-radius: 15px;
        font-size: 14px;
        line-height: 1.1;
    }

    .wbm-tools {
        width: 100%;
    }

    .wbm-tools__menu {
        position: static;
        width: 100%;
        max-width: none;
        margin-top: 8px;
        padding: 7px;
        box-shadow: none;
        border-radius: 16px;
        background: #fbf9ff;
        transform: none;
        display: none;
        opacity: 1;
        visibility: visible;
    }

    .wbm-tools.is-open .wbm-tools__menu {
        display: grid;
        transform: none;
    }

    .wbm-tools__item > span:not(.wbm-tools__icon) > span {
        max-width: calc(100vw - 112px);
    }

    .wbm-footer {
        margin-top: 30px;
        padding: 20px;
        border-radius: 26px;
    }

    .wbm-footer__top {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .wbm-footer__social {
        grid-column: auto;
    }

    .wbm-footer__about p {
        max-width: none;
        margin-top: 12px;
    }

    .wbm-footer__copyright {
        margin-top: 14px;
    }

    .wbm-footer h2 {
        margin-bottom: 10px;
    }

    .wbm-footer__list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 7px;
    }

    .wbm-footer__list a {
        min-height: 38px;
        padding: 8px 10px;
        background: rgba(255,255,255,.48);
        border: 1px solid rgba(139, 92, 246, .10);
        font-size: 13px;
    }

    .wbm-social-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .wbm-social {
        min-height: 42px;
    }

    .wbm-footer__follow {
        margin-top: 10px;
        padding: 12px;
    }

    .wbm-footer__bottom {
        display: grid;
        gap: 14px;
        margin-top: 20px;
        padding-top: 18px;
    }

    .wbm-footer__help {
        min-width: 0;
        width: 100%;
    }

    .wbm-footer__badges {
        justify-content: flex-start;
        gap: 8px;
    }

    .wbm-footer__badges span {
        flex: 1 1 100%;
        border-radius: 14px;
        justify-content: flex-start;
    }
}

@media (max-width: 420px) {
    .wbm-footer {
        padding: 16px;
    }

    .wbm-footer__logo {
        font-size: 23px;
    }

    .wbm-footer__list {
        grid-template-columns: 1fr;
    }
}

/* Final header overrides: keep after legacy mobile blocks. */
.wbm-nav__btn--tools {
    color: #3a3354;
    border-color: transparent;
    background: transparent;
    box-shadow: none;
}

.wbm-nav__btn--tools:hover,
.wbm-tools.is-open .wbm-nav__btn--tools {
    color: #5b21e6;
    border-color: var(--wb-line-strong);
    background: rgba(139, 92, 246, .08);
    box-shadow: none;
}

.wbm-nav__btn--account {
    max-width: 148px;
    color: #5b21e6;
    border: 1.5px solid rgba(124, 58, 237, .72);
    background: rgba(255, 255, 255, .72);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .72), 0 12px 26px rgba(77, 50, 128, .08);
}

.wbm-nav__btn--account:hover,
.wbm-auth.is-open .wbm-nav__btn--account {
    color: #4c1d95;
    border-color: rgba(109, 40, 217, .88);
    background: rgba(139, 92, 246, .10);
}

.wbm-nav__btn--account [data-auth-label] {
    min-width: 0;
    overflow: hidden;
    text-overflow: clip;
}


/* ===== Header Rays balance ===== */
.wbm-auth {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.wbm-rays-pill {
    display: none;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.wbm-auth.is-logged-in .wbm-rays-pill {
    display: inline-flex;
}

.wbm-rays-pill[hidden] {
    display: none !important;
}

.wbm-rays-pill {
    gap: 6px;
    min-height: 38px;
    padding: 0 11px;
    border: 1.5px solid rgba(124, 58, 237, .22);
    border-radius: 999px;
    background: rgba(255, 255, 255, .78);
    color: #3a3354;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.72), 0 12px 26px rgba(77, 50, 128, .07);
    font-size: 13px;
    font-weight: 950;
    white-space: nowrap;
    transition: border-color .15s ease, background .15s ease, color .15s ease, transform .15s ease;
}

.wbm-rays-pill:hover {
    color: #4c1d95;
    border-color: rgba(109, 40, 217, .42);
    background: rgba(139, 92, 246, .10);
    transform: translateY(-1px);
}

.wbm-rays-pill__icon {
    width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: linear-gradient(135deg, #7c3aed, #a855f7);
    color: #fff;
    font-size: 12px;
    line-height: 1;
}

.wbm-rays-pill__value {
    color: #17132d;
    font-variant-numeric: tabular-nums;
}

.wbm-rays-pill__label {
    color: #6d28d9;
}

@media (max-width: 680px) {
    .wbm-topbar {
        position: relative;
        overflow: visible;
    }

    .wbm-mobile-toggle {
        display: inline-flex;
        order: 2;
        margin-left: auto;
        pointer-events: auto;
        z-index: 10007;
    }

    .wbm-brand {
        order: 1;
    }

    .wbm-nav {
        position: absolute;
        top: calc(100% + 10px);
        left: 0;
        right: 0;
        order: 3;
        display: grid;
        width: 100%;
        max-height: min(calc(100vh - 135px), 620px);
        gap: 8px;
        padding: 10px;
        overflow: auto;
        border: 1px solid rgba(139, 92, 246, .18);
        border-radius: 20px;
        background: rgba(255, 255, 255, .96);
        box-shadow: 0 22px 70px rgba(65, 44, 132, .18);
        backdrop-filter: blur(18px) saturate(150%);
        -webkit-backdrop-filter: blur(18px) saturate(150%);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-8px) scale(.98);
        transition: opacity .16s ease, transform .16s ease, visibility 0s .16s;
        z-index: 10006;
    }

    .wbm-topbar.is-mobile-menu-open .wbm-nav {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0) scale(1);
        transition: opacity .16s ease, transform .16s ease;
    }

    .wbm-nav__link,
    .wbm-nav__btn,
    .wbm-nav__link:not(.wbm-nav__cta) {
        width: 100%;
        min-height: 46px;
        justify-content: flex-start;
        padding: 0 14px;
        gap: 9px;
        border-radius: 15px;
        font-size: 14px;
        line-height: 1.1;
    }

    .wbm-tools,
    .wbm-auth {
        width: 100%;
    }

    .wbm-nav__btn--account {
        max-width: none;
        justify-content: center;
    }

    .wbm-tools__menu,
    .wbm-auth__menu {
        position: static;
        width: 100%;
        max-width: none;
        margin-top: 8px;
        padding: 7px;
        box-shadow: none;
        border-radius: 16px;
        background: #fbf9ff;
        transform: none;
        opacity: 1;
        visibility: visible;
    }

    .wbm-tools__menu {
        display: none;
    }

    .wbm-tools.is-open .wbm-tools__menu {
        display: grid;
        transform: none;
    }

    .wbm-auth__menu {
        display: none;
    }

    .wbm-auth.is-open .wbm-auth__menu {
        display: grid;
        transform: none;
    }
}

@media (max-width: 680px) {
    .wbm-auth {
        flex-wrap: wrap;
        justify-content: center;
    }

    .wbm-auth.is-logged-in .wbm-rays-pill {
        flex: 1 1 auto;
        min-width: 150px;
    }
}
