:root {
      --blue-950: #06142f;
      --blue-900: #08245a;
      --blue-800: #0b3d91;
      --blue-700: #0f5ed7;
      --blue-600: #1677ff;
      --blue-500: #2f8cff;
      --blue-400: #5aa3ff;
      --blue-300: #8dc5ff;
      --blue-200: #b8d9ff;
      --blue-100: #dcecff;
      --cyan-300: #67e8f9;
      --cyan-400: #22d3ee;
      --white: #ffffff;
      --slate-50: #f8fafc;
      --slate-200: #e2e8f0;
      --slate-400: #94a3b8;
      --slate-700: #334155;
      --glass: rgba(6, 20, 47, 0.74);
      --glass-strong: rgba(6, 20, 47, 0.92);
      --line: rgba(255, 255, 255, 0.14);
      --shadow: 0 22px 70px rgba(0, 11, 35, 0.38);
      --radius-xl: 26px;
      --radius-lg: 20px;
      --radius-md: 15px;
      --ease: cubic-bezier(.22, .8, .25, 1);
    }

    * { box-sizing: border-box; }

    html, body {
      width: 100%;
      height: 100%;
      margin: 0;
      overflow: hidden;
      color: var(--white);
      background: #020817;
      font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility;
    }

    button, input { font: inherit; }
    button { -webkit-tap-highlight-color: transparent; }
    [hidden] { display: none !important; }

    /* =========================
       CINEMATIC VIDEO INTRO
    ========================= */
    #intro-screen {
      position: fixed;
      inset: 0;
      z-index: 12000;
      display: grid;
      place-items: center;
      overflow: hidden;
      background: #020817;
      isolation: isolate;
      transition: opacity .9s var(--ease), visibility .9s var(--ease);
    }

    #intro-screen.is-leaving {
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
    }

    #intro-screen::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 2;
      background:
        linear-gradient(180deg, rgba(2,8,23,.18), rgba(2,8,23,.08) 42%, rgba(2,8,23,.82)),
        radial-gradient(circle at 50% 42%, transparent 0 25%, rgba(2,8,23,.24) 72%, rgba(2,8,23,.72) 100%);
      pointer-events: none;
    }

    #intro-screen::after {
      content: "";
      position: absolute;
      inset: -35%;
      z-index: 3;
      background: conic-gradient(from 180deg at 50% 50%, transparent 0 22%, rgba(103,232,249,.10) 30%, transparent 38% 62%, rgba(47,140,255,.10) 70%, transparent 78%);
      animation: introAura 14s linear infinite;
      pointer-events: none;
    }

    #intro-video {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      background: #020817;
      transform: scale(1.012);
      filter: saturate(1.08) contrast(1.04);
    }

    .intro-vignette {
      position: absolute;
      inset: 0;
      z-index: 4;
      box-shadow: inset 0 0 min(18vw, 240px) rgba(0,0,0,.62);
      pointer-events: none;
    }

    .intro-grid {
      position: absolute;
      inset: 0;
      z-index: 4;
      opacity: .18;
      background-image:
        linear-gradient(rgba(141,197,255,.10) 1px, transparent 1px),
        linear-gradient(90deg, rgba(141,197,255,.10) 1px, transparent 1px);
      background-size: 72px 72px;
      -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 22%, #000 78%, transparent 100%);
      mask-image: linear-gradient(to bottom, transparent 0%, #000 22%, #000 78%, transparent 100%);
      pointer-events: none;
    }

    .intro-brand {
      position: absolute;
      z-index: 5;
      top: max(22px, env(safe-area-inset-top));
      left: max(24px, env(safe-area-inset-left));
      display: flex;
      align-items: center;
      gap: 11px;
      max-width: calc(100vw - 170px);
      padding: 9px 13px 9px 9px;
      border: 1px solid rgba(255,255,255,.13);
      border-radius: 18px;
      color: #fff;
      background: rgba(6,20,47,.38);
      box-shadow: 0 18px 45px rgba(0,0,0,.18);
      backdrop-filter: blur(16px) saturate(135%);
    }

    .intro-brand img {
      width: 38px;
      height: 38px;
      padding: 6px;
      object-fit: contain;
      border-radius: 12px;
      background: rgba(255,255,255,.92);
    }

    .intro-brand-copy { min-width: 0; }
    .intro-brand-copy strong { display: block; font-size: 12px; letter-spacing: .01em; }
    .intro-brand-copy span { display: block; margin-top: 2px; color: rgba(255,255,255,.58); font-size: 9px; letter-spacing: .12em; text-transform: uppercase; }

    .intro-copy {
      position: absolute;
      z-index: 5;
      left: max(26px, env(safe-area-inset-left));
      right: max(26px, env(safe-area-inset-right));
      bottom: max(30px, calc(env(safe-area-inset-bottom) + 18px));
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      align-items: end;
      gap: 22px;
    }

    .intro-kicker {
      display: flex;
      align-items: center;
      gap: 9px;
      color: var(--cyan-300);
      font-size: 10px;
      font-weight: 900;
      letter-spacing: .18em;
      text-transform: uppercase;
    }

    .intro-kicker::before {
      content: "";
      width: 34px;
      height: 1px;
      background: linear-gradient(90deg, var(--cyan-300), transparent);
      box-shadow: 0 0 14px rgba(103,232,249,.7);
    }

    .intro-title {
      max-width: 760px;
      margin: 10px 0 0;
      font-size: clamp(24px, 4.8vw, 64px);
      line-height: .98;
      letter-spacing: -.045em;
      text-shadow: 0 12px 42px rgba(0,0,0,.52);
    }

    .intro-title span {
      display: block;
      color: rgba(255,255,255,.64);
      font-size: .42em;
      font-weight: 650;
      line-height: 1.3;
      letter-spacing: .04em;
      text-transform: uppercase;
    }

    .intro-skip {
      min-width: 118px;
      min-height: 44px;
      padding: 0 17px;
      border: 1px solid rgba(255,255,255,.20);
      border-radius: 999px;
      color: #fff;
      background: rgba(6,20,47,.48);
      box-shadow: 0 14px 36px rgba(0,0,0,.24);
      backdrop-filter: blur(16px);
      cursor: pointer;
      font-size: 11px;
      font-weight: 900;
      letter-spacing: .05em;
      transition: transform .2s var(--ease), background .2s ease, border-color .2s ease;
    }

    .intro-skip:hover,
    .intro-skip:focus-visible {
      transform: translateY(-2px);
      border-color: rgba(103,232,249,.55);
      background: rgba(15,94,215,.58);
      outline: none;
    }

    .intro-progress {
      position: absolute;
      z-index: 6;
      left: 0;
      right: 0;
      bottom: 0;
      height: 4px;
      background: rgba(255,255,255,.10);
    }

    #intro-progress-bar {
      width: 0;
      height: 100%;
      background: linear-gradient(90deg, var(--blue-500), var(--cyan-300), #fff);
      box-shadow: 0 0 22px rgba(103,232,249,.65);
      transition: width .18s linear;
    }

    .intro-play-fallback {
      position: relative;
      z-index: 8;
      display: none;
      width: min(420px, calc(100vw - 40px));
      padding: 24px;
      border: 1px solid rgba(255,255,255,.14);
      border-radius: 24px;
      background: rgba(6,20,47,.76);
      box-shadow: 0 30px 80px rgba(0,0,0,.34);
      backdrop-filter: blur(22px);
      text-align: center;
    }

    #intro-screen.needs-interaction .intro-play-fallback { display: block; }
    #intro-screen.needs-interaction .intro-copy { opacity: .22; }
    .intro-play-fallback strong { display: block; font-size: 20px; }
    .intro-play-fallback p { margin: 8px 0 17px; color: rgba(255,255,255,.64); font-size: 12px; line-height: 1.6; }
    .intro-play-fallback button {
      min-height: 44px;
      padding: 0 20px;
      border: 0;
      border-radius: 999px;
      color: #fff;
      background: linear-gradient(135deg, var(--blue-700), var(--blue-500), var(--cyan-300));
      box-shadow: 0 16px 38px rgba(15,94,215,.28);
      cursor: pointer;
      font-size: 12px;
      font-weight: 900;
    }

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

    /* =========================
       SPLASH / BOOT - DESIGN PREMIUM
    ========================= */
    #splash-screen {
      position: fixed;
      inset: 0;
      z-index: 10000;
      display: grid;
      place-items: center;
      overflow: hidden;
      background: linear-gradient(145deg, #0a2463 0%, #0b3d91 35%, #0f5ed7 60%, #1a6bff 85%, #0a2463 100%);
      transition: opacity .7s var(--ease), visibility .7s var(--ease);
    }

    #splash-screen::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 20% 20%, rgba(103,232,249,.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(47,140,255,.12) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(103,232,249,.05) 0%, transparent 70%);
      pointer-events: none;
    }

    /* Animated background particles */
    .splash-particles {
      position: absolute;
      inset: 0;
      overflow: hidden;
      pointer-events: none;
    }

    .splash-particles span {
      position: absolute;
      display: block;
      width: 4px;
      height: 4px;
      border-radius: 50%;
      background: rgba(103,232,249,.4);
      box-shadow: 0 0 20px rgba(103,232,249,.2);
      animation: particleFloat linear infinite;
    }

    .splash-particles span:nth-child(1) { left: 10%; top: 20%; animation-duration: 8s; animation-delay: 0s; width: 6px; height: 6px; }
    .splash-particles span:nth-child(2) { left: 25%; top: 60%; animation-duration: 10s; animation-delay: 1s; }
    .splash-particles span:nth-child(3) { left: 50%; top: 15%; animation-duration: 7s; animation-delay: 2s; width: 8px; height: 8px; }
    .splash-particles span:nth-child(4) { left: 70%; top: 70%; animation-duration: 9s; animation-delay: 0.5s; }
    .splash-particles span:nth-child(5) { left: 85%; top: 30%; animation-duration: 11s; animation-delay: 1.5s; width: 5px; height: 5px; }
    .splash-particles span:nth-child(6) { left: 40%; top: 85%; animation-duration: 8.5s; animation-delay: 3s; }
    .splash-particles span:nth-child(7) { left: 15%; top: 45%; animation-duration: 12s; animation-delay: 2.5s; width: 7px; height: 7px; }
    .splash-particles span:nth-child(8) { left: 65%; top: 10%; animation-duration: 9.5s; animation-delay: 1.8s; }

    @keyframes particleFloat {
      0% { transform: translate(0, 0) scale(1); opacity: .4; }
      25% { transform: translate(30px, -40px) scale(1.2); opacity: .8; }
      50% { transform: translate(-20px, -80px) scale(0.8); opacity: .5; }
      75% { transform: translate(40px, -120px) scale(1.1); opacity: .7; }
      100% { transform: translate(0, -160px) scale(1); opacity: .2; }
    }

    #splash-screen.is-hidden {
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
    }

    /* Floating geometric shapes */
    .splash-shapes {
      position: absolute;
      inset: 0;
      pointer-events: none;
      overflow: hidden;
    }

    .splash-shapes div {
      position: absolute;
      border-radius: 50%;
      opacity: .06;
      animation: shapeFloat 20s ease-in-out infinite alternate;
    }

    .splash-shapes div:nth-child(1) {
      width: 300px;
      height: 300px;
      top: -50px;
      right: -50px;
      background: radial-gradient(circle, var(--cyan-300), transparent);
      animation-duration: 18s;
    }

    .splash-shapes div:nth-child(2) {
      width: 400px;
      height: 400px;
      bottom: -100px;
      left: -100px;
      background: radial-gradient(circle, var(--blue-400), transparent);
      animation-duration: 22s;
      animation-delay: -5s;
    }

    .splash-shapes div:nth-child(3) {
      width: 200px;
      height: 200px;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      background: radial-gradient(circle, var(--blue-300), transparent);
      animation-duration: 15s;
      animation-delay: -10s;
    }

    @keyframes shapeFloat {
      0% { transform: translate(0, 0) scale(1); }
      33% { transform: translate(30px, -20px) scale(1.1); }
      66% { transform: translate(-20px, 30px) scale(0.9); }
      100% { transform: translate(10px, -10px) scale(1.05); }
    }

    .splash-card {
      position: relative;
      z-index: 2;
      width: min(620px, calc(100vw - 40px));
      padding: 40px 34px 32px;
      border-radius: 32px;
      background: rgba(255,255,255,.06);
      backdrop-filter: blur(24px) saturate(180%);
      border: 1px solid rgba(255,255,255,.12);
      box-shadow: 0 40px 100px rgba(0,0,0,.4), inset 0 1px 0 rgba(255,255,255,.1);
      text-align: center;
      isolation: isolate;
      animation: splashCardFloat 6s ease-in-out infinite alternate;
    }

    .splash-card::before {
      content: "";
      position: absolute;
      inset: -2px;
      z-index: -1;
      border-radius: 34px;
      background: linear-gradient(135deg, rgba(103,232,249,.2), rgba(47,140,255,.1), rgba(103,232,249,.2));
      animation: borderGlow 4s ease-in-out infinite alternate;
    }

    @keyframes borderGlow {
      0% { opacity: .5; }
      100% { opacity: 1; }
    }

    .splash-card::after {
      content: "";
      position: absolute;
      inset: 2px;
      z-index: -1;
      border-radius: 30px;
      background: rgba(10,36,99,.6);
      backdrop-filter: blur(20px);
    }

    @keyframes splashCardFloat {
      from { transform: translateY(0) scale(1); }
      to { transform: translateY(-12px) scale(1.01); }
    }

    /* Splash logo container */
    .splash-logos {
      position: relative;
      z-index: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 28px;
      min-height: 116px;
      margin-bottom: 8px;
    }

    .splash-logos img {
      display: block;
      object-fit: contain;
      filter: drop-shadow(0 12px 30px rgba(0,0,0,.3));
      transition: transform .3s ease;
    }

    .splash-logos img:hover {
      transform: scale(1.05);
    }

    #splash-logo-1 {
      width: min(300px, 48vw);
      max-height: 90px;
    }

    #splash-logo-2 {
      width: min(210px, 34vw);
      max-height: 82px;
    }

    .splash-divider {
      width: 2px;
      height: 70px;
      background: linear-gradient(180deg, transparent, rgba(103,232,249,.4), transparent);
      box-shadow: 0 0 20px rgba(103,232,249,.1);
    }

    /* Splash text content */
    .splash-eyebrow {
      position: relative;
      z-index: 1;
      margin-top: 14px;
      color: var(--cyan-300);
      font-size: 11px;
      font-weight: 800;
      letter-spacing: .2em;
      text-transform: uppercase;
      text-shadow: 0 0 30px rgba(103,232,249,.2);
    }

    .splash-title {
      position: relative;
      z-index: 1;
      margin: 6px 0 0;
      color: #fff;
      font-size: clamp(24px, 4.2vw, 36px);
      line-height: 1.12;
      letter-spacing: -.03em;
      font-weight: 700;
      text-shadow: 0 4px 20px rgba(0,0,0,.3);
    }

    #splash-status {
      position: relative;
      z-index: 1;
      margin: 12px 0 20px;
      color: rgba(255,255,255,.7);
      font-size: 13px;
      font-weight: 400;
      letter-spacing: .02em;
    }

    /* Badge row */
    .splash-badge-row {
      position: relative;
      z-index: 1;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 10px;
      margin: 0 0 20px;
    }

    .splash-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 14px;
      border-radius: 999px;
      background: rgba(255,255,255,.08);
      border: 1px solid rgba(255,255,255,.1);
      color: rgba(255,255,255,.85);
      font-size: 10px;
      font-weight: 700;
      letter-spacing: .06em;
      text-transform: uppercase;
      backdrop-filter: blur(10px);
      transition: all .3s ease;
    }

    .splash-badge:hover {
      background: rgba(255,255,255,.15);
      transform: translateY(-2px);
      border-color: rgba(103,232,249,.3);
    }

    .splash-badge::before {
      content: "";
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--cyan-300);
      box-shadow: 0 0 20px rgba(103,232,249,.6);
      animation: badgePulse 2s ease-in-out infinite;
    }

    @keyframes badgePulse {
      0%, 100% { opacity: 1; transform: scale(1); }
      50% { opacity: .5; transform: scale(0.8); }
    }

    /* Progress bar */
    .splash-progress {
      position: relative;
      z-index: 1;
      height: 5px;
      overflow: hidden;
      border-radius: 999px;
      background: rgba(255,255,255,.1);
      box-shadow: inset 0 1px 3px rgba(0,0,0,.2);
    }

    #splash-progress-bar {
      width: 8%;
      height: 100%;
      border-radius: inherit;
      background: linear-gradient(90deg, var(--blue-500), var(--cyan-300), var(--blue-400));
      box-shadow: 0 0 30px rgba(103,232,249,.4);
      transition: width .55s var(--ease);
    }

    /* Action button */
    .splash-action-row {
      position: relative;
      z-index: 1;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 12px;
      margin-top: 18px;
    }

    .splash-action-button {
      min-height: 44px;
      padding: 0 28px;
      border-radius: 999px;
      border: none;
      color: #fff;
      font-size: 12px;
      font-weight: 800;
      letter-spacing: .04em;
      cursor: pointer;
      transition: all .3s var(--ease);
      background: linear-gradient(135deg, var(--blue-600), var(--blue-500), var(--cyan-300));
      box-shadow: 0 16px 40px rgba(47,140,255,.3);
      position: relative;
      overflow: hidden;
    }

    .splash-action-button::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, var(--blue-700), var(--blue-500));
      opacity: 0;
      transition: opacity .3s ease;
    }

    .splash-action-button:hover::before {
      opacity: 1;
    }

    .splash-action-button:hover {
      transform: translateY(-3px) scale(1.02);
      box-shadow: 0 20px 50px rgba(47,140,255,.4);
    }

    .splash-action-button:active {
      transform: translateY(0) scale(.98);
    }

    .splash-action-button span {
      position: relative;
      z-index: 1;
    }

    .splash-foot {
      position: relative;
      z-index: 1;
      margin-top: 16px;
      color: rgba(255,255,255,.35);
      font-size: 10px;
      letter-spacing: .15em;
      text-transform: uppercase;
    }

    /* =========================
       APP / SCENE
    ========================= */
    #app-shell {
      position: fixed;
      inset: 0;
      opacity: 0;
      visibility: hidden;
      transition: opacity .65s var(--ease), visibility .65s var(--ease);
    }

    body.app-ready #app-shell { opacity: 1; visibility: visible; }

    #scene-container,
    a-scene { width: 100%; height: 100%; }
    #scene-container { background: #020817; }

    /* Prevent A-Frame's default loading UI from flashing. */
    .a-loader-title, .a-loader { display: none !important; }

    /* =========================
       PREMIUM HUD
    ========================= */
    #tour-ui {
      position: fixed;
      inset: 0;
      z-index: 30;
      pointer-events: none;
    }

    .glass {
      border: 1px solid var(--line);
      background: linear-gradient(145deg, rgba(8,36,90,.82), rgba(6,20,47,.68));
      box-shadow: var(--shadow);
      backdrop-filter: blur(18px) saturate(140%);
    }

    .brand-card {
      position: absolute;
      top: max(18px, env(safe-area-inset-top));
      left: max(18px, env(safe-area-inset-left));
      display: flex;
      align-items: center;
      gap: 12px;
      max-width: min(430px, calc(100vw - 155px));
      padding: 10px 14px 10px 10px;
      border-radius: 20px;
      pointer-events: auto;
    }

    .brand-logo-wrap {
      display: grid;
      place-items: center;
      width: 44px;
      height: 44px;
      flex: 0 0 auto;
      border-radius: 14px;
      background: linear-gradient(145deg, rgba(47,140,255,.35), rgba(255,255,255,.08));
      border: 1px solid rgba(255,255,255,.14);
    }

    .brand-logo-wrap img { width: 31px; height: 31px; object-fit: contain; }
    .brand-copy { min-width: 0; }
    .brand-title { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: 14px; font-weight: 800; letter-spacing: -.01em; }
    .brand-subtitle { margin-top: 3px; color: rgba(255,255,255,.64); font-size: 11px; }

    .location-chip {
      position: absolute;
      top: max(20px, env(safe-area-inset-top));
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      align-items: center;
      gap: 9px;
      max-width: min(330px, 42vw);
      padding: 9px 14px;
      border-radius: 999px;
      pointer-events: none;
    }

    .location-dot {
      width: 8px;
      height: 8px;
      flex: 0 0 auto;
      border-radius: 50%;
      background: #67e8f9;
      box-shadow: 0 0 0 5px rgba(103,232,249,.12), 0 0 18px rgba(103,232,249,.8);
    }

    #current-location-label { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: 12px; font-weight: 800; }

    .control-dock {
      position: absolute;
      top: 50%;
      right: max(18px, env(safe-area-inset-right));
      transform: translateY(-50%);
      display: flex;
      flex-direction: column;
      gap: 8px;
      padding: 8px;
      border-radius: 22px;
      pointer-events: auto;
    }

    .dock-button {
      position: relative;
      display: grid;
      place-items: center;
      width: 48px;
      height: 48px;
      padding: 0;
      border: 1px solid transparent;
      border-radius: 15px;
      color: rgba(255,255,255,.82);
      background: transparent;
      cursor: pointer;
      transition: transform .2s var(--ease), color .2s, background .2s, border-color .2s;
    }

    .dock-button:hover,
    .dock-button:focus-visible,
    .dock-button.is-active {
      color: #fff;
      background: linear-gradient(145deg, rgba(47,140,255,.85), rgba(15,94,215,.7));
      border-color: rgba(255,255,255,.2);
      transform: translateX(-2px);
      outline: none;
    }

    .dock-button svg { width: 21px; height: 21px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

    .dock-button::after {
      content: attr(data-tooltip);
      position: absolute;
      right: calc(100% + 12px);
      top: 50%;
      transform: translate(8px, -50%);
      padding: 7px 10px;
      border: 1px solid var(--line);
      border-radius: 10px;
      color: #fff;
      background: var(--glass-strong);
      box-shadow: 0 12px 30px rgba(0,0,0,.25);
      font-size: 11px;
      font-weight: 700;
      white-space: nowrap;
      opacity: 0;
      visibility: hidden;
      transition: .18s ease;
      pointer-events: none;
    }

    .dock-button:hover::after,
    .dock-button:focus-visible::after { opacity: 1; visibility: visible; transform: translate(0, -50%); }

    .dock-separator { width: 30px; height: 1px; margin: 2px auto; background: rgba(255,255,255,.12); }

    .bottom-status {
      position: absolute;
      left: 50%;
      bottom: max(20px, env(safe-area-inset-bottom));
      transform: translateX(-50%);
      display: flex;
      align-items: center;
      gap: 10px;
      max-width: calc(100vw - 160px);
      padding: 10px 15px;
      border-radius: 999px;
      color: rgba(255,255,255,.82);
      font-size: 12px;
      pointer-events: none;
      transition: opacity .35s ease, transform .35s ease;
    }

    .bottom-status.is-dimmed { opacity: .3; transform: translateX(-50%) translateY(8px); }
    .focus-symbol { width: 18px; height: 18px; border: 2px solid #fff; border-radius: 50%; box-shadow: 0 0 0 3px rgba(255,255,255,.12); }
    .focus-symbol::after { content: ""; display: block; width: 6px; height: 6px; margin: 4px auto; border-radius: 50%; background: var(--cyan-300); opacity: .75; }

    /* =========================
       DRAWER / PANELS
    ========================= */
    #ui-backdrop {
      position: fixed;
      inset: 0;
      z-index: 39;
      background: rgba(0,8,24,.42);
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transition: .28s ease;
    }

    body.drawer-open #ui-backdrop { opacity: 1; visibility: visible; pointer-events: auto; }

    #control-drawer {
      position: fixed;
      z-index: 40;
      top: 18px;
      right: 84px;
      bottom: 18px;
      width: min(420px, calc(100vw - 120px));
      display: flex;
      flex-direction: column;
      overflow: hidden;
      border-radius: var(--radius-xl);
      opacity: 0;
      visibility: hidden;
      transform: translateX(24px) scale(.985);
      transition: opacity .28s ease, visibility .28s ease, transform .32s var(--ease);
      pointer-events: auto;
    }

    body.drawer-open #control-drawer { opacity: 1; visibility: visible; transform: translateX(0) scale(1); }

    .drawer-header {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 18px 18px 15px;
      border-bottom: 1px solid rgba(255,255,255,.1);
    }

    .drawer-heading { min-width: 0; flex: 1; }
    #drawer-title { margin: 0; font-size: 18px; letter-spacing: -.02em; }
    #drawer-subtitle { margin: 4px 0 0; color: rgba(255,255,255,.58); font-size: 11px; line-height: 1.45; }

    .icon-button {
      display: grid;
      place-items: center;
      width: 36px;
      height: 36px;
      border: 1px solid rgba(255,255,255,.12);
      border-radius: 12px;
      color: #fff;
      background: rgba(255,255,255,.07);
      cursor: pointer;
      transition: .18s ease;
    }

    .icon-button:hover { background: rgba(255,255,255,.15); transform: rotate(3deg); }

    .drawer-content { min-height: 0; flex: 1; overflow-y: auto; padding: 16px; scrollbar-width: thin; scrollbar-color: rgba(141,197,255,.45) transparent; }
    .drawer-section { display: none; animation: panelIn .28s var(--ease); }
    .drawer-section.is-active { display: block; }
    @keyframes panelIn { from { opacity: 0; transform: translateY(7px); } to { opacity: 1; transform: none; } }

    .search-box { position: sticky; top: -1px; z-index: 2; margin-bottom: 13px; }
    .search-box input {
      width: 100%;
      height: 44px;
      padding: 0 14px 0 42px;
      border: 1px solid rgba(255,255,255,.13);
      border-radius: 14px;
      color: #fff;
      background: rgba(255,255,255,.07);
      outline: none;
      transition: .18s ease;
    }
    .search-box input::placeholder { color: rgba(255,255,255,.42); }
    .search-box input:focus { border-color: rgba(103,232,249,.55); box-shadow: 0 0 0 4px rgba(47,140,255,.12); }
    .search-box::before { content: "⌕"; position: absolute; left: 15px; top: 10px; color: var(--blue-300); font-size: 20px; }

    .section-label { margin: 15px 3px 9px; color: rgba(255,255,255,.46); font-size: 10px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
    .point-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; }

    .menu-card,
    .point-card {
      width: 100%;
      border: 1px solid rgba(255,255,255,.1);
      color: #fff;
      background: linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.035));
      cursor: pointer;
      transition: transform .2s var(--ease), background .2s, border-color .2s;
    }

    .point-card { min-height: 48px; padding: 9px; border-radius: 13px; font-size: 12px; font-weight: 800; }
    .point-card:hover, .point-card:focus-visible { transform: translateY(-2px); border-color: rgba(103,232,249,.45); background: rgba(47,140,255,.25); outline: none; }
    .point-card.is-current { color: #fff; border-color: rgba(103,232,249,.62); background: linear-gradient(145deg, rgba(47,140,255,.8), rgba(15,94,215,.55)); }
    .point-card.special { grid-column: 1 / -1; min-height: 54px; text-align: left; padding-inline: 14px; }

    .card-list { display: grid; gap: 9px; }
    .menu-card { position: relative; padding: 14px 44px 14px 14px; border-radius: 16px; text-align: left; }
    .menu-card:hover, .menu-card:focus-visible { transform: translateX(-3px); border-color: rgba(103,232,249,.42); background: rgba(47,140,255,.2); outline: none; }
    .menu-card::after { content: "›"; position: absolute; right: 16px; top: 50%; transform: translateY(-52%); color: var(--blue-300); font-size: 23px; }
    .menu-card strong { display: block; font-size: 13px; }
    .menu-card span { display: block; margin-top: 5px; color: rgba(255,255,255,.56); font-size: 11px; line-height: 1.45; }

    .help-hero {
      padding: 18px;
      border: 1px solid rgba(103,232,249,.24);
      border-radius: 18px;
      background: linear-gradient(145deg, rgba(47,140,255,.24), rgba(103,232,249,.08));
    }
    .help-hero strong { display: block; margin-bottom: 7px; font-size: 15px; }
    .help-hero p { margin: 0; color: rgba(255,255,255,.68); font-size: 12px; line-height: 1.65; }
    .help-list { display: grid; gap: 9px; margin-top: 13px; counter-reset: help; }
    .help-step { position: relative; padding: 13px 13px 13px 46px; border: 1px solid rgba(255,255,255,.09); border-radius: 15px; background: rgba(255,255,255,.045); color: rgba(255,255,255,.72); font-size: 12px; line-height: 1.6; }
    .help-step::before { counter-increment: help; content: counter(help); position: absolute; left: 13px; top: 13px; display: grid; place-items: center; width: 23px; height: 23px; border-radius: 8px; background: rgba(47,140,255,.34); color: #fff; font-weight: 900; }
    .help-step b { color: #fff; }

    /* =========================
       ROUTE GUIDE
    ========================= */
    #route-guide-panel {
      position: fixed;
      z-index: 36;
      left: max(18px, env(safe-area-inset-left));
      bottom: max(18px, env(safe-area-inset-bottom));
      width: min(430px, calc(100vw - 120px));
      padding: 16px;
      border-radius: 22px;
      opacity: 0;
      visibility: hidden;
      transform: translateY(18px) scale(.985);
      transition: .3s var(--ease);
      pointer-events: auto;
    }
    #route-guide-panel.show { opacity: 1; visibility: visible; transform: none; }
    #route-guide-panel.arrived { background: linear-gradient(145deg, rgba(5,100,72,.93), rgba(15,118,110,.86)); }
    .route-guide-top { display: flex; align-items: center; gap: 10px; }
    .route-badge { display: inline-flex; align-items: center; gap: 7px; padding: 6px 9px; border-radius: 999px; background: rgba(47,140,255,.85); font-size: 10px; font-weight: 900; letter-spacing: .04em; }
    .route-badge i { width: 7px; height: 7px; border-radius: 50%; background: #fff; box-shadow: 0 0 12px #fff; animation: pulse 1.4s infinite; }
    .route-guide-top .icon-button { margin-left: auto; width: 30px; height: 30px; border-radius: 10px; }
    #route-guide-title { margin: 12px 0 5px; font-size: 18px; }
    #route-guide-instruction { margin: 0; color: rgba(255,255,255,.86); font-size: 12px; line-height: 1.55; }
    #route-guide-detail { margin-top: 7px; color: rgba(255,255,255,.58); font-size: 10px; }
    .route-breadcrumb {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 6px;
      margin-top: 11px;
      padding: 9px 10px;
      border: 1px solid rgba(103,232,249,.22);
      border-radius: 14px;
      background: rgba(255,255,255,.055);
      color: rgba(255,255,255,.84);
      font-size: 10px;
      line-height: 1.35;
    }
    .route-breadcrumb span { max-width: 145px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
    .route-breadcrumb b { color: var(--cyan-300); font-size: 13px; }
    .route-progress { height: 5px; margin-top: 13px; overflow: hidden; border-radius: 999px; background: rgba(255,255,255,.12); }
    #route-progress-bar { width: 0; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--blue-500), var(--cyan-300)); transition: width .35s ease; }
    @keyframes pulse { 50% { opacity: .35; transform: scale(.75); } }

    /* =========================
       BUSINESS MODAL
    ========================= */
    #business-info-panel {
      position: fixed;
      z-index: 55;
      left: 50%;
      bottom: max(22px, env(safe-area-inset-bottom));
      width: min(520px, calc(100vw - 36px));
      max-height: min(80vh, 680px);
      overflow-y: auto;
      padding: 20px;
      border-radius: 26px;
      opacity: 0;
      visibility: hidden;
      transform: translate(-50%, 24px) scale(.98);
      transition: .32s var(--ease);
      pointer-events: auto;
    }
    #business-info-panel.show { opacity: 1; visibility: visible; transform: translate(-50%, 0) scale(1); }
    .business-modal-top { display: flex; align-items: center; gap: 10px; }
    .business-info-label { display: inline-flex; align-items: center; padding: 6px 10px; border-radius: 999px; background: linear-gradient(90deg, var(--blue-700), var(--blue-500)); font-size: 10px; font-weight: 900; letter-spacing: .05em; text-transform: uppercase; }
    .business-modal-top .icon-button { margin-left: auto; }
    #business-info-title { margin: 17px 0 7px; font-size: 25px; letter-spacing: -.03em; }
    #business-info-desc { margin: 0; color: rgba(255,255,255,.68); font-size: 13px; line-height: 1.65; }
    .business-price { margin: 16px 0 13px; padding: 13px 14px; border: 1px solid rgba(103,232,249,.24); border-radius: 16px; background: rgba(47,140,255,.16); font-size: 15px; font-weight: 900; }
    .business-details { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 9px; }
    .business-detail { padding: 12px; border: 1px solid rgba(255,255,255,.09); border-radius: 14px; background: rgba(255,255,255,.045); }
    .business-detail-label { color: rgba(255,255,255,.46); font-size: 9px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
    .business-detail-value { margin-top: 5px; font-size: 12px; font-weight: 800; }

    .menu-card.has-image {
      display: grid;
      grid-template-columns: 72px minmax(0, 1fr) 18px;
      align-items: center;
      gap: 12px;
      padding-left: 10px;
    }

    .menu-card.has-image::after { right: 14px; }
    .menu-card-copy { min-width: 0; }

    .menu-thumb {
      display: block;
      width: 72px;
      height: 54px;
      overflow: hidden;
      border-radius: 13px;
      border: 1px solid rgba(255,255,255,.14);
      background: rgba(255,255,255,.08);
    }

    .menu-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }

    .business-media {
      margin: 15px 0 14px;
      overflow: hidden;
      border-radius: 20px;
      border: 1px solid rgba(255,255,255,.12);
      background: linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.035));
      box-shadow: 0 18px 45px rgba(0,0,0,.20);
    }

    .business-media img {
      display: block;
      width: 100%;
      height: min(280px, 38vh);
      object-fit: cover;
    }

    /* =========================
       PANORAMA TRANSITION / TOAST
    ========================= */
    #transition-layer {
      position: fixed;
      inset: 0;
      z-index: 80;
      display: grid;
      place-items: center;
      color: #fff;
      background: radial-gradient(circle at center, rgba(15,94,215,.18), rgba(2,8,23,.88));
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transition: opacity .22s ease, visibility .22s ease;
    }
    #transition-layer.show { opacity: 1; visibility: visible; pointer-events: auto; }
    .transition-card { min-width: min(300px, calc(100vw - 48px)); padding: 22px; border: 1px solid rgba(255,255,255,.13); border-radius: 22px; background: rgba(6,20,47,.76); box-shadow: var(--shadow); backdrop-filter: blur(20px); text-align: center; }
    .transition-spinner { width: 34px; height: 34px; margin: 0 auto 12px; border: 3px solid rgba(255,255,255,.15); border-top-color: var(--cyan-300); border-radius: 50%; animation: spin .75s linear infinite; }
    #transition-title { font-size: 14px; font-weight: 900; }
    #transition-subtitle { margin-top: 5px; color: rgba(255,255,255,.55); font-size: 10px; }
    .transition-track { height: 4px; margin-top: 14px; overflow: hidden; border-radius: 999px; background: rgba(255,255,255,.1); }
    #transition-bar { width: 12%; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--blue-500), var(--cyan-300)); transition: width .38s var(--ease); }
    @keyframes spin { to { transform: rotate(360deg); } }

    #toast-stack { position: fixed; z-index: 100; top: 18px; right: 18px; display: grid; gap: 8px; pointer-events: none; }
    .toast { width: min(330px, calc(100vw - 36px)); padding: 12px 14px; border: 1px solid rgba(255,255,255,.14); border-radius: 14px; color: #fff; background: rgba(6,20,47,.92); box-shadow: 0 18px 45px rgba(0,0,0,.28); backdrop-filter: blur(16px); font-size: 12px; line-height: 1.45; animation: toastIn .3s var(--ease), toastOut .3s ease 3.2s forwards; }

    .experience-coach {
      position: absolute;
      left: 50%;
      top: max(76px, calc(env(safe-area-inset-top) + 76px));
      transform: translateX(-50%);
      display: flex;
      align-items: center;
      gap: 10px;
      max-width: min(560px, calc(100vw - 40px));
      padding: 10px 14px;
      border-radius: 999px;
      color: rgba(255,255,255,.86);
      font-size: 12px;
      line-height: 1.35;
      pointer-events: none;
      transition: opacity .45s ease, transform .45s ease;
    }
    .experience-coach.is-hidden { opacity: 0; transform: translateX(-50%) translateY(-8px); }
    .experience-coach i {
      display: grid;
      place-items: center;
      width: 22px;
      height: 22px;
      border-radius: 50%;
      background: linear-gradient(145deg, var(--blue-600), var(--cyan-300));
      color: #fff;
      font-style: normal;
      font-weight: 900;
      box-shadow: 0 0 0 5px rgba(103,232,249,.10);
    }

    @keyframes toastIn { from { opacity: 0; transform: translateY(-8px); } }
    @keyframes toastOut { to { opacity: 0; transform: translateY(-6px); } }

    /* =========================
       RESPONSIVE
    ========================= */
    @media (max-width: 760px) {
      .intro-brand { top: max(12px, env(safe-area-inset-top)); left: 12px; max-width: calc(100vw - 24px); }
      .intro-brand img { width: 34px; height: 34px; }
      .intro-copy { left: 16px; right: 16px; bottom: max(20px, calc(env(safe-area-inset-bottom) + 14px)); grid-template-columns: 1fr; gap: 15px; }
      .intro-title { max-width: 92vw; font-size: clamp(28px, 10vw, 48px); }
      .intro-skip { justify-self: start; min-height: 40px; }
      .intro-grid { background-size: 44px 44px; }

      .splash-card { padding: 28px 20px 24px; }
      .splash-logos { min-height: 92px; gap: 13px; }
      #splash-logo-1 { width: 48vw; max-height: 72px; }
      #splash-logo-2 { width: 32vw; max-height: 66px; }
      .splash-divider { height: 46px; }
      .splash-title { font-size: clamp(20px, 5vw, 28px); }
      .splash-action-button { min-height: 40px; padding: 0 20px; font-size: 11px; }

      .brand-card { top: max(10px, env(safe-area-inset-top)); left: 10px; max-width: calc(100vw - 20px); padding: 8px 12px 8px 8px; }
      .brand-logo-wrap { width: 39px; height: 39px; border-radius: 12px; }
      .brand-logo-wrap img { width: 28px; height: 28px; }
      .brand-title { font-size: 12px; }
      .brand-subtitle { font-size: 9px; }
      .location-chip { top: 70px; max-width: calc(100vw - 24px); }

      .control-dock {
        top: auto;
        right: 10px;
        bottom: max(10px, env(safe-area-inset-bottom));
        left: 10px;
        transform: none;
        flex-direction: row;
        justify-content: space-around;
        gap: 2px;
        border-radius: 20px;
      }
      .dock-button { width: 43px; height: 43px; border-radius: 13px; }
      .dock-button:hover, .dock-button:focus-visible, .dock-button.is-active { transform: translateY(-2px); }
      .dock-button::after, .dock-separator, #fullscreen-button { display: none; }

      .bottom-status { bottom: 72px; max-width: calc(100vw - 24px); font-size: 10px; padding: 8px 12px; }
      .experience-coach { top: 116px; width: calc(100vw - 24px); justify-content: center; border-radius: 18px; font-size: 10px; }
      #control-drawer { top: 10px; right: 10px; bottom: 70px; left: 10px; width: auto; }
      .drawer-header { padding: 15px; }
      .point-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
      #route-guide-panel { left: 10px; right: 10px; bottom: 72px; width: auto; }
      #business-info-panel { bottom: 72px; width: calc(100vw - 20px); max-height: calc(100vh - 100px); }
      .business-details { grid-template-columns: 1fr; }
      #toast-stack { top: 78px; left: 10px; right: 10px; }
      .toast { width: 100%; }
    }

    @media (max-width: 390px) {
      .point-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .point-card.special { grid-column: 1 / -1; }
      .dock-button { width: 40px; height: 40px; }
      .dock-button svg { width: 19px; height: 19px; }
    }

    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
    }

    /* =========================
       FINAL PREMIUM VISUAL OVERRIDES
       Fokus: intro bersih, splash lebih hidup, logo tetap kuat, UI terasa mahal.
    ========================= */
    #intro-screen {
      background:
        radial-gradient(circle at 18% 24%, rgba(103,232,249,.16), transparent 34%),
        radial-gradient(circle at 82% 18%, rgba(47,140,255,.14), transparent 32%),
        #020817;
    }

    #intro-screen::before {
      background:
        linear-gradient(90deg, rgba(2,8,23,.90) 0%, rgba(2,8,23,.46) 42%, rgba(2,8,23,.72) 100%),
        linear-gradient(180deg, rgba(2,8,23,.08), rgba(2,8,23,.10) 46%, rgba(2,8,23,.86)),
        radial-gradient(circle at 52% 42%, transparent 0 24%, rgba(2,8,23,.22) 70%, rgba(2,8,23,.64) 100%);
    }

    #intro-video {
      filter: saturate(1.16) contrast(1.08) brightness(.94);
      transform: scale(1.018);
    }

    .intro-brand {
      color: var(--blue-950);
      background: linear-gradient(135deg, rgba(255,255,255,.96), rgba(238,246,255,.88));
      border-color: rgba(255,255,255,.64);
      box-shadow: 0 24px 70px rgba(0,0,0,.24), inset 0 1px 0 rgba(255,255,255,.78);
    }

    .intro-brand img {
      background: #fff;
      box-shadow: 0 10px 25px rgba(8,36,90,.18);
    }

    .intro-brand-copy span {
      color: rgba(8,36,90,.68);
    }

    .intro-copy {
      grid-template-columns: minmax(0, 820px);
      align-items: end;
    }

    .intro-copy > div {
      width: min(820px, 100%);
      padding: clamp(18px, 3vw, 30px);
      border: 1px solid rgba(255,255,255,.18);
      border-radius: 30px;
      background: linear-gradient(135deg, rgba(3,12,32,.58), rgba(8,36,90,.28));
      box-shadow: 0 26px 88px rgba(0,0,0,.32);
      backdrop-filter: blur(20px) saturate(145%);
    }

    .intro-kicker {
      color: #dff9ff;
      text-shadow: 0 0 24px rgba(103,232,249,.42);
    }

    .intro-title {
      color: #fff;
      text-shadow: 0 14px 55px rgba(0,0,0,.72);
    }

    .intro-title span {
      color: rgba(232,245,255,.84);
    }

    .intro-skip {
      display: none !important;
    }

    .intro-progress {
      height: 5px;
      background: rgba(255,255,255,.16);
    }

    #intro-progress-bar {
      background: linear-gradient(90deg, #ef4444, #fff, var(--cyan-300));
      box-shadow: 0 0 28px rgba(255,255,255,.45);
    }

    #splash-screen {
      background:
        radial-gradient(circle at 16% 18%, rgba(239,68,68,.28), transparent 28%),
        radial-gradient(circle at 84% 20%, rgba(103,232,249,.24), transparent 30%),
        radial-gradient(circle at 50% 105%, rgba(47,140,255,.30), transparent 40%),
        linear-gradient(135deg, #020817 0%, #06142f 32%, #08245a 64%, #0a2463 100%);
      isolation: isolate;
    }

    #splash-screen::before {
      background:
        linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px),
        radial-gradient(circle at 50% 50%, rgba(255,255,255,.08), transparent 62%);
      background-size: 64px 64px, 64px 64px, auto;
      opacity: .72;
      -webkit-mask-image: radial-gradient(circle at center, #000 0 62%, transparent 86%);
      mask-image: radial-gradient(circle at center, #000 0 62%, transparent 86%);
    }

    #splash-screen::after {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 1;
      background:
        linear-gradient(90deg, #e11d48 0 50%, #ffffff 50% 100%) top / 100% 10px no-repeat,
        linear-gradient(115deg, transparent 0 58%, rgba(255,255,255,.08) 58% 59%, transparent 59%),
        linear-gradient(245deg, transparent 0 62%, rgba(239,68,68,.16) 62% 63%, transparent 63%);
      pointer-events: none;
    }

    .splash-particles span {
      background: rgba(255,255,255,.52);
      box-shadow: 0 0 24px rgba(103,232,249,.35);
    }

    .splash-shapes div {
      opacity: .12;
      filter: blur(2px);
    }

    .splash-card {
      width: min(820px, calc(100vw - 44px));
      padding: clamp(24px, 4vw, 40px);
      color: var(--blue-950);
      background: rgba(255,255,255,.86);
      border: 1px solid rgba(255,255,255,.62);
      box-shadow:
        0 42px 120px rgba(0,0,0,.48),
        0 0 0 1px rgba(141,197,255,.16),
        inset 0 1px 0 rgba(255,255,255,.88);
      backdrop-filter: blur(28px) saturate(170%);
      overflow: hidden;
      animation: splashCardFloat 7s ease-in-out infinite alternate;
    }

    .splash-card::before {
      inset: -1px;
      border-radius: 34px;
      background:
        conic-gradient(from 210deg, rgba(239,68,68,.42), rgba(255,255,255,.82), rgba(103,232,249,.42), rgba(47,140,255,.42), rgba(239,68,68,.42));
      opacity: .82;
      filter: blur(.2px);
    }

    .splash-card::after {
      inset: 2px;
      border-radius: 30px;
      background:
        linear-gradient(145deg, rgba(255,255,255,.96), rgba(239,246,255,.91) 54%, rgba(225,239,255,.86)),
        radial-gradient(circle at 80% 0%, rgba(103,232,249,.15), transparent 35%);
    }

    .splash-ribbon {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      z-index: 3;
      display: grid;
      grid-template-columns: 1fr 1fr;
      height: 8px;
    }

    .splash-ribbon span:first-child { background: #e11d48; }
    .splash-ribbon span:last-child { background: #fff; }

    .splash-crest {
      position: relative;
      z-index: 4;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      margin: 3px auto 18px;
      padding: 8px 14px;
      border-radius: 999px;
      color: rgba(8,36,90,.78);
      background: rgba(255,255,255,.72);
      border: 1px solid rgba(8,36,90,.10);
      box-shadow: 0 14px 34px rgba(8,36,90,.08);
      font-size: 10px;
      font-weight: 850;
      letter-spacing: .08em;
      text-transform: uppercase;
    }

    .splash-crest svg {
      width: 50px;
      height: 30px;
      flex: 0 0 auto;
    }

    .crest-wing { fill: rgba(15,94,215,.78); }
    .crest-shield { fill: #f8fafc; stroke: rgba(8,36,90,.30); stroke-width: 2; }
    .crest-star { fill: #f59e0b; }

    .splash-logos {
      z-index: 4;
      min-height: 128px;
      margin: 0 auto 16px;
      padding: clamp(14px, 2.4vw, 22px);
      border-radius: 28px;
      background:
        linear-gradient(145deg, #ffffff, #f7fbff);
      border: 1px solid rgba(8,36,90,.08);
      box-shadow:
        0 24px 60px rgba(8,36,90,.13),
        inset 0 1px 0 rgba(255,255,255,.95);
    }

    .splash-logos img {
      filter: drop-shadow(0 10px 20px rgba(8,36,90,.12));
    }

    #splash-logo-1 {
      width: min(320px, 48vw);
      max-height: 96px;
    }

    #splash-logo-2 {
      width: min(230px, 34vw);
      max-height: 88px;
    }

    .splash-divider {
      width: 1px;
      height: 76px;
      background: linear-gradient(180deg, transparent, rgba(8,36,90,.20), transparent);
      box-shadow: none;
    }

    .splash-eyebrow {
      z-index: 4;
      margin-top: 6px;
      color: var(--blue-800);
      text-shadow: none;
    }

    .splash-title {
      z-index: 4;
      color: var(--blue-950);
      font-weight: 900;
      text-shadow: none;
    }

    #splash-status {
      z-index: 4;
      color: rgba(51,65,85,.78);
      font-weight: 650;
    }

    .splash-badge-row {
      z-index: 4;
      margin-bottom: 22px;
    }

    .splash-badge {
      color: rgba(8,36,90,.80);
      background: rgba(8,36,90,.045);
      border-color: rgba(8,36,90,.08);
      box-shadow: inset 0 1px 0 rgba(255,255,255,.72);
    }

    .splash-badge::before {
      background: linear-gradient(135deg, #e11d48, var(--blue-600));
      box-shadow: 0 0 20px rgba(15,94,215,.35);
    }

    .splash-progress {
      z-index: 4;
      height: 7px;
      background: rgba(8,36,90,.10);
    }

    #splash-progress-bar {
      background: linear-gradient(90deg, #e11d48, #ffffff, var(--blue-500), var(--cyan-300));
      box-shadow: 0 0 30px rgba(15,94,215,.30);
    }

    .splash-action-row {
      z-index: 4;
      margin-top: 22px;
    }

    .splash-action-button {
      min-height: 48px;
      padding: 0 34px;
      border: 1px solid rgba(255,255,255,.44);
      color: #fff;
      background: linear-gradient(135deg, #0b3d91, #1677ff 54%, #22d3ee);
      box-shadow: 0 20px 46px rgba(15,94,215,.28);
    }

    .splash-action-button:not(.is-ready) {
      cursor: wait;
      opacity: .78;
      filter: grayscale(.15);
    }

    .splash-action-button.is-ready {
      animation: readyButtonPulse 1.8s ease-in-out infinite;
    }

    @keyframes readyButtonPulse {
      0%, 100% { box-shadow: 0 20px 46px rgba(15,94,215,.28), 0 0 0 0 rgba(34,211,238,.26); }
      50% { box-shadow: 0 24px 58px rgba(15,94,215,.38), 0 0 0 9px rgba(34,211,238,0); }
    }

    .splash-foot {
      z-index: 4;
      color: rgba(51,65,85,.42);
      font-weight: 800;
    }

    .glass {
      background:
        linear-gradient(145deg, rgba(8,36,90,.86), rgba(3,12,32,.66)),
        radial-gradient(circle at 0% 0%, rgba(103,232,249,.12), transparent 42%);
      border-color: rgba(255,255,255,.16);
      box-shadow: 0 26px 80px rgba(0,11,35,.42);
    }

    .brand-card {
      border-radius: 22px;
    }

    .brand-logo-wrap {
      background: linear-gradient(145deg, rgba(255,255,255,.96), rgba(220,236,255,.86));
      box-shadow: inset 0 1px 0 rgba(255,255,255,.80);
    }

    .control-dock {
      background:
        linear-gradient(180deg, rgba(8,36,90,.92), rgba(3,12,32,.76)),
        radial-gradient(circle at 50% 0%, rgba(103,232,249,.15), transparent 38%);
      border-color: rgba(255,255,255,.18);
    }

    .dock-button {
      overflow: hidden;
    }

    .dock-button::before {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: inherit;
      background: linear-gradient(135deg, rgba(103,232,249,.16), transparent 55%);
      opacity: 0;
      transition: opacity .22s ease;
    }

    .dock-button:hover::before,
    .dock-button:focus-visible::before,
    .dock-button.is-active::before {
      opacity: 1;
    }

    #business-info-panel,
    #control-drawer,
    #route-guide-panel {
      border-color: rgba(255,255,255,.18);
      box-shadow: 0 32px 100px rgba(0,11,35,.46);
    }

    .bottom-status,
    .experience-coach {
      background: linear-gradient(135deg, rgba(3,12,32,.72), rgba(8,36,90,.58));
      border-color: rgba(255,255,255,.15);
    }

    body:not(.splash-ready) .splash-action-button {
      pointer-events: auto;
    }

    @media (max-width: 760px) {
      .intro-copy > div {
        border-radius: 24px;
      }

      .splash-card {
        width: min(94vw, 640px);
        padding: 24px 18px 22px;
      }

      .splash-crest {
        flex-direction: column;
        gap: 4px;
        border-radius: 20px;
        line-height: 1.35;
      }

      .splash-logos {
        min-height: 106px;
        gap: 12px;
        padding: 13px;
        border-radius: 22px;
      }

      #splash-logo-1 {
        width: 48vw;
        max-height: 74px;
      }

      #splash-logo-2 {
        width: 31vw;
        max-height: 68px;
      }

      .splash-badge-row {
        gap: 7px;
      }

      .splash-badge {
        padding: 7px 10px;
        font-size: 9px;
      }

      .splash-action-button {
        width: 100%;
        min-height: 46px;
      }
    }

  

    /* =========================
       REVISION V8: INTRO CLEAR VIEW, CLEAN PREMIUM SPLASH, TEMPORARY POINT MENU
       Catatan: tidak mengubah struktur hotspot, nama point, atau rute.
    ========================= */
    #intro-screen::before {
      background:
        linear-gradient(180deg, rgba(2,8,23,.08), rgba(2,8,23,.06) 48%, rgba(2,8,23,.42)),
        radial-gradient(circle at 50% 50%, transparent 0 42%, rgba(2,8,23,.18) 78%, rgba(2,8,23,.46) 100%);
    }

    #intro-screen::after {
      opacity: .34;
      mix-blend-mode: screen;
    }

    #intro-video {
      filter: saturate(1.12) contrast(1.04) brightness(1.02);
      transform: scale(1.006);
    }

    .intro-vignette {
      box-shadow: inset 0 0 min(11vw, 150px) rgba(0,0,0,.38);
    }

    .intro-grid {
      opacity: .08;
    }

    .intro-copy {
      left: max(24px, env(safe-area-inset-left));
      right: auto;
      bottom: max(24px, calc(env(safe-area-inset-bottom) + 18px));
      width: min(430px, calc(100vw - 48px));
      grid-template-columns: 1fr;
      gap: 0;
      pointer-events: none;
    }

    .intro-copy > div {
      width: 100%;
      padding: 13px 16px 14px;
      border-radius: 20px;
      background: linear-gradient(135deg, rgba(2,8,23,.36), rgba(8,36,90,.16));
      border: 1px solid rgba(255,255,255,.12);
      box-shadow: 0 18px 56px rgba(0,0,0,.18);
      backdrop-filter: blur(8px) saturate(125%);
    }

    .intro-kicker {
      gap: 7px;
      font-size: 8.5px;
      letter-spacing: .16em;
      color: rgba(223,249,255,.86);
    }

    .intro-kicker::before {
      width: 22px;
      opacity: .8;
    }

    .intro-title {
      max-width: 100%;
      margin-top: 6px;
      font-size: clamp(18px, 2.4vw, 30px);
      line-height: 1.04;
      letter-spacing: -.035em;
      text-shadow: 0 8px 28px rgba(0,0,0,.56);
    }

    .intro-title span {
      margin-top: 5px;
      font-size: .44em;
      line-height: 1.35;
      color: rgba(238,248,255,.76);
    }

    #splash-screen {
      background:
        radial-gradient(circle at 18% 18%, rgba(103,232,249,.22), transparent 30%),
        radial-gradient(circle at 82% 22%, rgba(47,140,255,.24), transparent 32%),
        radial-gradient(circle at 50% 110%, rgba(141,197,255,.24), transparent 42%),
        linear-gradient(135deg, #020817 0%, #06142f 34%, #08245a 68%, #0a2463 100%);
    }

    #splash-screen::after {
      background:
        linear-gradient(115deg, transparent 0 58%, rgba(255,255,255,.07) 58% 59%, transparent 59%),
        linear-gradient(245deg, transparent 0 62%, rgba(103,232,249,.12) 62% 63%, transparent 63%);
    }

    .splash-ribbon,
    .splash-crest {
      display: none !important;
    }

    .splash-card::before {
      background: conic-gradient(from 210deg, rgba(103,232,249,.42), rgba(255,255,255,.74), rgba(47,140,255,.45), rgba(141,197,255,.42), rgba(103,232,249,.42));
    }

    .splash-card::after {
      background:
        linear-gradient(145deg, rgba(255,255,255,.98), rgba(239,246,255,.94) 54%, rgba(225,239,255,.88)),
        radial-gradient(circle at 80% 0%, rgba(103,232,249,.15), transparent 35%);
    }

    .splash-logos {
      margin-top: 4px;
    }

    .splash-badge::before {
      background: linear-gradient(135deg, var(--blue-600), var(--cyan-300));
    }

    #splash-progress-bar {
      background: linear-gradient(90deg, var(--blue-800), var(--blue-500), var(--cyan-300), #ffffff);
    }

    .splash-action-button {
      background: linear-gradient(135deg, #08245a, #1677ff 55%, #22d3ee);
    }

    .point-card::before {
      content: attr(data-point-card);
      display: block;
      margin-bottom: 4px;
      color: rgba(141,197,255,.74);
      font-size: 9px;
      font-weight: 900;
      letter-spacing: .08em;
      text-transform: uppercase;
    }

    @media (max-width: 760px) {
      .intro-copy {
        left: 12px;
        right: 12px;
        bottom: max(14px, calc(env(safe-area-inset-bottom) + 12px));
        width: auto;
      }

      .intro-copy > div {
        padding: 11px 13px 12px;
        border-radius: 18px;
        background: linear-gradient(135deg, rgba(2,8,23,.34), rgba(8,36,90,.14));
      }

      .intro-title {
        font-size: clamp(17px, 5.3vw, 25px);
      }
    }



    /* =========================
       REVISI TERARAH FAIZ
       Fokus: gambar fasilitas tampil penuh, tombol mengikuti teks, dan splash tanpa titik/garis.
    ========================= */
    .intro-grid,
    .splash-particles {
      display: none !important;
    }

    #intro-screen::after {
      opacity: .22;
      background:
        radial-gradient(circle at 20% 18%, rgba(103,232,249,.24), transparent 30%),
        radial-gradient(circle at 84% 24%, rgba(47,140,255,.22), transparent 34%),
        radial-gradient(circle at 50% 92%, rgba(15,94,215,.22), transparent 38%);
      animation: none;
    }

    #splash-screen {
      background:
        radial-gradient(circle at 18% 18%, rgba(103,232,249,.24), transparent 32%),
        radial-gradient(circle at 82% 16%, rgba(47,140,255,.26), transparent 34%),
        radial-gradient(circle at 50% 105%, rgba(141,197,255,.30), transparent 42%),
        linear-gradient(135deg, #020817 0%, #06142f 38%, #08245a 72%, #0a2463 100%) !important;
    }

    #splash-screen::before {
      background:
        radial-gradient(circle at 28% 28%, rgba(255,255,255,.08), transparent 34%),
        radial-gradient(circle at 72% 62%, rgba(103,232,249,.12), transparent 38%),
        linear-gradient(135deg, rgba(255,255,255,.055), rgba(255,255,255,0) 54%) !important;
      background-size: auto !important;
      opacity: 1 !important;
      -webkit-mask-image: none !important;
      mask-image: none !important;
    }

    #splash-screen::after {
      background:
        radial-gradient(ellipse at 50% 0%, rgba(255,255,255,.10), transparent 48%),
        linear-gradient(180deg, rgba(2,8,23,0) 0%, rgba(2,8,23,.18) 100%) !important;
    }

    .splash-card {
      background: rgba(255,255,255,.92) !important;
    }

    .menu-thumb {
      display: grid;
      place-items: center;
      background: rgba(2,8,23,.22);
    }

    .menu-thumb img {
      width: 100%;
      height: 100%;
      object-fit: contain !important;
      object-position: center;
      padding: 3px;
    }

    .business-media {
      display: grid;
      place-items: center;
      background:
        radial-gradient(circle at 50% 50%, rgba(47,140,255,.18), transparent 58%),
        rgba(2,8,23,.34) !important;
    }

    .business-media img {
      width: 100%;
      height: min(340px, 44vh) !important;
      object-fit: contain !important;
      object-position: center;
      padding: 8px;
    }


    /* =========================
       REVISI SPLASH BACKGROUND ANIMASI
       Fokus: background utama lebih hidup tanpa titik hitam dan tanpa garis kaku.
       Bagian logo, card, border, dan komponen utama tetap dipertahankan.
    ========================= */
    #splash-screen {
      background:
        radial-gradient(circle at 12% 18%, rgba(103,232,249,.34), transparent 30%),
        radial-gradient(circle at 88% 14%, rgba(47,140,255,.30), transparent 32%),
        radial-gradient(circle at 48% 112%, rgba(34,211,238,.24), transparent 46%),
        linear-gradient(135deg, #010615 0%, #03112d 32%, #061e4f 62%, #082f7a 100%) !important;
      isolation: isolate;
    }

    #splash-screen::before {
      content: "";
      position: absolute;
      inset: -18%;
      z-index: 0;
      background:
        radial-gradient(circle at 20% 28%, rgba(103,232,249,.24), transparent 22%),
        radial-gradient(circle at 78% 28%, rgba(47,140,255,.22), transparent 24%),
        radial-gradient(circle at 42% 76%, rgba(141,197,255,.18), transparent 26%),
        conic-gradient(from 180deg at 50% 50%, transparent 0 14%, rgba(103,232,249,.12) 20%, transparent 30% 52%, rgba(47,140,255,.13) 62%, transparent 74% 100%) !important;
      background-size: auto !important;
      opacity: 1 !important;
      filter: blur(10px) saturate(130%);
      -webkit-mask-image: none !important;
      mask-image: none !important;
      animation: splashAuroraMove 16s ease-in-out infinite alternate;
      pointer-events: none;
    }

    #splash-screen::after {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 1;
      background:
        radial-gradient(ellipse at 50% 8%, rgba(255,255,255,.16), transparent 34%),
        radial-gradient(ellipse at 50% 88%, rgba(8,36,90,.32), transparent 48%),
        linear-gradient(110deg, transparent 0 38%, rgba(255,255,255,.075) 48%, transparent 58% 100%) !important;
      animation: splashSoftSweep 7s ease-in-out infinite alternate;
      pointer-events: none;
    }

    .splash-shapes {
      display: block !important;
      z-index: 0;
      opacity: 1;
      mix-blend-mode: screen;
    }

    .splash-shapes div {
      display: block !important;
      border-radius: 42% 58% 63% 37% / 46% 35% 65% 54%;
      opacity: .34 !important;
      filter: blur(28px);
      animation: splashBlobFloat 18s ease-in-out infinite alternate !important;
    }

    .splash-shapes div:nth-child(1) {
      width: 420px;
      height: 420px;
      top: -90px;
      right: -80px;
      background: rgba(103,232,249,.38) !important;
      animation-duration: 19s !important;
    }

    .splash-shapes div:nth-child(2) {
      width: 520px;
      height: 520px;
      bottom: -150px;
      left: -140px;
      background: rgba(47,140,255,.34) !important;
      animation-duration: 23s !important;
      animation-delay: -7s !important;
    }

    .splash-shapes div:nth-child(3) {
      width: 360px;
      height: 360px;
      top: 44%;
      left: 50%;
      background: rgba(141,197,255,.20) !important;
      animation-duration: 21s !important;
      animation-delay: -11s !important;
    }

    .splash-card,
    .splash-card > * {
      position: relative;
      z-index: 4;
    }

    .splash-card {
      box-shadow:
        0 46px 130px rgba(0,0,0,.48),
        0 0 70px rgba(103,232,249,.10),
        0 0 0 1px rgba(141,197,255,.16),
        inset 0 1px 0 rgba(255,255,255,.88) !important;
    }

    .splash-logos {
      box-shadow:
        0 26px 64px rgba(8,36,90,.15),
        0 0 36px rgba(103,232,249,.08),
        inset 0 1px 0 rgba(255,255,255,.95) !important;
    }

    @keyframes splashAuroraMove {
      0% {
        transform: translate3d(-2%, -1%, 0) rotate(0deg) scale(1);
      }
      50% {
        transform: translate3d(2%, 1%, 0) rotate(8deg) scale(1.04);
      }
      100% {
        transform: translate3d(3%, -2%, 0) rotate(14deg) scale(1.08);
      }
    }

    @keyframes splashSoftSweep {
      0% {
        opacity: .52;
        transform: translateX(-1.5%);
      }
      100% {
        opacity: .86;
        transform: translateX(1.5%);
      }
    }

    @keyframes splashBlobFloat {
      0% {
        transform: translate3d(0, 0, 0) scale(1) rotate(0deg);
      }
      50% {
        transform: translate3d(24px, -18px, 0) scale(1.08) rotate(16deg);
      }
      100% {
        transform: translate3d(-18px, 22px, 0) scale(.96) rotate(28deg);
      }
    }

    @media (max-width: 760px) {
      #splash-screen::before {
        inset: -24%;
        filter: blur(14px) saturate(125%);
      }

      .splash-shapes div:nth-child(1) {
        width: 300px;
        height: 300px;
      }

      .splash-shapes div:nth-child(2) {
        width: 360px;
        height: 360px;
      }

      .splash-shapes div:nth-child(3) {
        width: 260px;
        height: 260px;
      }
    }



    /* =========================
       REVISION V10: PRE TOUR CINEMATIC MOTION ONLY
       Area revisi hanya intro video dan splash screen. Virtual tour, hotspot, rute, dan data lokasi tidak disentuh.
    ========================= */
    #intro-screen,
    #splash-screen {
      --motion-x: 50%;
      --motion-y: 50%;
    }

    #intro-screen {
      background:
        radial-gradient(circle at var(--motion-x) var(--motion-y), rgba(103,232,249,.16), transparent 28%),
        radial-gradient(circle at 18% 24%, rgba(47,140,255,.22), transparent 34%),
        radial-gradient(circle at 88% 76%, rgba(15,94,215,.22), transparent 36%),
        #020817 !important;
    }

    #intro-screen::before {
      background:
        radial-gradient(circle at var(--motion-x) var(--motion-y), rgba(255,255,255,.10), transparent 20%),
        linear-gradient(180deg, rgba(2,8,23,.05), rgba(2,8,23,.08) 46%, rgba(2,8,23,.46)),
        radial-gradient(circle at 50% 50%, transparent 0 48%, rgba(2,8,23,.16) 78%, rgba(2,8,23,.44) 100%) !important;
      animation: introBreathingShade 7s ease-in-out infinite alternate;
    }

    #intro-screen::after {
      opacity: .46 !important;
      background:
        conic-gradient(from 120deg at 50% 50%, transparent 0 16%, rgba(103,232,249,.14) 24%, transparent 34% 54%, rgba(47,140,255,.15) 64%, transparent 76% 100%),
        radial-gradient(circle at 24% 22%, rgba(103,232,249,.26), transparent 28%),
        radial-gradient(circle at 84% 72%, rgba(47,140,255,.20), transparent 34%) !important;
      mix-blend-mode: screen;
      animation: introAuroraFlow 13s ease-in-out infinite alternate !important;
    }

    #intro-video {
      animation: introVideoAlive 14s ease-in-out infinite alternate;
      will-change: transform, filter;
    }

    .intro-grid {
      display: block !important;
      opacity: .10 !important;
      background-size: 58px 58px !important;
      animation: introGridGlide 18s linear infinite;
      transform-origin: center;
    }

    .intro-vignette::before,
    .intro-vignette::after {
      content: "";
      position: absolute;
      inset: -18%;
      pointer-events: none;
    }

    .intro-vignette::before {
      background:
        linear-gradient(115deg, transparent 0 36%, rgba(255,255,255,.13) 48%, transparent 62% 100%);
      mix-blend-mode: screen;
      animation: introLightSweep 6.8s ease-in-out infinite;
    }

    .intro-vignette::after {
      background:
        radial-gradient(circle at 30% 20%, rgba(103,232,249,.18), transparent 24%),
        radial-gradient(circle at 70% 80%, rgba(47,140,255,.16), transparent 28%);
      filter: blur(18px);
      opacity: .64;
      animation: introLensFloat 9s ease-in-out infinite alternate;
    }

    .intro-motion-layer,
    .intro-orbit-field,
    .splash-cinema-layer,
    .splash-depth-grid {
      position: absolute;
      inset: 0;
      pointer-events: none;
      overflow: hidden;
    }

    .intro-motion-layer {
      z-index: 4;
      mix-blend-mode: screen;
      opacity: .78;
    }

    .intro-motion-layer span {
      position: absolute;
      left: var(--x);
      top: var(--y);
      width: var(--w);
      height: 2px;
      border-radius: 999px;
      background: linear-gradient(90deg, transparent, rgba(103,232,249,.88), rgba(255,255,255,.72), transparent);
      filter: drop-shadow(0 0 14px rgba(103,232,249,.55));
      opacity: 0;
      transform: rotate(var(--r)) translate3d(-120px, 0, 0);
      animation: introLightTrail var(--d) ease-in-out infinite;
      animation-delay: var(--delay);
    }

    .intro-orbit-field {
      z-index: 4;
      opacity: .42;
      mix-blend-mode: screen;
    }

    .intro-orbit-field span {
      position: absolute;
      left: 50%;
      top: 50%;
      width: var(--s);
      height: var(--s);
      border: 1px solid rgba(141,197,255,.18);
      border-top-color: rgba(103,232,249,.46);
      border-radius: 50%;
      transform: translate(-50%, -50%);
      animation: introOrbitSpin var(--d) linear infinite;
      animation-delay: var(--delay);
    }

    .intro-brand,
    .intro-copy > div {
      will-change: transform, opacity;
    }

    .intro-brand {
      animation: introBrandFloat 6.5s ease-in-out infinite alternate;
    }

    .intro-copy > div {
      animation: introCaptionFloat 7.4s ease-in-out infinite alternate;
      border-color: rgba(255,255,255,.16) !important;
      box-shadow:
        0 22px 72px rgba(0,0,0,.22),
        0 0 34px rgba(103,232,249,.08) !important;
    }

    .intro-kicker::after {
      content: "";
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--cyan-300);
      box-shadow: 0 0 18px rgba(103,232,249,.85);
      animation: introSignalPulse 1.45s ease-in-out infinite;
    }

    .intro-progress {
      overflow: hidden;
    }

    .intro-progress::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,.36), transparent);
      transform: translateX(-100%);
      animation: introProgressSweep 2.6s ease-in-out infinite;
    }

    #intro-screen.is-leaving::before,
    #intro-screen.is-leaving::after,
    #intro-screen.is-leaving .intro-motion-layer,
    #intro-screen.is-leaving .intro-orbit-field,
    #intro-screen.is-leaving .intro-vignette {
      animation-duration: .75s !important;
      opacity: .92;
    }

    #intro-screen.is-leaving .intro-copy,
    #intro-screen.is-leaving .intro-brand {
      transform: translateY(-10px) scale(.985);
      opacity: 0;
      transition: transform .65s var(--ease), opacity .65s ease;
    }

    #splash-screen {
      background:
        radial-gradient(circle at var(--motion-x) var(--motion-y), rgba(103,232,249,.24), transparent 24%),
        radial-gradient(circle at 12% 18%, rgba(103,232,249,.34), transparent 30%),
        radial-gradient(circle at 88% 14%, rgba(47,140,255,.30), transparent 32%),
        radial-gradient(circle at 48% 112%, rgba(34,211,238,.24), transparent 46%),
        linear-gradient(135deg, #010615 0%, #03112d 32%, #061e4f 62%, #082f7a 100%) !important;
    }

    .splash-cinema-layer {
      z-index: 0;
      mix-blend-mode: screen;
      opacity: .90;
    }

    .splash-cinema-layer span {
      position: absolute;
      display: block;
      border-radius: 999px;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,.34), rgba(103,232,249,.58), transparent);
      box-shadow: 0 0 28px rgba(103,232,249,.24);
      opacity: 0;
      transform: rotate(var(--r)) translateX(-28vw);
      left: var(--x);
      top: var(--y);
      width: var(--w);
      height: 1px;
      animation: splashStreakMove var(--d) ease-in-out infinite;
      animation-delay: var(--delay);
    }

    .splash-depth-grid {
      z-index: 0;
      opacity: .16;
      background-image:
        linear-gradient(rgba(141,197,255,.16) 1px, transparent 1px),
        linear-gradient(90deg, rgba(141,197,255,.16) 1px, transparent 1px);
      background-size: 74px 74px;
      transform: perspective(780px) rotateX(62deg) translateY(18vh) scale(1.3);
      transform-origin: center bottom;
      mask-image: linear-gradient(to top, rgba(0,0,0,.72), transparent 72%);
      -webkit-mask-image: linear-gradient(to top, rgba(0,0,0,.72), transparent 72%);
      animation: splashGridRun 18s linear infinite;
    }

    .splash-particles {
      display: block !important;
      z-index: 0;
      opacity: .72;
      mix-blend-mode: screen;
    }

    .splash-particles span {
      background: rgba(255,255,255,.68) !important;
      box-shadow: 0 0 28px rgba(103,232,249,.62) !important;
      animation-name: splashParticleRise !important;
    }

    .splash-card {
      transform-style: preserve-3d;
      will-change: transform, box-shadow;
      animation: splashCardPremiumFloat 7.2s ease-in-out infinite alternate !important;
    }

    .splash-card::before {
      animation: splashBorderOrbit 7.5s linear infinite !important;
    }

    .splash-logos {
      overflow: hidden;
    }

    .splash-logos::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 0;
      background: linear-gradient(115deg, transparent 0 38%, rgba(103,232,249,.16) 48%, transparent 60% 100%);
      transform: translateX(-130%);
      animation: splashLogoSweep 5.8s ease-in-out infinite;
      pointer-events: none;
    }

    .splash-logos > * {
      position: relative;
      z-index: 1;
    }

    .splash-badge {
      animation: splashBadgeFloat 4.8s ease-in-out infinite alternate;
      animation-delay: var(--delay, 0s);
    }

    .splash-badge:nth-child(2) { --delay: .35s; }
    .splash-badge:nth-child(3) { --delay: .7s; }

    .splash-action-button {
      isolation: isolate;
      overflow: hidden;
    }

    .splash-action-button::after {
      content: "";
      position: absolute;
      inset: -40% -20%;
      z-index: 0;
      background: linear-gradient(115deg, transparent 0 42%, rgba(255,255,255,.42) 50%, transparent 58% 100%);
      transform: translateX(-130%);
      animation: splashButtonSheen 2.8s ease-in-out infinite;
    }

    .splash-action-button span {
      z-index: 2;
    }

    .pre-tour-ripple {
      position: absolute;
      z-index: 1;
      width: 18px;
      height: 18px;
      border-radius: 50%;
      pointer-events: none;
      background: rgba(255,255,255,.42);
      transform: translate(-50%, -50%) scale(0);
      animation: preTourRipple .65s ease-out forwards;
    }

    @keyframes introBreathingShade {
      from { opacity: .82; transform: scale(1); }
      to { opacity: 1; transform: scale(1.015); }
    }

    @keyframes introAuroraFlow {
      0% { transform: rotate(0deg) scale(1); filter: blur(0); }
      50% { transform: rotate(7deg) scale(1.04); filter: blur(1px); }
      100% { transform: rotate(-5deg) scale(1.08); filter: blur(0); }
    }

    @keyframes introVideoAlive {
      0% { transform: scale(1.006) translate3d(0,0,0); filter: saturate(1.12) contrast(1.04) brightness(1.02); }
      50% { transform: scale(1.018) translate3d(.35%, -.22%, 0); filter: saturate(1.18) contrast(1.06) brightness(1.04); }
      100% { transform: scale(1.012) translate3d(-.28%, .18%, 0); filter: saturate(1.14) contrast(1.05) brightness(1.03); }
    }

    @keyframes introGridGlide {
      from { background-position: 0 0, 0 0; transform: scale(1.02); }
      to { background-position: 116px 58px, 58px 116px; transform: scale(1.045); }
    }

    @keyframes introLightSweep {
      0%, 38% { transform: translateX(-100%) rotate(0deg); opacity: 0; }
      56% { opacity: .52; }
      100% { transform: translateX(100%) rotate(0deg); opacity: 0; }
    }

    @keyframes introLensFloat {
      from { transform: translate3d(-2%, 1%, 0) scale(1); }
      to { transform: translate3d(2%, -1.5%, 0) scale(1.06); }
    }

    @keyframes introLightTrail {
      0%, 22% { opacity: 0; transform: rotate(var(--r)) translate3d(-160px, 0, 0); }
      42% { opacity: .72; }
      72%, 100% { opacity: 0; transform: rotate(var(--r)) translate3d(160px, 0, 0); }
    }

    @keyframes introOrbitSpin {
      from { transform: translate(-50%, -50%) rotate(0deg) scale(1); }
      to { transform: translate(-50%, -50%) rotate(360deg) scale(1.03); }
    }

    @keyframes introBrandFloat {
      from { transform: translateY(0); }
      to { transform: translateY(6px); }
    }

    @keyframes introCaptionFloat {
      from { transform: translateY(0); }
      to { transform: translateY(-5px); }
    }

    @keyframes introSignalPulse {
      0%, 100% { transform: scale(1); opacity: .95; }
      50% { transform: scale(.58); opacity: .48; }
    }

    @keyframes introProgressSweep {
      0%, 38% { transform: translateX(-100%); opacity: 0; }
      55% { opacity: 1; }
      100% { transform: translateX(100%); opacity: 0; }
    }

    @keyframes splashStreakMove {
      0%, 20% { opacity: 0; transform: rotate(var(--r)) translateX(-32vw); }
      42% { opacity: .52; }
      76%, 100% { opacity: 0; transform: rotate(var(--r)) translateX(34vw); }
    }

    @keyframes splashGridRun {
      from { background-position: 0 0, 0 0; }
      to { background-position: 0 148px, 148px 0; }
    }

    @keyframes splashParticleRise {
      0% { transform: translate3d(0, 35px, 0) scale(.72); opacity: 0; }
      18% { opacity: .72; }
      74% { opacity: .46; }
      100% { transform: translate3d(20px, -180px, 0) scale(1.25); opacity: 0; }
    }

    @keyframes splashCardPremiumFloat {
      from { transform: translateY(0) rotateX(0deg) rotateY(0deg); }
      to { transform: translateY(-10px) rotateX(.7deg) rotateY(-.7deg); }
    }

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

    @keyframes splashLogoSweep {
      0%, 46% { transform: translateX(-130%); opacity: 0; }
      58% { opacity: 1; }
      100% { transform: translateX(130%); opacity: 0; }
    }

    @keyframes splashBadgeFloat {
      from { transform: translateY(0); }
      to { transform: translateY(-4px); }
    }

    @keyframes splashButtonSheen {
      0%, 38% { transform: translateX(-130%); }
      100% { transform: translateX(130%); }
    }

    @keyframes preTourRipple {
      to { transform: translate(-50%, -50%) scale(16); opacity: 0; }
    }

    @media (max-width: 760px) {
      .intro-motion-layer span:nth-child(n+5),
      .splash-cinema-layer span:nth-child(n+6) {
        display: none;
      }

      .intro-orbit-field span {
        opacity: .55;
      }

      .splash-depth-grid {
        background-size: 54px 54px;
      }
    }


    @media (prefers-reduced-motion: reduce) {
      #intro-screen,
      #intro-screen::before,
      #intro-screen::after,
      #intro-video,
      .intro-grid,
      .intro-motion-layer span,
      .intro-orbit-field span,
      .intro-vignette::before,
      .intro-vignette::after,
      .intro-brand,
      .intro-copy > div,
      #splash-screen,
      #splash-screen::before,
      #splash-screen::after,
      .splash-cinema-layer span,
      .splash-depth-grid,
      .splash-particles span,
      .splash-shapes div,
      .splash-card,
      .splash-card::before,
      .splash-logos::before,
      .splash-badge,
      .splash-action-button,
      .splash-action-button::after {
        animation: none !important;
        transition-duration: .01ms !important;
      }
    }



    /* =========================
       REVISI TERARAH: LOGO SPLASH, BACKGROUND BGSPLASHSCREEN, DAN FOCUS CURSOR
       Tidak mengubah struktur virtual tour, hotspot, rute, atau data panorama.
    ========================= */
    .splash-logos {
      background-image:
        linear-gradient(145deg, rgba(255,255,255,.60), rgba(247,251,255,.74)),
        var(--splash-logo-bg-image, url("images/bgsplashscreen.jpeg")) !important;
      background-size: cover, cover !important;
      background-position: center, center !important;
      background-repeat: no-repeat, no-repeat !important;
      min-height: 144px !important;
    }

    #splash-logo-1,
    #splash-logo-2 {
      width: min(300px, 41vw) !important;
      height: 96px !important;
      max-height: 96px !important;
      object-fit: contain !important;
    }

    .focus-symbol {
      width: 23px !important;
      height: 23px !important;
      border-color: #ff2d55 !important;
      box-shadow:
        0 0 0 4px rgba(255,45,85,.18),
        0 0 22px rgba(255,45,85,.55) !important;
    }

    .focus-symbol::after {
      width: 8px !important;
      height: 8px !important;
      margin: 5px auto !important;
      background: #ff2d55 !important;
      opacity: .95 !important;
    }

    @media (max-width: 760px) {
      .splash-logos {
        min-height: 112px !important;
      }

      #splash-logo-1,
      #splash-logo-2 {
        width: min(42vw, 190px) !important;
        height: 70px !important;
        max-height: 70px !important;
      }
    }

  

    /* =========================
       REVISI TERARAH V12: FOCUS ORANGE, SPLASH FULL BGSPLASHSCREEN, LOGO DIPERBESAR
       Hanya mengubah visual yang diminta; tidak mengubah titik, rute, hotspot, atau isi virtual tour.
    ========================= */
    .splash-card {
      width: min(1120px, calc(100vw - 76px)) !important;
      min-height: min(760px, calc(100vh - 76px)) !important;
      padding: clamp(34px, 4.6vw, 58px) clamp(34px, 5vw, 62px) clamp(32px, 4vw, 48px) !important;
      background: rgba(255,255,255,.92) !important;
      border: 1px solid rgba(255,255,255,.86) !important;
      box-shadow:
        0 48px 140px rgba(0,0,0,.50),
        0 0 0 1px rgba(255,255,255,.36),
        0 0 90px rgba(47,140,255,.20),
        inset 0 1px 0 rgba(255,255,255,.92) !important;
    }

    .splash-card::after {
      z-index: 1 !important;
      inset: 10px !important;
      border-radius: 24px !important;
      background:
        linear-gradient(145deg, rgba(255,255,255,.30), rgba(239,246,255,.18) 38%, rgba(8,36,90,.10) 100%),
        radial-gradient(circle at 50% 18%, rgba(255,255,255,.36), transparent 28%),
        var(--splash-logo-bg-image, url("images/bgsplashscreen.jpeg")) !important;
      background-size: cover, cover, cover !important;
      background-position: center, center, center !important;
      background-repeat: no-repeat, no-repeat, no-repeat !important;
      box-shadow: inset 0 0 0 1px rgba(255,255,255,.38) !important;
    }

    .splash-card > * {
      position: relative !important;
      z-index: 4 !important;
    }

    .splash-logos {
      width: 100% !important;
      min-height: 210px !important;
      margin: 0 auto 22px !important;
      padding: clamp(18px, 2.8vw, 30px) clamp(18px, 3vw, 34px) !important;
      gap: clamp(20px, 3vw, 38px) !important;
      border-radius: 30px !important;
      background: rgba(255,255,255,.30) !important;
      background-image: none !important;
      border: 1px solid rgba(255,255,255,.48) !important;
      box-shadow:
        0 24px 70px rgba(8,36,90,.18),
        inset 0 1px 0 rgba(255,255,255,.72) !important;
      backdrop-filter: blur(7px) saturate(145%) !important;
    }

    #splash-logo-1,
    #splash-logo-2 {
      width: min(410px, 39vw) !important;
      height: 132px !important;
      max-height: 132px !important;
      object-fit: contain !important;
      filter: drop-shadow(0 14px 24px rgba(8,36,90,.18)) !important;
    }

    .splash-divider {
      height: 112px !important;
      background: linear-gradient(180deg, transparent, rgba(8,36,90,.30), transparent) !important;
    }

    .focus-symbol {
      width: 30px !important;
      height: 30px !important;
      border: 3px solid #ff8a00 !important;
      box-shadow:
        0 0 0 5px rgba(255,138,0,.18),
        0 0 28px rgba(255,138,0,.72) !important;
    }

    .focus-symbol::after {
      width: 10px !important;
      height: 10px !important;
      margin: 7px auto !important;
      background: #ff8a00 !important;
      opacity: 1 !important;
    }

    @media (max-width: 760px) {
      .splash-card {
        width: calc(100vw - 24px) !important;
        min-height: auto !important;
        padding: 24px 16px 22px !important;
      }

      .splash-card::after {
        inset: 7px !important;
        border-radius: 21px !important;
      }

      .splash-logos {
        min-height: 138px !important;
        padding: 14px !important;
        gap: 12px !important;
      }

      #splash-logo-1,
      #splash-logo-2 {
        width: min(43vw, 245px) !important;
        height: 92px !important;
        max-height: 92px !important;
      }

      .splash-divider {
        height: 78px !important;
      }

      .focus-symbol {
        width: 27px !important;
        height: 27px !important;
      }
    }



    /* =========================
       REVISI TERARAH V13: SPLASH LEBIH BERSIH + FOCUS ORANGE BESAR
       Hanya visual splash/focus dan data fasilitas yang diminta; tidak mengubah rute, titik panorama, atau hotspot virtual tour.
    ========================= */
    .splash-card {
      width: min(1180px, calc(100vw - 88px)) !important;
      min-height: min(700px, calc(100vh - 88px)) !important;
      display: flex !important;
      flex-direction: column !important;
      justify-content: center !important;
      padding: clamp(30px, 4vw, 52px) clamp(32px, 4.8vw, 60px) !important;
      background: rgba(255,255,255,.94) !important;
      border: 10px solid rgba(255,255,255,.88) !important;
      border-radius: 38px !important;
      overflow: hidden !important;
      box-shadow:
        0 50px 150px rgba(0,0,0,.54),
        0 0 0 1px rgba(255,255,255,.30),
        0 0 110px rgba(47,140,255,.22),
        inset 0 1px 0 rgba(255,255,255,.95) !important;
    }

    .splash-card::before {
      border-radius: 44px !important;
      opacity: .52 !important;
      filter: blur(.4px) !important;
    }

    .splash-card::after {
      z-index: 1 !important;
      inset: 0 !important;
      border-radius: 28px !important;
      background:
        linear-gradient(180deg, rgba(3,12,32,.06) 0%, rgba(3,12,32,.16) 36%, rgba(3,12,32,.58) 100%),
        radial-gradient(circle at 50% 18%, rgba(255,255,255,.24), transparent 32%),
        var(--splash-logo-bg-image, url("images/bgsplashscreen.jpeg")) !important;
      background-size: cover, cover, cover !important;
      background-position: center, center, center !important;
      background-repeat: no-repeat, no-repeat, no-repeat !important;
      box-shadow: inset 0 0 0 1px rgba(255,255,255,.42) !important;
    }

    .splash-card > * {
      position: relative !important;
      z-index: 4 !important;
    }

    .splash-logos {
      width: min(1040px, 100%) !important;
      min-height: 205px !important;
      margin: 0 auto clamp(28px, 4vw, 42px) !important;
      padding: clamp(24px, 3.4vw, 38px) clamp(24px, 3.8vw, 44px) !important;
      gap: clamp(18px, 2.8vw, 34px) !important;
      border-radius: 32px !important;
      background: rgba(255,255,255,.82) !important;
      background-image: none !important;
      border: 1px solid rgba(255,255,255,.74) !important;
      box-shadow:
        0 28px 80px rgba(3,12,32,.22),
        inset 0 1px 0 rgba(255,255,255,.92) !important;
      backdrop-filter: blur(3px) saturate(140%) !important;
    }

    #splash-logo-1,
    #splash-logo-2 {
      width: min(470px, 41vw) !important;
      height: 150px !important;
      max-height: 150px !important;
      object-fit: contain !important;
      filter: drop-shadow(0 15px 26px rgba(8,36,90,.22)) !important;
    }

    .splash-divider {
      height: 132px !important;
      background: linear-gradient(180deg, transparent, rgba(8,36,90,.34), transparent) !important;
    }

    .splash-eyebrow,
    .splash-title,
    #splash-status,
    .splash-badge-row,
    .splash-progress,
    .splash-action-row,
    .splash-foot {
      max-width: 860px !important;
      margin-left: auto !important;
      margin-right: auto !important;
    }

    .splash-eyebrow {
      color: #e8f8ff !important;
      text-shadow: 0 3px 18px rgba(0,0,0,.62) !important;
      letter-spacing: .24em !important;
    }

    .splash-title {
      color: #ffffff !important;
      font-size: clamp(38px, 4.6vw, 66px) !important;
      line-height: .98 !important;
      text-shadow:
        0 5px 18px rgba(0,0,0,.52),
        0 18px 54px rgba(0,0,0,.40) !important;
    }

    #splash-status {
      color: rgba(255,255,255,.93) !important;
      font-size: clamp(14px, 1.35vw, 18px) !important;
      text-shadow: 0 4px 16px rgba(0,0,0,.54) !important;
    }

    .splash-badge {
      color: #ffffff !important;
      background: rgba(3,12,32,.34) !important;
      border-color: rgba(255,255,255,.34) !important;
      box-shadow:
        inset 0 1px 0 rgba(255,255,255,.18),
        0 12px 30px rgba(0,0,0,.16) !important;
      backdrop-filter: blur(8px) saturate(145%) !important;
    }

    .splash-progress {
      background: rgba(255,255,255,.32) !important;
      box-shadow: 0 12px 34px rgba(0,0,0,.18), inset 0 1px 2px rgba(0,0,0,.16) !important;
    }

    .splash-action-button {
      min-height: 54px !important;
      padding: 0 44px !important;
      font-size: 14px !important;
      box-shadow:
        0 22px 54px rgba(0,0,0,.26),
        0 0 0 1px rgba(255,255,255,.36) inset !important;
    }

    .splash-foot {
      color: rgba(255,255,255,.58) !important;
      text-shadow: 0 3px 14px rgba(0,0,0,.52) !important;
    }

    .focus-symbol {
      width: 36px !important;
      height: 36px !important;
      border: 4px solid #ff9f0a !important;
      box-shadow:
        0 0 0 6px rgba(255,159,10,.20),
        0 0 34px rgba(255,159,10,.84),
        0 0 0 2px rgba(3,12,32,.40) inset !important;
      background: rgba(3,12,32,.20) !important;
    }

    .focus-symbol::after {
      width: 12px !important;
      height: 12px !important;
      margin: 8px auto !important;
      background: #ff9f0a !important;
      box-shadow: 0 0 18px rgba(255,159,10,.92) !important;
      opacity: 1 !important;
    }

    @media (max-width: 760px) {
      .splash-card {
        width: calc(100vw - 22px) !important;
        min-height: min(680px, calc(100vh - 22px)) !important;
        padding: 18px 14px 20px !important;
        border-width: 6px !important;
        border-radius: 30px !important;
      }

      .splash-card::after {
        border-radius: 22px !important;
      }

      .splash-logos {
        min-height: 154px !important;
        padding: 18px 12px !important;
        gap: 10px !important;
        border-radius: 24px !important;
        margin-bottom: 22px !important;
      }

      #splash-logo-1,
      #splash-logo-2 {
        width: min(44vw, 270px) !important;
        height: 98px !important;
        max-height: 98px !important;
      }

      .splash-divider {
        height: 86px !important;
      }

      .splash-title {
        font-size: clamp(28px, 8vw, 42px) !important;
      }

      .splash-action-button {
        min-height: 48px !important;
        padding: 0 28px !important;
        font-size: 12px !important;
      }

      .focus-symbol {
        width: 32px !important;
        height: 32px !important;
      }

      .focus-symbol::after {
        width: 10px !important;
        height: 10px !important;
        margin: 7px auto !important;
      }
    }



    /* =========================
       REVISI TERARAH V14: SPLASH SIMETRIS, RAPI, DAN PROFESIONAL
       Hanya menyempurnakan tampilan splash screen; tidak mengubah virtual tour, hotspot, rute, titik, atau data fasilitas.
    ========================= */
    .splash-card {
      width: min(1280px, calc(100vw - 96px)) !important;
      min-height: min(720px, calc(100vh - 58px)) !important;
      display: grid !important;
      grid-template-rows: auto auto auto auto auto auto auto !important;
      align-content: center !important;
      justify-items: center !important;
      row-gap: clamp(10px, 1.6vh, 18px) !important;
      padding: clamp(28px, 3.8vw, 48px) clamp(38px, 5vw, 72px) !important;
      border: 12px solid rgba(255,255,255,.94) !important;
      outline: 1px solid rgba(255,255,255,.72) !important;
      outline-offset: -4px !important;
      border-radius: 44px !important;
      background: rgba(255,255,255,.96) !important;
      overflow: hidden !important;
      box-shadow:
        0 52px 155px rgba(0,0,0,.52),
        0 0 0 1px rgba(255,255,255,.40),
        0 0 120px rgba(47,140,255,.24),
        inset 0 1px 0 rgba(255,255,255,.96) !important;
    }

    .splash-card::before {
      inset: -2px !important;
      border-radius: 46px !important;
      opacity: .48 !important;
      background:
        conic-gradient(from 210deg, rgba(255,255,255,.84), rgba(103,232,249,.38), rgba(47,140,255,.32), rgba(255,255,255,.80), rgba(103,232,249,.34), rgba(255,255,255,.84)) !important;
      filter: blur(.4px) !important;
    }

    .splash-card::after {
      z-index: 1 !important;
      inset: 12px !important;
      border-radius: 30px !important;
      background:
        linear-gradient(180deg, rgba(8,36,90,.18) 0%, rgba(8,36,90,.18) 43%, rgba(3,12,32,.44) 100%),
        radial-gradient(circle at 50% 22%, rgba(255,255,255,.30), transparent 30%),
        var(--splash-logo-bg-image, url("images/bgsplashscreen.jpeg")) !important;
      background-size: cover, cover, cover !important;
      background-position: center, center, center !important;
      background-repeat: no-repeat, no-repeat, no-repeat !important;
      box-shadow:
        inset 0 0 0 1px rgba(255,255,255,.52),
        inset 0 0 90px rgba(3,12,32,.16) !important;
    }

    .splash-card > * {
      position: relative !important;
      z-index: 4 !important;
    }

    .splash-logos {
      width: min(1080px, 94%) !important;
      min-height: clamp(150px, 21vh, 184px) !important;
      margin: 0 auto clamp(18px, 2.6vh, 28px) !important;
      padding: clamp(13px, 1.8vw, 20px) clamp(22px, 3.1vw, 38px) !important;
      gap: clamp(16px, 2.6vw, 32px) !important;
      border-radius: 28px !important;
      background: linear-gradient(135deg, rgba(255,255,255,.88), rgba(239,248,255,.70)) !important;
      background-image: none !important;
      border: 1px solid rgba(255,255,255,.78) !important;
      box-shadow:
        0 22px 62px rgba(3,12,32,.20),
        0 0 0 1px rgba(8,36,90,.06),
        inset 0 1px 0 rgba(255,255,255,.96) !important;
      backdrop-filter: blur(5px) saturate(145%) !important;
      transform: translateZ(0) !important;
      animation: splashLogoRailFloat 6.5s ease-in-out infinite alternate !important;
    }

    #splash-logo-1,
    #splash-logo-2 {
      width: min(500px, 42vw) !important;
      height: clamp(118px, 16vh, 142px) !important;
      max-height: clamp(118px, 16vh, 142px) !important;
      object-fit: contain !important;
      filter: drop-shadow(0 13px 24px rgba(8,36,90,.20)) !important;
    }

    .splash-divider {
      width: 1px !important;
      height: clamp(96px, 14vh, 124px) !important;
      background: linear-gradient(180deg, transparent, rgba(8,36,90,.28), transparent) !important;
      box-shadow: none !important;
    }

    .splash-eyebrow,
    .splash-title,
    #splash-status,
    .splash-badge-row,
    .splash-progress,
    .splash-action-row,
    .splash-foot {
      width: min(860px, 92%) !important;
      max-width: 860px !important;
      margin-left: auto !important;
      margin-right: auto !important;
    }

    .splash-eyebrow {
      margin-top: 0 !important;
      color: #eaf9ff !important;
      text-shadow: 0 3px 18px rgba(0,0,0,.60) !important;
      letter-spacing: .26em !important;
    }

    .splash-title {
      color: #ffffff !important;
      font-size: clamp(38px, 4.25vw, 62px) !important;
      line-height: 1 !important;
      text-align: center !important;
      text-shadow:
        0 5px 20px rgba(0,0,0,.54),
        0 18px 52px rgba(0,0,0,.38) !important;
    }

    #splash-status {
      margin-top: 2px !important;
      margin-bottom: clamp(10px, 1.7vh, 16px) !important;
      color: rgba(255,255,255,.94) !important;
      font-size: clamp(14px, 1.2vw, 17px) !important;
      font-weight: 750 !important;
      text-align: center !important;
      text-shadow: 0 4px 16px rgba(0,0,0,.54) !important;
    }

    .splash-badge-row {
      justify-content: center !important;
      gap: 12px !important;
      margin-bottom: clamp(12px, 2vh, 20px) !important;
    }

    .splash-badge {
      min-height: 42px !important;
      padding: 0 18px !important;
      color: #ffffff !important;
      background: rgba(3,12,32,.38) !important;
      border-color: rgba(255,255,255,.36) !important;
      box-shadow:
        inset 0 1px 0 rgba(255,255,255,.18),
        0 12px 30px rgba(0,0,0,.16) !important;
      backdrop-filter: blur(8px) saturate(145%) !important;
    }

    .splash-progress {
      height: 7px !important;
      margin-top: 0 !important;
      margin-bottom: clamp(10px, 1.8vh, 18px) !important;
      background: rgba(255,255,255,.34) !important;
      box-shadow:
        0 12px 34px rgba(0,0,0,.18),
        inset 0 1px 2px rgba(0,0,0,.16) !important;
    }

    .splash-action-row {
      margin-top: 0 !important;
    }

    .splash-action-button {
      min-height: 56px !important;
      padding: 0 48px !important;
      font-size: 14px !important;
      box-shadow:
        0 22px 54px rgba(0,0,0,.26),
        0 0 0 1px rgba(255,255,255,.36) inset !important;
    }

    .splash-foot {
      margin-top: clamp(4px, 1.2vh, 12px) !important;
      color: rgba(255,255,255,.62) !important;
      text-shadow: 0 3px 14px rgba(0,0,0,.52) !important;
    }

    @keyframes splashLogoRailFloat {
      from { transform: translateY(0); }
      to { transform: translateY(-5px); }
    }

    @media (max-width: 760px) {
      .splash-card {
        width: calc(100vw - 22px) !important;
        min-height: min(680px, calc(100vh - 22px)) !important;
        padding: 18px 14px 20px !important;
        border-width: 7px !important;
        border-radius: 32px !important;
      }

      .splash-card::after {
        inset: 7px !important;
        border-radius: 23px !important;
      }

      .splash-logos {
        width: 94% !important;
        min-height: 118px !important;
        padding: 10px 12px !important;
        gap: 8px !important;
        border-radius: 22px !important;
        margin-bottom: 18px !important;
      }

      #splash-logo-1,
      #splash-logo-2 {
        width: min(45vw, 260px) !important;
        height: 82px !important;
        max-height: 82px !important;
      }

      .splash-divider {
        height: 74px !important;
      }

      .splash-title {
        font-size: clamp(28px, 8vw, 42px) !important;
      }

      .splash-badge {
        min-height: 36px !important;
        padding: 0 12px !important;
        font-size: 9px !important;
      }

      .splash-action-button {
        min-height: 48px !important;
        padding: 0 28px !important;
        font-size: 12px !important;
      }
    }

  

    /* =========================
       REVISI TERARAH V15: PANEL LOGO SPLASH LEBIH JELAS
       Hanya mengubah background area logo agar logo colab dan logo bawah warna terbaca jelas.
    ========================= */
    .splash-logos {
      position: relative !important;
      overflow: hidden !important;
      background:
        linear-gradient(135deg, rgba(255,255,255,.93), rgba(246,251,255,.84) 46%, rgba(222,238,255,.78)) !important;
      border: 1px solid rgba(255,255,255,.88) !important;
      box-shadow:
        0 24px 68px rgba(3,12,32,.22),
        0 0 0 1px rgba(8,36,90,.08),
        inset 0 1px 0 rgba(255,255,255,.98),
        inset 0 -18px 46px rgba(47,140,255,.08) !important;
      backdrop-filter: blur(9px) saturate(150%) !important;
    }

    .splash-logos::before {
      content: "" !important;
      position: absolute !important;
      inset: 0 !important;
      z-index: 0 !important;
      background:
        radial-gradient(circle at 22% 22%, rgba(255,255,255,.74), transparent 30%),
        radial-gradient(circle at 80% 10%, rgba(103,232,249,.18), transparent 36%),
        linear-gradient(115deg, transparent 0 39%, rgba(255,255,255,.34) 49%, transparent 60% 100%) !important;
      transform: translateX(-130%);
      animation: splashLogoSweep 5.8s ease-in-out infinite !important;
      pointer-events: none !important;
    }

    .splash-logos::after {
      content: "";
      position: absolute;
      inset: 10px;
      z-index: 0;
      border-radius: 22px;
      border: 1px solid rgba(8,36,90,.08);
      background: linear-gradient(180deg, rgba(255,255,255,.36), rgba(255,255,255,.08));
      pointer-events: none;
    }

    .splash-logos > * {
      position: relative !important;
      z-index: 2 !important;
    }

    .splash-logos img {
      filter:
        drop-shadow(0 10px 18px rgba(8,36,90,.16))
        drop-shadow(0 1px 0 rgba(255,255,255,.52)) !important;
    }

    @media (max-width: 760px) {
      .splash-logos::after {
        inset: 7px;
        border-radius: 17px;
      }
    }

  

    /* =========================
       REVISI FINAL: BORDER NAVY & PANEL LOGO SPLASH AMAN
    ========================= */
    .splash-card {
      border: 12px solid rgba(6, 20, 47, .96) !important;
      outline: 1px solid rgba(141, 197, 255, .45) !important;
      outline-offset: -5px !important;
      box-shadow:
        0 52px 155px rgba(0,0,0,.52),
        0 0 0 2px rgba(255,255,255,.24),
        0 0 120px rgba(47,140,255,.24),
        inset 0 1px 0 rgba(255,255,255,.30) !important;
    }

    .splash-logos {
      position: relative !important;
      isolation: isolate !important;
      overflow: visible !important;
      width: min(1080px, 92%) !important;
      min-height: clamp(138px, 18vh, 168px) !important;
      padding: clamp(16px, 2vw, 24px) clamp(28px, 3.4vw, 44px) !important;
      border-radius: 24px !important;
      background:
        linear-gradient(135deg, rgba(255,255,255,.94), rgba(244,249,255,.86) 52%, rgba(226,240,255,.80)) !important;
      border: 1px solid rgba(255,255,255,.88) !important;
      box-shadow:
        0 20px 56px rgba(3,12,32,.20),
        0 0 0 1px rgba(8,36,90,.08),
        inset 0 1px 0 rgba(255,255,255,.96),
        inset 0 -14px 36px rgba(47,140,255,.07) !important;
      backdrop-filter: blur(7px) saturate(140%) !important;
    }

    .splash-logos::before {
      content: "" !important;
      position: absolute !important;
      inset: 3px !important;
      z-index: -1 !important;
      border-radius: 21px !important;
      background:
        radial-gradient(circle at 20% 20%, rgba(255,255,255,.70), transparent 28%),
        radial-gradient(circle at 82% 18%, rgba(103,232,249,.16), transparent 34%),
        linear-gradient(115deg, transparent 0 42%, rgba(255,255,255,.28) 50%, transparent 58% 100%) !important;
      pointer-events: none !important;
    }

    .splash-logos::after {
      content: "" !important;
      position: absolute !important;
      inset: 6px !important;
      z-index: 0 !important;
      border-radius: 18px !important;
      border: 1px solid rgba(8,36,90,.07) !important;
      background: transparent !important;
      pointer-events: none !important;
    }

    .splash-logos > * {
      position: relative !important;
      z-index: 3 !important;
    }

    .splash-logos img {
      position: relative !important;
      z-index: 4 !important;
      object-fit: contain !important;
      filter:
        drop-shadow(0 10px 18px rgba(8,36,90,.15))
        drop-shadow(0 1px 0 rgba(255,255,255,.55)) !important;
    }

    @media (max-width: 760px) {
      .splash-card {
        border-width: 8px !important;
        outline-offset: -4px !important;
      }

      .splash-logos {
        width: 94% !important;
        min-height: 120px !important;
        padding: 12px 14px !important;
        border-radius: 20px !important;
        overflow: visible !important;
      }

      .splash-logos::before {
        inset: 3px !important;
        border-radius: 17px !important;
      }

      .splash-logos::after {
        inset: 5px !important;
        border-radius: 15px !important;
      }
    }

  

    /* =========================
       REVISI FINAL V17: HOVER LOGO SPLASH TETAP RAPI DI DALAM PANEL
       Fokus: efek hover tidak keluar dari border putih dan ukuran logo tetap mudah disesuaikan.
    ========================= */
    .splash-logos {
      overflow: hidden !important;
      padding: clamp(18px, 2.1vw, 26px) clamp(30px, 3.2vw, 44px) !important;
    }

    .splash-logos img {
      transform-origin: center center !important;
      transition: transform .28s var(--ease), filter .28s ease !important;
    }

    .splash-logos img:hover {
      transform: translateY(-2px) scale(1.015) !important;
      filter:
        drop-shadow(0 12px 20px rgba(8,36,90,.18))
        drop-shadow(0 1px 0 rgba(255,255,255,.55)) !important;
    }

    #splash-logo-1 {
      width: min(380px, 42vw) !important;
      max-height: 108px !important;
    }

    #splash-logo-2 {
      width: min(300px, 34vw) !important;
      max-height: 108px !important;
    }

    @media (max-width: 760px) {
      .splash-logos {
        padding: 14px 16px !important;
      }

      #splash-logo-1 {
        width: 48vw !important;
        max-height: 82px !important;
      }

      #splash-logo-2 {
        width: 38vw !important;
        max-height: 82px !important;
      }

      .splash-logos img:hover {
        transform: translateY(-1px) scale(1.01) !important;
      }
    }