
:root {
  --bg: #11100d;
  --bg-card: #27241c;
  --text: #eae9e6;
  --text-muted: rgba(255,255,255,0.5);
  --accent: #27ecdc;
  --accent-rgb: 39,236,220;
  --accent2: #5927ec;
  --accent2-rgb: 89,39,236;
  --accent3: #3eee4d;
  --accent3-rgb: 62,238,77;
  --border: rgba(255,255,255,0.08);
  --radius: 12px;
  --font: 'DM Sans', sans-serif;
  --font-heading: 'DM Sans', sans-serif;
  --bodyBG: #11100d;
  --textColor1: #eae9e6;
  --textColor2: #111111;
  --textSecondary: #b4b3b0;
  --textMuted: #7e7d7a;
  --secondStyleColor: #27ecdc;
  --bgCard: #27241c;
  --bgAlt: #22211e;
  --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;
}


.hd8 {
  background: var(--secondStyleColor);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}
.hd8__wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
}
.hd8__logo {
  font-size: 22px;
  font-weight: 800;
  color: var(--textColor2);
  text-decoration: none;
  letter-spacing: .02em;
}

/* Nav anchors */
.hd8__nav ul {
  display: flex;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.hd8__link {
  color: var(--textColor2);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  opacity: .85;
  transition: opacity .2s ease;
}
.hd8__link:hover {
  opacity: 1;
}

/* CTA button */
.hd8__cta {
  display: inline-block;
  padding: 8px 22px;
  background: var(--textColor2);
  color: var(--secondStyleColor) !important;
  font-size: 13px;
  font-weight: 700;
  border-radius: 6px;
  text-decoration: none !important;
  transition: opacity .2s ease;
  white-space: nowrap;
}
.hd8__cta:hover {
  opacity: .85;
}

/* Burger */
.hd8__burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.hd8__burger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--textColor2);
  border-radius: 2px;
  transition: all .3s ease;
  margin: 0 auto;
}
.hd8__burger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hd8__burger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hd8__burger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Dropdown */
.hd8__dropdown {
  position: absolute;
  top: 100%;
  right: 20px;
  background: var(--bodyBG);
  border: 1px solid rgba(128,128,128,.15);
  border-radius: var(--borderRadius);
  box-shadow: 0 8px 30px rgba(0,0,0,.18);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all .25s ease;
  z-index: 99;
  min-width: 200px;
}
.hd8__dropdown.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.hd8__dropdown ul {
  list-style: none;
  padding: 8px 0;
  margin: 0;
}
.hd8__dropdown li + li {
  border-top: 1px solid rgba(128,128,128,.08);
}
.hd8__dropdown a {
  display: block;
  padding: 10px 20px;
  color: var(--textColor1);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all .15s ease;
  white-space: nowrap;
}
.hd8__dropdown a:hover {
  background: rgba(128,128,128,.08);
  color: var(--secondStyleColor);
}

@media (max-width: 600px) {
  .hd8__nav { display: none; }
  .hd8__cta { display: none; }
}



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

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

  /* ── Dimmer ── */
  .hr30__dim {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
      radial-gradient(
        ellipse at 30% 30%,
        color-mix(in srgb, var(--bodyBG) 55%, transparent),
        transparent 60%
      ),
      color-mix(in srgb, var(--bodyBG) 72%, transparent);
  }

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

  .hr30__spark {
    fill: var(--textColor1);
  }

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

  .hr30__body {
    text-align: center;
  }

  .hr30__body h1 {
    font-size: clamp(32px, 5.2vw, 58px);
    font-weight: 800;
    color: var(--textColor1);
    line-height: 1.1;
    margin: 0 0 20px;
    letter-spacing: -0.02em;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }

  .hr30__sub {
    font-size: clamp(15px, 1.6vw, 18px);
    color: color-mix(in srgb, var(--textColor1) 62%, transparent);
    line-height: 1.7;
    max-width: 540px;
    margin: 0 auto 36px;
  }

  /* ── Button ── */
  .hr30__cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 36px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    color: var(--textColor2);
    background: var(--secondStyleColor);
    border-radius: var(--borderRadius);
    transition: all 0.25s ease;
  }

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

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

  .hr30__cta:hover i {
    transform: translateX(3px);
  }

  /* ── Cards ── */
  .hr30__cards {
    display: flex;
    gap: 24px;
    max-width: 820px;
    margin: 56px auto 0;
    text-align: left;
  }

  .hr30__card {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    padding: 32px 28px;
    background: color-mix(in srgb, var(--bodyBG) 45%, transparent);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid color-mix(in srgb, var(--textColor1) 10%, transparent);
    border-radius: var(--borderRadius);
    transition: all 0.3s ease;
  }

  .hr30__card:hover {
    transform: translateY(-4px);
    border-color: color-mix(in srgb, var(--secondStyleColor) 28%, transparent);
    box-shadow: 0 16px 48px color-mix(in srgb, var(--bodyBG) 50%, transparent);
  }

  .hr30__card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: color-mix(in srgb, var(--secondStyleColor) 14%, transparent);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondStyleColor);
    font-size: 20px;
    margin-bottom: 18px;
  }

  .hr30__card h3 {
    font-size: 19px;
    font-weight: 700;
    color: var(--textColor1);
    margin: 0 0 10px;
  }

  .hr30__card p {
    font-size: 14px;
    color: color-mix(in srgb, var(--textColor1) 55%, transparent);
    line-height: 1.65;
    margin: 0;
    text-align: center;
  }

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

  @media (max-width: 800px) {
    .hr30__cards {
      flex-direction: column;
      max-width: 420px;
    }
  }

  @media (max-width: 600px) {
    .hr30 {
      padding: 80px 16px 48px;
      min-height: 100svh;
    }
    .hr30__body h1 {
      font-size: clamp(28px, 7vw, 40px);
    }
    .hr30__cta {
      width: 100%;
      justify-content: center;
    }
    .hr30__card {
      padding: 24px 20px;
    }
  }

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



  :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;
    color: var(--textColor1);
  }

  .toc {
    background-color: transparent;
  }

  .toc .swiper-wrapper {
    padding-top: 36px;
    padding-bottom: 24px;
    position: relative;
  }

  .toc .swiper-wrapper::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg,
      transparent,
      color-mix(in srgb, var(--secondStyleColor) 30%, transparent) 10%,
      color-mix(in srgb, var(--secondStyleColor) 30%, transparent) 90%,
      transparent
    );
    transform: translateY(-50%);
    pointer-events: none;
  }

  .toc a {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.4;
    white-space: nowrap;
    color: color-mix(in srgb, var(--textColor1) 65%, transparent);
    padding: 28px 24px 10px;
    border-radius: 0;
    background-color: var(--itemBgColor);
    border: none;
    transition: color 0.3s ease;
    -webkit-transition: color 0.3s ease;
    -moz-transition: color 0.3s ease;
    -ms-transition: color 0.3s ease;
    -o-transition: color 0.3s ease;
  }

  .toc a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%) scale(1);
    width: 12px;
    height: 12px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    background: color-mix(in srgb, var(--secondStyleColor) 60%, transparent);
    border: 2px solid var(--secondStyleColor);
    box-shadow: 0 0 0 4px color-mix(in srgb, var(--secondStyleColor) 10%, transparent);
    transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
    -webkit-transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
    -moz-transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
    -ms-transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
    -o-transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
  }

  .toc a::after {
    content: "";
    position: absolute;
    top: 18px;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 8px;
    background: color-mix(in srgb, var(--secondStyleColor) 40%, transparent);
    transition: background-color 0.3s ease;
    -webkit-transition: background-color 0.3s ease;
    -moz-transition: background-color 0.3s ease;
    -ms-transition: background-color 0.3s ease;
    -o-transition: background-color 0.3s ease;
  }

  .toc a:hover,
  .toc a:focus {
    color: var(--textColor1);
  }

  .toc a:hover::before,
  .toc a:focus::before {
    transform: translateX(-50%) scale(1.35);
    background: var(--secondStyleColor);
    box-shadow: 0 0 0 6px color-mix(in srgb, var(--secondStyleColor) 20%, transparent),
                0 0 16px color-mix(in srgb, var(--secondStyleColor) 30%, transparent);
  }

  .toc a:hover::after,
  .toc a:focus::after {
    background: var(--secondStyleColor);
  }

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

    .toc a:hover::before {
      transform: translateX(-50%) scale(1);
    }
  }



  #slots { padding: 80px 0; }
  .sl8-head { text-align: center; margin-bottom: 50px; }
  .sl8-head p { color: var(--textSecondary); margin-top: 12px; max-width: 550px; margin-left: auto; margin-right: auto; }
  .sl8-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
  }
  .sl8-grid .slot-card {
    border-radius: var(--borderRadius);
    overflow: hidden;
    background: var(--cardBG);
    transition: transform 0.2s;
  }
  .sl8-grid .slot-card:hover { transform: scale(1.05); }
  .sl8-grid .slot-card__img { aspect-ratio: 1; overflow: hidden; }
  .sl8-grid .slot-card__img img { width: 100%; height: 100%; object-fit: cover; }
  .sl8-grid .slot-card__body { padding: 8px 10px; }
  .sl8-grid .slot-card__body h3 { font-size: 13px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; margin-bottom: 0; }
  .sl8-grid .slot-card__body p { font-size: 11px; color: var(--textSecondary); }
  @media (max-width: 900px) { .sl8-grid { grid-template-columns: repeat(4, 1fr); } }
  @media (max-width: 600px) { .sl8-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; } }



  /* ===========================
     Reviews 16 — Infinite Marquee
     Two auto-scrolling rows in opposite directions,
     glass cards, animated SVG background
     =========================== */

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

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

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

  .rv16__glow--1 {
    width: 420px;
    height: 420px;
    background: var(--secondStyleColor);
    opacity: 0.06;
    top: -80px;
    left: -60px;
    animation: rv16-drift1 26s ease-in-out infinite;
  }

  .rv16__glow--2 {
    width: 360px;
    height: 360px;
    background: var(--secondStyleColor);
    opacity: 0.05;
    bottom: -60px;
    right: -80px;
    animation: rv16-drift2 30s ease-in-out infinite;
  }

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

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

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

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

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

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

  /* Marquee container */
  .rv16__marquee {
    padding: 10px 0;
    position: relative;
    z-index: 1;
    overflow: hidden;
    width: 100%;
    -webkit-mask-image: linear-gradient(
      90deg,
      transparent 0%,
      #000 8%,
      #000 92%,
      transparent 100%
    );
    mask-image: linear-gradient(
      90deg,
      transparent 0%,
      #000 8%,
      #000 92%,
      transparent 100%
    );
  }

  .rv16__marquee + .rv16__marquee {
    margin-top: 20px;
  }

  /* Track */
  .rv16__track {
    display: flex;
    gap: 20px;
    width: max-content;
    will-change: transform;
  }

  .rv16__track--left {
    animation: rv16-scroll-left 45s linear infinite;
  }

  .rv16__track--right {
    animation: rv16-scroll-right 45s linear infinite;
  }

  .rv16__marquee:hover .rv16__track {
    animation-play-state: paused;
  }

  @keyframes rv16-scroll-left {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc(-50% - 10px));
    }
  }

  @keyframes rv16-scroll-right {
    0% {
      transform: translateX(calc(-50% - 10px));
    }
    100% {
      transform: translateX(0);
    }
  }

  /* Card */
  .rv16__card {
    flex-shrink: 0;
    width: 360px;
    padding: 26px 24px 24px;
    border-radius: var(--borderRadius);
    background: linear-gradient(
      165deg,
      color-mix(in srgb, var(--secondStyleColor) 5%, transparent) 0%,
      color-mix(in srgb, var(--bodyBG) 82%, 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);
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition:
      border-color 0.35s ease,
      box-shadow 0.35s ease,
      transform 0.35s ease;
  }

  .rv16__card:hover {
    border-color: color-mix(in srgb, var(--secondStyleColor) 45%, transparent);
    box-shadow:
      0 8px 32px color-mix(in srgb, var(--secondStyleColor) 12%, transparent),
      0 0 0 1px color-mix(in srgb, var(--secondStyleColor) 6%, transparent);
    transform: translateY(-4px);
  }

  /* Stars */
  .rv16__stars {
    display: flex;
    gap: 3px;
    font-size: 14px;
    color: var(--secondStyleColor);
  }

  /* Text */
  .rv16__text {
    margin: 0;
    font-size: 14px;
    line-height: 1.7;
    color: var(--textColor1);
    opacity: 0.85;
    flex: 1;
  }

  /* Author row */
  .rv16__author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
    padding-top: 4px;
  }

  .rv16__avatar {
    flex-shrink: 0;
    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) 35%, transparent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--secondStyleColor);
  }

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

  .rv16__role {
    margin: 0;
    font-size: 12px;
    color: var(--textColor1);
    opacity: 0.6;
    line-height: 1.4;
  }

  /* Reduced motion */
  @media (prefers-reduced-motion: reduce) {
    .rv16__track {
      animation: none !important;
    }
    .rv16__bg * {
      animation: none !important;
    }
    .rv16__glow {
      animation: none !important;
    }
  }

  /* Responsive — tablets */
  @media (max-width: 950px) {
    .rv16__card {
      width: 320px;
      padding: 22px 20px 20px;
    }
    .rv16__track--left {
      animation-duration: 38s;
    }
    .rv16__track--right {
      animation-duration: 38s;
    }
  }

  /* Responsive — small tablets */
  @media (max-width: 800px) {
    .rv16__card {
      width: 300px;
    }
  }

  /* Responsive — mobile */
  @media (max-width: 600px) {
    .rv16__card {
      width: 280px;
      padding: 20px 18px 18px;
    }
    .rv16__track--left {
      animation-duration: 30s;
    }
    .rv16__track--right {
      animation-duration: 30s;
    }
    .rv16__marquee + .rv16__marquee {
      margin-top: 14px;
    }
  }



  /* ===== ROADMAP v7 — Progress bar + accordion phases ===== */

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

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

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

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

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

  /* Progress bar */
  .rm7__progress {
    position: relative;
    max-width: 600px;
    margin: 0 auto 44px;
    height: 4px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.06);
  }

  .rm7__progress-fill {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 62%;
    border-radius: 4px;
    background: linear-gradient(
      90deg,
      var(--secondStyleColor),
      color-mix(in srgb, var(--secondStyleColor) 50%, transparent)
    );
  }

  .rm7__progress-dots {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    pointer-events: none;
  }

  .rm7__pdot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.15);
  }

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

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

  /* Accordion list */
  .rm7__list {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

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

  .rm7__item[open] {
    border-color: color-mix(in srgb, var(--secondStyleColor) 30%, transparent);
  }

  .rm7__summary {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 22px;
    cursor: pointer;
    list-style: none;
    user-select: none;
    -webkit-user-select: none;
  }

  .rm7__summary::-webkit-details-marker {
    display: none;
  }

  .rm7__num {
    font-size: 13px;
    font-weight: 700;
    color: var(--secondStyleColor);
    opacity: 0.5;
    flex-shrink: 0;
  }

  .rm7__label {
    font-size: 16px;
    font-weight: 600;
    flex: 1;
  }

  .rm7__status {
    font-size: 11px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 100px;
    border: 1px solid
      color-mix(in srgb, var(--secondStyleColor) 18%, transparent);
    color: color-mix(in srgb, var(--textColor1) 50%, transparent);
    flex-shrink: 0;
  }

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

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

  .rm7__arrow {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    position: relative;
  }

  .rm7__arrow::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    border-right: 2px solid
      color-mix(in srgb, var(--textColor1) 40%, transparent);
    border-bottom: 2px solid
      color-mix(in srgb, var(--textColor1) 40%, transparent);
    transform: translate(-50%, -70%) rotate(45deg);
    transition: transform 0.25s ease;
  }

  .rm7__item[open] .rm7__arrow::before {
    transform: translate(-50%, -30%) rotate(-135deg);
  }

  /* Body content */
  .rm7__body {
    display: flex;
    gap: 16px;
    padding: 0 22px 22px;
    align-items: flex-start;
  }

  .rm7__ico {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: color-mix(in srgb, var(--secondStyleColor) 10%, transparent);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .rm7__ico i {
    font-size: 16px;
    color: var(--secondStyleColor);
  }

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

  .rm7__checks {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 7px;
  }

  .rm7__checks li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
  }

  .rm7__checks i {
    font-size: 11px;
    color: var(--secondStyleColor);
    width: 14px;
    text-align: center;
  }

  /* Responsive */
  @media (max-width: 950px) {
    .rm7__progress {
      max-width: 100%;
    }
  }

  @media (max-width: 800px) {
    .rm7__label {
      font-size: 15px;
    }

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

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

    .rm7__head {
      margin-bottom: 30px;
    }

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

    .rm7__summary {
      padding: 16px 16px;
      gap: 10px;
    }

    .rm7__body {
      padding: 0 16px 18px;
      flex-direction: column;
    }

    .rm7__status {
      display: none;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .rm7__item,
    .rm7__arrow::before {
      transition: none;
    }
  }



  /* ===== PLANS v15 — Split intro + vertical card stack with connectors ===== */

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

  .pl15__layout {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: clamp(36px, 5vw, 70px);
    align-items: start;
  }

  /* Intro */
  .pl15__intro {
    position: sticky;
    top: 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

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

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

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

  .pl15__stats {
    display: flex;
    gap: 24px;
    margin-top: 12px;
  }

  .pl15__stat {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }

  .pl15__stat strong {
    font-size: 22px;
    font-weight: 800;
    color: var(--secondStyleColor);
  }

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

  /* Cards column */
  .pl15__cards {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  /* Card */
  .pl15__card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: clamp(22px, 3vw, 30px);
    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;
  }

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

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

  .pl15__card--featured:hover {
    border-color: color-mix(in srgb, var(--secondStyleColor) 45%, transparent);
  }

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

  .pl15__card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
  }

  .pl15__card-top h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
  }

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

  .pl15__price {
    display: flex;
    align-items: baseline;
    gap: 2px;
    flex-shrink: 0;
  }

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

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

  .pl15__divider {
    height: 1px;
    background: color-mix(in srgb, var(--secondStyleColor) 8%, transparent);
  }

  .pl15__feats {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }

  .pl15__feats span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: color-mix(in srgb, var(--textColor1) 72%, transparent);
  }

  .pl15__feats i {
    font-size: 10px;
    color: var(--secondStyleColor);
  }

  .pl15__btn {
    display: block;
    text-align: center;
    padding: 11px 24px;
    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;
    transition: background 0.2s ease, transform 0.2s ease;
    margin-top: auto;
  }

  .pl15__btn:hover {
    background: color-mix(in srgb, var(--secondStyleColor) 8%, transparent);
    transform: translateY(-1px);
  }

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

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

  /* Connector */
  .pl15__connector {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 4px 0;
  }

  .pl15__dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: color-mix(in srgb, var(--secondStyleColor) 25%, transparent);
  }

  .pl15__line {
    width: 1px;
    height: 16px;
    background: color-mix(in srgb, var(--secondStyleColor) 15%, transparent);
  }

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

    .pl15__intro {
      position: static;
      text-align: center;
      align-items: center;
    }

    .pl15__stats {
      justify-content: center;
    }
  }

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

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

    .pl15__card {
      padding: 20px;
    }

    .pl15__card-top {
      flex-direction: column;
    }

    .pl15__stats {
      gap: 18px;
    }
  }

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



  /*  */
  #features .container {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(2, 1fr);
    place-items: center;
    gap: 20px;
  }
  .wrulefaj {
    width: 500px;
    height: 600px;
    && img {
      width: 100%;
      height: 100%;
      border-radius: var(--borderRadius);
      object-fit: cover;
      object-position: 50% 20%;
    }
  }

  .ksadvljka {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    && .ljawhfjk {
      width: 60%;
      background-color: var(--secondStyleColor);
      height: 1px;
    }

    && h2 {
      width: 100%;
      text-align: flex-start;
    }

    && p {
      width: 100%;
    }

    && a {
      padding: 12px 60px;
      border: 3px solid var(--secondStyleColor);
      border-radius: var(--borderRadius);
      color: var(--textColor1);
      transition: 0.2s all linear;
      width: 100%;
      text-align: center;
      font-size: 20px;
      &&:hover {
        border: 3px dotted var(--secondStyleColor);
      }
    }
  }

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

  .fcoooo {
    background-color: var(--secondStyleColor);
    padding: 20px;
    color: var(--textColor2);
    border-radius: var(--borderRadius);
    width: fit-content;
    display: flex;
    width: 200px;
    flex-direction: column;
    align-items: center;
    transition: 0.3s all linear;
    gap: 20px;
    &&:hover {
      transform: translateY(-3px);
    }
    && span {
      font-size: 34px;
      font-weight: 900;
    }
    && p {
      text-align: center;
    }
  }

  @media (max-width: 800px) {
    #features .container {
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;
    }
    .ksadvljka {
      && h2,
      p {
        text-align: center;
      }
      && .ljawhfjk {
        width: 80%;
        margin: 0 auto;
      }
    }
    .wrulefaj {
      width: 100%;
      height: 300px;
    }
    .fcsardjarwi {
      width: 100%;
      display: flex;
      flex-direction: column;
      && .fcoooo {
        width: 100%;
      }
    }
  }



  /* ===== ABOUT v15 — Hero image with overlay + SVG hatch bg + feature row ===== */

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

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

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

  /* Hero */
  .ab15__hero {
    position: relative;
    border-radius: calc(var(--borderRadius) * 1.4);
    overflow: hidden;
    aspect-ratio: 21 / 9;
    margin-bottom: 50px;
  }

  .ab15__hero-img {
    position: absolute;
    inset: 0;
  }

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

  .ab15__hero:hover .ab15__hero-img img {
    transform: scale(1.03);
  }

  .ab15__hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.15) 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: clamp(24px, 4vw, 48px);
    gap: 10px;
  }

  .ab15__kicker {
    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;
    background: color-mix(in srgb, var(--secondStyleColor) 15%, transparent);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }

  .ab15__hero h2 {
    margin: 0;
    font-size: clamp(24px, 3.8vw, 44px);
    font-weight: 700;
    letter-spacing: -0.02em;
    max-width: 600px;
    line-height: 1.15;
    color: var(--textColor1);
  }

  /* Body */
  .ab15__body {
    max-width: 960px;
    margin: 0 auto;
  }

  .ab15__desc {
    text-align: center;
    font-size: 16px;
    line-height: 1.7;
    color: color-mix(in srgb, var(--textColor1) 72%, transparent);
    max-width: 680px;
    margin: 0 auto 48px;
  }

  /* Feature row */
  .ab15__features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
  }

  .ab15__feat {
    text-align: center;
    padding: 24px 16px;
    border-radius: var(--borderRadius);
    border: 1px solid color-mix(in srgb, var(--secondStyleColor) 10%, transparent);
    background: rgba(255, 255, 255, 0.025);
    transition: transform 0.3s ease, border-color 0.3s ease;
  }

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

  .ab15__feat-ico {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: color-mix(in srgb, var(--secondStyleColor) 10%, transparent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    transition: transform 0.3s ease;
  }

  .ab15__feat:hover .ab15__feat-ico {
    transform: scale(1.12);
  }

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

  .ab15__feat h3 {
    margin: 0 0 6px;
    font-size: 15px;
    font-weight: 600;
  }

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

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

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

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

    .ab15__desc {
      font-size: 14px;
    }

    .ab15__feat h3 {
      font-size: 14px;
    }
  }

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

    .ab15__hero {
      aspect-ratio: 16 / 10;
      margin-bottom: 36px;
    }

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

    .ab15__desc {
      margin-bottom: 32px;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .ab15__hero-img img,
    .ab15__feat,
    .ab15__feat-ico {
      transition: none;
    }
  }



  /* ===== MOBILE v4 — Card layout with stats ===== */

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

  .mob4 > .container {
    max-width: var(--maxWidthContainer);
    margin: 0 auto;
  }

  .mob4__card {
    display: flex;
    align-items: center;
    gap: 50px;
    background: var(--bgCard);
    border-radius: calc(var(--borderRadius) * 2);
    padding: 50px;
    border: 1px solid rgba(255,255,255,0.06);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    overflow: hidden;
  }

  /* Content */
  .mob4__content {
    flex: 1;
    min-width: 0;
  }

  .mob4__content h2 {
    margin: 0 0 16px;
    font-weight: 700;
  }

  .mob4__content > p {
    margin: 0 0 30px;
    line-height: 1.7;
    color: var(--textSecondary);
  }

  /* Stats */
  .mob4__stats {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
  }

  .mob4__stat {
    text-align: center;
  }

  .mob4__stat h3 {
    margin: 0 0 4px;
    font-size: 28px;
    font-weight: 700;
    color: var(--secondStyleColor);
  }

  .mob4__stat p {
    margin: 0;
    font-size: 13px;
    color: var(--textSecondary);
  }

  /* Store buttons */
  .mob4__buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
  }

  .mob4__store {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    background: var(--secondStyleColor);
    color: var(--bodyBG);
    border-radius: var(--borderRadius);
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.2s, opacity 0.2s;
  }

  .mob4__store:hover {
    transform: translateY(-2px);
    opacity: 0.9;
  }

  .mob4__store i {
    font-size: 28px;
  }

  .mob4__store span {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    font-size: 16px;
  }

  .mob4__store small {
    font-size: 11px;
    font-weight: 400;
    opacity: 0.8;
  }

  /* Phone */
  .mob4__device {
    flex-shrink: 0;
  }

  .mob4__phone {
    position: relative;
    width: 260px;
    height: 520px;
    background: linear-gradient(145deg, #2a2a3e, #1a1a2e);
    border-radius: 38px;
    padding: 11px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
  }

  .mob4__notch {
    position: absolute;
    top: 11px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 26px;
    background: #1a1a2e;
    border-radius: 0 0 15px 15px;
    z-index: 3;
  }

  .mob4__screen {
    width: 100%;
    height: 100%;
    border-radius: 29px;
    overflow: hidden;
    background: rgba(255,255,255,0.03);
  }

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

  /* Responsive */
  @media (max-width: 900px) {
    .mob4__card {
      flex-direction: column;
      text-align: center;
      padding: 40px 30px;
    }

    .mob4__stats {
      justify-content: center;
    }

    .mob4__buttons {
      justify-content: center;
    }

    .mob4__phone {
      width: 220px;
      height: 440px;
      border-radius: 32px;
      padding: 10px;
    }

    .mob4__screen {
      border-radius: 24px;
    }

    .mob4__notch {
      width: 90px;
      height: 22px;
      top: 10px;
    }
  }

  @media (max-width: 600px) {
    .mob4__card {
      padding: 30px 20px;
    }

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

    .mob4__phone {
      width: 200px;
      height: 400px;
    }
  }



  #top { padding: 80px 0; }
  .tp8-head { text-align: center; margin-bottom: 50px; }
  .tp8-head h2 { margin-bottom: 12px; }
  .tp8-head p { color: var(--textSecondary); max-width: 600px; margin: 0 auto; }
  .tp8-alt { display: flex; flex-direction: column; gap: 20px; }
  .tp8-alt .top-card {
    display: grid; grid-template-columns: 56px 1fr; gap: 0;
    background: var(--cardBG); border-radius: var(--borderRadius); overflow: hidden;
    border: 1px solid var(--borderSubtle); transition: transform 0.3s, box-shadow 0.3s;
  }
  .tp8-alt .top-card:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(0,0,0,0.25); }
  .tp8-alt .top-card__rank-col {
    background: var(--accentColor); color: var(--textColor2);
    display: flex; align-items: center; justify-content: center;
    font-size: 22px; font-weight: 900;
  }
  .tp8-alt .top-card__content {
    display: flex; align-items: center; gap: 20px; padding: 18px 24px;
  }
  .tp8-alt .top-card__logo {
    flex-shrink: 0; width: 110px; height: 52px; border-radius: 8px;
    display: flex; align-items: center; justify-content: center; overflow: hidden;
  }
  .tp8-alt .top-card__logo img { max-width: 100%; max-height: 100%; object-fit: contain; }
  .tp8-alt .top-card__logo svg { max-width: 100%; max-height: 100%; }
  .tp8-alt .top-card__body { flex: 1; min-width: 0; }
  .tp8-alt .top-card__body h3 { margin-bottom: 2px; }
  .tp8-alt .top-card__body p { color: var(--textSecondary); font-size: 14px; }
  .tp8-alt .top-card__right { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
  .tp8-alt .top-card__rating {
    padding: 6px 14px; border-radius: 8px;
    background: rgba(var(--accent-rgb), 0.12); color: var(--accentColor);
    font-weight: 700; font-size: 15px;
  }
  .tp8-alt .top-card__badge {
    padding: 4px 10px; border-radius: 20px; font-size: 10px; font-weight: 700;
    background: rgba(var(--accent-rgb), 0.2); color: var(--accentColor); text-transform: uppercase;
  }
  .tp8-alt .top-card__badge:empty { display: none; }
  @media (max-width: 768px) {
    .tp8-alt .top-card__content { flex-wrap: wrap; gap: 12px; padding: 14px 16px; }
    .tp8-alt .top-card__right { width: 100%; }
  }



  /* ===== HOW v19 — Three-column rows with sonar nodes ===== */

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

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

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

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

  .hw19__list {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .hw19__row {
    display: grid;
    grid-template-columns: 90px 70px 1fr;
    gap: 0;
    align-items: center;
    padding: 28px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: background 0.3s ease;
  }

  .hw19__row:last-child {
    border-bottom: none;
  }

  .hw19__row:hover {
    background: rgba(255, 255, 255, 0.03);
  }

  /* Left — big number */
  .hw19__left {
    text-align: center;
  }

  .hw19__big {
    font-size: 42px;
    font-weight: 800;
    color: var(--secondStyleColor);
    opacity: 0.15;
    line-height: 1;
    transition: opacity 0.3s ease;
  }

  .hw19__row:hover .hw19__big {
    opacity: 0.4;
  }

  /* Mid — node with sonar */
  .hw19__mid {
    display: flex;
    justify-content: center;
  }

  .hw19__node {
    position: relative;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 1px solid color-mix(in srgb, var(--secondStyleColor) 35%, transparent);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bodyBG);
    z-index: 1;
  }

  .hw19__node i {
    font-size: 16px;
    color: var(--secondStyleColor);
    transition: transform 0.3s ease;
  }

  .hw19__row:hover .hw19__node i {
    transform: scale(1.2);
  }

  /* Sonar pulse */
  .hw19__sonar {
    position: absolute;
    inset: -4px;
    border-radius: 999px;
    border: 1px solid var(--secondStyleColor);
    opacity: 0;
  }

  .hw19__row:hover .hw19__sonar {
    animation: hw19Sonar 1.2s ease-out infinite;
  }

  @keyframes hw19Sonar {
    0% {
      inset: -4px;
      opacity: 0.5;
    }
    100% {
      inset: -22px;
      opacity: 0;
    }
  }

  /* Right — text */
  .hw19__right {
    padding-left: 20px;
  }

  .hw19__right h3 {
    margin: 0 0 6px;
    font-size: 18px;
    font-weight: 600;
  }

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

  /* Responsive */
  @media (max-width: 950px) {
    .hw19__list {
      max-width: 100%;
    }
  }

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

    .hw19__big {
      font-size: 32px;
    }

    .hw19__node {
      width: 38px;
      height: 38px;
    }

    .hw19__node i {
      font-size: 14px;
    }

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

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

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

    .hw19__head {
      margin-bottom: 36px;
    }

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

    .hw19__row {
      grid-template-columns: 1fr;
      text-align: center;
      gap: 14px;
      padding: 24px 16px;
    }

    .hw19__right {
      padding-left: 0;
    }

    .hw19__big {
      font-size: 28px;
    }

    .hw19__node {
      width: 42px;
      height: 42px;
      margin: 0 auto;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .hw19__row:hover .hw19__sonar {
      animation: none;
    }
    .hw19__node i,
    .hw19__big {
      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 11 — Orbital Cards
     Floating cards + orbiting dots + gradient blobs
     =========================== */

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

  /* Animated gradient blobs */
  .faq11__blob {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(100px);
    will-change: transform;
  }

  .faq11__blob--1 {
    width: 500px;
    height: 500px;
    background: var(--secondStyleColor);
    opacity: 0.07;
    top: -120px;
    left: -80px;
    animation: faq11-drift1 25s ease-in-out infinite;
  }

  .faq11__blob--2 {
    width: 400px;
    height: 400px;
    background: var(--secondStyleColor);
    opacity: 0.05;
    bottom: -100px;
    right: -60px;
    animation: faq11-drift2 30s ease-in-out infinite;
  }

  .faq11__blob--3 {
    width: 300px;
    height: 300px;
    background: var(--secondStyleColor);
    opacity: 0.04;
    top: 40%;
    left: 50%;
    animation: faq11-drift3 20s ease-in-out infinite;
  }

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

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

  @keyframes faq11-drift3 {
    0%,
    100% {
      transform: translate(-50%, 0) scale(1);
    }
    50% {
      transform: translate(-50%, -40px) scale(1.15);
    }
  }

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

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

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

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

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

  /* Grid */
  .faq11__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
  }

  /* Card */
  .faq11__card {
    position: relative;
    padding: 32px 28px 28px;
    border-radius: var(--borderRadius);
    background: linear-gradient(
      160deg,
      color-mix(in srgb, var(--secondStyleColor) 6%, transparent) 0%,
      color-mix(in srgb, var(--bodyBG) 90%, transparent) 50%,
      color-mix(in srgb, var(--secondStyleColor) 3%, transparent) 100%
    );
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid
      color-mix(in srgb, var(--secondStyleColor) 12%, transparent);
    transition:
      transform 0.5s cubic-bezier(0.33, 1, 0.53, 1),
      border-color 0.4s ease,
      box-shadow 0.5s ease;
    animation: faq11-float 7s ease-in-out infinite;
    animation-delay: var(--float-delay);
    will-change: transform;
  }

  .faq11__card:hover {
    transform: translateY(-6px);
    border-color: color-mix(in srgb, var(--secondStyleColor) 35%, transparent);
    box-shadow:
      0 8px 32px color-mix(in srgb, var(--secondStyleColor) 12%, transparent),
      0 0 0 1px color-mix(in srgb, var(--secondStyleColor) 6%, transparent);
  }

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

  .faq11__card:hover {
    animation-play-state: paused;
  }

  /* Orbit ring + number */
  .faq11__orbit {
    position: relative;
    width: 62px;
    height: 62px;
    margin-bottom: 20px;
  }

  .faq11__ring {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }

  .faq11__dot {
    transform-origin: 35px 35px;
    animation: faq11-orbit var(--orbit-dur) linear infinite;
    animation-direction: var(--orbit-dir);
    transition: filter 0.3s ease;
  }

  .faq11__card:hover .faq11__dot {
    animation-duration: 2s;
    filter: drop-shadow(0 0 4px var(--secondStyleColor));
  }

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

  .faq11__num {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--secondStyleColor);
  }

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

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

  .faq11__card:hover .faq11__answer {
    opacity: 1;
  }

  /* Decorative line at card bottom */
  .faq11__card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 28px;
    right: 28px;
    height: 1px;
    background: linear-gradient(
      90deg,
      transparent 0%,
      color-mix(in srgb, var(--secondStyleColor) 20%, transparent) 50%,
      transparent 100%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
  }

  .faq11__card:hover::after {
    opacity: 1;
  }

  /* Reduced motion */
  @media (prefers-reduced-motion: reduce) {
    .faq11__blob {
      animation: none !important;
    }
    .faq11__card {
      animation: none !important;
      transition: none !important;
    }
    .faq11__dot {
      animation: none !important;
    }
    .faq11__deco * {
      animation: none !important;
    }
  }

  /* Responsive — tablets */
  @media (max-width: 950px) {
    .faq11__grid {
      gap: 16px;
    }
    .faq11__card {
      padding: 28px 24px 24px;
    }
  }

  /* Responsive — small tablets */
  @media (max-width: 800px) {
    .faq11__grid {
      grid-template-columns: 1fr;
      max-width: 520px;
    }
  }

  /* Responsive — mobile */
  @media (max-width: 600px) {
    .faq11__card {
      padding: 24px 20px 20px;
    }
    .faq11__orbit {
      width: 54px;
      height: 54px;
      margin-bottom: 16px;
    }
    .faq11__num {
      font-size: 13px;
    }
  }



  .ft6 {
    position: relative;
    padding: 56px 20px 24px;
    color: var(--textColor1);
    overflow: hidden;
  }

  /* ── Top Glow ── */
  .ft6__glow {
    position: absolute;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    width: 500px;
    height: 200px;
    border-radius: 50%;
    background: var(--secondStyleColor);
    filter: blur(120px);
    opacity: 0.08;
    pointer-events: none;
  }

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

  /* ── Logo ── */
  .ft6__logo {
    color: var(--textColor1);
    text-decoration: none;
    font-weight: 800;
    font-size: 22px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 16px;
    transition: color 0.2s ease;
  }

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

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

  .ft6__social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: color-mix(in srgb, var(--textColor1) 7%, transparent);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid color-mix(in srgb, var(--textColor1) 10%, transparent);
    color: color-mix(in srgb, var(--textColor1) 70%, transparent);
    text-decoration: none;
    font-size: 16px;
    transition:
      background 0.25s ease,
      color 0.25s ease,
      border-color 0.25s ease,
      transform 0.25s ease;
  }

  .ft6__social a:hover {
    background: color-mix(in srgb, var(--secondStyleColor) 15%, transparent);
    border-color: color-mix(in srgb, var(--secondStyleColor) 35%, transparent);
    color: var(--secondStyleColor);
    transform: translateY(-3px);
  }

  /* ── Divider ── */
  .ft6__divider {
    width: 100%;
    max-width: 300px;
    height: 1px;
    background: linear-gradient(
      90deg,
      transparent,
      color-mix(in srgb, var(--textColor1) 15%, transparent) 30%,
      color-mix(in srgb, var(--secondStyleColor) 40%, transparent) 50%,
      color-mix(in srgb, var(--textColor1) 15%, transparent) 70%,
      transparent
    );
    position: relative;
    margin-bottom: 28px;
  }

  .ft6__diamond {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    width: 7px;
    height: 7px;
    background: var(--secondStyleColor);
    border-radius: 1px;
  }

  /* ── Navigation ── */
  .ft6__nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 28px;
    margin-bottom: 32px;
  }

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

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

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

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

  /* ── Bottom ── */
  .ft6__bottom {
    display: flex;
    align-items: center;
    gap: 24px;
  }

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

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

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

  @media (max-width: 800px) {
    .ft6__nav {
      gap: 20px;
    }

    .ft6__bottom {
      flex-direction: column;
      gap: 6px;
    }
  }

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

    .ft6__nav {
      gap: 16px;
    }

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

    .ft6__social a {
      width: 36px;
      height: 36px;
      font-size: 14px;
    }

    .ft6__glow {
      width: 300px;
      opacity: 0.06;
    }
  }

  /* ── Reduced Motion ── */
  @media (prefers-reduced-motion: reduce) {
    .ft6__social a,
    .ft6__nav a,
    .ft6__nav a::after,
    .ft6__logo {
      transition: none;
    }
  }



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