:root {
    --bg: #000000;
    --panel: rgba(10, 10, 12, 0.76);
    --panel-border: rgba(255, 255, 255, 0.06);
    --text-main: #f5f5f5;
    --text-soft: #a1a1aa;
    --accent: #ff7a00;
    --accent-strong: #ff8f22;
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    min-height: 100%;
}

body.vb-page {
    font-family: "Inter", "Segoe UI", sans-serif;
    color: var(--text-main);
    background:
        radial-gradient(circle at 50% -24%, rgba(255, 122, 0, 0.08), transparent 48%),
        radial-gradient(circle at 10% 45%, rgba(255, 122, 0, 0.03), transparent 36%),
        var(--bg);
    overflow-x: hidden;
    position: relative;
}

.ambient-canvas {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.vb-header,
.vb-main,
.vb-footer {
    position: relative;
    z-index: 2;
}

.vb-header {
    max-width: 1120px;
    margin: 0 auto;
    padding: 26px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.vb-header-right {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.vb-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-main);
    text-decoration: none;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 800;
    letter-spacing: -0.02em;
    font-size: 1.3rem;
}

.vb-brand img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.vb-brand .accent {
    color: var(--accent);
}

.vb-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-soft);
    font-size: 0.85rem;
    font-weight: 600;
}

.vb-status .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 10px rgba(255, 122, 0, 0.8);
}

.vb-lang {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.vb-lang-btn {
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(14, 14, 18, 0.85);
    color: #e6e6eb;
    border-radius: 9px;
    padding: 7px 8px;
    min-width: 34px;
    font-size: 0.72rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.18s ease;
}

.vb-lang-btn:hover {
    border-color: rgba(255, 122, 0, 0.65);
}

.vb-lang-btn.active {
    border-color: rgba(255, 122, 0, 0.95);
    background: rgba(255, 122, 0, 0.18);
    color: #fff;
}

.vb-main {
    min-height: calc(100vh - 164px);
    display: grid;
    place-items: center;
    padding: 24px;
}

.vb-hero {
    width: min(760px, 100%);
    text-align: center;
}

.vb-hero.compact {
    width: min(620px, 100%);
}

.badge {
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(12, 12, 15, 0.82);
    border-radius: 999px;
    padding: 7px 14px;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #c4c4ca;
    margin-bottom: 24px;
}

.vb-hero h1 {
    margin: 0 0 18px;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.05;
    font-size: clamp(2.1rem, 7vw, 4.5rem);
}

.vb-hero .gradient {
    background: linear-gradient(90deg, #ffffff 0%, #d4d4d8 45%, #ff7a00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subtitle {
    margin: 0 auto;
    width: min(56ch, 100%);
    color: var(--text-soft);
    font-size: clamp(0.98rem, 2vw, 1.1rem);
    line-height: 1.75;
}

.cta-row {
    margin-top: 34px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.btn {
    border-radius: 13px;
    text-decoration: none;
    min-width: 220px;
    padding: 15px 18px;
    font-size: 0.92rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.premium-btn {
    color: #ffffff;
    background: var(--accent);
    box-shadow: 0 4px 20px rgba(255, 122, 0, 0.15);
}

.premium-btn:hover {
    background: var(--accent-strong);
    transform: translateY(-1.5px);
    box-shadow: 0 10px 26px rgba(255, 122, 0, 0.31);
}

.secondary-btn {
    color: #e4e4e7;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.09);
}

.secondary-btn:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.18);
}

.proofs {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 26px;
}

.proofs span {
    font-size: 0.75rem;
    color: #66666f;
}

.vb-footer {
    max-width: 1120px;
    margin: 0 auto;
    padding: 20px 24px 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    color: #5f5f66;
    font-size: 0.76rem;
}

.vb-footer-link {
    color: #7a7a85;
    text-decoration: none;
    transition: color 0.2s ease;
}

.vb-footer-link:hover {
    color: #c4c4ca;
}

.vb-main-legal {
    min-height: calc(100vh - 164px);
    display: block;
    padding: 18px 24px 40px;
}

.vb-legal-container {
    width: min(980px, 100%);
    margin: 0 auto;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(12, 12, 15, 0.74);
    padding: clamp(20px, 4vw, 34px);
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.34);
}

.vb-legal-title {
    margin: 0;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: clamp(1.7rem, 4vw, 2.4rem);
    letter-spacing: -0.02em;
}

.vb-legal-meta {
    margin: 8px 0 20px;
    color: #8d8d97;
    font-size: 0.85rem;
}

.vb-legal-section {
    margin-top: 26px;
}

.vb-legal-section h2 {
    margin: 0 0 10px;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 1.05rem;
    letter-spacing: 0.01em;
    color: #ebebf0;
}

.vb-legal-section p {
    margin: 0 0 12px;
    color: #b5b5be;
    line-height: 1.8;
    font-size: 0.93rem;
}

@media (max-width: 780px) {
    .vb-status {
        display: none;
    }

    .vb-header-right {
        width: 100%;
        justify-content: flex-end;
    }

    .btn {
        width: 100%;
        min-width: 0;
    }
}
