:root {
    --bg: #0e0d0b;
    --bg2: #131109;
    --panel: #171410;
    --ink: #ece7db;
    --muted: #a89f8d;
    --line: #2a251c;
    --line2: #3b3423;
    --accent: #f5a91f;
    --accent-ink: #171004;
    --green: #41ff70;
    --green-dim: #8fd48a;
    --red: #e06552;
    --mono: 'JetBrains Mono', ui-monospace, monospace;
    --disp: 'Oswald', sans-serif;
    --body: 'Inter', sans-serif;
    --s2: 16px;
    --s3: 24px;
    --s4: 40px;
    --s5: 64px;
    --s6: 96px
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    background: var(--bg);
    color: var(--ink);
    font-family: var(--body);
    font-size: 16px;
    line-height: 1.7
}

body.locked {
    overflow: hidden
}

a {
    color: inherit;
    text-decoration: none
}

ul {
    list-style: none
}

img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover
}

.wrap {
    max-width: 1240px;
    margin: 0 auto;
    padding-inline: var(--s3)
}

section {
    scroll-margin-top: 96px;
    border-top: 1px solid var(--line)
}

h1,
h2,
h3 {
    font-family: var(--disp);
    text-transform: uppercase;
    line-height: 1.08;
    letter-spacing: .01em;
    font-weight: 600
}

p {
    color: var(--muted);
    max-width: 68ch
}

.kicker {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: var(--s2)
}

.kicker .dim {
    color: var(--muted)
}

.logo {
    font-family: var(--disp);
    font-weight: 700;
    font-size: 20px;
    letter-spacing: .05em;
    color: #fff
}

.logo b {
    color: var(--accent);
    font-weight: 700
}

:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px
}

.legal-link {
    color: var(--muted);
    border-bottom: 1px dashed var(--line2);
    transition: .2s
}

.legal-link:hover {
    color: var(--accent);
    border-color: var(--accent)
}

@media(pointer:fine) {

    body,
    a,
    button,
    label,
    input,
    select,
    textarea {
        cursor: none
    }
}

.cur-arrow,
.cur-ring {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 999;
    opacity: 0;
    transition: opacity .3s
}

.cur-arrow.show,
.cur-ring.show {
    opacity: 1
}

.cur-ring {
    width: 38px;
    height: 38px;
    border: 1.5px solid rgba(65, 255, 112, .55);
    background: rgba(65, 255, 112, .08);
    border-radius: 50%;
    transition: opacity .3s, width .25s, height .25s, background .25s;
    will-change: transform;
    transform: translateZ(0)
}

.cur-ring.hov {
    width: 58px;
    height: 58px;
    background: rgba(65, 255, 112, .14)
}

@media(pointer:coarse) {

    .cur-arrow,
    .cur-ring {
        display: none
    }
}

[data-rev] {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity .7s ease, transform .7s cubic-bezier(.2, .7, .2, 1);
    transition-delay: var(--d, 0s)
}

[data-rev].on {
    opacity: 1;
    transform: none
}

@media(prefers-reduced-motion:reduce) {
    [data-rev] {
        transition: none;
        opacity: 1;
        transform: none
    }
}

.ticker {
    overflow: hidden;
    background: #0a0908;
    border-bottom: 1px solid var(--line)
}

.ticker-track {
    display: flex;
    width: max-content;
    animation: tick 42s linear infinite;
    will-change: transform;
    transform: translateZ(0)
}

.ticker:hover .ticker-track {
    animation-play-state: paused
}

.ticker-group {
    display: flex
}

.ticker-group span {
    font-family: var(--mono);
    font-size: 11.5px;
    letter-spacing: .12em;
    color: var(--muted);
    white-space: nowrap;
    padding: 10px 22px;
    text-transform: uppercase;
    display: flex;
    align-items: center
}

.ticker-group span b {
    color: var(--accent);
    font-weight: 700
}

.ticker-group span i {
    font-style: normal;
    color: var(--green-dim);
    font-weight: 500
}

.ticker-group span .tagp {
    color: var(--green);
    font-weight: 700
}

.ticker-group span::after {
    content: "✦";
    color: var(--accent);
    margin-left: 44px;
    opacity: .7
}

@keyframes tick {
    from {
        transform: translateX(0)
    }

    to {
        transform: translateX(-50%)
    }
}

header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(14, 13, 11, .94);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line)
}

.hd {
    display: flex;
    align-items: center;
    gap: var(--s3);
    height: 66px
}

.hd nav {
    display: flex;
    gap: var(--s3);
    margin-left: var(--s4)
}

.hd nav a {
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--muted);
    position: relative
}

.hd nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width .3s
}

.hd nav a:hover {
    color: var(--accent)
}

.hd nav a:hover::after {
    width: 100%
}

.hd-r {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: var(--s2)
}

.hd-tel {
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: .08em;
    color: var(--muted)
}

.hd-tel:hover {
    color: var(--accent)
}

.burger {
    display: none;
    background: none;
    border: 1px solid var(--line2);
    border-radius: 2px;
    width: 40px;
    height: 34px;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    align-items: center
}

.burger span {
    width: 16px;
    height: 1.5px;
    background: var(--ink)
}

.nav-m {
    display: none;
    position: fixed;
    inset: 66px 0 0;
    background: var(--bg);
    z-index: 99;
    padding: var(--s4) var(--s3)
}

.nav-m.open {
    display: block
}

.nav-m a {
    display: block;
    font-family: var(--disp);
    font-size: 30px;
    text-transform: uppercase;
    padding: 12px 0;
    border-bottom: 1px solid var(--line)
}

@media(max-width:960px) {
    .hd nav {
        display: none
    }

    .burger {
        display: flex
    }

    .hd-tel {
        display: none
    }
}

.btn {
    display: inline-block;
    font-family: var(--mono);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: .14em;
    text-transform: uppercase;
    background: var(--accent);
    color: var(--accent-ink);
    padding: 16px 28px;
    border: none;
    border-radius: 2px;
    transition: .2s;
    position: relative
}

.btn:hover {
    filter: brightness(1.12);
    transform: translateY(-2px)
}

.btn.line {
    background: transparent;
    color: var(--ink);
    border: 1px solid var(--line2)
}

.btn.line:hover {
    border-color: var(--accent);
    color: var(--accent)
}

.btn.block {
    display: block;
    width: 100%;
    text-align: center
}

.btn.sm {
    padding: 11px 18px;
    font-size: 11px
}

.btn.pulse {
    animation: glow 2.6s ease-in-out infinite
}

@keyframes glow {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(245, 169, 31, .35)
    }

    50% {
        box-shadow: 0 0 0 12px rgba(245, 169, 31, 0)
    }
}

.hero {
    border-top: none;
    position: relative;
    overflow: hidden
}

.hero-bg {
    position: absolute;
    inset: -60px;
    background: repeating-linear-gradient(90deg, transparent 0 119px, var(--line) 119px 120px), repeating-linear-gradient(0deg, transparent 0 119px, var(--line) 119px 120px);
    opacity: .35;
    pointer-events: none;
    will-change: transform;
    transform: translateZ(0)
}

.hero .wrap {
    position: relative;
    padding-block: var(--s6) var(--s5);
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: var(--s5);
    align-items: start
}

@media(max-width:900px) {
    .hero .wrap {
        grid-template-columns: 1fr
    }
}

.hero h1 {
    font-size: clamp(52px, 9vw, 132px);
    font-weight: 700;
    margin: 14px 0 var(--s3)
}

.hero .lead {
    font-size: 17px
}

.hero-cta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: var(--s4)
}

.spec {
    border: 1px solid var(--line2);
    background: var(--panel);
    will-change: transform;
    transform: translateZ(0)
}

.spec .cap {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: .2em;
    color: var(--muted);
    text-transform: uppercase;
    padding: 14px 20px;
    border-bottom: 1px solid var(--line)
}

.spec .row {
    display: flex;
    justify-content: space-between;
    gap: var(--s2);
    padding: 14px 20px;
    border-bottom: 1px solid var(--line);
    font-family: var(--mono);
    font-size: 12.5px;
    letter-spacing: .06em
}

.spec .row:last-child {
    border-bottom: none
}

.spec .row span {
    color: var(--muted);
    text-transform: uppercase
}

.spec .row b {
    color: var(--ink);
    font-weight: 500;
    text-align: right
}

.spec .row b.a {
    color: var(--accent)
}

.aud {
    padding: var(--s6) 0
}

.aud h2 {
    font-size: clamp(30px, 4.4vw, 54px)
}

.aud-head {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: var(--s3);
    align-items: end;
    margin-bottom: var(--s5)
}

@media(max-width:800px) {
    .aud-head {
        grid-template-columns: 1fr
    }
}

.aud-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line)
}

@media(max-width:900px) {
    .aud-grid {
        grid-template-columns: 1fr
    }
}

.aud-col {
    background: var(--bg);
    padding: var(--s4) 28px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    position: relative;
    transition: background .3s, transform .3s
}

.aud-col::before,
.aud-col::after {
    content: "";
    position: absolute;
    width: 14px;
    height: 14px;
    border: 1.5px solid var(--accent);
    opacity: 0;
    transition: .3s
}

.aud-col::before {
    top: 10px;
    left: 10px;
    border-right: none;
    border-bottom: none
}

.aud-col::after {
    bottom: 10px;
    right: 10px;
    border-left: none;
    border-top: none
}

.aud-col:hover {
    background: var(--panel);
    transform: translateY(-4px)
}

.aud-col:hover::before,
.aud-col:hover::after {
    opacity: 1
}

.aud-col .no {
    font-family: var(--mono);
    font-size: 11px;
    color: var(--accent);
    letter-spacing: .2em;
    display: flex;
    align-items: center;
    gap: 8px
}

.live {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--green);
    animation: blink 2s ease-in-out infinite
}

@keyframes blink {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(65, 255, 112, .5);
        opacity: 1
    }

    50% {
        box-shadow: 0 0 0 6px rgba(65, 255, 112, 0);
        opacity: .6
    }
}

.aud-col h3 {
    font-size: 26px;
    transition: color .3s
}

.aud-col:hover h3 {
    color: var(--accent)
}

.aud-col ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: var(--s2)
}

.aud-col li {
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: .08em;
    color: var(--muted);
    text-transform: uppercase;
    padding-left: 18px;
    position: relative
}

.aud-col li::before {
    content: "—";
    position: absolute;
    left: 0;
    color: var(--accent)
}

.aud-col .go {
    margin-top: auto;
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: .14em;
    color: var(--accent);
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px
}

.aud-col .go i {
    font-style: normal;
    transition: transform .3s
}

.aud-col:hover .go i {
    transform: translateX(8px)
}

.seg-head {
    display: grid;
    grid-template-columns: auto 1fr .9fr;
    gap: var(--s4);
    align-items: end;
    padding-block: var(--s6) var(--s5)
}

@media(max-width:960px) {
    .seg-head {
        grid-template-columns: 1fr
    }
}

.seg-no {
    font-family: var(--disp);
    font-size: clamp(64px, 8vw, 120px);
    font-weight: 700;
    color: transparent;
    -webkit-text-stroke: 1px var(--line2);
    line-height: .9
}

.seg-head h2 {
    font-size: clamp(30px, 4.2vw, 52px)
}

.spec-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border: 1px solid var(--line);
    border-bottom: none
}

@media(max-width:800px) {
    .spec-grid {
        grid-template-columns: 1fr
    }
}

.spec-item {
    padding: var(--s3) 28px;
    border-bottom: 1px solid var(--line);
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 18px;
    background: var(--bg);
    transition: background .3s
}

.spec-item:hover {
    background: var(--panel)
}

.spec-item:nth-child(odd) {
    border-right: 1px solid var(--line)
}

@media(max-width:800px) {
    .spec-item:nth-child(odd) {
        border-right: none
    }
}

.spec-item .ix {
    font-family: var(--mono);
    font-size: 11px;
    color: var(--accent);
    letter-spacing: .16em;
    padding-top: 4px
}

.spec-item b {
    display: block;
    font-family: var(--disp);
    text-transform: uppercase;
    font-size: 18px;
    margin-bottom: 4px
}

.spec-item p {
    font-size: 14.5px
}

.photo-strip {
    border-block: 1px solid var(--line);
    height: min(52vh, 480px);
    position: relative;
    overflow: hidden
}

.photo-strip img {
    transition: transform 6s ease
}

.photo-strip:hover img {
    transform: scale(1.06)
}

.photo-strip figcaption {
    position: absolute;
    left: 0;
    bottom: 0;
    background: var(--bg);
    border-top: 1px solid var(--line2);
    border-right: 1px solid var(--line2);
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--muted);
    padding: 10px 18px
}

.sub-block {
    padding: var(--s5) 0
}

.sub-title {
    font-size: clamp(24px, 3vw, 38px);
    margin-bottom: var(--s4)
}

.tbl-wrap {
    overflow-x: auto;
    border: 1px solid var(--line)
}

table {
    width: 100%;
    border-collapse: collapse;
    min-width: 680px
}

th,
td {
    font-family: var(--mono);
    font-size: 12.5px;
    text-align: left;
    padding: 15px 20px;
    border-bottom: 1px solid var(--line);
    color: var(--muted);
    vertical-align: top;
    line-height: 1.6
}

th {
    font-size: 11px;
    letter-spacing: .18em;
    text-transform: uppercase;
    background: var(--bg2)
}

td:first-child {
    color: var(--ink)
}

tr:last-child td {
    border-bottom: none
}

th.hl,
td.hl {
    background: rgba(245, 169, 31, .07);
    border-left: 1px solid var(--accent);
    color: var(--ink)
}

th.hl {
    color: var(--accent)
}

.no {
    color: var(--red)
}

.yes {
    color: var(--accent)
}

.plans {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--s2)
}

@media(max-width:960px) {
    .plans {
        grid-template-columns: 1fr
    }
}

.plans.two {
    grid-template-columns: 1fr 1fr
}

@media(max-width:760px) {
    .plans.two {
        grid-template-columns: 1fr
    }
}

.plan {
    border: 1px solid var(--line);
    background: var(--bg2);
    padding: var(--s4) 28px;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: .3s
}

.plan:hover {
    transform: translateY(-5px);
    border-color: var(--line2)
}

.plan.hot {
    border-color: var(--accent);
    background: var(--panel)
}

.plan .flag {
    position: absolute;
    top: -12px;
    left: 26px;
    background: var(--accent);
    color: var(--accent-ink);
    font-family: var(--mono);
    font-weight: 700;
    font-size: 10px;
    letter-spacing: .16em;
    padding: 6px 12px;
    text-transform: uppercase
}

.plan h3 {
    font-size: 24px
}

.plan .for {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: .12em;
    color: var(--muted);
    text-transform: uppercase;
    margin: 6px 0 var(--s3)
}

.plan .price {
    font-family: var(--disp);
    font-size: 32px;
    margin-bottom: var(--s3)
}

.plan .price small {
    font-size: 12px;
    color: var(--muted);
    font-family: var(--mono)
}

.plan ul {
    flex: 1;
    margin-bottom: var(--s3)
}

.plan li {
    font-size: 14px;
    color: var(--muted);
    padding: 10px 0 10px 22px;
    position: relative;
    border-bottom: 1px dashed var(--line)
}

.plan li:last-child {
    border: none
}

.plan li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent)
}

.onetime {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: var(--s3)
}

.pill {
    font-family: var(--mono);
    font-size: 11.5px;
    border: 1px solid var(--line2);
    padding: 10px 16px;
    color: var(--muted);
    text-transform: uppercase;
    transition: .2s
}

.pill:hover {
    border-color: var(--accent)
}

.pill b {
    color: var(--accent);
    font-weight: 500
}

.note {
    font-family: var(--mono);
    font-size: 12px;
    color: var(--muted);
    margin-top: var(--s2)
}

.seg-cta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: var(--s4);
    align-items: center
}

.seg-cta .hint {
    font-family: var(--mono);
    font-size: 12px;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 8px
}

.case-cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line)
}

@media(max-width:1000px) {
    .case-cols {
        grid-template-columns: 1fr
    }
}

.case-col {
    background: var(--bg);
    padding: var(--s3);
    display: flex;
    flex-direction: column;
    gap: var(--s2)
}

.case-col .cat {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--accent);
    padding-bottom: 12px;
    border-bottom: 1px solid var(--line);
    display: flex;
    align-items: center;
    gap: 10px
}

.case {
    background: var(--bg2);
    border: 1px solid var(--line);
    padding: var(--s3) 22px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: border-color .3s
}

.case:hover {
    border-color: var(--line2)
}

.case .who {
    font-family: var(--mono);
    font-size: 10.5px;
    letter-spacing: .12em;
    color: var(--muted);
    text-transform: uppercase
}

.case b.big {
    font-family: var(--disp);
    font-size: clamp(24px, 2.6vw, 34px);
    text-transform: uppercase;
    color: var(--accent);
    line-height: 1.05
}

.case p {
    font-size: 13.5px
}

.case p .pr {
    color: var(--ink);
    font-weight: 600
}

.case .quote {
    border-left: 2px solid var(--accent);
    padding-left: 12px;
    font-size: 13px;
    font-style: italic;
    color: var(--muted)
}

.case .meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: auto
}

.case .meta span {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: .08em;
    text-transform: uppercase;
    border: 1px solid var(--line2);
    padding: 5px 9px;
    color: var(--muted)
}

.case .meta span b {
    color: var(--green-dim);
    font-weight: 500
}

.working {
    margin-top: var(--s4);
    border: 1px solid var(--line);
    background: var(--bg2);
    padding: var(--s4) 28px
}

.working h3 {
    font-size: clamp(20px, 2.4vw, 28px);
    margin-bottom: var(--s2)
}

.working .lead2 {
    font-size: 14.5px;
    margin-bottom: var(--s3)
}

.w-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px
}

.w-chip {
    display: flex;
    align-items: center;
    gap: 9px;
    font-family: var(--mono);
    font-size: 11.5px;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--ink);
    border: 1px solid var(--line2);
    padding: 10px 16px;
    background: var(--bg)
}

.w-chip::before {
    content: "✓";
    color: var(--green);
    font-weight: 700
}

.w-more {
    margin-top: var(--s3);
    font-family: var(--mono);
    font-size: 12px;
    color: var(--green-dim)
}

.steps-wrap {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: var(--s5);
    align-items: start
}

@media(max-width:900px) {
    .steps-wrap {
        grid-template-columns: 1fr
    }
}

.steps-photo {
    border: 1px solid var(--line);
    min-height: 420px
}

.steps {
    border-top: 1px solid var(--line)
}

.step {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: var(--s3);
    padding: var(--s3) 0;
    border-bottom: 1px solid var(--line);
    transition: padding-left .3s
}

.step:hover {
    padding-left: 10px
}

.step .n {
    font-family: var(--disp);
    font-size: 40px;
    font-weight: 700;
    color: var(--accent);
    line-height: 1
}

.step h3 {
    font-size: 19px;
    margin-bottom: 6px
}

.step p {
    font-size: 15px
}

.qa-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line)
}

@media(max-width:860px) {
    .qa-grid {
        grid-template-columns: 1fr
    }
}

.qa {
    background: var(--bg);
    padding: var(--s3) 28px;
    transition: background .3s
}

.qa:hover {
    background: var(--panel)
}

.qa .q {
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--accent);
    display: block;
    margin-bottom: 10px
}

.qa p {
    font-size: 15px;
    color: var(--ink)
}

.dl {
    display: inline-block;
    margin-top: var(--s4);
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: .16em;
    color: var(--accent);
    text-transform: uppercase;
    border-bottom: 1px solid var(--accent);
    padding-bottom: 3px
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--s2);
    max-width: 760px
}

@media(max-width:640px) {
    .contact-grid {
        grid-template-columns: 1fr
    }
}

.big-tel {
    font-family: var(--disp);
    font-size: clamp(28px, 3.6vw, 44px);
    color: #fff;
    display: block;
    margin: var(--s2) 0 var(--s4)
}

.big-tel:hover {
    color: var(--accent)
}

.chan {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 16px;
    align-items: center;
    border: 1px solid var(--line2);
    padding: 18px 20px;
    margin-bottom: 12px;
    transition: .2s
}

.chan:hover {
    border-color: var(--accent);
    transform: translateX(6px)
}

.chan .tag {
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 700;
    color: var(--accent-ink);
    background: var(--accent);
    padding: 6px 9px
}

.chan .tag.t {
    background: #229ed9
}

.chan b {
    font-family: var(--disp);
    text-transform: uppercase;
    font-size: 17px;
    display: block
}

.chan span {
    font-family: var(--mono);
    font-size: 12px;
    color: var(--muted)
}

.final {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    border-top: 1px solid var(--line)
}

.final .bgimg {
    position: absolute;
    inset: 0
}

.final .bgimg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(14, 13, 11, .5), rgba(14, 13, 11, .92))
}

.final .wrap {
    position: relative;
    padding-block: 120px 72px
}

.final h2 {
    font-size: clamp(44px, 8vw, 110px);
    font-weight: 700
}

.final p {
    margin: var(--s2) 0 var(--s4)
}

footer {
    border-top: 1px solid var(--line);
    padding: var(--s5) 0 var(--s4);
    background: #0a0908
}

.ghost {
    font-family: var(--disp);
    font-weight: 700;
    font-size: clamp(72px, 17vw, 250px);
    line-height: .85;
    text-align: center;
    user-select: none
}

.ghost .w {
    color: rgba(255, 255, 255, .14)
}

.ghost .y {
    color: rgba(245, 169, 31, .22)
}

.foot {
    display: flex;
    justify-content: space-between;
    gap: var(--s3);
    flex-wrap: wrap;
    margin-top: var(--s4);
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: .08em;
    color: var(--muted);
    text-transform: uppercase;
    line-height: 1.8
}

.foot a:hover {
    color: var(--accent)
}

.foot nav {
    display: flex;
    gap: var(--s3);
    flex-wrap: wrap
}

.foot .operator {
    font-size: 11px;
    color: #6b6455;
    letter-spacing: .04em;
    margin-top: 14px;
    max-width: 520px;
    text-transform: none
}

.chatw {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 120
}

@media(max-width:960px) {
    .chatw {
        bottom: calc(74px + env(safe-area-inset-bottom))
    }
}

.chat-b {
    position: relative;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: var(--accent);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .25s;
    box-shadow: 0 10px 30px rgba(245, 169, 31, .35)
}

.chat-b:hover {
    transform: scale(1.08)
}

.chat-b svg {
    width: 26px;
    height: 26px;
    fill: var(--accent-ink)
}

.chat-b .i-x {
    display: none;
    fill: none;
    stroke: var(--accent-ink);
    stroke-width: 2.4;
    stroke-linecap: round
}

.chatw.open .i-x {
    display: block
}

.chatw.open .i-chat {
    display: none
}

.chat-b .dot {
    position: absolute;
    top: 4px;
    right: 4px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--green);
    border: 2px solid var(--bg);
    animation: blink 2s ease-in-out infinite
}

.chatw.open .dot {
    display: none
}

.chat-p {
    position: absolute;
    right: 0;
    bottom: 72px;
    width: 300px;
    background: var(--panel);
    border: 1px solid var(--line2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, .5);
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 12px
}

.chat-p[hidden] {
    display: none
}

.chat-p .hd2 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--muted)
}

.chat-p .hd2 b {
    color: var(--ink)
}

.chat-p .hd2 .live {
    margin-left: auto
}

.chat-p .msg {
    background: var(--bg);
    border: 1px solid var(--line);
    padding: 12px 14px;
    font-size: 13.5px;
    color: var(--muted)
}

.chat-p .msg b {
    color: var(--ink)
}

.chat-p a {
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    text-align: center;
    padding: 12px;
    border: 1px solid var(--line2);
    transition: .2s
}

.chat-p a:hover {
    border-color: var(--accent);
    color: var(--accent)
}

.chat-p a.tg {
    background: var(--accent);
    color: var(--accent-ink);
    border-color: var(--accent)
}

.chat-p a.call {
    background: var(--green);
    color: #062b12;
    border-color: var(--green)
}

.chat-p .soon {
    font-family: var(--mono);
    font-size: 10px;
    color: var(--muted);
    text-align: center
}

.mbar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 110;
    display: none;
    grid-template-columns: 1fr 1fr 1.3fr;
    background: #0a0908;
    border-top: 1px solid var(--line2);
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
    gap: 8px
}

.mbar a,
.mbar button {
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    text-align: center;
    padding: 13px 4px;
    background: transparent;
    border: none;
    color: inherit
}

.mbar .c {
    background: var(--panel);
    color: var(--ink);
    border: 1px solid var(--line2)
}

.mbar .r {
    background: var(--accent);
    color: var(--accent-ink)
}

@media(max-width:960px) {
    .mbar {
        display: grid
    }

    body {
        padding-bottom: 64px
    }
}

.modal {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px
}

.modal.open {
    display: flex;
    animation: fadeIn .25s ease
}

.modal-bg {
    position: absolute;
    inset: 0;
    background: rgba(6, 5, 4, .78);
    backdrop-filter: blur(6px)
}

.modal-box {
    position: relative;
    background: var(--panel);
    border: 1px solid var(--line2);
    max-width: 640px;
    width: 100%;
    max-height: 88vh;
    overflow-y: auto;
    padding: var(--s4);
    box-shadow: 0 30px 80px rgba(0, 0, 0, .6)
}

.modal-box.wide {
    max-width: 780px
}

@media(max-width:640px) {
    .modal-box {
        padding: 26px 20px
    }
}

.modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    background: none;
    border: 1px solid var(--line2);
    width: 38px;
    height: 38px;
    color: var(--ink);
    font-size: 20px;
    font-family: var(--mono);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .2s
}

.modal-close:hover {
    border-color: var(--accent);
    color: var(--accent)
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px)
    }

    to {
        opacity: 1;
        transform: none
    }
}

.f-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--s2)
}

@media(max-width:640px) {
    .f-grid {
        grid-template-columns: 1fr
    }
}

.f-field label {
    display: block;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: .16em;
    color: var(--muted);
    text-transform: uppercase;
    margin-bottom: 8px
}

.f-field input,
.f-field select,
.f-field textarea {
    width: 100%;
    background: var(--bg);
    border: 1px solid var(--line2);
    color: var(--ink);
    font-family: var(--mono);
    font-size: 13px;
    padding: 14px;
    border-radius: 2px
}

.f-field textarea {
    min-height: 96px;
    resize: vertical
}

.checks {
    grid-column: 1/-1
}

.check-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px
}

@media(max-width:900px) {
    .check-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(max-width:520px) {
    .check-grid {
        grid-template-columns: 1fr
    }
}

.check {
    display: flex;
    gap: 9px;
    align-items: center;
    border: 1px solid var(--line2);
    padding: 11px 12px;
    font-family: var(--mono);
    font-size: 11.5px;
    color: var(--muted);
    text-transform: uppercase;
    transition: .2s
}

.check:hover {
    border-color: var(--muted)
}

.check:has(input:checked) {
    border-color: var(--accent);
    color: var(--accent)
}

.check input {
    accent-color: var(--accent)
}

.f-consent {
    grid-column: 1/-1;
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-family: var(--mono);
    font-size: 11px;
    color: var(--muted);
    letter-spacing: .04em;
    line-height: 1.6;
    margin-top: 4px
}

.f-consent input {
    width: 18px;
    height: 18px;
    accent-color: var(--accent);
    flex: none;
    margin-top: 2px
}

.f-consent a {
    color: var(--accent);
    border-bottom: 1px dashed var(--accent)
}

.f-note {
    grid-column: 1/-1;
    font-family: var(--mono);
    font-size: 11px;
    color: var(--muted);
    text-align: center;
    margin-top: 4px
}

.form-ok {
    text-align: center;
    padding: 20px 0
}

.form-ok h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--accent)
}

.form-ok p {
    font-size: 14px;
    margin-bottom: 18px
}

.policy h3 {
    font-size: 20px;
    margin: 22px 0 10px;
    color: var(--accent);
    text-transform: uppercase;
    font-family: var(--disp)
}

.policy h3:first-child {
    margin-top: 0
}

.policy p,
.policy li {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 8px
}

.policy ul {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 10px
}

.policy b {
    color: var(--ink);
    font-weight: 600
}

.cookie {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 150;
    max-width: 560px;
    margin: 0 auto;
    background: var(--panel);
    border: 1px solid var(--line2);
    padding: 18px 20px;
    display: flex;
    gap: 14px;
    align-items: center;
    box-shadow: 0 18px 50px rgba(0, 0, 0, .55);
    font-size: 13px;
    color: var(--muted)
}

.cookie[hidden] {
    display: none
}

.cookie p {
    flex: 1;
    font-size: 13px;
    color: var(--muted);
    line-height: 1.55
}

.cookie p a {
    color: var(--accent);
    border-bottom: 1px dashed var(--accent)
}

.cookie button {
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    background: var(--accent);
    color: var(--accent-ink);
    border: none;
    padding: 11px 18px;
    flex: none
}

@media(max-width:640px) {
    .cookie {
        bottom: calc(74px + env(safe-area-inset-bottom));
        flex-direction: column;
        align-items: stretch
    }

    .cookie button {
        width: 100%
    }
}
/* ===== PATCH v1.2 ===== */
header {
    background: rgba(14, 13, 11, .98);
    backdrop-filter: none;
    -webkit-backdrop-filter: none
}

.modal-bg {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: radial-gradient(120% 120% at 50% 50%, rgba(10, 8, 6, .88), rgba(4, 3, 2, .95))
}

/* cookie: кнопка всегда видна, баннер поверх всего */
.cookie {
    z-index: 400;
    flex-wrap: wrap
}

.cookie button {
    display: block;
    min-height: 48px;
    flex: none
}

@media(max-width:960px) {
    .cookie {
        bottom: 74px
    }
}

@supports (padding:env(safe-area-inset-bottom)) {
    @media(max-width:960px) {
        .cookie {
            bottom: calc(74px + env(safe-area-inset-bottom))
        }
    }
}

@media(max-width:640px) {
    .cookie {
        flex-direction: column;
        align-items: stretch
    }

    .cookie button {
        width: 100%
    }
}
/* ===== ИНДИКАТОР ПРОКРУТКИ v1.6 ===== */
/* родной скроллбар скрыт */
html{scrollbar-width:none;-ms-overflow-style:none}
body{scrollbar-width:none}
html::-webkit-scrollbar,body::-webkit-scrollbar{width:0;height:0;display:none}
/* тонкая полоса заполнения под меню */
.scroll-progress{position:absolute;left:0;bottom:0;height:3px;width:100%;
  background:linear-gradient(90deg,var(--accent),#ffc257);
  transform:scaleX(0);transform-origin:0 50%;
  box-shadow:0 0 12px rgba(245,169,31,.45);
  pointer-events:none;z-index:2}
/* тонкий скролл внутри модалок и мобильного меню */
.modal-box,.nav-m{scrollbar-width:thin;scrollbar-color:var(--line2) transparent}
.modal-box::-webkit-scrollbar,.nav-m::-webkit-scrollbar{width:6px}
.modal-box::-webkit-scrollbar-thumb,.nav-m::-webkit-scrollbar-thumb{background:var(--line2);border-radius:3px}
.modal-box::-webkit-scrollbar-track,.nav-m::-webkit-scrollbar-track{background:transparent}