:root {
  --bg: #0b0f19;
  --bg-soft: #11162a;
  --fg: #eaf2ff;
  --muted: #a9b5d1;
  --acc1: #ff3d81;
  --acc2: #6ee7ff;
  --acc3: #ffd166;
  --glass: rgba(255,255,255,0.06);
  --stroke: rgba(255,255,255,0.12);
  --radial: radial-gradient(1200px 600px at 10% 0%, rgba(255,61,129,0.18), transparent 60%),
            radial-gradient(900px 500px at 90% 10%, rgba(110,231,255,0.16), transparent 60%);
}

* { box-sizing: border-box; scroll-behavior: smooth;}
html, body { height: 100%; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--fg);
  background: var(--bg);
  /* background-image: var(--radial); */
  line-height: 1.6;
  overflow-x: hidden;
}

/* Decorative floating particles */
.f0xNeb { position: fixed; inset: 0; pointer-events: none; z-index: -1; }
.f0xNeb__p {
  position: absolute; width: 18vmin; height: 18vmin; filter: blur(40px);
  opacity: .4; border-radius: 50%;
  animation: floaty 16s ease-in-out infinite;
}
.f0xNeb__p--1 { left: 5%; top: 10%; background: #ff3d81; }
.f0xNeb__p--2 { right: 10%; top: 0%; background: #6ee7ff; animation-duration: 20s; }
.f0xNeb__p--3 { left: 35%; bottom: 8%; background: #ffd166; animation-duration: 22s; }
.f0xNeb__p--4 { right: 2%; bottom: 12%; background: #b388ff; animation-duration: 18s; }
@keyframes floaty {
  0%,100% { transform: translateY(0) translateX(0) scale(1); }
  50% { transform: translateY(-20px) translateX(10px) scale(1.05); }
}

.t8k__title {
  font-weight: 800;
  font-size: clamp(32px, 6vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
}
.t18k__glow{
    text-shadow: 0 0 20px rgba(255,61,129,.6);
}

.t19k__glow{
    text-shadow: 0 0 20px rgba(255,0,0,.6);
   
}
.t8k__glow { color: var(--acc2); text-shadow: 0 0 20px rgba(110,231,255,.6); }
.t8k__accent { color: var(--acc1); text-shadow: 0 0 18px rgba(255,61,129,.55); }
.t8k__lead { color: var(--muted); max-width: 60ch; margin: 0 0 22px; }

.btn_q1G {
  padding: 15px 20px;
  background-color: #FF3D81;
  text-decoration: none;
  font-weight: 900;
  color: #fff;
  font-size: 24px;
  border-radius: 12px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  -o-border-radius: 12px;
  border: none;
}
.btn_q1G:hover { transform: translateY(-2px); border-color: rgba(255,255,255,.22); }
.btn_q1G:active { transform: translateY(0); }
.btn_q1G--ghost { background: transparent; border-color: rgba(255,255,255,.22); }


.container{
    max-width: 1220px;
    margin: 0 auto;
    padding: 0 20px;
}
.bLx_hero {
  position: relative;
  padding: clamp(56px, 8vw, 96px) 20px;
}
.bLx_hero__wrap {
  max-width: 1220px; margin: 0 auto;
  display: grid; gap: 28px;
  grid-template-columns: 1.05fr .95fr;
}
.bLx_hero__copy { align-self: center; }
.kpi_Z7 {
  list-style: none; display: flex; gap: 18px; padding: 0; margin: 22px 0 0;
  margin-bottom: 32px;
}
.kpi_Z7__item {
  background: var(--glass); border: 1px solid var(--stroke);
  padding: 12px 14px; border-radius: 12px; min-width: 120px; text-align: center;
  backdrop-filter: blur(6px);
}
.kpi_Z7__num { font-size: 28px; font-weight: 800; display: block; }
.kpi_Z7__label { color: var(--muted); font-size: 12px; text-transform: uppercase; letter-spacing: .08em; }

.bLx_hero__media { position: relative; min-height: 320px; }
.mS__frame {
  position: relative; border-radius: 22px; overflow: hidden; isolation: isolate;
  border: 1px solid var(--stroke); background: #0c1325;
  box-shadow: 0 30px 60px rgba(0,0,0,.45);
  transform: translateZ(0);
}
.mS__img { width: 100%; height: min(56vh, 520px); object-fit: cover; display: block; }
.mS__flare {
  position: absolute; inset: -40% -40% auto auto; height: 70%; width: 70%;
  background: radial-gradient(closest-side, rgba(255,61,129,.35), transparent 70%);
  mix-blend-mode: screen; pointer-events: none;
}
.mS__badge { position: absolute; width: 84px; height: 84px; border-radius: 16px;
  background: var(--bg-soft); border: 1px solid var(--stroke); display: grid; place-items: center;
  box-shadow: 0 14px 30px rgba(0,0,0,.35); overflow: hidden;
}
.mS__badge img { width: 60%; height: 60%; object-fit: contain; filter: drop-shadow(0 4px 10px rgba(0,0,0,.4)); }
.mS__badge--1 { right: -8px; top: 18%; }
.mS__badge--2 { left: -8px; bottom: 12%; }

.blk_2x, .blk_3x, .blk_demo { padding: clamp(56px, 8vw, 96px) 20px; }
.blk_2x__head, .blk_3x__head { max-width: 980px; margin: 0 auto ; text-align: center; }
.hx__h2 { font-size: clamp(26px, 4.8vw, 44px); margin: 0 0 8px; }
.hx__sub { color: var(--muted); margin: 0 auto; }

.grid_ua {
  max-width: 1100px; margin: 26px auto 0;
  display: grid; gap: 18px; grid-template-columns: repeat(3, 1fr);
}
.card_Qr {
  position: relative; padding: 22px; border-radius: 18px; border: 1px solid var(--stroke);
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  box-shadow: 0 20px 40px rgba(0,0,0,.35); outline: none; transform: translateY(8px);
  transition: transform .25s ease, box-shadow .25s ease;
}
.card_Qr:hover, .card_Qr:focus { transform: translateY(0); box-shadow: 0 30px 60px rgba(0,0,0,.45); }
.card_Qr__icon {
  width: 56px; height: 56px; border-radius: 12px; display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(255,61,129,.28), rgba(110,231,255,.22));
  border: 1px solid var(--stroke); margin-bottom: 12px; overflow: hidden;
}
.card_Qr__icon img { width: 70%; height: 70%; object-fit: contain; }
.card_Qr__title { margin: 6px 0 8px; font-size: 20px; }
.card_Qr__text { color: var(--muted); margin: 0; }
.card_Qr__shine {
  position: absolute;
  inset: 0;
  background: radial-gradient(160px 60px at 0% 0%, rgba(110,231,255,.18), transparent 60%);
  pointer-events: none;
  opacity: .8;
  mix-blend-mode: screen;
  border-radius: 12px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  -o-border-radius: 12px;
}

.stripe_gj {
  padding: 18px 0; background: linear-gradient(90deg, rgba(255,61,129,.18), rgba(110,231,255,.18));
  border-top: 1px solid var(--stroke); border-bottom: 1px solid var(--stroke);
}
.stripe_gj__in { max-width: 1220px; margin: 0 auto; padding: 0 20px; }
.stripe_gj__txt { margin: 0; text-align: center; font-weight: 700; letter-spacing: .02em; }

.grid_fx {
  max-width: 1100px; margin: 26px auto 0;
  display: grid; gap: 18px; grid-template-columns: repeat(3, 1fr);
}
.tile_R7 {
  border: 1px solid var(--stroke); padding: 18px; border-radius: 18px; background: var(--glass);
  backdrop-filter: blur(6px); transform: translateZ(0); transition: transform .24s ease;
}
.tile_R7__media {
  height: 160px; border-radius: 14px; overflow: hidden; border: 1px solid var(--stroke);
  background: #0e1430; display: grid; place-items: center; margin-bottom: 12px;
}
.tile_R7__media img { width: 100%; height: 100%; object-fit: cover; }
.tile_R7__title { margin: 8px 0 6px; font-size: 18px; }
.tile_R7__text { color: var(--muted); margin: 0; }

.blk_demo__wrap {
  max-width: 1220px; margin: 0 auto; display: grid; gap: 24px; grid-template-columns: 1.05fr .95fr;
}
.blk_demo__copy .demo_ui {
  border: 1px solid var(--stroke); background: var(--glass); border-radius: 16px; padding: 16px; max-width: 520px;
}
.demo_ui__row { display: flex; gap: 12px; align-items: center; margin-bottom: 12px; }
.demo_ui__label { width: 64px; color: var(--muted); font-weight: 600; }
.demo_ui__input {
  flex: 1; background: #0f1427; color: var(--fg); border: 1px solid var(--stroke);
  padding: 10px 12px; border-radius: 10px; outline: none;
}
.demo_ui__screen {
  width: 100%; min-height: 64px; border: 1px dashed rgba(255,255,255,.25);
  border-radius: 12px; display: grid; place-items: center; color: var(--acc2); font-weight: 700;
  background: linear-gradient(180deg, rgba(110,231,255,.08), rgba(255,61,129,.06));
}
.blk_demo__media .demo_mock {
  position: relative; border-radius: 22px; overflow: hidden; border: 1px solid var(--stroke);
  background: #0e1430; box-shadow: 0 30px 60px rgba(0,0,0,.45);
}
.demo_mock__img { display: block; width: 100%; height: min(50vh, 420px); object-fit: cover; }
.demo_mock__pulse {
  position: absolute; inset: 0; pointer-events: none; mix-blend-mode: screen; opacity: .5;
  background: radial-gradient(40% 40% at 70% 30%, rgba(255,61,129,.25), transparent 60%),
              radial-gradient(30% 30% at 30% 70%, rgba(110,231,255,.25), transparent 60%);
  animation: pulse 3.6s ease-in-out infinite;
}
@keyframes pulse { 0%,100% {opacity:.4} 50% {opacity:.65} }

.marq_Js { overflow: hidden; border-top: 1px solid var(--stroke); border-bottom: 1px solid var(--stroke); }
.marq_Js__track {
  display: flex; gap: 48px; padding: 16px 20px; white-space: nowrap;
  animation: marquee 18s linear infinite;
}
.marq_Js__track span { opacity: .9; font-weight: 700; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.ft_zz { padding: 28px 20px; text-align: center; color: var(--muted); }


.reveal--in { opacity: 1 !important; transform: translateY(0) !important; transition: opacity .5s ease, transform .5s ease; }

.js-tilt { transform-style: preserve-3d; perspective: 600px; }
.js-tilt:hover { transform: translateY(-2px) rotateX(2deg) rotateY(-2deg); transition: transform .24s ease; }

/* Responsive */
@media (max-width: 1040px) {
  .bLx_hero__wrap,
  .blk_demo__wrap { grid-template-columns: 1fr; }
  .bLx_hero__media { order: -1; }
}
@media (max-width: 860px) {
  .grid_ua, .grid_fx { grid-template-columns: 1fr 1fr; }
  .kpi_Z7 { flex-wrap: wrap; }
}
@media (max-width: 560px) {
  .grid_ua, .grid_fx { grid-template-columns: 1fr; }
  .kpi_Z7__item { min-width: 42%; }
  .mS__badge--1 { right: 8px; top: -10px; }
  .mS__badge--2 { left: 8px; bottom: -10px; }
}


/* ===== PRO TIPS CAROUSEL ===== */
.u8X_tips { padding: clamp(56px, 8vw, 96px) 20px; }
.u8X_tips__head { max-width: 980px; margin: 0 auto 20px; text-align: center; }
.u8X_track {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;

  article{
    width: 300px;
    height: 200px;
  }
}
.u8X_track::-webkit-scrollbar { height: 8px; }
.u8X_track::-webkit-scrollbar-thumb { background: rgba(255,255,255,.15); border-radius: 8px; }
.u8X_card {
  scroll-snap-align: start; border: 1px solid var(--stroke); border-radius: 16px;
  padding: 18px; background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.025));
  box-shadow: 0 16px 36px rgba(0,0,0,.35); min-height: 180px; position: relative; overflow: hidden;
}
.u8X_card__icon { width: 52px; height: 52px; border-radius: 12px; display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(255,61,129,.28), rgba(110,231,255,.22)); border: 1px solid var(--stroke); margin-bottom: 10px;}
.u8X_card__icon img { width: 70%; height: 70%; object-fit: contain; }
.u8X_card__title { margin: 6px 0 6px; font-size: 18px; }
.u8X_card__text { color: var(--muted); margin: 0; }

/* ===== LEADERBOARD ===== */
.wL4_board { padding: clamp(56px, 8vw, 96px) 20px; }
.wL4_board__head { max-width: 1220px; margin: 0 auto 16px; display: grid; gap: 12px;
  grid-template-columns: 1fr auto; align-items: end; }
.wL4_tabs { display: inline-flex; gap: 8px; background: var(--glass); border: 1px solid var(--stroke);
  padding: 6px; border-radius: 12px; }
.wL4_tab { background: transparent; color: var(--fg); border: 1px solid transparent; padding: 8px 12px;
  border-radius: 10px; cursor: pointer; font-weight: 700; }
.wL4_tab.is-active { border-color: rgba(255,255,255,.25); background: rgba(255,255,255,.06); }

.wL4_table { max-width: 1220px; margin: 0 auto; border: 1px solid var(--stroke); border-radius: 14px;
  overflow: hidden; background: rgba(0,0,0,.2); }
.wL4_row { display: grid; grid-template-columns: 2fr 1fr 1fr; border-bottom: 1px solid var(--stroke); }
.wL4_row--head { background: rgba(255,255,255,.06); font-weight: 700; }
.wL4_cell { padding: 14px 16px; display: flex; align-items: center; gap: 12px; }
.wL4_user {
  display: flex; align-items: center; gap: 12px;
}
.wL4_ava { width: 34px; height: 34px; border-radius: 50%; background: #20263d; border: 1px solid var(--stroke); overflow: hidden; }
.wL4_ava img { width: 100%; height: 100%; object-fit: cover; }
.wL4_name { font-weight: 700; }
.wL4_badge { margin-left: auto; font-size: 12px; color: var(--acc2); }

@media (max-width: 720px) {
  .wL4_row { grid-template-columns: 1.6fr .8fr .8fr; }
  .wL4_board__head { grid-template-columns: 1fr; align-items: start; }
}

/* ===== MASONRY SHOWREEL ===== */
.mN8_show { padding: clamp(56px, 8vw, 96px) 20px; }
.mN8_head { max-width: 980px; margin: 0 auto 20px; text-align: center; }
.mN8_grid {
  column-count: 3; column-gap: 14px; max-width: 1220px; margin: 0 auto;
}
.mN8_item { break-inside: avoid; display: block; margin: 0 0 14px; border-radius: 16px; overflow: hidden;
  border: 1px solid var(--stroke); background: #0e1430; box-shadow: 0 16px 36px rgba(0,0,0,.35); }
.mN8_item img { width: 100%; height: auto; display: block; }
.mN8_item.tall img {  object-fit: cover; height: 200px;}
.mN8_item.wide img { aspect-ratio: 16/9; object-fit: cover; }

@media (max-width: 980px) { .mN8_grid { column-count: 2; } }
@media (max-width: 560px) { .mN8_grid { column-count: 1; } }

/* ===== MYTHS VS FACTS ===== */
.yQ5_split { padding: clamp(56px, 8vw, 96px) 20px; }
.yQ5_head { max-width: 980px; margin: 0 auto 20px; text-align: center; }
.yQ5_grid {
  max-width: 1100px; margin: 0 auto; display: grid; gap: 16px;
  grid-template-columns: repeat(2, 1fr);
}
.yQ5_box {
  border: 1px solid var(--stroke); border-radius: 16px; padding: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.025));
  min-height: 120px; position: relative; overflow: hidden;
}
.yQ5_box--myth { outline: 1px solid rgba(255,61,129,.25); }
.yQ5_box--fact { outline: 1px solid rgba(110,231,255,.25); }
.yQ5_tag { margin: 0 0 8px; font-size: 14px; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); }
.yQ5_text { margin: 0; }

@media (max-width: 860px) {
  .yQ5_grid { grid-template-columns: 1fr; }
}

/* micro-anim for injected leaderboard rows */
.wL4_row.wL4_new { animation: rowPop .5s ease; }
@keyframes rowPop { from { transform: translateY(8px); opacity: 0 } to { transform: translateY(0); opacity: 1 } }





.header{

}
.headerWrapper{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.nav{

}
.ham{
    display: none;
}

.nav ul{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    padding-left: 0;
    margin: 0;
}

.nav li{
    list-style: none;
}

.nav a{
    color: inherit;
    text-decoration: none;
}



.stopScroll{
    overflow: hidden;
}
.logo{
    position: relative;
    z-index: 1000;
    text-decoration: none;
    font-size: 24px;
    color: #fff;
    font-weight: 900;
}

.logo-text span{
    color: #ff3d81;
}
@media screen and (max-width: 800px) {
    .nav{
        position: fixed;
        inset: 0;
        background-color: #111;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100vw;
        height: 100vh;
        z-index: 999;
        transform: translateX(100%);
        -webkit-transform: translateX(100%);
        -moz-transform: translateX(100%);
        -ms-transform: translateX(100%);
        -o-transform: translateX(100%);
        transition: .3s all cubic-bezier(0.23, 1, 0.320, 1);
        -webkit-transition: .3s all cubic-bezier(0.23, 1, 0.320, 1);
        -moz-transition: .3s all cubic-bezier(0.23, 1, 0.320, 1);
        -ms-transition: .3s all cubic-bezier(0.23, 1, 0.320, 1);
        -o-transition: .3s all cubic-bezier(0.23, 1, 0.320, 1);
}
    .nav.active{
        transform: translateX(0);
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        -ms-transform: translateX(0);
        -o-transform: translateX(0);
}

    .nav ul{
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .ham {
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
        transition: transform 400ms;
        -moz-user-select: none;
        -webkit-user-select: none;
        -ms-user-select: none;
        user-select: none;
        display: flex;
        z-index: 1000;
}
.hamRotate.active {
  transform: rotate(45deg);
}
.hamRotate180.active {
  transform: rotate(180deg);
}
.line {
  fill:none;
  transition: stroke-dasharray 400ms, stroke-dashoffset 400ms;
  stroke:#fff;
  stroke-width:5.5;
  stroke-linecap:round;
}
.ham7 .top {
  stroke-dasharray: 40 82;
}
.ham7 .middle {
  stroke-dasharray: 40 111;
}
.ham7 .bottom {
  stroke-dasharray: 40 161;
}
.ham7.active .top {
  stroke-dasharray: 17 82;
  stroke-dashoffset: -62px;
}
.ham7.active .middle {
  stroke-dashoffset: 23px;
}
.ham7.active .bottom {
  stroke-dashoffset: -83px;
}
.ham8 .top {
  stroke-dasharray: 40 160;
}
}


#try .hx__sub {
    text-align: left;
}


/*   НАСТРОЙКА SCROLL-BAR   */
::-webkit-scrollbar {
    width: 0.5em;
}

::-webkit-scrollbar-track {
    background-color: transparent;
}

::-webkit-scrollbar-thumb {
    background-color: #FF3D81;
}


::-webkit-scrollbar-thumb:active {
    background-color: #FF3D81;
}

.footer{
    border-top: 1px solid rgba(255, 61, 129, .5);
}

.footerContainer{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding-top: 20px;
    i{
        color: #FF3D81;
    }
     p{
        text-align: center;
        opacity: .6;
    }
}


.f-social{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
   
}


.intoLinks {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    text-align: center;
    span {
        width: 8px;
        height: 8px;
        background-color: #fff;
        border-radius: 50%;
    }
    a {
        transition: 0.3s all linear;
        transform-origin: left;
        color: #fff;
        text-decoration: none;
    }
    a:hover {
        text-decoration: underline;
    }
    }
    @media screen and (max-width: 750px) {
    .intoLinks {
        flex-direction: column;
        span {
        display: none;
        }
    }
}

#truths h3{
    margin: 0;
}


.instalation{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.instalation span{
    font-size: 100px;
    text-transform: uppercase;
    font-weight: 900;
    line-height: 1;
    position: relative;
    
}

.instalation span:nth-child(2){

}

.procta{
    display: flex;
    justify-content: center;
    margin-top: 22px;
}


@media screen and (max-width: 800px) {
    .instalation span{
        font-size: 30px;
        line-height: 1.5;
    }
    .bLx_hero__media{
        display: none;
    }
    .wL4_tabs{
        width: fit-content;
    }
    .u8X_track {
    article{
        width: 100%;
        height: fit-content;
    }
    .u8X_card{
        min-height: auto;
    }
    }
    .kpi_Z7 .kpi_Z7__item:last-child{
        display: none;
    }
    .blk_demo{
      display: none;
    }
}