
:root {
  --bg: #45406d;
  --bg-card: #1a1d27;
  --text: #e4e6ef;
  --text-muted: rgba(255,255,255,0.5);
  --accent: #4d9eea;
  --accent-rgb: 77,158,234;
  --accent2: #cd4dea;
  --accent2-rgb: 205,77,234;
  --accent3: #64edbd;
  --accent3-rgb: 100,237,189;
  --border: rgba(255,255,255,0.08);
  --radius: 12px;
  --font: 'Space Grotesk', sans-serif;
  --font-heading: 'Space Grotesk', sans-serif;
  --bodyBG: #45406d;
  --textColor1: #e4e6ef;
  --textColor2: #111111;
  --textSecondary: #bcbdcf;
  --textMuted: #9593ae;
  --secondStyleColor: #4d9eea;
  --bgCard: #1a1d27;
  --bgAlt: #524d77;
  --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;
    }
  }



  .home {
    min-height: 700px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
  }

  .heroContainer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    h1 {
      text-align: center;
      text-transform: uppercase;
      margin-bottom: 20px;
    }
    p {
      text-align: center;
    }
  }
  .imageWrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 20px;
  }
  .image {
    width: 400px;
    height: 300px;
    border-radius: var(--borderRadius);
    img {
      border-radius: inherit;
      object-position: 50% 20%;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
  }
  .main__bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }
  .btn {
    display: inline-block;
    width: 100%;
    border-radius: 100px;
    font-family: "poppins", sans-serif;
    font-weight: 500;
    text-align: center;
    padding: 16px 20px;
    width: fit-content;
    color: var(--textColor2);
    transition: all 0.4s cubic-bezier(0.075, 0.82, 0.165, 1);
  }
  .btn__fill {
    background-color: var(--secondStyleColor);
  }

  @media (max-width: 800px) {
    .home {
      height: fit-content;
    }
    .imageWrapper {
      display: grid;
      grid-template-columns: repeat(1, 1fr);
    }
    .image {
      width: 300px;
      height: 200px;
    }
  }



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



  #top { padding: 80px 0; }
  .tp4-head { text-align: center; margin-bottom: 50px; }
  .tp4-head h2 { margin-bottom: 12px; }
  .tp4-head p { color: var(--textSecondary); max-width: 600px; margin: 0 auto; }
  .tp4-podium { display: flex; flex-direction: column; gap: 12px; }
  .tp4-podium .top-card {
    display: flex; align-items: center; gap: 20px;
    background: var(--cardBG); border-radius: var(--borderRadius); padding: 18px 24px;
    border: 1px solid var(--borderSubtle); transition: transform 0.3s;
  }
  .tp4-podium .top-card:hover { transform: translateX(6px); }
  .tp4-podium .top-card--gold { border-left: 4px solid #FFD700; background: linear-gradient(90deg, rgba(255,215,0,0.06), var(--cardBG) 40%); }
  .tp4-podium .top-card--silver { border-left: 4px solid #C0C0C0; background: linear-gradient(90deg, rgba(192,192,192,0.06), var(--cardBG) 40%); }
  .tp4-podium .top-card--bronze { border-left: 4px solid #CD7F32; background: linear-gradient(90deg, rgba(205,127,50,0.06), var(--cardBG) 40%); }
  .tp4-podium .top-card__rank {
    flex-shrink: 0; width: 44px; height: 44px; border-radius: 50%;
    background: var(--borderSubtle); color: var(--textColor1);
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; font-weight: 800;
  }
  .tp4-podium .top-card--gold .top-card__rank { background: #FFD700; color: #1a1a1a; }
  .tp4-podium .top-card--silver .top-card__rank { background: #C0C0C0; color: #1a1a1a; }
  .tp4-podium .top-card--bronze .top-card__rank { background: #CD7F32; color: #fff; }
  .tp4-podium .top-card__logo {
    flex-shrink: 0; width: 110px; height: 52px; border-radius: 8px;
    display: flex; align-items: center; justify-content: center; overflow: hidden;
  }
  .tp4-podium .top-card__logo img { max-width: 100%; max-height: 100%; object-fit: contain; }
  .tp4-podium .top-card__logo svg { max-width: 100%; max-height: 100%; }
  .tp4-podium .top-card__body { flex: 1; min-width: 0; }
  .tp4-podium .top-card__body h3 { margin-bottom: 2px; font-size: 17px; }
  .tp4-podium .top-card__body p { color: var(--textSecondary); font-size: 14px; }
  .tp4-podium .top-card__right { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
  .tp4-podium .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;
  }
  .tp4-podium .top-card__badge {
    padding: 4px 10px; border-radius: 20px; font-size: 10px; font-weight: 700;
    background: var(--accentColor); color: var(--textColor2); text-transform: uppercase;
  }
  .tp4-podium .top-card__badge:empty { display: none; }
  @media (max-width: 768px) {
    .tp4-podium .top-card { flex-wrap: wrap; gap: 12px; padding: 14px 16px; }
    .tp4-podium .top-card__right { width: 100%; justify-content: flex-start; }
  }



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

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

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

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

  .gl4__panels {
    display: flex;
    gap: 8px;
    height: clamp(340px, 45vw, 520px);
    border-radius: var(--borderRadius);
    overflow: hidden;
  }

  .gl4__panel {
    position: relative;
    flex: 1;
    cursor: pointer;
    overflow: hidden;
    border-radius: var(--borderRadius);
    transition: flex 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .gl4__panel--active { flex: 5; }

  .gl4__panel img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
  }

  .gl4__panel--active img { transform: scale(1.03); }

  .gl4__label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top,
      color-mix(in srgb, var(--bodyBG) 80%, transparent),
      transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
  }

  .gl4__panel--active .gl4__label { opacity: 1; }

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

  @media (max-width: 800px) {
    .gl4__panels { flex-direction: column; height: auto; }
    .gl4__panel { height: 80px; flex: none; }
    .gl4__panel--active { height: 280px; }
    .gl4__label { opacity: 1; }
  }

  @media (max-width: 600px) {
    .gl4 { padding: 48px 0; }
    .gl4__head { margin-bottom: 32px; }
    .gl4__panel--active { height: 220px; }
  }

  @media (prefers-reduced-motion: reduce) {
    .gl4__panel, .gl4__panel img, .gl4__label { 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;
    }
  }



  #slots { padding: 80px 0; }
  .sl17-head { text-align: center; margin-bottom: 50px; }
  .sl17-head h2 { margin-bottom: 12px; }
  .sl17-head p { color: var(--textSecondary); max-width: 550px; margin: 0 auto; }
  .sl17-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
  .sl17-grid .slot-card {
    background: var(--cardBG);
    border-radius: var(--borderRadius);
    overflow: hidden;
    position: relative;
    transition: transform 0.3s;
  }
  .sl17-grid .slot-card:hover { transform: translateY(-6px); }
  .sl17-grid .slot-card__img { aspect-ratio: 1; overflow: hidden; position: relative; }
  .sl17-grid .slot-card__img img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .sl17-grid .slot-card__img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 40%, var(--accentColor));
    opacity: 0;
    transition: opacity 0.4s;
    mix-blend-mode: color;
  }
  .sl17-grid .slot-card:hover .slot-card__img::after { opacity: 0.6; }
  .sl17-grid .slot-card__body {
    padding: 14px;
    position: relative;
  }
  .sl17-grid .slot-card__body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--accentColor);
    transition: width 0.4s ease;
  }
  .sl17-grid .slot-card:hover .slot-card__body::before { width: 80%; }
  .sl17-grid .slot-card__body h3 { font-size: 15px; margin-bottom: 3px; }
  .sl17-grid .slot-card__body p { font-size: 12px; color: var(--textSecondary); }
  .sl17-grid .slot-card {
    animation: sl17Pop 0.4s cubic-bezier(0.34,1.56,0.64,1) both;
  }
  .sl17-grid .slot-card:nth-child(1) { animation-delay: 0.05s; }
  .sl17-grid .slot-card:nth-child(2) { animation-delay: 0.1s; }
  .sl17-grid .slot-card:nth-child(3) { animation-delay: 0.15s; }
  .sl17-grid .slot-card:nth-child(4) { animation-delay: 0.2s; }
  .sl17-grid .slot-card:nth-child(5) { animation-delay: 0.25s; }
  .sl17-grid .slot-card:nth-child(6) { animation-delay: 0.3s; }
  .sl17-grid .slot-card:nth-child(7) { animation-delay: 0.35s; }
  .sl17-grid .slot-card:nth-child(8) { animation-delay: 0.4s; }
  .sl17-grid .slot-card:nth-child(n+9) { animation-delay: 0.45s; }
  @keyframes sl17Pop {
    from { opacity: 0; transform: scale(0.7); }
    to { opacity: 1; transform: scale(1); }
  }
  @media (max-width: 900px) { .sl17-grid { grid-template-columns: repeat(3, 1fr); } }
  @media (max-width: 600px) { .sl17-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; } }



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

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

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

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

  /* Stats bar */
  .rv8__stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(24px, 4vw, 48px);
    padding: 24px 0;
    margin-bottom: 40px;
    border-top: 1px solid color-mix(in srgb, var(--secondStyleColor) 10%, transparent);
    border-bottom: 1px solid color-mix(in srgb, var(--secondStyleColor) 10%, transparent);
  }

  .rv8__stat {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  .rv8__stat-num {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    color: var(--secondStyleColor);
    letter-spacing: -0.02em;
    line-height: 1;
  }

  .rv8__stat-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: color-mix(in srgb, var(--textColor1) 50%, transparent);
  }

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

  /* Cards grid */
  .rv8__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
  }

  .rv8__card {
    padding: 28px 24px 24px;
    border-radius: var(--borderRadius);
    border: 1px solid color-mix(in srgb, var(--secondStyleColor) 10%, 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, box-shadow 0.25s ease;
  }

  .rv8__card:hover {
    transform: translateY(-3px);
    border-color: color-mix(in srgb, var(--secondStyleColor) 30%, transparent);
    box-shadow: 0 14px 40px color-mix(in srgb, var(--secondStyleColor) 8%, transparent);
  }

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

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

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

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

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

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

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

  @media (max-width: 900px) {
    .rv8__grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
  }

  @media (max-width: 600px) {
    .rv8 { padding: 48px 0; }
    .rv8__stats { gap: 20px; padding: 18px 0; margin-bottom: 28px; }
    .rv8__stat-num { font-size: 28px; }
    .rv8__card { padding: 22px 18px 20px; }
  }



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

.about22::before{
  content:'';position:absolute;inset:0;
  background-image:url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0L60 30L30 60L0 30z' fill='none' stroke='%23888' stroke-width='.3'/%3E%3C/svg%3E");
  background-size:60px;
  opacity:.08;
  pointer-events:none;
}

.about22__container{max-width:1000px;position:relative;z-index:1}

.about22__header{text-align:center;margin-bottom:5rem}
.about22__eyebrow{
  font-size:.7rem;font-weight:600;
  letter-spacing:.2em;text-transform:uppercase;
  color:var(--secondStyleColor);
  margin-bottom:1rem;
}
.about22 h2{color:var(--textColor1);margin-bottom:1rem}
.about22__header > p{
  color:var(--textMuted);
  max-width:550px;margin:0 auto;
}

.about22__timeline{
  position:relative;
  padding-left:3rem;
}
.about22__timeline::before{
  content:'';position:absolute;
  left:7px;top:0;bottom:0;
  width:2px;
  background:var(--borderSubtle);
}
.about22__progress{
  position:absolute;
  left:7px;top:0;
  width:2px;height:0;
  background:linear-gradient(to bottom,var(--secondStyleColor),var(--accent2));
  transition:height .6s ease;
  z-index:1;
}

.about22__item{
  position:relative;
  margin-bottom:3.5rem;
  opacity:0;
  transform:translateX(-20px);
  transition:all .5s cubic-bezier(.4,0,.2,1);
}
.about22__item.visible{opacity:1;transform:translateX(0)}
.about22__item:last-child{margin-bottom:0}

.about22__dot{
  position:absolute;
  left:-3rem;top:.3rem;
  width:16px;height:16px;
  border-radius:50%;
  border:3px solid var(--borderSubtle);
  background:var(--bodyBG);
  z-index:2;
  transition:all .3s ease;
}
.about22__item.visible .about22__dot{
  border-color:var(--secondStyleColor);
  box-shadow:0 0 0 4px rgba(var(--accent-rgb),.1);
}

.about22__card{
  background:var(--bgCard);
  border-radius:var(--borderRadius);
  padding:2rem 2.5rem;
  box-shadow:0 2px 20px rgba(0,0,0,.04);
  border:1px solid var(--borderSubtle);
  transition:all .3s ease;
}
.about22__item:hover .about22__card{
  box-shadow:0 8px 35px rgba(0,0,0,.08);
  transform:translateX(4px);
}

.about22__year{
  display:inline-block;
  font-size:.75rem;font-weight:700;
  letter-spacing:.1em;
  color:var(--textColor2);
  padding:.25rem .75rem;
  border-radius:4px;
  margin-bottom:1rem;
}
.about22__year--1{background:var(--secondStyleColor)}
.about22__year--2{background:var(--accent2)}

.about22__card h3{color:var(--textColor1);margin-bottom:.6rem}
.about22__card p{color:var(--textSecondary);margin-bottom:1rem}

.about22__tags{display:flex;gap:.5rem;flex-wrap:wrap}
.about22__tag{
  font-size:.65rem;font-weight:500;
  letter-spacing:.05em;text-transform:uppercase;
  padding:.3rem .7rem;
  border-radius:4px;
  border:1px solid var(--borderSubtle);
  color:var(--textMuted);
}

.about22__quote{
  margin-top:5rem;
  text-align:center;
  padding:3rem;
  background:var(--bgCard);
  border-radius:var(--borderRadius);
  border:1px solid var(--borderSubtle);
  opacity:0;transform:translateY(20px);
  transition:all .6s ease;
}
.about22__quote.visible{opacity:1;transform:translateY(0)}
.about22__quote-icon{
  font-size:2rem;
  color:var(--secondStyleColor);
  opacity:.3;
  margin-bottom:1rem;
}
.about22__quote-text{
  font-size:1.15rem;font-weight:400;
  font-style:italic;
  line-height:1.6;
  max-width:600px;margin:0 auto 1rem;
  color:var(--textColor1);
}
.about22__quote-author{
  font-size:.75rem;font-weight:500;
  letter-spacing:.1em;text-transform:uppercase;
  color:var(--textMuted);
}

@media(max-width:768px){
  .about22__timeline{padding-left:2.5rem}
  .about22__dot{left:-2.5rem}
  .about22__card{padding:1.5rem}
}

@media(prefers-reduced-motion:reduce){
  .about22__item,
  .about22__quote{animation:none!important;opacity:1;transform:none;transition:none}
}



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

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

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

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

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

  .rm3__track {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }

  .rm3__rail {
    position: absolute;
    left: 0;
    right: 0;
    top: 6px;
    height: 2px;
    background: color-mix(in srgb, var(--secondStyleColor) 15%, transparent);
    z-index: 0;
  }

  .rm3__stage {
    position: relative;
    z-index: 1;
    padding: 28px 18px 20px;
    border-radius: var(--borderRadius);
    border: 1px solid color-mix(in srgb, var(--secondStyleColor) 10%, transparent);
    background: rgba(255,255,255,0.02);
    transition: transform 0.25s ease, border-color 0.25s ease;
  }

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

  .rm3__dot {
    position: absolute;
    top: -6px;
    left: 18px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--secondStyleColor);
    box-shadow: 0 0 0 4px color-mix(in srgb, var(--secondStyleColor) 20%, transparent);
  }

  .rm3__dot--outline {
    background: transparent;
    border: 2px solid var(--secondStyleColor);
  }

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

  .rm3__stage h3 {
    margin: 0 0 6px;
    font-size: 16px;
    font-weight: 700;
  }

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

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

  @media (max-width: 600px) {
    .rm3 { padding: 48px 0; }
    .rm3__head { margin-bottom: 36px; }
    .rm3__track { grid-template-columns: 1fr; }
    .rm3__rail { display: none; }
  }

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



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

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

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

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

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

  .featuresSubtitle {
    font-size: 16px;
    line-height: 1.6;
    color: var(--textSecondary);
  }

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

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

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

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

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

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

  .featureText {
    font-size: 14px;
    line-height: 1.6;
    color: var(--textSecondary);
  }

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



  /* ===== HOW v14 — Alternating full-width strips ===== */

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

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

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

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

  .hw14__strips {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .hw14__strip {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 36px 40px;
    border-radius: var(--borderRadius);
    transition: background 0.3s ease;
  }

  .hw14__strip:hover {
    background: rgba(255, 255, 255, 0.04);
  }

  .hw14__strip--alt {
    flex-direction: row-reverse;
    text-align: right;
  }

  .hw14__left {
    flex-shrink: 0;
  }

  .hw14__ring {
    width: 72px;
    height: 72px;
    border-radius: 999px;
    border: 2px solid color-mix(in srgb, var(--secondStyleColor) 40%, transparent);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: radial-gradient(
      circle at center,
      color-mix(in srgb, var(--secondStyleColor) 8%, transparent),
      transparent 70%
    );
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
  }

  .hw14__strip:hover .hw14__ring {
    border-color: var(--secondStyleColor);
    box-shadow: 0 0 30px color-mix(in srgb, var(--secondStyleColor) 25%, transparent);
  }

  .hw14__ring::before {
    content: "";
    position: absolute;
    inset: -10px;
    border-radius: 999px;
    border: 1px solid color-mix(in srgb, var(--secondStyleColor) 12%, transparent);
  }

  .hw14__ring span {
    font-size: 22px;
    font-weight: 700;
    color: var(--secondStyleColor);
  }

  .hw14__right {
    flex: 1;
    max-width: 600px;
  }

  .hw14__right h3 {
    margin: 0 0 10px;
    font-size: 20px;
    font-weight: 600;
  }

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

  /* Divider between strips */
  .hw14__strip + .hw14__strip {
    border-top: 1px solid color-mix(in srgb, var(--secondStyleColor) 10%, transparent);
  }

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

    .hw14__ring {
      width: 62px;
      height: 62px;
    }

    .hw14__ring span {
      font-size: 20px;
    }

    .hw14__right h3 {
      font-size: 18px;
    }
  }

  @media (max-width: 800px) {
    .hw14__strip,
    .hw14__strip--alt {
      flex-direction: column;
      text-align: center;
      gap: 18px;
      padding: 28px 20px;
    }

    .hw14__right {
      max-width: 100%;
    }

    .hw14__ring {
      width: 56px;
      height: 56px;
    }

    .hw14__ring::before {
      inset: -8px;
    }

    .hw14__ring span {
      font-size: 18px;
    }
  }

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

    .hw14__head {
      margin-bottom: 32px;
    }

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

    .hw14__strip {
      padding: 22px 16px;
      gap: 14px;
    }

    .hw14__ring {
      width: 50px;
      height: 50px;
    }

    .hw14__ring span {
      font-size: 16px;
    }

    .hw14__ring::before {
      inset: -6px;
    }

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

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

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



  /* ===== FAQ SECTION ===== */

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

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

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

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

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

  .faqSubtitle {
    font-size: 16px;
    line-height: 1.6;
    color: var(--textSecondary);
  }

  /* List */
  .faqList {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  /* Item */
  .faqItem {
    border: 1px solid var(--secondStyleColor);
    border-radius: var(--borderRadius);
    padding: 22px 24px;
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.55);
    transition: 0.2s ease;
  }

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

  .faqQuestion {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--secondStyleColor);
  }

  .faqAnswer {
    font-size: 15px;
    line-height: 1.7;
    color: var(--textSecondary);
  }

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



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

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

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

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

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

  .ft8__logo:hover {
    opacity: 0.8;
  }


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

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

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

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

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

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

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

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

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

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

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

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

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

    .ft8__nav {
      gap: 20px;
    }
  }

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

    .ft8__border {
      margin-bottom: 32px;
    }

    .ft8__logo {
      font-size: 22px;
    }

    .ft8__nav {
      gap: 16px;
    }

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

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

    .ft8__social {
      gap: 10px;
    }
  }

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

    .ft8__divider {
      animation: none;
    }

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



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