    *,
    *::before,
    *::after {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      cursor: none;
    }

    :root {
      --bg: #02030a;
      --white: #ffffff;
      --muted: rgba(255, 255, 255, 0.72);
      --glass-bg: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
      --glass-border: rgba(255, 255, 255, 0.12);
      --accent-blue: #5ce0ff;
      --accent-purple: #bc6fff;
      --accent-green: #6dff8a;
      --aurora-color1: rgba(168, 85, 247, 0.2);
      --aurora-color2: rgba(79, 70, 229, 0.2);
    }

    html,
    body {
      width: 100%;
      max-width: 100vw;
      min-height: 100%;
      overflow-x: hidden;
    }

    body {
      background: var(--bg);
      color: var(--white);
      font-family: 'Montserrat', sans-serif;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
    }


    /* vignette */
    body::after {
      content: '';
      position: fixed;
      inset: 0;
      pointer-events: none;
      z-index: 99;
      background: radial-gradient(ellipse at center, transparent 30%, rgba(2, 3, 10, 0.5) 100%);
    }

    #space-canvas {
      position: fixed;
      inset: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
      z-index: 0;
    }

    #cursor-canvas {
      position: fixed;
      inset: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
      z-index: 100001;
    }

    #cursor-dot {
      position: fixed;
      top: 0;
      left: 0;
      width: 5px;
      height: 5px;
      background: #fff;
      border-radius: 50%;
      pointer-events: none;
      z-index: 100005;
      transform: translate(-50%, -50%);
      transition: opacity 0.4s ease;
      will-change: transform;
    }

    #split-top,
    #split-bottom {
      position: fixed;
      left: 0;
      right: 0;
      z-index: 99999;
      background: #02030a;
      transition: transform 0.85s cubic-bezier(0.76, 0, 0.24, 1);
    }

    #split-top {
      top: 0;
      height: 50%;
      transform: translateY(0);
    }

    #split-bottom {
      bottom: 0;
      height: 50%;
      transform: translateY(0);
    }

    #split-top.open {
      transform: translateY(-100%);
    }

    #split-bottom.open {
      transform: translateY(100%);
    }

    #split-top.gone,
    #split-bottom.gone {
      display: none;
    }

    #preloader {
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      z-index: 100000;
      background: #000;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 32px;
      margin: 0;
      padding: 0;
      transition: opacity 0.5s ease;
      overflow: hidden;
    }

    .aurora-container {
      position: absolute;
      inset: 0;
      overflow: hidden;
      pointer-events: none;
      z-index: 1;
    }

    .aurora-bg-pulse {
      position: absolute;
      inset: 0;
      opacity: 0.5;
      background-image: 
        radial-gradient(circle, var(--aurora-color1) 0%, transparent 80%),
        radial-gradient(circle, var(--aurora-color2) 0%, transparent 80%);
      background-size: 100% 100%;
      animation: aurora-pulse 10s infinite;
    }

    .aurora-blob {
      position: absolute;
      width: 50%;
      height: 50%;
      border-radius: 50%;
      filter: blur(80px);
      opacity: 0.4;
      mix-blend-mode: screen;
    }

    .blob-1 {
      top: -25%;
      left: -25%;
      background: #9333ea;
      animation: blob-move-1 30s infinite alternate ease-in-out;
    }

    .blob-2 {
      bottom: -25%;
      right: -25%;
      background: #c026d3;
      animation: blob-move-2 40s infinite alternate ease-in-out;
    }

    .blob-3 {
      top: 33%;
      left: 33%;
      width: 33%;
      height: 33%;
      background: #4338ca;
      animation: blob-move-3 50s infinite alternate ease-in-out;
      opacity: 0.3;
    }

    .preloader-content {
      position: relative;
      z-index: 10;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 32px;
    }

    .preloader-star {
      position: absolute;
      width: 2px;
      height: 2px;
      background: #fff;
      border-radius: 50%;
      opacity: 0;
    }

    @keyframes aurora-pulse {
      0%, 100% { opacity: 0.5; transform: scale(1); }
      50% { opacity: 0.7; transform: scale(1.05); }
    }

    @keyframes blob-move-1 {
      0% { transform: translate(-50px, -20px) scale(1); }
      50% { transform: translate(50px, 20px) scale(1.2); }
      100% { transform: translate(-50px, -20px) scale(1); }
    }

    @keyframes blob-move-2 {
      0% { transform: translate(50px, 20px) scale(1); }
      50% { transform: translate(-50px, -20px) scale(1.3); }
      100% { transform: translate(50px, 20px) scale(1); }
    }

    @keyframes blob-move-3 {
      0% { transform: translate(20px, -30px) rotate(0deg); }
      50% { transform: translate(-20px, 30px) rotate(180deg); }
      100% { transform: translate(20px, -30px) rotate(360deg); }
    }

    @keyframes star-twinkle {
      0%, 100% { opacity: 0; }
      50% { opacity: var(--star-opacity, 0.8); }
    }

    #preloader-canvas {
      display: block;
      width: min(500px, 72vw);
      height: auto;
      margin: 0 auto;
    }

    #progress-track {
      width: min(500px, 72vw);
      height: 2px;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 2px;
      overflow: hidden;
      position: relative;
      margin: 0 auto;
    }

    #progress-fill {
      position: absolute;
      top: 0;
      left: 0;
      height: 100%;
      width: 0%;
      background: #ffffff;
      border-radius: 2px;
      box-shadow: 0 0 8px rgba(255, 255, 255, 0.8), 0 0 20px rgba(255, 255, 255, 0.3);
    }

    #preloader-tagline {
      font-family: 'Montserrat', sans-serif;
      font-size: 11px;
      font-weight: 400;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.38);
      text-align: center;
    }

    .tagline-name {
      color: rgba(255, 255, 255, 0.7);
    }

    .tagline-br {
      display: none;
    }

    @media (max-width: 768px) {
      .tagline-br {
        display: block;
      }
    }

    #nav-fade-mask {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      height: 110px;
      background: linear-gradient(to bottom, rgba(2, 3, 10, 0.75) 0%, transparent 100%);
      pointer-events: none;
      z-index: 299;
    }

    #navbar-wrap {
      position: fixed;
      top: 24px;
      left: 0;
      right: 0;
      width: 100%;
      pointer-events: none;
      z-index: 300;
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 20px;
      opacity: 0;
      animation: navSlideDown 0.7s cubic-bezier(0.22, 0.61, 0.36, 1) 0.2s forwards;
      white-space: nowrap;
    }

    #navbar-wrap>a,
    #navbar-wrap>#navbar {
      pointer-events: auto;
    }

    @keyframes navSlideDown {
      from {
        opacity: 0;
        transform: translateY(-20px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .nav-logo {
      height: 42px;
      width: auto;
      display: block;
      filter: brightness(0) invert(1);
      flex-shrink: 0;
    }

    a:has(.nav-logo) {
      display: flex;
      align-items: center;
      flex-shrink: 0;
      text-decoration: none;
    }

    #navbar {
      display: flex;
      align-items: center;
      gap: 0;
      background: rgba(255, 255, 255, 0.07);
      border: 1px solid rgba(255, 255, 255, 0.16);
      border-radius: 60px;
      padding: 12px 14px;
      backdrop-filter: blur(22px);
      -webkit-backdrop-filter: blur(22px);
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.14), inset 0 -1px 0 rgba(255, 255, 255, 0.04);
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 2px;
    }

    .nav-link {
      font-family: 'Montserrat', sans-serif;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.62);
      text-decoration: none;
      padding: 9px 16px;
      border-radius: 50px;
      transition: color 0.3s ease, background 0.3s ease, transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    .nav-link:hover {
      color: #fff;
      background: rgba(255, 255, 255, 0.09);
      transform: translateY(-1px);
    }

    .nav-link.active {
      color: #fff;
      background: rgba(255, 255, 255, 0.14);
    }

    .nav-link.active::after {
      content: '';
      position: absolute;
      bottom: 5px;
      left: 50%;
      transform: translateX(-50%);
      width: 3px;
      height: 3px;
      border-radius: 50%;
      background: rgba(140, 210, 255, 0.9);
    }

    .nav-link {
      position: relative;
    }

    .nav-divider {
      width: 1px;
      height: 22px;
      background: rgba(255, 255, 255, 0.2);
      margin: 0 6px;
      flex-shrink: 0;
    }

    .nav-cta {
      font-family: 'Montserrat', sans-serif;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.9);
      text-decoration: none;
      padding: 9px 18px;
      border-radius: 50px;
      background: transparent;
      flex-shrink: 0;
      position: relative;
      transition: background 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), color 0.3s ease, transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    .nav-cta:hover {
      background: #fff;
      color: #0a0b14;
      transform: translateY(-1px) scale(1.05);
    }

    .nav-cta.active {
      color: #fff;
      background: rgba(255, 255, 255, 0.14);
      pointer-events: none;
    }

    .nav-cta.active::after {
      content: '';
      position: absolute;
      bottom: 5px;
      left: 50%;
      transform: translateX(-50%);
      width: 3px;
      height: 3px;
      border-radius: 50%;
      background: rgba(140, 210, 255, 0.9);
    }

    #mobile-topbar,
    #mobile-menu {
      display: none;
    }

    .glass-round-btn,
    #music-btn {
      width: 46px;
      height: 46px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.07);
      border: 1px solid rgba(255, 255, 255, 0.16);
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.14), inset 0 -1px 0 rgba(255, 255, 255, 0.04);
      transition: background 0.3s ease, transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), border-color 0.3s ease;
    }

    .glass-round-btn:hover,
    #music-btn:hover {
      background: rgba(255, 255, 255, 0.14);
      border-color: rgba(255, 255, 255, 0.22);
      transform: translateY(-1px) scale(1.05);
    }

    #menu-btn {
      position: relative;
      gap: 5px;
      flex-direction: column;
    }

    #menu-btn span {
      width: 16px;
      height: 1.7px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.92);
      transition: transform 0.3s ease, opacity 0.3s ease;
    }

    #menu-btn.is-open span:first-child {
      transform: translateY(3.6px) rotate(45deg);
    }

    #menu-btn.is-open span:last-child {
      transform: translateY(-3.6px) rotate(-45deg);
    }

    body.menu-open {
      overflow: hidden;
    }

    #mobile-topbar {
      position: fixed;
      top: 18px;
      left: 16px;
      right: 16px;
      z-index: 450;
      align-items: center;
      justify-content: space-between;
      opacity: 0;
      animation: fadeUp 0.8s cubic-bezier(0.22, 0.61, 0.36, 1) 0.25s forwards;
    }

    #music-btn-desktop {
      position: fixed;
      top: 28px;
      left: 36px;
      z-index: 400;
      width: 46px;
      height: 46px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.07);
      border: 1px solid rgba(255, 255, 255, 0.16);
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.14), inset 0 -1px 0 rgba(255, 255, 255, 0.04);
      transition: background 0.3s ease, transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), border-color 0.3s ease;
      animation: fadeUp 0.8s cubic-bezier(0.22, 0.61, 0.36, 1) 1.1s forwards;
      opacity: 0;
    }

    #music-btn-desktop:hover {
      background: rgba(255, 255, 255, 0.14);
      border-color: rgba(255, 255, 255, 0.22);
      transform: scale(1.1);
    }

    #spectrum-canvas-desktop {
      display: block;
    }

    #music-btn-desktop.playing {
      animation: musicPulse 2s ease infinite, fadeUp 0.8s cubic-bezier(0.22, 0.61, 0.36, 1) 1.1s forwards;
    }

    @keyframes musicPulse {
      0% { box-shadow: 0 0 0 0 rgba(255,255,255,0.4); }
      70% { box-shadow: 0 0 0 12px rgba(255,255,255,0); }
      100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
    }

    @media (max-width: 768px) {
      #music-btn-desktop {
        display: none !important;
      }

      #mobile-topbar {
        display: flex;
      }

      #music-btn {
        position: static;
        top: auto;
        left: auto;
        animation: none;
        opacity: 1;
        flex-shrink: 0;
      }
    }

    /* ── Click Particles ── */
    .click-particle {
      position: fixed;
      pointer-events: none;
      z-index: 99998;
      border-radius: 50%;
      transform: translate(-50%, -50%) scale(1);
      animation: particleBurst 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    }

    @keyframes particleBurst {
      0% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1);
      }

      100% {
        opacity: 0;
        transform: translate(var(--tx), var(--ty)) scale(0);
      }
    }

    /* ── Hover Glows for Interactive Elements ── */
    #navbar .nav-link:hover,
    #navbar .nav-cta:hover,
    .channel-card:hover,
    .collab-item:hover,
    .modal-btn:hover {
      text-shadow: 0 0 12px rgba(140, 210, 255, 0.4);
    }

    .mobile-logo-link {
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
    }

    .mobile-logo {
      height: 36px;
      width: auto;
      display: block;
      filter: brightness(0) invert(1);
    }

    #mobile-menu {
      position: fixed;
      inset: 0;
      z-index: 430;
      background: radial-gradient(circle at top center, rgba(120, 180, 255, 0.10), transparent 40%), rgba(2, 3, 10, 0.72);
      backdrop-filter: blur(28px);
      -webkit-backdrop-filter: blur(28px);
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.4s ease;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    #mobile-menu.open {
      opacity: 1;
      pointer-events: auto;
    }

    .mobile-menu-panel {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 18px;
      padding: 20px 24px 40px;
    }

    .mobile-menu-link {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 4px;
      text-decoration: none;
      color: rgba(255, 255, 255, 0.75);
      padding: 10px 48px;
      position: relative;
      opacity: 0;
      transform: scale(0.2);
      transition: transform 0.38s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    .mobile-menu-link:hover {
      transform: translateY(-3px) scale(1.04);
    }

    .mobile-menu-link.active {
      color: #fff;
    }

    .mobile-menu-title {
      font-family: 'Great Vibes', cursive;
      font-size: clamp(38px, 10vw, 68px);
      line-height: 1.1;
      transition: color 0.38s ease, text-shadow 0.38s ease, letter-spacing 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    .mobile-menu-link:hover .mobile-menu-title {
      color: #fff;
      letter-spacing: 0.07em;
      text-shadow: 0 0 16px rgba(140, 215, 255, 0.9), 0 0 40px rgba(80, 165, 255, 0.55), 0 0 80px rgba(60, 120, 255, 0.28);
    }

    .mobile-menu-desc {
      font-size: 10px;
      font-weight: 600;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.3);
      transition: color 0.38s ease, transform 0.38s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    .mobile-menu-link:hover .mobile-menu-desc {
      color: rgba(255, 255, 255, 0.62);
      transform: translateY(-1px);
    }

    .mobile-menu-link.active .mobile-menu-title {
      color: #fff;
      text-shadow: 0 0 12px rgba(140, 215, 255, 0.7), 0 0 32px rgba(80, 165, 255, 0.4);
    }

    .mobile-menu-link.active .mobile-menu-desc {
      color: rgba(140, 210, 255, 0.65);
    }

    .mobile-menu-link.active::after {
      content: '';
      position: absolute;
      bottom: 4px;
      left: 50%;
      transform: translateX(-50%);
      width: 4px;
      height: 4px;
      border-radius: 50%;
      background: rgba(140, 210, 255, 0.85);
    }

    #menu-close-mobile {
      position: fixed;
      top: 18px;
      right: 16px;
      z-index: 460;
      width: 46px;
      height: 46px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.07);
      border: 1px solid rgba(255, 255, 255, 0.16);
      color: #fff;
      font-size: 16px;
      display: none;
      align-items: center;
      justify-content: center;
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      cursor: pointer;
      transition: opacity 0.4s ease, background 0.3s ease, transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    #menu-close-mobile svg {
      width: 20px;
      height: 20px;
      fill: none;
      stroke: currentColor;
      stroke-width: 2.5;
      stroke-linecap: round;
      stroke-linejoin: round;
      display: block;
    }

    #menu-close-mobile.visible {
      display: flex;
    }

    #menu-close-mobile:hover {
      background: rgba(255, 255, 255, 0.15);
      transform: rotate(90deg) scale(1.1);
    }

    /* ── MAIN ── */
    main.page {
      position: relative;
      z-index: 1;
      flex: 1;
      padding-top: 160px;
      padding-bottom: 120px;
    }

    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(32px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .section-label {
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.32em;
      text-transform: uppercase;
      color: rgba(140, 210, 255, 0.65);
      text-align: center;
      display: block;
      opacity: 0;
      animation: fadeUp 0.7s cubic-bezier(0.22, 0.61, 0.36, 1) 0.3s forwards;
    }

    .page-title {
      font-family: 'Great Vibes', cursive;
      font-size: clamp(52px, 8vw, 100px);
      text-align: center;
      line-height: 1.1;
      margin-top: 10px;
      opacity: 0;
      animation: fadeUp 0.7s cubic-bezier(0.22, 0.61, 0.36, 1) 0.45s forwards;
    }

    /* ══════════════════════════
       CONSTELLATION HERO
    ══════════════════════════ */
    .contact-hero {
      position: relative;
      width: 95%;
      max-width: 1100px;
      margin: 70px auto 0;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      align-items: center;
    }

    .contact-hero-left {
      position: relative;
      opacity: 0;
      transform: translateX(-40px);
      animation: slideInLeft 0.85s cubic-bezier(0.22, 0.61, 0.36, 1) 0.6s forwards;
    }

    @keyframes slideInLeft {
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    .contact-big-text {
      font-family: 'Squada One', sans-serif;
      font-size: clamp(44px, 6vw, 80px);
      font-weight: 400;
      line-height: 1.0;
      letter-spacing: -0.01em;
      text-transform: uppercase;
    }

    .contact-big-text .line-glow {
      display: block;
      background: linear-gradient(135deg, #5ce0ff 0%, #bc6fff 50%, #6dff8a 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      filter: drop-shadow(0 0 20px rgba(92, 224, 255, 0.3));
    }

    .contact-big-text .line-plain {
      display: block;
      color: rgba(255, 255, 255, 0.9);
    }

    .contact-intro-para {
      font-size: clamp(12px, 1.1vw, 13.5px);
      font-weight: 400;
      line-height: 1.85;
      color: rgba(255, 255, 255, 0.52);
      letter-spacing: 0.015em;
      margin-top: 24px;
      max-width: 440px;
    }

    .contact-availability {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-top: 28px;
      padding: 8px 16px;
      border-radius: 50px;
      background: rgba(109, 255, 138, 0.08);
      border: 1px solid rgba(109, 255, 138, 0.22);
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: rgba(109, 255, 138, 0.85);
    }

    .avail-dot {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: #6dff8a;
      box-shadow: 0 0 10px rgba(109, 255, 138, 0.7);
      animation: availPulse 2s ease-in-out infinite;
    }

    @keyframes availPulse {

      0%,
      100% {
        opacity: 1;
        transform: scale(1);
      }

      50% {
        opacity: 0.45;
        transform: scale(0.65);
      }
    }

    /* ── Constellation SVG side ── */
    .contact-hero-right {
      position: relative;
      opacity: 0;
      transform: translateX(40px);
      animation: slideInRight 0.85s cubic-bezier(0.22, 0.61, 0.36, 1) 0.7s forwards;
    }

    @keyframes slideInRight {
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    .constellation-wrap {
      position: relative;
      width: 100%;
      aspect-ratio: 1;
      max-width: 480px;
      margin: 0 auto;
    }

    #constellation-svg,
    .lottie-container {
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: visible;
      pointer-events: none;
      will-change: transform;
      contain: strict;
    }

    /* ══════════════════════════
       COSMIC DIVIDER
    ══════════════════════════ */
    .cosmic-divider {
      position: relative;
      width: 95%;
      max-width: 900px;
      margin: 80px auto 0;
      height: 60px;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: visible;
    }

    .cosmic-divider::before,
    .cosmic-divider::after {
      content: '';
      flex: 1;
      height: 1px;
      background: linear-gradient(90deg, transparent 0%, rgba(140, 80, 255, 0.2) 30%, rgba(80, 180, 255, 0.45) 60%, transparent 100%);
    }

    .cosmic-divider::after {
      background: linear-gradient(90deg, transparent 0%, rgba(80, 180, 255, 0.45) 40%, rgba(140, 80, 255, 0.2) 70%, transparent 100%);
    }

    .cosmic-divider-core {
      position: relative;
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 0 18px;
    }

    .cosmic-divider-orb {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(140, 80, 255, 1) 0%, rgba(80, 180, 255, 0.6) 60%, transparent 100%);
      box-shadow: 0 0 10px rgba(140, 80, 255, 0.7), 0 0 22px rgba(80, 180, 255, 0.35);
      animation: cosmicPulse 2.8s ease-in-out infinite;
    }

    .cosmic-divider-orb.orb-sm {
      width: 4px;
      height: 4px;
      background: radial-gradient(circle, rgba(80, 200, 255, 0.9) 0%, transparent 100%);
      box-shadow: 0 0 6px rgba(80, 200, 255, 0.6);
      animation-delay: 0.4s;
    }

    .cosmic-divider-star {
      font-size: 13px;
      color: rgba(200, 160, 255, 0.85);
      text-shadow: 0 0 8px rgba(140, 80, 255, 0.7), 0 0 18px rgba(80, 180, 255, 0.4);
      animation: cosmicSpin 8s linear infinite;
      display: inline-block;
    }

    @keyframes cosmicPulse {

      0%,
      100% {
        opacity: 1;
        transform: scale(1)
      }

      50% {
        opacity: 0.55;
        transform: scale(0.75)
      }
    }

    @keyframes cosmicSpin {
      from {
        transform: rotate(0deg)
      }

      to {
        transform: rotate(360deg)
      }
    }

    /* CONTACT CHANNELS GRID */
    .channels-section {
      width: 95%;
      max-width: 1100px;
      margin: 80px auto 0;
    }

    .channels-heading {
      text-align: center;
      margin-bottom: 56px;
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }

    .channels-heading.sr-vis {
      opacity: 1;
      transform: translateY(0);
    }

    .channels-label {
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.32em;
      text-transform: uppercase;
      color: rgba(140, 210, 255, 0.65);
      display: block;
      margin-bottom: 10px;
    }

    .channels-title {
      font-family: 'Great Vibes', cursive;
      font-size: clamp(38px, 5vw, 64px);
      color: var(--white);
      line-height: 1.1;
    }

    .channels-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .channel-card {
      position: relative;
      background: var(--glass-bg);
      border: 1px solid var(--glass-border);
      border-radius: 28px;
      padding: 36px 30px 32px;
      overflow: hidden;
      backdrop-filter: blur(18px);
      -webkit-backdrop-filter: blur(18px);
      text-decoration: none;
      color: inherit;
      display: flex;
      flex-direction: column;
      gap: 16px;
      opacity: 0;
      transform: translateY(32px);
      transition:
        opacity 0.6s cubic-bezier(0.22, 0.61, 0.36, 1) var(--cc-delay, 0.3s),
        transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1) var(--cc-delay, 0.3s),
        border-color 0.4s ease,
        box-shadow 0.4s ease;
    }

    .channel-card.sr-vis {
      opacity: 1;
      transform: translateY(0);
    }

    .channel-card.sr-vis:hover {
      border-color: var(--cc-color, #fff);
      box-shadow: 0 30px 90px rgba(0, 0, 0, 0.65), 0 0 80px var(--cc-glow, rgba(255, 255, 255, 0.12));
      transform: translateY(-10px) scale(1.03);
      background: rgba(255, 255, 255, 0.09);
    }

    .channel-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 12%;
      right: 12%;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--cc-spec, rgba(255, 255, 255, 0.18)), transparent);
    }

    .channel-card::after {
      content: '';
      position: absolute;
      bottom: -60px;
      left: 50%;
      transform: translateX(-50%);
      width: 200px;
      height: 140px;
      border-radius: 50%;
      background: var(--cc-bloom, radial-gradient(ellipse, rgba(92, 224, 255, 0.07) 0%, transparent 70%));
      pointer-events: none;
    }

    /* Card icon */
    .cc-icon-wrap {
      width: 52px;
      height: 52px;
      border-radius: 14px;
      border: 1px solid var(--cc-icon-border, rgba(255, 255, 255, 0.2));
      background: var(--cc-icon-bg, rgba(255, 255, 255, 0.1));
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--cc-color, #fff);
      transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      flex-shrink: 0;
      box-shadow: inset 0 0 12px rgba(0, 0, 0, 0.2);
    }

    .cc-icon-wrap svg {
      width: 22px;
      height: 22px;
    }

    .channel-card:hover .cc-icon-wrap {
      transform: scale(1.15) translateY(-3px);
      box-shadow: 0 0 32px var(--cc-glow, rgba(92, 224, 255, 0.4));
      border-color: var(--cc-color);
    }

    .cc-label {
      font-size: 9px;
      font-weight: 700;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--cc-color, rgba(92, 224, 255, 0.7));
    }

    .cc-name {
      font-family: 'Squada One', sans-serif;
      font-size: clamp(18px, 2vw, 26px);
      font-weight: 400;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      color: var(--white);
      line-height: 1.1;
    }

    .cc-handle {
      font-size: 11px;
      font-weight: 500;
      color: rgba(255, 255, 255, 0.45);
      letter-spacing: 0.06em;
    }

    .cc-desc {
      font-size: 11.5px;
      line-height: 1.75;
      color: rgba(255, 255, 255, 0.48);
      margin-top: 4px;
    }

    .cc-cta {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      margin-top: 4px;
      font-size: 9.5px;
      font-weight: 700;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.35);
      transition: color 0.3s ease;
    }

    .cc-cta svg {
      width: 10px;
      height: 10px;
      stroke: currentColor;
      fill: none;
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round;
      transition: transform 0.3s ease;
    }

    .channel-card:hover .cc-cta {
      color: var(--cc-color, #5ce0ff);
    }

    .channel-card:hover .cc-cta svg {
      transform: translate(3px, -3px);
    }

    /* Channel themes */
    .cc-email {
      --cc-color: #ffcf5c;
      --cc-border: rgba(255, 210, 92, 0.35);
      --cc-glow: rgba(255, 210, 92, 0.15);
      --cc-icon-border: rgba(255, 210, 92, 0.3);
      --cc-icon-bg: rgba(255, 210, 92, 0.12);
      --cc-spec: rgba(255, 230, 150, 0.3);
      --cc-bloom: radial-gradient(ellipse, rgba(255, 210, 92, 0.08) 0%, transparent 70%);
    }

    .cc-behance {
      --cc-color: #5ce0ff;
      --cc-border: rgba(92, 224, 255, 0.35);
      --cc-glow: rgba(92, 224, 255, 0.15);
      --cc-icon-border: rgba(92, 224, 255, 0.3);
      --cc-icon-bg: rgba(92, 224, 255, 0.12);
      --cc-spec: rgba(92, 224, 255, 0.3);
      --cc-bloom: radial-gradient(ellipse, rgba(92, 224, 255, 0.08) 0%, transparent 70%);
    }

    .cc-linkedin {
      --cc-color: #4f8ef7;
      --cc-border: rgba(79, 142, 247, 0.35);
      --cc-glow: rgba(79, 142, 247, 0.15);
      --cc-icon-border: rgba(79, 142, 247, 0.3);
      --cc-icon-bg: rgba(79, 142, 247, 0.12);
      --cc-spec: rgba(100, 160, 255, 0.3);
      --cc-bloom: radial-gradient(ellipse, rgba(79, 142, 247, 0.08) 0%, transparent 70%);
    }

    .cc-github {
      --cc-color: #bc6fff;
      --cc-border: rgba(188, 111, 255, 0.35);
      --cc-glow: rgba(188, 111, 255, 0.15);
      --cc-icon-border: rgba(188, 111, 255, 0.3);
      --cc-icon-bg: rgba(188, 111, 255, 0.12);
      --cc-spec: rgba(200, 130, 255, 0.3);
      --cc-bloom: radial-gradient(ellipse, rgba(188, 111, 255, 0.08) 0%, transparent 70%);
    }

    .cc-instagram {
      --cc-color: #ff8fa3;
      --cc-border: rgba(255, 143, 163, 0.35);
      --cc-glow: rgba(255, 143, 163, 0.15);
      --cc-icon-border: rgba(255, 143, 163, 0.3);
      --cc-icon-bg: rgba(255, 143, 163, 0.12);
      --cc-spec: rgba(255, 160, 180, 0.3);
      --cc-bloom: radial-gradient(ellipse, rgba(255, 143, 163, 0.08) 0%, transparent 70%);
    }

    .cc-phone {
      --cc-color: #6dff8a;
      --cc-border: rgba(109, 255, 138, 0.35);
      --cc-glow: rgba(109, 255, 138, 0.15);
      --cc-icon-border: rgba(109, 255, 138, 0.3);
      --cc-icon-bg: rgba(109, 255, 138, 0.12);
      --cc-spec: rgba(130, 255, 160, 0.3);
      --cc-bloom: radial-gradient(ellipse, rgba(109, 255, 138, 0.08) 0%, transparent 70%);
    }

    .channel-card {
      cursor: pointer;
      position: relative;
    }

    .cc-arrow {
      position: absolute;
      top: 18px;
      right: 18px;
      width: 20px;
      height: 20px;
      opacity: 0;
      transform: translate(-6px, 6px);
      transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
      color: var(--cc-color, rgba(255, 255, 255, 0.6));
      z-index: 10;
    }

    .channel-card:hover .cc-arrow {
      opacity: 1;
      transform: translate(0, 0);
    }

    .cc-arrow svg {
      width: 100%;
      height: 100%;
      fill: none;
      stroke: currentColor;
      stroke-width: 2.5;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    /* GLASSMORPHIC REDIRECTION MODAL */
    .modal-overlay {
      position: fixed;
      inset: 0;
      background: radial-gradient(circle at center, var(--modal-glow, rgba(0, 0, 0, 0.4)) 0%, rgba(2, 3, 10, 0.85) 100%);
      backdrop-filter: blur(18px);
      -webkit-backdrop-filter: blur(18px);
      z-index: 10000;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      pointer-events: none;
      transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    }

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

    .modal-card {
      background: rgba(10, 14, 25, 0.88);
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-top: 1.5px solid var(--cc-color, rgba(255, 255, 255, 0.2));
      border-radius: 32px;
      padding: 48px 36px;
      width: 95%;
      max-width: 460px;
      text-align: center;
      box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7), 0 0 30px var(--cc-glow, transparent);
      transform: scale(0.92) translateY(30px);
      transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
      position: relative;
      overflow: hidden;
    }

    .modal-card::before {
      content: '';
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: radial-gradient(circle, var(--cc-glow, transparent) 0%, transparent 60%);
      opacity: 0.08;
      pointer-events: none;
    }

    .modal-overlay.active .modal-card {
      transform: scale(1) translateY(0);
    }

    .modal-icon-wrap {
      width: 52px;
      height: 52px;
      border-radius: 14px;
      margin: 0 auto 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: var(--cc-icon-bg, rgba(255, 255, 255, 0.12));
      border: 1px solid var(--cc-icon-border, rgba(255, 255, 255, 0.3));
      color: var(--cc-color, #fff);
      transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      animation: none;
      box-shadow: inset 0 0 12px rgba(0, 0, 0, 0.2);
    }

    @keyframes modalIconPulse {

      0%,
      100% {
        transform: scale(1);
        box-shadow: 0 0 30px var(--cc-glow);
      }

      50% {
        transform: scale(1.05);
        box-shadow: 0 0 50px var(--cc-glow);
      }
    }

    .modal-icon-wrap svg {
      width: 22px;
      height: 22px;
      filter: none;
    }

    .modal-card h3 {
      font-family: 'Cinzel Decorative', cursive;
      font-size: 22px;
      font-weight: 700;
      color: #fff;
      margin-bottom: 12px;
      letter-spacing: 0.05em;
      line-height: 1.3;
    }

    .modal-destination-wrap {
      margin: 24px 0 32px;
      text-align: center;
    }

    .modal-dest-label {
      font-size: 10px;
      font-weight: 700;
      color: rgba(255, 255, 255, 0.4);
      text-transform: uppercase;
      letter-spacing: 0.25em;
      display: block;
      margin-bottom: 8px;
    }

    #modal-detail-box {
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 14px;
      padding: 12px 20px;
      display: inline-block;
      color: var(--cc-color, #fff);
      font-family: 'Squada One', sans-serif;
      font-size: 18px;
      letter-spacing: 0.04em;
      box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.2);
      margin-bottom: 24px;
    }

    .modal-card p.modal-instruction {
      font-size: 13.5px;
      line-height: 1.6;
      color: rgba(255, 255, 255, 0.6);
      margin-bottom: 0;
    }

    .modal-actions {
      display: flex;
      gap: 16px;
      justify-content: center;
      margin-top: 36px;
    }

    .modal-btn {
      padding: 14px 28px;
      border-radius: 50px;
      font-family: 'Montserrat', sans-serif;
      font-size: 12px;
      font-weight: 700;
      white-space: nowrap;
      cursor: pointer;
      border: 1px solid transparent;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      display: flex;
      align-items: center;
      justify-content: center;
      text-transform: uppercase;
      letter-spacing: 0.1em;
    }

    .btn-secondary {
      background: rgba(255, 255, 255, 0.05);
      color: #fff;
      border: 1.5px solid rgba(255, 255, 255, 0.12);
      backdrop-filter: blur(8px);
    }

    .btn-secondary:hover {
      background: rgba(255, 255, 255, 0.1);
      border-color: rgba(255, 255, 255, 0.25);
      transform: translateY(-2px);
    }

    .btn-primary {
      background: #ffffff;
      color: #000;
      font-weight: 800;
      box-shadow: 0 4px 20px rgba(255, 255, 255, 0.15);
    }

    .btn-primary:hover {
      background: #f0f0f0;
      transform: translateY(-2px);
      box-shadow: 0 6px 24px rgba(255, 255, 255, 0.2);
    }

    /* Mobile modal adjustments */
    @media (max-width: 600px) {
      .modal-card {
        padding: 32px 20px;
        width: 88%;
        max-width: 340px;
        border-radius: 26px;
      }

      .modal-icon-wrap {
        width: 52px;
        height: 52px;
        border-radius: 16px;
        margin-bottom: 12px;
      }

      .modal-icon-wrap svg {
        width: 22px;
        height: 22px;
      }

      .modal-card h3 {
        margin-bottom: 8px;
      }

      .modal-destination-wrap {
        margin: 18px 0 24px;
      }

      #modal-detail-box {
        padding: 10px 18px;
        font-size: 16px;
        border-radius: 12px;
        margin-bottom: 20px;
      }

      .modal-card p.modal-instruction {
        font-size: 12.5px;
      }

      .modal-actions {
        gap: 10px;
        margin-top: 28px;
      }

      .modal-btn {
        padding: 12px 20px;
        font-size: 11px;
      }
    }

    /* Adjust Orbit Section for 2x2 Layout */
    @media (max-width: 900px) {
      .collab-list {
        grid-template-columns: 1fr;
      }
    }

    .mobile-lottie-wrap {
      display: none;
      pointer-events: none;
    }

    /* ORBIT / "HOW I WORK" SECTION */
    .orbit-section {
      width: 95%;
      max-width: 1300px;
      margin: 120px auto 0;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
    }

    .orbit-text {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity 0.65s ease, transform 0.65s ease;
      text-align: right;
      display: flex;
      flex-direction: column;
      align-items: flex-end;
    }

    .orbit-text.sr-vis {
      opacity: 1;
      transform: translateY(0);
    }

    .orbit-eyebrow {
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.32em;
      text-transform: uppercase;
      color: rgba(140, 210, 255, 0.65);
      margin-bottom: 14px;
      display: block;
    }

    .orbit-heading {
      font-family: 'Squada One', sans-serif;
      font-size: clamp(40px, 5.5vw, 68px);
      color: var(--white);
      line-height: 1.0;
      margin-bottom: 28px;
      text-transform: uppercase;
      letter-spacing: -0.01em;
    }

    .orbit-heading .line-glow {
      display: inline;
      background: linear-gradient(135deg, #5ce0ff 0%, #bc6fff 50%, #6dff8a 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      filter: drop-shadow(0 0 20px rgba(92, 224, 255, 0.3));
    }

    .orbit-heading .line-plain {
      display: inline;
      color: rgba(255, 255, 255, 0.9);
    }

    .orbit-heading-row {
      display: block;
    }

    .orbit-para {
      font-size: clamp(12px, 1.05vw, 13.5px);
      line-height: 1.85;
      color: rgba(255, 255, 255, 0.52);
      margin-bottom: 12px;
    }

    .collab-list {
      display: flex;
      flex-direction: column;
      gap: 12px;
      margin-top: 32px;
      width: 100%;
    }

    .collab-item {
      display: flex;
      align-items: center;
      gap: 20px;
      padding: 24px;
      background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 20px;
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      cursor: pointer;
      opacity: 0;
      transform: translateX(20px);
      transition:
        opacity 0.5s ease var(--ci-delay, 0s),
        transform 0.6s cubic-bezier(0.4, 0, 0.2, 1),
        background 0.5s cubic-bezier(0.4, 0, 0.2, 1),
        border-color 0.5s cubic-bezier(0.4, 0, 0.2, 1),
        box-shadow 0.6s cubic-bezier(0.4, 0, 0.2, 1),
        padding 0.5s cubic-bezier(0.4, 0, 0.2, 1);
      overflow: hidden;
    }

    .collab-item.active {
      background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.04) 100%);
      border-color: rgba(255, 255, 255, 0.22);
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
      padding: 30px;
      align-items: flex-start;
    }

    .collab-item:not(.active):hover {
      background: rgba(255, 255, 255, 0.08);
      border-color: rgba(255, 255, 255, 0.15);
    }

    .collab-item.sr-vis {
      opacity: 1;
      transform: translateX(0);
    }

    .collab-item:hover {
      border-color: rgba(255, 255, 255, 0.22);
    }

    .collab-toggle {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.12);
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      color: rgba(255, 255, 255, 0.8);
      transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
      flex-shrink: 0;
    }

    .collab-item.active .collab-toggle {
      background: #fff;
      color: #000;
      transform: rotate(180deg);
      border-color: #fff;
    }

    .collab-toggle::before,
    .collab-toggle::after {
      content: '';
      position: absolute;
      background: currentColor;
      transition: all 0.4s ease;
    }

    .collab-toggle::before {
      width: 12px;
      height: 1.5px;
    }

    .collab-toggle::after {
      width: 1.5px;
      height: 12px;
    }

    .collab-item.active .collab-toggle::after {
      opacity: 0;
    }

    .collab-icon {
      font-size: 24px;
      flex-shrink: 0;
      filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.1));
      transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), font-size 0.5s ease;
      order: 3;
    }

    .collab-item.active .collab-icon {
      font-size: 36px;
      transform: scale(1.1) rotate(5deg);
      margin-top: 4px;
    }

    .collab-item.active .collab-toggle {
      margin-top: 4px;
    }

    .collab-text {
      flex: 1;
      text-align: right;
      order: 2;
    }

    .collab-text strong {
      display: block;
      font-family: 'Squada One', sans-serif;
      font-size: 20px;
      font-weight: 400;
      color: rgba(255, 255, 255, 0.9);
      letter-spacing: 0.05em;
      text-transform: uppercase;
      line-height: 1;
      transition: color 0.5s ease;
    }

    .collab-description {
      display: grid;
      grid-template-rows: 0fr;
      transition: grid-template-rows 0.5s cubic-bezier(0.4, 0, 0.2, 1);
      overflow: hidden;
    }

    .collab-item.active .collab-description {
      grid-template-rows: 1fr;
    }

    .collab-description span {
      min-height: 0;
      display: block;
      font-size: clamp(12px, 1.05vw, 13.5px);
      line-height: 1.85;
      color: rgba(255, 255, 255, 0.62);
      opacity: 0;
      transform: translateY(10px);
      transition: opacity 0.4s ease, transform 0.4s ease;
      margin-top: 0;
    }

    .collab-item.active .collab-description span {
      opacity: 1;
      transform: translateY(0);
      margin-top: 10px;
      transition-delay: 0.1s;
    }

    /* Orbit SVG */
    .orbit-visual-wrap {
      position: relative;
      opacity: 0;
      transform: translateX(-30px);
      transition: opacity 0.7s ease 0.2s, transform 0.7s ease 0.2s;
    }

    .orbit-visual-wrap.sr-vis {
      opacity: 1;
      transform: translateX(0);
    }

    /* ═══════ ASTRONAUT VISUAL ═══════ */
    .astronaut-visual {
      width: 100%;
      height: auto;
      max-width: 480px;
      display: block;
      margin: 0 auto;
      filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.4));
      animation: astronautFloat 5s ease-in-out infinite;
      position: relative;
      z-index: 2;
    }

    @keyframes astronautFloat {
      0%, 100% {
        transform: translateY(0) rotate(0deg);
      }
      33% {
        transform: translateY(-30px) rotate(4deg);
      }
      66% {
        transform: translateY(15px) rotate(-2deg);
      }
    }

    /* ═══════ COSMIC ATMOSPHERE ═══════ */
    .space-atmosphere {
      position: absolute;
      inset: -50px;
      pointer-events: none;
      z-index: 1;
      overflow: visible;
    }

    .space-star {
      position: absolute;
      background: #fff;
      border-radius: 50%;
      opacity: 0;
      animation: starTwinkle var(--star-dur) ease-in-out infinite var(--star-delay);
    }

    @keyframes starTwinkle {
      0%, 100% { opacity: 0; transform: scale(0.5); }
      50% { opacity: var(--star-op, 0.8); transform: scale(1.1); }
    }

    .space-cloud-png {
      position: absolute;
      width: clamp(280px, 30vw, 450px);
      height: auto;
      opacity: 0;
      filter: blur(10px);
      transition: opacity 1s ease;
      animation: cloudDrift var(--cloud-dur) ease-in-out infinite alternate;
      pointer-events: none;
      z-index: 1;
    }

    .orbit-visual-wrap.sr-vis .space-cloud-png {
      opacity: var(--cloud-op, 0.15);
    }

    @keyframes cloudDrift {
      0% { transform: translate(0, 0) scale(1) rotate(0deg); }
      100% { transform: translate(40px, 30px) scale(1.1) rotate(3deg); }
    }





    /* ══════════════════════════
       TIMEZONE SECTION
    ══════════════════════════ */
    .timezone-section {
      width: 95%;
      max-width: 1100px;
      margin: 100px auto 0;
    }

    .tz-heading {
      text-align: center;
      margin-bottom: 48px;
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }

    .tz-heading.sr-vis {
      opacity: 1;
      transform: translateY(0);
    }

    .tz-label {
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.32em;
      text-transform: uppercase;
      color: rgba(140, 210, 255, 0.65);
      display: block;
      margin-bottom: 10px;
    }

    .tz-title {
      font-family: 'Great Vibes', cursive;
      font-size: clamp(36px, 4.5vw, 58px);
      color: var(--white);
      line-height: 1.1;
    }

    .tz-clock-wrap {
      position: relative;
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 32px;
      flex-wrap: wrap;
    }

    .tz-card {
      position: relative;
      background: var(--glass-bg);
      border: 1px solid var(--glass-border);
      border-radius: 24px;
      padding: 28px 32px;
      min-width: 200px;
      text-align: center;
      overflow: hidden;
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.55s ease var(--tz-delay, 0s), transform 0.55s ease var(--tz-delay, 0s), border-color 0.3s ease;
    }

    .tz-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 10%;
      right: 10%;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.16), transparent);
    }

    .tz-card.sr-vis {
      opacity: 1;
      transform: translateY(0);
    }

    .tz-card.sr-vis:hover {
      border-color: rgba(255, 255, 255, 0.25);
    }

    .tz-city {
      font-size: 9px;
      font-weight: 700;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: rgba(140, 210, 255, 0.6);
      margin-bottom: 10px;
    }

    .tz-time {
      font-family: 'Squada One', sans-serif;
      font-size: clamp(30px, 3.5vw, 44px);
      font-weight: 400;
      color: var(--white);
      line-height: 1;
      text-shadow: 0 0 20px rgba(92, 224, 255, 0.2);
    }

    .tz-offset {
      font-size: 10px;
      font-weight: 600;
      letter-spacing: 0.14em;
      color: rgba(255, 255, 255, 0.3);
      margin-top: 6px;
    }

    .tz-active-badge {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      margin-top: 8px;
      font-size: 8.5px;
      font-weight: 700;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: rgba(109, 255, 138, 0.85);
    }

    .tz-active-dot {
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background: #6dff8a;
      animation: availPulse 2s ease-in-out infinite;
    }

    .tz-globe-svg {
      position: absolute;
      right: 16px;
      bottom: 16px;
      opacity: 0.06;
      pointer-events: none;
    }

    /* ══════════════════════════
       FOOTER
    ══════════════════════════ */
    footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 20px 40px 28px;
      position: relative;
      z-index: 200;
      animation: fadeUp 0.8s cubic-bezier(0.22, 0.61, 0.36, 1) 0.9s forwards;
      opacity: 0;
      transform: translateY(20px);
    }

    .social-links {
      display: flex;
      gap: 16px;
      align-items: center;
    }

    .social-links a {
      color: rgba(255, 255, 255, 0.55);
      text-decoration: none;
      display: flex;
      align-items: center;
      transition: color 0.4s ease, transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    .social-links a:hover {
      color: #fff;
      transform: translateY(-3px) scale(1.15);
    }

    .social-links svg {
      width: 20px;
      height: 20px;
      fill: currentColor;
    }

    .copyright {
      font-size: 10px;
      letter-spacing: 0.18em;
      color: rgba(255, 255, 255, 0.4);
      text-transform: uppercase;
    }


    /* ── Responsive ── */
    @media (max-width: 900px) {

      .contact-hero,
      .orbit-section {
        grid-template-columns: 1fr;
        margin-top: 60px;
        gap: 30px;
      }

      .orbit-visual-wrap {
        margin-top: -20px;
        order: -1;
      }

      .contact-hero-right {
        display: none;
      }

      .channels-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .response-strip {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 768px) {
      * {
        cursor: auto !important;
      }

      a,
      button,
      .channel-card,
      .collab-item,
      .nav-link,
      .nav-cta {
        cursor: pointer !important;
      }

      #cursor-dot,
      #cursor-canvas {
        display: none !important;
      }

      #navbar-wrap {
        display: none;
      }

      #mobile-topbar {
        display: flex;
        width: calc(100% - 32px);
        left: 16px;
      }

      main.page {
        padding: 112px 24px 60px;
      }

      .orbit-section {
        margin-top: 40px;
        gap: 30px;
      }

      .astronaut-visual {
        max-width: 240px;
      }

      .mobile-lottie-wrap {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        margin: 0 auto 60px;
        animation: fadeUp 0.8s cubic-bezier(0.22, 0.61, 0.36, 1) 0.5s forwards;
        opacity: 0;
      }

      .mobile-lottie-wrap dotlottie-wc {
        width: 280px !important;
        height: 280px !important;
      }

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

      .tz-clock-wrap {
        flex-direction: column;
        align-items: stretch;
      }

      .tz-card {
        min-width: unset;
      }

      footer {
        padding: 16px 24px 24px;
      }
    }

    /* Scroll-reveal base */
    .sr-elem {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.6s cubic-bezier(0.22, 0.61, 0.36, 1) var(--sr-delay, 0s), transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1) var(--sr-delay, 0s);
    }

    .sr-elem.sr-vis {
      opacity: 1;
      transform: translateY(0);
    }
