:root {
    --brand: rgb(7, 115, 242);
    --brand-dark: rgb(5, 95, 200);
    --brand-soft: rgba(7, 115, 242, 0.08);
    --ink: #0a0a0a;
    --ink-soft: #444;
    --ink-mute: #767676;
    --surface: #ffffff;
    --surface-soft: #f5f5f7;
    --surface-mid: #ececef;
    --dark: #1a1a1a;
    --dark-2: #232323;
    --border: #e5e5e7;
    --radius: 20px;
    --radius-sm: 14px;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.04);
    --shadow-md: 0 10px 30px rgba(0,0,0,0.08);
}

html, body { max-width: 100%; overflow-x: hidden; }
body {
    background: var(--surface);
    color: var(--ink);
    font-family: 'Proxima Nova', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
img, svg { max-width: 100%; }

.v2-container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }

/* ===================== HEADER ===================== */
.v2-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255,255,255,0.92);
    backdrop-filter: saturate(180%) blur(12px);
    -webkit-backdrop-filter: saturate(180%) blur(12px);
    border-bottom: 1px solid var(--border);
}
.v2-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 14px 0;
}
.v2-header__logo {
    font-size: 66px;
    font-weight: 900;
    color: var(--ink);
    text-decoration: none;
    letter-spacing: -0.02em;
    flex-shrink: 0;
    line-height: 1;
}
.v2-header__logo span { color: var(--brand); }
.v2-header__nav {
    display: flex;
    gap: 28px;
    margin-left: auto;
}
.v2-header__nav a {
    color: var(--ink-soft);
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.15s ease;
    white-space: nowrap;
}
.v2-header__nav a:hover { color: var(--brand); }
.v2-header__actions { display: flex; gap: 10px; flex-shrink: 0; }
.v2-header__login, .v2-header__signup {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}
.v2-header__login {
    color: var(--ink-soft);
    border: 1px solid var(--border);
    background: transparent;
}
.v2-header__login:hover { border-color: var(--ink); color: var(--ink); }
.v2-header__signup { background: var(--brand); color: #fff; }
.v2-header__signup:hover { background: var(--brand-dark); transform: translateY(-1px); }
@media (max-width: 820px) {
    .v2-header__nav { display: none; }
    .v2-header__inner { padding: 12px 0; }
    .v2-header__logo { font-size: 40px; }
}
@media (max-width: 420px) {
    .v2-header__logo { font-size: 36px; }
    .v2-header__login, .v2-header__signup { padding: 8px 12px; font-size: 13px; }
    .v2-header__actions { gap: 8px; }
}

/* ===================== HERO ===================== */
.v2-hero {
    position: relative;
    padding: 72px 0 0;
    background: linear-gradient(180deg, #fff 0%, #eef4ff 100%);
    overflow: hidden;
}
.v2-hero__grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 72px;
}
.v2-hero__grid .v2-hero__lead { margin-left: auto; margin-right: auto; }
.v2-hero__grid .v2-hero__cta { justify-content: center; }
.v2-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: #f97316;
    color: #fff;
    border-radius: 99px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.01em;
    margin-bottom: 28px;
}
.v2-hero__badge::before {
    content: "";
    width: 8px;
    height: 8px;
    background: #10b981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2);
    border-radius: 50%;
    animation: v2-pulse 2s infinite;
}
@keyframes v2-pulse { 0%, 100% { opacity: 1 } 50% { opacity: 0.4 } }
.v2-hero__tape-wrap {
    position: relative;
    padding: 22px 0;
    border-top: 1px solid rgba(10, 10, 12, 0.08);
    border-bottom: 1px solid rgba(10, 10, 12, 0.08);
    background: var(--surface-soft);
    overflow: hidden;
}
.v2-hero__tape-wrap::before,
.v2-hero__tape-wrap::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 140px;
    z-index: 2;
    pointer-events: none;
}
.v2-hero__tape-wrap::before { left: 0; background: linear-gradient(90deg, var(--surface-soft), transparent); }
.v2-hero__tape-wrap::after { right: 0; background: linear-gradient(-90deg, var(--surface-soft), transparent); }
.v2-hero__tape {
    display: flex;
    gap: 48px;
    white-space: nowrap;
    width: max-content;
    animation: v2-tape 38s linear infinite;
    align-items: center;
}
@keyframes v2-tape { to { transform: translateX(-50%); } }
.v2-hero__niche {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--ink);
}
.v2-hero__niche-ico {
    width: 40px;
    height: 40px;
    border-radius: 11px;
    background: rgba(7, 115, 242, 0.1);
    color: var(--brand);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.v2-hero__niche-ico svg { width: 20px; height: 20px; }
.v2-hero__tape-sep {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(10, 10, 12, 0.18);
    flex-shrink: 0;
}
.v2-hero__title {
    font-size: 72px;
    line-height: 1.02;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin: 0 0 22px;
    color: var(--ink);
    overflow-wrap: break-word;
    word-wrap: break-word;
    max-width: 100%;
}
.v2-hero__title span { color: var(--brand); }
.v2-hero__lead {
    font-size: 20px;
    line-height: 1.5;
    color: var(--ink-soft);
    margin: 0 0 36px;
    max-width: 540px;
}
.v2-hero__cta { display: flex; gap: 14px; flex-wrap: wrap; }
.v2-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 28px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 14px;
    text-decoration: none;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
    cursor: pointer;
    border: none;
}
.v2-btn--primary { background: var(--brand); color: #fff; box-shadow: 0 6px 20px rgba(7,115,242,0.3); }
.v2-btn--primary:hover { background: var(--brand-dark); transform: translateY(-2px); }
.v2-btn--ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--border); }
.v2-btn--ghost:hover { border-color: var(--ink); }
.v2-btn--big { padding: 20px 40px; font-size: 18px; }
.v2-hero__visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.v2-hero__visual img {
    max-width: 480px;
    width: 100%;
    mix-blend-mode: multiply;
}
.v2-hero__dot {
    position: absolute;
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, rgba(7,115,242,0.4) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(20px);
    z-index: 0;
}

/* ===================== STATS — timeline ===================== */
.v2-stats {
    padding: 120px 0 130px;
    background:
        radial-gradient(ellipse 80% 50% at 20% 0%, rgba(59,130,246,0.12) 0%, transparent 60%),
        radial-gradient(ellipse 80% 50% at 80% 100%, rgba(167,139,250,0.12) 0%, transparent 60%),
        var(--dark);
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.v2-stats::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: radial-gradient(ellipse at center, black 10%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 10%, transparent 75%);
    pointer-events: none;
}
.v2-stats__intro {
    text-align: center;
    margin-bottom: 72px;
    position: relative;
    z-index: 1;
}
.v2-stats__intro-title {
    font-size: 36px;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin: 0 0 10px;
    color: #fff;
    line-height: 1.12;
}
.v2-stats__intro-sub {
    color: rgba(255,255,255,0.55);
    font-size: 15px;
    margin: 0;
}
.v2-stats__track {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    z-index: 1;
}
.v2-stats__track::before {
    content: "";
    position: absolute;
    top: 80px;
    left: 12%;
    right: 12%;
    height: 2px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(96, 165, 250, 0.4) 8%,
        rgba(251, 191, 36, 0.4) 36%,
        rgba(52, 211, 153, 0.4) 66%,
        rgba(192, 132, 252, 0.4) 92%,
        transparent 100%);
}
.v2-stats__live {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 56px auto 0;
    padding: 6px 14px;
    border-radius: 99px;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.2);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
    position: relative;
    z-index: 2;
    font-variant-numeric: tabular-nums;
}
.v2-stats__live::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.2), 0 0 10px rgba(34, 197, 94, 0.6);
    animation: v2-pulse 2s infinite;
}
.v2-stats__live-wrap {
    text-align: center;
    position: relative;
    z-index: 2;
}
.v2-stat-node {
    --ac: 96, 165, 250;
    position: relative;
    padding: 0 20px;
    text-align: center;
}
.v2-stat-node__year {
    display: block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.18em;
    color: rgba(255,255,255,0.45);
    margin-bottom: 26px;
    text-transform: uppercase;
}
.v2-stat-node__year strong {
    color: #fff;
    opacity: 0.9;
    font-weight: 700;
}
.v2-stat-node__dot {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgb(var(--ac));
    border: 4px solid var(--dark);
    margin: 0 auto 32px;
    position: relative;
    box-shadow: 0 0 0 1px rgba(var(--ac), 0.5), 0 0 30px rgba(var(--ac), 0.6);
}
.v2-stat-node__dot::after {
    content: "";
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    border: 2px solid rgba(var(--ac), 0.3);
    animation: v2statPing 2.2s ease-out infinite;
}
.v2-stat-node:nth-child(2) .v2-stat-node__dot::after { animation-delay: 0.3s; }
.v2-stat-node:nth-child(3) .v2-stat-node__dot::after { animation-delay: 0.6s; }
.v2-stat-node:nth-child(4) .v2-stat-node__dot::after { animation-delay: 0.9s; }
@keyframes v2statPing {
    0% { transform: scale(0.9); opacity: 1; }
    100% { transform: scale(1.7); opacity: 0; }
}
.v2-stat-node__num {
    font-size: 72px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.045em;
    color: #fff;
    margin-bottom: 14px;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 6px;
    font-feature-settings: "tnum","lnum";
}
.v2-stat-node__num em {
    font-style: normal;
    font-size: 18px;
    font-weight: 600;
    color: rgba(255,255,255,0.4);
    letter-spacing: 0;
}
.v2-stat-node__label {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    line-height: 1.45;
    max-width: 220px;
    margin: 0 auto;
}

/* ===================== SECTION HEAD ===================== */
.v2-section { padding: 90px 0; }
.v2-section--dark { background: var(--dark); color: #fff; }
.v2-section--soft { background: var(--surface-soft); }
.v2-section__eyebrow {
    display: inline-block;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--brand);
    font-weight: 600;
    margin-bottom: 16px;
}
.v2-section--dark .v2-section__eyebrow { color: rgba(255,255,255,0.5); }
.v2-section__title {
    font-size: 48px;
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin: 0 0 16px;
}
.v2-section--dark .v2-section__title { color: #fff; }
.v2-section__lead {
    font-size: 18px;
    line-height: 1.5;
    color: var(--ink-mute);
    margin: 0 0 56px;
    max-width: 680px;
}
.v2-section--dark .v2-section__lead { color: rgba(255,255,255,0.7); }
.v2-section__head { text-align: center; }
.v2-section__head .v2-section__lead { margin-left: auto; margin-right: auto; }

/* ===================== NICHES — bento ===================== */
.v2-niches__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    grid-template-rows: repeat(3, minmax(150px, auto));
    gap: 14px;
}
.v2-niches__grid > *:last-child { grid-column: 2 / span 2; }
.v2-niche-hero {
    grid-row: 1 / span 3;
    grid-column: 1;
    position: relative;
    padding: 36px 40px;
    background: linear-gradient(160deg, #ec4899 0%, #be185d 80%);
    color: #fff;
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 520px;
    isolation: isolate;
}
.v2-niche-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(ellipse at 100% 0%, black 0%, transparent 65%);
    -webkit-mask-image: radial-gradient(ellipse at 100% 0%, black 0%, transparent 65%);
    pointer-events: none;
    z-index: -1;
}
.v2-niche-hero__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.v2-niche-hero__ico {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: rgba(255,255,255,0.2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.v2-niche-hero__ico svg { width: 28px; height: 28px; }
.v2-niche-hero__chip {
    padding: 6px 12px;
    border-radius: 99px;
    background: rgba(255,255,255,0.22);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.v2-niche-hero__name {
    font-size: 44px;
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: 1.02;
    margin-bottom: 10px;
}
.v2-niche-hero__sub {
    font-size: 14px;
    color: #fff;
    font-weight: 700;
    letter-spacing: 0.02em;
    margin-bottom: 14px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}
.v2-niche-hero__desc {
    font-size: 16px;
    line-height: 1.5;
    color: #fff;
    max-width: 380px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.12);
}
.v2-niche-card {
    --c: var(--brand);
    padding: 24px 26px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.v2-niche-card:hover {
    transform: translateY(-3px);
    border-color: var(--c);
    box-shadow: 0 10px 30px -15px rgba(7, 115, 242, 0.25);
}
.v2-niche-card__ico {
    width: 46px;
    height: 46px;
    border-radius: 13px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: color-mix(in srgb, var(--c) 14%, transparent);
    color: var(--c);
    margin-bottom: 4px;
}
.v2-niche-card__ico svg { width: 24px; height: 24px; }
.v2-niche-card__name {
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -0.015em;
    margin-bottom: 2px;
}
.v2-niche-card__sub {
    font-size: 12px;
    color: var(--ink-mute);
    font-weight: 600;
    margin-bottom: 4px;
    letter-spacing: 0.01em;
}
.v2-niche-card__desc {
    font-size: 14px;
    color: var(--ink-soft);
    line-height: 1.5;
    margin: 0;
}

/* ===================== TEAM — terminal ===================== */
.v2-team {
    max-width: 860px;
    margin: 0 auto;
}
.v2-team__shell {
    background: #0d0d11;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    overflow: hidden;
    box-shadow:
        0 40px 80px -30px rgba(7, 115, 242, 0.25),
        0 20px 50px -20px rgba(0, 0, 0, 0.35);
    font-family: ui-monospace, "SF Mono", "Roboto Mono", Menlo, Consolas, monospace;
    color: #eaeaef;
}
.v2-team__bar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: rgba(255,255,255,0.03);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.v2-team__dots { display: flex; gap: 6px; }
.v2-team__dot { width: 12px; height: 12px; border-radius: 50%; }
.v2-team__dot--r { background: #ef4444; }
.v2-team__dot--y { background: #eab308; }
.v2-team__dot--g { background: #22c55e; }
.v2-team__bar-title {
    font-size: 12px;
    color: rgba(255,255,255,0.55);
    margin: 0 auto;
    letter-spacing: 0.04em;
}
.v2-team__body {
    padding: 26px 30px 30px;
    font-size: 13.5px;
    line-height: 1.75;
}
.v2-team__prompt { color: #7bc9ff; }
.v2-team__cmd { color: #fff; }
.v2-team__out { color: rgba(255,255,255,0.65); }
.v2-team__num { color: #a5e4a0; font-weight: 700; font-feature-settings: "tnum","lnum"; }
.v2-team__key { color: #fcd34d; }
.v2-team__divider {
    margin: 14px 0;
    border-top: 1px dashed rgba(255,255,255,0.12);
}
.v2-team__row {
    display: grid;
    grid-template-columns: 110px 1fr 160px 40px;
    gap: 16px;
    align-items: center;
    font-size: 13px;
    padding: 6px 0;
    opacity: 0;
    animation: v2teamFade 0.35s ease-out forwards;
}
.v2-team__row:nth-of-type(1) { animation-delay: 0.1s; }
.v2-team__row:nth-of-type(2) { animation-delay: 0.22s; }
.v2-team__row:nth-of-type(3) { animation-delay: 0.34s; }
.v2-team__row:nth-of-type(4) { animation-delay: 0.46s; }
@keyframes v2teamFade {
    from { opacity: 0; transform: translateX(-6px); }
    to { opacity: 1; transform: translateX(0); }
}
.v2-team__bar-mini {
    height: 6px;
    background: rgba(255,255,255,0.08);
    border-radius: 99px;
    position: relative;
    overflow: hidden;
}
.v2-team__bar-mini::after {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: var(--pct, 50%);
    background: linear-gradient(90deg, #60a5fa, #0773f2);
    border-radius: inherit;
    transform-origin: left;
    animation: v2teamBar 0.9s cubic-bezier(0.25, 0.8, 0.25, 1) var(--bar-delay, 0.3s) both;
}
@keyframes v2teamBar { from { transform: scaleX(0); } }
.v2-team__row-num { text-align: right; }
.v2-team__big {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.01em;
}
.v2-team__cursor {
    display: inline-block;
    width: 8px;
    height: 16px;
    background: #7bc9ff;
    vertical-align: text-bottom;
    margin-left: 3px;
    animation: v2teamBlink 1s steps(1) infinite;
}
@keyframes v2teamBlink { 50% { opacity: 0; } }

/* ===================== ADVANTAGES ===================== */
/* ===================== AUDIENCE — tabs + panel ===================== */
.v2-audience__tabs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    background: var(--surface-soft);
    padding: 8px;
    border-radius: 18px;
    margin: 0 auto 40px;
    max-width: 960px;
}
.v2-audience__tab {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    border-radius: 12px;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
    background: transparent;
    border: none;
    text-align: left;
    font-family: inherit;
    color: var(--ink-soft);
    font-size: 14px;
    font-weight: 700;
}
.v2-audience__tab.active {
    background: var(--surface);
    color: var(--ink);
    box-shadow: 0 8px 20px -8px rgba(7, 115, 242, 0.15), 0 1px 0 rgba(0, 0, 0, 0.04);
}
.v2-audience__tab-ico {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.v2-audience__tab-ico svg { width: 16px; height: 16px; }
.v2-audience__panel {
    --c: var(--brand);
    max-width: 1080px;
    margin: 0 auto;
    background: linear-gradient(160deg, var(--surface) 0%, var(--surface-soft) 100%);
    border: 1px solid var(--border);
    border-radius: 28px;
    padding: 40px 44px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.v2-audience__panel::before {
    content: "";
    position: absolute;
    top: -80px;
    right: -60px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, color-mix(in srgb, var(--c) 18%, transparent) 0%, transparent 65%);
    pointer-events: none;
}
.v2-audience__panel-left { position: relative; z-index: 1; }
.v2-audience__panel-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: color-mix(in srgb, var(--c) 14%, transparent);
    color: var(--c);
    border-radius: 99px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    margin-bottom: 18px;
}
.v2-audience__panel-badge::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
}
.v2-audience__panel-name {
    font-size: 36px;
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: 1.05;
    margin-bottom: 10px;
}
.v2-audience__panel-sub {
    font-size: 14px;
    color: var(--ink-mute);
    font-weight: 600;
    margin-bottom: 16px;
}
.v2-audience__panel-desc {
    font-size: 16px;
    line-height: 1.55;
    color: var(--ink-soft);
    max-width: 420px;
    margin: 0;
}
.v2-audience__list {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 22px 24px;
    position: relative;
    z-index: 1;
}
.v2-audience__list-title {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ink-mute);
    margin-bottom: 14px;
}
.v2-audience__list-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px dashed var(--border);
    font-size: 14px;
}
.v2-audience__list-row:last-child { border-bottom: none; }
.v2-audience__check {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.15);
    color: #059669;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.v2-audience__check svg { width: 12px; height: 12px; }

/* ===================== HOW IT WORKS ===================== */
.v2-how__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
}
.v2-how__step {
    position: relative;
}
.v2-how__num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--brand);
    color: #fff;
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 20px;
    box-shadow: 0 6px 16px rgba(7,115,242,0.3);
}
.v2-how__title {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 8px;
}
.v2-how__desc {
    font-size: 15px;
    line-height: 1.5;
    color: var(--ink-mute);
    margin: 0;
}

/* ===================== PARTNERS ===================== */
.v2-partners__label {
    font-size: 14px;
    font-weight: 600;
    color: var(--ink-mute);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-align: center;
    margin-bottom: 28px;
}
.v2-partners__row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
}
.v2-partners__row img { max-height: 64px; width: auto; }
.v2-partners__divider {
    height: 1px;
    background: var(--border);
    margin: 64px 0 48px;
}

/* ===================== FAQ ===================== */
.v2-faq__list {
    max-width: 820px;
    margin: 0 auto;
}
.v2-faq__item {
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    margin-bottom: 12px;
    overflow: hidden;
    background: var(--surface);
    transition: border-color 0.2s ease;
}
.v2-faq__item[open] { border-color: var(--brand); }
.v2-faq__q {
    padding: 20px 24px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}
.v2-faq__q::-webkit-details-marker { display: none }
.v2-faq__q::after {
    content: "+";
    font-size: 24px;
    font-weight: 400;
    color: var(--brand);
    transition: transform 0.2s ease;
}
.v2-faq__item[open] .v2-faq__q::after { content: "−"; }
.v2-faq__a {
    padding: 0 24px 20px;
    font-size: 16px;
    line-height: 1.55;
    color: var(--ink-soft);
}

/* ===================== FINAL CTA ===================== */
.v2-cta {
    padding: 90px 0;
    background: linear-gradient(135deg, var(--brand) 0%, #3d8bff 100%);
    position: relative;
    overflow: hidden;
}
.v2-cta::before, .v2-cta::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
}
.v2-cta::before { width: 400px; height: 400px; top: -150px; left: -100px; }
.v2-cta::after { width: 300px; height: 300px; bottom: -100px; right: -50px; }
.v2-cta__inner {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
}
.v2-cta__avatars {
    display: flex;
    justify-content: center;
    margin-bottom: 28px;
}
.v2-cta__avatars img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 3px solid #fff;
    margin-left: -16px;
    object-fit: cover;
}
.v2-cta__avatars img:first-child { margin-left: 0; }
.v2-cta__title {
    font-size: 48px;
    line-height: 1.1;
    font-weight: 800;
    color: #fff;
    margin: 0 0 16px;
    letter-spacing: -0.02em;
}
.v2-cta__lead {
    font-size: 18px;
    line-height: 1.5;
    color: rgba(255,255,255,0.85);
    margin: 0 0 36px;
}
.v2-cta .v2-btn--primary {
    background: #fff;
    color: var(--brand);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
.v2-cta .v2-btn--primary:hover { background: #f5f5f7; }

/* ===================== FOOTER ===================== */
.v2-footer {
    background: var(--dark);
    color: rgba(255,255,255,0.7);
    padding: 36px 0;
    border-top: 1px solid rgba(255,255,255,0.06);
}
.v2-footer__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}
.v2-footer__logo {
    font-weight: 900;
    font-size: 22px;
    color: #fff;
    text-decoration: none;
    letter-spacing: -0.02em;
}
.v2-footer__logo span { color: var(--brand); }
.v2-footer__mail {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    padding: 10px 18px;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 99px;
    transition: border-color 0.15s ease, color 0.15s ease;
}
.v2-footer__mail:hover { border-color: var(--brand); color: #fff; }
.v2-footer__copy { font-size: 13px; color: rgba(255,255,255,0.45); }

@media (max-width: 640px) {
    .v2-footer__inner { flex-direction: column; text-align: center; }
}

/* ===================== STICKY MOBILE CTA ===================== */
.v2-mobile-cta {
    display: none;
    position: fixed;
    bottom: 14px;
    left: 14px;
    right: 14px;
    z-index: 100;
    padding: 15px 22px;
    background: var(--brand);
    color: #fff;
    border-radius: 14px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 16px 36px -10px rgba(7, 115, 242, 0.55), 0 4px 12px -4px rgba(0, 0, 0, 0.18);
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
}
.v2-mobile-cta svg { width: 18px; height: 18px; }
@media (max-width: 720px) {
    .v2-mobile-cta { display: inline-flex; }
    .v2-mobile-cta.visible {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }
}

/* ===================== PAYOUTS ===================== */
.v2-payouts {
    max-width: 920px;
    margin: 0 auto;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}
.v2-payouts__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 28px;
    background: var(--dark);
    color: #fff;
    gap: 16px;
    flex-wrap: wrap;
}
.v2-payouts__pulse {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 14px;
}
.v2-payouts__dot {
    width: 10px;
    height: 10px;
    background: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(34,197,94,0.7);
    animation: v2-ping 2s infinite;
}
@keyframes v2-ping {
    0% { box-shadow: 0 0 0 0 rgba(34,197,94,0.7) }
    70% { box-shadow: 0 0 0 12px rgba(34,197,94,0) }
    100% { box-shadow: 0 0 0 0 rgba(34,197,94,0) }
}
.v2-payouts__next {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: flex-end;
}
.v2-payouts__next b { color: #fff; font-weight: 700; }
.v2-payouts__countdown {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    background: rgba(34, 197, 94, 0.14);
    color: #86efac;
    border: 1px solid rgba(34, 197, 94, 0.25);
    border-radius: 8px;
    font-size: 12.5px;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    letter-spacing: 0.02em;
}
.v2-payouts__countdown::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.25);
    animation: v2-pulse 2s infinite;
}
.v2-payouts__list {
    list-style: none;
    margin: 0;
    padding: 0;
    max-height: 460px;
    overflow-y: auto;
    scroll-behavior: smooth;
}
.v2-payouts__list::-webkit-scrollbar { width: 8px; }
.v2-payouts__list::-webkit-scrollbar-track { background: var(--surface-soft); }
.v2-payouts__list::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }
.v2-payouts__item {
    display: grid;
    grid-template-columns: 180px 1fr auto;
    gap: 20px;
    padding: 18px 28px;
    border-bottom: 1px solid var(--border);
    align-items: center;
    font-size: 15px;
    transition: background 0.15s ease;
}
.v2-payouts__item:last-child { border-bottom: none; }
.v2-payouts__item:hover { background: var(--surface-soft); }
.v2-payouts__item:first-child { background: rgba(34,197,94,0.05); }
.v2-payouts__date {
    color: var(--ink);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}
.v2-payouts__date::before {
    content: "";
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    flex-shrink: 0;
}
.v2-payouts__text {
    color: var(--ink-soft);
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.v2-payouts__count {
    color: var(--ink);
    font-weight: 600;
}
.v2-payouts__new {
    background: #22c55e;
    color: #fff;
    padding: 2px 8px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.v2-payouts__status {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(34,197,94,0.12);
    color: #22c55e;
    font-weight: 700;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* ===================== LOTTERY ===================== */
.v2-lottery {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 48px;
    align-items: center;
    padding: 56px 48px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border-radius: var(--radius);
    color: #fff;
    position: relative;
    overflow: hidden;
}
.v2-lottery::before {
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(7,115,242,0.3) 0%, transparent 70%);
    filter: blur(20px);
    z-index: 0;
}
.v2-lottery::after {
    content: "";
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(251,191,36,0.15) 0%, transparent 70%);
    filter: blur(20px);
    z-index: 0;
}
.v2-lottery__info { position: relative; z-index: 1; }
.v2-lottery .v2-section__eyebrow {
    color: var(--brand);
    margin-bottom: 16px;
}
.v2-lottery__title {
    font-size: 42px;
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #fff;
    margin: 0 0 16px;
}
.v2-lottery__lead {
    font-size: 17px;
    line-height: 1.55;
    color: rgba(255,255,255,0.75);
    margin: 0 0 24px;
}
.v2-lottery__rules {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
}
.v2-lottery__rules li {
    padding-left: 30px;
    margin-bottom: 10px;
    position: relative;
    color: rgba(255,255,255,0.85);
    font-size: 15px;
    line-height: 1.5;
}
.v2-lottery__rules li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    background: rgba(7,115,242,0.2);
    color: var(--brand);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
}
.v2-lottery__disclaimer {
    margin: 18px 0 0;
    font-size: 12px;
    font-style: italic;
    line-height: 1.5;
    color: rgba(255,255,255,0.45);
    max-width: 460px;
}
.v2-lottery__disclaimer a {
    color: rgba(255,255,255,0.65);
    text-decoration: underline;
    text-underline-offset: 2px;
}
.v2-lottery__disclaimer a:hover { color: #fff; }
.v2-lottery__board {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 28px;
    border-radius: var(--radius-sm);
    position: relative;
    z-index: 1;
}
.v2-lottery__board-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 12px;
}
.v2-lottery__board-head h4 {
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    margin: 0;
}
.v2-lottery__countdown {
    font-size: 12px;
    color: rgba(255,255,255,0.6);
    background: rgba(255,255,255,0.08);
    padding: 6px 12px;
    border-radius: 99px;
    font-weight: 500;
}
.v2-lottery__countdown b {
    color: rgba(255,255,255,0.95);
    font-weight: 700;
}
.v2-lottery__leaders {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}
.v2-lottery__leaders li {
    display: grid;
    grid-template-columns: 32px 1fr auto;
    gap: 14px;
    padding: 11px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    align-items: center;
    font-size: 15px;
}
.v2-lottery__leaders li:last-child { border: none; }
.v2-lottery__leaders .num {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
}
.v2-lottery__leaders .num-1 { background: #fbbf24; color: #000; }
.v2-lottery__leaders .num-2 { background: #d1d5db; color: #000; }
.v2-lottery__leaders .num-3 { background: #cd7f32; color: #fff; }
.v2-lottery__leaders .id {
    color: rgba(255,255,255,0.9);
    font-family: ui-monospace, monospace;
    font-size: 14px;
}
.v2-lottery__leaders .tickets {
    color: rgba(255,255,255,0.9);
    font-weight: 600;
    font-size: 14px;
}
.v2-lottery__prize-img {
    position: relative;
    margin: -28px -28px 24px -28px;
    border-radius: var(--radius-sm) var(--radius-sm) 0 0;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: #000;
}
.v2-lottery__prize-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.v2-lottery__prize-label {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(10px);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 5px 10px;
    border-radius: 99px;
    border: 1px solid rgba(255,255,255,0.15);
}

/* ===================== REVIEWS ===================== */
.v2-reviews__stat {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(251,191,36,0.15);
    color: #92400e;
    padding: 8px 16px;
    border-radius: 99px;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 16px;
}
.v2-reviews__stat-stars { color: #f59e0b; }
.v2-reviews__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.v2-review {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: all 0.2s ease;
}
.v2-review:hover {
    border-color: var(--brand);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.v2-review__head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border);
}
.v2-review__date {
    font-size: 13px;
    color: var(--ink-mute);
    font-weight: 500;
}
.v2-review__rating {
    background: rgba(251,191,36,0.15);
    color: #92400e;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.v2-review__text {
    font-size: 15px;
    line-height: 1.55;
    color: var(--ink-soft);
    margin: 0;
    flex: 1;
}
.v2-reviews__cta-wrap {
    text-align: center;
    margin-top: 48px;
}
.v2-reviews__cta {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    padding: 16px 28px 16px 22px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    text-decoration: none;
    box-shadow: var(--shadow-sm);
    transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    text-align: left;
}
.v2-reviews__cta:hover {
    border-color: var(--brand);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}
.v2-reviews__cta-logo {
    height: 34px;
    width: auto;
    flex-shrink: 0;
}
.v2-reviews__cta-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.v2-reviews__cta-text strong {
    color: var(--ink);
    font-weight: 700;
    font-size: 15px;
    line-height: 1.3;
}
.v2-reviews__cta-text small {
    color: var(--ink-mute);
    font-size: 13px;
    line-height: 1.3;
}
.v2-reviews__cta-arrow {
    color: var(--brand);
    font-size: 22px;
    font-weight: 600;
    transition: transform 0.2s ease;
    flex-shrink: 0;
}
.v2-reviews__cta:hover .v2-reviews__cta-arrow { transform: translateX(4px); }
@media (max-width: 520px) {
    .v2-reviews__cta { flex-direction: column; text-align: center; gap: 12px; padding: 20px; }
    .v2-reviews__cta-arrow { display: none; }
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1100px) {
    .v2-hero__title { font-size: 56px; }
    .v2-section__title, .v2-cta__title { font-size: 40px; }
    .v2-stats__intro-title { font-size: 30px; }
    .v2-stat-node__num { font-size: 56px; }
    .v2-stat-node__num em { font-size: 16px; }
    .v2-stat-node { padding: 0 12px; }
    .v2-niches__grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
    .v2-niches__grid > *:last-child { grid-column: auto; }
    .v2-niche-hero { grid-row: auto; grid-column: span 2; min-height: 320px; padding: 30px 32px; }
    .v2-niche-hero__name { font-size: 38px; }
    .v2-audience__tabs { grid-template-columns: repeat(2, 1fr); }
    .v2-audience__panel { grid-template-columns: 1fr; gap: 28px; padding: 32px 28px; }
    .v2-audience__panel-name { font-size: 30px; }
    .v2-how__grid { grid-template-columns: repeat(2, 1fr); }
    .v2-reviews__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 820px) {
    .v2-section { padding: 64px 0; }
    .v2-hero { padding: 48px 0 0; }
    .v2-hero__grid { grid-template-columns: 1fr; gap: 32px; margin-bottom: 48px; }
    .v2-hero__visual { order: -1; }
    .v2-hero__visual img { max-width: 280px; }
    .v2-hero__title { font-size: 32px; line-height: 1.1; }
    .v2-hero__lead { font-size: 16px; }
    .v2-hero__niche { font-size: 17px; }
    .v2-hero__niche-ico { width: 34px; height: 34px; border-radius: 9px; }
    .v2-hero__niche-ico svg { width: 18px; height: 18px; }
    .v2-hero__tape { gap: 32px; }
    .v2-hero__tape-wrap::before, .v2-hero__tape-wrap::after { width: 70px; }
    .v2-stats { padding: 80px 0 84px; }
    .v2-stats__intro { margin-bottom: 48px; }
    .v2-stats__intro-title { font-size: 26px; }
    .v2-stats__intro-sub { font-size: 14px; }
    .v2-stats__track { grid-template-columns: repeat(2, 1fr); row-gap: 56px; }
    .v2-stats__track::before { display: none; }
    .v2-stat-node__num { font-size: 52px; }
    .v2-stat-node__num em { font-size: 15px; }
    .v2-stat-node__year { margin-bottom: 20px; font-size: 12px; }
    .v2-stat-node__dot { margin-bottom: 24px; }
    .v2-section__title, .v2-cta__title { font-size: 32px; }
    .v2-niches__grid { grid-template-columns: 1fr; }
    .v2-niche-hero { grid-column: auto; min-height: 280px; padding: 26px 28px; }
    .v2-niche-hero__name { font-size: 32px; }
    .v2-niche-hero__desc { font-size: 15px; }
    .v2-niche-card { padding: 20px 22px; }
    .v2-niche-card__name { font-size: 18px; }
    .v2-audience__tabs { grid-template-columns: 1fr; }
    .v2-audience__tab { padding: 12px 14px; font-size: 13px; }
    .v2-audience__panel { padding: 26px 20px; }
    .v2-audience__panel-name { font-size: 26px; }
    .v2-how__grid { grid-template-columns: 1fr; gap: 20px; }
    .v2-partners__row { gap: 28px; }
    .v2-partners__row img { max-height: 48px; }
    .v2-btn--big { padding: 18px 32px; font-size: 16px; }
    .v2-lottery { grid-template-columns: 1fr; padding: 32px 24px; gap: 32px; }
    .v2-lottery__title { font-size: 30px; }
    .v2-reviews__grid { grid-template-columns: 1fr; }
    .v2-payouts__item { grid-template-columns: 1fr auto; padding: 14px 18px; gap: 12px; }
    .v2-payouts__date { grid-column: 1; font-size: 14px; }
    .v2-payouts__status { grid-column: 2; grid-row: 1; }
    .v2-payouts__text { grid-column: 1 / span 2; font-size: 13px; }
    .v2-payouts__header { padding: 16px 18px; }
    .v2-team__body { padding: 18px 18px 22px; font-size: 12px; line-height: 1.7; }
    .v2-team__row { grid-template-columns: 80px 1fr 36px; gap: 10px; font-size: 12px; }
    .v2-team__bar-mini { display: none; }
    .v2-team__big { font-size: 18px; }
}
@media (max-width: 480px) {
    .v2-container { padding: 0 16px; }
    .v2-hero { padding: 32px 0 0; }
    .v2-hero__grid { margin-bottom: 36px; }
    .v2-hero__title { font-size: 26px; letter-spacing: -0.01em; line-height: 1.12; margin-bottom: 16px; }
    .v2-hero__lead { font-size: 14px; margin-bottom: 24px; }
    .v2-hero__badge { font-size: 12px; padding: 8px 14px; margin-bottom: 20px; }
    .v2-section__title, .v2-cta__title { font-size: 26px; }
    .v2-hero__cta { flex-direction: column; align-items: stretch; width: 100%; }
    .v2-btn { width: 100%; }
    .v2-btn--big { padding: 15px 20px; font-size: 15px; }
    .v2-niches__grid { grid-template-columns: 1fr; }
    .v2-lottery__title { font-size: 26px; }
    .v2-stats__intro-title { font-size: 22px; }
    .v2-stat-node { padding: 0 8px; }
    .v2-stat-node__num { font-size: 42px; }
    .v2-stat-node__num em { font-size: 13px; }
    .v2-stat-node__year { font-size: 11px; letter-spacing: 0.14em; margin-bottom: 16px; }
    .v2-stat-node__dot { width: 18px; height: 18px; margin-bottom: 20px; }
    .v2-stat-node__label { font-size: 12.5px; line-height: 1.4; }
}
@media (max-width: 380px) {
    .v2-container { padding: 0 14px; }
    .v2-hero__title { font-size: 22px; }
    .v2-hero__lead { font-size: 13.5px; }
    .v2-hero__niche { font-size: 15px; }
    .v2-hero__niche-ico { width: 30px; height: 30px; }
    .v2-hero__niche-ico svg { width: 16px; height: 16px; }
}
