
:root {
  --bg: #121212;
  --bg-card: #1e1e1e;
  --text: #e0e0e0;
  --text-muted: rgba(255,255,255,0.5);
  --accent: #f1c40f;
  --accent-rgb: 241,196,15;
  --accent2: #0ff12d;
  --accent2-rgb: 15,241,45;
  --accent3: #f2272e;
  --accent3-rgb: 242,39,46;
  --border: rgba(255,255,255,0.08);
  --radius: 12px;
  --font: 'Inter', sans-serif;
  --font-heading: 'Inter', sans-serif;
  --bodyBG: #121212;
  --textColor1: #e0e0e0;
  --textColor2: #111111;
  --textSecondary: #adadad;
  --textMuted: #797979;
  --secondStyleColor: #f1c40f;
  --bgCard: #1e1e1e;
  --bgAlt: #222222;
  --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;
}
.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; }


  /* ===== HEADER v7 — Split header + marquee topbar + sliding indicator ===== */

  .hd7 {
    position: sticky;
    top: 0;
    z-index: 100;
  }

  /* Top marquee bar */
  .hd7__topbar {
    background: color-mix(in srgb, var(--secondStyleColor) 10%, transparent);
    border-bottom: 1px solid color-mix(in srgb, var(--secondStyleColor) 15%, transparent);
    overflow: hidden;
    height: 32px;
    display: flex;
    align-items: center;
    transition: height 0.3s ease, opacity 0.3s ease;
  }

  .hd7.scrolled .hd7__topbar {
    height: 0;
    opacity: 0;
    border-bottom: none;
  }

  .hd7__marquee {
    width: 100%;
    overflow: hidden;
    position: relative;
  }

  .hd7__marquee-track {
    display: inline-flex;
    align-items: center;
    gap: 24px;
    white-space: nowrap;
    animation: hd7-marquee 20s linear infinite;
  }

  .hd7__marquee-item {
    font-size: 12px;
    font-weight: 600;
    color: color-mix(in srgb, var(--textColor1) 80%, transparent);
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }

  .hd7__marquee-sep {
    color: var(--secondStyleColor);
    font-size: 10px;
  }

  @keyframes hd7-marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }

  /* Main header bar */
  .hd7__main {
    position: relative;
    background: color-mix(in srgb, var(--bodyBG) 88%, transparent);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
  }

  .hd7__wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    gap: 24px;
  }

  /* Animated gradient border */
  .hd7__border {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(
      90deg,
      var(--secondStyleColor),
      var(--accent2),
      var(--secondStyleColor),
      var(--accent2)
    );
    background-size: 300% 100%;
    animation: hd7-border-shift 4s linear infinite;
  }

  @keyframes hd7-border-shift {
    0% { background-position: 0% 0; }
    100% { background-position: 300% 0; }
  }

  /* Logo */
  .hd7__logo {
    font-size: 22px;
    font-weight: 800;
    color: var(--textColor1);
    text-decoration: none;
    letter-spacing: -0.02em;
    flex-shrink: 0;
    z-index: 110;
  }

  /* Desktop nav with indicator */
  .hd7__nav {
    position: relative;
    display: flex;
    align-items: center;
  }

  .hd7__nav ul {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .hd7__nav .hd7__link {
    display: block;
    padding: 8px 18px;
    font-size: 13px;
    font-weight: 600;
    color: color-mix(in srgb, var(--textColor1) 65%, transparent);
    text-decoration: none;
    position: relative;
    transition: color 0.2s ease;
  }

  .hd7__nav .hd7__link:hover {
    color: var(--textColor1);
  }

  /* Sliding indicator line */
  .hd7__indicator {
    position: absolute;
    bottom: -2px;
    left: 0;
    height: 2px;
    background: var(--secondStyleColor);
    border-radius: 2px;
    transition: left 0.3s cubic-bezier(0.23, 1, 0.32, 1),
                width 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    width: 0;
    pointer-events: none;
  }

  /* CTA button — outline + ripple */
  .hd7__cta {
    position: relative;
    padding: 10px 22px;
    border-radius: var(--borderRadius);
    border: 1.5px solid var(--secondStyleColor);
    background: transparent;
    color: var(--secondStyleColor);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    flex-shrink: 0;
    overflow: hidden;
    transition: color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
  }

  .hd7__cta-text {
    position: relative;
    z-index: 2;
  }

  .hd7__cta-ripple {
    position: absolute;
    inset: 0;
    background: var(--secondStyleColor);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: 1;
  }

  .hd7__cta:hover {
    color: var(--bodyBG);
    box-shadow: 0 4px 16px color-mix(in srgb, var(--secondStyleColor) 25%, transparent);
  }

  .hd7__cta:hover .hd7__cta-ripple {
    transform: scaleX(1);
  }

  /* Burger — hidden on desktop */
  .hd7__burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 38px;
    height: 38px;
    padding: 9px;
    background: none;
    border: 1px solid color-mix(in srgb, var(--secondStyleColor) 25%, transparent);
    border-radius: 10px;
    cursor: pointer;
    z-index: 110;
    transition: border-color 0.25s ease;
  }

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

  .hd7__burger-line {
    display: block;
    width: 100%;
    height: 2px;
    border-radius: 2px;
    background: var(--textColor1);
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform-origin: center;
  }

  .hd7__burger.active .hd7__burger-line:first-child {
    transform: translateY(7px) rotate(45deg);
  }

  .hd7__burger.active .hd7__burger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }

  .hd7__burger.active .hd7__burger-line:last-child {
    transform: translateY(-7px) rotate(-45deg);
  }

  /* Mobile overlay — clip-path circle */
  .hd7__mobile {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100dvh;
    background: var(--bodyBG);
    z-index: 105;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 36px;
    clip-path: circle(0% at calc(100% - 40px) 60px);
    transition: clip-path 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    pointer-events: none;
  }

  .hd7__mobile.active {
    clip-path: circle(150% at calc(100% - 40px) 60px);
    pointer-events: auto;
  }

  .hd7__mobile ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .hd7__mobile .hd7__link {
    font-size: 22px;
    font-weight: 600;
    color: var(--textColor1);
    text-decoration: none;
    transition: color 0.2s ease;
  }

  .hd7__mobile .hd7__link:hover {
    color: var(--secondStyleColor);
  }

  .hd7__mobile-cta {
    padding: 14px 32px;
    border-radius: var(--borderRadius);
    border: 1.5px solid var(--secondStyleColor);
    background: var(--secondStyleColor);
    color: var(--bodyBG);
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
  }

  .stopScroll {
    overflow: hidden;
  }

  /* Responsive */
  @media (max-width: 800px) {
    .hd7__nav {
      display: none;
    }

    .hd7__cta {
      display: none;
    }

    .hd7__burger {
      display: flex;
    }

    .hd7__topbar {
      height: 28px;
    }

    .hd7__marquee-item {
      font-size: 11px;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .hd7__topbar,
    .hd7__mobile,
    .hd7__burger-line,
    .hd7__burger,
    .hd7__cta,
    .hd7__cta-ripple,
    .hd7__nav .hd7__link,
    .hd7__indicator {
      transition: none;
    }

    .hd7__marquee-track {
      animation: none;
    }

    .hd7__border {
      animation: none;
    }
  }



  /* ── Section ── */
  .hr29 {
    position: relative;
    min-height: 750px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--bodyBG);
    padding: 100px 20px;
  }

  /* ── Gradient Mesh Blobs ── */
  .hr29__mesh {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
  }

  .hr29__blob {
    position: absolute;
    border-radius: 50%;
    background: var(--secondStyleColor);
    will-change: transform;
    contain: layout paint;
  }

  .hr29__blob--a {
    width: 550px;
    height: 550px;
    top: -15%;
    left: -10%;
    opacity: 0.25;
    filter: blur(100px);
    animation: hr29-dA 22s ease-in-out infinite;
  }

  .hr29__blob--b {
    width: 420px;
    height: 420px;
    top: -5%;
    right: -8%;
    opacity: 0.2;
    filter: blur(90px) hue-rotate(45deg);
    animation: hr29-dB 26s ease-in-out infinite;
  }

  .hr29__blob--c {
    width: 480px;
    height: 480px;
    bottom: -20%;
    left: 30%;
    opacity: 0.22;
    filter: blur(110px) hue-rotate(-40deg);
    animation: hr29-dC 20s ease-in-out infinite;
  }

  .hr29__blob--d {
    width: 320px;
    height: 320px;
    top: 35%;
    right: 15%;
    opacity: 0.28;
    filter: blur(80px) hue-rotate(90deg);
    animation: hr29-dD 18s ease-in-out infinite;
  }

  .hr29__blob--e {
    width: 380px;
    height: 380px;
    bottom: -10%;
    left: -5%;
    opacity: 0.18;
    filter: blur(95px) hue-rotate(160deg);
    animation: hr29-dE 28s ease-in-out infinite;
  }

  @keyframes hr29-dA {
    0%,
    100% {
      transform: translate(0, 0) scale(1);
    }
    25% {
      transform: translate(80px, 60px) scale(1.08);
    }
    50% {
      transform: translate(40px, 120px) scale(0.95);
    }
    75% {
      transform: translate(-30px, 70px) scale(1.04);
    }
  }

  @keyframes hr29-dB {
    0%,
    100% {
      transform: translate(0, 0) scale(1);
    }
    25% {
      transform: translate(-70px, 50px) scale(0.92);
    }
    50% {
      transform: translate(-110px, -20px) scale(1.1);
    }
    75% {
      transform: translate(30px, -50px) scale(1);
    }
  }

  @keyframes hr29-dC {
    0%,
    100% {
      transform: translate(0, 0) scale(1);
    }
    33% {
      transform: translate(60px, -80px) scale(1.06);
    }
    66% {
      transform: translate(-50px, -40px) scale(0.94);
    }
  }

  @keyframes hr29-dD {
    0%,
    100% {
      transform: translate(0, 0) scale(1);
    }
    25% {
      transform: translate(-40px, 30px) scale(1.12);
    }
    50% {
      transform: translate(20px, -50px) scale(0.88);
    }
    75% {
      transform: translate(50px, 20px) scale(1.05);
    }
  }

  @keyframes hr29-dE {
    0%,
    100% {
      transform: translate(0, 0) scale(1);
    }
    30% {
      transform: translate(90px, -30px) scale(1.1);
    }
    60% {
      transform: translate(50px, 50px) scale(0.9);
    }
  }

  /* ── Dot Grid Overlay ── */
  .hr29__dots {
    position: absolute;
    inset: 0;
    z-index: 1;
    background-image: radial-gradient(
      circle,
      color-mix(in srgb, var(--textColor1) 6%, transparent) 1px,
      transparent 1px
    );
    background-size: 32px 32px;
    pointer-events: none;
  }

  /* ── Floating SVG UI Shapes ── */
  .hr29__shapes {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
  }

  .hr29__sh {
    animation: hr29-fade 8s ease-in-out infinite;
  }

  .hr29__sh:nth-child(2) {
    animation-duration: 6s;
    animation-delay: -2s;
  }
  .hr29__sh:nth-child(3) {
    animation-duration: 10s;
    animation-delay: -4s;
  }
  .hr29__sh:nth-child(4) {
    animation-duration: 7s;
    animation-delay: -1s;
  }
  .hr29__sh:nth-child(5) {
    animation-duration: 9s;
    animation-delay: -6s;
  }
  .hr29__sh:nth-child(6) {
    animation-duration: 11s;
    animation-delay: -3s;
  }

  @keyframes hr29-fade {
    0%,
    100% {
      opacity: 0.08;
    }
    50% {
      opacity: 0.16;
    }
  }

  .hr29__sh rect,
  .hr29__sh circle,
  .hr29__sh line,
  .hr29__sh polygon {
    fill: none;
    stroke: var(--secondStyleColor);
    stroke-width: 1.5;
  }

  /* ── Center Glow ── */
  .hr29__glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 900px;
    height: 700px;
    transform: translate(-50%, -50%);
    background:
      radial-gradient(
        ellipse,
        color-mix(in srgb, var(--secondStyleColor) 6%, transparent) 0%,
        transparent 50%
      ),
      radial-gradient(
        ellipse,
        color-mix(in srgb, var(--bodyBG) 70%, transparent) 0%,
        transparent 70%
      );
    z-index: 3;
    pointer-events: none;
  }

  /* ── Content ── */
  .hr29 .container {
    position: relative;
    max-width: var(--maxWidthContainer);
    width: 100%;
    z-index: 5;
  }

  .hr29__content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
  }

  .hr29__kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border-radius: 100px;
    background: color-mix(in srgb, var(--secondStyleColor) 12%, transparent);
    border: 1px solid
      color-mix(in srgb, var(--secondStyleColor) 25%, transparent);
    color: var(--secondStyleColor);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    margin-bottom: 28px;
  }

  .hr29__kicker i {
    font-size: 11px;
  }

  .hr29__content h1 {
    font-size: clamp(32px, 5vw, 60px);
    font-weight: 800;
    color: var(--textColor1);
    line-height: 1.1;
    margin: 0 0 20px;
    letter-spacing: -0.02em;
  }

  .hr29__sub {
    font-size: clamp(16px, 1.8vw, 19px);
    color: color-mix(in srgb, var(--textColor1) 65%, transparent);
    line-height: 1.65;
    max-width: 560px;
    margin: 0 auto 36px;
  }

  /* ── Buttons ── */
  .hr29__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
  }

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

  .hr29__btn--fill {
    background: var(--secondStyleColor);
    color: var(--textColor2);
  }

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

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

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

  .hr29__btn--line {
    background: transparent;
    color: var(--textColor1);
    border: 1px solid color-mix(in srgb, var(--textColor1) 20%, transparent);
  }

  .hr29__btn--line:hover {
    border-color: color-mix(in srgb, var(--textColor1) 40%, transparent);
    background: color-mix(in srgb, var(--textColor1) 5%, transparent);
    transform: translateY(-2px);
  }

  .hr29__btn--line i {
    font-size: 11px;
  }

  /* ── Stats ── */
  .hr29__stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
  }

  .hr29__stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  .hr29__stat strong {
    font-size: clamp(22px, 2.5vw, 30px);
    font-weight: 800;
    color: var(--textColor1);
  }

  .hr29__stat span {
    font-size: 13px;
    color: color-mix(in srgb, var(--textColor1) 50%, transparent);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
  }

  .hr29__stat-sep {
    width: 1px;
    height: 36px;
    background: color-mix(in srgb, var(--textColor1) 12%, transparent);
  }

  /* ── Responsive ── */
  @media (max-width: 950px) {
    .hr29 {
      padding: 80px 20px;
    }
    .hr29__blob--a {
      width: 400px;
      height: 400px;
    }
    .hr29__blob--b {
      width: 320px;
      height: 320px;
    }
    .hr29__blob--c {
      width: 380px;
      height: 380px;
    }
    .hr29__blob--d {
      width: 250px;
      height: 250px;
    }
    .hr29__blob--e {
      width: 300px;
      height: 300px;
    }
  }

  @media (max-width: 800px) {
    .hr29__glow {
      width: 600px;
      height: 500px;
    }
  }

  @media (max-width: 600px) {
    .hr29 {
      padding: 60px 16px;
      min-height: 700px;
    }
    .hr29__kicker {
      font-size: 11px;
      padding: 6px 14px;
    }
    .hr29__actions {
      flex-direction: column;
      gap: 12px;
    }
    .hr29__btn {
      width: 100%;
      justify-content: center;
      padding: 14px 24px;
    }
    .hr29__stats {
      gap: 20px;
    }
    .hr29__stat-sep {
      height: 28px;
    }
    .hr29__stat strong {
      font-size: 22px;
    }
    .hr29__shapes {
      display: none;
    }
    .hr29__dots {
      background-size: 24px 24px;
    }
    .hr29__glow {
      width: 100%;
      height: 100%;
    }
  }

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



  :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: 10px;
    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 16px;
    border-radius: 12px;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -ms-border-radius: 12px;
    -o-border-radius: 12px;
    background-color: var(--itemBgColor);
    border: 1.5px solid color-mix(in srgb, var(--secondStyleColor) 25%, transparent);
    overflow: hidden;
    z-index: 0;
    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 a::before {
    content: counter(toc-counter, decimal-leading-zero);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
    height: 32px;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    color: var(--textColor2);
    background: var(--secondStyleColor);
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    -webkit-transition: transform 0.3s ease;
    -moz-transition: transform 0.3s ease;
    -ms-transition: transform 0.3s ease;
    -o-transition: transform 0.3s ease;
  }

  .toc a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--secondStyleColor), color-mix(in srgb, var(--secondStyleColor) 40%, var(--textColor1)));
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.35s cubic-bezier(0.23, 1, 0.32, 1);
    -webkit-transition: transform 0.35s cubic-bezier(0.23, 1, 0.32, 1);
    -moz-transition: transform 0.35s cubic-bezier(0.23, 1, 0.32, 1);
    -ms-transition: transform 0.35s cubic-bezier(0.23, 1, 0.32, 1);
    -o-transition: transform 0.35s cubic-bezier(0.23, 1, 0.32, 1);
  }

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

  .toc a:hover::before,
  .toc a:focus::before {
    transform: scale(1.1);
  }

  .toc a:hover::after,
  .toc a:focus::after {
    transform: scaleX(1);
  }

  .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,
    .toc a::after {
      transition: none;
      -webkit-transition: none;
      -moz-transition: none;
      -ms-transition: none;
      -o-transition: none;
    }
  }



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

  .pl4__head {
    text-align: center;
    max-width: 500px;
    margin: 0 auto 48px;
  }

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

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

  .pl4__strip {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 860px;
    margin: 0 auto;
  }

  .pl4__row {
    position: relative;
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: clamp(16px, 3vw, 32px);
    align-items: center;
    padding: clamp(18px, 2.5vw, 26px) clamp(20px, 3vw, 32px);
    border-radius: var(--borderRadius);
    border: 1px solid color-mix(in srgb, var(--secondStyleColor) 10%, transparent);
    background: rgba(255,255,255,0.02);
    transition: border-color 0.25s ease;
  }

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

  .pl4__row--featured {
    border-color: color-mix(in srgb, var(--secondStyleColor) 25%, transparent);
    background: linear-gradient(160deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
    box-shadow: 0 0 40px color-mix(in srgb, var(--secondStyleColor) 6%, transparent);
  }

  .pl4__hot {
    position: absolute;
    top: -10px;
    left: 24px;
    padding: 3px 12px;
    border-radius: 100px;
    background: var(--secondStyleColor);
    color: var(--bodyBG);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
  }

  .pl4__info h3 {
    margin: 0 0 4px;
    font-size: 18px;
    font-weight: 700;
  }

  .pl4__info p {
    margin: 0;
    font-size: 13px;
    color: color-mix(in srgb, var(--textColor1) 55%, transparent);
  }

  .pl4__pills {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
  }

  .pl4__pills li {
    padding: 5px 12px;
    border-radius: 100px;
    border: 1px solid color-mix(in srgb, var(--secondStyleColor) 14%, transparent);
    font-size: 12px;
    font-weight: 600;
    color: color-mix(in srgb, var(--textColor1) 65%, transparent);
  }

  .pl4__right {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
  }

  .pl4__price {
    font-size: 28px;
    font-weight: 800;
    color: var(--secondStyleColor);
    line-height: 1;
  }

  .pl4__price small {
    font-size: 13px;
    font-weight: 500;
    color: color-mix(in srgb, var(--textColor1) 40%, transparent);
  }

  .pl4__btn {
    padding: 10px 22px;
    border-radius: var(--borderRadius);
    border: 1px solid color-mix(in srgb, var(--secondStyleColor) 22%, transparent);
    background: transparent;
    color: var(--textColor1);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.2s ease;
  }

  .pl4__btn:hover {
    background: color-mix(in srgb, var(--secondStyleColor) 8%, transparent);
  }

  .pl4__btn--primary {
    background: var(--secondStyleColor);
    color: var(--bodyBG);
    border-color: var(--secondStyleColor);
  }

  .pl4__btn--primary:hover {
    box-shadow: 0 6px 18px color-mix(in srgb, var(--secondStyleColor) 28%, transparent);
  }

  @media (max-width: 800px) {
    .pl4__row {
      grid-template-columns: 1fr;
      gap: 14px;
    }
    .pl4__right {
      justify-content: space-between;
      padding-top: 10px;
      border-top: 1px solid color-mix(in srgb, var(--secondStyleColor) 8%, transparent);
    }
  }

  @media (max-width: 600px) {
    .pl4 { padding: 48px 0; }
    .pl4__head { margin-bottom: 36px; }
  }

  @media (prefers-reduced-motion: reduce) {
    .pl4__row, .pl4__btn { transition: none; }
  }



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

  .rv9__head {
    text-align: center;
    max-width: 540px;
    margin: 0 auto 48px;
  }

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

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

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

  /* Bento grid */
  .rv9__bento {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    grid-template-rows: auto auto;
    gap: 20px;
  }

  .rv9__card--featured { grid-row: 1 / 3; }

  .rv9__card {
    padding: clamp(22px, 3vw, 32px);
    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: 16px;
    transition: transform 0.25s ease, border-color 0.25s ease;
  }

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

  .rv9__card--featured {
    background: linear-gradient(160deg,
      rgba(255, 255, 255, 0.04),
      rgba(255, 255, 255, 0.01));
    border-color: color-mix(in srgb, var(--secondStyleColor) 16%, transparent);
  }

  .rv9__quote-mark {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: color-mix(in srgb, var(--secondStyleColor) 12%, transparent);
    display: flex;
    align-items: center;
    justify-content: center;
  }

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

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

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

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

  .rv9__text--lg {
    font-size: clamp(16px, 1.8vw, 19px);
    font-weight: 500;
    line-height: 1.65;
    color: color-mix(in srgb, var(--textColor1) 88%, transparent);
  }

  .rv9__author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
    padding-top: 8px;
  }

  .rv9__avatar {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    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: 13px;
    font-weight: 700;
    color: var(--secondStyleColor);
  }

  .rv9__avatar--lg {
    width: 52px;
    height: 52px;
    font-size: 15px;
  }

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

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

  @media (max-width: 900px) {
    .rv9__bento {
      grid-template-columns: 1fr;
      grid-template-rows: auto;
    }
    .rv9__card--featured { grid-row: auto; }
  }

  @media (max-width: 600px) {
    .rv9 { padding: 48px 0; }
    .rv9__head { margin-bottom: 32px; }
    .rv9__card { padding: 22px 18px 20px; }
  }



  .pt1 {
    padding: clamp(60px, 8vw, 110px) 0;
    color: var(--textColor1);
    text-align: center;
  }

  .pt1__head {
    max-width: 560px;
    margin: 0 auto 44px;
  }

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

  .pt1__head h2 {
    margin: 0 0 14px;
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
  }

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

  /* Logo frame */
  .pt1__frame {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: clamp(36px, 5vw, 56px) clamp(48px, 7vw, 80px);
    border-radius: var(--borderRadius);
    border: 1px solid color-mix(in srgb, var(--secondStyleColor) 18%, transparent);
    background: rgba(255, 255, 255, 0.02);
    margin-bottom: 36px;
    overflow: hidden;
    transition: border-color 0.3s ease, transform 0.3s ease;
  }

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

  .pt1__glow {
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: var(--secondStyleColor);
    opacity: 0.06;
    filter: blur(80px);
    pointer-events: none;
  }

  .pt1__logo-link {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
  }

  .pt1__logo-link:hover { transform: scale(1.05); }

  .pt1__logo-link img {
    max-width: 220px;
    max-height: 80px;
    height: auto;
    filter: drop-shadow(0 6px 20px rgba(0, 0, 0, 0.3));
  }

  /* Trust badges */
  .pt1__badges {
    display: flex;
    justify-content: center;
    gap: clamp(16px, 3vw, 28px);
    flex-wrap: wrap;
  }

  .pt1__badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 999px;
    border: 1px solid color-mix(in srgb, var(--secondStyleColor) 14%, transparent);
    background: rgba(255, 255, 255, 0.02);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: color-mix(in srgb, var(--textColor1) 70%, transparent);
    transition: border-color 0.25s ease;
  }

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

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

  @media (max-width: 600px) {
    .pt1 { padding: 48px 0; }
    .pt1__head { margin-bottom: 32px; }
    .pt1__frame { padding: 28px 36px; margin-bottom: 28px; }
    .pt1__logo-link img { max-width: 160px; }
  }

  @media (prefers-reduced-motion: reduce) {
    .pt1__frame, .pt1__logo-link, .pt1__badge { transition: none; }
  }



  /* ===== FEATURES v16 — Magazine editorial with SVG wave dividers ===== */

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

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

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

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

  /* Blocks */
  .ft16__block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(30px, 5vw, 60px);
    align-items: center;
  }

  .ft16__block--rev {
    direction: rtl;
  }

  .ft16__block--rev > * {
    direction: ltr;
  }

  /* Media */
  .ft16__media {
    border-radius: calc(var(--borderRadius) * 1.2);
    overflow: hidden;
    aspect-ratio: 4 / 3;
    border: 1px solid color-mix(in srgb, var(--secondStyleColor) 15%, transparent);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  }

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

  .ft16__block:hover .ft16__media img {
    transform: scale(1.04);
  }

  /* Text */
  .ft16__text {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .ft16__label {
    display: inline-block;
    width: fit-content;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--secondStyleColor);
    padding: 5px 14px;
    border-radius: 100px;
    border: 1px solid color-mix(in srgb, var(--secondStyleColor) 25%, transparent);
  }

  .ft16__text h3 {
    margin: 0;
    font-size: clamp(20px, 2.5vw, 28px);
    font-weight: 700;
    letter-spacing: -0.01em;
  }

  .ft16__text > p {
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
    color: color-mix(in srgb, var(--textColor1) 72%, transparent);
  }

  .ft16__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 4px;
  }

  .ft16__tags span {
    padding: 6px 14px;
    border-radius: var(--borderRadius);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 12px;
    font-weight: 500;
    color: color-mix(in srgb, var(--textColor1) 75%, transparent);
    transition: border-color 0.25s ease, color 0.25s ease;
  }

  .ft16__block:hover .ft16__tags span {
    border-color: color-mix(in srgb, var(--secondStyleColor) 30%, transparent);
    color: var(--textColor1);
  }

  /* SVG wave divider */
  .ft16__wave {
    display: block;
    width: 100%;
    height: 40px;
    margin: 50px 0;
    color: color-mix(in srgb, var(--secondStyleColor) 20%, transparent);
  }

  /* Responsive */
  @media (max-width: 950px) {
    .ft16__block {
      gap: 30px;
    }

    .ft16__text h3 {
      font-size: 20px;
    }
  }

  @media (max-width: 800px) {
    .ft16__block,
    .ft16__block--rev {
      grid-template-columns: 1fr;
      direction: ltr;
    }

    .ft16__media {
      aspect-ratio: 16 / 9;
    }

    .ft16__wave {
      margin: 36px 0;
    }

    .ft16__text > p {
      font-size: 14px;
    }
  }

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

    .ft16__head {
      margin-bottom: 40px;
    }

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

    .ft16__wave {
      margin: 28px 0;
      height: 30px;
    }

    .ft16__tags span {
      font-size: 11px;
      padding: 5px 12px;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .ft16__media img,
    .ft16__tags span {
      transition: none;
    }
  }



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

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

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

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

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

  /* Timeline wrapper */
  .rm12__wrapper {
    position: relative;
    overflow: hidden;
  }

  /* Connecting line */
  .rm12__line {
    position: absolute;
    top: 30px;
    left: 60px;
    right: 60px;
    height: 3px;
    background: linear-gradient(
      90deg,
      var(--secondStyleColor),
      var(--accent2),
      var(--secondStyleColor)
    );
    border-radius: 2px;
    z-index: 0;
  }

  .rm12__line-glow {
    position: absolute;
    inset: -3px 0;
    background: linear-gradient(
      90deg,
      transparent,
      var(--secondStyleColor),
      var(--accent2),
      transparent
    );
    filter: blur(8px);
    opacity: 0.4;
    animation: rm12LineGlow 3s ease-in-out infinite alternate;
  }

  @keyframes rm12LineGlow {
    0% { opacity: 0.25; }
    100% { opacity: 0.55; }
  }

  /* Scrollable track */
  .rm12__track {
    display: flex;
    gap: 40px;
    padding: 40px 60px 60px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    align-items: flex-start;
  }

  .rm12__track::-webkit-scrollbar {
    display: none;
  }

  /* Phase card */
  .rm12__card {
    position: relative;
    z-index: 1;
    min-width: 280px;
    max-width: 280px;
    flex-shrink: 0;
    background: var(--bgCard);
    border: 1px solid color-mix(in srgb, var(--secondStyleColor) 15%, transparent);
    border-radius: var(--borderRadius);
    padding: 28px 24px;
    opacity: 0;
    transform: translateY(30px);
    transition: transform 0.6s ease, opacity 0.6s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  }

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

  .rm12__card:hover {
    border-color: color-mix(in srgb, var(--accent2) 40%, transparent);
    box-shadow: 0 0 30px color-mix(in srgb, var(--accent2) 10%, transparent);
  }

  /* Connector dot */
  .rm12__dot {
    position: absolute;
    top: -26px;
    left: 50%;
    transform: translateX(-50%);
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--secondStyleColor);
    border: 3px solid var(--bodyBG);
    box-shadow: 0 0 12px color-mix(in srgb, var(--secondStyleColor) 50%, transparent);
  }

  .rm12__dot--pulse {
    background: var(--accent2);
    border-color: var(--bodyBG);
    box-shadow: 0 0 12px color-mix(in srgb, var(--accent2) 50%, transparent);
    animation: rm12DotPulse 2s ease-in-out infinite;
  }

  .rm12__dot--empty {
    background: transparent;
    border: 3px solid color-mix(in srgb, var(--secondStyleColor) 35%, transparent);
    box-shadow: none;
  }

  @keyframes rm12DotPulse {
    0%, 100% { box-shadow: 0 0 0 0 color-mix(in srgb, var(--accent2) 30%, transparent); }
    50% { box-shadow: 0 0 0 8px color-mix(in srgb, var(--accent2) 0%, transparent); }
  }

  .rm12__stem {
    position: absolute;
    top: -12px;
    left: 50%;
    width: 2px;
    height: 12px;
    background: linear-gradient(to bottom, var(--secondStyleColor), transparent);
    transform: translateX(-50%);
  }

  /* Status badge */
  .rm12__status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 5px 12px;
    border-radius: 20px;
    margin-bottom: 14px;
    border: 1px solid color-mix(in srgb, var(--secondStyleColor) 16%, transparent);
    color: color-mix(in srgb, var(--textColor1) 50%, transparent);
    white-space: nowrap;
  }

  .rm12__status--completed {
    background: color-mix(in srgb, var(--secondStyleColor) 10%, transparent);
    color: var(--secondStyleColor);
    border-color: color-mix(in srgb, var(--secondStyleColor) 28%, transparent);
  }

  .rm12__status--active {
    background: color-mix(in srgb, var(--accent2) 15%, transparent);
    color: var(--accent2);
    border-color: color-mix(in srgb, var(--accent2) 28%, transparent);
    animation: rm12PulseStatus 2s ease-in-out infinite;
  }

  @keyframes rm12PulseStatus {
    0%, 100% { box-shadow: 0 0 0 0 color-mix(in srgb, var(--accent2) 30%, transparent); }
    50% { box-shadow: 0 0 0 8px color-mix(in srgb, var(--accent2) 0%, transparent); }
  }

  .rm12__status i {
    font-size: 9px;
  }

  .rm12__card h3 {
    margin: 0 0 6px;
    font-size: 18px;
    font-weight: 700;
  }

  .rm12__date {
    font-size: 12px;
    font-weight: 600;
    color: var(--secondStyleColor);
    margin-bottom: 12px;
  }

  .rm12__date i {
    margin-right: 4px;
  }

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

  /* Nav arrows */
  .rm12__nav {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 24px;
  }

  .rm12__arrow {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid color-mix(in srgb, var(--secondStyleColor) 30%, transparent);
    background: var(--bgCard);
    color: var(--secondStyleColor);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all 0.3s ease;
  }

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

  /* Scroll indicator */
  .rm12__dots {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    gap: 6px;
  }

  .rm12__scroll-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: color-mix(in srgb, var(--textColor1) 15%, transparent);
    transition: all 0.3s ease;
  }

  .rm12__scroll-dot--active {
    background: var(--secondStyleColor);
    width: 24px;
    border-radius: 4px;
  }

  /* Responsive */
  @media (max-width: 950px) {
    .rm12__track {
      padding: 40px 32px 50px;
      gap: 28px;
    }
  }

  @media (max-width: 768px) {
    .rm12__track {
      padding: 40px 24px 50px;
      gap: 24px;
    }

    .rm12__card {
      min-width: 250px;
      max-width: 250px;
    }

    .rm12__line {
      left: 24px;
      right: 24px;
    }
  }

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

    .rm12__head {
      margin-bottom: 36px;
    }

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

    .rm12__card {
      min-width: 230px;
      max-width: 230px;
      padding: 24px 18px;
    }

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

  @media (prefers-reduced-motion: reduce) {
    .rm12__card {
      transition: none;
      opacity: 1;
      transform: none;
    }

    .rm12__dot--pulse {
      animation: none;
    }

    .rm12__status--active {
      animation: none;
    }

    .rm12__line-glow {
      animation: none;
    }

    .rm12__arrow {
      transition: none;
    }

    .rm12__scroll-dot {
      transition: none;
    }
  }



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

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

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

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

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

  .gl1__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .gl1__item {
    border-radius: var(--borderRadius);
    overflow: hidden;
    border: 1px solid color-mix(in srgb, var(--secondStyleColor) 10%, transparent);
    background: rgba(255,255,255,0.02);
    transition: transform 0.3s ease, border-color 0.3s ease;
  }

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

  .gl1__img {
    aspect-ratio: 16/10;
    overflow: hidden;
  }

  .gl1__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }

  .gl1__item:hover .gl1__img img {
    transform: scale(1.06);
  }

  .gl1__info {
    padding: 16px 18px;
  }

  .gl1__info h3 {
    margin: 0 0 4px;
    font-size: 16px;
    font-weight: 600;
  }

  .gl1__info p {
    margin: 0;
    font-size: 13px;
    color: color-mix(in srgb, var(--textColor1) 55%, transparent);
  }

  @media (max-width: 900px) {
    .gl1__grid { grid-template-columns: repeat(2, 1fr); }
  }

  @media (max-width: 600px) {
    .gl1 { padding: 48px 0; }
    .gl1__grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
    .gl1__head { margin-bottom: 32px; }
  }

  @media (prefers-reduced-motion: reduce) {
    .gl1__item, .gl1__img img { transition: none; }
  }



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



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

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

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

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

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

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

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

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

  .footerBrandTagline {
    font-size: 14px;
    color: var(--textMuted);
    padding-top: 10px;
  }

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

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

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

  .footerNav a {
    font-size: 14px;
    color: var(--textSecondary);
    text-decoration: none;
    transition: 0.15s ease;
  }

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

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

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

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

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

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

  .footerMeta {
    text-align: right;
  }

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

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

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

    .footerMeta {
      text-align: left;
    }
  }



[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}