
:root {
  --bg: #130f1d;
  --bg-card: #1e1730;
  --text: #e0d4f5;
  --text-muted: rgba(255,255,255,0.5);
  --accent: #9b59b6;
  --accent-rgb: 155,89,182;
  --accent2: #b65d59;
  --accent2-rgb: 182,93,89;
  --accent3: #6b75be;
  --accent3-rgb: 107,117,190;
  --border: rgba(255,255,255,0.08);
  --radius: 12px;
  --font: 'Space Grotesk', sans-serif;
  --font-heading: 'Space Grotesk', sans-serif;
  --bodyBG: #130f1d;
  --textColor1: #e0d4f5;
  --textColor2: #ffffff;
  --textSecondary: #ada3bf;
  --textMuted: #7a7289;
  --secondStyleColor: #9b59b6;
  --bgCard: #1e1730;
  --bgAlt: #231f2e;
  --borderSubtle: rgba(255,255,255,0.08);
  --borderRadius: 12px;
  --maxWidthContainer: 1200px;
  --scrollbarBg: rgba(255,255,255,0.1);
  --itemBgColor: transparent;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: rgba(255,255,255,0.05); border-radius: 100vw; }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 100vw; }
::-webkit-scrollbar-thumb:hover { background: var(--secondStyleColor); filter: brightness(1.2); }
::-webkit-scrollbar-thumb:active { background: #fff; }
* { scrollbar-width: thin; scrollbar-color: var(--accent) rgba(255,255,255,0.05); }

body {
  font-family: var(--font);
  background: var(--bodyBG);
  color: var(--textColor1);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: var(--maxWidthContainer);
  margin: 0 auto;
  padding: 0 24px;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; object-position: 50% 20%; }
ul { list-style: none; }
html { scroll-behavior: smooth; }

/* Standardized typography */
section h1 {
  font-size: 48px !important;
  line-height: 1.15 !important;
  font-weight: 800 !important;
}
section h2 {
  font-size: 36px !important;
  line-height: 1.3 !important;
  font-weight: 700 !important;
}
section h3 {
  font-size: 20px !important;
  line-height: 1.4 !important;
  font-weight: 600 !important;
}
section h4 {
  font-size: 18px !important;
  line-height: 1.4 !important;
  font-weight: 600 !important;
}
section p,
section li {
  font-size: 16px !important;
  line-height: 1.7 !important;
}
footer p,
footer li,
footer a {
  font-size: 14px !important;
  line-height: 1.6 !important;
}
footer h3 {
  font-size: 16px !important;
}
@media (max-width: 900px) {
  section h1 {
    font-size: 36px !important;
  }
  section h2 {
    font-size: 28px !important;
  }
}
@media (max-width: 600px) {
  section h1 {
    font-size: 30px !important;
  }
  section h2 {
    font-size: 24px !important;
  }
  section h3 {
    font-size: 18px !important;
  }
  section p,
  section li {
    font-size: 15px !important;
  }
}

/* Heading font */
section h1, section h2, section h3, section h4,
header h1, header h2, header h3, header h4,
footer h3 {
  font-family: var(--font-heading) !important;
}

/* Standardized section spacing */
section {
  padding-top: 80px !important;
  padding-bottom: 80px !important;
}
header, nav { padding-top: 0 !important; padding-bottom: 0 !important; }
footer {
  padding-top: 40px !important;
  padding-bottom: 24px !important;
}
section.toc {
  padding-top: 12px !important;
  padding-bottom: 12px !important;
}
.site-disclaimer {
  background: rgba(0,0,0,0.3);
  border-top: 1px solid var(--border);
  padding: 16px 0;
  text-align: center;
}
.site-disclaimer p {
  font-size: 14px !important;
  font-style: italic;
  line-height: 1.5 !important;
  color: var(--textMuted);
  max-width: 800px;
  margin: 0 auto;
}
.toc .swiper-wrapper {
}
@media (max-width: 768px) {
  body > section,
  body > div > section,
  body > section {
    padding-top: 50px !important;
    padding-bottom: 50px !important;
  }
}

/* Secondary pages */
.sec-page { padding: 80px 0; min-height: 60vh; }
.page-content { max-width: var(--maxWidthContainer); }
.page-content h1 { font-size: 2rem; font-weight: 700; margin-bottom: 24px; }
.page-content h2 { font-size: 1.3rem; font-weight: 600; margin: 36px 0 12px; color: var(--textColor1); }
.page-content p { margin-bottom: 16px; color: var(--textSecondary); line-height: 1.8; font-size: 0.95rem; }
.page-content a { color: var(--secondStyleColor); text-decoration: underline; }
.page-content a:hover { opacity: 0.8; }

/* Overflow protection — word wrap only, no clipping */
section p,
section li,
section summary {
  overflow-wrap: break-word;
}


  /* ===========================
          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: var(--textColor2) !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;
    }
  }



  /* ── Section ── */
  .hr31 {
    position: relative;
    min-height: 800px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--bodyBG);
    padding: 120px 20px 80px;
  }

  /* ── Background Image ── */
  .hr31__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
  }

  /* ── Dimmer ── */
  .hr31__dim {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
      radial-gradient(
        ellipse at 50% 40%,
        color-mix(in srgb, var(--bodyBG) 50%, transparent),
        transparent 65%
      ),
      color-mix(in srgb, var(--bodyBG) 75%, transparent);
  }

  /* ── Triangle SVG Layer ── */
  .hr31__triangles {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
  }

  .hr31__tri {
    will-change: transform, opacity;
  }

  .hr31__mesh {
    contain: layout paint;
  }

  /* ── Content ── */
  .hr31 .container {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: var(--maxWidthContainer);
    margin: 0 auto;
  }

  .hr31__content {
    text-align: center;
  }

  /* ── Kicker Badge ── */
  .hr31__kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--secondStyleColor);
    background: color-mix(in srgb, var(--secondStyleColor) 10%, transparent);
    border: 1px solid
      color-mix(in srgb, var(--secondStyleColor) 20%, transparent);
    border-radius: 100px;
    margin-bottom: 28px;
    animation: hr31-kickerIn 0.6s ease both;
  }

  .hr31__kicker i {
    font-size: 12px;
  }

  @keyframes hr31-kickerIn {
    from {
      opacity: 0;
      transform: translateY(12px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* ── Heading ── */
  .hr31__content h1 {
    font-size: clamp(34px, 5.5vw, 62px);
    font-weight: 800;
    color: var(--textColor1);
    line-height: 1.08;
    margin: 0 0 22px;
    letter-spacing: -0.025em;
    max-width: 740px;
    margin-left: auto;
    margin-right: auto;
    animation: hr31-fadeUp 0.7s 0.15s ease both;
  }

  /* ── Description ── */
  .hr31__desc {
    font-size: clamp(15px, 1.6vw, 18px);
    color: color-mix(in srgb, var(--textColor1) 60%, transparent);
    line-height: 1.7;
    max-width: 520px;
    margin: 0 auto 40px;
    animation: hr31-fadeUp 0.7s 0.3s ease both;
  }

  @keyframes hr31-fadeUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* ── Buttons ── */
  .hr31__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 52px;
    animation: hr31-fadeUp 0.7s 0.45s ease both;
  }

  .hr31__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 32px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    border-radius: var(--borderRadius);
    transition: all 0.25s ease;
  }

  .hr31__btn i {
    font-size: 13px;
    transition: transform 0.25s ease;
  }

  .hr31__btn--fill {
    color: var(--textColor2);
    background: var(--secondStyleColor);
    border: 2px solid var(--secondStyleColor);
  }

  .hr31__btn--fill:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px
      color-mix(in srgb, var(--secondStyleColor) 35%, transparent);
  }

  .hr31__btn--fill:hover i {
    transform: translateX(3px);
  }

  .hr31__btn--ghost {
    color: var(--textColor1);
    background: color-mix(in srgb, var(--textColor1) 6%, transparent);
    border: 2px solid color-mix(in srgb, var(--textColor1) 15%, transparent);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }

  .hr31__btn--ghost:hover {
    background: color-mix(in srgb, var(--textColor1) 12%, transparent);
    border-color: color-mix(in srgb, var(--textColor1) 25%, transparent);
    transform: translateY(-2px);
  }

  /* ── Feature Pills ── */
  .hr31__pills {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    animation: hr31-fadeUp 0.7s 0.6s ease both;
  }

  .hr31__pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 600;
    color: color-mix(in srgb, var(--textColor1) 70%, transparent);
    background: color-mix(in srgb, var(--bodyBG) 50%, transparent);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid color-mix(in srgb, var(--textColor1) 10%, transparent);
    border-radius: 100px;
    transition: all 0.3s ease;
  }

  .hr31__pill:hover {
    border-color: color-mix(in srgb, var(--secondStyleColor) 30%, transparent);
    color: var(--textColor1);
    transform: translateY(-2px);
  }

  .hr31__pill i {
    font-size: 12px;
    color: var(--secondStyleColor);
  }

  /* ── Responsive ── */
  @media (max-width: 950px) {
    .hr31 {
      padding: 100px 20px 60px;
    }
  }

  @media (max-width: 800px) {
    .hr31__pills {
      gap: 10px;
    }

    .hr31__pill {
      padding: 8px 16px;
      font-size: 12px;
    }
  }

  @media (max-width: 600px) {
    .hr31 {
      padding: 80px 16px 48px;
      min-height: 100svh;
    }

    .hr31__content h1 {
      font-size: clamp(28px, 7.5vw, 42px);
    }

    .hr31__actions {
      flex-direction: column;
      gap: 12px;
    }

    .hr31__btn {
      width: 100%;
      justify-content: center;
    }

    .hr31__pills {
      flex-direction: column;
      align-items: stretch;
    }

    .hr31__pill {
      justify-content: center;
    }
  }

  /* ── Reduced Motion ── */
  @media (prefers-reduced-motion: reduce) {
    .hr31__tri,
    .hr31__shimmer {
      animation: none !important;
    }

    .hr31__tri * {
      animation: none !important;
    }

    .hr31__kicker,
    .hr31__content h1,
    .hr31__desc,
    .hr31__actions,
    .hr31__pills {
      animation: none !important;
    }
  }



  :root {
    --scrollbarBg: rgba(255, 255, 255, 0.1);
    --itemBgColor: transparent;
  }

  .swiper {
    padding-bottom: 10px !important;
  }

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

  .toc h2 {
    margin: 0 !important;
    text-align: center;
    color: var(--textColor1);
  }

  .toc {
    background-color: transparent;
    counter-reset: toc-counter;
  }

  .toc a {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.5;
    white-space: nowrap;
    color: color-mix(in srgb, var(--textColor1) 70%, transparent);
    padding: 10px 22px 10px 18px;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    background-color: var(--itemBgColor);
    border-left: 3px solid var(--secondStyleColor);
    border-top: 1px solid color-mix(in srgb, var(--textColor1) 8%, transparent);
    border-right: 1px solid color-mix(in srgb, var(--textColor1) 8%, transparent);
    border-bottom: 1px solid color-mix(in srgb, var(--textColor1) 8%, transparent);
    transition: color 0.3s ease, border-color 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
    -webkit-transition: color 0.3s ease, border-color 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
    -moz-transition: color 0.3s ease, border-color 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
    -ms-transition: color 0.3s ease, border-color 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
    -o-transition: color 0.3s ease, border-color 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
  }

  .toc .swiper-slide:nth-child(3n+2) a {
    border-left-color: color-mix(in srgb, var(--secondStyleColor) 70%, var(--textColor1));
  }

  .toc .swiper-slide:nth-child(3n+3) a {
    border-left-color: color-mix(in srgb, var(--secondStyleColor) 50%, var(--textColor1));
  }

  .toc a::before {
    content: counter(toc-counter, decimal-leading-zero);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 28px;
    height: 28px;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    color: var(--secondStyleColor);
    background: color-mix(in srgb, var(--secondStyleColor) 12%, transparent);
    border: 1.5px solid color-mix(in srgb, var(--secondStyleColor) 30%, transparent);
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
    flex-shrink: 0;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    -webkit-transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    -moz-transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    -ms-transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    -o-transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  }

  .toc .swiper-slide:nth-child(3n+2) a::before {
    color: color-mix(in srgb, var(--secondStyleColor) 70%, var(--textColor1));
    background: color-mix(in srgb, var(--secondStyleColor) 8%, color-mix(in srgb, var(--textColor1) 4%, transparent));
    border-color: color-mix(in srgb, var(--secondStyleColor) 25%, color-mix(in srgb, var(--textColor1) 10%, transparent));
  }

  .toc .swiper-slide:nth-child(3n+3) a::before {
    color: color-mix(in srgb, var(--secondStyleColor) 50%, var(--textColor1));
    background: color-mix(in srgb, var(--secondStyleColor) 6%, color-mix(in srgb, var(--textColor1) 6%, transparent));
    border-color: color-mix(in srgb, var(--secondStyleColor) 20%, color-mix(in srgb, var(--textColor1) 12%, transparent));
  }

  .toc a:hover,
  .toc a:focus {
    color: var(--textColor1);
    border-left-width: 4px;
    background-color: color-mix(in srgb, var(--secondStyleColor) 6%, transparent);
    box-shadow: 0 0 16px color-mix(in srgb, var(--secondStyleColor) 15%, transparent),
                inset 0 0 12px color-mix(in srgb, var(--secondStyleColor) 5%, transparent);
  }

  .toc a:hover::before,
  .toc a:focus::before {
    background-color: var(--secondStyleColor);
    color: var(--textColor2);
    border-color: var(--secondStyleColor);
  }

  .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);
    margin: 0 auto;
  }

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

  @media (prefers-reduced-motion: reduce) {
    .toc a,
    .toc a::before {
      transition: none;
      -webkit-transition: none;
      -moz-transition: none;
      -ms-transition: none;
      -o-transition: none;
    }
  }



  /* ===== ROADMAP v6 — SVG curve path + glass cards + travelling light ===== */

  .rm6 {
    padding: clamp(70px, 8vw, 110px) 0;
    color: var(--textColor1);
    overflow: hidden;
  }

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

  .rm6__eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--secondStyleColor);
    margin-bottom: 12px;
  }

  .rm6__head h2 {
    margin: 0 0 14px;
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    letter-spacing: -0.02em;
  }

  .rm6__head p {
    margin: 0;
    line-height: 1.65;
    color: color-mix(in srgb, var(--textColor1) 68%, transparent);
  }

  /* Track container */
  .rm6__track {
    position: relative;
  }

  /* SVG curve */
  .rm6__svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
  }

  .rm6__path {
    stroke: color-mix(in srgb, var(--secondStyleColor) 10%, transparent);
    stroke-width: 2;
  }

  .rm6__path--dash {
    stroke: color-mix(in srgb, var(--secondStyleColor) 22%, transparent);
    stroke-width: 2;
    stroke-dasharray: 8 12;
  }

  .rm6__light {
    fill: var(--secondStyleColor);
    filter: drop-shadow(0 0 8px var(--secondStyleColor));
    opacity: 0.7;
  }

  /* Phases grid */
  .rm6__phases {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }

  /* Stagger vertically to follow curve */
  .rm6__phase--1 {
    padding-top: 0;
  }
  .rm6__phase--2 {
    padding-top: 50px;
  }
  .rm6__phase--3 {
    padding-top: 100px;
  }
  .rm6__phase--4 {
    padding-top: 150px;
  }

  /* Number circle */
  .rm6__num {
    display: flex;
    justify-content: center;
    margin-bottom: 14px;
  }

  .rm6__num span {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: color-mix(in srgb, var(--secondStyleColor) 12%, transparent);
    border: 1px solid
      color-mix(in srgb, var(--secondStyleColor) 30%, transparent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    color: var(--secondStyleColor);
    box-shadow: 0 0 0 0
      color-mix(in srgb, var(--secondStyleColor) 20%, transparent);
    animation: rm6Pulse 2.5s ease-in-out infinite;
  }

  @keyframes rm6Pulse {
    0%,
    100% {
      box-shadow: 0 0 0 0
        color-mix(in srgb, var(--secondStyleColor) 20%, transparent);
    }
    50% {
      box-shadow: 0 0 0 10px
        color-mix(in srgb, var(--secondStyleColor) 0%, transparent);
    }
  }

  /* Card */
  .rm6__card {
    padding: 24px 20px;
    border-radius: var(--borderRadius);
    border: 1px solid
      color-mix(in srgb, var(--secondStyleColor) 12%, transparent);
    background: linear-gradient(
      155deg,
      rgba(255, 255, 255, 0.05),
      rgba(255, 255, 255, 0.015)
    );
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition:
      transform 0.3s ease,
      border-color 0.3s ease;
  }

  .rm6__card:hover {
    transform: translateY(-4px);
    border-color: color-mix(in srgb, var(--secondStyleColor) 40%, transparent);
  }

  .rm6__ico {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: color-mix(in srgb, var(--secondStyleColor) 10%, transparent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    transition: transform 0.3s ease;
  }

  .rm6__card:hover .rm6__ico {
    transform: scale(1.12) rotate(-5deg);
  }

  .rm6__ico i {
    font-size: 17px;
    color: var(--secondStyleColor);
  }

  .rm6__card h3 {
    margin: 0 0 8px;
    font-size: 17px;
    font-weight: 600;
  }

  .rm6__card p {
    margin: 0 0 14px;
    font-size: 13px;
    line-height: 1.7;
    color: color-mix(in srgb, var(--textColor1) 66%, transparent);
  }

  /* Badges */
  .rm6__badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.04em;
    border: 1px solid
      color-mix(in srgb, var(--secondStyleColor) 20%, transparent);
    color: color-mix(in srgb, var(--textColor1) 55%, transparent);
  }

  .rm6__badge--done {
    background: color-mix(in srgb, var(--secondStyleColor) 12%, transparent);
    color: var(--secondStyleColor);
    border-color: color-mix(in srgb, var(--secondStyleColor) 35%, transparent);
  }

  .rm6__badge--active {
    background: var(--secondStyleColor);
    color: var(--bodyBG);
    border-color: var(--secondStyleColor);
  }

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

    .rm6__phase--1 {
      padding-top: 0;
    }
    .rm6__phase--2 {
      padding-top: 0;
    }
    .rm6__phase--3 {
      padding-top: 0;
    }
    .rm6__phase--4 {
      padding-top: 0;
    }

    .rm6__svg {
      display: none;
    }
  }

  @media (max-width: 800px) {
    .rm6__card h3 {
      font-size: 16px;
    }

    .rm6__card p {
      font-size: 12px;
    }
  }

  @media (max-width: 600px) {
    .rm6 {
      padding: 50px 0;
    }

    .rm6__head {
      margin-bottom: 36px;
    }

    .rm6__head h2 {
      font-size: 24px;
    }

    .rm6__phases {
      grid-template-columns: 1fr;
      gap: 16px;
    }

    .rm6__card {
      padding: 20px 16px;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .rm6__num span {
      animation: none;
    }

    .rm6__light animateMotion {
      dur: 0s;
    }

    .rm6__card,
    .rm6__ico {
      transition: none;
    }
  }



  .rv10 {
    position: relative;
    padding: clamp(56px, 7vw, 100px) 0;
    color: var(--textColor1);
    overflow: hidden;
  }

  .rv10__accent-line {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, var(--secondStyleColor));
  }

  .rv10__head {
    text-align: center;
    max-width: 560px;
    margin: 0 auto 56px;
  }

  .rv10__head h2 {
    margin: 0 0 12px;
    font-size: clamp(26px, 3.5vw, 40px);
    font-weight: 700;
  }

  .rv10__head p {
    margin: 0;
    font-size: 15px;
    color: color-mix(in srgb, var(--textColor1) 60%, transparent);
    line-height: 1.6;
  }

  /* Timeline */
  .rv10__timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 28px;
  }

  .rv10__timeline::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    background: color-mix(in srgb, var(--secondStyleColor) 20%, transparent);
    transform: translateX(-50%);
  }

  .rv10__item {
    position: relative;
    display: flex;
    width: 50%;
  }

  .rv10__item--left {
    align-self: flex-start;
    justify-content: flex-end;
    padding-right: 36px;
  }

  .rv10__item--right {
    align-self: flex-end;
    padding-left: 36px;
  }

  .rv10__dot {
    position: absolute;
    top: 24px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--secondStyleColor);
    border: 2px solid var(--bodyBG);
    z-index: 1;
  }

  .rv10__item--left .rv10__dot { right: -5px; }
  .rv10__item--right .rv10__dot { left: -5px; }

  .rv10__card {
    padding: 24px 22px 20px;
    border-radius: var(--borderRadius);
    border: 1px solid color-mix(in srgb, var(--secondStyleColor) 12%, transparent);
    background: rgba(255, 255, 255, 0.02);
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: transform 0.25s ease, border-color 0.25s ease;
    width: 100%;
  }

  .rv10__card:hover {
    transform: translateY(-3px);
    border-color: color-mix(in srgb, var(--secondStyleColor) 30%, transparent);
  }

  .rv10__stars {
    display: flex;
    gap: 3px;
    font-size: 13px;
  }

  .rv10__stars i { color: var(--secondStyleColor); }

  .rv10__text {
    margin: 0;
    font-size: 14px;
    line-height: 1.7;
    color: color-mix(in srgb, var(--textColor1) 80%, transparent);
  }

  .rv10__author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 4px;
  }

  .rv10__avatar {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg,
      color-mix(in srgb, var(--secondStyleColor) 18%, transparent),
      color-mix(in srgb, var(--secondStyleColor) 8%, transparent));
    border: 1px solid color-mix(in srgb, var(--secondStyleColor) 25%, transparent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: var(--secondStyleColor);
  }

  .rv10__name {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
  }

  .rv10__role {
    margin: 0;
    font-size: 12px;
    color: color-mix(in srgb, var(--textColor1) 50%, transparent);
  }

  @media (max-width: 800px) {
    .rv10__timeline::before { left: 16px; }
    .rv10__item { width: 100%; padding-left: 44px !important; padding-right: 0 !important; }
    .rv10__item--left { align-self: auto; justify-content: flex-start; }
    .rv10__dot { left: 11px !important; right: auto !important; }
  }

  @media (max-width: 600px) {
    .rv10 { padding: 48px 0; }
    .rv10__head { margin-bottom: 40px; }
    .rv10__card { padding: 20px 16px 18px; }
    .rv10__timeline { gap: 20px; }
    .rv10__accent-line { display: none; }
  }



  /* ===== HOW v21 — Pipeline Steps with animated connectors ===== */

  .hw21 {
    position: relative;
    padding: clamp(60px, 7vw, 100px) 0;
    color: var(--textColor1);
    overflow: hidden;
  }

  /* Blueprint grid background */
  .hw21__blueprint {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
      linear-gradient(rgba(var(--accent-rgb), 0.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(var(--accent-rgb), 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
  }

  .hw21__blueprint-accent {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
      linear-gradient(rgba(var(--accent-rgb), 0.08) 1px, transparent 1px),
      linear-gradient(90deg, rgba(var(--accent-rgb), 0.08) 1px, transparent 1px);
    background-size: 300px 300px;
  }

  .hw21__grain {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)'/%3E%3C/svg%3E");
  }

  /* Header */
  .hw21__head {
    text-align: center;
    max-width: 660px;
    margin: 0 auto 55px;
    position: relative;
    z-index: 2;
  }

  .hw21__head h2 {
    margin: 0 0 14px;
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    letter-spacing: -0.02em;
  }

  .hw21__head p {
    margin: 0;
    line-height: 1.65;
    color: color-mix(in srgb, var(--textColor1) 70%, transparent);
  }

  /* Pipeline layout */
  .hw21__pipeline {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    max-width: var(--maxWidthContainer);
    margin: 0 auto;
    position: relative;
    z-index: 2;
  }

  /* Step */
  .hw21__step {
    flex: 1;
    max-width: 250px;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }

  .hw21__step.visible {
    opacity: 1;
    transform: translateY(0);
  }

  .hw21__num {
    font-size: 3.5rem;
    font-weight: 700;
    color: rgba(var(--accent-rgb), 0.08);
    margin-bottom: 8px;
    line-height: 1;
  }

  .hw21__icon {
    width: 64px;
    height: 64px;
    border-radius: var(--borderRadius);
    background: rgba(var(--accent-rgb), 0.04);
    border: 1px solid color-mix(in srgb, var(--secondStyleColor) 12%, transparent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 1.3rem;
    color: var(--secondStyleColor);
    position: relative;
    transition: all 0.35s ease;
  }

  .hw21__icon::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: calc(var(--borderRadius) + 2px);
    border: 1px solid var(--secondStyleColor);
    opacity: 0;
    animation: hw21Pulse 3s ease-in-out infinite;
  }

  .hw21__step:hover .hw21__icon {
    background: rgba(var(--accent-rgb), 0.1);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(var(--accent-rgb), 0.15);
  }

  .hw21__step:hover .hw21__icon::after {
    opacity: 0.4;
  }

  @keyframes hw21Pulse {
    0%, 100% { transform: scale(1); opacity: 0; }
    50% { transform: scale(1.15); opacity: 0.3; }
  }

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

  .hw21__desc {
    font-size: 14px;
    line-height: 1.65;
    color: color-mix(in srgb, var(--textColor1) 60%, transparent);
    margin: 0;
  }

  /* Connector */
  .hw21__connector {
    flex: 0 0 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 80px;
    position: relative;
  }

  .hw21__connector svg {
    width: 60px;
    height: 2px;
    overflow: visible;
  }

  .hw21__connector line {
    stroke: var(--secondStyleColor);
    stroke-width: 2;
    stroke-dasharray: 6 4;
    opacity: 0.3;
  }

  /* Particles on connector */
  .hw21__particle {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--accent2);
    animation: hw21Flow 2.5s linear infinite;
    opacity: 0;
  }

  .hw21__particle:nth-child(3) {
    animation-delay: -0.8s;
  }

  .hw21__particle:nth-child(4) {
    animation-delay: -1.6s;
  }

  @keyframes hw21Flow {
    0% { left: 0; opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { left: 56px; opacity: 0; }
  }

  /* Responsive */
  @media (max-width: 900px) {
    .hw21__pipeline {
      flex-direction: column;
      align-items: center;
      gap: 12px;
    }

    .hw21__step {
      max-width: 100%;
      display: flex;
      align-items: center;
      text-align: left;
      gap: 18px;
    }

    .hw21__num {
      font-size: 2.5rem;
      min-width: 50px;
    }

    .hw21__icon {
      margin: 0;
      flex-shrink: 0;
    }

    .hw21__info {
      flex: 1;
    }

    .hw21__connector {
      flex: 0 0 40px;
      transform: rotate(90deg);
    }
  }

  @media (max-width: 600px) {
    .hw21 {
      padding: 50px 0;
    }

    .hw21__head {
      margin-bottom: 36px;
    }

    .hw21__head h2 {
      font-size: 24px;
    }

    .hw21__num {
      font-size: 2rem;
      min-width: 40px;
    }

    .hw21__icon {
      width: 48px;
      height: 48px;
      font-size: 1.1rem;
    }

    .hw21__title {
      font-size: 16px;
    }

    .hw21__desc {
      font-size: 13px;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .hw21__step,
    .hw21__icon,
    .hw21__particle {
      transition: none;
      animation: none;
    }

    .hw21__icon::after {
      animation: none;
    }

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



  #top { padding: 80px 0; }
  .tp6-head { text-align: center; margin-bottom: 50px; }
  .tp6-head h2 { margin-bottom: 12px; }
  .tp6-list { display: flex; flex-direction: column; gap: 0; }
  .tp6-list .top-card {
    display: flex; align-items: center; gap: 24px;
    padding: 20px 24px; border-bottom: 1px solid var(--borderSubtle);
    transition: background 0.2s;
  }
  .tp6-list .top-card:first-child { border-top: 1px solid var(--borderSubtle); }
  .tp6-list .top-card:hover { background: rgba(var(--accent-rgb), 0.04); }
  .tp6-list .top-card__rank {
    flex-shrink: 0; font-size: 32px; font-weight: 900; color: var(--accentColor);
    width: 48px; text-align: center; line-height: 1;
  }
  .tp6-list .top-card__logo {
    flex-shrink: 0; width: 110px; height: 52px; border-radius: 8px;
    display: flex; align-items: center; justify-content: center; overflow: hidden;
  }
  .tp6-list .top-card__logo img { max-width: 100%; max-height: 100%; object-fit: contain; }
  .tp6-list .top-card__logo svg { max-width: 100%; max-height: 100%; }
  .tp6-list .top-card__body { flex: 1; min-width: 0; }
  .tp6-list .top-card__body h3 { margin-bottom: 2px; }
  .tp6-list .top-card__body p { color: var(--textSecondary); font-size: 14px; }
  .tp6-list .top-card__right { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
  .tp6-list .top-card__rating {
    padding: 6px 14px; border-radius: 8px;
    background: rgba(var(--accent-rgb), 0.12); color: var(--accentColor);
    font-weight: 700; font-size: 15px;
  }
  .tp6-list .top-card__badge {
    padding: 4px 10px; border-radius: 20px; font-size: 10px; font-weight: 700;
    background: var(--accentColor); color: var(--textColor2); text-transform: uppercase;
  }
  .tp6-list .top-card__badge:empty { display: none; }
  @media (max-width: 768px) {
    .tp6-list .top-card { flex-wrap: wrap; gap: 12px; padding: 16px; }
    .tp6-list .top-card__rank { font-size: 24px; width: 36px; }
    .tp6-list .top-card__right { width: 100%; }
  }



  /* ── Section ── */
  .gl14 {
    position: relative;
    overflow: hidden;
    background: var(--bodyBG);
    padding: 80px 0 60px;
  }

  /* ── Container ── */
  .gl14 .container {
    position: relative;
    z-index: 2;
    max-width: var(--maxWidthContainer);
    margin: 0 auto;
    padding: 0 20px;
  }

  /* ── Film Strip ── */
  .gl14__strip {
    height: 24px;
    background: color-mix(in srgb, var(--bodyBG) 80%, var(--textColor1));
    border-top: 2px solid color-mix(in srgb, var(--secondStyleColor) 15%, transparent);
    border-bottom: 2px solid color-mix(in srgb, var(--secondStyleColor) 15%, transparent);
    display: flex;
    align-items: center;
    overflow: hidden;
    position: relative;
  }

  .gl14__strip::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
      90deg,
      transparent, transparent 28px,
      color-mix(in srgb, var(--secondStyleColor) 8%, transparent) 28px,
      color-mix(in srgb, var(--secondStyleColor) 8%, transparent) 30px,
      transparent 30px, transparent 40px,
      color-mix(in srgb, var(--textColor1) 5%, transparent) 40px,
      color-mix(in srgb, var(--textColor1) 5%, transparent) 44px,
      transparent 44px, transparent 58px
    );
    animation: gl14-film-scroll 12s linear infinite;
  }

  .gl14__strip--bottom {
    margin-top: 40px;
  }

  @keyframes gl14-film-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-58px); }
  }

  .gl14__perf {
    width: 10px;
    height: 8px;
    border-radius: 2px;
    background: color-mix(in srgb, var(--secondStyleColor) 6%, transparent);
    flex-shrink: 0;
    margin: 0 12px;
  }

  /* ── Header ── */
  .gl14__head {
    text-align: center;
    margin-bottom: 50px;
    padding-top: 40px;
  }

  .gl14__head h2 {
    font-size: clamp(32px, 6vw, 56px);
    font-weight: 800;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--textColor1);
    margin: 0;
  }

  /* ── Carousel ── */
  .gl14__carousel {
    position: relative;
    padding: 20px 0;
    perspective: 1200px;
  }

  .gl14__viewport {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 420px;
    position: relative;
  }

  /* ── Slide ── */
  .gl14__slide {
    position: absolute;
    width: 60%;
    max-width: 700px;
    height: 380px;
    border-radius: var(--borderRadius);
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: 1px solid color-mix(in srgb, var(--secondStyleColor) 8%, transparent);
  }

  .gl14__slide[data-pos="-2"] {
    transform: translateX(-110%) scale(0.6) rotateY(20deg);
    opacity: 0.2;
    z-index: 1;
  }

  .gl14__slide[data-pos="-1"] {
    transform: translateX(-62%) scale(0.78) rotateY(12deg);
    opacity: 0.5;
    z-index: 2;
    filter: brightness(0.6);
  }

  .gl14__slide[data-pos="0"] {
    transform: translateX(-50%) scale(1);
    left: 50%;
    opacity: 1;
    z-index: 4;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6),
      0 0 40px color-mix(in srgb, var(--secondStyleColor) 8%, transparent);
    border-color: color-mix(in srgb, var(--secondStyleColor) 20%, transparent);
  }

  .gl14__slide[data-pos="1"] {
    transform: translateX(12%) scale(0.78) rotateY(-12deg);
    opacity: 0.5;
    z-index: 2;
    filter: brightness(0.6);
  }

  .gl14__slide[data-pos="2"] {
    transform: translateX(60%) scale(0.6) rotateY(-20deg);
    opacity: 0.2;
    z-index: 1;
  }

  /* ── Slide Image ── */
  .gl14__img-wrap {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
  }

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

  /* ── Slide Caption ── */
  .gl14__caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    background: linear-gradient(transparent, color-mix(in srgb, var(--bodyBG) 90%, transparent));
    transform: translateY(100%);
    transition: transform 0.4s ease;
    z-index: 5;
  }

  .gl14__slide[data-pos="0"] .gl14__caption {
    transform: translateY(0);
  }

  .gl14__caption h3 {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--textColor1);
    margin: 0 0 4px;
  }

  .gl14__caption p {
    font-size: 14px;
    color: color-mix(in srgb, var(--textColor1) 55%, transparent);
    line-height: 1.6;
    margin: 0;
  }

  /* ── Navigation Arrows ── */
  .gl14__nav {
    position: absolute;
    top: 50%;
    z-index: 10;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid color-mix(in srgb, var(--secondStyleColor) 20%, transparent);
    background: color-mix(in srgb, var(--bodyBG) 80%, transparent);
    color: var(--textColor1);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
  }

  .gl14__nav:hover {
    border-color: var(--secondStyleColor);
    color: var(--secondStyleColor);
    box-shadow: 0 0 20px color-mix(in srgb, var(--secondStyleColor) 20%, transparent);
  }

  .gl14__nav--prev {
    left: 20px;
  }

  .gl14__nav--next {
    right: 20px;
  }

  /* ── Dot Indicators ── */
  .gl14__dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
  }

  .gl14__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1px solid color-mix(in srgb, var(--textColor1) 20%, transparent);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s;
    padding: 0;
  }

  .gl14__dot--active {
    background: var(--secondStyleColor);
    border-color: var(--secondStyleColor);
    box-shadow: 0 0 10px color-mix(in srgb, var(--secondStyleColor) 40%, transparent);
  }

  /* ── Autoplay Bar ── */
  .gl14__autoplay {
    height: 2px;
    background: color-mix(in srgb, var(--secondStyleColor) 15%, transparent);
    margin: 16px auto 0;
    max-width: 200px;
    border-radius: 1px;
    overflow: hidden;
  }

  .gl14__autoplay-fill {
    height: 100%;
    background: var(--secondStyleColor);
    width: 0;
    animation: gl14-auto-fill 5s linear infinite;
  }

  @keyframes gl14-auto-fill {
    0% { width: 0; }
    100% { width: 100%; }
  }

  /* ── Responsive ── */
  @media (max-width: 768px) {
    .gl14 {
      padding: 60px 0 40px;
    }

    .gl14__viewport {
      height: 280px;
    }

    .gl14__slide {
      width: 80%;
      height: 260px;
    }

    .gl14__slide[data-pos="-2"],
    .gl14__slide[data-pos="2"] {
      display: none;
    }

    .gl14__slide[data-pos="-1"] {
      transform: translateX(-55%) scale(0.82);
      opacity: 0.4;
    }

    .gl14__slide[data-pos="1"] {
      transform: translateX(5%) scale(0.82);
      opacity: 0.4;
    }

    .gl14__slide[data-pos="0"] {
      transform: translateX(-50%) scale(1);
    }

    .gl14__nav {
      width: 40px;
      height: 40px;
    }

    .gl14__head h2 {
      letter-spacing: 2px;
    }
  }

  @media (max-width: 480px) {
    .gl14__slide {
      width: 90%;
    }

    .gl14__nav--prev {
      left: 8px;
    }

    .gl14__nav--next {
      right: 8px;
    }
  }

  /* ── Reduced Motion ── */
  @media (prefers-reduced-motion: reduce) {
    .gl14__slide {
      transition: none;
    }

    .gl14__caption {
      transition: none;
    }

    .gl14__strip::before {
      animation: none;
    }

    .gl14__autoplay-fill {
      animation: none;
    }

    .gl14__nav {
      transition: none;
    }
  }



  /* ===== ABOUT v18 — Bento grid with mixed content cells ===== */

  .ab18 {
    padding: clamp(70px, 8vw, 110px) 0;
    color: var(--textColor1);
  }

  .ab18__bento {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: auto;
    gap: 16px;
  }

  /* Cell base */
  .ab18__cell {
    border-radius: var(--borderRadius);
    border: 1px solid color-mix(in srgb, var(--secondStyleColor) 10%, transparent);
    background: rgba(255, 255, 255, 0.025);
    overflow: hidden;
    transition: border-color 0.3s ease;
  }

  .ab18__cell:hover {
    border-color: color-mix(in srgb, var(--secondStyleColor) 32%, transparent);
  }

  /* Hero image — spans 2 cols, 2 rows */
  .ab18__cell--hero {
    grid-column: span 2;
    grid-row: span 2;
    padding: 0;
    aspect-ratio: auto;
  }

  .ab18__cell--hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
  }

  .ab18__cell--hero:hover img {
    transform: scale(1.04);
  }

  /* Intro text — spans 2 cols */
  .ab18__cell--intro {
    grid-column: span 2;
    padding: 30px 26px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
  }

  .ab18__kicker {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--secondStyleColor);
  }

  .ab18__cell--intro h2 {
    margin: 0;
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
  }

  .ab18__cell--intro p {
    margin: 0;
    font-size: 14px;
    line-height: 1.7;
    color: color-mix(in srgb, var(--textColor1) 68%, transparent);
  }

  /* Stat cells */
  .ab18__cell--stat {
    padding: 28px 22px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 4px;
  }

  .ab18__cell--stat strong {
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 800;
    color: var(--secondStyleColor);
    line-height: 1;
  }

  .ab18__cell--stat span {
    font-size: 12px;
    color: color-mix(in srgb, var(--textColor1) 55%, transparent);
    font-weight: 500;
  }

  /* Feature cells */
  .ab18__cell--feat {
    padding: 26px 22px;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .ab18__feat-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: color-mix(in srgb, var(--secondStyleColor) 10%, transparent);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
  }

  .ab18__cell--feat:hover .ab18__feat-icon {
    transform: scale(1.12) rotate(-5deg);
  }

  .ab18__feat-icon i {
    font-size: 17px;
    color: var(--secondStyleColor);
  }

  .ab18__cell--feat h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
  }

  .ab18__cell--feat p {
    margin: 0;
    font-size: 13px;
    line-height: 1.6;
    color: color-mix(in srgb, var(--textColor1) 65%, transparent);
  }

  /* Image cell 2 */
  .ab18__cell--img2 {
    padding: 0;
    grid-column: span 2;
    aspect-ratio: 16 / 7;
  }

  .ab18__cell--img2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
  }

  .ab18__cell--img2:hover img {
    transform: scale(1.04);
  }

  /* Quote cell */
  .ab18__cell--quote {
    grid-column: span 2;
    padding: 28px 26px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 14px;
  }

  .ab18__quote-svg {
    width: 36px;
    height: auto;
    color: color-mix(in srgb, var(--secondStyleColor) 20%, transparent);
  }

  .ab18__cell--quote p {
    margin: 0;
    font-size: 17px;
    font-weight: 500;
    font-style: italic;
    line-height: 1.6;
    color: color-mix(in srgb, var(--textColor1) 80%, transparent);
  }

  /* Responsive */
  @media (max-width: 950px) {
    .ab18__bento {
      grid-template-columns: repeat(2, 1fr);
    }

    .ab18__cell--hero {
      grid-column: span 2;
      grid-row: span 1;
      aspect-ratio: 16 / 9;
    }

    .ab18__cell--img2 {
      grid-column: span 2;
    }

    .ab18__cell--quote {
      grid-column: span 2;
    }
  }

  @media (max-width: 800px) {
    .ab18__cell--intro h2 {
      font-size: 22px;
    }

    .ab18__cell--intro p {
      font-size: 13px;
    }

    .ab18__cell--quote p {
      font-size: 15px;
    }

    .ab18__cell--feat h3 {
      font-size: 15px;
    }
  }

  @media (max-width: 600px) {
    .ab18 {
      padding: 50px 0;
    }

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

    .ab18__cell--hero,
    .ab18__cell--intro,
    .ab18__cell--img2,
    .ab18__cell--quote {
      grid-column: span 1;
    }

    .ab18__cell--hero {
      aspect-ratio: 16 / 10;
    }

    .ab18__cell--img2 {
      aspect-ratio: 16 / 9;
    }

    .ab18__cell--stat {
      padding: 22px 18px;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .ab18__cell,
    .ab18__feat-icon,
    .ab18__cell--hero img,
    .ab18__cell--img2 img {
      transition: none;
    }
  }



  /* ===== PARTNERS v7 — Hexagonal showcase ===== */

  .pt7 {
    padding: clamp(60px, 7vw, 100px) 0;
    color: var(--textColor1);
  }

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

  .pt7__head h2 {
    margin: 0 0 14px;
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    letter-spacing: -0.02em;
  }

  .pt7__head p {
    margin: 0;
    line-height: 1.65;
    color: color-mix(in srgb, var(--textColor1) 70%, transparent);
  }

  .pt7__stage {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 36px;
  }

  /* Hexagonal container */
  .pt7__hex {
    position: relative;
    width: min(300px, 70vw);
    aspect-ratio: 1 / 1.15;
  }

  .pt7__hex-glow {
    position: absolute;
    inset: -20px;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    background: var(--secondStyleColor);
    opacity: 0.08;
    filter: blur(20px);
    animation: pt7Glow 3s ease-in-out infinite alternate;
  }

  @keyframes pt7Glow {
    0% { opacity: 0.06; }
    100% { opacity: 0.14; }
  }

  .pt7__hex-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    background: linear-gradient(
      160deg,
      rgba(255, 255, 255, 0.06),
      rgba(255, 255, 255, 0.02)
    );
    border: none;
    transition: transform 0.3s ease;
  }

  .pt7__hex-inner::before {
    content: "";
    position: absolute;
    inset: 2px;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    background: var(--bodyBG);
    z-index: 0;
  }

  .pt7__hex-inner:hover {
    transform: scale(1.04);
  }

  .pt7__hex-inner img {
    position: relative;
    z-index: 1;
    max-width: 55%;
    height: auto;
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.35));
  }

  /* Connecting lines */
  .pt7__lines {
    display: flex;
    gap: 40px;
  }

  .pt7__line {
    width: 1px;
    height: 40px;
    background: linear-gradient(
      180deg,
      var(--secondStyleColor),
      transparent
    );
    opacity: 0.4;
  }

  .pt7__line--1 { animation: pt7Blink 2s ease infinite 0s; }
  .pt7__line--2 { animation: pt7Blink 2s ease infinite 0.4s; }
  .pt7__line--3 { animation: pt7Blink 2s ease infinite 0.8s; }

  @keyframes pt7Blink {
    0%, 100% { opacity: 0.2; }
    50% { opacity: 0.7; }
  }

  /* Badges */
  .pt7__badges {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .pt7__badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 999px;
    border: 1px solid color-mix(in srgb, var(--secondStyleColor) 22%, transparent);
    background: rgba(255, 255, 255, 0.03);
    font-size: 13px;
    font-weight: 500;
    color: color-mix(in srgb, var(--textColor1) 80%, transparent);
    transition: border-color 0.3s ease;
  }

  .pt7__badge:hover {
    border-color: color-mix(in srgb, var(--secondStyleColor) 50%, transparent);
  }

  .pt7__badge i {
    color: var(--secondStyleColor);
    font-size: 14px;
  }

  /* Responsive */
  @media (max-width: 800px) {
    .pt7__hex {
      width: min(240px, 65vw);
    }

    .pt7__badge {
      padding: 8px 14px;
      font-size: 12px;
    }
  }

  @media (max-width: 600px) {
    .pt7 {
      padding: 50px 0;
    }

    .pt7__head {
      margin-bottom: 36px;
    }

    .pt7__head h2 {
      font-size: 24px;
    }

    .pt7__hex {
      width: min(200px, 60vw);
    }

    .pt7__badges {
      gap: 10px;
    }

    .pt7__badge {
      padding: 7px 12px;
      font-size: 11px;
    }

    .pt7__lines {
      gap: 28px;
    }

    .pt7__line {
      height: 28px;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .pt7__hex-glow,
    .pt7__line {
      animation: none;
    }
    .pt7__hex-inner,
    .pt7__badge {
      transition: none;
    }
  }



.feat21{
  position:relative;
  padding:8rem 2rem;
  overflow:hidden;
  background:var(--bodyBG);
}

.feat21__glow{
  position:absolute;
  width:70vw;height:70vw;
  top:50%;left:50%;
  transform:translate(-50%,-50%);
  background:radial-gradient(circle,rgba(var(--accent-rgb),.04),transparent 60%);
  pointer-events:none;
  z-index:0;
}

.feat21__container{position:relative;z-index:1;max-width:1100px}

.feat21__header{text-align:center;margin-bottom:4rem}
.feat21__badge{
  display:inline-flex;align-items:center;gap:.5rem;
  padding:.4rem 1.1rem;
  border:1px solid var(--borderSubtle);
  border-radius:100px;
  font-size:.7rem;font-weight:500;
  letter-spacing:.1em;text-transform:uppercase;
  color:var(--secondStyleColor);
  margin-bottom:1.5rem;
  backdrop-filter:blur(10px);
  background:rgba(255,255,255,.02);
}
.feat21 h2{color:var(--textColor1);margin-bottom:1rem}
.feat21 h2 em{font-style:italic;color:var(--secondStyleColor)}
.feat21__subtitle{
  font-size:.95rem;
  color:var(--textMuted);
  max-width:500px;margin:0 auto;
  line-height:1.7;
}

.feat21__bento{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:1.2rem;
}

.feat21__item{
  background:var(--bgCard);
  border:1px solid var(--borderSubtle);
  border-radius:var(--borderRadius);
  padding:2rem;
  position:relative;
  overflow:hidden;
  opacity:0;transform:scale(.95);
  transition:all .5s cubic-bezier(.4,0,.2,1);
}
.feat21__item.visible{opacity:1;transform:scale(1)}
.feat21__item:hover{
  border-color:var(--secondStyleColor);
  box-shadow:0 0 40px rgba(0,0,0,.15);
}

.feat21__item--wide{grid-column:span 2}
.feat21__item--tall{grid-row:span 2;display:flex;flex-direction:column;justify-content:space-between}

.feat21__item::after{
  content:'';position:absolute;inset:0;
  border-radius:var(--borderRadius);
  opacity:0;transition:opacity .4s;
  pointer-events:none;
}
.feat21__item:hover::after{opacity:1}
.feat21__item:nth-child(1)::after{background:radial-gradient(circle at 30% 30%,rgba(var(--accent-rgb),.05),transparent 60%)}
.feat21__item:nth-child(2)::after{background:radial-gradient(circle at 50% 50%,rgba(var(--accent2-rgb),.05),transparent 60%)}
.feat21__item:nth-child(3)::after{background:radial-gradient(circle at 70% 30%,rgba(var(--accent3-rgb),.05),transparent 60%)}
.feat21__item:nth-child(4)::after{background:radial-gradient(circle at 30% 70%,rgba(var(--accent-rgb),.05),transparent 60%)}
.feat21__item:nth-child(5)::after{background:radial-gradient(circle at 50% 50%,rgba(var(--accent2-rgb),.05),transparent 60%)}

.feat21__icon{
  width:44px;height:44px;
  display:flex;align-items:center;justify-content:center;
  border-radius:12px;
  font-size:1.1rem;
  margin-bottom:1.5rem;
  position:relative;z-index:1;
}
.feat21__icon--1{background:rgba(var(--accent-rgb),.1);color:var(--secondStyleColor)}
.feat21__icon--2{background:rgba(var(--accent2-rgb),.1);color:var(--accent2)}
.feat21__icon--3{background:rgba(var(--accent3-rgb),.1);color:var(--accent3)}
.feat21__icon--4{background:rgba(var(--accent-rgb),.1);color:var(--secondStyleColor)}

.feat21__item h3{color:var(--textColor1);margin-bottom:.6rem;position:relative;z-index:1}
.feat21__item > p,
.feat21__item > div > p{color:var(--textSecondary);font-size:.85rem;line-height:1.7;position:relative;z-index:1}

.feat21__dots{
  margin-top:2rem;
  display:flex;gap:.5rem;flex-wrap:wrap;
}
.feat21__dot{
  width:8px;height:8px;
  border-radius:50%;
  opacity:.2;
  animation:feat21pulse 3s ease-in-out infinite;
}
.feat21__dot:nth-child(odd){background:var(--secondStyleColor)}
.feat21__dot:nth-child(even){background:var(--accent2)}
.feat21__dot:nth-child(1){animation-delay:0s}
.feat21__dot:nth-child(2){animation-delay:.2s}
.feat21__dot:nth-child(3){animation-delay:.4s}
.feat21__dot:nth-child(4){animation-delay:.6s}
.feat21__dot:nth-child(5){animation-delay:.8s}
.feat21__dot:nth-child(6){animation-delay:1s}
.feat21__dot:nth-child(7){animation-delay:1.2s}
.feat21__dot:nth-child(8){animation-delay:1.4s}
.feat21__dot:nth-child(9){animation-delay:1.6s}

@keyframes feat21pulse{
  0%,100%{opacity:.15;transform:scale(1)}
  50%{opacity:.5;transform:scale(1.5)}
}

.feat21__bars{
  display:flex;align-items:flex-end;gap:6px;
  height:60px;margin-top:1.5rem;
}
.feat21__bar{
  flex:1;
  border-radius:3px 3px 0 0;
  animation:feat21barGrow 1s ease forwards;
  transform-origin:bottom;
  transform:scaleY(0);
}
.feat21__bar:nth-child(odd){background:var(--accent2)}
.feat21__bar:nth-child(even){background:var(--secondStyleColor);opacity:.4}

@keyframes feat21barGrow{to{transform:scaleY(1)}}

@media(max-width:768px){
  .feat21__bento{grid-template-columns:1fr}
  .feat21__item--wide,.feat21__item--tall{grid-column:auto;grid-row:auto}
}

@media(prefers-reduced-motion:reduce){
  .feat21__item,
  .feat21__dot,
  .feat21__bar{animation:none!important;opacity:1;transform:none}
  .feat21__bar{transform:scaleY(1)}
}



  #slots { padding: 80px 0; }
  .sl16-head { text-align: center; margin-bottom: 50px; }
  .sl16-head h2 { margin-bottom: 12px; }
  .sl16-head p { color: var(--textSecondary); max-width: 550px; margin: 0 auto; }
  .sl16-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .sl16-grid .slot-card {
    background: var(--cardBG);
    border-radius: var(--borderRadius);
    overflow: hidden;
    position: relative;
    border: 1px solid transparent;
    transition: border-color 0.4s;
  }
  .sl16-grid .slot-card:hover { border-color: var(--accentColor); }
  .sl16-grid .slot-card__img {
    aspect-ratio: 16/10;
    overflow: hidden;
    position: relative;
  }
  .sl16-grid .slot-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94), filter 0.6s;
  }
  .sl16-grid .slot-card:hover .slot-card__img img {
    transform: scale(1.12);
    filter: brightness(0.7);
  }
  .sl16-grid .slot-card__body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(0deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 60%, transparent 100%);
    transform: translateY(20px);
    opacity: 0;
    transition: transform 0.4s ease, opacity 0.4s ease;
  }
  .sl16-grid .slot-card:hover .slot-card__body {
    transform: translateY(0);
    opacity: 1;
  }
  .sl16-grid .slot-card__body h3 { font-size: 17px; color: #fff; margin-bottom: 4px; }
  .sl16-grid .slot-card__body p { font-size: 13px; color: rgba(255,255,255,0.7); }
  .sl16-grid .slot-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--borderRadius);
    background: radial-gradient(circle at 50% 50%, var(--accentColor), transparent 70%);
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
    mix-blend-mode: overlay;
  }
  .sl16-grid .slot-card:hover::after { opacity: 0.3; }
  @media (max-width: 900px) { .sl16-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 600px) { .sl16-grid { grid-template-columns: 1fr; } }



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

  .faq--builder .container {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, 1.2fr);
    gap: clamp(24px, 4vw, 56px);
    align-items: stretch;
  }

  .faqContent {
    width: 100%;
  }

  .faqContent h2 {
    margin: 0 0 12px 0;
  }

  .faqLead {
    margin: 0 0 28px 0;
    color: var(--textColor1);
    opacity: 0.9;
    max-width: 70ch;
  }

  .containerFAQ {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .accord__item {
    border: 1px dotted
      color-mix(in srgb, var(--secondStyleColor) 55%, transparent);
    border-radius: calc(var(--borderRadius) * 0.75);
    overflow: clip;
    transition:
      border-color 0.25s ease,
      background-color 0.25s ease,
      transform 0.25s ease;
  }

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

  .accord__trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 20px;
    background: transparent;
    border: 0;
    cursor: pointer;
    text-align: left;
    color: var(--textColor1);
  }

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

  .accord__title {
    font-size: clamp(16px, 1.6vw, 19px);
    font-weight: 700;
    line-height: 1.35;
  }

  .accord__icon {
    flex: 0 0 auto;
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    font-weight: 900;
    font-size: 20px;
    color: var(--secondStyleColor);
    background: color-mix(in srgb, var(--secondStyleColor) 14%, transparent);
    border: 1px solid
      color-mix(in srgb, var(--secondStyleColor) 35%, transparent);
  }

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

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

  .accord__panel.show {
    opacity: 1;
    padding-top: 2px;
  }

  .faqImageWrap {
    display: block;
    height: 100%;
  }

  .faqImagePlaceholder {
    width: 100%;
    height: 785px;
    min-height: 320px;
    border-radius: var(--borderRadius);
    border: 1px dashed
      color-mix(in srgb, var(--secondStyleColor) 65%, transparent);
    background:
      radial-gradient(
        120% 120% at 100% 0%,
        color-mix(in srgb, var(--secondStyleColor) 18%, transparent) 0%,
        transparent 55%
      ),
      linear-gradient(
        135deg,
        color-mix(in srgb, var(--mainStyleColor) 12%, transparent),
        transparent 60%
      );
    padding: 12px;
  }

  .faqImagePlaceholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 20%;
    border-radius: var(--borderRadius);
  }

  @media (max-width: 980px) {
    .faq--builder .container {
      grid-template-columns: 1fr;
      && h2 {
        text-align: center;
      }
    }

    .faqImageWrap {
      order: -1;
    }
  }

  @media (max-width: 640px) {
    .accord__trigger {
      padding: 16px 16px;
    }

    .accord__panel {
      padding: 0 16px;
    }

    .faqLead {
      margin-bottom: 22px;
    }

    .faqImageWrap {
      display: none;
    }
  }



  .ft8 {
    position: relative;
    padding: 0 20px 28px;
    color: var(--textColor1);
    overflow: hidden;
  }

  /* ── Animated Top Border ── */
  .ft8__border {
    height: 3px;
    background: linear-gradient(
      90deg,
      var(--secondStyleColor),
      var(--accent2),
      var(--secondStyleColor),
      var(--accent2),
      var(--secondStyleColor)
    );
    background-size: 300% 100%;
    animation: ft8BorderFlow 6s linear infinite;
    margin-bottom: 48px;
  }

  @keyframes ft8BorderFlow {
    0% { background-position: 0% 50%; }
    100% { background-position: 300% 50%; }
  }

  /* ── Container ── */
  .ft8 .container {
    position: relative;
    z-index: 1;
    max-width: var(--maxWidthContainer);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  /* ── Logo ── */
  .ft8__logo {
    text-decoration: none;
    font-weight: 800;
    font-size: 26px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 14px;
    background: linear-gradient(135deg, var(--secondStyleColor), var(--accent2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: opacity 0.25s ease;
  }

  .ft8__logo:hover {
    opacity: 0.8;
  }


  /* ── Divider ── */
  .ft8__divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--secondStyleColor), var(--accent2));
    border-radius: 2px;
    margin-bottom: 28px;
    animation: ft8DividerPulse 3s ease-in-out infinite;
  }

  @keyframes ft8DividerPulse {
    0%, 100% { width: 60px; opacity: 0.6; }
    50% { width: 100px; opacity: 1; }
  }

  /* ── Navigation ── */
  .ft8__nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 28px;
    max-width: 600px;
    margin-bottom: 28px;
  }

  .ft8__nav a {
    position: relative;
    color: color-mix(in srgb, var(--textColor1) 60%, transparent);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: color 0.2s ease;
  }

  .ft8__nav a::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 1.5px;
    background: linear-gradient(90deg, var(--secondStyleColor), var(--accent2));
    border-radius: 1px;
    transform: scaleX(0);
    transition: transform 0.25s ease;
  }

  .ft8__nav a:hover {
    color: var(--textColor1);
  }

  .ft8__nav a:hover::after {
    transform: scaleX(1);
  }

  /* ── Social ── */
  .ft8__social {
    display: flex;
    gap: 14px;
    margin-bottom: 32px;
  }

  .ft8__social a {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: color-mix(in srgb, var(--textColor1) 5%, transparent);
    border: 1px solid color-mix(in srgb, var(--textColor1) 10%, transparent);
    color: color-mix(in srgb, var(--textColor1) 60%, transparent);
    text-decoration: none;
    font-size: 16px;
    transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  }

  .ft8__social a:hover {
    color: var(--secondStyleColor);
    border-color: var(--secondStyleColor);
    background: color-mix(in srgb, var(--secondStyleColor) 10%, transparent);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 4px 16px color-mix(in srgb, var(--secondStyleColor) 20%, transparent);
  }

  /* ── Bottom ── */
  .ft8__bottom {
    display: flex;
    align-items: center;
  }

  .ft8__copy {
    font-size: 12px;
    color: color-mix(in srgb, var(--textColor1) 40%, transparent);
    margin: 0;
  }

  /* ── Responsive ── */
  @media (max-width: 800px) {
    .ft8__border {
      margin-bottom: 36px;
    }

    .ft8__nav {
      gap: 20px;
    }
  }

  @media (max-width: 600px) {
    .ft8 {
      padding: 0 16px 20px;
    }

    .ft8__border {
      margin-bottom: 32px;
    }

    .ft8__logo {
      font-size: 22px;
    }

    .ft8__nav {
      gap: 16px;
    }

    .ft8__nav a {
      font-size: 12px;
    }

    .ft8__social a {
      width: 38px;
      height: 38px;
      font-size: 14px;
    }

    .ft8__social {
      gap: 10px;
    }
  }

  /* ── Reduced Motion ── */
  @media (prefers-reduced-motion: reduce) {
    .ft8__border {
      animation: none;
    }

    .ft8__divider {
      animation: none;
    }

    .ft8__social a,
    .ft8__nav a,
    .ft8__nav a::after,
    .ft8__logo {
      transition: none;
    }
  }



[data-aos]{opacity:0;transition:opacity 0.6s ease,transform 0.6s ease}
[data-aos="fade-up"]{transform:translateY(30px)}
[data-aos="fade-in"]{transform:none}
[data-aos="slide-left"]{transform:translateX(-30px)}
[data-aos="slide-right"]{transform:translateX(30px)}
[data-aos].aos-visible{opacity:1;transform:none}