
:root {
  --bg: #0f1117;
  --bg-card: #1a1d27;
  --text: #e4e6ef;
  --text-muted: rgba(255,255,255,0.5);
  --accent: #c52693;
  --accent-rgb: 197,38,147;
  --accent2: #c58d26;
  --accent2-rgb: 197,141,38;
  --accent3: #7f2ed7;
  --accent3-rgb: 127,46,215;
  --border: rgba(255,255,255,0.08);
  --radius: 12px;
  --font: 'Inter', sans-serif;
  --font-heading: 'Inter', sans-serif;
  --bodyBG: #0f1117;
  --textColor1: #e4e6ef;
  --textColor2: #ffffff;
  --textSecondary: #afb1b9;
  --textMuted: #7a7c83;
  --secondStyleColor: #c52693;
  --bgCard: #1a1d27;
  --bgAlt: #202228;
  --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 */
  .header {
    background-color: var(--secondStyleColor);
    color: var(--textColor2);
  }
  .headerWrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
  }

  .headerButton {
    transition: 0.2s all linear;
    padding: 10px 20px;
    border: none;
    text-transform: uppercase;
    background-color: var(--textColor2);
    color: var(--secondStyleColor);
    cursor: pointer;
    border-radius: var(--borderRadius);
  }
  .headerButton:hover {
    transform: translateY(-2px);
  }
  .ham {
    display: none;
  }

  .nav ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    padding-left: 0;
    margin: 0;
  }

  .nav li {
    list-style: none;
  }

  .nav a {
    color: var(--textColor2);
    text-decoration: none;
    transition: 0.2s all linear;
    -webkit-transition: 0.2s all linear;
    -moz-transition: 0.2s all linear;
    -ms-transition: 0.2s all linear;
    -o-transition: 0.2s all linear;
    position: relative;
    font-weight: 600;
  }

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

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

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

  @media (max-width: 800px) {
    .headerWrapper {
      padding: 0 20px;
    }
    .headerButton {
      display: none;
    }
    .nav {
      position: fixed;
      inset: 0;
      background-color: var(--textColor2);
      display: flex;
      justify-content: center;
      align-items: center;
      width: 100vw;
      height: 100vh;
      z-index: 999;
      transform: translateX(100%);
      -webkit-transform: translateX(100%);
      -moz-transform: translateX(100%);
      -ms-transform: translateX(100%);
      -o-transform: translateX(100%);
      transition: 0.3s all cubic-bezier(0.23, 1, 0.32, 1);
      -webkit-transition: 0.3s all cubic-bezier(0.23, 1, 0.32, 1);
      -moz-transition: 0.3s all cubic-bezier(0.23, 1, 0.32, 1);
      -ms-transition: 0.3s all cubic-bezier(0.23, 1, 0.32, 1);
      -o-transition: 0.3s all cubic-bezier(0.23, 1, 0.32, 1);
    }
    .nav.active {
      transform: translateX(0);
      -webkit-transform: translateX(0);
      -moz-transform: translateX(0);
      -ms-transform: translateX(0);
      -o-transform: translateX(0);
    }
    .header:has(.nav.active) .logo {
      color: var(--textColor1);
    }
    .header:has(.nav.active) .nav a {
      color: var(--textColor1);
    }
    .nav ul {
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }
    .ham {
      cursor: pointer;
      -webkit-tap-highlight-color: transparent;
      transition: transform 400ms;
      -moz-user-select: none;
      -webkit-user-select: none;
      -ms-user-select: none;
      user-select: none;
      display: flex;
      z-index: 1000;
    }
    .hamRotate.active {
      transform: rotate(45deg);
    }
    .hamRotate180.active {
      transform: rotate(180deg);
    }
    .line {
      fill: none;
      transition: stroke-dasharray 400ms, stroke-dashoffset 400ms;
      stroke: var(--textColor2);
      stroke-width: 5.5;
      stroke-linecap: round;
    }
    .header:has(.nav.active) .line {
      stroke: var(--textColor1);
    }
    .ham7 .top {
      stroke-dasharray: 40 82;
    }
    .ham7 .middle {
      stroke-dasharray: 40 111;
    }
    .ham7 .bottom {
      stroke-dasharray: 40 161;
    }
    .ham7.active .top {
      stroke-dasharray: 17 82;
      stroke-dashoffset: -62px;
    }
    .ham7.active .middle {
      stroke-dashoffset: 23px;
    }
    .ham7.active .bottom {
      stroke-dashoffset: -83px;
    }
    .ham8 .top {
      stroke-dasharray: 40 160;
    }
  }



  .xR9cF_sec {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
    padding: 56px 18px 46px;
    color: var(--textColor1);
    background: radial-gradient(
        1200px 420px at 50% -30%,
        color-mix(in srgb, var(--secondStyleColor) 14%, transparent),
        transparent 60%
      ),
      radial-gradient(
        900px 520px at 50% 30%,
        color-mix(in srgb, var(--secondStyleColor) 14%, transparent),
        transparent 55%
      ),
      linear-gradient(180deg, #0b0b12 0%, #07070c 60%, #050508 100%);
    overflow: hidden;
  }
  .xR9cF_sec .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    a {
      margin-top: 40px;
      padding: 15px 60px;
      color: var(--textColor1);
      text-transform: uppercase;
      border-radius: var(--borderRadius);
      border: 1px solid var(--secondStyleColor);
      font-weight: 500;
      transition: 0.2s all linear;
    }
    a:hover {
      padding: 15px 80px;
    }
  }
  .xR9cF_head {
    text-align: center;
    user-select: none;
  }
  .xR9cF_title {
    margin: 0;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 0.3px;
  }
  .xR9cF_sub {
    margin: 8px 0 0;
    opacity: 0.8;
  }

  .xR9cF_stage {
    position: relative;
    width: min(1240px, 100%);
    margin: 0 auto;
    height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1200px;
    outline: none;
    touch-action: pan-y;
  }

  .xR9cF_flow {
    position: relative;
    width: 100%;
    height: 420px;
    transform-style: preserve-3d;
  }

  /* FIXED geometry -> perfect symmetry */
  .xR9cF_item {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 340px;
    height: 450px;
    transform-style: preserve-3d;
    transform-origin: center center;
    margin-left: -170px;
    margin-top: -195px;
    will-change: transform, opacity;
    transition: transform 560ms cubic-bezier(0.2, 0.9, 0.2, 1), opacity 560ms,
      filter 560ms;
    cursor: pointer;
    user-select: none;
  }

  .xR9cF_card {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 16px;
    filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.55));
    transform: translateZ(0);
  }

  .xR9cF_img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 20%;
    display: block;
    border-radius: var(--borderRadius);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform: translateZ(0);
    -webkit-user-drag: none;
    user-drag: none;
    user-select: none;
    pointer-events: auto;
  }

  .xR9cF_ref {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 16px);
    height: 170px;
    overflow: hidden;
    border-radius: 16px;
    opacity: 0.1;
    pointer-events: none;

    /* фон = картинка, ставится из JS */
    background-image: var(--xR9cF_refimg);
    background-size: cover;
    background-position: center;

    /* переворачиваем как отражение */
    transform: scaleY(-1) translateZ(0);
    /* filter: blur(2px); */
  }

  .xR9cF_ref::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to bottom,
      rgba(5, 5, 8, 0) 0%,
      rgba(5, 5, 8, 0.35) 40%,
      rgba(5, 5, 8, 0.85) 75%,
      rgba(5, 5, 8, 1) 100%
    );
  }
  .xR9cF_imgRef {
    transform: scaleY(-1);
    filter: blur(0.2px);
  }
  .xR9cF_ref::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to bottom,
      rgba(5, 5, 8, 0) 0%,
      rgba(5, 5, 8, 0.35) 40%,
      rgba(5, 5, 8, 0.85) 75%,
      rgba(5, 5, 8, 1) 100%
    );
  }

  /* dots */
  .xR9cF_dots {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 60;
  }
  .xR9cF_dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.28);
    cursor: pointer;
    transition: transform 220ms, background 220ms, opacity 220ms;
    opacity: 0.9;
  }
  .xR9cF_dot.isOn {
    background: rgba(255, 255, 255, 0.92);
    transform: scale(1.15);
  }

  @media (max-width: 920px) {
    .xR9cF_item {
      width: 280px;
      height: 330px;
      margin-left: -140px;
      margin-top: -165px;
    }
    .xR9cF_stage {
      height: 320px;
    }
    .xR9cF_flow {
      height: 380px;
    }
  }
  @media (max-width: 520px) {
    .xR9cF_item {
      width: 250px;
      height: 320px;
      margin-left: -115px;
      margin-top: -135px;
    }

    .xR9cF_ref {
      height: 140px;
    }
  }



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

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

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

  .toc {
    background-color: transparent;
  }

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

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

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

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

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

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

  .toc-swiper {
    max-width: calc(var(--maxWidthContainer) - 40px);
    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;
    }
  }



  /* ===== ABOUT v20 — Magazine 3-col: quote + image + text/stats + SVG dots ===== */

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

  .ab20__deco {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    color: color-mix(in srgb, var(--secondStyleColor) 6%, transparent);
    z-index: 0;
    pointer-events: none;
  }

  .ab20 .container {
    position: relative;
    z-index: 1;
  }

  /* 3-column layout */
  .ab20__cols {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr 1fr;
    gap: 24px;
    align-items: center;
  }

  /* Quote column */
  .ab20__col--quote {
    padding: 30px 24px;
    border-radius: var(--borderRadius);
    border: 1px solid
      color-mix(in srgb, var(--secondStyleColor) 12%, transparent);
    background: rgba(255, 255, 255, 0.025);
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .ab20__quote-mark {
    font-size: 64px;
    font-weight: 800;
    line-height: 0.6;
    color: color-mix(in srgb, var(--secondStyleColor) 20%, transparent);
  }

  .ab20__col--quote blockquote {
    margin: 0;
    font-size: 16px;
    font-style: italic;
    line-height: 1.65;
    color: color-mix(in srgb, var(--textColor1) 82%, transparent);
  }

  .ab20__author {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .ab20__avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid
      color-mix(in srgb, var(--secondStyleColor) 30%, transparent);
    flex-shrink: 0;
  }

  .ab20__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .ab20__author strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
  }

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

  /* Image column */
  .ab20__img-frame {
    position: relative;
    border-radius: calc(var(--borderRadius) * 1.2);
    overflow: hidden;
    aspect-ratio: 3 / 4;
    border: 1px solid
      color-mix(in srgb, var(--secondStyleColor) 16%, transparent);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
  }

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

  .ab20__img-frame:hover img {
    transform: scale(1.04);
  }

  .ab20__img-shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      120deg,
      transparent 30%,
      rgba(255, 255, 255, 0.06) 50%,
      transparent 70%
    );
    transform: translateX(-100%);
    animation: ab20Shine 4s ease-in-out infinite;
  }

  @keyframes ab20Shine {
    0%,
    70% {
      transform: translateX(-100%);
    }
    100% {
      transform: translateX(100%);
    }
  }

  /* Info column */
  .ab20__col--info {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

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

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

  .ab20__col--info > p {
    margin: 0;
    font-size: 14px;
    line-height: 1.7;
    color: color-mix(in srgb, var(--textColor1) 70%, transparent);
  }

  /* Stats bars */
  .ab20__stats {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 6px;
  }

  .ab20__stat-bar {
    height: 4px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.06);
    overflow: hidden;
  }

  .ab20__stat-fill {
    height: 100%;
    width: var(--w, 0%);
    border-radius: 4px;
    background: linear-gradient(
      90deg,
      var(--secondStyleColor),
      color-mix(in srgb, var(--secondStyleColor) 45%, transparent)
    );
    transition: width 0.6s ease;
  }

  .ab20__stat-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 4px;
  }

  .ab20__stat-info span {
    font-size: 13px;
    color: color-mix(in srgb, var(--textColor1) 65%, transparent);
  }

  .ab20__stat-info strong {
    font-size: 14px;
    font-weight: 700;
    color: var(--secondStyleColor);
  }

  .ab20__btn {
    display: inline-block;
    margin-top: 8px;
    padding: 12px 28px;
    width: fit-content;
    border-radius: var(--borderRadius);
    background: var(--secondStyleColor);
    color: var(--bodyBG);
    font-size: 14px;
    font-weight: 600;
    transition:
      transform 0.25s ease,
      box-shadow 0.25s ease;
  }

  .ab20__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px
      color-mix(in srgb, var(--secondStyleColor) 30%, transparent);
  }

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

    .ab20__col--quote {
      grid-column: span 2;
      order: 3;
    }
  }

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

    .ab20__col--quote {
      grid-column: span 1;
      order: 0;
    }

    .ab20__img-frame {
      aspect-ratio: 16 / 9;
      max-width: 500px;
      margin: 0 auto;
      width: 100%;
    }

    .ab20__col--info h2 {
      font-size: 24px;
    }

    .ab20__col--quote blockquote {
      font-size: 15px;
    }
  }

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

    .ab20__col--quote {
      padding: 24px 18px;
    }

    .ab20__quote-mark {
      font-size: 48px;
    }

    .ab20__col--quote blockquote {
      font-size: 14px;
    }

    .ab20__stat-info span {
      font-size: 12px;
    }
  }

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

    .ab20__img-frame img,
    .ab20__btn,
    .ab20__stat-fill {
      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; }
  }



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

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

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

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

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

  /* ---- Timeline ---- */
  .rm19__timeline {
    max-width: 960px;
    margin: 0 auto;
  }

  /* ---- Card rows ---- */
  .rm19__row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }

  .rm19__row--top .rm19__cell {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
  }

  .rm19__row--bottom .rm19__cell {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
  }

  .rm19__cell--empty {
    visibility: hidden;
    pointer-events: none;
  }

  /* ---- Stem ---- */
  .rm19__stem {
    width: 2px;
    height: 24px;
    background: color-mix(in srgb, var(--secondStyleColor) 22%, transparent);
    flex-shrink: 0;
  }

  .rm19__stem--active {
    background: linear-gradient(
      to bottom,
      var(--accent2, var(--secondStyleColor)),
      color-mix(in srgb, var(--accent2, var(--secondStyleColor)) 18%, transparent)
    );
  }

  /* ---- Rail row ---- */
  .rm19__rail-row {
    position: relative;
    height: 52px;
    display: flex;
    align-items: center;
  }

  .rm19__rail {
    position: absolute;
    left: 0;
    right: 0;
    height: 3px;
    background: color-mix(in srgb, var(--secondStyleColor) 12%, transparent);
    border-radius: 2px;
  }

  .rm19__rail-fill {
    height: 100%;
    width: 62%;
    background: linear-gradient(90deg, var(--secondStyleColor), var(--accent2, var(--secondStyleColor)));
    border-radius: 2px;
    box-shadow: 0 0 14px color-mix(in srgb, var(--secondStyleColor) 20%, transparent);
  }

  .rm19__dots {
    position: relative;
    z-index: 1;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }

  /* ---- Dot ---- */
  .rm19__dot {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--bodyBG);
    border: 3px solid color-mix(in srgb, var(--secondStyleColor) 25%, transparent);
    display: flex;
    align-items: center;
    justify-content: center;
    justify-self: center;
    font-size: 13px;
    font-weight: 700;
    color: color-mix(in srgb, var(--textColor1) 40%, transparent);
    transition: transform 0.3s ease;
  }

  .rm19__dot:hover {
    transform: scale(1.15);
  }

  .rm19__dot i { font-size: 13px; }

  .rm19__dot--done {
    background: var(--secondStyleColor);
    border-color: var(--secondStyleColor);
    color: var(--bodyBG);
  }

  .rm19__dot--glow {
    border-color: var(--accent2, var(--secondStyleColor));
    color: var(--accent2, var(--secondStyleColor));
    box-shadow: 0 0 20px color-mix(in srgb, var(--accent2, var(--secondStyleColor)) 35%, transparent);
    animation: rm19Pulse 2s ease-in-out infinite;
  }

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

  .rm19__dot--empty {
    border-color: color-mix(in srgb, var(--secondStyleColor) 20%, transparent);
    color: color-mix(in srgb, var(--textColor1) 30%, transparent);
  }

  /* ---- Card ---- */
  .rm19__card {
    padding: 22px 18px;
    border-radius: var(--borderRadius);
    border: 1px solid color-mix(in srgb, var(--secondStyleColor) 10%, transparent);
    background: rgba(255, 255, 255, 0.02);
    text-align: center;
    width: 100%;
    transition: transform 0.3s ease, border-color 0.3s ease;
  }

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

  .rm19__row--top .rm19__card:hover {
    transform: translateY(-4px);
  }

  .rm19__row--bottom .rm19__card:hover {
    transform: translateY(4px);
  }

  .rm19__card--active {
    border-color: color-mix(in srgb, var(--accent2, var(--secondStyleColor)) 28%, transparent);
    background: color-mix(in srgb, var(--accent2, var(--secondStyleColor)) 4%, transparent);
  }

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

  .rm19__card h3 {
    margin: 0 0 8px;
    font-size: 16px;
    font-weight: 700;
  }

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

  /* ---- Responsive ---- */
  @media (max-width: 850px) {
    .rm19__row { grid-template-columns: 1fr 1fr; }
    .rm19__dots { grid-template-columns: 1fr 1fr; }
    .rm19__rail { display: none; }

    /* Stack: all cards above, all dots, all cards below */
    .rm19__row--top .rm19__cell:nth-child(1) { order: 1; }
    .rm19__row--top .rm19__cell:nth-child(2) { display: none; }
    .rm19__row--top .rm19__cell:nth-child(3) { order: 2; }
    .rm19__row--top .rm19__cell:nth-child(4) { display: none; }

    .rm19__row--bottom .rm19__cell:nth-child(1) { display: none; }
    .rm19__row--bottom .rm19__cell:nth-child(2) { order: 1; }
    .rm19__row--bottom .rm19__cell:nth-child(3) { display: none; }
    .rm19__row--bottom .rm19__cell:nth-child(4) { order: 2; }

    .rm19__cell--empty { display: none; }
    .rm19__rail-row { height: 44px; }
  }

  @media (max-width: 600px) {
    .rm19 { padding: 50px 0; }
    .rm19__head { margin-bottom: 36px; }
    .rm19__head h2 { font-size: 24px; }

    /* Collapse to vertical list */
    .rm19__timeline { display: flex; flex-direction: column; gap: 16px; }
    .rm19__row { display: flex; flex-direction: column; gap: 14px; }
    .rm19__row--top .rm19__cell,
    .rm19__row--bottom .rm19__cell { flex-direction: row; gap: 14px; }
    .rm19__cell--empty,
    .rm19__row--top .rm19__cell:nth-child(2),
    .rm19__row--top .rm19__cell:nth-child(4),
    .rm19__row--bottom .rm19__cell:nth-child(1),
    .rm19__row--bottom .rm19__cell:nth-child(3) { display: none; }
    .rm19__stem { display: none; }
    .rm19__rail-row { display: none; }
    .rm19__card { text-align: left; padding: 18px 16px; }
    .rm19__card h3 { font-size: 15px; }
    .rm19__card p { font-size: 12px; }
  }

  @media (prefers-reduced-motion: reduce) {
    .rm19__dot--glow { animation: none; }
    .rm19__card, .rm19__dot { transition: none; }
  }



  .pt2 {
    position: relative;
    padding: clamp(60px, 8vw, 110px) 0;
    color: var(--textColor1);
    overflow: hidden;
    min-height: 400px;
    display: flex;
    align-items: center;
  }

  .pt2__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.12;
    filter: blur(3px);
  }

  .pt2__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(135deg, rgba(0,0,0,0.65), rgba(0,0,0,0.3));
    pointer-events: none;
  }

  .pt2__shell {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(30px, 5vw, 70px);
    align-items: center;
  }

  .pt2__left {
    display: flex;
    gap: 20px;
    align-items: flex-start;
  }

  .pt2__number {
    font-size: clamp(60px, 8vw, 100px);
    font-weight: 800;
    line-height: 1;
    color: var(--secondStyleColor);
    opacity: 0.15;
    flex-shrink: 0;
    letter-spacing: -0.04em;
  }

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

  .pt2__kicker {
    margin: 0;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--secondStyleColor);
  }

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

  .pt2__desc {
    margin: 0;
    font-size: 15px;
    line-height: 1.65;
    color: color-mix(in srgb, var(--textColor1) 70%, transparent);
    max-width: 420px;
  }

  .pt2__right { display: flex; justify-content: center; }

  .pt2__card {
    position: relative;
    width: min(320px, 100%);
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid color-mix(in srgb, var(--secondStyleColor) 16%, transparent);
    border-radius: var(--borderRadius);
    background: rgba(255, 255, 255, 0.02);
    transition: border-color 0.3s ease;
  }

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

  .pt2__corner {
    position: absolute;
    width: 24px;
    height: 24px;
    border-color: var(--secondStyleColor);
    border-style: solid;
    border-width: 0;
    opacity: 0.5;
  }

  .pt2__corner--tl {
    top: -1px; left: -1px;
    border-top-width: 2px; border-left-width: 2px;
    border-top-left-radius: var(--borderRadius);
  }

  .pt2__corner--br {
    bottom: -1px; right: -1px;
    border-bottom-width: 2px; border-right-width: 2px;
    border-bottom-right-radius: var(--borderRadius);
  }

  .pt2__logo-link {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
  }

  .pt2__logo-link:hover { transform: scale(1.06); }

  .pt2__logo-link img {
    max-width: min(200px, 65%);
    max-height: 80px;
    height: auto;
    filter: drop-shadow(0 6px 20px rgba(0,0,0,0.35));
  }

  @media (max-width: 800px) {
    .pt2__shell { grid-template-columns: 1fr; text-align: center; }
    .pt2__left { justify-content: center; }
    .pt2__number { display: none; }
    .pt2__content { align-items: center; }
    .pt2__desc { max-width: 100%; }
    .pt2__card { width: min(300px, 85vw); }
  }

  @media (max-width: 600px) {
    .pt2 { padding: 48px 0; min-height: auto; }
    .pt2__card { width: min(260px, 80vw); }
    .pt2__logo-link img { max-width: 160px; }
  }

  @media (prefers-reduced-motion: reduce) {
    .pt2__card, .pt2__logo-link { transition: none; }
  }



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

  .rv14__top {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 48px;
  }

  .rv14__head { flex: 1; }

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

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

  .rv14__sub {
    margin: 0;
    max-width: 340px;
    font-size: 15px;
    line-height: 1.6;
    color: color-mix(in srgb, var(--textColor1) 55%, transparent);
    text-align: right;
  }

  /* Masonry columns */
  .rv14__cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: start;
  }

  .rv14__col {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .rv14__card {
    padding: 26px 22px 22px;
    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;
  }

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

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

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

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

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

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

  @media (max-width: 900px) {
    .rv14__top { flex-direction: column; align-items: flex-start; }
    .rv14__sub { text-align: left; max-width: none; }
    .rv14__cols { grid-template-columns: repeat(2, 1fr); }
    .rv14__col:last-child { grid-column: 1 / -1; flex-direction: row; }
    .rv14__col:last-child .rv14__card { flex: 1; }
  }

  @media (max-width: 600px) {
    .rv14 { padding: 48px 0; }
    .rv14__top { margin-bottom: 32px; }
    .rv14__cols { grid-template-columns: 1fr; }
    .rv14__col:last-child { flex-direction: column; grid-column: auto; }
    .rv14__card { padding: 22px 18px 20px; }
  }



  .featuresWrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
  }
  .feaItem {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    img {
      height: 500px;
      width: 400px;
      border-radius: var(--borderRadius);
      object-fit: cover;
      object-position: 50% 20%;
    }
  }
  .feaWrap {
    margin-bottom: 40px;
  }

  @media (max-width: 800px) {
    .feaWrap {
      margin-bottom: 20px;
    }
    .featuresWrap {
      flex-direction: column;
      gap: 20px;
    }
    .feaItem {
      gap: 20px;
      img {
        width: 100%;
      }
    }
  }



  /* ===== HOW v15 — Glow cards with progress bars ===== */

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

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

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

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

  .hw15__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
  }

  /* Card */
  .hw15__card {
    position: relative;
    padding: 28px 22px 22px;
    border-radius: var(--borderRadius);
    border: 1px solid color-mix(in srgb, var(--secondStyleColor) 16%, transparent);
    background: rgba(255, 255, 255, 0.03);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.25s ease, border-color 0.25s ease;
  }

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

  /* Corner glow on hover */
  .hw15__glow {
    position: absolute;
    top: -40px;
    right: -40px;
    width: 120px;
    height: 120px;
    border-radius: 999px;
    background: var(--secondStyleColor);
    opacity: 0;
    filter: blur(50px);
    pointer-events: none;
    transition: opacity 0.4s ease;
  }

  .hw15__card:hover .hw15__glow {
    opacity: 0.15;
  }

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

  .hw15__num {
    font-size: 32px;
    font-weight: 800;
    color: var(--secondStyleColor);
    opacity: 0.7;
    line-height: 1;
  }

  .hw15__arrow {
    width: 36px;
    height: 36px;
    border-radius: 999px;
    border: 1px solid color-mix(in srgb, var(--secondStyleColor) 25%, transparent);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateX(-6px);
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  .hw15__card:hover .hw15__arrow {
    opacity: 1;
    transform: translateX(0);
  }

  .hw15__card h3 {
    margin: 0 0 10px;
    font-size: 18px;
    font-weight: 600;
  }

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

  /* Progress bar */
  .hw15__bar {
    height: 3px;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.08);
    overflow: hidden;
  }

  .hw15__fill {
    height: 100%;
    width: var(--w, 0%);
    border-radius: 3px;
    background: linear-gradient(
      90deg,
      var(--secondStyleColor),
      color-mix(in srgb, var(--secondStyleColor) 50%, transparent)
    );
  }

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

  @media (max-width: 800px) {
    .hw15__card {
      padding: 24px 18px 18px;
    }

    .hw15__card h3 {
      font-size: 16px;
    }

    .hw15__card p {
      font-size: 13px;
    }

    .hw15__num {
      font-size: 28px;
    }
  }

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

    .hw15__head {
      margin-bottom: 32px;
    }

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

    .hw15__grid {
      grid-template-columns: 1fr;
      gap: 14px;
    }

    .hw15__card {
      padding: 22px 16px 16px;
    }

    .hw15__card h3 {
      font-size: 16px;
    }

    .hw15__card p {
      font-size: 13px;
      margin-bottom: 16px;
    }

    .hw15__num {
      font-size: 24px;
    }

    .hw15__top {
      margin-bottom: 14px;
    }

    .hw15__arrow {
      width: 30px;
      height: 30px;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .hw15__card,
    .hw15__arrow,
    .hw15__glow {
      transition: none;
    }
  }



  /* ===========================
     Extra 16 — Stats Counter
     Animated counters + grid pattern bg + bar chart decoration
     =========================== */

  .sth16 {
    position: relative;
    padding: clamp(64px, 7vw, 110px) 0;
    overflow: hidden;
    color: var(--textColor1);
    background: var(--bodyBG);
  }

  /* Background grid pattern */
  .sth16__bg-grid {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.04;
    background-image:
      repeating-linear-gradient(
        0deg,
        var(--secondStyleColor) 0,
        var(--secondStyleColor) 1px,
        transparent 1px,
        transparent 60px
      ),
      repeating-linear-gradient(
        90deg,
        var(--secondStyleColor) 0,
        var(--secondStyleColor) 1px,
        transparent 1px,
        transparent 60px
      );
  }

  /* Animated bar chart decoration */
  .sth16__bars {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: flex-end;
    gap: 10px;
    height: 200px;
    pointer-events: none;
    opacity: 0.04;
    z-index: 0;
  }

  .sth16__bar {
    width: 40px;
    border-radius: 4px 4px 0 0;
    background: var(--secondStyleColor);
    animation: sth16-barGrow 3s ease-in-out infinite alternate;
  }

  .sth16__bar--1 { height: 60%; animation-delay: 0s; }
  .sth16__bar--2 { height: 85%; animation-delay: 0.3s; }
  .sth16__bar--3 { height: 45%; animation-delay: 0.6s; }
  .sth16__bar--4 { height: 95%; animation-delay: 0.9s; }
  .sth16__bar--5 { height: 70%; animation-delay: 1.2s; }

  @keyframes sth16-barGrow {
    0% { transform: scaleY(0.7); }
    100% { transform: scaleY(1); }
  }

  /* Container */
  .sth16 .container {
    position: relative;
    z-index: 1;
  }

  /* Header */
  .sth16__head {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 56px;
  }

  .sth16__head h2 {
    margin: 0 0 14px;
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.15;
  }

  .sth16__head p {
    margin: 0;
    font-size: clamp(14px, 1.4vw, 17px);
    color: color-mix(in srgb, var(--textColor1) 60%, transparent);
    line-height: 1.7;
  }

  /* Stats grid */
  .sth16__grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
  }

  /* Stat block */
  .sth16__stat {
    position: relative;
    flex: 1;
    min-width: 180px;
    max-width: 260px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 32px 24px;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }

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

  /* Hover pulse ring */
  .sth16__pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80px;
    height: 80px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1.5px solid var(--secondStyleColor);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }

  .sth16__stat:hover .sth16__pulse {
    opacity: 0.25;
    animation: sth16-pulseRing 1.2s ease-out infinite;
  }

  @keyframes sth16-pulseRing {
    0% {
      transform: translate(-50%, -50%) scale(0.8);
      opacity: 0.3;
    }
    100% {
      transform: translate(-50%, -50%) scale(2);
      opacity: 0;
    }
  }

  /* Icon */
  .sth16__icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--secondStyleColor);
    background: color-mix(in srgb, var(--secondStyleColor) 10%, transparent);
    border: 1px solid color-mix(in srgb, var(--secondStyleColor) 18%, transparent);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .sth16__stat:hover .sth16__icon {
    transform: scale(1.1);
    box-shadow: 0 6px 20px color-mix(in srgb, var(--secondStyleColor) 20%, transparent);
  }

  /* Number */
  .sth16__number {
    display: flex;
    align-items: baseline;
    gap: 2px;
  }

  .sth16__counter {
    font-size: clamp(36px, 5vw, 52px);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--textColor1);
    font-variant-numeric: tabular-nums;
  }

  .sth16__suffix {
    font-size: clamp(18px, 2vw, 24px);
    font-weight: 700;
    color: var(--secondStyleColor);
  }

  /* Label */
  .sth16__label {
    margin: 0;
    font-size: 14px;
    font-weight: 500;
    color: color-mix(in srgb, var(--textColor1) 55%, transparent);
    letter-spacing: 0.02em;
  }

  /* Divider */
  .sth16__divider {
    width: 1px;
    height: 80px;
    background: linear-gradient(
      to bottom,
      transparent,
      color-mix(in srgb, var(--secondStyleColor) 18%, transparent),
      transparent
    );
    flex-shrink: 0;
  }

  /* Reduced motion */
  @media (prefers-reduced-motion: reduce) {
    .sth16__bar {
      animation: none;
    }
    .sth16__pulse {
      animation: none !important;
    }
    .sth16__icon {
      transition: none;
    }
    .sth16__stat {
      opacity: 1;
      transform: none;
      transition: none;
    }
  }

  /* Responsive -- tablet */
  @media (max-width: 900px) {
    .sth16__grid {
      gap: 0;
    }
    .sth16__stat {
      min-width: 140px;
      padding: 24px 16px;
    }
  }

  /* Responsive -- mobile */
  @media (max-width: 600px) {
    .sth16__grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 8px;
    }
    .sth16__divider {
      display: none;
    }
    .sth16__stat {
      max-width: none;
      padding: 24px 16px;
    }
    .sth16__bars {
      opacity: 0.02;
    }
  }



  /* ===========================
     FAQ 12 — Aurora Cascade
     Staggered glass grid + animated SVG waves + shimmer accents
     =========================== */

  .faq12 {
    position: relative;
    padding: clamp(56px, 6vw, 100px) 0;
    overflow: hidden;
    color: var(--textColor1);
    background: var(--bodyBG);
  }

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

  /* Floating glow blobs */
  .faq12__glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(120px);
    will-change: transform;
  }

  .faq12__glow--1 {
    width: 460px;
    height: 460px;
    background: var(--secondStyleColor);
    opacity: 0.06;
    top: -100px;
    right: -80px;
    animation: faq12-drift1 28s ease-in-out infinite;
  }

  .faq12__glow--2 {
    width: 380px;
    height: 380px;
    background: var(--secondStyleColor);
    opacity: 0.05;
    bottom: -80px;
    left: -60px;
    animation: faq12-drift2 33s ease-in-out infinite;
  }

  @keyframes faq12-drift1 {
    0%,
    100% {
      transform: translate(0, 0) scale(1);
    }
    33% {
      transform: translate(-50px, 60px) scale(1.1);
    }
    66% {
      transform: translate(30px, -40px) scale(0.95);
    }
  }

  @keyframes faq12-drift2 {
    0%,
    100% {
      transform: translate(0, 0) scale(1);
    }
    33% {
      transform: translate(40px, -30px) scale(1.08);
    }
    66% {
      transform: translate(-60px, 50px) scale(0.93);
    }
  }

  /* Header */
  .faq12__head {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 10px;
    margin-bottom: 48px;
    text-align: center;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
  }

  .faq12__eyebrow {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--secondStyleColor);
  }

  .faq12__title {
    margin: 0;
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.1;
  }

  .faq12__sub {
    margin: 0;
    color: var(--textColor1);
    line-height: 1.55;
  }

  /* Grid — two columns, right column offset for cascade effect */
  .faq12__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
    max-width: 920px;
    margin: 0 auto;
  }

  .faq12__col {
    display: flex;
    flex-direction: column;
    gap: 22px;
  }

  .faq12__col--offset {
    padding-top: 52px;
  }

  /* Card */
  .faq12__card {
    position: relative;
    padding: 28px 26px 26px;
    border-radius: var(--borderRadius);
    background: linear-gradient(
      165deg,
      color-mix(in srgb, var(--secondStyleColor) 5%, transparent) 0%,
      color-mix(in srgb, var(--bodyBG) 85%, transparent) 40%,
      color-mix(in srgb, var(--secondStyleColor) 3%, transparent) 100%
    );
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid
      color-mix(in srgb, var(--secondStyleColor) 14%, transparent);
    overflow: hidden;
    transition:
      transform 0.45s cubic-bezier(0.33, 1, 0.53, 1),
      border-color 0.4s ease,
      box-shadow 0.45s ease;
    animation: faq12-float 8s ease-in-out infinite;
    animation-delay: var(--float-delay);
    will-change: transform;
  }

  .faq12__card:hover {
    transform: translateY(-6px);
    border-color: color-mix(in srgb, var(--secondStyleColor) 40%, transparent);
    box-shadow:
      0 12px 40px color-mix(in srgb, var(--secondStyleColor) 14%, transparent),
      0 0 0 1px color-mix(in srgb, var(--secondStyleColor) 8%, transparent);
    animation-play-state: paused;
  }

  @keyframes faq12-float {
    0%,
    100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-6px);
    }
  }

  /* Shimmer accent line at top of card */
  .faq12__accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(
      90deg,
      transparent 0%,
      color-mix(in srgb, var(--secondStyleColor) 40%, transparent) 30%,
      var(--secondStyleColor) 50%,
      color-mix(in srgb, var(--secondStyleColor) 40%, transparent) 70%,
      transparent 100%
    );
    background-size: 200% 100%;
    animation: faq12-shimmer 4s ease-in-out infinite;
    opacity: 0.5;
    transition: opacity 0.4s ease;
  }

  .faq12__card:hover .faq12__accent {
    opacity: 1;
  }

  @keyframes faq12-shimmer {
    0% {
      background-position: 200% 0;
    }
    100% {
      background-position: -200% 0;
    }
  }

  /* Number badge */
  .faq12__num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: color-mix(in srgb, var(--secondStyleColor) 14%, transparent);
    border: 1px solid
      color-mix(in srgb, var(--secondStyleColor) 30%, transparent);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--secondStyleColor);
    margin-bottom: 18px;
    animation: faq12-breathe 3.5s ease-in-out infinite;
  }

  @keyframes faq12-breathe {
    0%,
    100% {
      box-shadow: 0 0 0 0
        color-mix(in srgb, var(--secondStyleColor) 20%, transparent);
    }
    50% {
      box-shadow: 0 0 18px 4px
        color-mix(in srgb, var(--secondStyleColor) 12%, transparent);
    }
  }

  /* Question */
  .faq12__question {
    margin: 0 0 10px;
    font-size: clamp(15px, 2vw, 18px);
    font-weight: 600;
    line-height: 1.35;
  }

  /* Answer */
  .faq12__answer {
    margin: 0;
    color: var(--textColor1);
    line-height: 1.6;
    opacity: 0.78;
    transition: opacity 0.3s ease;
  }

  .faq12__card:hover .faq12__answer {
    opacity: 1;
  }

  /* Reduced motion */
  @media (prefers-reduced-motion: reduce) {
    .faq12__bg * {
      animation: none !important;
    }
    .faq12__glow {
      animation: none !important;
    }
    .faq12__card {
      animation: none !important;
    }
    .faq12__accent {
      animation: none !important;
    }
    .faq12__num {
      animation: none !important;
    }
  }

  /* Responsive — tablets */
  @media (max-width: 950px) {
    .faq12__grid {
      gap: 18px;
    }
    .faq12__col--offset {
      padding-top: 36px;
    }
    .faq12__card {
      padding: 24px 22px 22px;
    }
  }

  /* Responsive — small tablets */
  @media (max-width: 800px) {
    .faq12__grid {
      grid-template-columns: 1fr;
      max-width: 560px;
    }
    .faq12__col--offset {
      padding-top: 0;
    }
  }

  /* Responsive — mobile */
  @media (max-width: 600px) {
    .faq12__card {
      padding: 22px 18px 20px;
    }
    .faq12__num {
      width: 36px;
      height: 36px;
      font-size: 12px;
      margin-bottom: 14px;
    }
  }



  .ft5 {
    position: relative;
    padding: 0 0 20px;
    color: var(--textColor1);
  }

  .ft5__accent {
    height: 3px;
    background: linear-gradient(
      90deg,
      transparent 0%,
      var(--secondStyleColor) 30%,
      var(--secondStyleColor) 70%,
      transparent 100%
    );
    margin-bottom: 32px;
  }

  .ft5__top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 32px;
    padding-bottom: 24px;
  }

  .ft5__brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .ft5__logo {
    color: var(--textColor1);
    text-decoration: none;
    font-weight: 700;
  }

  .ft5__social {
    display: flex;
    gap: 12px;
  }

  .ft5__social a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--borderRadius);
    background: color-mix(in srgb, var(--secondStyleColor) 10%, transparent);
    color: var(--textColor1);
    text-decoration: none;
    font-size: 15px;
    transition:
      background 0.2s ease,
      color 0.2s ease,
      transform 0.2s ease;
  }

  .ft5__social a:hover {
    background: color-mix(in srgb, var(--secondStyleColor) 25%, transparent);
    color: var(--secondStyleColor);
    transform: translateY(-2px);
  }

  .ft5__nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: flex-start;
    justify-content: flex-end;
    row-gap: 8px;
  }

  .ft5__nav a {
    padding: 6px 16px;
    border-radius: var(--borderRadius);
    border: 1px solid color-mix(in srgb, var(--textColor1) 20%, transparent);
    color: var(--textColor1);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.04em;
    transition:
      border-color 0.2s ease,
      color 0.2s ease,
      background 0.2s ease;
  }

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

  .ft5__bottom {
    border-top: 1px solid color-mix(in srgb, var(--textColor2) 12%, transparent);
    padding-top: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
  }

  .ft5__copy {
    font-size: 13px;
    color: var(--textColor1);
    margin: 0;
  }

  .ft5__email {
    font-size: 13px;
    color: var(--textColor1);
    margin: 0;
  }

  @media (max-width: 950px) {
    .ft5__top {
      flex-direction: column;
      gap: 24px;
    }

    .ft5__nav {
      justify-content: flex-start;
    }
  }

  @media (max-width: 800px) {
    .ft5__bottom {
      flex-direction: column;
      align-items: flex-start;
      gap: 8px;
    }
  }

  @media (max-width: 600px) {
    .ft5__accent {
      margin-bottom: 24px;
    }

    .ft5__nav {
      gap: 6px;
    }

    .ft5__nav a {
      padding: 5px 12px;
      font-size: 12px;
    }

    .ft5__social a {
      width: 32px;
      height: 32px;
      font-size: 14px;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .ft5__social a,
    .ft5__nav a {
      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}