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


/* ===========================
          HEADER
        =========================== */

  .site-header {
    position: relative;
    top: 0;
    z-index: 40;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    background: color-mix(in srgb, var(--secondStyleColor) 10%, transparent);
    /* border-bottom: 1px solid var(--secondStyleColor); */
  }
  .site-headerA {
    font-size: 24px;
    font-weight: 900;
    color: var(--textColor1);
  }

  .header-cta {
    padding: 12px 20px;
    color: var(--textColor2);
    font-weight: 500;
    border-radius: var(--borderRadius);
    background-color: var(--secondStyleColor);
  }

  /* layout */

  .site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    gap: 18px;
  }

  /* ===========================
   LOGO
=========================== */

  .logo {
    font-weight: 800;
    font-size: 20px;
    line-height: 1.1;
    letter-spacing: 0.16em;
    text-decoration: none;
    text-transform: uppercase;
    display: inline-flex;
    flex-direction: column;
    gap: 3px;
    color: var(--text-main);
  }

  .logo span:first-child {
    background: linear-gradient(120deg, var(--accent-2), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }

  .logo span:last-child {
    font-weight: 500;
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-muted);
  }

  /* ===========================
   NAV DESKTOP
=========================== */

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

  .header__nav > ul {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 10px 20px;
    border-radius: var(--borderRadius);
    border: 1px solid var(--secondStyleColor);
  }

  /* ссылки */

  .nav a,
  .header__nav > ul a {
    position: relative;
    color: var(--textColor1);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    border-radius: var(--borderRadius);
    padding: 10px 20px;
  }

  /* подчёркивание — неоновая линия */

  .nav a::before,
  .header__nav > ul a::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -3px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--accent-2), var(--accent));
    transform-origin: center;
    transform: scaleX(0);
    transition: transform 0.22s ease;
  }

  .nav a:hover,
  .header__nav > ul a:hover {
    transform: translateY(-1px);
  }

  .nav a:hover::before,
  .header__nav > ul a:hover::before {
    transform: scaleX(1);
  }

  /* ===========================
   BURGER BUTTON
=========================== */

  .burger {
    display: none;
    position: relative;
    width: 40px;
    height: 40px;
    border-radius: 14px;
    border: 1px solid var(--secondStyleColor);
    background: radial-gradient(
      circle at 0 0,
      rgba(77, 243, 255, 0.22),
      transparent 65%
    );
    cursor: pointer;
    transition: all 0.25s ease;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 100;
  }

  /* три полоски */

  .burger::before,
  .burger::after,
  .burger .icon-left {
    content: "";
    position: absolute;
    left: 50%;
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: var(--textColor1);
    transition: all 0.25s ease;
  }

  .burger::before {
    top: 13px;
    transform: translateX(-50%);
  }

  .burger::after {
    bottom: 13px;
    transform: translateX(-50%);
  }

  .burger .icon-left {
    top: 50%;
    transform: translate(-50%, -50%);
  }

  .burger.open::before {
    top: 50%;
    transform: translateX(-50%) rotate(45deg);
  }

  .burger.open::after {
    top: 50%;
    bottom: auto;
    transform: translateX(-50%) rotate(-45deg);
  }

  .burger.open .icon-left {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.5);
  }

  /* icon-right не используется, оставляем выключенным */
  .burger .icon-right {
    display: none;
  }

  /* ===========================
   MOBILE MENU
=========================== */

  .mobile__menu {
    display: none;
  }

  /* off-canvas навигация */

  @media (max-width: 1024px) {
    .header-cta {
      display: none;
    }
    .nav {
      display: none;
    }

    .burger {
      display: flex;
      align-items: center;
      justify-content: center;
      -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
    }

    .mobile__menu {
      display: block;
      -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
    }

    .header__nav {
      position: fixed;
      inset: 0;
      width: 100vw;
      height: 100dvh;
      background: var(--bodyBG);
      backdrop-filter: blur(22px);
      -webkit-backdrop-filter: blur(22px);
      z-index: 50;
      transform: translateX(-120%);
      transition: transform 0.35s ease;
      display: flex;
      flex-direction: column;
    }

    .header__nav > ul {
      margin-top: 90px;
      margin-left: 24px;
      flex-direction: column;
      align-items: flex-start;
      gap: 26px;
      height: 80vh;
      overflow-y: auto;
      overflow-x: hidden;
      border: none;
    }

    .header__nav > ul a {
      font-size: 18px;
      color: var(--text-main);
    }

    /* CTA-кнопка в моб.меню */
    .header__nav > a {
      display: inline-block !important;
      margin: auto 24px 36px;
      max-width: 90%;
      text-align: center;
      color: #050814 !important;
      background: var(--secondStyleColor);
      border-radius: 999px;
      padding: 12px 18px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.18em;
    }

    .navOpen {
      transform: translateX(0%);
    }

    header .btn {
      display: none;
    }
  }

  /* ===========================
   ACCESSIBILITY & MOTION
=========================== */

  .header__nav > ul a:focus-visible,
  .burger:focus-visible {
    outline: 2px solid var(--accent-2);
    outline-offset: 4px;
  }

  @media (prefers-reduced-motion: reduce) {
    .burger,
    .burger * {
      transition: none !important;
    }
    .header__nav {
      transition: none !important;
    }
  }


.k9zQ1m {
    position: relative;
    overflow: hidden;
    border-radius: 0;
    min-height: 700px;
    display: grid;
    place-items: center;
    background:
      radial-gradient(
        900px 380px at 50% 0%,
        color-mix(in srgb, var(--secondStyleColor) 25%, transparent),
        color-mix(in srgb, var(--secondStyleColor) 1%, transparent) 35%
      ),
      radial-gradient(
        700px 460px at 50% 110%,
        color-mix(in srgb, var(--secondStyleColor) 45%, transparent),
        transparent 64%
      ),
      linear-gradient(180deg, color-mix(in srgb, var(--bodyBG) 5%, transparent));
  }

  /* точечный паттерн сверху */
  .n8uL4x {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image: radial-gradient(
      circle,
      rgba(255, 255, 255, 0.12) 1px,
      transparent 1px
    );
    background-size: 18px 18px;
    opacity: 0.35;
    transform: translateY(-14px);
    mask-image: radial-gradient(
      520px 220px at 50% 10%,
      #000 35%,
      transparent 78%
    );
  }

  /* левый “шар” (оранжевый) */
  .vP0a7n {
    position: absolute;
    left: -365px;
    bottom: -288px;
    width: clamp(340px, 46vw, 640px);
    height: clamp(340px, 46vw, 640px);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;

    background:
      radial-gradient(
        circle at 35% 30%,
        rgba(255, 255, 255, 0.28),
        rgba(255, 255, 255, 0) 36%
      ),
      radial-gradient(
        circle at 45% 55%,
        rgba(255, 122, 42, 0.65),
        rgba(255, 59, 26, 0.25) 44%,
        rgba(7, 3, 18, 0) 72%
      ),
      conic-gradient(
        from 220deg,
        rgba(255, 140, 70, 0),
        rgba(255, 140, 70, 0.55),
        rgba(255, 255, 255, 0.22),
        rgba(255, 59, 26, 0.55),
        rgba(255, 140, 70, 0)
      );
    filter: blur(0.2px) saturate(1.1);
  }

  /* дуги поверх левого шара */
  .vP0a7n::before,
  .vP0a7n::after {
    content: "";
    position: absolute;
    inset: 80px;
    border-radius: 50%;
    pointer-events: none;
  }

  .vP0a7n::before {
    border: 2px solid rgba(255, 255, 255, 0.38);
    border-left-color: transparent;
    border-bottom-color: transparent;
    transform: rotate(18deg);
    filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.18));
  }

  .vP0a7n::after {
    inset: 120px;
    border: 2px solid rgba(255, 122, 42, 0.55);
    border-left-color: transparent;
    border-bottom-color: transparent;
    transform: rotate(18deg);
    filter: drop-shadow(0 0 16px rgba(255, 122, 42, 0.18));
  }

  /* правый “шар” (фиолетовый) */
  .w2Yt3b {
    position: absolute;
    right: -456px;
    bottom: 154px;
    width: clamp(360px, 50vw, 690px);
    height: clamp(360px, 50vw, 690px);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;

    background:
      radial-gradient(
        circle at 40% 30%,
        rgba(255, 255, 255, 0.22),
        rgba(255, 255, 255, 0) 34%
      ),
      radial-gradient(
        circle at 55% 58%,
        rgba(166, 75, 255, 0.7),
        rgba(111, 34, 255, 0.24) 46%,
        rgba(7, 3, 18, 0) 74%
      ),
      conic-gradient(
        from 310deg,
        rgba(166, 75, 255, 0),
        rgba(166, 75, 255, 0.62),
        rgba(255, 255, 255, 0.18),
        rgba(111, 34, 255, 0.62),
        rgba(166, 75, 255, 0)
      );
    filter: blur(0.2px) saturate(1.12);
  }

  /* дуги поверх правого шара */
  .w2Yt3b::before,
  .w2Yt3b::after {
    content: "";
    position: absolute;
    inset: 88px;
    border-radius: 50%;
    pointer-events: none;
  }

  .w2Yt3b::before {
    border: 2px solid rgba(255, 255, 255, 0.36);
    border-right-color: transparent;
    border-bottom-color: transparent;
    transform: rotate(-14deg);
    filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.16));
  }

  .w2Yt3b::after {
    inset: 128px;
    border: 2px solid rgba(166, 75, 255, 0.55);
    border-right-color: transparent;
    border-bottom-color: transparent;
    transform: rotate(-14deg);
    filter: drop-shadow(0 0 18px rgba(166, 75, 255, 0.18));
  }

  /* контент */
  .r7Xc2p {
    position: relative;
    z-index: 2;
    text-align: center;
    display: grid;
    justify-items: center;
    gap: 14px;
  }

  .s1qV9d {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 20px;
    border-radius: 999px;
    color: var(--textColor1);
    font-size: 14px;
    letter-spacing: 0.2px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    position: relative;
  }

  .h4mR2k {
    color: rgba(255, 255, 255, 0.92);
    filter: drop-shadow(0 0 10px rgba(166, 75, 255, 0.35));
  }

  .c3eT8w {
    margin: 0;
    font-weight: 600;
    line-height: 1.06;
    color: var(--textColor1);
    text-transform: uppercase;
    font-weight: 900;
    text-shadow:
      0 10px 30px rgba(0, 0, 0, 0.45),
      0 0 30px rgba(166, 75, 255, 0.1);
  }

  .x6Jp1a {
    color: rgba(255, 255, 255, 0.84);
  }

  .m5nB0q {
    margin: 0;
    max-width: 620px;
    color: var(--textColor1);
    line-height: 1.55;
  }

  .b8Qv3y {
    margin-top: 6px;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 40px;
    border-radius: 999px;
    text-decoration: none;
    color: var(--textColor1);
    font-size: 20px;
    border: 1px solid var(--secondStyleColor);
    transition: 0.2s all linear;
    &&:hover {
      transform: translateY(-4px);
    }
  }

  .t2cH7u {
    position: relative;
    z-index: 1;
  }

  /* мелкие точки вокруг кнопки */
  .g6dS1e {
    position: absolute;
    left: 50%;
    top: calc(50% + 72px);
    transform: translateX(-50%);
    width: 380px;
    height: 160px;
    pointer-events: none;
    background-image: radial-gradient(
      circle,
      rgba(255, 255, 255, 0.14) 1px,
      transparent 1px
    );
    background-size: 16px 16px;
    opacity: 0.22;
    mask-image: radial-gradient(
      170px 70px at 50% 55%,
      #000 30%,
      transparent 78%
    );
  }

  /* адаптив */
  @media (max-width: 900px) {
    .vP0a7n,
    .w2Yt3b {
      display: none;
    }

    .k9zQ1m {
      min-height: 500px;
    }
  }


: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;
    }
  }


/* ============ Matchday Atmosphere (Layered stack) ============ */
  .fxl-atmo__copy {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .fxl-btn {
    padding: 15px 20px;
    background-color: var(--secondStyleColor);
    border-radius: var(--borderRadius);
    color: var(--textColor2);
    text-transform: uppercase;
    font-weight: 800;
    width: fit-content;
    transition: 0.3s all linear;
    &&:hover {
      transform: translateY(-2px);
    }
  }
  .head-about-s {
    color: var(--textColor1);
  }
  .fxl-atmo__grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 20px;
    align-items: center;
  }
  @media (max-width: 900px) {
    .fxl-atmo__grid {
      grid-template-columns: 1fr;
    }
  }
  .head-about-s--left {
    text-align: left;
  }

  .fxl-bullets {
    margin: 12px 0 20px;
    padding: 0;
    list-style: none;
  }
  .fxl-bullets li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 10px;
    color: var(--textColor1);
  }
  .fxl-bullets li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: var(--secondStyleColor);
    box-shadow: 0 0 0 3px rgba(121, 255, 207, 0.18);
  }

  .fxl-atmo__visuals {
    position: relative;
    min-height: 420px;
  }
  .fxl-blob,
  .fxl-blob--b {
    position: absolute;
    inset: auto;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    filter: blur(30px);
    opacity: 0.7;
    z-index: 0;
    background: radial-gradient(
        45% 45% at 60% 40%,
        var(--secondStyleColor),
        transparent 70%
      ),
      radial-gradient(
        45% 45% at 30% 70%,
        var(--secondStyleColor),
        transparent 70%
      ),
      #0f2a1f;
    top: -20px;
    left: -10px;
  }
  .fxl-blob--b {
    width: 280px;
    height: 280px;
    bottom: -30px;
    right: -20px;
    top: auto;
    left: auto;
  }

  .fxl-polaroid {
    position: absolute;
    width: 60%;
    aspect-ratio: 4/3;
    border-radius: var(--borderRadius);
    padding: 8px;
  }
  .fxl-polaroid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    border-radius: 12px;
  }
  .fxl-polaroid--a {
    top: 8%;
    left: 10%;
    transform: rotate(-6deg);
  }
  .fxl-polaroid--b {
    top: 28%;
    right: 2%;
    transform: rotate(5deg);
  }
  .fxl-polaroid--c {
    bottom: 0;
    left: 18%;
    transform: rotate(2deg);
  }


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

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

  /* Header */
  .featuresHeader {
    max-width: 720px;
    margin: 0 auto 50px auto;
    text-align: center;
  }

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

  .featuresTitle {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--textColor1);
  }

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

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

  .featureCard {
    background: transparent;
    border-radius: var(--borderRadius);
    padding: 22px 22px 24px 22px;
    border: 4px dotted var(--secondStyleColor);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.45);
    transition: 0.2s ease;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

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

  .featureIcon {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    background: rgba(2, 255, 57, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
  }

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

  .featureTitle {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
  }

  .featureText {
    font-size: 14px;
    line-height: 1.6;
    color: #d2d2d2;
  }

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


/* ===== ROADMAP BASE ===== */

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

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

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

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

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

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

  /* ===== ROADMAP v1 (timeline) ===== */

  .roadmapTimeline {
    margin-top: 30px;
    border-left: 2px solid rgba(255, 255, 255, 0.15);
    padding-left: 22px;
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .roadmapStep {
    position: relative;
    border-radius: var(--borderRadius);
    padding: 16px 18px 18px 18px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.55);
    transition: 0.2s ease;
  }

  .roadmapStep::before {
    content: "";
    position: absolute;
    left: -23px;
    top: 22px;
    width: 12px;
    height: 12px;
    border-radius: 999px;
    background: var(--secondStyleColor);
    box-shadow: 0 0 0 4px rgba(2, 255, 57, 0.25);
  }

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

  .roadmapBadge {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--secondStyleColor);
    margin-bottom: 6px;
  }

  .roadmapStepTitle {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 6px;
  }

  .roadmapStepText {
    font-size: 14px;
    line-height: 1.7;
    color: #dddddd;
  }

  /* ===== ROADMAP v2 (cards grid) ===== */

  .roadmapSection-v2 .roadmapGrid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    margin-top: 30px;
  }

  .roadmapCard {
    border-radius: var(--borderRadius);
    padding: 18px 20px 20px 20px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.55);
    transition: 0.2s ease;
  }

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

  .roadmapCardTop {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
  }

  .roadmapYear {
    font-size: 13px;
    font-weight: 600;
  }

  .roadmapTag {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 3px 10px;
    border-radius: 999px;
    border: 1px solid rgba(2, 255, 57, 0.7);
    color: var(--secondStyleColor);
  }

  .roadmapCardTitle {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 6px;
  }

  .roadmapCardText {
    font-size: 14px;
    line-height: 1.7;
    color: var(--textColor1);
  }

  /* ===== ROADMAP v3 (horizontal track) ===== */

  .roadmapSection-v3 .roadmapTrack {
    position: relative;
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
  }

  .roadmapTrackLine {
    position: absolute;
    left: 0;
    right: 0;
    top: 18px;
    height: 2px;
    background: rgba(255, 255, 255, 0.18);
    z-index: 0;
  }

  .roadmapStage {
    position: relative;
    border-radius: var(--borderRadius);
    padding: 30px 18px 18px 18px;
    border: 1px solid var(--secondStyleColor);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.55);
    transition: 0.2s ease;
    z-index: 1;
  }

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

  .roadmapDot {
    position: absolute;
    top: 12px;
    left: 18px;
    width: 14px;
    height: 14px;
    border-radius: 999px;
    background: var(--secondStyleColor);
    box-shadow: 0 0 0 4px rgba(2, 255, 57, 0.25);
  }

  .roadmapStageLabel {
    margin-left: 28px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--secondStyleColor);
    margin-bottom: 4px;
  }

  .roadmapStageTitle {
    font-size: 16px;
    font-weight: 600;
    margin-left: 0;
    margin-bottom: 6px;
  }

  .roadmapStageText {
    font-size: 14px;
    line-height: 1.7;
    color: #dddddd;
  }

  /* ===== RESPONSIVE ===== */

  @media (max-width: 900px) {
    .roadmapSection-v2 .roadmapGrid {
      grid-template-columns: 1fr;
    }

    .roadmapSection-v3 .roadmapTrack {
      grid-template-columns: 1fr 1fr;
    }
  }

  @media (max-width: 640px) {
    .roadmapTimeline {
      border-left: none;
      padding-left: 0;
    }

    .roadmapStep::before {
      left: 14px;
    }

    .roadmapSection-v3 .roadmapTrack {
      grid-template-columns: 1fr;
    }

    .roadmapTrackLine {
      display: none;
    }
  }


/*  */

  #gallery {
    padding: 20px 0;
    background-color: color-mix(
      in srgb,
      var(--secondStyleColor) 15%,
      transparent
    );
    position: relative;
    overflow: hidden;

    &&::after {
      content: "";
      position: absolute;
      left: -12%;
      bottom: -20%;
      width: 450px;
      height: 450px;
      background-color: var(--bodyBG);
      border-radius: 50%;
      z-index: 1;
    }

    &&::before {
      content: "";
      position: absolute;
      right: -10%;
      top: -25%;
      width: 350px;
      height: 350px;
      background-color: var(--bodyBG);
      border-radius: 50%;
      z-index: 1;
    }
  }

  #gallery > * {
    position: relative;
    z-index: 2;
  }

  .gallery-title {
    position: relative;
    text-transform: uppercase;
    color: var(--textColor1);
    letter-spacing: 0.5px;
  }

  .gallery-wrap {
    display: flex;
    width: 100%;
    height: 600px;
    gap: 10px;
    overflow: hidden;
  }

  .gallery-item {
    flex: 1;
    height: 100%;
    overflow: hidden;
    transition: flex 0.8s ease-out;
  }
  .gallery-item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: top;
    border-radius: var(--borderRadius);
  }

  .gallery-item:hover {
    flex: 7;
  }

  /* optional: smoother behavior when hovering one item */
  .gallery-wrap:hover .gallery-item {
    flex: 1;
  }

  .gallery-wrap:hover .gallery-item:hover {
    flex: 7;
  }

  /* Responsive */
  @media (max-width: 1200px) {
    #gallery {
      &&::after,
      &&::before {
        display: none;
      }
    }

    .gallery-container {
      width: 100%;
      padding: 60px 16px;
    }
  }

  @media (max-width: 768px) {
    .gallery-title {
      margin-bottom: 24px;
    }

    .gallery-wrap {
      height: 60vh;
    }
  }

  @media (max-width: 480px) {
    .gallery-wrap {
      flex-direction: column;
      height: auto;
    }

    .gallery-item {
      height: 220px;
      transition:
        height 0.35s ease,
        flex 0.35s ease;
    }

    .gallery-item:hover {
      flex: 1;
      height: 320px;
    }
  }


.unitLuma {
    padding: 80px 0;
    color: var(--textColor1);
  }

  .unitLumaShell {
    max-width: var(--maxWidthContainer);
    padding: 0 20px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 2fr);
    gap: 32px;
    align-items: center;
  }

  /* Левая колонка */
  .unitLumaLabel {
    font-size: 13px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--secondStyleColor);
    font-weight: 600;
    margin-bottom: 10px;
  }

  .unitLumaTitle {
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 14px 0;
  }

  .unitLumaLead {
    font-size: 15px;
    line-height: 1.7;
    color: var(--textColor1);
    max-width: 420px;
  }

  /* Правая колонка: карточки */
  .unitLumaGrid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
  }

  .unitLumaCard {
    border-radius: var(--borderRadius);
    border: 1px solid var(--secondStyleColor);
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.55);
    padding: 18px 18px 20px 18px;
    transition: 0.18s ease;
  }

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

  .unitLumaCardAccent {
    background: radial-gradient(
      circle at top left,
      rgba(2, 255, 57, 0.16),
      #262626 55%
    );
  }

  .unitLumaCardTitle {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 8px 0;
  }

  .unitLumaCardText {
    font-size: 14px;
    line-height: 1.6;
    color: #e0e0e0;
  }

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

    .unitLumaGrid {
      grid-template-columns: 1fr 1fr;
    }
  }

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


/* ===== HOW IT WORKS SECTION ALT (VARIANT 2) ===== */

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

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

  /* Header */
  .howAltHeader {
    max-width: 700px;
    margin: 0 auto 45px auto;
    text-align: center;
  }

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

  .howTitle {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--textColor1);
  }

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

  /* Timeline */
  .howAltTimeline {
    position: relative;
    max-width: 760px;
    margin: 0 auto;
    padding-left: 28px;
  }

  .howAltLine {
    position: absolute;
    left: 16px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(
      to bottom,
      var(--secondStyleColor),
      rgba(2, 255, 57, 0.05)
    );
  }

  /* Step */
  .howAltStep {
    position: relative;
    display: flex;
    gap: 18px;
    margin-bottom: 26px;
  }

  .howAltDot {
    position: relative;
    flex: 0 0 36px;
    height: 36px;
    border-radius: 999px;
    border: 1px solid var(--secondStyleColor);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    color: var(--secondStyleColor);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.6);
    z-index: 1;
    margin-left: -2px;
  }

  .howAltStepBody {
    border-radius: var(--borderRadius);
    padding: 18px 20px 18px 20px;
    border: 4px dotted var(--secondStyleColor);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.55);
    transition: 0.18s ease;
  }

  .howAltStepTitle {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 6px;
  }

  .howAltStepText {
    font-size: 14px;
    line-height: 1.6;
    color: #d4d4d4;
  }

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

  /* Responsive */
  @media (max-width: 700px) {
    .howAltTimeline {
      padding-left: 18px;
    }

    .howAltLine {
      left: 10px;
    }

    .howAltStep {
      gap: 12px;
    }

    .howAltStepBody {
      padding: 16px 16px;
    }
  }


.partners {
    position: relative;
  }

  .partners::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
    inset: 0;
    background-color: var(--secondStyleColor);
    opacity: 0.1;
  }

  .partners__container {
    text-align: center;
  }
  .partnersHead {
    margin-bottom: 45px;
  }

  .partners__title {
    margin-bottom: 40px;
    font-weight: 700;
    color: var(--textColor1);
  }

  .partners__logo-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.25s ease;
    padding-bottom: 0;
    gap: 30px;
  }

  .partners__logo-wrapper a {
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s all linear;
    img {
      height: 50%;
    }
  }

  .partners__logo-wrapper a:hover {
    transform: scale(1.05);
  }

  .partners__logo {
    max-width: 260px;
    height: auto;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
  }
  @media (max-width: 800px) {
    .partners__logo-wrapper {
      flex-direction: column;
    }
    .partners__logo-wrapper a {
      width: 100%;
    }
  }


/* =========================================================
   Testimonials (unique classes: tstx7k1-*)
   ========================================================= */

  .tstx7k1-sec {
    position: relative;
    padding: 74px 0 92px;
    color: var(--textColor1);
    overflow: hidden;
  }

  /* декоративные "веточки" по бокам (inline SVG как фон) */
  .tstx7k1-sec::before,
  .tstx7k1-sec::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: min(420px, 28vw);
    opacity: 0.22;
    pointer-events: none;
    background-repeat: no-repeat;
    background-size: cover;
    filter: grayscale(1);
  }

  .tstx7k1-shell {
    width: min(1200px, calc(100% - 44px));
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }

  .tstx7k1-head {
    text-align: center;
    margin-bottom: 28px;
  }

  .tstx7k1-title {
    margin: 0;
    font-size: clamp(26px, 2.4vw, 40px);
    letter-spacing: 0.01em;
    font-weight: 700;
  }

  .tstx7k1-dots {
    margin: 12px auto 0;
    display: inline-flex;
    gap: 12px;
    opacity: 0.6;
  }
  .tstx7k1-dot {
    width: 4px;
    height: 4px;
    border-radius: 999px;
    background: var(--textColor1);
  }

  /* ----- stage (slider area) ----- */

  .tstx7k1-stage {
    position: relative;
    padding-top: 8px;
  }

  .tstx7k1-sw {
    width: 100%;
    overflow: visible;
  }

  .tstx7k1-slide {
    display: flex;
    justify-content: center;
    padding: 40px 0 18px;
    opacity: 0.18;
    transform: scale(0.86);
    transition: opacity 320ms ease, transform 320ms ease, filter 320ms ease;
    filter: blur(0.3px);
  }

  .tstx7k1-slide.swiper-slide-active {
    opacity: 1;
    transform: scale(1);
    filter: none;
  }

  .tstx7k1-card {
    width: min(720px, 92vw);
    text-align: center;
  }

  .tstx7k1-quoteMark {
    display: inline-flex;
    color: var(--secondStyleColor);
    opacity: 0.86;
    margin-bottom: 18px;
  }

  .tstx7k1-text {
    margin: 0 auto;
    width: min(720px, 92%);
    font-size: 18px;
    line-height: 1.9;
    font-style: italic;
    color: var(--textColor1);
  }

  .tstx7k1-author {
    margin-top: 54px;
    letter-spacing: 0.06em;
    font-size: 14px;
    color: var(--secondStyleColor);
    opacity: 0.9;
  }

  /* ----- nav buttons (круглые) ----- */

  .tstx7k1-nav {
    position: absolute;
    top: 52%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 1px solid rgba(31, 36, 38, 0.45);
    background: var(--secondStyleColor);
    color: var(--textColor2);
    display: grid;
    place-items: center;
    cursor: pointer;
    z-index: 3;
    transition: transform 180ms ease, background 180ms ease, opacity 180ms ease;
    user-select: none;
  }

  .tstx7k1-nav span {
    font-size: 22px;
    line-height: 1;
    transform: translateY(-1px);
  }

  .tstx7k1-prev {
    left: clamp(12px, 7vw, 160px);
  }
  .tstx7k1-next {
    right: clamp(12px, 7vw, 160px);
  }

  .tstx7k1-nav:hover {
    transform: translateY(-50%) scale(1.05);
  }

  .tstx7k1-nav:active {
    transform: translateY(-50%) scale(0.98);
  }

  .tstx7k1-nav:focus-visible {
    outline-offset: 4px;
  }

  .tstx7k1-nav.swiper-button-disabled {
    opacity: 0.35;
    pointer-events: none;
  }

  /* ----- pagination dots ----- */

  .tstx7k1-pagi {
    margin-top: 32px;
    display: flex;
    justify-content: center;
    gap: 10px;
  }

  .tstx7k1-pagi .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
    background: var(--textColor1);
    opacity: 1;
    margin: 0 !important;
  }

  .tstx7k1-pagi .swiper-pagination-bullet-active {
    background: var(--secondStyleColor);
  }

  /* ----- responsive ----- */

  @media (max-width: 900px) {
    .tstx7k1-sec {
      padding: 60px 0 72px;
    }
    .tstx7k1-prev {
      left: 14px;
    }
    .tstx7k1-next {
      right: 14px;
    }
    .tstx7k1-text {
      font-size: 16px;
      line-height: 1.85;
    }
    .tstx7k1-author {
      margin-top: 40px;
    }
  }

  @media (max-width: 520px) {
    .tstx7k1-nav {
      display: none;
    }
    .tstx7k1-slide {
      padding-top: 26px;
    }
  }


/*  */
  .faq--timeline {
    padding: var(--sectionPadding);
    border-radius: var(--borderRadius);
  }

  .faq--timeline .container {
    display: flex;
    flex-direction: column;
    gap: 28px;
  }

  .faqEyebrow {
    margin: 0 0 8px 0;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 800;
    color: var(--secondStyleColor);
    font-size: 13px;
  }

  .faqHeader h2 {
    margin: 0 0 10px 0;
  }

  .faqIntro {
    margin: 0;
    color: var(--textColor1);
    opacity: 0.9;
  }

  /* Two fixed columns prevent items from jumping between columns */
  .faqGrid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    align-items: start;
  }

  .faqCol {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .faqCard {
    position: relative;
    border-radius: calc(var(--borderRadius) * 0.8);
    border: 1px solid
      color-mix(in srgb, var(--secondStyleColor) 45%, transparent);
    background: color-mix(in srgb, var(--mainStyleColor) 7%, transparent);
    overflow: hidden;
    transition:
      border-color 0.25s ease,
      transform 0.25s ease,
      background-color 0.25s ease;
  }

  .faqCard::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 4px;
    background: var(--secondStyleColor);
    opacity: 0.35;
    transition:
      opacity 0.25s ease,
      transform 0.25s ease;
    transform: scaleY(0.4);
    transform-origin: top;
  }

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

  .faqCard.is-open::before {
    opacity: 0.9;
    transform: scaleY(1);
  }

  .faqQuestion {
    width: 100%;
    min-height: 80px;
    padding: 18px 18px 14px 20px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    border: 0;
    background: transparent;
    color: var(--textColor1);
    text-align: left;
    cursor: pointer;
    font-weight: 800;
    font-size: 18px;
    line-height: 1.35;
  }

  .faqQuestion:focus-visible {
    outline: 2px solid var(--secondStyleColor);
    outline-offset: 2px;
    border-radius: calc(var(--borderRadius) * 0.6);
  }

  .faqBadge {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 48px;
    height: 36px;
    padding: 0 10px;
    border-radius: 999px;
    background: color-mix(in srgb, var(--secondStyleColor) 16%, transparent);
    color: var(--secondStyleColor);
    font-weight: 900;
    font-size: 14px;
    border: 1px solid
      color-mix(in srgb, var(--secondStyleColor) 40%, transparent);
  }

  .faqAnswer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    padding: 0 20px;
    transition:
      max-height 0.35s ease,
      opacity 0.25s ease,
      padding 0.25s ease;
  }

  .faqAnswer p {
    margin: 0;
    padding: 0 0 18px 0;
    color: var(--textColor1);
    opacity: 0.95;
  }

  .faqCard.is-open .faqAnswer {
    opacity: 1;
    padding-bottom: 2px;
  }

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

  @media (max-width: 640px) {
    .faqQuestion {
      font-size: 17px;
      padding: 16px 16px 12px 16px;
    }

    .faqAnswer {
      padding: 0 16px;
    }
  }


.site-footer {
    border-top: 0.5px solid var(--secondStyleColor);
    padding: 20px 0;
  }
  .footerLogo {
    color: var(--textColor1);
  }

  .footer-inner {
    display: flex;
    justify-content: center;
    flex-direction: column;
    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: var(--secondStyleColor);
      border-radius: 50%;
    }
    a {
      transition: 0.3s all linear;
      transform-origin: left;
      text-decoration: none;
      color: var(--textColor1);
    }
    a:hover {
      text-decoration: underline;
    }
  }
  @media screen and (max-width: 750px) {
    .intoLinks {
      flex-direction: column;
      span {
        display: none;
      }
    }
  }

  .f-social {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
  }

  .f-social i {
    color: var(--secondStyleColor);
  }
  .copy {
    text-align: center;
    opacity: 0.5;
  }
  .footer-links {
    display: flex;
    gap: 1rem;
  }

  .footer-links a {
    color: rgba(255, 255, 255, 0.42);
    font-size: 0.75rem;
  }

  .footer-links a:hover {
    color: #fff;
  }