:root {
    --bg: #0D0D0D;
    --panel: #151515;
    --panel2: #191919;
    --line: #292929;
    --accent: #b6ff00;
    --soft: #e8ffc0;
    --text: #f5f5f5;
    --muted: #969696;
    --max: 1280px;
    --ease: cubic-bezier(.22,1,.36,1)
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 82px;
    overflow-x: hidden
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: "Montserrat","Segoe UI",Arial,sans-serif;
    font-size: 15px;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden
}

body.menu-open {
    overflow: hidden
}

button,a {
    font: inherit
}

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

button {
    color: inherit
}

img {
    display: block;
    max-width: 100%
}

svg {
    display: block
}

.container {
    width: min(calc(100% - 56px),var(--max));
    margin: auto
}

.container>* {
    min-width: 0
}

.section {
    padding: 76px 0
}

.section-title {
    font-size: clamp(34px,4vw,55px);
    line-height: 1.02;
    letter-spacing: -.045em;
    margin: 0 0 18px;
    font-weight: 750
}

.section-copy {
    color: var(--muted);
    font-size: 16px;
    max-width: 520px;
    margin: 0
}

.btn {
    min-height: 52px;
    padding: 0 25px;
    border-radius: 7px;
    border: 1px solid transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 750;
    cursor: pointer;
    transition: transform .2s var(--ease),background .2s,border-color .2s
}

.btn:hover {
    transform: translateY(-2px)
}

.btn-primary {
    background: var(--accent);
    color: #070707
}

.btn-primary:hover {
    background: #a8ec00
}

.btn-dark {
    background: #090909;
    color: #fff;
    border-color: #2c2c2c
}

.btn-outline {
    border-color: #495f00;
    background: transparent;
    color: var(--accent)
}

.icon {
    width: 22px;
    height: 22px;
    flex: none
}

.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .65s var(--ease),transform .65s var(--ease)
}

.reveal.visible {
    opacity: 1;
    transform: none
}

.header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(13,13,13,.95);
    border-bottom: 1px solid transparent;
    transition: border-color .2s,background .2s
}

.header.scrolled {
    border-color: #1e1e1e;
    background: rgba(13,13,13,.98)
}

.header-inner {
    height: 76px;
    display: flex;
    align-items: center;
    gap: 34px
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    letter-spacing: -.025em
}

.logo svg {
    width: 100px;
    height: 100px;
    border-radius: 7px;
}

.nav {
    display: flex;
    gap: 30px;
    margin-left: auto
}

.nav a {
    font-size: 13px;
    color: #d1d1d1;
    font-weight: 650
}

.nav a:hover {
    color: #fff
}

.header-actions {
    display: flex;
    gap: 10px;
    margin-left: 20px
}

.header-actions .btn {
    min-height: 42px;
    padding: 0 17px;
    font-size: 13px
}

.menu-btn {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid #292929;
    background: #151515;
    border-radius: 8px;
    align-items: center;
    justify-content: center;
    cursor: pointer
}

.menu-btn span,.menu-btn span:before,.menu-btn span:after {
    width: 18px;
    height: 2px;
    background: #fff;
    display: block;
    content: "";
    position: relative
}

.menu-btn span:before {
    position: absolute;
    top: -6px
}

.menu-btn span:after {
    position: absolute;
    top: 6px
}

.hero {
    min-height: 700px;
    display: flex;
    align-items: center;
    padding: 44px 0 34px
}

.hero-grid {
    display: grid;
    grid-template-columns: .88fr 1.28fr;
    gap: 45px;
    align-items: center
}

.hero h1 {
    font-size: 68px;
    line-height: .96;
    letter-spacing: -.06em;
    margin: 0;
    font-weight: 780;
    max-width: 600px
}

.hero-sub {
    font-size: 16px;
    line-height: 1.65;
    color: #a6a6a6;
    max-width: 535px;
    margin: 28px 0
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 22px
}

.hero-link {
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 9px
}

.hero-link svg {
    transition: transform .2s
}

.hero-link:hover svg {
    transform: translateX(4px)
}

.hero-proof {
    display: flex;
    gap: 28px;
    margin-top: 42px;
    color: #c3c3c3;
    font-size: 12px
}

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

.proof i {
    width: 18px;
    height: 18px;
    border: 2px solid var(--accent);
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--accent);
    font-style: normal;
    font-size: 10px
}

.hero-media {
    position: relative
}

.hero-media img {
    width: 100%;
    aspect-ratio: 1.33;
    object-fit: contain
}

.benefits {
    background: #151515;
    border-top: 1px solid #202020;
    border-bottom: 1px solid #202020
}

.benefit-row {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    min-height: 180px
}

.benefit {
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 22px;
    align-items: center;
    padding: 34px 44px;
    border-right: 1px solid #343434
}

.benefit:first-child {
    padding-left: 0
}

.benefit:last-child {
    border-right: 0;
    padding-right: 0
}

.benefit-icon {
    width: 54px;
    height: 54px;
    color: var(--accent)
}

.benefit h3 {
    font-size: 18px;
    margin: 0 0 7px
}

.benefit p {
    color: #939393;
    font-size: 13px;
    margin: 0;
    line-height: 1.5
}

.devices {
    padding: 82px 0 66px
}

.devices-grid {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 55px;
    align-items: center
}

.platforms {
    display: flex;
    justify-content: flex-end;
    gap: 34px;
    margin-bottom: 18px
}

.platform {
    display: grid;
    place-items: center;
    gap: 7px;
    color: #f1f1f1;
    font-size: 12px;
    min-width: 52px;
    text-align: center
}

.platform svg {
    width: 31px;
    height: 31px;
    color: #fff
}

.steps {
    list-style: none;
    padding: 0;
    margin: 42px 0 0;
    display: grid;
    gap: 27px
}

.steps li {
    display: grid;
    grid-template-columns: 35px 1fr;
    gap: 15px
}

.step-n {
    width: 34px;
    height: 34px;
    border: 2px solid var(--accent);
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--accent);
    font-weight: 800
}

.steps strong {
    display: block;
    margin-bottom: 4px;
    color: white;
}

.steps span:last-child {
    color: #9c9c9c;
    font-size: 13px
}

.devices-product {
    width: 100%;
    aspect-ratio: 1.7;
    object-fit: contain
}

.security {
    padding: 58px 0 72px
}

.security h2 {
    font-size: 26px;
    margin: 0 0 28px
}

.security-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 70px
}

.security-item {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 18px;
    padding: 22px 0;
    border-bottom: 1px solid #262626;
    min-height: 106px
}

.security-item:nth-last-child(-n+2) {
    border-bottom: 0
}

.security-item svg {
    width: 36px;
    height: 36px;
    color: var(--accent)
}

.security-item h3 {
    font-size: 15px;
    margin: 0 0 5px
}

.security-item p {
    color: #8f8f8f;
    font-size: 12px;
    margin: 0;
    max-width: 420px
}

.support {
    padding: 20px 0 62px
}

.support-box {
    background: var(--soft);
    color: #0b0b0b;
    border-radius: 12px;
    min-height: 168px;
    padding: 30px 50px;
    display: grid;
    grid-template-columns: 90px 1fr auto;
    gap: 28px;
    align-items: center
}

.telegram-logo {
    width: 82px;
    height: 82px;
    border-radius: 22px;
    background: #070707;
    color: #fff;
    display: grid;
    place-items: center
}

.telegram-logo svg {
    width: 50px;
    height: 50px
}

.support-box h2 {
    font-size: 26px;
    margin: 0 0 5px
}

.support-box p {
    margin: 0;
    color: #35411d;
    max-width: 500px
}

.support-box .btn {
    min-width: 320px
}

.servers {
    padding: 8px 0 64px
}

.servers-grid {
    display: grid;
    grid-template-columns: 330px 1fr;
    gap: 30px;
    align-items: center
}

.servers h2 {
    font-size: 26px;
    margin: 0 0 14px
}

.servers p {
    color: #929292;
    margin: 0 0 24px
}

.server-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 9px
}

.server-list li {
    display: flex;
    align-items: center;
    gap: 10px
}

.server-list i {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 12px rgba(182,255,0,.4)
}

.map-img {
    width: 100%;
    aspect-ratio: 2.5;
    object-fit: contain
}

.pricing {
    padding: 38px 0 58px
}

.pricing-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    margin-bottom: 26px
}

.pricing h2,.compare h2,.reviews h2,.faq h2 {
    font-size: 27px;
    margin: 0
}

.periods {
    display: flex;
    align-items: center;
    gap: 10px
}

.periods button {
    border: 0;
    background: transparent;
    color: #8f8f8f;
    padding: 7px 14px;
    border-radius: 18px;
    cursor: pointer
}

.periods button.active {
    background: var(--accent);
    color: #0b0b0b;
    font-weight: 800
}

.discount {
    font-size: 11px;
    color: #8b8b8b
}

.discount b {
    background: var(--accent);
    color: #0b0b0b;
    border-radius: 10px;
    padding: 3px 8px;
    margin-right: 6px
}

.plans {
    display: grid;
    grid-template-columns: repeat(5,1fr);
    gap: 14px
}

.plan {
    min-height: 250px;
    border: 1px solid #343434;
    background: #181818;
    border-radius: 11px;
    padding: 25px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    transition: border-color .2s,transform .2s var(--ease)
}

.plan:hover {
    transform: translateY(-3px)
}

.plan.active {
    border-color: var(--accent)
}

.plan h3 {
    font-size: 16px;
    line-height: 1.2;
    margin: 0 0 7px
}

.plan-devices {
    color: #929292;
    font-size: 12px
}

.plan-price {
    font-size: 31px;
    line-height: 1;
    font-weight: 800;
    margin-top: 32px
}

.plan-period {
    font-size: 10px;
    color: #777;
    margin-top: 7px;
    text-transform: uppercase
}

.plan .btn {
    margin-top: auto;
    min-height: 40px;
    width: 100%;
    padding: 0 12px
}

.plan.active .btn {
    background: var(--accent);
    color: #0b0b0b
}

.pricing-note {
    text-align: center;
    color: #777;
    font-size: 11px;
    margin: 18px 0 0
}

.compare {
    padding: 10px 0 58px
}

.table-wrap {
    margin-top: 22px;
    overflow: auto;
    border: 1px solid #282828
}

.table {
    width: 100%;
    border-collapse: collapse;
    min-width: 850px;
    font-size: 12px
}

.table th,.table td {
    border-right: 1px solid #2a2a2a;
    border-bottom: 1px solid #2a2a2a;
    padding: 12px 14px;
    text-align: center
}

.table th:first-child,.table td:first-child {
    text-align: left
}

.table tr:last-child td {
    border-bottom: 0
}

.table th:last-child,.table td:last-child {
    border-right: 0
}

.table th {
    background: #171717;
    font-size: 11px
}

.check {
    color: var(--accent);
    font-weight: 900;
    font-size: 18px
}

.reviews {
    padding: 16px 0 58px
}

.review-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    margin-top: 28px
}

.review {
    min-height: 175px;
    padding: 8px 40px;
    border-right: 1px solid #444;
    display: flex;
    flex-direction: column
}

.review:first-child {
    padding-left: 0
}

.review:last-child {
    border-right: 0;
    padding-right: 0
}

.review blockquote {
    margin: 0;
    color: #bcbcbc;
    font-size: 14px;
    line-height: 1.6
}

.review footer {
    margin-top: auto;
    color: #fff
}

.dots {
    display: flex;
    justify-content: center;
    gap: 13px;
    margin-top: 35px
}

.dots i {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: #505050
}

.dots i.active {
    background: var(--accent)
}

.faq {
    padding: 12px 0 60px
}

.faq-list {
    margin-top: 22px;
    border-top: 1px solid #272727
}

.faq-item {
    border-bottom: 1px solid #272727
}

.faq-q {
    width: 100%;
    min-height: 48px;
    border: 0;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    cursor: pointer;
    padding: 0;
    font-weight: 600
}

.faq-q svg {
    width: 18px;
    height: 18px;
    transition: transform .2s
}

.faq-q[aria-expanded="true"] svg {
    transform: rotate(45deg)
}

.faq-a {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows .3s var(--ease)
}

.faq-a>div {
    overflow: hidden
}

.faq-a p {
    margin: 0;
    padding: 0 0 18px;
    color: #929292;
    max-width: 780px
}

.faq-q[aria-expanded="true"]+.faq-a {
    grid-template-rows: 1fr
}

.final {
    padding: 10px 0 70px
}

.final-box {
    min-height: 150px;
    border-radius: 11px;
    background: linear-gradient(110deg,#171717,#111);
    padding: 30px 52px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px
}

.final h2 {
    font-size: 25px;
    margin: 0 0 3px
}

.final p {
    color: #929292;
    margin: 0
}

.final .btn {
    min-width: 300px
}

@keyframes in {
    from {
        opacity: 0;
        transform: translateY(18px)
    }

    to {
        opacity: 1;
        transform: none
    }
}

.hero h1 {
    animation: in .7s var(--ease) both
}

.hero-sub {
    animation: in .7s .1s var(--ease) both
}

.hero-actions,.hero-proof {
    animation: in .7s .2s var(--ease) both
}

.hero-media {
    animation: in .85s .15s var(--ease) both
}

@media(max-width: 1050px) {
    .nav {
        display:none
    }

    .menu-btn {
        display: flex
    }

    .header-actions {
        margin-left: auto
    }

    .hero-grid {
        grid-template-columns: 1fr 1.08fr
    }

    .hero h1 {
        font-size: 54px;
    }

    .benefit {
        padding: 26px
    }

    .devices-grid {
        grid-template-columns: 290px 1fr
    }

    .support-box .btn {
        min-width: 240px
    }

    .plans {
        grid-template-columns: repeat(3,1fr)
    }
}

@media(max-width: 780px) {
    .container {
        width:min(calc(100% - 32px),var(--max))
    }

    .header-inner {
        height: 68px
    }

    .header-actions .btn-dark {
        display: none
    }

    .nav.open {
        display: flex;
        position: fixed;
        inset: 68px 12px auto;
        background: #151515;
        border: 1px solid #2a2a2a;
        border-radius: 12px;
        padding: 18px;
        flex-direction: column;
        gap: 0
    }

    .nav.open a {
        font-size: 18px;
        padding: 12px 4px;
        border-bottom: 1px solid #292929
    }

    .hero {
        padding-top: 58px
    }

    .hero-grid {
        grid-template-columns: 1fr
    }

    .hero-copy {
        text-align: center
    }

    .hero h1 {
        font-size: clamp(45px,11vw,64px);
        margin: auto
    }

    .hero-sub {
        margin: 24px auto
    }

    .hero-actions,.hero-proof {
        justify-content: center
    }

    .hero-media {
        margin-top: 8px
    }

    .benefit-row {
        grid-template-columns: 1fr
    }

    .benefit,.benefit:first-child,.benefit:last-child {
        padding: 28px 0;
        border-right: 0;
        border-bottom: 1px solid #343434
    }

    .benefit:last-child {
        border-bottom: 0
    }

    .devices-grid {
        grid-template-columns: 1fr
    }

    .platforms {
        justify-content: flex-start;
        overflow: auto;
        padding-bottom: 14px
    }

    .devices-product {
        grid-row: 1
    }

    .security-grid {
        grid-template-columns: 1fr
    }

    .security-item:nth-last-child(2) {
        border-bottom: 1px solid #262626
    }

    .support-box {
        grid-template-columns: 72px 1fr;
        padding: 26px
    }

    .telegram-logo {
        width: 68px;
        height: 68px
    }

    .support-box .btn {
        grid-column: 1/-1;
        width: 100%
    }

    .servers-grid {
        grid-template-columns: 1fr
    }

    .plans {
        grid-template-columns: 1fr 1fr
    }

    .review-grid {
        grid-template-columns: 1fr
    }

    .review,.review:first-child,.review:last-child {
        min-height: 140px;
        padding: 22px 0;
        border-right: 0;
        border-bottom: 1px solid #333
    }

    .final-box {
        align-items: flex-start;
        flex-direction: column
    }

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

@media(max-width: 480px) {
    .header-actions .btn-primary {
        display:none
    }

    .hero-actions {
        gap: 14px
    }

    .hero-actions .btn {
        padding: 0 20px
    }

    .hero-link {
        min-width: 0
    }

    .hero-proof {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        text-align: left
    }

    .hero-media img {
        aspect-ratio: auto
    }

    .plans {
        grid-template-columns: 1fr
    }

    .pricing-head {
        align-items: flex-start;
        flex-direction: column;
        gap: 18px
    }

    .periods {
        width: 100%;
        max-width: 100%;
        overflow: auto
    }

    .support-box {
        grid-template-columns: 1fr
    }

    .telegram-logo {
        width: 60px;
        height: 60px
    }

    .final-box {
        padding: 26px
    }

    .section {
        padding: 58px 0
    }
}

@media(prefers-reduced-motion:reduce) {
    html {
        scroll-behavior: auto
    }

    *,*:before,*:after {
        animation-duration: .01ms;
        animation-iteration-count: 1;
        transition-duration: .01ms
    }

    .reveal {
        opacity: 1;
        transform: none
    }
}

/* Typography */
h1,h2,h3,h4,h5,h6,.section-title {
    font-family: "Unbounded","Montserrat",sans-serif;
    font-weight: 700
}

button,a,input,textarea,select {
    font-family: "Montserrat","Segoe UI",Arial,sans-serif
}
