
:root {
  --bg: #0a192f;
  --bg-card: #112240;
  --text: #ccd6f6;
  --text-muted: rgba(255,255,255,0.5);
  --accent: #64ffda;
  --accent-rgb: 100,255,218;
  --accent2: #7364ff;
  --accent2-rgb: 115,100,255;
  --accent3: #87ff7e;
  --accent3-rgb: 135,255,126;
  --border: rgba(255,255,255,0.08);
  --radius: 12px;
  --font: 'Space Grotesk', sans-serif;
  --font-heading: 'Space Grotesk', sans-serif;
  --bodyBG: #0a192f;
  --textColor1: #ccd6f6;
  --textColor2: #111111;
  --textSecondary: #9ca7c4;
  --textMuted: #6b7893;
  --secondStyleColor: #64ffda;
  --bgCard: #112240;
  --bgAlt: #1a283f;
  --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;
    }
  }



  /* ── 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 a {
    text-decoration: none;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.5;
    white-space: nowrap;
    color: var(--bodyBG);
    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;
    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(--secondStyleColor);
  }

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

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

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

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

  .toc-swiper {
    max-width: calc(var(--maxWidthContainer) - 40px);
    margin: 0 auto;
  }

  .swiper-horizontal > .swiper-scrollbar,
  .swiper-scrollbar.swiper-scrollbar-horizontal {
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
  }

  @media screen and (max-width: 750px) {
    .toc.wrapper {
      margin-left: auto;
    }
    .swiper-horizontal > .swiper-scrollbar,
    .swiper-scrollbar.swiper-scrollbar-horizontal {
      width: 90% !important;
      margin: 0 auto;
    }
  }



  /* ===== FEATURES v20 — Vertical timeline with SVG connector + mixed cards ===== */

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

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

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

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

  /* Timeline */
  .ft20__timeline {
    position: relative;
    max-width: 680px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 32px;
  }

  /* SVG dashed line */
  .ft20__line {
    position: absolute;
    left: 24px;
    top: 0;
    bottom: 0;
    width: 4px;
    z-index: 0;
  }

  .ft20__line-svg {
    width: 100%;
    height: 100%;
    color: color-mix(in srgb, var(--secondStyleColor) 18%, transparent);
  }

  .ft20__line-glow {
    position: absolute;
    top: 0;
    left: 50%;
    width: 6px;
    height: 60px;
    margin-left: -3px;
    background: var(--secondStyleColor);
    border-radius: 6px;
    filter: blur(6px);
    opacity: 0.5;
    animation: ft20Travel 4s ease-in-out infinite;
  }

  @keyframes ft20Travel {
    0% { top: 0; opacity: 0; }
    10% { opacity: 0.6; }
    90% { opacity: 0.6; }
    100% { top: calc(100% - 60px); opacity: 0; }
  }

  /* Items */
  .ft20__item {
    position: relative;
    display: grid;
    grid-template-columns: 50px 1fr;
    gap: 20px;
    z-index: 1;
  }

  .ft20__marker {
    display: flex;
    justify-content: center;
    padding-top: 22px;
  }

  .ft20__dot {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: color-mix(in srgb, var(--secondStyleColor) 10%, transparent);
    border: 2px solid color-mix(in srgb, var(--secondStyleColor) 25%, transparent);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, border-color 0.3s ease;
  }

  .ft20__item:hover .ft20__dot {
    transform: scale(1.12);
    border-color: var(--secondStyleColor);
  }

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

  /* Content cards */
  .ft20__content {
    border-radius: var(--borderRadius);
    border: 1px solid color-mix(in srgb, var(--secondStyleColor) 10%, transparent);
    background: rgba(255, 255, 255, 0.025);
    padding: 24px 22px;
    transition: transform 0.3s ease, border-color 0.3s ease;
  }

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

  /* Image variant */
  .ft20__content--img {
    padding: 0;
    overflow: hidden;
  }

  .ft20__thumb {
    aspect-ratio: 16 / 8;
    overflow: hidden;
  }

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

  .ft20__item:hover .ft20__thumb img {
    transform: scale(1.04);
  }

  .ft20__body {
    padding: 20px 22px 24px;
  }

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

  .ft20__content h3,
  .ft20__body h3 {
    margin: 0 0 8px;
    font-size: 18px;
    font-weight: 600;
  }

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

  .ft20__checks {
    margin: 14px 0 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

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

  .ft20__checks i {
    font-size: 11px;
    color: var(--secondStyleColor);
  }

  /* Responsive */
  @media (max-width: 950px) {
    .ft20__timeline {
      max-width: 600px;
    }
  }

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

    .ft20__content > p,
    .ft20__body p {
      font-size: 13px;
    }

    .ft20__dot {
      width: 42px;
      height: 42px;
    }

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

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

    .ft20__line {
      left: 20px;
    }
  }

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

    .ft20__head {
      margin-bottom: 40px;
    }

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

    .ft20__timeline {
      gap: 24px;
    }

    .ft20__content {
      padding: 20px 16px;
    }

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

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

    .ft20__item {
      grid-template-columns: 40px 1fr;
      gap: 12px;
    }

    .ft20__line {
      left: 18px;
    }
  }

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

    .ft20__content,
    .ft20__dot,
    .ft20__thumb img {
      transition: none;
    }
  }



  /* ===== HOW v23 — Flip cards with progress connector ===== */

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

  /* Wave background */
  .hw23__wave {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
  }

  .hw23__wave svg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200%;
    animation: hw23Shift 20s linear infinite;
    opacity: 0.04;
  }

  .hw23__wave-line1 {
    color: var(--secondStyleColor);
  }

  .hw23__wave-line2 {
    color: var(--accent2);
  }

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

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

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

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

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

  /* Cards grid */
  .hw23__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: var(--maxWidthContainer);
    margin: 0 auto 40px;
    position: relative;
    z-index: 2;
  }

  /* Flip card */
  .hw23__card {
    perspective: 900px;
    height: 320px;
    cursor: pointer;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }

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

  .hw23__inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.65s cubic-bezier(0.4, 0.2, 0.2, 1);
    transform-style: preserve-3d;
  }

  .hw23__card:hover .hw23__inner {
    transform: rotateY(180deg);
  }

  .hw23__front,
  .hw23__back {
    position: absolute;
    inset: 0;
    border-radius: var(--borderRadius);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 28px 22px;
  }

  /* Front */
  .hw23__front {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
  }

  .hw23__num {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 10px;
    color: var(--secondStyleColor);
    opacity: 0.12;
  }

  .hw23__icon {
    width: 56px;
    height: 56px;
    border-radius: var(--borderRadius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 18px;
    background: rgba(var(--accent-rgb), 0.1);
    color: var(--secondStyleColor);
    border: 1px solid color-mix(in srgb, var(--secondStyleColor) 20%, transparent);
    transition: transform 0.3s ease;
  }

  .hw23__card:hover .hw23__icon {
    transform: scale(1.1);
  }

  .hw23__title {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    text-align: center;
  }

  .hw23__subtitle {
    font-size: 13px;
    color: color-mix(in srgb, var(--textColor1) 50%, transparent);
    margin: 6px 0 0;
    text-align: center;
  }

  /* Per-card accent colors */
  .hw23__card:nth-child(1) .hw23__num { color: var(--secondStyleColor); }
  .hw23__card:nth-child(1) .hw23__icon {
    background: rgba(var(--accent-rgb), 0.1);
    color: var(--secondStyleColor);
    border-color: color-mix(in srgb, var(--secondStyleColor) 20%, transparent);
  }

  .hw23__card:nth-child(2) .hw23__num { color: var(--accent2); }
  .hw23__card:nth-child(2) .hw23__icon {
    background: color-mix(in srgb, var(--accent2) 10%, transparent);
    color: var(--accent2);
    border-color: color-mix(in srgb, var(--accent2) 20%, transparent);
  }

  .hw23__card:nth-child(3) .hw23__num { color: var(--accent3); }
  .hw23__card:nth-child(3) .hw23__icon {
    background: color-mix(in srgb, var(--accent3) 10%, transparent);
    color: var(--accent3);
    border-color: color-mix(in srgb, var(--accent3) 20%, transparent);
  }

  .hw23__card:nth-child(4) .hw23__num { color: var(--secondStyleColor); }
  .hw23__card:nth-child(4) .hw23__icon {
    background: rgba(var(--accent-rgb), 0.1);
    color: var(--secondStyleColor);
    border-color: color-mix(in srgb, var(--secondStyleColor) 20%, transparent);
  }

  /* Back */
  .hw23__back {
    transform: rotateY(180deg);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
  }

  .hw23__back-title {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 12px;
  }

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

  .hw23__back-detail {
    font-size: 13px;
    padding: 8px 14px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    line-height: 1.6;
    color: color-mix(in srgb, var(--textColor1) 55%, transparent);
  }

  /* Connector line */
  .hw23__connector {
    position: relative;
    max-width: var(--maxWidthContainer);
    margin: 0 auto;
    height: 4px;
    z-index: 2;
    display: flex;
    align-items: center;
  }

  .hw23__connector-line {
    height: 2px;
    background: rgba(255, 255, 255, 0.06);
    flex: 1;
    border-radius: 2px;
    position: relative;
    overflow: hidden;
  }

  .hw23__connector-fill {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, var(--secondStyleColor), var(--accent2));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.8s ease;
  }

  .hw23__connector-dots {
    display: flex;
    justify-content: space-between;
    position: absolute;
    inset: 0;
    padding: 0 calc(12.5% - 5px);
  }

  .hw23__connector-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    margin-top: -4px;
    transition: background 0.4s ease, box-shadow 0.4s ease;
  }

  .hw23__connector-dots span.active {
    background: var(--secondStyleColor);
    box-shadow: 0 0 12px rgba(var(--accent-rgb), 0.4);
  }

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

    .hw23__card {
      height: 280px;
    }

    .hw23__connector-dots {
      padding: 0 calc(25% - 5px);
    }
  }

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

    .hw23__head {
      margin-bottom: 36px;
    }

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

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

    .hw23__card {
      height: 260px;
    }

    .hw23__num {
      font-size: 3rem;
    }

    .hw23__title {
      font-size: 16px;
    }

    .hw23__back-desc {
      font-size: 13px;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .hw23__card,
    .hw23__inner,
    .hw23__icon,
    .hw23__connector-fill,
    .hw23__connector-dots span {
      transition: none;
    }

    .hw23__wave svg {
      animation: none;
    }

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

    .hw23__card:hover .hw23__inner {
      transform: 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;
    }
  }



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

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

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

.ab25__header{text-align:center;margin-bottom:5rem}
.ab25__eyebrow{
  font-size:.7rem;font-weight:600;
  letter-spacing:.2em;text-transform:uppercase;
  color:var(--secondStyleColor);
  margin-bottom:1rem;
}
.ab25 h2{color:var(--textColor1);margin-bottom:1rem}
.ab25__lead{
  font-size:1rem;font-weight:300;
  line-height:1.8;
  color:var(--textMuted);
  max-width:550px;margin:0 auto;
}

.ab25__timeline{
  position:relative;
  padding-left:3rem;
}
.ab25__timeline::before{
  content:'';position:absolute;
  left:7px;top:0;bottom:0;
  width:2px;
  background:var(--borderSubtle);
}
.ab25__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;
}

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

.ab25__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;
}
.ab25__item.visible .ab25__dot{
  border-color:var(--secondStyleColor);
  box-shadow:0 0 0 4px rgba(var(--accent-rgb),.1);
}

.ab25__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;
}
.ab25__item:hover .ab25__card{
  box-shadow:0 8px 35px rgba(0,0,0,.08);
  transform:translateX(4px);
}

.ab25__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;
}
.ab25__year--1{background:var(--secondStyleColor)}
.ab25__year--2{background:var(--accent2)}

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

.ab25__tags{display:flex;gap:.5rem;flex-wrap:wrap}
.ab25__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);
}

.ab25__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;
}
.ab25__quote.visible{opacity:1;transform:translateY(0)}
.ab25__quote-icon{
  font-size:2rem;
  color:var(--secondStyleColor);
  opacity:.3;
  margin-bottom:1rem;
}
.ab25__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);
}
.ab25__quote-author{
  font-size:.75rem;font-weight:500;
  letter-spacing:.1em;text-transform:uppercase;
  color:var(--textMuted);
}

@media(max-width:768px){
  .ab25__timeline{padding-left:2.5rem}
  .ab25__dot{left:-2.5rem}
  .ab25__card{padding:1.5rem}
}

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



  /*  */
  .absssss {
    position: relative;
    &&::after {
      position: absolute;
      content: "";
      width: 400px;
      height: 400px;
      border-radius: 50%;
      background-color: var(--secondStyleColor);
      top: 7%;
      left: -15%;
      z-index: -1;
      opacity: 0.1;
    }
  }

  .absssss .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
  }
  .abllllllll {
    display: flex;
    flex-direction: column;
    gap: 20px;
    && a {
      padding: 12px 40px;
      background-color: var(--secondStyleColor);
      width: fit-content;
      border-radius: var(--borderRadius);
      color: var(--bodyBG);
      font-size: 20px;
      transition: 0.2s all linear;
      &&:hover {
        transform: translateY(-2px);
      }
    }
    && p {
      text-wrap: balance;
    }
  }
  .abrrrrrrrrr {
    display: flex;
    flex-direction: column;
    position: relative;
    gap: 20px;
    &&::before {
      position: absolute;
      content: "";
      width: 320px;
      height: 320px;
      border-radius: 50%;
      background-color: var(--secondStyleColor);
      bottom: -15%;
      left: -18%;
      opacity: 0.1;
      z-index: -1;
    }
  }
  .abelrrr {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    width: 100%;
    align-items: center;
    padding: 20px;
    background-color: var(--bodyBG);
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    border-radius: var(--borderRadius);

    && .abiiimgw {
      min-width: 140px;
      max-width: 140px;
      border-radius: 50%;
      width: 140px;
      height: 140px;
      && img {
        width: 100%;
        border-radius: inherit;
        height: 100%;
        object-fit: cover;
      }
    }

    && svg {
      fill: var(--secondStyleColor);
    }
    && p {
      max-width: 90%;
    }
  }
  .abelrrr div {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: fit-content;
    && p:last-child {
      font-style: italic;
    }
  }

  @media (max-width: 800px) {
    .absssss {
      &&::after {
        display: none;
      }
    }
    .absssss .container {
      flex-direction: column;
    }
    .abelrrr {
      flex-direction: column-reverse;
      && .abiiimgw {
        min-width: 60px;
        min-height: 60px;
        width: 60px;
        height: 60px;
      }
    }
    .abelrrr div {
      justify-content: center;
      align-items: center;
      && p {
        text-align: center;
      }
    }
    .abrrrrrrrrr {
      &&::before {
        left: -26%;
        bottom: 12%;
      }
    }
    .abllllllll {
      align-items: center;
      && h2,
      p {
        text-align: center;
      }
    }
  }



  .gl11 {
    padding: 60px 0;
    overflow: hidden;
  }

  .gl11__head {
    text-align: center;
    margin-bottom: 40px;
  }

  .gl11__head p {
    margin: 12px auto 0;
    color: var(--textColor1);
    text-wrap: balance;
    text-align: center;
  }

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

  .gl11__row {
    display: flex;
    width: max-content;
  }

  .gl11__track {
    display: flex;
    gap: 16px;
    padding-right: 16px;
  }

  .gl11__row--left {
    animation: gl11-scroll-left 70s linear infinite;
  }

  .gl11__row--right {
    animation: gl11-scroll-right 80s linear infinite;
  }

  .gl11__marquee-wrap:hover .gl11__row {
    animation-play-state: paused;
  }

  @keyframes gl11-scroll-left {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-50%);
    }
  }

  @keyframes gl11-scroll-right {
    0% {
      transform: translateX(-50%);
    }
    100% {
      transform: translateX(0);
    }
  }

  .gl11__item {
    flex-shrink: 0;
    width: 340px;
    height: 240px;
    border-radius: var(--borderRadius);
    overflow: hidden;
    border: 1px solid color-mix(in srgb, var(--textColor1) 10%, transparent);
    transition: border-color 0.3s ease;
  }

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

  .gl11__item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s ease;
  }

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

  @media (max-width: 950px) {
    .gl11__item {
      width: 280px;
      height: 200px;
    }
  }

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

    .gl11__head {
      margin-bottom: 28px;
    }

    .gl11__marquee-wrap {
      gap: 12px;
    }

    .gl11__track {
      gap: 12px;
      padding-right: 12px;
    }

    .gl11__item {
      width: 220px;
      height: 160px;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .gl11__row--left,
    .gl11__row--right {
      animation: none;
    }

    .gl11__item img {
      transition: none;
    }
  }



  /* ===== SOMETHING v15 — Coming soon countdown with SVG grid bg + image ===== */

  .sm15 {
    position: relative;
    padding: clamp(80px, 9vw, 130px) 0;
    color: var(--textColor1);
    overflow: hidden;
  }

  .sm15__img {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
  }

  .sm15__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.12;
  }

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

  .sm15 .container {
    position: relative;
    z-index: 2;
  }

  .sm15__block {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
  }

  .sm15__kicker {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 100px;
    background: color-mix(in srgb, var(--secondStyleColor) 12%, transparent);
    color: var(--secondStyleColor);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

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

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

  /* Timer */
  .sm15__timer {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin: 12px 0;
  }

  .sm15__unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .sm15__box {
    width: clamp(60px, 10vw, 80px);
    height: clamp(60px, 10vw, 80px);
    border-radius: var(--borderRadius);
    border: 1px solid
      color-mix(in srgb, var(--secondStyleColor) 16%, transparent);
    background: linear-gradient(
      155deg,
      rgba(255, 255, 255, 0.05),
      rgba(255, 255, 255, 0.01)
    );
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .sm15__box span {
    font-size: clamp(26px, 4vw, 36px);
    font-weight: 800;
    color: var(--secondStyleColor);
    font-variant-numeric: tabular-nums;
  }

  .sm15__box--pulse {
    animation: sm15Pulse 1s ease-in-out infinite alternate;
  }

  @keyframes sm15Pulse {
    0% {
      border-color: color-mix(
        in srgb,
        var(--secondStyleColor) 16%,
        transparent
      );
    }
    100% {
      border-color: color-mix(
        in srgb,
        var(--secondStyleColor) 50%,
        transparent
      );
    }
  }

  .sm15__unit small {
    font-size: 11px;
    color: color-mix(in srgb, var(--textColor1) 50%, transparent);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 500;
  }

  .sm15__sep {
    font-size: 32px;
    font-weight: 700;
    color: color-mix(in srgb, var(--secondStyleColor) 30%, transparent);
    line-height: clamp(60px, 10vw, 80px);
  }

  /* Actions */
  .sm15__actions {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 6px;
  }

  .sm15__btn {
    padding: 12px 28px;
    border-radius: var(--borderRadius);
    background: var(--secondStyleColor);
    color: var(--bodyBG);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition:
      transform 0.2s ease,
      box-shadow 0.2s ease;
  }

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

  .sm15__link {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: color-mix(in srgb, var(--textColor1) 70%, transparent);
    text-decoration: none;
    transition: color 0.2s ease;
  }

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

  .sm15__link i {
    font-size: 12px;
    transition: transform 0.2s ease;
  }

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

  /* Responsive */
  @media (max-width: 800px) {
    .sm15__block h2 {
      font-size: 28px;
    }
  }

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

    .sm15__timer {
      gap: 4px;
    }

    .sm15__sep {
      font-size: 24px;
    }

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

    .sm15__actions {
      flex-direction: column;
      gap: 14px;
    }
  }

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

    .sm15__btn,
    .sm15__link,
    .sm15__link i {
      transition: none;
    }
  }



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

  .faq h2 {
    text-align: center;
  }

  .faq > div {
    border-radius: var(--borderRadius);
  }

  #faq {
    border-radius: var(--borderRadius);
    padding: var(--sectionPadding);
  }

  .accord__item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    padding: 32px;
    border: 4px solid var(--secondStyleColor);
    border-radius: var(--borderRadius);
  }

  .accord__item h3,
  .accord__item p {
    margin-bottom: 0;
    margin: 0;
    color: var(--textColor1);
  }

  .accord__item > div:first-child > p {
    font-weight: 900;
    color: var(--textColor1) !important;
    font-size: 24px !important;
    margin-bottom: 0;
  }

  .accord__item > div:first-child {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .accord__item > div:last-child {
    max-height: 0;
    visibility: hidden;
    transition: 0.3s all linear;
  }

  .accord__item > div:last-child p {
    color: var(--textColor1) !important;
    text-align: left;
  }

  .show {
    visibility: visible !important;
  }

  .accord__item div + div {
    transition: max-height 0.3s ease;
    overflow: hidden;
    /* padding: 20px; padding будет учтен в scrollHeight */
    box-sizing: border-box; /* важно! */
  }

  .accord__item div + div p {
    transition: margin-top 0.3s ease;
    visibility: hidden;
    margin: 0;
  }

  .accord__item div + div.show p {
    visibility: visible;
    opacity: 1;
  }

  div.show {
    margin-top: 28px;
  }

  @media (max-width: 768px) {
    .accord__item {
      padding: 32px 16px;
    }
  }



  /* ===============================
   FOOTER — SUDOLAB neon style
=============================== */

  .site-footer {
    padding: 28px 0 22px;
    border-top: 1px solid var(--secondStyleColor);
    color: var(--textColor1);
    position: relative;
  }

  /* Layout */

  .footer-row {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 32px;
    align-items: flex-start;
    margin-bottom: 22px;
  }

  @media (max-width: 900px) {
    .footer-row {
      grid-template-columns: 1fr 1fr;
      gap: 24px;
    }
  }

  @media (max-width: 640px) {
    .footer-row {
      grid-template-columns: 1fr;
      text-align: center;
      gap: 18px;
    }

    .footer-main {
      align-items: center;
    }

    .footer-social {
      justify-content: center;
    }

    .footer-contacts,
    .footer-links {
      columns: 1;
      text-align: center;
    }

    .site-footer {
      margin-top: 40px;
      padding: 22px 0 18px;
    }
  }

  /* Brand */

  .footer-main {
    display: flex;
    flex-direction: column;
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .footer-main .logo {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    text-decoration: none;
    color: var(--textColor1);
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 0.8rem;
  }

  .footer-main .logo img {
    max-width: 150px;
    height: auto;
    margin-bottom: 6px;
  }

  /* Links & Address */

  .site-footer a,
  .site-footer address {
    position: relative;
    color: var(--textColor1);
    text-decoration: none;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.16em;
    padding: 2px 0;
    text-transform: uppercase;
    transition:
      color 0.22s ease,
      transform 0.22s ease,
      text-shadow 0.22s ease,
      opacity 0.22s ease;
  }

  .site-footer address {
    font-style: normal;
    color: var(--textColor1);
  }

  /* ≡ ХОВЕР БЕЗ ЛИНИИ — МЯГКОЕ НЕОНОВОЕ СВЕЧЕНИЕ */

  .site-footer a:hover {
    color: var(--secondStyleColor);
    transform: translateY(-2px);
  }

  /* Social */

  .footer-social {
    display: flex;
    gap: 10px;
    list-style: none;
    margin: 6px 0 0;
    padding: 0;
  }

  .footer-social a {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid rgba(148, 163, 184, 0.4);
    color: var(--textColor1);
    transition:
      background 0.18s ease,
      color 0.18s ease,
      border-color 0.18s ease,
      transform 0.12s ease,
      box-shadow 0.18s ease;
  }

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

  /* Contacts */

  .footer-contacts {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 13px;
    align-items: flex-start;
  }

  .footer-contacts address {
    font-style: normal;
  }

  /* Links */

  .footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
    columns: 2 120px;
    column-gap: 24px;
    font-size: 13px;
  }

  .footer-links li {
    break-inside: avoid;
    margin-bottom: 8px;
  }

  /* Bottom */

  .footer-bottom {
    text-align: center;
    padding-top: 14px;
    border-top: 1px solid var(--textColor1);
    font-size: 11.5px;
    color: var(--textColor1);
  }

  .footer-bottom p {
    margin: 0;
  }

  .footer-bottom p span {
    color: var(--textColor1);
    font-weight: 700;
  }



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