:root{--font-sans:'Outfit', sans-serif;}


/* HEADER */
  .header {
    background-color: var(--secondStyleColor);
    color: var(--textColor2);
  }
  .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: var(--textColor2);
    text-decoration: none;
    transition: 0.2s all linear;
    -webkit-transition: 0.2s all linear;
    -moz-transition: 0.2s all linear;
    -ms-transition: 0.2s all linear;
    -o-transition: 0.2s all linear;
    position: relative;
    font-weight: 600;
  }

  .nav a::after {
    position: absolute;
    content: "";
    left: 0;
    bottom: -7px;
    width: 0;
    height: 2px;
    background-color: var(--textColor2);
    transition: 0.2s all linear;
  }

  .nav a:hover::after {
    width: 100%;
  }

  .stopScroll {
    overflow: hidden;
  }
  .logo {
    position: relative;
    z-index: 1000;
    font-weight: 800;
    font-size: 24px;
    color: var(--textColor2);
    text-decoration: none;
  }

  @media screen and (max-width: 800px) {
    .headerWrapper {
      padding: 0 20px;
    }
    .nav {
      position: fixed;
      inset: 0;
      background-color: var(--bodyBG);
      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: 0.3s all cubic-bezier(0.23, 1, 0.32, 1);
      -webkit-transition: 0.3s all cubic-bezier(0.23, 1, 0.32, 1);
      -moz-transition: 0.3s all cubic-bezier(0.23, 1, 0.32, 1);
      -ms-transition: 0.3s all cubic-bezier(0.23, 1, 0.32, 1);
      -o-transition: 0.3s all cubic-bezier(0.23, 1, 0.32, 1);
    }
    .nav.active {
      transform: translateX(0);
      -webkit-transform: translateX(0);
      -moz-transform: translateX(0);
      -ms-transform: translateX(0);
      -o-transform: translateX(0);
    }
    .header:has(.nav.active) .logo {
      color: var(--textColor1);
    }
    .header:has(.nav.active) .nav a {
      color: var(--textColor1);
    }
    .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: var(--textColor2);
      stroke-width: 5.5;
      stroke-linecap: round;
    }
    .header:has(.nav.active) .line {
      stroke: var(--textColor1);
    }
    .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;
    }
  }


.grid-hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    user-select: none;
    && h1 {
      text-transform: uppercase;
      font-weight: 900;
      color: var(--secondStyleColor);
    }
  }
  .fonImgGrid {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: minmax(150px, 1fr);
    gap: 0;
    z-index: 0;
    filter: grayscale(1) blur(5px);
    opacity: 0.3;

    /* ДВИЖЕНИЕ ФОНА */
    transform: scale(
      1.1
    ); /* чуть увеличим, чтобы при движении не было чёрных краёв */
    animation: grid-drift 30s linear infinite alternate;
  }

  @keyframes grid-drift {
    0% {
      transform: translate3d(-3%, -3%, 0) scale(1.1);
    }
    50% {
      transform: translate3d(3%, -1%, 0) scale(1.1);
    }
    100% {
      transform: translate3d(3%, 3%, 0) scale(1.1);
    }
  }

  /* каждая ячейка */
  .hero-image {
    position: relative;
    width: 100%;
    height: 100%;
  }

  /* сами картинки растягиваем под ячейку */
  .hero-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
  }

  /* контент поверх фона */
  .grid-hero > .container {
    position: relative;
    z-index: 1;
    text-align: center;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 20px;
  }

  .grid-hero a {
    width: fit-content;
  }

  .grid-hero p {
    max-width: 600px;
  }

  .grid-hero a {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 999px;
    background: var(--secondStyleColor);
    color: var(--textColor2);
    font-weight: 600;
  }

  /* маленькие телефоны */
  @media (max-width: 800px) {
    .fonImgGrid {
      grid-template-columns: repeat(2, 1fr);
      grid-auto-rows: minmax(100px, 1fr);
      animation-duration: 65s;
    }

    .grid-hero h1 {
      font-size: 1.6rem;
    }

    .grid-hero p {
      font-size: 0.85rem;
    }

    .grid-hero a {
      text-align: center;
    }
  }


:root {
    --scrollbarBg: rgba(255, 255, 255, 0.1);
    --itemBgColor: transparent;
  }
  .swiper {
    padding-bottom: 10px !important;
  }

  .toc .swiper-slide {
    width: fit-content;
  }

  .toc h2 {
    margin: 0 !important;
    text-align: center;
  }

  .toc {
    background-color: transparent;
  }

  .toc a {
    text-decoration: none;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.5;
    white-space: nowrap;
    color: var(--textColor1);
    transition: color 0.3s ease-in-out;
    -webkit-transition: color 0.3s ease-in-out;
    -moz-transition: color 0.3s ease-in-out;
    -ms-transition: color 0.3s ease-in-out;
    -o-transition: color 0.3s ease-in-out;
    border: 1px solid var(--secondStyleColor);
    padding: 10px 20px;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    background-color: var(--itemBgColor);
  }

  .toc a:active,
  .toc a:hover,
  .toc a:focus {
    color: #fff;
    background-color: rgba(17, 17, 17, 0.2);
  }

  .toc .swiper-wrapper {
    padding-top: 20px;
    padding-bottom: 24px;
  }

  .toc-swiper .swiper-scrollbar {
    background: var(--scrollbarBg);
    height: 4px;
    border-radius: 2px;
  }

  .toc-swiper .swiper-scrollbar-drag {
    background: var(--secondStyleColor);
    border-radius: 2px;
    width: 20%;
  }

  .toc.wrapper {
    margin: 0 auto;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .toc-swiper {
    max-width: calc(var(--maxWidthContainer) - 40px);
  }

  .swiper-horizontal > .swiper-scrollbar,
  .swiper-scrollbar.swiper-scrollbar-horizontal {
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
  }

  @media screen and (max-width: 750px) {
    .toc.wrapper {
      margin-left: auto;
    }
    .swiper-horizontal > .swiper-scrollbar,
    .swiper-scrollbar.swiper-scrollbar-horizontal {
      width: 90% !important;
      margin: 0 auto;
    }
  }


/*  */

  #about {
    min-height: 500px;
    padding: 20px 0;
    display: flex;
    align-items: center;
    position: relative;
    && img {
      position: absolute;
      width: 100%;
      height: 100%;
      z-index: -1;
      object-fit: cover;
      object-position: 50% 20%;
      opacity: 0.1;
    }
  }

  #about .container {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    && h2 {
      text-transform: uppercase;
      color: var(--textColor1);
    }
  }
  .ab-lllller {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .ab-rrrrorjg {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 600px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    padding: 40px;
    && p {
      font-style: italic;
      color: var(--textColor1);
    }
    && a {
      text-transform: uppercase;
      padding: 15px 20px;
      border-radius: var(--borderRadius);
      background-color: var(--secondStyleColor);
      width: fit-content;
      font-weight: 900;
      transition: 0.2s all linear;
      color: var(--textColor2);
      &&:hover {
        transform: translateY(-2px);
      }
    }
  }
  .ab-lllller > span:nth-of-type(1) {
    color: var(--secondStyleColor);
    font-style: italic;
  }
  .ab-lllller > span:nth-of-type(2) {
    font-size: 120px;
    font-weight: 900;
    color: var(--secondStyleColor);
    font-style: italic;
  }

  @media (max-width: 800px) {
    #about .container {
      flex-direction: column;
      align-items: center;
    }
    .ab-lllller {
      align-items: center;
      && h2 {
        text-align: center;
      }
    }
    .ab-rrrrorjg {
      align-items: center;
      padding: 20px;
      && p {
        text-align: center;
        text-wrap: balance;
      }
    }
    .ab-lllller > span:nth-of-type(2) {
      font-size: 90px;
    }
  }


/*  */
  .vx-partners {
    color: var(--textColor1);
  }

  .vx-shell {
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: center;
    text-align: center;
  }

  .vx-head {
    max-width: 560px;
  }

  .vx-kicker {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 12px;
    color: var(--secondStyleColor);
    margin-bottom: 10px;
  }

  .vx-copy {
    margin-top: 12px;
    opacity: 0.8;
    text-wrap: balance;
  }

  .vx-stage {
    position: relative;
    width: min(420px, 80vw);
    aspect-ratio: 1 / 1;
    display: grid;
    place-items: center;
  }

  .vx-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px dashed var(--secondStyleColor);
    opacity: 0.5;
    animation: vx-rotate 18s linear infinite;
  }

  .vx-glow {
    position: absolute;
    inset: 16%;
    border-radius: 50%;
    background: radial-gradient(
      circle at 50% 40%,
      rgba(0, 0, 0, 0.25),
      rgba(0, 0, 0, 0)
    );
    z-index: 0;
  }

  .vx-logoBox {
    position: relative;
    z-index: 1;
    width: min(260px, 65%);
    aspect-ratio: 1 / 1;
    border-radius: 28px;
    border: 1px solid var(--secondStyleColor);
    display: grid;
    place-items: center;
    background: rgba(0, 0, 0, 0.2);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
    transition:
      transform 0.2s ease,
      box-shadow 0.2s ease;
  }

  .vx-logoBox:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45);
  }

  .vx-logoBox img {
    max-width: 70%;
    height: auto;
    filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.35));
  }

  @keyframes vx-rotate {
    to {
      transform: rotate(360deg);
    }
  }

  @media (max-width: 800px) {
    .vx-shell {
      gap: 24px;
    }
    .vx-ring {
      display: none;
    }
  }


/*  */
  #features {
    position: relative;
  }
  #features img {
    position: absolute;
    z-index: -1;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 20%;
    opacity: 0.1;
  }
  #features .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    && a {
      padding: 15px 60px;
      background-color: var(--secondStyleColor);
      border-radius: var(--borderRadius);
      font-size: 20px;
      color: var(--textColor2);
      transition: 0.2s all cubic-bezier(0.39, 0.575, 0.565, 1);
      &&:hover {
        padding: 15px 80px;
      }
    }
    && h2 + p {
      text-align: center;
      text-wrap: balance;
    }
  }
  .fcsardjarwi {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    width: 100%;
  }
  .cdfeeooofwwqr {
    display: flex;
    width: 100%;
    justify-content: center;
    gap: 40px;
  }
  .fcoooo {
    padding: 40px;
    color: var(--textColor1);
    background-color: rgba(16, 16, 20, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid var(--secondStyleColor);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    border-radius: var(--borderRadius);
    && span {
      font-size: 40px;
      font-weight: 900;
    }
    && p {
      text-align: center;
    }
  }

  @media (max-width: 800px) {
    .cdfeeooofwwqr {
      flex-direction: column;
      gap: 20px;
    }
    .fcoooo {
      padding: 20px;
    }
    .fcsardjarwi {
      margin-top: 20px;
      gap: 20px;
    }
  }


/* ===== ROADMAP SECTION v1 ===== */

  .roadmapSection-v1 {
    padding: 80px 0;
    background: var(--bodyBG);
    color: var(--textColor1);
  }

  .roadmapHeader {
    max-width: 750px;
    margin: 0 auto 55px auto;
    text-align: center;
  }

  .roadmapEyebrow {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--secondStyleColor);
    margin-bottom: 8px;
  }

  .roadmapTitle {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--textColor1);
  }

  .roadmapSubtitle {
    font-size: 16px;
    line-height: 1.7;
    color: #ccc;
    max-width: calc(var(--maxWidthContainer) - 20px);
    margin: 0 auto;
  }

  .roadmapTimeline {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
  }

  .roadmapTimeline::before {
    content: "";
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(255, 255, 255, 0.1);
  }

  .roadmapItem {
    position: relative;
    padding-left: 60px;
  }

  .roadmapMarker {
    position: absolute;
    left: 12px;
    top: 5px;
    width: 18px;
    height: 18px;
    background: var(--secondStyleColor);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(0, 255, 57, 0.4);
  }

  .roadmapItemTitle {
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 8px 0;
    color: var(--textColor1);
  }

  .roadmapItemText {
    font-size: 15px;
    line-height: 1.7;
    color: #d1d1d1;
  }

  /* Адаптив */
  @media (max-width: 650px) {
    .roadmapTimeline::before {
      left: 12px;
    }

    .roadmapItem {
      padding-left: 45px;
    }

    .roadmapMarker {
      left: 3px;
    }

    .roadmapTitle {
      font-size: 26px;
    }
  }


.mN2__ .container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .headnMMMM2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
    && h2 {
      text-align: center;
    }
    && p {
      text-align: center;
      text-wrap: balance;
    }
    && span {
      width: 10%;
      height: 2px;
      border-radius: var(--borderRadius);
      background-color: var(--secondStyleColor);
    }
  }

  /* HERO */
  .x9Qp1 {
    /* hero */
    position: relative;
    height: 120px;
    background: linear-gradient(326deg, var(--h1) 0%, var(--h2) 74%);
    display: grid;
    place-items: center;
    text-align: center;
  }
  .kZ_7m {
    /* hero cta wrapper */
    position: absolute;
    inset: 0;
    height: 200px;
    display: grid;
    place-items: center;
    pointer-events: none;
  }
  .kZ_7m span {
    pointer-events: auto;
    display: inline-block;
    background: var(--secondStyleColor);
    color: var(--textColor2);
    font-size: 15px;
    height: 44px;
    line-height: 24px;
    padding: 10px 28px;
    border-radius: 999px;
    position: relative;
    transition:
      transform 0.2s ease,
      padding 0.2s ease;
  }
  .kZ_7m span::after {
    content: "";
    position: absolute;
    inset: -14px;
    border: 12px solid var(--secondStyleColor);
    border-radius: 999px;
    opacity: 0.95;
  }
  .kZ_7m span:hover {
    transform: translateY(-1px);
    padding-left: 40px;
    padding-right: 40px;
  }
  .wA_vv {
    /* wave */
    position: absolute;
    left: 0;
    right: 0;
    bottom: -67px;
    height: 188px;
    background: url("https://1.bp.blogspot.com/-NYl6L8pz8B4/XoIVXwfhlNI/AAAAAAAAU3k/nxJKiLT706Mb7jUFiM5vdCsOSNnFAh0yQCLcBGAsYHQ/s1600/hero-wave.png")
      repeat-x;
    animation: ZzWv9 10s cubic-bezier(0.44, 0.66, 0.67, 0.37) infinite;
    z-index: 1;
    filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.08));
  }
  @keyframes ZzWv9 {
    0% {
      background-position: 0 0;
    }
    100% {
      background-position: 1440px 0;
    }
  }

  .gR1dX {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 54px;
    align-items: stretch;
  }
  @media (max-width: 980px) {
    .gR1dX {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  }
  @media (max-width: 640px) {
    .gR1dX {
      grid-template-columns: 1fr;
      gap: 44px;
    }
  }

  /* CARD */
  .bL0pA {
    position: relative;
    display: block;
    text-decoration: none;
    color: inherit;
  }
  .iNn3r {
    position: relative;
    height: 100%;
    padding: 60px 30px 60px;
    border-radius: var(--borderRadius);
    background: var(--secondStyleColor);
    overflow: visible;
    transition: transform 0.2s ease;
  }
  /* TITLE PILL */
  .t1Tl3 {
    margin: 0 0 22px;
    text-align: center;
    position: relative;
    z-index: 2;
  }
  .t1Tl3 > span {
    color: var(--textColor2);
    display: inline-block;
    padding: 10px 20px 10px 28px;
    border-radius: var(--borderRadius);
    background: var(--textColor1);
    position: relative;
  }
  .t1Tl3 > span > b {
    position: absolute;
    top: -3px;
    left: -30px;
    width: 50px;
    height: 50px;
    border-radius: 999px;
    background: var(--textColor1);
    display: grid;
    color: var(--textColor2);
    place-items: center;
    font-weight: 700;
    font-size: 20px;
    box-shadow:
      15px 15px 30px rgba(80, 80, 80, 0.2),
      5px 0 80px rgba(80, 80, 80, 0.15);
  }

  .xCrpT {
    margin: 0;
    padding: 0 18px;
    text-align: center;
    position: relative;
    z-index: 2;
    color: var(--textColor2);
  }

  /* RIPPLE DOT */
  .d0Tt0 {
    position: absolute;
    left: 50%;
    bottom: -25px;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    border-radius: 999px;
    background: var(--textColor1);
    box-shadow:
      5px 5px 10px rgba(163, 177, 198, 0.6),
      -5px -5px 10px rgba(255, 255, 255, 0.5);
  }
  .d0Tt0::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 999px;
    animation: rrPpL 0.7s linear infinite;
    box-shadow:
      0 0 0 0 rgba(163, 177, 198, 0.3),
      0 0 0 1em rgba(163, 177, 198, 0.3),
      0 0 0 3em rgba(163, 177, 198, 0.03),
      0 0 0 5em rgba(163, 177, 198, 0.01);
  }
  @keyframes rrPpL {
    0% {
      box-shadow:
        0 0 0 0 rgba(163, 177, 198, 0.3),
        0 0 0 1em rgba(163, 177, 198, 0.3),
        0 0 0 3em rgba(163, 177, 198, 0.03),
        0 0 0 5em rgba(163, 177, 198, 0.01);
    }
    100% {
      box-shadow:
        0 0 0 1em rgba(163, 177, 198, 0.3),
        0 0 0 3em rgba(163, 177, 198, 0.03),
        0 0 0 5em rgba(163, 177, 198, 0.03),
        0 0 0 8em rgba(163, 177, 198, 0.01);
    }
  }

  .bL0pA:hover .iNn3r {
    transform: translateY(-2px);
  }


/* ---------- Spotlight Reels (Mosaic + Lightbox) ---------- */
  .fxl-reels {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 160px;
    gap: 20px;
  }
  .fxl-head {
    margin-bottom: 45px;
    text-align: center;
  }

  .fxl-reel {
    position: relative;
    display: block;
    padding: 0;
    border: 1px solid var(--secondStyleColor);
    border-radius: calc(var(--borderRadius) + 2px);
    overflow: hidden;
    background: #0c221a;
    box-shadow: var(--fxl-shadow);
    transition: transform 0.3s ease;
  }
  .fxl-reel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 20%;
    transform: scale(1.02);
    transition: transform 0.3s ease, opacity 0.3s ease;
    /* органичная маска */
    mask-image: radial-gradient(
      120% 80% at 80% 20%,
      #000 60%,
      transparent 100%
    );
  }
  .fxl-reel::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0) 55%,
      rgba(0, 0, 0, 0.42) 100%
    );
  }
  .fxl-reel:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.45);
  }
  .fxl-reel:hover img {
    transform: scale(1.06);
  }

  .fxl-reel__cap {
    position: absolute;
    left: 12px;
    bottom: 10px;
    z-index: 1;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(15, 42, 31, 0.75);
    border: 1px solid var(--secondStyleColor);
    font-size: 12px;
    color: var(--textColor1);
  }

  /* Layout variants */
  .fxl-reel--wide {
    grid-column: span 4;
    grid-row: span 2;
  }
  .fxl-reel--tall {
    grid-column: span 2;
    grid-row: span 3;
  }
  .fxl-reels > .fxl-reel:not(.fxl-reel--wide):not(.fxl-reel--tall) {
    grid-column: span 2;
    grid-row: span 2;
  }

  @media (max-width: 1200px) {
    .fxl-reels {
      grid-template-columns: repeat(4, 1fr);
    }
    .fxl-reel--wide {
      grid-column: span 4;
    }
  }
  @media (max-width: 800px) {
    .fxl-reels {
      grid-template-columns: repeat(2, 1fr);
      grid-auto-rows: 140px;
    }
    .fxl-reel--wide,
    .fxl-reel--tall {
      grid-column: span 2;
      grid-row: span 2;
    }
  }


.marquee {
    padding: 10px 0;
    border-top: 1px solid var(--secondStyleColor);
    border-bottom: 1px solid var(--secondStyleColor);
    overflow: hidden;
    mask-image: linear-gradient(
      to right,
      transparent 0,
      #000 8%,
      #000 92%,
      transparent 100%
    );
  }

  .marquee .track {
    display: flex;
    gap: 40px;
    text-transform: uppercase;
    padding: 12px 0;
    width: max-content;
    animation: scroll 56s linear infinite;
    font-weight: 700;
    letter-spacing: 0.3px;
    color: var(--textColor1);
    -webkit-animation: scroll 56s linear infinite;
  }
  .marquee span::before {
    content: "♥";
    /* font-size: 24px; */
    margin: 0 10px 0 0;
    color: var(--secondStyleColor);
  }
  @keyframes scroll {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(-50%);
    }
  }


.tst {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 48px 20px;
  }

  .tst .container {
    margin-bottom: 40px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    && p {
      text-align: center;
    }
  }

  .tst__card {
    max-width: var(--maxWidthContainer);
    border: 1px solid var(--secondStyleColor);
    border-radius: var(--borderRadius);
    padding: 48px 32px 28px;
  }

  /* ===== items ===== */
  .tst__item {
    display: none;
    text-align: center;
    color: var(--textColor1);
    font-weight: 500;
    font-style: italic;
    line-height: 1.2;
    margin: 0 auto;
    max-width: var(--maxWidthContainer);
    text-wrap: balance;
  }
  .tst__item.is-active {
    display: block;
  }

  .tst__mark {
    color: var(--secondStyleColor);
  }

  /* ===== avatars ===== */
  .tst__avatars {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-top: 28px;
  }

  .tst__avatarBtn {
    width: 62px;
    height: 62px;
    padding: 0;
    border: 2px solid transparent;
    border-radius: 14px;
    background: transparent;
    cursor: pointer;
    overflow: hidden;
    outline: none;
  }

  .tst__avatarBtn img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .tst__avatarBtn.is-active {
    border-color: var(--secondStyleColor);
  }

  /* ===== meta ===== */
  .tst__meta {
    text-align: center;
    padding-top: 18px;
  }
  .tst__name {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
  }
  .tst__role {
    display: inline-block;
    margin-top: 6px;
    font-size: 12px;
    color: var(--textColor1);
    text-decoration: none;
  }
  .tst__role:hover {
    text-decoration: underline;
  }

  @media (max-width: 800px) {
    .tst__item {
      min-height: 200px;
    }
    .tst .container {
      margin-bottom: 20px;
    }
    .tst__card {
      width: 100%;
      max-width: 90%;
    }
  }


/* ===== FAQ SECTION v2 (two-column layout) ===== */

  .faqSection-cols {
    padding: 80px 0;
    background: var(--bodyBG);
    color: var(--textColor1);
  }

  .faqColsWrapper {
    max-width: var(--maxWidthContainer);
    margin: 0 auto;
  }

  /* Header */
  .faqHeader {
    max-width: 760px;
    margin: 0 auto 40px auto;
    text-align: center;
  }

  .faqEyebrow {
    font-size: 13px;
    letter-spacing: 1.3px;
    text-transform: uppercase;
    color: var(--secondStyleColor);
    font-weight: 600;
    margin-bottom: 10px;
  }

  .faqTitle {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 14px;
  }

  .faqSubtitle {
    font-size: 16px;
    line-height: 1.6;
    color: #cfcfcf;
  }

  /* Grid */
  .faqColsGrid {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
  }

  /* Item */
  .faqItem {
    padding: 22px 24px;
    border-radius: var(--borderRadius);
    border: 1px dotted var(--secondStyleColor);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.55);
    transition: 0.2s ease;
  }

  .faqItem:hover {
    border-color: var(--secondStyleColor);
    transform: translateY(-3px);
  }

  .faqQuestion {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--secondStyleColor);
  }

  .faqAnswer {
    font-size: 15px;
    line-height: 1.7;
    color: #e0e0e0;
  }

  /* Responsive */
  @media (max-width: 800px) {
    .faqColsGrid {
      grid-template-columns: 1fr;
    }
  }


/* ===== FOOTER ===== */

  .footer {
    background: #181818;
    color: var(--textColor1);
    padding: 40px 0 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .footerWrapper {
    max-width: var(--maxWidthContainer);
    margin: 0 auto;
  }

  /* Верхняя часть */
  .footerTop {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr) minmax(0, 1fr);
    gap: 32px;
    padding-bottom: 24px;
  }

  /* Бренд */
  .footerBrand {
    display: flex;
    gap: 14px;
    align-items: flex-start;
  }

  .footerLogo {
    color: var(--secondStyleColor);
  }

  .footerLogo i {
    color: var(--secondStyleColor);
    font-size: 18px;
  }

  .footerBrandName {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
  }

  .footerBrandTagline {
    font-size: 14px;
    color: #bcbcbc;
    padding-top: 10px;
  }

  /* Навигация и контакты */
  .footerNavLabel {
    font-size: 13px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--secondStyleColor);
    margin-bottom: 10px;
    font-weight: 600;
  }

  .footerNav ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .footerNav li + li {
    margin-top: 6px;
  }

  .footerNav a {
    font-size: 14px;
    color: #e0e0e0;
    text-decoration: none;
    transition: 0.15s ease;
  }

  .footerNav a:hover {
    color: var(--secondStyleColor);
  }

  /* Контакты */
  .footerContactLine {
    font-size: 14px;
    color: #d0d0d0;
    margin-bottom: 4px;
  }

  .footerSocial {
    margin-top: 10px;
    display: flex;
    gap: 10px;
  }

  .footerSocial a {
    width: 30px;
    height: 30px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e0e0e0;
    font-size: 14px;
    transition: 0.15s ease;
  }

  .footerSocial a:hover {
    border-color: var(--secondStyleColor);
    color: var(--secondStyleColor);
  }

  /* Нижняя полоска */
  .footerBottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 16px;
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: center;
    font-size: 13px;
    color: #9a9a9a;
  }

  .footerMeta {
    text-align: right;
  }

  /* Адаптив */
  @media (max-width: 900px) {
    .footerTop {
      grid-template-columns: 1fr 1fr;
    }
  }

  @media (max-width: 650px) {
    .footerTop {
      grid-template-columns: 1fr;
    }

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

    .footerMeta {
      text-align: left;
    }
  }