:root {
    --red: #ff0000;
    --green: #00ff41;
    --bg: #07090d;
    --bg2: #0e121a;
    --paper: #f6f7fb;
    --ink: #0b0f16;
    --muted: #8ea0b8;
    --white: #ffffff;
    --radius: 18px;
    --shadow: 0 18px 60px rgba(0, 0, 0, .28);
    --shadow2: 0 10px 30px rgba(0, 0, 0, .18)
}

* {
    box-sizing: border-box
}

html,
body {
    margin: 0;
    padding: 0
}

body {
    font-family: "Space Grotesk", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    line-height: 1.55;
    background: var(--bg);
    color: var(--white);
    text-rendering: optimizeLegibility
}

img,
video {
    max-width: 100%;
    height: auto;
    vertical-align: middle
}

a {
    color: inherit;
    text-decoration: none
}

a:hover {
    opacity: .86
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 18px
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -12px
}

.col {
    padding: 0 12px;
    flex: 1 0 0
}

.col-12 {
    flex: 0 0 100%
}

@media(min-width:900px) {
    .col-6 {
        flex: 0 0 50%
    }

    .col-5 {
        flex: 0 0 41.6667%
    }

    .col-7 {
        flex: 0 0 58.3333%
    }

    .col-4 {
        flex: 0 0 33.3333%
    }

    .col-8 {
        flex: 0 0 66.6667%
    }
}

.block {
    padding: 72px 0;
    position: relative;
    overflow: hidden
}

.block.light {
    background: var(--paper);
    color: var(--ink)
}

.block.dark {
    background: var(--bg2);
    color: var(--white)
}

.block.edge {
    background: linear-gradient(135deg, rgba(255, 0, 0, .16) 0%, rgba(0, 255, 65, .16) 55%, rgba(255, 0, 0, .10) 100%), var(--bg);
    color: var(--white)
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .14);
    backdrop-filter: blur(6px);
    font-weight: 700;
    letter-spacing: .2px
}

.badge .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 0 6px rgba(0, 255, 65, .16)
}

.badge.red .dot {
    background: var(--red);
    box-shadow: 0 0 0 6px rgba(255, 0, 0, .16)
}

.h1 {
    font-size: clamp(2.4rem, 3.2vw + 1rem, 4.2rem);
    line-height: 1.02;
    margin: 18px 0 14px;
    font-weight: 800;
    letter-spacing: -.02em
}

.h2 {
    font-size: clamp(1.8rem, 1.6vw + 1rem, 2.6rem);
    line-height: 1.12;
    margin: 0 0 12px;
    font-weight: 800;
    letter-spacing: -.01em
}

.h3 {
    font-size: clamp(1.2rem, .7vw + 1rem, 1.6rem);
    margin: 0 0 10px;
    font-weight: 800
}

.lead {
    font-size: clamp(1.05rem, .6vw + .9rem, 1.25rem);
    color: rgba(255, 255, 255, .86);
    margin: 0 0 18px
}

.light .lead {
    color: rgba(11, 15, 22, .80)
}

.kicker {
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .14em;
    font-size: .85rem;
    color: rgba(255, 255, 255, .78)
}

.light .kicker {
    color: rgba(11, 15, 22, .62)
}

.hr {
    height: 1px;
    background: rgba(255, 255, 255, .14);
    margin: 22px 0
}

.light .hr {
    background: rgba(11, 15, 22, .12)
}

.hero {
    padding: 82px 0 76px
}

.brandbar {
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .10);
    background: rgba(7, 9, 13, .92);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 50
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px
}

.logoMark {
    width: 16px;
    height: 16px;
    border-radius: 5px;
    background: conic-gradient(from 180deg, var(--red), var(--green), var(--red));
    box-shadow: 0 0 0 6px rgba(0, 255, 65, .10), 0 0 0 10px rgba(255, 0, 0, .08)
}

.brand .name {
    font-weight: 900;
    letter-spacing: -.02em
}

.brand .tag {
    font-weight: 700;
    color: rgba(255, 255, 255, .72)
}

.light .brand .tag {
    color: rgba(11, 15, 22, .62)
}

.pulse {
    animation: pulse 1.25s ease-in-out infinite
}

@keyframes pulse {

    0%,
    100% {
        transform: translateZ(0) scale(1);
        filter: saturate(1)
    }

    50% {
        transform: translateZ(0) scale(1.03);
        filter: saturate(1.2)
    }
}

.ctaRow {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    margin-top: 18px
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 18px;
    border-radius: 14px;
    font-weight: 900;
    letter-spacing: .01em;
    border: 1px solid transparent
}

.btn.primary {
    background: linear-gradient(135deg, var(--red), var(--green));
    color: var(--ink);
    box-shadow: 0 18px 60px rgba(0, 255, 65, .18), 0 18px 60px rgba(255, 0, 0, .14)
}

.btn.ghost {
    background: transparent;
    border-color: rgba(255, 255, 255, .18);
    color: var(--white)
}

.light .btn.ghost {
    border-color: rgba(11, 15, 22, .16);
    color: var(--ink)
}

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

@media(min-width:900px) {
    .split {
        grid-template-columns: 1.1fr .9fr
    }

    .split.reverse {
        grid-template-columns: .9fr 1.1fr
    }

    .split.reverse .media {
        order: -1
    }
}

.mediaCard {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(255, 255, 255, .06)
}

.light .mediaCard {
    border-color: rgba(11, 15, 22, .10);
    background: rgba(255, 255, 255, .70);
    box-shadow: var(--shadow2)
}

.mediaCard .cap {
    padding: 14px 16px;
    font-weight: 800;
    display: flex;
    justify-content: space-between;
    gap: 12px;
    background: rgba(7, 9, 13, .78)
}

.light .mediaCard .cap {
    background: rgba(255, 255, 255, .78)
}

.bigMetric {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 16px
}

@media(min-width:900px) {
    .bigMetric {
        grid-template-columns: repeat(3, 1fr)
    }
}

.metric {
    border-radius: var(--radius);
    padding: 16px 16px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .12)
}

.light .metric {
    background: rgba(11, 15, 22, .04);
    border-color: rgba(11, 15, 22, .10)
}

.metric .n {
    font-size: clamp(2.2rem, 1.6vw + 1.8rem, 3.2rem);
    line-height: 1;
    font-weight: 900;
    letter-spacing: -.02em
}

.metric .n .up {
    color: var(--green)
}

.metric .n .down {
    color: var(--red)
}

.metric .t {
    margin-top: 8px;
    color: rgba(255, 255, 255, .76);
    font-weight: 700
}

.light .metric .t {
    color: rgba(11, 15, 22, .62)
}

.gridCards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 18px
}

@media(min-width:900px) {
    .gridCards {
        grid-template-columns: repeat(3, 1fr)
    }
}

.card {
    border-radius: var(--radius);
    padding: 18px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .12)
}

.light .card {
    background: rgba(255, 255, 255, .78);
    border-color: rgba(11, 15, 22, .10)
}

.card .title {
    font-weight: 900;
    margin: 0 0 8px
}

.card .text {
    margin: 0;
    color: rgba(255, 255, 255, .78)
}

.light .card .text {
    color: rgba(11, 15, 22, .70)
}

.arrowList {
    margin: 14px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px
}

.arrowList li {
    padding-left: 0;
    display: flex;
    gap: 10px;
    align-items: flex-start
}

.arrow {
    font-weight: 900;
    color: var(--green);
    line-height: 1
}

.arrow.red {
    color: var(--red)
}

.table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 10px
}

.table th {
    font-size: .9rem;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: rgba(255, 255, 255, .68);
    text-align: left;
    padding: 0 12px
}

.light .table th {
    color: rgba(11, 15, 22, .56)
}

.table td {
    padding: 14px 12px;
    background: rgba(255, 255, 255, .06);
    border-top: 1px solid rgba(255, 255, 255, .12);
    border-bottom: 1px solid rgba(255, 255, 255, .12)
}

.table td:first-child {
    border-left: 1px solid rgba(255, 255, 255, .12);
    border-top-left-radius: 14px;
    border-bottom-left-radius: 14px
}

.table td:last-child {
    border-right: 1px solid rgba(255, 255, 255, .12);
    border-top-right-radius: 14px;
    border-bottom-right-radius: 14px
}

.light .table td {
    background: rgba(255, 255, 255, .86);
    border-color: rgba(11, 15, 22, .10)
}

.light .table td:first-child,
.light .table td:last-child {
    border-color: rgba(11, 15, 22, .10)
}

.price {
    font-weight: 900;
    color: var(--green);
    white-space: nowrap
}

.price.red {
    color: var(--red)
}

.form {
    display: grid;
    gap: 12px;
    margin-top: 18px
}

.input,
select,
textarea {
    width: 100%;
    padding: 14px 14px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, .16);
    background: rgba(255, 255, 255, .06);
    color: inherit;
    font: inherit
}

.light .input,
.light select,
.light textarea {
    border-color: rgba(11, 15, 22, .16);
    background: rgba(255, 255, 255, .92);
    color: var(--ink)
}

textarea {
    min-height: 120px;
    resize: vertical
}

label {
    font-weight: 800
}

.helper {
    font-size: .95rem;
    color: rgba(255, 255, 255, .70)
}

.light .helper {
    color: rgba(11, 15, 22, .62)
}

.checkRow {
    display: flex;
    gap: 10px;
    align-items: flex-start
}

.checkRow input {
    width: 20px;
    height: 20px;
    margin-top: 2px
}

.notice {
    border-radius: var(--radius);
    padding: 16px;
    background: rgba(0, 255, 65, .10);
    border: 1px solid rgba(0, 255, 65, .28)
}

.notice.red {
    background: rgba(255, 0, 0, .08);
    border-color: rgba(255, 0, 0, .24)
}

.light .notice {
    background: rgba(0, 255, 65, .10)
}

.countdown {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 14px
}

.timebox {
    border-radius: 14px;
    padding: 12px 14px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .12);
    min-width: 92px;
    text-align: center
}

.light .timebox {
    background: rgba(11, 15, 22, .04);
    border-color: rgba(11, 15, 22, .10)
}

.timebox .num {
    font-size: 1.9rem;
    font-weight: 900;
    letter-spacing: -.02em
}

.timebox .lab {
    font-size: .85rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .66);
    font-weight: 800
}

.light .timebox .lab {
    color: rgba(11, 15, 22, .52)
}

.chart {
    margin-top: 14px;
    border-radius: var(--radius);
    padding: 16px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .12)
}

.light .chart {
    background: rgba(255, 255, 255, .86);
    border-color: rgba(11, 15, 22, .10)
}

.barRow {
    display: grid;
    gap: 10px
}

.barLabel {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    font-weight: 800
}

.bar {
    height: 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .10);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .12)
}

.light .bar {
    background: rgba(11, 15, 22, .06);
    border-color: rgba(11, 15, 22, .10)
}

.fill {
    height: 100%;
    width: 0;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--red), var(--green));
    animation: grow 2.1s ease forwards
}

@keyframes grow {
    to {
        width: var(--w)
    }
}

footer {
    padding: 44px 0;
    background: var(--bg2);
    border-top: 1px solid rgba(255, 255, 255, .10)
}

.footerGrid {
    display: grid;
    gap: 14px
}

@media(min-width:900px) {
    .footerGrid {
        grid-template-columns: 1.5fr 1fr 1fr
    }
}

.footTitle {
    font-weight: 900;
    margin: 0 0 8px
}

.footText {
    margin: 0;
    color: rgba(255, 255, 255, .76)
}

.footLinks {
    display: grid;
    gap: 10px;
    margin-top: 12px
}

.pills {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 12px
}

.pill {
    display: inline-flex;
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .16);
    background: rgba(255, 255, 255, .06);
    font-weight: 800;
    color: rgba(255, 255, 255, .86)
}

.light .pill {
    border-color: rgba(11, 15, 22, .16);
    background: rgba(11, 15, 22, .04);
    color: rgba(11, 15, 22, .76)
}

.page-index .justify {
    text-align: justify;
    text-justify: inter-word
}

.page-privacy .article,
.page-cookies .article {
    max-width: 920px;
    margin: 0 auto;
    font-size: 1.06rem;
    line-height: 1.72
}

.page-privacy .article p,
.page-cookies .article p {
    margin: 0 0 14px
}

.settings {
    margin-top: 18px;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .14);
    background: rgba(255, 255, 255, .06)
}

.light .settings {
    border-color: rgba(11, 15, 22, .10);
    background: rgba(255, 255, 255, .90)
}

.settingRow {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    border-top: 1px solid rgba(255, 255, 255, .10)
}

.light .settingRow {
    border-top-color: rgba(11, 15, 22, .10)
}

.settingRow:first-child {
    border-top: none
}

.settingRow .left {
    display: grid;
    gap: 2px;
    max-width: 720px
}

.settingRow .name {
    font-weight: 900
}

.settingRow .desc {
    color: rgba(255, 255, 255, .70);
    font-size: .95rem
}

.light .settingRow .desc {
    color: rgba(11, 15, 22, .62)
}

.toggle {
    display: flex;
    gap: 8px;
    align-items: center
}

.toggle input {
    width: 18px;
    height: 18px
}

.smallprint {
    margin-top: 14px;
    color: rgba(255, 255, 255, .66);
    font-size: .95rem
}

.light .smallprint {
    color: rgba(11, 15, 22, .60)
}