:root {
      --bg: #040404;
      --glass: rgba(255, 255, 255, 0.045);
      --glass-strong: rgba(255, 255, 255, 0.07);
      --border: rgba(255, 255, 255, 0.12);
      --border-soft: rgba(255, 255, 255, 0.07);
      --text: #f3f2ee;
      --text-dim: #b8b7b2;
      --text-dimmer: #868580;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html,
    body {
      height: 100vh;
      height: 100dvh;
      min-height: 100vh;
      min-height: 100dvh;
      overflow: hidden;
      overscroll-behavior: none;
    }

    body {
      background: var(--bg);
      color: var(--text);
      font-family: 'Plus Jakarta Sans', sans-serif;
      -webkit-font-smoothing: antialiased;
      display: flex;
      flex-direction: column;
    }

    body::before {
      content: "";
      position: fixed;
      inset: 0;
      background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.025) 1px, transparent 0);
      background-size: 3px 3px;
      pointer-events: none;
      z-index: 1;
      opacity: 0.5;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    button {
      font-family: inherit;
    }

    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
      font-family: inherit;
      font-weight: 300;
    }

    .wrap {
      position: relative;
      max-width: 1240px;
      width: 100%;
      margin: 0 auto;
      padding: 0 32px;
    }

    /* ===== PRELOADER (CINEMATIC) ===== */
    #preloader {
      position: fixed;
      inset: 0;
      width: 100vw;
      height: 100vh;
      height: 100dvh;
      background: #000000 !important;
      z-index: 999999 !important;
      display: flex;
      flex-direction: row;
      align-items: center;
      justify-content: center;
      gap: 26px;
      padding: 24px;
      opacity: 1;
      visibility: visible;
      transform: scale(1);
      transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.8s cubic-bezier(0.16, 1, 0.3, 1),
        visibility 0.8s ease;
      cursor: pointer;
      user-select: none;
      will-change: opacity, transform;
    }

    #preloader.fade-out {
      opacity: 0;
      transform: scale(1.02);
      visibility: hidden;
      pointer-events: none;
    }

    .preloader-logo-wrap {
      position: relative;
      width: 106px;
      height: 92px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .preloader-logo-base {
      height: 88px;
      width: auto;
      display: block;
      filter: drop-shadow(0 0 35px rgba(255, 255, 255, 0.35));
      animation: angel-scale-in 1.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    }

    @keyframes angel-scale-in {
      0% {
        opacity: 0;
        transform: scale(0.88);
        filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.05));
      }

      100% {
        opacity: 1;
        transform: scale(1);
        filter: drop-shadow(0 0 35px rgba(255, 255, 255, 0.35));
      }
    }

    @keyframes light-sweep {
      0% {
        background-position: 180% 0;
      }

      100% {
        background-position: -180% 0;
      }
    }

    /* Preloader Text Styling - Smooth Cinematic Blur & Fade with Plus Jakarta Sans */
    .preloader-title-wrap {
      display: flex;
      align-items: center;
      justify-content: center;
      height: 44px;
      margin: 0;
    }

    .preloader-title {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 1.65rem;
      font-weight: 300;
      letter-spacing: 0.24em;
      text-indent: 0.24em;
      text-transform: uppercase;
      display: flex;
      align-items: center;
      justify-content: center;
      white-space: nowrap;
    }

    .preloader-letter {
      display: inline-block;
      opacity: 0;
      filter: blur(16px) brightness(2.2);
      transform: scale(1.18) translateY(8px);
      background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.7) 100%);
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
      transition: opacity 1.1s cubic-bezier(0.16, 1, 0.3, 1),
        filter 1.1s cubic-bezier(0.16, 1, 0.3, 1),
        transform 1.1s cubic-bezier(0.16, 1, 0.3, 1);
      will-change: opacity, filter, transform;
    }

    .preloader-letter.space {
      width: 0.45em;
    }

    .preloader-letter.visible {
      opacity: 1;
      filter: blur(0px) brightness(1);
      transform: scale(1) translateY(0);
      text-shadow: 0 0 30px rgba(255, 255, 255, 0.45);
    }

    @media (max-width: 600px) {
      #preloader {
        gap: 16px;
        padding: 16px;
      }

      .preloader-logo-wrap {
        width: 76px;
        height: 66px;
      }

      .preloader-logo-base {
        height: 64px;
      }

      .preloader-title {
        font-size: 1.2rem;
        letter-spacing: 0.15em;
        text-indent: 0.15em;
      }
    }

    /* ===== MACOS TAHOE DYNAMIC CANVAS ===== */
    #bg-canvas {
      position: fixed;
      inset: 0;
      width: 100vw;
      height: 100vh;
      z-index: 0;
      pointer-events: none;
      transform: translateZ(0);
      will-change: transform;
    }

    /* ===== NAV ===== */
    header {
      position: relative;
      z-index: 50;
      padding: 18px 0 0;
      flex-shrink: 0;
    }

    .nav-glass {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      padding: 8px 0;
      border-radius: 0;
      background: transparent;
      border: none;
      backdrop-filter: none;
      -webkit-backdrop-filter: none;
      box-shadow: none;
      transform: translateZ(0);
    }

    .logo {
      display: flex;
      align-items: center;
      cursor: pointer;
      user-select: none;
    }

    .logo-img {
      height: 26px;
      width: auto;
      display: block;
      object-fit: contain;
      filter: none;
      transition: transform .25s ease, filter .25s ease;
    }

    .logo:hover .logo-img {
      transform: scale(1.06);
      filter: drop-shadow(0 0 9px rgba(255, 255, 255, 0.75)) drop-shadow(0 0 16px rgba(255, 255, 255, 0.3));
    }

    /* ===== MENU TOGGLE BUTTON (HAMBURGER / X) ===== */
    .menu-toggle-btn {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 5.5px;
      width: 42px;
      height: 42px;
      padding: 8px;
      background: transparent !important;
      border: none !important;
      box-shadow: none !important;
      outline: none !important;
      -webkit-tap-highlight-color: transparent;
      cursor: pointer;
      color: #ffffff;
      transition: opacity 0.2s ease, transform 0.2s ease;
      z-index: 100002;
    }

    .menu-toggle-btn:hover {
      opacity: 0.75;
    }

    .hamburger-line {
      display: block;
      width: 22px;
      height: 2px;
      background-color: #ffffff;
      border-radius: 2px;
      transition: transform 0.3s ease, opacity 0.3s ease;
    }

    .menu-toggle-btn.is-active .hamburger-line:nth-child(1) {
      transform: translateY(7.5px) rotate(45deg);
    }

    .menu-toggle-btn.is-active .hamburger-line:nth-child(2) {
      opacity: 0;
    }

    .menu-toggle-btn.is-active .hamburger-line:nth-child(3) {
      transform: translateY(-7.5px) rotate(-45deg);
    }

    /* ===== NAVBAR ACTIONS & LANGUAGE DROPDOWN ===== */
    .nav-actions {
      display: flex;
      align-items: center;
      gap: 8px;
      z-index: 100002;
    }

    .lang-dropdown {
      position: relative;
      user-select: none;
      display: flex;
      align-items: center;
    }

    .lang-dropdown-trigger {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 6px 10px;
      background: transparent !important;
      border: none !important;
      border-radius: 6px;
      cursor: pointer;
      outline: none;
      -webkit-tap-highlight-color: transparent;
      box-shadow: none !important;
      color: rgba(255, 255, 255, 0.75);
      font-family: inherit;
      font-size: 13.5px;
      font-weight: 600;
      letter-spacing: 0.08em;
      line-height: 1;
      text-transform: uppercase;
      transition: color 0.18s ease, text-shadow 0.18s ease, opacity 0.18s ease;
    }

    .lang-dropdown-trigger:hover,
    .lang-dropdown.is-active .lang-dropdown-trigger {
      background: transparent !important;
      color: #ffffff;
      text-shadow: 0 0 10px rgba(255, 255, 255, 0.45);
    }

    .current-lang-code {
      display: inline-block;
      line-height: 1;
      font-size: 13.5px;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: inherit;
      user-select: none;
    }

    /* Dropdown Floating Menu */
    .lang-dropdown-menu {
      position: absolute;
      top: calc(100% + 8px);
      right: 0;
      min-width: 50px;
      width: max-content;
      padding: 4px;
      background: rgba(10, 12, 16, 0.95);
      border: 1px solid rgba(255, 255, 255, 0.14);
      border-radius: 10px;
      backdrop-filter: blur(24px);
      -webkit-backdrop-filter: blur(24px);
      box-shadow: 0 18px 45px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(255, 255, 255, 0.06);
      display: flex;
      flex-direction: column;
      gap: 2px;
      opacity: 0;
      visibility: hidden;
      transform: translateY(-8px) scale(0.96);
      transition: opacity 0.22s ease, transform 0.22s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.22s ease;
      z-index: 100010;
      pointer-events: none;
    }

    .lang-dropdown.is-active .lang-dropdown-menu {
      opacity: 1;
      visibility: visible;
      transform: translateY(0) scale(1);
      pointer-events: auto;
    }

    .lang-option {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 7px 12px;
      border-radius: 7px;
      background: transparent !important;
      border: 1px solid transparent !important;
      cursor: pointer;
      text-align: center;
      transition: color 0.18s ease, background-color 0.18s ease, text-shadow 0.18s ease;
      color: rgba(255, 255, 255, 0.55);
      font-family: inherit;
      font-size: 12.5px;
      font-weight: 500;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      outline: none;
      -webkit-tap-highlight-color: transparent;
      width: 100%;
      box-shadow: none !important;
    }

    .lang-option:hover {
      background: rgba(255, 255, 255, 0.08) !important;
      color: #ffffff;
      font-weight: 600;
    }

    .lang-option.active {
      background: rgba(255, 255, 255, 0.14) !important;
      color: #ffffff;
      font-weight: 700;
      text-shadow: 0 0 8px rgba(255, 255, 255, 0.35);
    }

    /* ===== FULLSCREEN SPLIT MENU OVERLAY ===== */
    header {
      position: relative;
      z-index: 100005 !important;
    }

    body.menu-is-open header {
      position: fixed !important;
      top: 0;
      left: 0;
      right: 0;
      width: 100%;
      z-index: 100005 !important;
      pointer-events: none;
      background: linear-gradient(180deg, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.75) 65%, rgba(0, 0, 0, 0) 100%);
      padding-bottom: 12px;
    }

    body.menu-is-open header .nav-glass,
    body.menu-is-open header .logo,
    body.menu-is-open header .menu-toggle-btn,
    body.menu-is-open header .lang-dropdown,
    body.menu-is-open header .lang-dropdown-trigger,
    body.menu-is-open header .lang-option {
      pointer-events: auto;
    }

    body.menu-is-open .nav-glass {
      background: transparent !important;
      border-color: transparent !important;
      backdrop-filter: none !important;
      -webkit-backdrop-filter: none !important;
      box-shadow: none !important;
    }

    .split-menu {
      position: fixed;
      inset: 0;
      width: 100vw;
      height: 100vh;
      height: 100dvh;
      background: #000000 !important;
      z-index: 100000;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transition: opacity 0.32s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.32s ease;
      will-change: opacity, visibility;
    }

    .split-menu.is-open {
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
    }

    .split-menu-grid {
      width: 100%;
      height: 100%;
      display: grid;
      grid-template-columns: 1fr 1fr;
    }

    /* Left Half: Brand & Animated Logo */
    .split-menu-brand {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: clamp(30px, 5vh, 60px) clamp(30px, 5vw, 70px);
      border-right: 1px solid rgba(255, 255, 255, 0.08);
      position: relative;
    }

    .split-menu-brand-content {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
    }

    .split-menu-logo-box {
      width: 130px;
      height: 110px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 24px;
    }

    .split-menu-logo {
      height: 100px;
      width: auto;
      display: block;
      filter: drop-shadow(0 0 35px rgba(255, 255, 255, 0.4));
      opacity: 0;
      transform: scale(0.85);
    }

    .split-menu.is-open .split-menu-logo {
      animation: angel-scale-in 1.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    }

    .split-menu-title-box {
      display: flex;
      align-items: center;
      justify-content: center;
      height: 44px;
      margin: 0;
    }

    .split-menu-title {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: clamp(1.4rem, 2.2vw, 1.85rem);
      font-weight: 300;
      letter-spacing: 0.24em;
      text-indent: 0.24em;
      text-transform: uppercase;
      display: flex;
      align-items: center;
      justify-content: center;
      white-space: nowrap;
    }

    /* Right Half: Navigation Links */
    .split-menu-nav {
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: clamp(30px, 5vh, 60px) clamp(30px, 6vw, 90px);
      overflow-y: auto;
    }

    .split-menu-nav-inner {
      max-width: 440px;
      width: 100%;
    }

    .split-menu-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: clamp(4px, 0.8vh, 8px);
      margin: 0;
      padding: 0;
    }

    .split-menu-list li {
      opacity: 0;
      transform: translateX(20px);
      transition: opacity 0.45s cubic-bezier(0.16, 1, 0.3, 1), transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .split-menu.is-open .split-menu-list li {
      opacity: 1;
      transform: translateX(0);
      transition-delay: calc(var(--link-idx) * 40ms + 100ms);
    }

    .split-nav-item {
      display: flex;
      align-items: baseline;
      gap: 16px;
      padding: clamp(9px, 1.3vh, 13px) 0;
      text-decoration: none !important;
      cursor: pointer;
      border: none !important;
      border-bottom: none !important;
      outline: none !important;
      box-shadow: none !important;
      transition: opacity 0.22s ease;
    }

    .split-nav-item .item-num {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 13px;
      font-weight: 500;
      letter-spacing: 0.04em;
      color: var(--text-dimmer);
      transition: color 0.22s ease;
      min-width: 24px;
    }

    .split-nav-item .item-text {
      font-size: clamp(17px, 2vw, 24px);
      font-weight: 300;
      letter-spacing: -0.01em;
      color: rgba(255, 255, 255, 0.6);
      text-decoration: none !important;
      border: none !important;
      border-bottom: none !important;
      box-shadow: none !important;
      outline: none !important;
      transition: color 0.22s ease, transform 0.22s ease;
    }

    .split-nav-item:hover {
      border: none !important;
      border-bottom: none !important;
      text-decoration: none !important;
      box-shadow: none !important;
    }

    .split-nav-item:hover .item-text {
      color: #ffffff;
      text-decoration: none !important;
      border: none !important;
      border-bottom: none !important;
      box-shadow: none !important;
      transform: translateX(4px);
    }

    .split-nav-item:hover .item-num {
      color: #ffffff;
    }

    .split-nav-item.active {
      border: none !important;
      border-bottom: none !important;
      text-decoration: none !important;
      box-shadow: none !important;
    }

    .split-nav-item.active .item-text {
      color: #ffffff;
      font-weight: 400;
      text-decoration: none !important;
      border: none !important;
      border-bottom: none !important;
      box-shadow: none !important;
    }

    .split-nav-item.active .item-num {
      color: #ffffff;
      text-shadow: none;
    }

    /* Product Highlight in Split Menu (NEXUS Radar - tenké písmo 300 so žiarivým svetlom) */
    .split-nav-item-product .item-num {
      color: rgba(255, 255, 255, 0.75);
      transition: color 0.22s ease;
    }

    .split-nav-item-product .item-text {
      font-weight: 300 !important; /* Rovnaké tenké písmo ako ostatné položky */
      color: #ffffff !important;
      text-shadow: 0 0 12px rgba(255, 255, 255, 0.8), 0 0 24px rgba(255, 255, 255, 0.45);
      transition: color 0.22s ease, transform 0.22s ease, text-shadow 0.22s ease;
    }

    .split-nav-item-product:hover .item-text {
      color: #ffffff !important;
      text-shadow: 0 0 16px rgba(255, 255, 255, 1), 0 0 32px rgba(255, 255, 255, 0.65);
      transform: translateX(4px);
    }

    .split-nav-item-product:hover .item-num {
      color: #ffffff;
    }

    .split-nav-item-product.active .item-text {
      font-weight: 400 !important;
      color: #ffffff !important;
      text-shadow: 0 0 16px rgba(255, 255, 255, 0.9), 0 0 30px rgba(255, 255, 255, 0.5);
    }

    .split-nav-item-product.active .item-num {
      color: #ffffff;
    }

    .menu-tm {
      font-size: 0.45em;
      font-weight: 700;
      position: relative;
      top: -0.6em;
      margin-left: 4px;
      color: #ffffff;
      text-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
      letter-spacing: 0.04em;
      vertical-align: baseline;
      display: inline-block;
      line-height: 1;
    }

    .anx-tm {
      font-size: 0.42em;
      font-weight: 700;
      position: relative;
      top: -0.65em;
      margin-left: 5px;
      color: rgba(255, 255, 255, 0.65);
      letter-spacing: 0.04em;
      vertical-align: baseline;
      display: inline-block;
      line-height: 1;
    }

    /* Mobile Responsive Split Menu */
    @media (max-width: 900px) {
      .split-menu-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto 1fr;
        overflow-y: auto;
        padding-top: 70px;
      }

      .split-menu-brand {
        border-right: none;
        border-bottom: none;
        padding: clamp(20px, 3vh, 32px) 20px clamp(16px, 2.5vh, 24px);
      }

      .split-menu-logo-box {
        width: 80px;
        height: 68px;
        margin-bottom: 12px;
      }

      .split-menu-logo {
        height: 64px;
      }

      .split-menu-title-box {
        height: 32px;
      }

      .split-menu-title {
        font-size: 1.25rem;
      }

      .split-menu-nav {
        padding: 24px clamp(20px, 4vw, 36px) 40px;
        justify-content: flex-start;
      }

      .split-nav-item {
        padding: 10px 0;
        border: none !important;
        border-bottom: none !important;
        text-decoration: none !important;
      }

      .split-nav-item .item-text {
        font-size: 18px;
        font-weight: 300;
        border: none !important;
        border-bottom: none !important;
        text-decoration: none !important;
      }

      .split-nav-item.active .item-text {
        font-weight: 400;
        border: none !important;
        border-bottom: none !important;
        text-decoration: none !important;
      }

      .split-nav-item-product .item-text {
        font-weight: 300 !important;
        color: #ffffff !important;
        text-shadow: 0 0 12px rgba(255, 255, 255, 0.8), 0 0 24px rgba(255, 255, 255, 0.45);
      }
      .split-nav-item-product.active .item-text {
        font-weight: 400 !important;
        color: #ffffff !important;
        text-shadow: 0 0 16px rgba(255, 255, 255, 0.9), 0 0 30px rgba(255, 255, 255, 0.5);
      }
    }

    /* ===== MAIN SLIDE STAGE ===== */
    main {
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      min-height: 0;
      padding: 12px 0 4px;
      position: relative;
      z-index: 2;
      width: 100%;
    }

    main .wrap {
      height: 100%;
      max-height: 680px;
      min-height: 460px;
      display: flex;
      flex-direction: column;
    }

    .stage {
      position: relative;
      width: 100%;
      height: 100%;
      flex: 1;
      min-height: 0;
      perspective: 1400px;
      perspective-origin: 50% 50%;
    }

    .hero-card {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      border-radius: 0;
      background: transparent !important;
      border: none !important;
      backdrop-filter: none !important;
      -webkit-backdrop-filter: none !important;
      box-shadow: none !important;
      overflow: visible;
      display: flex;
      flex-direction: column;

      opacity: 0.001;
      pointer-events: none;
      z-index: 1;
      transform-style: preserve-3d;
      backface-visibility: hidden;
      -webkit-backface-visibility: hidden;
      transform: translateZ(0);
      isolation: isolate;
      will-change: transform, opacity;
      transition: transform .65s cubic-bezier(.16, 1, .3, 1), opacity .65s cubic-bezier(.16, 1, .3, 1);
    }

    .hero-card:not(.active):not([class*="exit-"]):not([class*="prepare-enter-"]) {
      transform: scale(0.92) translateZ(-80px);
      opacity: 0;
      pointer-events: none;
      backdrop-filter: none !important;
      -webkit-backdrop-filter: none !important;
    }

    .hero-card.active {
      position: absolute;
      inset: 0;
      opacity: 1;
      transform: scale(1) translateX(0) translateY(0) translateZ(0) rotateY(0deg) rotateX(0deg);
      pointer-events: auto;
      z-index: 2;
      cursor: grab;
    }

    .hero-card.active:active {
      cursor: grabbing;
    }

    /* Horizontal slide transitions */
    .hero-card.exit-left {
      opacity: 0;
      transform: scale(0.92) translateX(-120px) translateZ(-80px) rotateY(-8deg);
      z-index: 1;
    }

    .hero-card.exit-right {
      opacity: 0;
      transform: scale(0.92) translateX(120px) translateZ(-80px) rotateY(8deg);
      z-index: 1;
    }

    .hero-card.prepare-enter-right {
      opacity: 0;
      transform: scale(0.92) translateX(130px) translateZ(-60px) rotateY(8deg);
      z-index: 2;
    }

    .hero-card.prepare-enter-left {
      opacity: 0;
      transform: scale(0.92) translateX(-130px) translateZ(-60px) rotateY(-8deg);
      z-index: 2;
    }

    /* Vertical slide transitions */
    .hero-card.exit-up {
      opacity: 0;
      transform: scale(0.92) translateY(-110px) translateZ(-80px) rotateX(8deg);
      z-index: 1;
    }

    .hero-card.exit-down {
      opacity: 0;
      transform: scale(0.92) translateY(110px) translateZ(-80px) rotateX(-8deg);
      z-index: 1;
    }

    .hero-card.prepare-enter-down {
      opacity: 0;
      transform: scale(0.92) translateY(120px) translateZ(-60px) rotateX(-8deg);
      z-index: 2;
    }

    .hero-card.prepare-enter-up {
      opacity: 0;
      transform: scale(0.92) translateY(-120px) translateZ(-60px) rotateX(8deg);
      z-index: 2;
    }

    /* Content Staggering inside Cards */
    .hero-card .hero-inner>*>* {
      opacity: 0;
      transform: translateY(20px);
      transition: transform .75s cubic-bezier(.16, 1, .3, 1), opacity .75s ease;
      will-change: transform, opacity;
    }

    .hero-card.active .hero-inner>*>* {
      opacity: 1;
      transform: translateY(0);
    }

    .hero-card.active .hero-inner>*>*:nth-child(1) {
      transition-delay: 0.08s;
    }

    .hero-card.active .hero-inner>*>*:nth-child(2) {
      transition-delay: 0.14s;
    }

    .hero-card.active .hero-inner>*>*:nth-child(3) {
      transition-delay: 0.20s;
    }

    .hero-card.active .hero-inner>*>*:nth-child(4) {
      transition-delay: 0.26s;
    }

    .hero-card.active .hero-inner>*>*:nth-child(5) {
      transition-delay: 0.32s;
    }

    .hero-card .mini-card,
    .hero-card .alloc,
    .hero-card .contact-card {
      opacity: 0;
      transform: translateY(18px) scale(0.96);
      transition: transform .7s cubic-bezier(.16, 1, .3, 1), opacity .7s ease, border-color .2s ease, background .2s ease;
      will-change: transform, opacity;
    }

    .hero-card.active .mini-card,
    .hero-card.active .alloc,
    .hero-card.active .contact-card {
      opacity: 1;
      transform: translateY(0) scale(1);
    }

    .hero-card.active .grid-4 .mini-card:nth-child(1),
    .hero-card.active .grid-3 .mini-card:nth-child(1),
    .hero-card.active .token-row .alloc:nth-child(1),
    .hero-card.active .contact-grid .contact-card:nth-child(1) {
      transition-delay: 0.22s;
    }

    .hero-card.active .grid-4 .mini-card:nth-child(2),
    .hero-card.active .grid-3 .mini-card:nth-child(2),
    .hero-card.active .token-row .alloc:nth-child(2),
    .hero-card.active .contact-grid .contact-card:nth-child(2) {
      transition-delay: 0.28s;
    }

    .hero-card.active .grid-4 .mini-card:nth-child(3),
    .hero-card.active .grid-3 .mini-card:nth-child(3),
    .hero-card.active .token-row .alloc:nth-child(3) {
      transition-delay: 0.34s;
    }

    .hero-card.active .grid-4 .mini-card:nth-child(4),
    .hero-card.active .token-row .alloc:nth-child(4) {
      transition-delay: 0.40s;
    }

    .hero-card.active .snake-step[data-step="1"] {
      transition-delay: 0.16s;
    }

    .hero-card.active .snake-step[data-step="2"] {
      transition-delay: 0.22s;
    }

    .hero-card.active .snake-step[data-step="3"] {
      transition-delay: 0.28s;
    }

    .hero-card.active .snake-step[data-step="4"] {
      transition-delay: 0.34s;
    }

    .hero-card.active .snake-step[data-step="5"] {
      transition-delay: 0.40s;
    }

    .hero-card.active .snake-step[data-step="6"] {
      transition-delay: 0.46s;
    }

    /* Hero card border lightning sweep disabled - cards are borderless & transparent */
    .hero-card::before {
      display: none !important;
    }

    .hero-inner {
      flex: 1;
      height: 100%;
      min-height: 0;
      padding: clamp(24px, 3.5vh, 48px) clamp(24px, 4vw, 48px);
      display: grid;
      grid-template-columns: 1.15fr 0.85fr;
      gap: 32px;
      align-items: center;
      align-content: center;
      overflow-y: auto;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
    }

    .hero-inner::-webkit-scrollbar {
      display: none;
    }

    .hero-inner.single {
      grid-template-columns: 1fr;
      max-width: 840px;
      width: 100%;
      margin: 0 auto;
      align-content: center;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--text-dim);
      border: 1px solid var(--border);
      padding: 6px 13px;
      border-radius: 999px;
      margin-bottom: clamp(10px, 1.8vh, 18px);
    }

    .eyebrow-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: linear-gradient(135deg, #fff, #8a8a85);
    }

    h1 {
      font-size: clamp(26px, 3.6vw, 48px);
      font-weight: 300;
      line-height: 1.08;
      letter-spacing: -0.015em;
      max-width: 540px;
      padding-right: 28px;
    }

    h1 em {
      font-style: normal;
      font-weight: 300;
      color: var(--text-dim);
    }

    .hero-sub {
      margin-top: clamp(10px, 1.6vh, 18px);
      font-size: clamp(13.5px, 1.1vw, 15.5px);
      line-height: 1.55;
      color: var(--text-dim);
      max-width: 480px;
    }

    .hero-actions {
      margin-top: clamp(14px, 2.2vh, 24px);
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
    }

    .hero-actions-faq {
      margin-top: 22px;
    }

    .contact-socials {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      margin-top: 14px;
    }

    .social-icon-btn {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(255, 255, 255, 0.16);
      color: var(--text-dim);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
      padding: 0;
      margin: 0;
      line-height: 0;
    }

    .social-icon-btn svg {
      display: block;
      margin: auto;
      flex-shrink: 0;
    }

    .social-icon-btn:hover {
      background: rgba(255, 255, 255, 0.14);
      border-color: rgba(255, 255, 255, 0.45);
      color: #ffffff;
      transform: translateY(-2px);
      box-shadow: 0 4px 16px rgba(255, 255, 255, 0.1);
    }

    .btn {
      font-size: 13.5px;
      font-weight: 600;
      padding: clamp(10px, 1.5vh, 13px) 22px;
      border-radius: 24px;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: transform .18s ease, background .2s ease, opacity .2s ease;
      cursor: pointer;
      border: none;
    }

    .btn-primary {
      background: var(--text);
      color: #0a0a0a;
    }

    .btn-primary:hover {
      transform: translateY(-2px);
    }

    .btn-ghost {
      background: transparent;
      border: 1px solid var(--border);
      color: var(--text);
    }

    .btn-ghost:hover {
      background: var(--glass-strong);
    }

    .btn-vision-beam {
      position: relative;
      overflow: hidden;
      background: linear-gradient(135deg, rgba(12, 18, 28, 0.88) 0%, rgba(18, 28, 44, 0.78) 100%);
      border: 1px solid rgba(186, 230, 253, 0.55);
      color: #ffffff;
      box-shadow: 0 0 20px rgba(186, 230, 253, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.25);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      display: inline-flex;
      align-items: center;
      gap: 9px;
      z-index: 1;
      cursor: pointer;
      transition: border-color 0.25s ease, box-shadow 0.25s ease;
    }

    /* Animated light ice-blue to pure white beam travelling side to side */
    .btn-vision-beam::before {
      content: '';
      position: absolute;
      top: -60%;
      left: -120%;
      width: 65%;
      height: 220%;
      background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(186, 230, 253, 0.1) 22%,
        rgba(224, 242, 254, 0.5) 45%,
        rgba(255, 255, 255, 0.95) 50%,
        rgba(224, 242, 254, 0.5) 55%,
        rgba(186, 230, 253, 0.1) 78%,
        transparent 100%
      );
      transform: rotate(25deg);
      animation: blueBeamTravel 4.2s ease-in-out infinite;
      pointer-events: none;
      z-index: 0;
    }

    @keyframes blueBeamTravel {
      0% {
        left: -120%;
        opacity: 0;
      }
      8% {
        opacity: 1;
      }
      75% {
        left: 190%;
        opacity: 1;
      }
      84%, 100% {
        left: 190%;
        opacity: 0;
      }
    }

    .btn-vision-beam .play-icon {
      position: relative;
      z-index: 1;
      width: 12px;
      height: 12px;
      fill: #e0f2fe;
      flex-shrink: 0;
      filter: drop-shadow(0 0 6px rgba(224, 242, 254, 0.85));
      transition: transform 0.2s ease, fill 0.2s ease;
    }

    .btn-vision-beam span {
      position: relative;
      z-index: 1;
      color: #ffffff;
      font-weight: 700;
      letter-spacing: 0.06em;
      font-size: 13px;
    }

    .btn-vision-beam:hover {
      border-color: rgba(255, 255, 255, 0.85);
      box-shadow: 0 0 28px rgba(186, 230, 253, 0.45), inset 0 0 16px rgba(224, 242, 254, 0.25);
      transform: none !important;
    }

    .btn-vision-beam:hover .play-icon {
      transform: scale(1.2);
      fill: #ffffff;
    }

    .btn .play-icon {
      width: 12px;
      height: 12px;
      fill: currentColor;
      flex-shrink: 0;
      transition: transform 0.2s ease;
    }

    .btn:hover .play-icon {
      transform: scale(1.18);
    }

    /* ==========================================================================
       ANGEL WALLET CHECKER (Slide 6)
       ========================================================================== */
    .wallet-checker-container {
      width: 100%;
      max-width: 860px;
    }

    .anx-checker-card {
      margin-top: clamp(14px, 2vh, 22px);
      padding: clamp(16px, 2.4vh, 24px);
      background: rgba(6, 8, 12, 0.68) !important;
      border: 1px solid rgba(255, 255, 255, 0.12) !important;
      border-radius: 18px;
      backdrop-filter: blur(16px) !important;
      -webkit-backdrop-filter: blur(16px) !important;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.38) !important;
      position: relative;
      overflow: hidden;
    }

    .anx-checker-topbar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      margin-bottom: clamp(12px, 1.8vh, 18px);
      flex-wrap: wrap;
    }

    .anx-badge-net {
      display: inline-flex;
      align-items: center;
      color: #ffffff;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      background: none;
      border: none;
      padding: 0;
    }

    .anx-contract-chip {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 4px 10px;
      border-radius: 8px;
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(255, 255, 255, 0.08);
      font-size: 11px;
      color: var(--text-dim);
    }

    .anx-chip-label {
      color: var(--text-dimmer);
      font-weight: 500;
    }

    .anx-chip-val {
      font-family: 'JetBrains Mono', 'SF Mono', monospace;
      color: var(--text);
      font-weight: 600;
    }

    .anx-chip-link {
      display: inline-flex;
      align-items: center;
      color: var(--text-dim);
      transition: color 0.2s ease, transform 0.2s ease;
    }

    .anx-chip-link:hover {
      color: #ffffff;
      transform: translateY(-1px);
    }

    .anx-checker-form {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .anx-input-wrap {
      display: flex;
      align-items: center;
      position: relative;
      background: rgba(6, 8, 12, 0.55);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 14px;
      padding: 4px 6px 4px 14px;
      transition: all 0.25s ease;
    }

    .anx-input-wrap:focus-within {
      border-color: rgba(255, 255, 255, 0.32);
      box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.06);
      background: rgba(6, 8, 12, 0.85);
    }

    .anx-input-icon {
      width: 18px;
      height: 18px;
      color: var(--text-dimmer);
      flex-shrink: 0;
      margin-right: 10px;
    }

    .anx-input {
      flex: 1;
      min-width: 0;
      background: transparent;
      border: none;
      outline: none;
      color: var(--text);
      font-size: clamp(13px, 1.6vh, 15px);
      font-family: 'JetBrains Mono', 'SF Mono', monospace;
      padding: 10px 0;
    }

    .anx-input::placeholder {
      font-family: 'Plus Jakarta Sans', sans-serif;
      color: var(--text-dimmer);
      font-size: clamp(13px, 1.5vh, 14px);
    }

    .anx-paste-btn {
      background: transparent;
      border: none;
      color: var(--text-dim);
      font-size: 13px;
      font-weight: 600;
      cursor: pointer;
      padding: 6px 12px;
      transition: color 0.2s ease;
      white-space: nowrap;
    }

    .anx-paste-btn:hover {
      color: #ffffff;
      background: transparent;
      border: none;
      transform: none;
    }

    .anx-actions-wrap {
      display: flex;
      align-items: center;
      gap: 14px;
      flex-wrap: wrap;
    }

    .anx-actions-wrap {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      margin-top: 4px;
      flex-wrap: wrap;
    }

    .anx-btn-primary {
      position: relative;
      font-size: 13.5px !important;
      font-weight: 600 !important;
      padding: clamp(10px, 1.5vh, 13px) 22px !important;
      border-radius: 24px !important;
      background: transparent !important;
      border: 1px solid var(--border) !important;
      color: var(--text) !important;
      box-shadow: none !important;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      cursor: pointer;
      z-index: 1;
      width: auto;
      max-width: fit-content;
      transition: background .2s ease, border-color .2s ease, opacity .2s ease;
      transform: none !important;
      white-space: nowrap;
    }

    .anx-btn-primary:hover:not(:disabled) {
      background: var(--glass-strong) !important;
      border-color: var(--border) !important;
      color: var(--text) !important;
      transform: none !important;
    }

    .anx-btn-primary:active:not(:disabled) {
      transform: none !important;
    }

    .anx-btn-primary:disabled {
      opacity: 0.6;
      cursor: not-allowed;
    }

    .anx-btn-primary .anx-btn-text {
      position: relative;
      z-index: 1;
      color: inherit;
      font-weight: 600;
      letter-spacing: normal;
      font-size: 13.5px;
      text-transform: none;
    }

    .anx-btn-spinner {
      position: relative;
      z-index: 1;
      width: 14px;
      height: 14px;
      border: 2px solid rgba(255, 255, 255, 0.3);
      border-top-color: #ffffff;
      border-radius: 50%;
      animation: anxSpin 0.7s linear infinite;
    }

    @keyframes anxSpin {
      to { transform: rotate(360deg); }
    }

    .anx-btn-sample {
      background: none;
      border: none;
      color: var(--text-dim);
      font-size: 12px;
      text-decoration: underline;
      text-underline-offset: 3px;
      cursor: pointer;
      transition: color 0.2s ease;
      padding: 4px 6px;
    }

    .anx-btn-sample:hover {
      color: #ffffff;
    }

    .anx-checker-status {
      margin-top: 10px;
      padding: 4px 0;
      background: transparent !important;
      border: none !important;
      color: #ffffff !important;
      font-size: 11.5px;
      line-height: 1.4;
      text-align: center;
    }

    .anx-checker-status.error {
      background: transparent !important;
      border: none !important;
      color: #ffffff !important;
    }

    .anx-results-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
      margin-top: clamp(14px, 2vh, 20px);
      animation: anxFadeIn 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    }

    @keyframes anxFadeIn {
      from { opacity: 0; transform: translateY(8px); }
      to { opacity: 1; transform: translateY(0); }
    }

    .anx-results-wrap {
      display: flex;
      flex-direction: column;
      gap: 12px;
      margin-top: clamp(12px, 1.8vh, 18px);
      animation: anxFadeIn 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    }

    @keyframes anxFadeIn {
      from { opacity: 0; transform: translateY(8px); }
      to { opacity: 1; transform: translateY(0); }
    }

    .anx-result-card {
      background: rgba(6, 8, 12, 0.68) !important;
      border: 1px solid rgba(255, 255, 255, 0.12) !important;
      border-radius: 18px;
      padding: clamp(12px, 1.8vh, 18px) clamp(14px, 2vw, 20px);
      backdrop-filter: blur(16px) !important;
      -webkit-backdrop-filter: blur(16px) !important;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.38) !important;
      display: flex;
      flex-direction: column;
      position: relative;
      transition: transform 0.28s ease, border-color 0.28s ease, background 0.28s ease;
    }

    .anx-result-card:hover {
      border-color: rgba(255, 255, 255, 0.24) !important;
    }

    .anx-card-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 8px;
      margin-bottom: 10px;
    }

    .anx-card-title-wrap {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .anx-wing-icon {
      width: 22px;
      height: 22px;
      object-fit: contain;
      flex-shrink: 0;
      display: inline-block;
      filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.45));
    }

    .anx-card-title {
      font-size: 11px;
      font-weight: 600;
      color: var(--text-dim);
      text-transform: uppercase;
      letter-spacing: 0.06em;
    }

    .anx-balance-numbers-wrap {
      display: flex;
      align-items: baseline;
      justify-content: space-between;
      gap: 12px;
      flex-wrap: wrap;
    }

    .anx-balance-amount {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .anx-balance-number {
      font-size: clamp(20px, 2.6vh, 26px);
      font-weight: 800;
      color: #ffffff;
      letter-spacing: -0.02em;
      line-height: 1.1;
    }

    .anx-token-symbol {
      font-size: 13.5px;
      font-weight: 600;
      color: var(--text-dim);
      letter-spacing: 0.02em;
    }

    .anx-est-eur-box {
      display: flex;
      align-items: baseline;
      gap: 6px;
      flex-wrap: wrap;
    }

    .anx-est-eur-label {
      font-size: 11px;
      color: var(--text-dimmer);
      font-weight: 500;
    }

    .anx-est-eur-amount {
      font-size: clamp(13.5px, 1.7vh, 16px);
      font-weight: 400;
      color: #ffffff;
      letter-spacing: -0.01em;
    }

    .anx-est-eur-note {
      font-size: 10px;
      color: var(--text-dimmer);
      font-style: italic;
    }

    /* Transactions Section (Bez bublinky a bez rámčeka) */
    .anx-txs-plain-wrap {
      background: transparent !important;
      border: none !important;
      box-shadow: none !important;
      backdrop-filter: none !important;
      -webkit-backdrop-filter: none !important;
      padding: 8px clamp(18px, 2.5vw, 28px) 0;
      display: flex;
      flex-direction: column;
      text-align: left;
      width: 100%;
      box-sizing: border-box;
    }

    .anx-txs-header {
      margin-bottom: 6px;
      text-align: left !important;
      display: flex;
      justify-content: flex-start;
      align-items: center;
      width: 100%;
    }

    .anx-txs-header .anx-card-title {
      text-align: left !important;
    }

    /* Transactions List - simple clean single-line rows */
    .anx-txs-list {
      display: flex;
      flex-direction: column;
      gap: 3px;
      width: 100%;
    }

    .anx-tx-row-item {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      padding: 2px 0;
      background: transparent !important;
      border: none !important;
      font-size: 11px;
      line-height: 1.3;
      white-space: nowrap;
      width: 100%;
      box-sizing: border-box;
    }

    .anx-tx-meta {
      display: flex;
      align-items: center;
      gap: 5px;
      font-size: 10.5px;
      color: var(--text-dim);
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .anx-tx-time {
      color: #ffffff;
      font-weight: 500;
      font-size: 10.5px;
    }

    .anx-tx-dot {
      color: var(--text-dimmer);
    }

    .anx-tx-from {
      color: var(--text-dim);
      font-size: 10.5px;
    }

    .font-mono {
      font-family: 'JetBrains Mono', 'SF Mono', monospace;
    }

    .anx-tx-val-wrap {
      display: flex;
      align-items: center;
      gap: 8px;
      flex-shrink: 0;
      white-space: nowrap;
    }

    .anx-tx-amount {
      font-size: 11.5px;
      font-weight: 600;
      color: #ffffff;
      letter-spacing: -0.01em;
      white-space: nowrap;
    }

    .anx-tx-link-btn {
      display: inline-flex;
      align-items: center;
      font-size: 10px;
      color: var(--text-dim);
      text-decoration: underline;
      text-underline-offset: 2px;
      white-space: nowrap;
      transition: color 0.2s ease;
    }

    .anx-tx-link-btn:hover {
      color: #ffffff;
    }

    .anx-no-tx-msg {
      padding: 6px 0;
      font-size: 11px;
      color: var(--text-dimmer);
      line-height: 1.4;
      text-align: left;
    }

    /* Reown Auth & Wallet Actions */
    .anx-auth-indicator-wrap {
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    .anx-btn-connect {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 5px 12px;
      border-radius: 20px;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.12);
      color: #ffffff;
      font-size: 11.5px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.2s ease;
      font-family: inherit;
    }

    .anx-btn-connect:hover {
      background: rgba(255, 255, 255, 0.12);
      border-color: rgba(255, 255, 255, 0.25);
    }

    .anx-connected-pill {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      padding: 4px 10px 4px 8px;
      border-radius: 20px;
      background: rgba(16, 185, 129, 0.08);
      border: 1px solid rgba(16, 185, 129, 0.25);
      font-size: 11.5px;
      color: #ffffff;
    }

    .anx-pill-dot {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: #10b981;
      box-shadow: 0 0 8px rgba(16, 185, 129, 0.6);
      flex-shrink: 0;
    }

    .anx-pill-addr {
      font-family: 'JetBrains Mono', 'SF Mono', monospace;
      font-size: 11px;
      color: #e2e8f0;
      font-weight: 500;
    }

    .anx-pill-logout {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: transparent;
      border: none;
      color: rgba(255, 255, 255, 0.5);
      cursor: pointer;
      padding: 2px;
      border-radius: 4px;
      transition: color 0.2s ease;
      margin-left: 2px;
    }

    .anx-pill-logout:hover {
      color: #ff5555;
    }

    /* Action bar on Balance card */
    .anx-wallet-action-bar {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      margin-top: 14px;
      padding-top: 14px;
      border-top: 1px solid rgba(255, 255, 255, 0.06);
    }

    .anx-action-pill {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      padding: 7px 16px;
      border-radius: 20px;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.12);
      color: #ffffff;
      font-size: 12px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.2s ease;
      font-family: inherit;
    }

    .anx-action-pill:hover {
      background: rgba(255, 255, 255, 0.12);
      border-color: rgba(255, 255, 255, 0.28);
      transform: translateY(-1px);
    }

    .anx-action-send:hover {
      box-shadow: 0 0 16px rgba(255, 255, 255, 0.08);
    }

    /* Wallet Action Modals */
    .anx-modal {
      position: fixed;
      inset: 0;
      z-index: 99999;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 20px;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.25s ease;
    }

    .anx-modal.active {
      opacity: 1;
      pointer-events: auto;
    }

    .anx-modal-backdrop {
      position: absolute;
      inset: 0;
      background: rgba(3, 5, 8, 0.85);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
    }

    .anx-modal-card {
      position: relative;
      z-index: 2;
      width: 100%;
      max-width: 440px;
      background: rgba(14, 18, 25, 0.96);
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: 20px;
      padding: 24px;
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
      display: flex;
      flex-direction: column;
      gap: 16px;
      animation: anxModalPop 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    }

    @keyframes anxModalPop {
      from { transform: scale(0.94); opacity: 0; }
      to { transform: scale(1); opacity: 1; }
    }

    .anx-modal-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .anx-modal-title {
      font-size: 16px;
      font-weight: 700;
      color: #ffffff;
      margin: 0;
    }

    .anx-modal-close-btn {
      background: transparent;
      border: none;
      color: var(--text-dim);
      font-size: 20px;
      cursor: pointer;
      padding: 4px;
      line-height: 1;
      transition: color 0.2s ease;
    }

    .anx-modal-close-btn:hover {
      color: #ffffff;
    }

    .anx-qr-container {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 16px;
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.06);
      border-radius: 14px;
      gap: 12px;
    }

    .anx-qr-canvas {
      border-radius: 10px;
      background: #0a0d14;
      padding: 6px;
      width: 180px !important;
      height: 180px !important;
    }

    .anx-copy-addr-wrap {
      display: flex;
      align-items: center;
      gap: 8px;
      width: 100%;
      background: rgba(6, 8, 12, 0.6);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 10px;
      padding: 8px 12px;
      box-sizing: border-box;
    }

    .anx-copy-addr-text {
      font-family: 'JetBrains Mono', 'SF Mono', monospace;
      font-size: 11px;
      color: var(--text);
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
      flex: 1;
    }

    .anx-modal-copy-btn {
      background: rgba(255, 255, 255, 0.08);
      border: none;
      color: #ffffff;
      padding: 4px 10px;
      border-radius: 6px;
      font-size: 11px;
      font-weight: 600;
      cursor: pointer;
      white-space: nowrap;
      transition: background 0.2s ease;
    }

    .anx-modal-copy-btn:hover {
      background: rgba(255, 255, 255, 0.16);
    }

    .anx-modal-subnote {
      font-size: 11px;
      color: var(--text-dimmer);
      line-height: 1.4;
      margin: 0;
      text-align: center;
    }

    .anx-modal-subnote strong {
      color: #ffffff;
    }

    .anx-send-balance-info {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 8px 12px;
      background: rgba(255, 255, 255, 0.04);
      border-radius: 10px;
      font-size: 12px;
    }

    .anx-send-info-label {
      color: var(--text-dim);
    }

    .anx-send-info-val {
      font-weight: 600;
      color: #ffffff;
      font-family: 'JetBrains Mono', monospace;
    }

    .anx-modal-form {
      display: flex;
      flex-direction: column;
      gap: 14px;
    }

    .anx-field-group {
      display: flex;
      flex-direction: column;
      gap: 6px;
    }

    .anx-field-label {
      font-size: 11.5px;
      font-weight: 500;
      color: var(--text-dim);
    }

    .anx-modal-input-wrap {
      display: flex;
      align-items: center;
      background: rgba(6, 8, 12, 0.6);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 12px;
      padding: 4px 8px 4px 12px;
      transition: border-color 0.2s ease;
    }

    .anx-modal-input-wrap:focus-within {
      border-color: rgba(255, 255, 255, 0.3);
    }

    .anx-modal-input {
      flex: 1;
      min-width: 0;
      background: transparent;
      border: none;
      outline: none;
      color: #ffffff;
      font-size: 13px;
      font-family: 'JetBrains Mono', monospace;
      padding: 8px 0;
    }

    .anx-modal-inline-btn {
      background: rgba(255, 255, 255, 0.08);
      border: none;
      color: #ffffff;
      padding: 4px 8px;
      border-radius: 6px;
      font-size: 11px;
      font-weight: 600;
      cursor: pointer;
      white-space: nowrap;
      transition: background 0.2s ease;
    }

    .anx-modal-inline-btn:hover {
      background: rgba(255, 255, 255, 0.18);
    }

    .anx-send-fee-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      font-size: 11px;
      color: var(--text-dimmer);
    }

    .anx-fee-highlight {
      color: #10b981;
      font-weight: 600;
    }

    .anx-send-status {
      font-size: 12px;
      padding: 8px 12px;
      border-radius: 10px;
      line-height: 1.4;
      text-align: center;
    }

    .anx-send-status.error {
      background: rgba(239, 68, 68, 0.1);
      border: 1px solid rgba(239, 68, 68, 0.3);
      color: #fca5a5;
    }

    .anx-send-status.success {
      background: rgba(16, 185, 129, 0.1);
      border: 1px solid rgba(16, 185, 129, 0.3);
      color: #6ee7b7;
    }

    .anx-send-status.loading {
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.1);
      color: #e2e8f0;
    }

    .anx-btn-full {
      width: 100% !important;
      max-width: 100% !important;
      margin-top: 6px;
    }

    /* Fallback for old wallet buttons if referenced elsewhere */
    .wallet-buttons-wrap {
      display: flex;
      gap: 16px;
      margin-top: clamp(16px, 2vh, 24px);
      margin-bottom: clamp(20px, 2.5vh, 28px);
      flex-wrap: wrap;
    }

    .wallet-store-btn {
      display: inline-flex;
      align-items: center;
      gap: 14px;
      padding: 12px 24px;
      border-radius: 18px;
      background: rgba(6, 8, 12, 0.65) !important;
      border: 1px solid rgba(255, 255, 255, 0.16) !important;
      color: var(--text);
      text-decoration: none;
      backdrop-filter: blur(14px) !important;
      -webkit-backdrop-filter: blur(14px) !important;
      transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
      box-shadow: 0 4px 18px rgba(0, 0, 0, 0.3) !important;
    }

    .wallet-store-btn:hover {
      transform: translateY(-2px);
      background: rgba(14, 18, 26, 0.8) !important;
      border-color: rgba(255, 255, 255, 0.35) !important;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45) !important;
      color: #fff;
    }

    .wallet-store-btn .store-icon {
      width: 26px;
      height: 26px;
      flex-shrink: 0;
    }

    .wallet-store-btn .btn-text {
      display: flex;
      flex-direction: column;
      text-align: left;
      line-height: 1.2;
    }

    .wallet-store-btn .btn-subtext {
      font-size: 10px;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      color: var(--text-dim);
      font-weight: 500;
    }

    .wallet-store-btn .btn-maintext {
      font-size: 16px;
      font-weight: 700;
      letter-spacing: -0.01em;
      color: var(--text);
    }

    .hero-stats {
      display: flex;
      gap: 0;
      margin-top: clamp(14px, 2.4vh, 26px);
      padding-top: clamp(12px, 1.6vh, 16px);
      border-top: 1px solid var(--border-soft);
    }

    .stat {
      flex: 1;
    }

    .stat+.stat {
      border-left: 1px solid var(--border-soft);
      padding-left: 16px;
      margin-left: 16px;
    }

    .stat-num {
      font-size: clamp(17px, 1.8vw, 22px);
      font-weight: 700;
      letter-spacing: -0.01em;
    }

    .stat-label {
      font-size: 11px;
      color: var(--text-dimmer);
      margin-top: 3px;
      line-height: 1.3;
    }

    .hero-visual {
      position: relative;
      aspect-ratio: 1/1;
      max-height: 100%;
      border-radius: 0;
      border: none !important;
      background: transparent !important;
      box-shadow: none !important;
      overflow: visible;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: grab;
      user-select: none;
      touch-action: none;
    }

    .hero-visual:active {
      cursor: grabbing;
    }

    #hero-3d-canvas {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      z-index: 1;
      transform: translateZ(0);
      will-change: transform;
    }

    .hv-caption {
      position: absolute;
      bottom: 16px;
      left: 16px;
      right: 16px;
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      font-size: 11px;
      color: var(--text-dimmer);
    }

    .hv-caption strong {
      display: block;
      font-size: 13px;
      color: var(--text);
      font-weight: 600;
      margin-bottom: 2px;
    }

    @keyframes float-slow {

      0%,
      100% {
        transform: translateY(0px);
      }

      50% {
        transform: translateY(-12px);
      }
    }

    /* ---- shared slide layout helpers ---- */
    .slide-tag {
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--text-dimmer);
      margin-bottom: 10px;
    }

    h2 {
      font-size: clamp(22px, 2.8vw, 34px);
      font-weight: 300;
      letter-spacing: -0.015em;
      line-height: 1.15;
    }

    .slide-desc {
      margin-top: 10px;
      font-size: 14px;
      line-height: 1.55;
      color: var(--text-dim);
      max-width: 560px;
    }

    .grid-4 {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: clamp(14px, 1.4vw, 20px);
      margin-top: clamp(14px, 2.5vh, 26px);
    }

    .grid-3 {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
      margin-top: clamp(14px, 2.5vh, 26px);
    }

    /* Slide 1 & 3: 4-card grid slides */
    .hero-card[data-slide="1"] .hero-inner.single,
    .hero-card[data-slide="3"] .hero-inner.single {
      max-width: 1140px;
    }

    .hero-card[data-slide="1"] .slide-desc,
    .hero-card[data-slide="3"] .slide-desc {
      max-width: 800px;
    }

    /* Slide 2: 3-card grid slide */
    .hero-card[data-slide="2"] .hero-inner.single {
      max-width: 1000px;
    }

    .hero-card[data-slide="2"] .slide-desc {
      max-width: 740px;
    }

    /* Slide 4: Výnosové protokoly (NEXUS & PULSE) */
    .hero-card[data-slide="4"] .hero-inner.single {
      max-width: 1080px;
    }

    .hero-card[data-slide="4"] .slide-desc {
      max-width: 780px;
    }

    .hero-card[data-slide="4"] .programs-grid {
      max-width: 1080px;
      gap: clamp(16px, 2vw, 28px);
    }

    /* Slide 7: Otázky a odpovede (FAQ) */
    .hero-card[data-slide="7"] .hero-inner.single {
      max-width: 1100px;
    }

    .hero-card[data-slide="7"] .slide-desc {
      max-width: 780px;
    }

    .hero-card[data-slide="7"] .faq-grid {
      gap: clamp(16px, 1.8vw, 24px);
    }

    .hero-card[data-slide="7"] .faq-card {
      padding: clamp(20px, 2.6vh, 26px) clamp(20px, 1.8vw, 26px);
    }

    .hero-card[data-slide="7"] .faq-card h4 {
      font-size: 16.5px;
      font-weight: 400;
      margin-bottom: 8px;
    }

    .hero-card[data-slide="7"] .faq-card p {
      font-size: 13.8px;
      line-height: 1.55;
    }

    /* ===== ROADMAP (SNAKE S-CURVE TIMELINE INFOGRAPHIC) ===== */
    .hero-card[data-slide="5"] .hero-inner.single,
    .hero-card.slide-roadmap .hero-inner.single {
      width: 100%;
      max-width: 1040px;
    }

    .roadmap-snake-wrap {
      position: relative;
      width: 100%;
      max-width: 1000px;
      margin: clamp(14px, 2.5vh, 26px) auto 0;
      display: flex;
      flex-direction: column;
      gap: clamp(28px, 4.5vh, 44px);
    }

    .roadmap-snake-row {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      column-gap: clamp(16px, 2.5vw, 32px);
      position: relative;
      width: 100%;
    }

    /* Desktop Snake Boustrophedon Flow & Pure CSS Rail:
       Row 1: 01 (Col 1) ──→ 02 (Col 2) ──→ 03 (Col 3) ╮
                                                       │ (turn down)
       Row 2: 06 (Col 1) ‹── 05 (Col 2) ‹── 04 (Col 3) ╯ */
    @media (min-width: 769px) {
      .roadmap-snake-row.row-2 .snake-step[data-step="4"] {
        grid-column: 3 !important;
        grid-row: 1 !important;
      }

      .roadmap-snake-row.row-2 .snake-step[data-step="5"] {
        grid-column: 2 !important;
        grid-row: 1 !important;
      }

      .roadmap-snake-row.row-2 .snake-step[data-step="6"] {
        grid-column: 1 !important;
        grid-row: 1 !important;
      }

      /* Pure CSS Solid White Rail across Row 1: passes dead-center through dots 1, 2, 3 */
      .roadmap-snake-row.row-1::before {
        content: "";
        position: absolute;
        top: 29px;
        /* exact center of snake-node */
        left: 5%;
        width: calc(83.333% - 5%);
        /* reaches exact center of col 3 (83.333%) */
        height: 1.5px;
        background: rgba(255, 255, 255, 0.9);
        box-shadow: 0 0 8px rgba(255, 255, 255, 0.6), 0 0 2px #ffffff;
        z-index: 1;
        pointer-events: none;
      }

      /* U-turn top half: from Step 3 center (83.333%) curves right and down to half-gap */
      .snake-turn-top {
        position: absolute;
        left: 83.333%;
        right: -24px;
        top: 29px;
        bottom: calc(clamp(28px, 4.5vh, 44px) * -0.5);
        border-top: 1.5px dashed rgba(255, 255, 255, 0.45);
        border-right: 1.5px dashed rgba(255, 255, 255, 0.45);
        border-top-right-radius: 28px;
        pointer-events: none;
        z-index: 1;
      }

      /* U-turn bottom half & Row 2 Rail: curves smoothly down and left, running all across Row 2 */
      .snake-turn-bottom {
        position: absolute;
        left: 6%;
        right: -24px;
        top: calc(clamp(28px, 4.5vh, 44px) * -0.5);
        height: calc(29px + (clamp(28px, 4.5vh, 44px) * 0.5));
        border-bottom: 1.5px dashed rgba(255, 255, 255, 0.45);
        border-right: 1.5px dashed rgba(255, 255, 255, 0.45);
        border-bottom-right-radius: 28px;
        pointer-events: none;
        z-index: 1;
      }
    }

    .snake-step {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      position: relative;
      background: transparent !important;
      border: none !important;
      box-shadow: none !important;
      padding: 0 4px;
      opacity: 0.001;
      transform: translateY(12px);
      transition: transform .5s cubic-bezier(.16, 1, .3, 1), opacity .5s cubic-bezier(.16, 1, .3, 1);
      will-change: transform, opacity;
      cursor: default;
    }

    .hero-card.active .snake-step {
      opacity: 1;
      transform: translateY(0);
    }

    /* Date above the rail */
    .snake-date {
      font-size: clamp(10px, 0.85vw, 11.5px);
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--text-dimmer, #868580);
      text-align: center;
      margin: 0 0 6px 0;
      height: 15px;
      line-height: 15px;
      box-sizing: border-box;
      transition: color .25s ease;
      white-space: nowrap;
    }

    .step-completed .snake-date {
      color: #dfdbcf;
    }

    .step-active .snake-date {
      color: #ffffff;
      text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    }

    /* Node & Small White Dots on the rail */
    .snake-node {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 24px;
      height: 16px;
      margin: 0 0 8px 0;
      box-sizing: border-box;
      z-index: 3;
    }

    .snake-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: #ffffff;
      box-shadow: 0 0 8px rgba(255, 255, 255, 0.9), 0 0 2px #ffffff;
      position: relative;
      z-index: 2;
      transition: transform .25s cubic-bezier(.16, 1, .3, 1), box-shadow .25s ease;
    }

    /* Active Step (Node 03 - Pre-Sale 2026) with small white dot & subtle halo */
    .step-active .snake-dot {
      width: 10px;
      height: 10px;
      background: #ffffff;
      box-shadow: 0 0 12px rgba(255, 255, 255, 1), 0 0 4px #ffffff;
      z-index: 4;
    }

    .snake-halo {
      position: absolute;
      width: 22px;
      height: 22px;
      border-radius: 50%;
      border: 1.2px solid rgba(255, 255, 255, 0.75);
      background: rgba(255, 255, 255, 0.12);
      box-shadow: 0 0 14px rgba(255, 255, 255, 0.35);
      animation: pulseHalo 2.4s ease-in-out infinite;
      z-index: 1;
      pointer-events: none;
    }

    @keyframes pulseHalo {

      0%,
      100% {
        transform: scale(0.95);
        opacity: 0.75;
        box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
      }

      50% {
        transform: scale(1.22);
        opacity: 1;
        box-shadow: 0 0 18px rgba(255, 255, 255, 0.65);
      }
    }

    /* Future Step dots */
    .step-future .snake-dot {
      width: 8px;
      height: 8px;
      background: #ffffff;
      opacity: 0.85;
      box-shadow: 0 0 6px rgba(255, 255, 255, 0.6);
    }

    /* Hover effect on milestone */
    .snake-step:hover .snake-dot {
      transform: scale(1.35);
      box-shadow: 0 0 16px rgba(255, 255, 255, 1), 0 0 4px #ffffff;
      opacity: 1;
    }

    .snake-step:hover h3 {
      color: #ffffff !important;
      text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    }

    /* Content below the rail */
    .snake-body {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 3px;
      max-width: 270px;
    }

    .snake-step h3 {
      font-size: clamp(13px, 1.1vw, 15px);
      font-weight: 400;
      line-height: 1.28;
      margin: 0;
      color: #ffffff;
      transition: color .25s ease;
    }

    .step-active h3 {
      color: #ffffff;
      font-weight: 500;
      text-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
    }

    .snake-step p {
      font-size: clamp(11px, 0.86vw, 12px);
      line-height: 1.44;
      color: var(--text-dim, #b8b7b2);
      margin: 0;
    }


    .mini-card {
      display: block;
      padding: clamp(14px, 2vh, 22px) clamp(14px, 1.4vw, 20px);
      border-radius: 24px;
      background: rgba(6, 8, 12, 0.65) !important;
      border: 1px solid rgba(255, 255, 255, 0.12) !important;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35) !important;
      backdrop-filter: blur(14px) !important;
      -webkit-backdrop-filter: blur(14px) !important;
      transition: border-color .3s ease, background .3s ease, transform .35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow .3s ease;
      position: relative;
      z-index: 1;
      will-change: transform;
    }

    @media (hover: hover) and (pointer: fine) {
      .hero-card.active .mini-card:hover {
        border-color: rgba(255, 255, 255, 0.28) !important;
        background: rgba(14, 18, 26, 0.8) !important;
        transform: scale(1.03) translateY(-2px) !important;
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5) !important;
        z-index: 20 !important;
        transition-delay: 0s !important;
      }
    }

    .mini-num {
      font-size: 11px;
      font-weight: 600;
      color: var(--text-dimmer);
      background: none !important;
      border: none !important;
      padding: 0 !important;
      border-radius: 0 !important;
      display: inline-block;
      margin-bottom: 8px;
      letter-spacing: 0.06em;
      box-shadow: none !important;
    }

    .mini-card h3 {
      font-size: 15px;
      font-weight: 300;
      margin-bottom: 6px;
      letter-spacing: -0.01em;
    }

    .mini-card p {
      font-size: 12.5px;
      line-height: 1.5;
      color: var(--text-dim);
    }

    .depin-network-card {
      display: block;
      text-decoration: none !important;
      color: inherit !important;
      cursor: pointer;
    }

    .depin-card-logo {
      display: flex;
      align-items: center;
      margin-bottom: 12px;
      height: 26px;
    }

    .network-logo-img {
      height: 22px;
      width: auto;
      max-width: 38px;
      object-fit: contain;
      filter: brightness(0) invert(1);
      opacity: 0.95;
      transition: opacity 0.3s ease, transform 0.3s ease;
    }

    .hero-card.active .mini-card:hover .network-logo-img {
      opacity: 1;
      transform: scale(1.06);
    }

    .depin-card-header {
      display: flex;
      align-items: baseline;
      justify-content: space-between;
      gap: 8px;
      margin-bottom: 6px;
    }

    .depin-card-header h3 {
      font-size: 15px;
      font-weight: 400;
      margin: 0;
      color: #ffffff;
    }

    .depin-card-role {
      font-size: 10.5px;
      font-weight: 300;
      color: var(--text-dimmer);
      letter-spacing: 0.05em;
      text-transform: uppercase;
      box-shadow: none !important;
      border: none !important;
      background: transparent !important;
      padding: 0 !important;
      white-space: nowrap;
    }

    .depin-network-card .depin-card-role::after {
      content: " ↗";
      font-size: 11px;
      opacity: 0.5;
      margin-left: 3px;
      display: inline-block;
      transition: opacity 0.25s ease, transform 0.25s ease;
    }

    @media (hover: hover) and (pointer: fine) {
      .hero-card.active .depin-network-card:hover .depin-card-role::after {
        opacity: 1;
        transform: translate(1.5px, -1.5px);
        color: #ffffff;
      }
    }

    .mini-icon {
      width: 36px;
      height: 36px;
      border-radius: 24px;
      margin-bottom: 12px;
      background: transparent !important;
      border: 1px solid rgba(255, 255, 255, 0.15) !important;
      box-shadow: none !important;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 15px;
    }


    /* ===== PROGRAMY SLIDE ===== */
    .programs-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: clamp(14px, 2.2vw, 24px);
      width: 100%;
      max-width: 960px;
      margin: clamp(10px, 1.8vh, 18px) auto 0;
    }

    .program-card {
      background: rgba(6, 8, 12, 0.68) !important;
      border: 1px solid rgba(255, 255, 255, 0.12) !important;
      border-radius: 18px;
      padding: clamp(14px, 2.2vh, 22px) clamp(16px, 2vw, 24px);
      backdrop-filter: blur(16px) !important;
      -webkit-backdrop-filter: blur(16px) !important;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.38) !important;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      position: relative;
      overflow: hidden;
      transition: transform 0.28s ease, border-color 0.28s ease, background 0.28s ease;
    }

    .hero-card.active .program-card:hover {
      transform: translateY(-2px);
      border-color: rgba(255, 255, 255, 0.28) !important;
      background: rgba(14, 18, 26, 0.82) !important;
      box-shadow: 0 12px 32px rgba(0, 0, 0, 0.52) !important;
    }

    .program-header {
      margin-bottom: clamp(6px, 1.2vh, 10px);
    }

    .program-name {
      font-size: clamp(16px, 2vw, 22px);
      font-weight: 300;
      letter-spacing: 0.02em;
      color: #ffffff;
      margin-bottom: 2px;
    }

    .program-min {
      display: flex;
      align-items: baseline;
      gap: 6px;
      font-size: clamp(11.5px, 1.2vw, 13px);
      color: var(--text-dim);
    }

    .program-min strong {
      color: #ffffff;
      font-size: clamp(12.5px, 1.4vw, 14.5px);
      font-weight: 700;
    }

    .program-table {
      display: flex;
      flex-direction: column;
      gap: clamp(4px, 0.7vh, 7px);
      margin: clamp(6px, 1vh, 10px) 0 clamp(8px, 1.4vh, 12px) 0;
    }

    .program-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: clamp(6px, 1vh, 9px) clamp(8px, 1.2vw, 12px);
      background: rgba(255, 255, 255, 0.025);
      border: 1px solid rgba(255, 255, 255, 0.06);
      border-radius: 9px;
      transition: background 0.2s ease, border-color 0.2s ease;
    }

    .program-row:hover {
      background: rgba(255, 255, 255, 0.05);
      border-color: rgba(255, 255, 255, 0.12);
    }

    .program-row.highlight {
      background: rgba(255, 255, 255, 0.045);
      border-color: rgba(255, 255, 255, 0.14);
    }

    .pr-period {
      font-size: clamp(11px, 1.2vw, 12.5px);
      font-weight: 600;
      color: var(--text);
    }

    .pr-yield {
      font-size: clamp(11px, 1.2vw, 12.5px);
      color: var(--text-dim);
      font-weight: 500;
      text-align: right;
    }

    .pr-yield .rate-num {
      color: #ffffff;
      font-weight: 800;
      font-size: clamp(12px, 1.4vw, 14px);
    }

    .program-note {
      font-size: clamp(9.5px, 1vw, 11px);
      line-height: 1.4;
      color: var(--text-dimmer);
      padding-top: clamp(6px, 1vh, 8px);
      border-top: 1px solid rgba(255, 255, 255, 0.06);
    }

    .program-note strong {
      color: var(--text-dim);
      font-weight: 600;
    }

    @media (max-width: 768px) {
      .hero-card[data-slide="4"] .hero-inner.single {
        padding: clamp(16px, 2.8vh, 26px) clamp(10px, 2.5vw, 16px) !important;
        justify-content: center !important;
      }

      .programs-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: clamp(10px, 1.6vh, 14px) !important;
        margin-top: clamp(12px, 2vh, 18px) !important;
        width: 100% !important;
        max-width: 100% !important;
      }

      .program-card {
        padding: clamp(12px, 1.8vh, 16px) clamp(10px, 2.5vw, 14px) !important;
        border-radius: 16px !important;
      }

      .program-header {
        margin-bottom: 6px !important;
        text-align: center !important;
      }

      .program-name {
        font-size: clamp(13.5px, 3.5vw, 15px) !important;
        font-weight: 400 !important;
        margin-bottom: 2px !important;
        text-align: center !important;
      }

      .program-min {
        font-size: 10.5px !important;
        gap: 4px !important;
        justify-content: center !important;
        text-align: center !important;
      }

      .program-min strong {
        font-size: 11.5px !important;
      }

      .program-table {
        gap: 4px !important;
        margin: 8px 0 9px 0 !important;
      }

      .program-row {
        padding: 6px 8px !important;
        border-radius: 8px !important;
      }

      .pr-period {
        font-size: 10.5px !important;
      }

      .pr-yield {
        font-size: 10.5px !important;
      }

      .pr-yield .rate-num {
        font-size: 12px !important;
      }

      .pr-label-desk {
        display: none !important;
      }

      .program-note {
        font-size: 9.5px !important;
        line-height: 1.36 !important;
        padding-top: 6px !important;
      }
    }


    .token-row {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1px;
      background: var(--border-soft);
      border: 1px solid var(--border-soft);
      border-radius: 24px;
      overflow: hidden;
      margin-top: clamp(14px, 2.5vh, 26px);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
    }

    .alloc {
      background: rgba(6, 8, 12, 0.68);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      padding: clamp(14px, 2vh, 22px) clamp(14px, 1.4vw, 20px);
    }

    .alloc-pct {
      font-size: clamp(18px, 2vw, 26px);
      font-weight: 700;
    }

    .alloc-label {
      margin-top: 4px;
      font-size: 12px;
      color: var(--text-dim);
      line-height: 1.35;
    }

    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
      margin-top: clamp(14px, 2.5vh, 26px);
    }

    .contact-card {
      padding: clamp(16px, 2vh, 22px);
      border-radius: 24px;
      background: rgba(6, 8, 12, 0.65);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      border: 1px solid rgba(255, 255, 255, 0.12);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
    }

    .contact-card h4 {
      font-size: 12px;
      font-weight: 300;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--text-dimmer);
      margin-bottom: 8px;
    }

    .contact-card a,
    .contact-card div.val {
      font-size: 14.5px;
      font-weight: 600;
    }

    .depin-pill {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 4px 10px;
      border-radius: 99px;
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.15);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      color: #fff;
    }

    .staking-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
      margin-top: clamp(14px, 2.5vh, 24px);
    }

    .staking-card {
      padding: clamp(14px, 2vh, 20px) clamp(14px, 1.4vw, 18px);
      border-radius: 20px;
      background: rgba(255, 255, 255, 0.035);
      border: 1px solid var(--border-soft);
      text-align: center;
      transition: transform .2s ease, border-color .2s ease;
    }

    .staking-card:hover {
      border-color: var(--border);
      transform: translateY(-2px);
    }

    .staking-hold {
      font-size: 12px;
      font-weight: 600;
      color: var(--text-dimmer);
      letter-spacing: 0.04em;
      text-transform: uppercase;
    }

    .staking-reward {
      font-size: clamp(20px, 2.4vw, 28px);
      font-weight: 800;
      color: var(--text);
      margin: 6px 0 2px;
      letter-spacing: -0.02em;
    }

    .staking-rate {
      font-size: 11.5px;
      color: var(--text-dim);
    }

    .staking-disclaimer {
      margin-top: 14px;
      padding: 12px 16px;
      border-radius: 16px;
      background: rgba(255, 255, 255, 0.02);
      border: 1px dashed var(--border-soft);
      font-size: 12px;
      line-height: 1.48;
      color: var(--text-dim);
      text-align: center;
    }

    .faq-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
      margin-top: clamp(14px, 2.5vh, 22px);
    }

    .faq-card {
      padding: clamp(14px, 2vh, 18px) clamp(14px, 1.4vw, 18px);
      border-radius: 20px;
      background: rgba(6, 8, 12, 0.65) !important;
      border: 1px solid rgba(255, 255, 255, 0.12) !important;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35) !important;
      backdrop-filter: blur(14px) !important;
      -webkit-backdrop-filter: blur(14px) !important;
    }

    .faq-card h4 {
      font-size: 13.5px;
      font-weight: 300;
      color: var(--text);
      margin-bottom: 6px;
      line-height: 1.35;
    }

    .faq-card p {
      font-size: 12px;
      line-height: 1.5;
      color: var(--text-dim);
    }

    /* ===== SLIDE NAV DOTS ===== */
    .slide-controls {
      position: relative;
      left: auto;
      bottom: auto;
      transform: none;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 14px;
      z-index: 60;
      padding: 18px 0 24px;
      margin-top: 10px;
      flex-shrink: 0;
    }

    .arrow-btn {
      width: 38px;
      height: 38px;
      border-radius: 24px;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.12);
      color: var(--text);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      backdrop-filter: blur(16px);
      transition: background .2s ease, border-color .2s ease, transform .15s ease;
      flex-shrink: 0;
    }

    .arrow-btn:hover {
      background: rgba(255, 255, 255, 0.12);
      border-color: rgba(255, 255, 255, 0.25);
      transform: translateY(-1px);
    }

    .arrow-btn svg {
      width: 15px;
      height: 15px;
    }

    .dots {
      display: flex;
      gap: 8px;
    }

    .slide-dot {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--text-dimmer);
      cursor: pointer;
      transition: background .25s ease, width .25s ease, transform .2s ease;
    }

    .slide-dot:hover {
      background: var(--text-dim);
    }

    .slide-dot.active {
      background: var(--text);
      width: 22px;
      border-radius: 4px;
    }

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

      .hero-card {
        transition: opacity .3s ease;
      }
    }

    a:focus-visible,
    button:focus-visible {
      outline: 2px solid #fff;
      outline-offset: 2px;
    }

    /* ===== RESPONSIVE ===== */
    @media (max-width:900px) {
      main .wrap {
        max-height: none;
        min-height: 0;
      }

      .hero-card {
        border-radius: 0;
        border: none !important;
        background: transparent !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        box-shadow: none !important;
      }

      .hero-inner,
      .hero-inner.single {
        grid-template-columns: 1fr;
        padding: clamp(20px, 3vh, 28px) clamp(18px, 3vw, 26px);
        align-content: center;
        align-items: center;
        justify-content: center;
      }

      .hero-visual {
        display: flex;
        position: relative;
        width: 100%;
        max-width: 380px;
        height: 210px;
        margin: 14px auto 6px;
        border-radius: 0;
        border: none !important;
        background: transparent !important;
        box-shadow: none !important;
        overflow: visible;
        align-items: center;
        justify-content: center;
        touch-action: none;
        flex-shrink: 0;
      }

      .grid-4 {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        margin-top: 18px;
      }

      .grid-3 {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        margin-top: 18px;
      }

      .grid-3> :last-child {
        grid-column: 1 / -1;
      }

      .depin-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 10px !important;
        max-width: 480px;
        margin-left: auto;
        margin-right: auto;
      }

      .depin-grid > :last-child {
        grid-column: auto !important;
      }

      .depin-network-card {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        text-align: left !important;
        gap: 14px !important;
        padding: 11px 16px !important;
        border-radius: 16px !important;
      }

      .depin-network-card .depin-card-logo {
        margin: 0 !important;
        flex-shrink: 0 !important;
        width: 34px !important;
        height: 34px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
      }

      .depin-network-card .network-logo-img {
        height: 22px !important;
        max-width: 32px !important;
      }

      .depin-network-card .depin-card-body {
        flex: 1 !important;
        min-width: 0 !important;
      }

      .depin-network-card .depin-card-header {
        display: flex !important;
        align-items: baseline !important;
        justify-content: flex-start !important;
        gap: 8px !important;
        margin-bottom: 2px !important;
      }

      .depin-network-card .depin-card-header h3 {
        font-size: 15px !important;
        margin: 0 !important;
        font-weight: 500 !important;
        color: #ffffff !important;
        white-space: nowrap !important;
      }

      .depin-network-card .depin-card-role {
        font-size: 10.5px !important;
        font-weight: 300 !important;
        color: var(--text-dimmer) !important;
        letter-spacing: 0.05em !important;
        text-transform: uppercase !important;
        margin: 0 !important;
      }

      .depin-network-card p {
        font-size: 12px !important;
        line-height: 1.38 !important;
        color: #b0afaa !important;
        margin: 0 !important;
      }



      .token-row {
        grid-template-columns: 1fr 1fr;
      }

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

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

      main {
        padding: 6px 0;
      }

      .mini-card {
        padding: 16px 14px;
        border-radius: 18px;
        background: rgba(6, 8, 12, 0.68) !important;
        border: 1px solid rgba(255, 255, 255, 0.12) !important;
        backdrop-filter: blur(14px) !important;
        -webkit-backdrop-filter: blur(14px) !important;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35) !important;
      }
    }

    @media (max-width:768px) {
      header {
        position: relative;
        z-index: 100005 !important;
      }

      .nav-glass {
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
        padding: 0 !important;
      }

      .nav-actions {
        gap: 8px;
      }

      .hero-actions {
        flex-wrap: nowrap;
      }

      .lang-dropdown-trigger {
        padding: 5px 8px;
        font-size: 13px;
      }

      .lang-dropdown-menu {
        right: 0;
        min-width: 48px;
      }
    }

    @media (max-width:640px) {
      .wrap {
        padding: 0 16px;
      }

      header {
        padding: clamp(10px, 1.8vh, 16px) 0 0;
      }

      main {
        padding: clamp(8px, 1.5vh, 16px) 0 clamp(10px, 1.8vh, 18px);
      }

      .hero-card {
        border-radius: 0;
        border: none !important;
        background: transparent !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        box-shadow: none !important;
      }

      .hero-inner,
      .hero-inner.single {
        padding: clamp(16px, 3.2vh, 28px) clamp(12px, 3.2vw, 18px);
        gap: clamp(12px, 2vh, 18px);
        align-content: center;
        align-items: center;
        justify-content: center;
        text-align: center;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
      }

      .hero-inner::-webkit-scrollbar {
        display: none;
      }

      .slide-tag {
        display: inline-block;
        padding: 0;
        border-radius: 0;
        background: transparent;
        border: none;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        box-shadow: none;
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        color: var(--text-dimmer);
        margin: 0 auto clamp(6px, 1vh, 10px);
        text-align: center;
      }

      h1 {
        font-size: clamp(24px, 6.8vw, 31px);
        line-height: 1.18;
        letter-spacing: -0.025em;
        font-weight: 300;
        padding-right: 0;
        text-align: center;
        margin: 0 auto;
      }

      h1 em {
        color: #b5b4af;
      }

      .hero-sub {
        font-size: clamp(13px, 3.4vw, 14.5px);
        line-height: 1.48;
        color: #b8b7b2;
        margin: clamp(8px, 1.4vh, 12px) auto 0;
        max-width: 480px;
        text-align: center;
      }

      .hero-actions {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        gap: clamp(4px, 1.2vw, 8px);
        margin-top: clamp(10px, 1.8vh, 16px);
        justify-content: center;
        align-items: center;
        width: 100%;
        max-width: 440px;
        margin-left: auto;
        margin-right: auto;
      }

      .btn {
        flex: 1 1 auto;
        justify-content: center;
        padding: clamp(8px, 1.3vh, 11px) 14px;
        font-size: clamp(11.5px, 2.8vw, 13px);
        font-weight: 600;
        border-radius: 20px;
        text-align: center;
      }

      .hero-actions .btn {
        flex: 1 1 0;
        min-width: 0;
        max-width: none;
        padding: clamp(7px, 1.2vh, 10px) clamp(4px, 1.2vw, 10px);
        font-size: clamp(10px, 2.6vw, 12.5px);
        font-weight: 600;
        border-radius: 20px;
        text-align: center;
        justify-content: center;
        white-space: nowrap;
        letter-spacing: -0.01em;
      }

      .hero-actions #open-video-btn {
        flex: 1.18 1 0;
        max-width: none;
        gap: clamp(3px, 1vw, 6px);
        padding: clamp(7px, 1.2vh, 10px) clamp(4px, 1vw, 8px);
      }

      .hero-actions #open-video-btn span {
        font-size: clamp(9.5px, 2.5vw, 11.5px);
        letter-spacing: 0.02em;
        white-space: nowrap;
      }

      .hero-actions #open-video-btn .play-icon {
        width: clamp(8px, 2vw, 11px);
        height: clamp(8px, 2vw, 11px);
        flex-shrink: 0;
      }

      .hero-stats {
        display: flex;
        gap: 0;
        margin-top: clamp(12px, 2vh, 18px);
        padding-top: clamp(10px, 1.6vh, 14px);
        border-top: 1px solid rgba(255, 255, 255, 0.12);
        width: 100%;
        max-width: 420px;
        margin-left: auto;
        margin-right: auto;
      }

      .stat {
        flex: 1;
        min-width: 0;
        text-align: center;
        background: none !important;
        border: none !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        border-radius: 0 !important;
        padding: 0 4px;
        box-shadow: none !important;
      }

      .stat+.stat {
        border-left: 1px solid rgba(255, 255, 255, 0.12) !important;
        padding-left: 4px;
        margin-left: 0;
      }

      .stat-num {
        font-size: clamp(12.5px, 3.4vw, 15px);
        font-weight: 700;
        color: #ffffff;
        letter-spacing: -0.01em;
        text-align: center;
        white-space: nowrap;
      }

      .stat-label {
        font-size: clamp(9.5px, 2.4vw, 11px);
        color: #abaaa5;
        margin-top: 3px;
        line-height: 1.22;
        text-align: center;
      }

      .hero-visual {
        width: 100%;
        max-width: 380px;
        height: clamp(155px, 21vh, 200px);
        margin: clamp(12px, 1.8vh, 18px) auto 0;
        border-radius: 0;
        border: none !important;
        background: transparent !important;
        box-shadow: none !important;
        overflow: visible;
        align-items: center;
        justify-content: center;
        touch-action: none;
        flex-shrink: 0;
      }

      h2 {
        font-size: clamp(21px, 5.6vw, 26px);
        line-height: 1.22;
        letter-spacing: -0.02em;
        font-weight: 300;
        text-align: center;
        margin: 0 auto;
      }

      .slide-desc {
        font-size: clamp(12.5px, 3.2vw, 14px);
        line-height: 1.46;
        color: #b8b7b2;
        margin: clamp(8px, 1.4vh, 12px) auto 0;
        max-width: 480px;
        text-align: center;
      }

      .grid-4,
      .grid-3 {
        grid-template-columns: 1fr 1fr;
        gap: clamp(10px, 1.6vh, 14px);
        margin-top: clamp(14px, 2.2vh, 20px);
        width: 100%;
      }

      .grid-3> :last-child {
        grid-column: 1 / -1;
      }

      .mini-card {
        padding: clamp(13px, 1.8vh, 16px) clamp(12px, 2.8vw, 15px);
        border-radius: 16px;
        background: rgba(6, 8, 12, 0.72) !important;
        border: 1px solid rgba(255, 255, 255, 0.12) !important;
        backdrop-filter: blur(14px) !important;
        -webkit-backdrop-filter: blur(14px) !important;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35) !important;
        text-align: center;
      }

      .mini-num {
        font-size: 11px;
        font-weight: 600;
        color: var(--text-dimmer);
        background: none !important;
        border: none !important;
        padding: 0 !important;
        border-radius: 0 !important;
        display: inline-block;
        margin: 0 auto 6px;
        letter-spacing: 0.05em;
        box-shadow: none !important;
      }

      .depin-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: clamp(7px, 1.2vh, 10px) !important;
        margin-top: clamp(10px, 1.6vh, 14px) !important;
        width: 100% !important;
        max-width: 480px !important;
        margin-left: auto !important;
        margin-right: auto !important;
      }

      .depin-grid > :last-child {
        grid-column: auto !important;
      }

      .depin-network-card {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        text-align: left !important;
        gap: clamp(10px, 2.8vw, 14px) !important;
        padding: clamp(8px, 1.2vh, 11px) clamp(11px, 2.8vw, 14px) !important;
        border-radius: 14px !important;
      }

      .depin-network-card .depin-card-logo {
        margin: 0 !important;
        flex-shrink: 0 !important;
        width: 32px !important;
        height: 32px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
      }

      .depin-network-card .network-logo-img {
        height: 20px !important;
        max-width: 30px !important;
      }

      .depin-network-card .depin-card-body {
        flex: 1 !important;
        min-width: 0 !important;
      }

      .depin-network-card .depin-card-header {
        display: flex !important;
        align-items: baseline !important;
        justify-content: flex-start !important;
        gap: 7px !important;
        margin-bottom: 2px !important;
      }

      .depin-network-card .depin-card-header h3 {
        font-size: clamp(13px, 3.2vw, 14.5px) !important;
        margin: 0 !important;
        text-align: left !important;
        font-weight: 500 !important;
        color: #ffffff !important;
        white-space: nowrap !important;
      }

      .depin-network-card .depin-card-role {
        font-size: 10px !important;
        font-weight: 300 !important;
        color: var(--text-dimmer) !important;
        letter-spacing: 0.05em !important;
        text-transform: uppercase !important;
        margin: 0 !important;
        text-align: left !important;
        border: none !important;
        background: transparent !important;
        padding: 0 !important;
      }

      .depin-network-card p {
        font-size: clamp(10.5px, 2.6vw, 11.5px) !important;
        line-height: 1.34 !important;
        color: #b0afaa !important;
        margin: 0 !important;
        text-align: left !important;
      }

      .mini-icon {
        width: clamp(22px, 3vh, 26px);
        height: clamp(22px, 3vh, 26px);
        margin: 0 auto 5px;
        font-size: 11px;
        border-radius: 8px;
        background: transparent !important;
        border: 1px solid rgba(255, 255, 255, 0.16) !important;
        box-shadow: none !important;
        display: flex;
        align-items: center;
        justify-content: center;
      }

      .mini-card h3 {
        font-size: clamp(13px, 3.4vw, 14.5px);
        margin-bottom: 4px;
        font-weight: 300;
        line-height: 1.25;
        color: #f3f2ee;
        text-align: center;
      }

      .mini-card p {
        font-size: clamp(11px, 2.8vw, 12px);
        line-height: 1.42;
        color: #b0afaa;
        margin: 0;
        text-align: center;
        -webkit-line-clamp: none;
        line-clamp: none;
      }

      /* Mobile Wallet Checker */
      .anx-checker-card {
        padding: 14px 12px;
        border-radius: 16px;
      }
      .anx-actions-wrap {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        gap: 8px;
        width: 100%;
      }
      .anx-btn-primary {
        padding: clamp(8px, 1.3vh, 11px) 18px !important;
        font-size: clamp(11.5px, 2.8vw, 13px) !important;
        font-weight: 600 !important;
        border-radius: 20px !important;
        width: auto;
        transform: none !important;
      }
      .anx-btn-primary:hover:not(:disabled) {
        transform: none !important;
      }
      .anx-btn-primary .anx-btn-text {
        font-size: inherit;
      }
      .anx-checker-topbar {
        margin-bottom: 8px;
      }
      .anx-balance-numbers-wrap {
        flex-direction: column;
        gap: 6px;
        align-items: flex-start;
      }
      .anx-tx-row-item {
        padding: 1px 0;
        background: transparent !important;
        border: none !important;
      }
      .anx-tx-meta {
        font-size: 10px;
        gap: 4px;
      }
      .anx-tx-amount {
        font-size: 11.5px;
      }

      .wallet-buttons-wrap {
        display: flex;
        flex-direction: row;
        gap: 12px;
        margin-top: clamp(18px, 2.8vh, 26px);
        margin-bottom: 0;
        width: 100%;
        justify-content: center;
      }

      .wallet-store-btn {
        flex: 1;
        min-width: 0;
        width: auto;
        padding: clamp(11px, 1.8vh, 14px) 14px;
        gap: 9px;
        border-radius: 16px;
        background: rgba(6, 8, 12, 0.72) !important;
        border: 1px solid rgba(255, 255, 255, 0.16) !important;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35) !important;
        backdrop-filter: blur(14px) !important;
        -webkit-backdrop-filter: blur(14px) !important;
        justify-content: center;
      }

      .wallet-store-btn .store-icon {
        width: clamp(22px, 2.8vh, 25px);
        height: clamp(22px, 2.8vh, 25px);
      }

      .wallet-store-btn .btn-subtext {
        font-size: 9.5px;
      }

      .wallet-store-btn .btn-maintext {
        font-size: 14px;
      }

      .faq-grid {
        display: flex;
        flex-direction: column;
        gap: clamp(10px, 1.6vh, 14px);
        margin-top: clamp(12px, 2vh, 18px);
        width: 100%;
        max-width: 480px;
        margin-left: auto;
        margin-right: auto;
      }

      .faq-card {
        padding: clamp(12px, 1.8vh, 16px) clamp(16px, 3.5vw, 22px);
        border-radius: 16px;
        background: rgba(6, 8, 12, 0.72) !important;
        border: 1px solid rgba(255, 255, 255, 0.12) !important;
        backdrop-filter: blur(14px) !important;
        -webkit-backdrop-filter: blur(14px) !important;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35) !important;
        text-align: center;
      }

      .faq-card h4 {
        font-size: clamp(13.5px, 3.4vw, 15px);
        font-weight: 500;
        color: #ffffff;
        margin-bottom: 6px;
        line-height: 1.32;
        text-align: center;
      }

      .faq-card p {
        font-size: clamp(11.2px, 2.8vw, 12.6px);
        line-height: 1.48;
        color: #c4c3be;
        margin: 0;
        text-align: center;
      }

      .hero-actions-faq {
        margin-top: clamp(16px, 2.4vh, 24px) !important;
        justify-content: center;
      }

      .hero-actions-faq .btn {
        padding: clamp(9px, 1.4vh, 12px) 26px;
        font-size: 13.5px;
        border-radius: 20px;
      }

      .slide-controls {
        padding: clamp(6px, 1vh, 10px) 0;
        margin-top: 0;
      }

      .slide-dot {
        width: 6px;
        height: 6px;
      }

      .slide-dot.active {
        width: 18px;
      }
    }

    @media (max-width:400px) {
      .wrap {
        padding: 0 12px;
      }

      .hero-inner,
      .hero-inner.single {
        padding: clamp(12px, 2vh, 18px) 8px;
        gap: 8px;
      }

      .grid-4,
      .grid-3 {
        gap: 8px;
      }

      .mini-card {
        padding: 11px 9px;
      }

      .programs-grid {
        gap: 8px !important;
      }

      .program-card {
        padding: 10px 8px !important;
      }

      .roadmap-snake-grid {
        row-gap: clamp(12px, 2vh, 18px) !important;
        column-gap: clamp(6px, 2vw, 10px) !important;
      }

      .stat {
        padding: 0 2px !important;
      }

      .stat+.stat {
        padding-left: 2px !important;
      }

      .stat-num {
        font-size: 12px !important;
      }

      .stat-label {
        font-size: 9px !important;
      }
    }

    /* ===== MOBILE ROADMAP SLIDE FIT (max-width: 768px) ===== */
    @media (max-width: 768px) {

      .hero-card[data-slide="5"] .hero-inner.single,
      .hero-card.slide-roadmap .hero-inner.single {
        padding: clamp(10px, 1.8vh, 18px) clamp(10px, 2.5vw, 16px) !important;
        gap: 0 !important;
        justify-content: flex-start !important;
      }

      .hero-card[data-slide="5"] .slide-tag,
      .hero-card.slide-roadmap .slide-tag {
        margin: 0 auto 3px !important;
        font-size: 9.5px !important;
        padding: 2px 8px !important;
      }

      .hero-card[data-slide="5"] h2,
      .hero-card.slide-roadmap h2 {
        font-size: clamp(17px, 4.4vw, 21px) !important;
        line-height: 1.2 !important;
        font-weight: 300 !important;
        margin: 0 auto 3px !important;
      }

      .hero-card[data-slide="5"] .slide-desc,
      .hero-card.slide-roadmap .slide-desc {
        font-size: clamp(10px, 2.6vw, 11.5px) !important;
        line-height: 1.35 !important;
        margin: 0 auto 6px !important;
        max-width: 390px !important;
        display: block !important;
        -webkit-line-clamp: unset !important;
        line-clamp: unset !important;
        overflow: visible !important;
      }

      .show-desk {
        display: none !important;
      }

      .roadmap-snake-wrap {
        margin-top: 4px !important;
        gap: 0 !important;
        width: 100% !important;
      }

      .roadmap-snake-row {
        display: flex !important;
        flex-direction: column !important;
        gap: 0 !important;
        width: 100% !important;
      }

      .snake-step {
        padding: clamp(5px, 0.9vh, 8px) 4px !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.07) !important;
        width: 100% !important;
        text-align: center !important;
        align-items: center !important;
        opacity: 1 !important;
        transform: none !important;
      }

      .roadmap-snake-row.row-2 .snake-step[data-step="6"] {
        border-bottom: none !important;
      }

      .snake-date {
        font-size: clamp(8.5px, 2.3vw, 9.5px) !important;
        margin-bottom: 1px !important;
        height: 11px !important;
        line-height: 11px !important;
        color: #8a8880 !important;
        font-weight: 600 !important;
      }

      .step-active .snake-date {
        color: #ffffff !important;
        font-weight: 700 !important;
      }

      .snake-node {
        height: 10px !important;
        margin-bottom: 2px !important;
      }

      .snake-dot {
        width: 5px !important;
        height: 5px !important;
        background: #ffffff !important;
        box-shadow: 0 0 3px rgba(255, 255, 255, 0.9) !important;
      }

      .step-active .snake-dot {
        width: 6px !important;
        height: 6px !important;
        background: #ffffff !important;
        box-shadow: 0 0 6px rgba(255, 255, 255, 1) !important;
      }

      .snake-halo {
        width: 13px !important;
        height: 13px !important;
        border-color: rgba(255, 255, 255, 0.7) !important;
        background: rgba(255, 255, 255, 0.1) !important;
      }

      .snake-body {
        padding: 0 !important;
        max-width: 100% !important;
      }

      .snake-step h3 {
        font-size: clamp(11px, 2.9vw, 12.5px) !important;
        line-height: 1.2 !important;
        margin-bottom: 1px !important;
      }

      .snake-step p {
        font-size: clamp(8.5px, 2.2vw, 9.8px) !important;
        line-height: 1.3 !important;
        max-width: 380px !important;
        color: #a6a5a0 !important;
      }
    }

    /* ===== MOBILE FAQ SLIDE FIT (max-width: 768px) ===== */
    @media (max-width: 768px) {
      .hero-card[data-slide="7"] .hero-inner.single {
        padding: clamp(14px, 2.2vh, 22px) clamp(14px, 3.2vw, 20px) !important;
        gap: 0 !important;
        justify-content: center !important;
      }

      .hero-card[data-slide="7"] .slide-tag {
        margin: 0 auto clamp(6px, 1vh, 9px) !important;
        font-size: 10px !important;
        padding: 3px 10px !important;
      }

      .hero-card[data-slide="7"] h2 {
        font-size: clamp(18px, 4.4vw, 22px) !important;
        line-height: 1.24 !important;
        font-weight: 300 !important;
        margin: 0 auto clamp(6px, 1vh, 9px) !important;
      }

      .hero-card[data-slide="7"] .slide-desc {
        font-size: clamp(11px, 2.7vw, 12.4px) !important;
        line-height: 1.42 !important;
        margin: 0 auto clamp(14px, 2vh, 20px) !important;
        max-width: 440px !important;
        display: block !important;
      }

      .hero-card[data-slide="7"] .faq-grid {
        gap: clamp(10px, 1.5vh, 13px) !important;
        margin-top: 0 !important;
        width: 100% !important;
        max-width: 470px !important;
        margin-left: auto !important;
        margin-right: auto !important;
      }

      .hero-card[data-slide="7"] .faq-card {
        padding: clamp(11px, 1.6vh, 15px) clamp(14px, 3.2vw, 18px) !important;
        border-radius: 16px !important;
      }

      .hero-card[data-slide="7"] .faq-card h4 {
        font-size: clamp(13px, 3.3vw, 14.5px) !important;
        line-height: 1.32 !important;
        margin-bottom: 5px !important;
      }

      .hero-card[data-slide="7"] .faq-card p {
        font-size: clamp(11px, 2.7vw, 12.2px) !important;
        line-height: 1.46 !important;
        color: #c4c3be !important;
      }

      .hero-card[data-slide="7"] .hero-actions-faq {
        margin-top: clamp(16px, 2.2vh, 22px) !important;
      }

      .hero-card[data-slide="7"] .hero-actions-faq .btn {
        padding: clamp(9px, 1.3vh, 11px) 26px !important;
        font-size: 13.5px !important;
        border-radius: 20px !important;
      }

      .hero-card[data-slide="7"] .contact-socials {
        gap: 12px !important;
        margin-top: clamp(12px, 1.6vh, 16px) !important;
      }

      .hero-card[data-slide="7"] .social-icon-btn {
        width: 36px !important;
        height: 36px !important;
      }
    }

    /* ===== VIDEO MODAL LIGHTBOX ===== */
    .video-modal {
      position: fixed;
      inset: 0;
      z-index: 200000;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: clamp(16px, 3.5vw, 48px);
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.35s ease;
    }

    .video-modal.active {
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
    }

    .video-modal-backdrop {
      position: absolute;
      inset: 0;
      background: rgba(4, 6, 10, 0.76);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      cursor: pointer;
      transition: opacity 0.35s ease;
    }

    .video-modal-box {
      position: relative;
      z-index: 2;
      width: 100%;
      max-width: 960px;
      background: rgba(10, 13, 18, 0.9);
      border: 1px solid rgba(255, 255, 255, 0.18);
      border-radius: 20px;
      box-shadow: 0 24px 64px rgba(0, 0, 0, 0.85), 0 0 35px rgba(255, 255, 255, 0.06);
      padding: 8px;
      transform: scale(0.95) translateY(12px);
      transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease;
      overflow: hidden;
    }

    .video-modal.active .video-modal-box {
      transform: scale(1) translateY(0);
    }

    .video-modal-close {
      position: absolute;
      top: 16px;
      right: 16px;
      z-index: 10;
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: rgba(0, 0, 0, 0.65);
      border: 1px solid rgba(255, 255, 255, 0.25);
      color: #ffffff;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
    }

    .video-modal-close:hover {
      background: rgba(255, 255, 255, 0.2);
      border-color: rgba(255, 255, 255, 0.6);
      transform: scale(1.08);
    }

    .video-player-frame {
      position: relative;
      width: 100%;
      aspect-ratio: 16 / 9;
      background: #000000;
      border-radius: 14px;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .video-player-frame video {
      width: 100%;
      height: 100%;
      object-fit: contain;
      display: block;
      background: #000000;
    }

    @media (max-width: 768px) {
      .video-modal {
        padding: 12px;
      }

      .video-modal-box {
        border-radius: 16px;
        padding: 5px;
      }

      .video-player-frame {
        border-radius: 12px;
      }

      .video-modal-close {
        top: 10px;
        right: 10px;
        width: 32px;
        height: 32px;
      }
    }


