    @font-face {
      font-family: 'Qurova';
      src: url('assets/fonts/Qurova-Medium.otf') format('opentype');
      font-weight: 500;
      font-style: normal;
      font-display: swap;
      /* Restrict to letters used in wordmark. avoids demo watermark on digits */
      unicode-range: U+0041-005A, U+0061-007A;
    }
    /* ===== Tokens (mirror of design system) ================================== */
    :root {
      --bg-primary: #0A0A0A;
      --bg-deep: #050505;
      --bg-navy: #0F1C35;

      --glass-low: rgba(255, 255, 255, 0.05);
      --glass-mid: rgba(255, 255, 255, 0.07);
      --glass-high: rgba(255, 255, 255, 0.10);
      --glass-border: rgba(255, 255, 255, 0.12);
      --glass-border-strong: rgba(255, 255, 255, 0.18);
      --glass-divider: rgba(255, 255, 255, 0.08);

      --amber: #F5A300;
      --amber-alt: #FFBA03;
      --amber-deep: #CC8800;
      --amber-glow: rgba(245, 163, 0, 0.25);

      --text-primary: #FFFFFF;
      --text-secondary: #E3E3E3;
      --text-muted: rgba(255, 255, 255, 0.45);
      --text-on-amber: #0A0A0A;

      --font-wordmark: 'Qurova', 'Bricolage Grotesque', 'Montserrat', system-ui, sans-serif;
      --font-ui: 'Montserrat', system-ui, -apple-system, sans-serif;
      --font-numeral: 'Montserrat', system-ui, sans-serif;

      --r-sm: 8px;
      --r-md: 12px;
      --r-lg: 16px;
      --r-xl: 24px;
      --r-pill: 9999px;

      --shadow-amber: 0 8px 24px rgba(245, 163, 0, 0.28);
      --shadow-card: 0 8px 24px rgba(0, 0, 0, 0.35);
      --shadow-amber-strong: 0 14px 30px rgba(245, 163, 0, 0.4), 0 6px 12px rgba(245, 163, 0, 0.25);

      --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
      --ease-spring: cubic-bezier(0.2, 0.9, 0.15, 1);
    }

    /* ===== Reset / base ===================================================== */
    *,
    *::before,
    *::after {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    html,
    body {
      margin: 0;
      padding: 0;
      background: var(--bg-primary);
      color: var(--text-primary);
      font-family: var(--font-ui);
      font-weight: 400;
      font-size: 15px;
      line-height: 1.5;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      overflow-x: hidden;
    }

    body {
      -ms-overflow-style: none;
      scrollbar-width: none;
    }

    body::-webkit-scrollbar,
    html::-webkit-scrollbar {
      display: none;
    }

    ::selection {
      background: var(--amber-glow);
      color: #fff;
    }

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

    button {
      font-family: inherit;
      cursor: pointer;
    }

    img,
    svg {
      display: block;
      max-width: 100%;
    }

    h1,
    h2,
    h3,
    h4 {
      font-family: var(--font-ui);
      font-weight: 700;
      letter-spacing: -0.02em;
      line-height: 1.1;
      margin: 0;
      color: var(--text-primary);
    }

    p {
      margin: 0;
      color: var(--text-secondary);
    }

    .wordmark {
      font-family: var(--font-wordmark);
      font-weight: 500;
      letter-spacing: -0.04em;
      line-height: 1;
    }

    /* ===== Cursor =========================================================== */
    .cursor-dot {
      position: fixed;
      top: 0;
      left: 0;
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--amber);
      pointer-events: none;
      z-index: 9999;
      transform: translate(-50%, -50%);
      mix-blend-mode: screen;
      box-shadow: 0 0 12px rgba(245, 163, 0, 0.6);
    }

    .cursor-ring {
      position: fixed;
      top: 0;
      left: 0;
      width: 36px;
      height: 36px;
      border-radius: 50%;
      border: 1px solid rgba(245, 163, 0, 0.5);
      pointer-events: none;
      z-index: 9998;
      transform: translate(-50%, -50%);
      transition: width 0.25s ease, height 0.25s ease, border-color 0.25s ease, background 0.25s ease;
    }

    .cursor-ring.is-hot {
      width: 56px;
      height: 56px;
      border-color: var(--amber);
      background: rgba(245, 163, 0, 0.05);
    }

    .cursor-trail {
      position: fixed;
      top: 0;
      left: 0;
      width: 4px;
      height: 4px;
      border-radius: 50%;
      background: var(--amber);
      pointer-events: none;
      z-index: 9997;
      transform: translate(-50%, -50%);
      box-shadow: 0 0 8px rgba(245, 163, 0, 0.5);
    }

    @media (hover: none) {

      .cursor-dot,
      .cursor-ring,
      .cursor-trail {
        display: none;
      }
    }


    /* ===== Zop peekers (random edge peeks) ================================== */
    .zop-peek {
      position: absolute;
      width: 80px;
      height: 80px;
      pointer-events: none;
      opacity: 0;
      z-index: 3;
    }

    .zop-peek.tl {
      top: -40px;
      left: 8%;
      transform: rotate(-25deg);
    }

    .zop-peek.tr {
      top: -40px;
      right: 8%;
      transform: rotate(20deg);
    }

    .zop-peek.bl {
      bottom: -40px;
      left: 12%;
      transform: rotate(-15deg);
    }

    .zop-peek.br {
      bottom: -40px;
      right: 12%;
      transform: rotate(15deg);
    }

    .zop-peek img {
      width: 100%;
      height: 100%;
      filter: drop-shadow(0 6px 14px rgba(245, 163, 0, 0.4));
    }

    /* ===== Background scenery (parallax layers) ============================ */
    .bg-layers {
      position: fixed;
      inset: 0;
      pointer-events: none;
      z-index: -1;
      overflow: hidden;
    }

    .bloom-tr {
      position: absolute;
      top: -20%;
      right: -20%;
      width: 100vmin;
      height: 100vmin;
      background: radial-gradient(circle, rgba(245, 163, 0, 0.18) 0%, transparent 60%);
      will-change: transform;
    }

    .bloom-bl {
      position: absolute;
      bottom: -25%;
      left: -20%;
      width: 90vmin;
      height: 90vmin;
      background: radial-gradient(circle, rgba(255, 186, 3, 0.10) 0%, transparent 65%);
      will-change: transform;
    }

    .grain {
      position: absolute;
      inset: 0;
      background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.6 0'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.5'/></svg>");
      opacity: 0.035;
      mix-blend-mode: screen;
    }

    /* ===== Top nav (sticky glass) =========================================== */
    .nav {
      position: fixed;
      top: 16px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 100;
      width: calc(100% - 32px);
      max-width: 1180px;
      padding: 10px 14px 10px 20px;
      border-radius: var(--r-pill);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      background: rgba(10, 10, 10, 0.55);
      border: 1px solid var(--glass-border);
      backdrop-filter: blur(28px) saturate(180%);
      -webkit-backdrop-filter: blur(28px) saturate(180%);
      box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 8px 32px rgba(0, 0, 0, 0.35);
      transition: top 0.4s var(--ease-out), background 0.3s var(--ease-out), transform 0.4s var(--ease-out), opacity 0.3s ease;
    }

    .nav.scrolled {
      top: 8px;
      background: rgba(10, 10, 10, 0.72);
    }


    .brand {
      display: flex;
      align-items: center;
      gap: 10px;
      font-family: var(--font-wordmark);
      font-size: 22px;
      font-weight: 500;
      letter-spacing: -0.04em;
      color: var(--text-primary);
    }

    .brand-wm .m { color: var(--amber); }
    .preloader-word .m { color: var(--amber); }

    /* ===== Launch popup (Gurugram modal) ================================ */
    .launch-modal {
      position: fixed;
      inset: 0;
      z-index: 9000;
      display: grid;
      place-items: center;
      padding: 24px;
      background: rgba(0,0,0,0.72);
      backdrop-filter: blur(16px) saturate(140%);
      -webkit-backdrop-filter: blur(16px) saturate(140%);
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.4s var(--ease-out);
    }
    .launch-modal.open {
      opacity: 1;
      pointer-events: auto;
    }
    .launch-modal::before {
      content: "";
      position: absolute; inset: 0;
      background:
        radial-gradient(60% 40% at 50% 50%, rgba(245,163,0,0.18) 0%, transparent 60%),
        radial-gradient(40% 30% at 20% 80%, rgba(255,186,3,0.10) 0%, transparent 60%);
      pointer-events: none;
    }
    .launch-close {
      position: absolute;
      top: 16px; right: 16px;
      width: 40px; height: 40px;
      border-radius: 50%;
      background: rgba(255,255,255,0.06);
      border: 1px solid var(--glass-border);
      color: var(--text-primary);
      display: grid; place-items: center;
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      transition: background 0.2s ease, transform 0.2s var(--ease-spring);
      z-index: 5;
    }
    .launch-close:hover { background: rgba(245,163,0,0.18); transform: rotate(90deg); }
    .launch-card {
      position: relative; z-index: 2;
      max-width: 720px; width: 100%;
      max-height: calc(100vh - 48px);
      overflow: auto;
      padding: 56px 44px;
      border-radius: 28px;
      transform: scale(0.94) translateY(20px);
      transition: transform 0.5s var(--ease-spring);
      background: linear-gradient(180deg, rgba(255,255,255,0.07) 0%, rgba(255,255,255,0.03) 100%);
      box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.14),
        inset 0 0 0 0.5px rgba(255,255,255,0.10),
        0 30px 80px rgba(0,0,0,0.5);
      backdrop-filter: blur(28px) saturate(180%);
      -webkit-backdrop-filter: blur(28px) saturate(180%);
      text-align: center;
      overflow: hidden;
    }
    .launch-pin {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 10px 18px;
      border-radius: var(--r-pill);
      background: rgba(245,163,0,0.10);
      border: 1px solid rgba(245,163,0,0.35);
      color: var(--amber);
      font-size: 11px; font-weight: 800;
      letter-spacing: 0.16em; text-transform: uppercase;
      margin-bottom: 28px;
    }
    .launch-heading {
      font-family: var(--font-wordmark);
      font-size: clamp(48px, 8vw, 96px);
      font-weight: 500;
      letter-spacing: -0.04em;
      line-height: 0.96;
      color: var(--text-primary);
      margin: 0 0 20px;
    }
    .launch-heading .city { color: var(--amber); }
    .launch-heading .zops { font-family: var(--font-wordmark); }
    .launch-sub {
      font-size: 17px;
      color: var(--text-muted);
      max-width: 580px; margin: 0 auto 36px;
      line-height: 1.55;
    }
    .launch-meta {
      display: flex; gap: 24px; flex-wrap: wrap; justify-content: center;
      margin-bottom: 36px;
    }
    .launch-meta .chip {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 10px 16px; border-radius: var(--r-pill);
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.10);
      color: var(--text-secondary);
      font-size: 13px; font-weight: 600;
    }
    .launch-meta .chip b { color: var(--text-primary); font-weight: 800; margin-right: 4px; }
    .launch-meta .chip svg { color: var(--amber); }
    .launch-cta {
      display: inline-flex; align-items: center; gap: 10px;
      height: 56px; padding: 0 32px;
      background: var(--amber);
      color: var(--text-on-amber);
      border-radius: var(--r-pill);
      font-size: 14px; font-weight: 800;
      letter-spacing: 0.04em; text-transform: uppercase;
      box-shadow: var(--shadow-amber-strong);
      transition: transform 0.2s var(--ease-spring), background 0.2s ease;
    }
    .launch-cta:hover { transform: translateY(-2px) scale(1.03); background: var(--amber-alt); }

    .launch-zop {
      position: absolute;
      width: 92px; height: 92px;
      filter: drop-shadow(0 12px 24px rgba(245,163,0,0.45));
      pointer-events: none;
      z-index: 3;
    }
    .launch-zop.left { top: -34px; left: -18px; transform: rotate(-18deg); }
    .launch-zop.right { bottom: -34px; right: -18px; transform: rotate(20deg); }
    .launch-modal.open .launch-card { transform: scale(1) translateY(0); }

    /* Map-grid backdrop */
    .launch-grid-bg {
      position: absolute; inset: 0;
      pointer-events: none;
      opacity: 0.18;
      background-image:
        linear-gradient(rgba(245,163,0,0.18) 1px, transparent 1px),
        linear-gradient(90deg, rgba(245,163,0,0.18) 1px, transparent 1px);
      background-size: 48px 48px;
      mask-image: radial-gradient(ellipse 60% 50% at 50% 50%, #000 0%, transparent 70%);
      -webkit-mask-image: radial-gradient(ellipse 60% 50% at 50% 50%, #000 0%, transparent 70%);
    }

    @media (max-width: 720px) {
      .launch-card { padding: 44px 22px; border-radius: 22px; }
      .launch-zop { width: 68px; height: 68px; }
      .launch-zop.left { top: -22px; left: -10px; }
      .launch-zop.right { bottom: -22px; right: -10px; }
    }

    .brand .glyph {
      width: 26px;
      height: 26px;
      filter: drop-shadow(0 0 8px rgba(245, 163, 0, 0.5));
    }

    .nav-links {
      display: flex;
      gap: 4px;
      background: rgba(255, 255, 255, 0.04);
      border-radius: var(--r-pill);
      padding: 4px;
      border: 1px solid var(--glass-border);
    }

    .nav-links a {
      padding: 8px 16px;
      border-radius: var(--r-pill);
      font-size: 13px;
      font-weight: 600;
      color: var(--text-muted);
      transition: color 0.2s ease, background 0.2s ease;
    }

    .nav-links a:hover {
      color: var(--text-primary);
      background: rgba(255, 255, 255, 0.06);
    }

    .nav-links a.active {
      color: var(--amber);
    }

    .nav-cta {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      height: 40px;
      padding: 0 18px;
      background: var(--amber);
      color: var(--text-on-amber);
      border: none;
      border-radius: var(--r-pill);
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.02em;
      box-shadow: var(--shadow-amber);
      transition: transform 0.2s var(--ease-spring), background 0.2s ease;
    }

    .nav-cta {
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transition: opacity 0.35s var(--ease-out), visibility 0.35s;
    }
    .nav-cta.is-on {
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
    }
    .nav-cta:hover {
      transform: translateY(-1px) scale(1.02);
      background: var(--amber-alt);
    }

    .nav-burger {
      display: none;
      width: 36px; height: 36px;
      padding: 0;
      background: rgba(255,255,255,0.04);
      border: 1px solid var(--glass-border);
      border-radius: 50%;
      align-items: center; justify-content: center;
      flex-direction: column;
      gap: 4px;
      transition: background 0.2s ease;
    }
    .nav-burger:hover { background: rgba(255,255,255,0.08); }
    .nav-burger span {
      display: block;
      width: 14px; height: 1.5px;
      background: var(--text-primary);
      border-radius: 1px;
      transition: transform 0.25s var(--ease-out), opacity 0.2s ease;
    }
    .nav.menu-open .nav-burger span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
    .nav.menu-open .nav-burger span:nth-child(2) { opacity: 0; transform: scaleX(0); }
    .nav.menu-open .nav-burger span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

    @media (max-width: 880px) {
      .nav-burger { display: inline-flex; }
      .nav-links {
        position: absolute;
        top: calc(100% + 10px); left: 0; right: 0;
        flex-direction: column;
        padding: 10px;
        border-radius: 22px;
        background: rgba(10,10,10,0.85);
        border: 1px solid var(--glass-border);
        backdrop-filter: blur(28px) saturate(180%);
        -webkit-backdrop-filter: blur(28px) saturate(180%);
        box-shadow: 0 24px 60px rgba(0,0,0,0.5);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-8px);
        transition: opacity 0.25s ease, transform 0.25s var(--ease-out), visibility 0.25s;
      }
      .nav-links a {
        text-align: center;
        padding: 12px 16px;
        font-size: 14px;
      }
      .nav.menu-open .nav-links {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
      }
    }

    @media (max-width: 540px) {
      .nav {
        padding: 8px 8px 8px 16px;
      }

      .brand {
        font-size: 18px;
      }

      .brand .glyph {
        width: 22px;
        height: 22px;
      }

      .nav-cta {
        height: 36px;
        padding: 0 14px;
        font-size: 12px;
      }
    }

    /* ===== Container ======================================================== */
    .container {
      width: 100%;
      max-width: 1180px;
      margin: 0 auto;
      padding: 0 24px;
    }

    .container-narrow {
      max-width: 980px;
    }

    /* ===== Hero ============================================================= */
    .hero {
      position: relative;
      min-height: 100svh;
      padding: 140px 0 80px;
      display: flex;
      align-items: center;
      overflow: hidden;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1.15fr 1fr;
      gap: 48px;
      align-items: center;
    }

    .hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 14px;
      border-radius: var(--r-pill);
      background: rgba(245, 163, 0, 0.10);
      border: 1px solid rgba(245, 163, 0, 0.30);
      color: var(--amber);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.10em;
      text-transform: uppercase;
      margin-bottom: 24px;
    }

    .hero-eyebrow .ping {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--amber);
      box-shadow: 0 0 8px var(--amber);
      animation: pulse 1.6s ease-in-out infinite;
    }

    @keyframes pulse {

      0%,
      100% {
        opacity: 1;
      }

      50% {
        opacity: 0.3;
      }
    }

    .hero-title {
      font-family: var(--font-wordmark);
      font-size: clamp(56px, 8vw, 110px);
      font-weight: 500;
      letter-spacing: -0.045em;
      line-height: 0.96;
      margin: 0 0 20px;
    }

    .hero-title .accent {
      color: var(--amber);
    }

    .hero-title .stroke {
      color: transparent;
      -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.5);
      font-style: italic;
      font-weight: 700;
    }

    .hero-sub {
      font-size: 17px;
      line-height: 1.55;
      color: var(--text-muted);
      max-width: 480px;
      margin-bottom: 32px;
    }

    .hero-ctas {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      align-items: center;
    }

    .btn-primary {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      height: 52px;
      padding: 0 28px;
      background: var(--amber);
      color: var(--text-on-amber);
      border: none;
      border-radius: var(--r-pill);
      font-size: 14px;
      font-weight: 700;
      letter-spacing: 0.02em;
      box-shadow: var(--shadow-amber-strong);
      transition: transform 0.2s var(--ease-spring), background 0.2s ease;
    }

    .btn-primary:hover {
      transform: translateY(-2px) scale(1.02);
      background: var(--amber-alt);
    }

    .btn-ghost {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      height: 52px;
      padding: 0 22px;
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid var(--glass-border);
      color: var(--text-primary);
      border-radius: var(--r-pill);
      font-size: 14px;
      font-weight: 600;
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      transition: background 0.2s ease, border-color 0.2s ease;
    }

    .btn-ghost:hover {
      background: rgba(255, 255, 255, 0.07);
      border-color: var(--glass-border-strong);
    }

    .btn-ghost .play {
      width: 22px;
      height: 22px;
      border-radius: 50%;
      background: var(--amber);
      color: var(--text-on-amber);
      display: grid;
      place-items: center;
      font-size: 9px;
    }

    .hero-meta {
      margin-top: 28px;
      display: flex;
      gap: 18px;
      flex-wrap: wrap;
      color: var(--text-muted);
      font-size: 12px;
    }

    .hero-meta b {
      color: var(--text-primary);
      font-weight: 700;
    }

    .hero-meta .sep {
      opacity: 0.3;
    }

    /* Phone mockup (right column) */
    .phone-mockup {
      position: relative;
      width: 360px;
      height: 760px;
      margin: 0 auto;
      border-radius: 50px;
      background: #000;
      box-shadow:
        0 0 0 9px #0D0D0E,
        0 0 0 10px #1F1F22,
        0 40px 80px rgba(0, 0, 0, 0.6),
        0 20px 40px rgba(245, 163, 0, 0.10);
      overflow: hidden;
      will-change: transform;
    }

    .phone-mockup::before {
      content: "";
      position: absolute;
      top: 12px;
      left: 50%;
      transform: translateX(-50%);
      width: 110px;
      height: 30px;
      background: #000;
      border-radius: 22px;
      z-index: 5;
    }

    .phone-screen {
      position: absolute;
      inset: 0;
      background: #0A0A0A;
      overflow: hidden;
    }

    .phone-screen::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(80% 50% at 100% -10%, rgba(245, 163, 0, 0.20) 0%, transparent 55%),
        radial-gradient(70% 50% at -10% 8%, rgba(255, 255, 255, 0.04) 0%, transparent 55%);
      pointer-events: none;
    }

    .phone-content {
      position: absolute;
      inset: 50px 0 0;
      padding: 0 0 90px;
      overflow: hidden;
    }

    /* Section header inside phone */
    .ph-sec-head {
      display: flex; align-items: baseline; justify-content: space-between;
      padding: 10px 20px 4px;
    }
    .ph-sec-title { font-size: 14px; font-weight: 700; letter-spacing: -0.01em; }
    .ph-sec-link { font-size: 11px; font-weight: 700; color: var(--amber); }

    /* Popular services 2-col mini grid */
    .ph-services {
      display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
      padding: 12px 16px 0;
    }
    .ph-svc {
      border-radius: 14px;
      padding: 8px;
      position: relative; overflow: hidden;
      background: linear-gradient(180deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.025) 100%);
      box-shadow: inset 0 1px 0 rgba(255,255,255,0.12), inset 0 0 0 0.5px rgba(255,255,255,0.07);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
    }
    .ph-svc .ph-svc-thumb {
      position: relative; isolation: isolate;
      height: 56px; border-radius: 10px;
      overflow: hidden;
      display: grid; place-items: center;
    }
    .ph-svc .ph-svc-thumb::before {
      content: ""; position: absolute; inset: 0;
      background:
        radial-gradient(120% 90% at 50% 18%, rgba(255,255,255,0.10) 0%, rgba(255,255,255,0) 60%),
        radial-gradient(80% 60% at 50% 110%, rgba(245,163,0,0.18) 0%, rgba(245,163,0,0) 70%),
        linear-gradient(180deg, #1A1A1C 0%, #0F0F11 100%);
      box-shadow: inset 0 0 0 0.5px rgba(255,255,255,0.06);
      z-index: 0;
    }
    .ph-svc img { position: relative; z-index: 1; width: 70%; height: 70%; object-fit: contain; }
    .ph-svc .ph-svc-add {
      position: absolute; bottom: 6px; right: 6px;
      width: 22px; height: 22px; border-radius: 50%;
      background: #0D0D0F; color: var(--amber);
      display: grid; place-items: center;
      font-size: 12px; font-weight: 800;
      border: 1px solid rgba(255,255,255,0.1);
      z-index: 2;
    }
    .ph-svc .ph-svc-name { font-size: 11px; font-weight: 700; margin-top: 6px; letter-spacing: -0.01em; }
    .ph-svc .ph-svc-price { font-size: 11px; font-weight: 700; margin-top: 2px; display: flex; align-items: baseline; gap: 4px; }
    .ph-svc-time { font-size: 9.5px; font-weight: 500; opacity: 0.55; }

    /* Stepper for "added" state on Sweeping card */
    .ph-svc-stepper {
      position: absolute; bottom: 6px; right: 6px;
      display: inline-flex; align-items: center;
      height: 22px;
      padding: 0 4px;
      gap: 6px;
      border-radius: 11px;
      background: var(--amber);
      color: #0D0D0F;
      box-shadow: 0 2px 6px rgba(245,163,0,0.45), 0 0 0 1px rgba(0,0,0,0.18) inset;
      z-index: 2;
    }
    .ph-svc-stepper .step-btn {
      width: 16px; height: 16px;
      border: none; padding: 0;
      background: transparent;
      color: #0D0D0F;
      font-size: 13px; font-weight: 800;
      line-height: 1;
      cursor: pointer;
      display: grid; place-items: center;
    }
    .ph-svc-stepper .step-qty {
      font-size: 11px; font-weight: 800;
      letter-spacing: -0.01em;
      min-width: 8px; text-align: center;
    }
    .ph-svc.is-added { box-shadow: inset 0 1px 0 rgba(255,255,255,0.16), inset 0 0 0 1px rgba(245,163,0,0.32), 0 0 18px rgba(245,163,0,0.12); }
    .ph-svc .ph-svc-mrp { font-size: 9px; font-weight: 500; text-decoration: line-through; color: rgba(255,255,255,0.4); }

    /* Schedule strip */
    .ph-schedule {
      margin: 12px 16px 0; padding: 10px 12px;
      border-radius: 12px;
      display: flex; align-items: center; gap: 10px;
      background: linear-gradient(180deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.025) 100%);
      box-shadow: inset 0 1px 0 rgba(255,255,255,0.12), inset 0 0 0 0.5px rgba(255,255,255,0.07);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
    }
    .ph-schedule .ico {
      width: 32px; height: 32px; border-radius: 10px;
      background: rgba(245,163,0,0.12);
      display: grid; place-items: center;
      font-size: 14px;
    }
    .ph-schedule .title { font-size: 12px; font-weight: 700; letter-spacing: -0.01em; }
    .ph-schedule .sub { font-size: 10px; color: rgba(255,255,255,0.5); margin-top: 1px; }
    .ph-schedule .chev { margin-left: auto; opacity: 0.4; font-size: 16px; font-weight: 500; }

    /* Floating cart dock */
    .ph-cart-dock {
      position: absolute; left: 14px; right: 14px; bottom: 100px;
      height: 50px; border-radius: 14px;
      background: linear-gradient(135deg, #F5A300 0%, #E88F00 100%);
      box-shadow: 0 1px 0 rgba(255,255,255,0.4) inset, 0 -1px 0 rgba(0,0,0,0.15) inset, 0 12px 24px rgba(245,163,0,0.4);
      display: flex; align-items: center; gap: 10px; padding: 0 14px;
      z-index: 25;
    }
    .ph-cart-dock .badge {
      width: 26px; height: 26px; border-radius: 8px;
      background: #0D0D0F; color: var(--amber);
      display: grid; place-items: center;
      font-weight: 800; font-size: 12px;
    }
    .ph-cart-dock .info { flex: 1; color: #0D0D0F; line-height: 1.2; }
    .ph-cart-dock .info b { display: block; font-weight: 800; font-size: 12px; letter-spacing: -0.01em; }
    .ph-cart-dock .info span { font-size: 10px; opacity: 0.7; }
    .ph-cart-dock .cta { display: flex; align-items: center; gap: 4px; font-size: 11px; font-weight: 800; color: #0D0D0F; }

    .ph-topbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 10px 18px 14px;
    }

    .ph-loc-kicker {
      display: flex;
      align-items: center;
      gap: 4px;
      font-size: 10px;
      font-weight: 700;
      color: var(--amber);
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .ph-loc-name {
      font-size: 16px;
      font-weight: 700;
      letter-spacing: -0.02em;
      margin-top: 2px;
    }

    .ph-loc-name .chev {
      color: rgba(255, 255, 255, 0.5);
      margin-left: 2px;
      font-weight: 500;
    }

    .ph-actions {
      display: flex;
      gap: 6px;
      align-items: center;
    }

    .ph-pill {
      height: 30px;
      padding: 0 10px;
      border-radius: var(--r-pill);
      display: inline-flex;
      align-items: center;
      gap: 5px;
      font-size: 11px;
      font-weight: 700;
      background: rgba(245, 163, 0, 0.12);
      border: 1px solid rgba(245, 163, 0, 0.3);
      color: var(--amber);
    }

    .ph-avatar {
      width: 30px;
      height: 30px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--amber), var(--amber-alt));
      color: #0D0D0F;
      font-weight: 800;
      font-size: 11px;
      display: grid;
      place-items: center;
      box-shadow: 0 4px 12px rgba(245, 163, 0, 0.35);
    }

    .ph-hero {
      margin: 4px 16px 0;
      border-radius: 22px;
      padding: 18px 16px 16px;
      position: relative;
      overflow: hidden;
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.085) 0%, rgba(255, 255, 255, 0.04) 100%);
      box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.22),
        inset 0 0 0 0.5px rgba(255, 255, 255, 0.12),
        0 20px 50px rgba(0, 0, 0, 0.45);
      backdrop-filter: blur(24px) saturate(180%);
      -webkit-backdrop-filter: blur(24px) saturate(180%);
    }

    .ph-hero-zop {
      position: absolute;
      top: -10px;
      right: -16px;
      width: 110px;
      height: 110px;
      transform: rotate(-12deg);
      filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
      will-change: transform;
    }

    .ph-hero-kicker {
      font-size: 10px;
      font-weight: 700;
      color: var(--amber);
      letter-spacing: 0.10em;
      text-transform: uppercase;
    }

    .ph-hero-title {
      font-size: 22px;
      font-weight: 700;
      letter-spacing: -0.02em;
      line-height: 1.1;
      margin-top: 4px;
      max-width: 200px;
    }

    .ph-search {
      margin-top: 14px;
      height: 44px;
      border-radius: 14px;
      padding: 0 12px;
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 12px;
      background: rgba(0, 0, 0, 0.28);
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), inset 0 0 0 0.5px rgba(255, 255, 255, 0.08);
      color: rgba(255, 255, 255, 0.55);
    }

    .ph-live {
      margin: 12px 16px 0;
      padding: 8px 12px;
      border-radius: 10px;
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 11px;
      color: var(--text-secondary);
      background: rgba(255, 255, 255, 0.05);
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.10);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
    }

    .ph-live .dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: #22C55E;
      box-shadow: 0 0 8px rgba(34, 197, 94, 0.8);
      animation: pulse 1.6s ease-in-out infinite;
    }

    .ph-live .sep {
      opacity: 0.3;
    }

    .ph-live b {
      font-weight: 700;
    }

    .ph-live-text {
      white-space: nowrap;
      letter-spacing: -0.01em;
    }

    /* "Book in 30 seconds" rail — replicates app UsualsRow.
       Pinned "Book Instantly" bolt card on left, pedestal-glow icon shelf scrolls behind. */
    .ph-rail-wrap {
      position: relative;
      margin-top: -8px;
      height: 116px;
      overflow: hidden;
    }
    .ph-presets {
      display: flex;
      gap: 10px;
      padding: 6px 16px 0 16px;
      align-items: flex-start;
      width: max-content;
      will-change: transform;
    }

    .ph-preset {
      flex: 0 0 80px;
      min-width: 80px;
      width: 80px;
      display: flex; flex-direction: column; align-items: center;
      padding: 4px 0;
      position: relative;
      background: transparent;
      border: none;
      box-shadow: none;
    }
    .ph-preset .ico {
      width: 76px;
      height: 76px;
      position: relative;
      display: grid;
      place-items: center;
      background: transparent;
      border-radius: 0;
      font-size: 32px;
      overflow: visible;
    }
    .ph-preset .ico::before {
      /* Subtle amber pedestal glow under each icon */
      content: "";
      position: absolute;
      left: 50%; bottom: 0;
      width: 110px; height: 50px;
      transform: translateX(-50%);
      background: radial-gradient(ellipse 50% 40% at 50% 60%,
        rgba(245,163,0,0.32) 0%,
        rgba(245,163,0,0.12) 50%,
        rgba(245,163,0,0) 100%);
      pointer-events: none;
      z-index: 0;
      filter: blur(6px);
    }
    .ph-preset .ico img,
    .ph-preset .ico .emoji {
      position: relative;
      z-index: 1;
      width: 54px; height: 54px;
      object-fit: contain;
      filter: drop-shadow(0 2px 4px rgba(0,0,0,0.4)) drop-shadow(0 6px 12px rgba(0,0,0,0.3));
    }
    .ph-preset .ico .emoji {
      display: grid; place-items: center;
      font-size: 36px;
      filter: drop-shadow(0 2px 4px rgba(0,0,0,0.4));
    }
    .ph-preset .lbl {
      font-size: 11px;
      font-weight: 800;
      letter-spacing: -0.01em;
      color: #fff;
      text-align: center;
      line-height: 1.2;
      margin-top: -2px;
      max-width: 80px;
    }
    .ph-preset .sub { display: none; }

    /* Pinned "Book Instantly" card — fits within the preset row height */
    .ph-pin {
      position: absolute;
      left: 12px; top: 6px;
      width: 96px;
      display: flex; flex-direction: column; align-items: center;
      padding: 0;
      z-index: 5;
      pointer-events: none;
    }
    .ph-pin .bolt {
      width: 76px; height: 76px;
      position: relative;
      display: grid; place-items: center;
      overflow: visible;
    }
    .ph-pin .bolt img {
      width: 60px; height: 60px;
      object-fit: contain;
      transform: scale(2.6);
      filter: drop-shadow(0 6px 14px rgba(245,163,0,0.6)) drop-shadow(0 14px 30px rgba(245,163,0,0.4));
    }
    .ph-pin .pin-label {
      font-size: 10px;
      font-weight: 800;
      letter-spacing: -0.02em;
      color: var(--amber);
      text-align: center;
      line-height: 1.1;
      margin-top: 6px;
      white-space: nowrap;
    }
    /* Fade-out gradient over the rail's left edge so cards visually slide under the pinned bolt */
    .ph-rail-fade {
      position: absolute;
      left: 0; top: 0;
      width: 130px; height: 100%;
      background: linear-gradient(90deg, #0A0A0A 0%, #0A0A0A 55%, rgba(10,10,10,0.7) 80%, transparent 100%);
      pointer-events: none;
      z-index: 4;
    }

    .ph-preset .sub {
      font-size: 9.5px;
      color: rgba(255, 255, 255, 0.5);
      margin-top: 2px;
    }

    .ph-tabbar {
      position: absolute;
      bottom: 14px;
      left: 14px;
      right: 14px;
      height: 58px;
      border-radius: 28px;
      background: linear-gradient(135deg, #1F1F24 0%, #0F0F12 100%);
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 12px 30px rgba(0, 0, 0, 0.5);
      border: 1px solid rgba(255, 255, 255, 0.08);
      display: flex;
      align-items: center;
      justify-content: space-around;
      padding: 0 12px;
    }

    .ph-tab {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 2px;
      color: rgba(255, 255, 255, 0.55);
      font-size: 9px;
      font-weight: 700;
    }

    .ph-tab.active {
      color: var(--amber);
    }

    .ph-tab svg {
      width: 18px;
      height: 18px;
    }

    .ph-tab-zop {
      position: absolute;
      top: -22px;
      left: 50%;
      transform: translateX(-50%);
      width: 50px;
      height: 50px;
      filter: drop-shadow(0 6px 14px rgba(245, 163, 0, 0.45));
    }

    @media (max-width: 980px) {
      .hero-grid {
        grid-template-columns: 1fr;
        gap: 64px;
        text-align: left;
      }

      .phone-mockup {
        transform: scale(0.92);
      }
    }

    @media (max-width: 560px) {
      .hero {
        padding: 120px 0 60px;
      }

      .phone-mockup {
        width: 320px;
        height: 680px;
        transform: scale(0.95);
      }
    }

    /* ===== Section base ===================================================== */
    section {
      position: relative;
    }

    .section-pad {
      padding: 120px 0;
    }

    .section-kicker {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 11px;
      font-weight: 700;
      color: var(--amber);
      letter-spacing: 0.14em;
      text-transform: uppercase;
      margin-bottom: 18px;
    }

    .section-kicker::before {
      content: "";
      width: 24px;
      height: 1px;
      background: var(--amber);
    }

    .section-heading {
      font-size: clamp(32px, 4.6vw, 56px);
      font-weight: 700;
      letter-spacing: -0.025em;
      line-height: 1.05;
      max-width: 760px;
      margin-bottom: 18px;
    }

    .section-heading .accent {
      color: var(--amber);
    }

    .section-sub {
      font-size: 17px;
      color: var(--text-muted);
      max-width: 580px;
      margin-bottom: 56px;
      line-height: 1.6;
    }

    /* ===== Marquee band ===================================================== */
    .marquee {
      position: relative;
      padding: 32px 0;
      overflow: hidden;
      border-top: 1px solid var(--glass-divider);
      border-bottom: 1px solid var(--glass-divider);
      background: linear-gradient(180deg, rgba(245, 163, 0, 0.04), rgba(0, 0, 0, 0));
    }

    .marquee-track {
      display: flex;
      align-items: center;
      gap: 48px;
      white-space: nowrap;
      will-change: transform;
    }

    .marquee-item {
      font-family: var(--font-wordmark);
      font-size: clamp(48px, 8vw, 120px);
      font-weight: 700;
      letter-spacing: -0.04em;
      line-height: 1;
      color: transparent;
      -webkit-text-stroke: 1px rgba(255, 255, 255, 0.18);
      text-transform: lowercase;
      transition: -webkit-text-stroke 0.3s ease, color 0.3s ease;
    }

    .marquee-item.solid {
      color: var(--text-primary);
      -webkit-text-stroke: 0;
    }

    .marquee-item.amber {
      color: var(--amber);
      -webkit-text-stroke: 0;
    }

    .marquee-glyph {
      width: clamp(40px, 6vw, 80px);
      height: clamp(40px, 6vw, 80px);
      flex: 0 0 auto;
      filter: drop-shadow(0 0 18px rgba(245, 163, 0, 0.4));
      will-change: transform;
    }

    /* ===== Live ticker (between hero + features) ============================ */
    .ticker {
      border-top: 1px solid var(--glass-divider);
      border-bottom: 1px solid var(--glass-divider);
      padding: 22px 0;
      overflow: hidden;
      background: rgba(255, 255, 255, 0.02);
    }

    .ticker-track {
      display: flex;
      gap: 56px;
      white-space: nowrap;
      animation: tickerScroll 35s linear infinite;
    }

    .ticker-item {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      font-size: 14px;
      font-weight: 600;
      color: var(--text-muted);
    }

    .ticker-item b {
      color: var(--text-primary);
      font-weight: 700;
    }

    .ticker-item .star {
      color: var(--amber);
    }

    .ticker-item .glyph {
      width: 18px;
      height: 18px;
    }

    @keyframes tickerScroll {
      from {
        transform: translateX(0);
      }

      to {
        transform: translateX(-50%);
      }
    }

    /* ===== Services (phone-zoom → horizontal pin) =========================== */
    .services-section {
      padding: 140px 0 0;
    }

    .services-intro {
      padding-bottom: 80px;
    }

    .zoom-stage {
      position: relative;
      height: 100vh;
      overflow: hidden;
      background: #050505;
      display: grid;
      place-items: center;
    }

    .zoom-stage::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(80% 50% at 100% 0%, rgba(245, 163, 0, 0.10) 0%, transparent 55%),
        radial-gradient(70% 50% at 0% 100%, rgba(255, 186, 3, 0.06) 0%, transparent 55%);
      pointer-events: none;
    }

    .phone-window {
      position: relative;
      width: 380px;
      height: 780px;
      border-radius: 56px;
      background: #0A0A0A;
      overflow: hidden;
      box-shadow:
        0 0 0 10px #0D0D0E,
        0 0 0 11px #1F1F22,
        0 50px 100px rgba(0, 0, 0, 0.65),
        0 30px 60px rgba(245, 163, 0, 0.10);
      will-change: width, height, border-radius;
    }

    .phone-window-notch {
      position: absolute;
      top: 14px;
      left: 50%;
      transform: translateX(-50%);
      width: 110px;
      height: 32px;
      background: #000;
      border-radius: 22px;
      z-index: 20;
      will-change: opacity, transform;
    }

    .phone-window-status {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 50px;
      padding: 18px 30px 0;
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      font-size: 14px;
      font-weight: 700;
      color: #fff;
      z-index: 19;
      pointer-events: none;
      will-change: opacity;
    }

    .phone-window-status .ph-icons {
      display: flex;
      gap: 6px;
      align-items: center;
      opacity: 0.9;
    }

    .phone-window-rail {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
    }

    .h-scroll-rail {
      display: flex;
      gap: 24px;
      align-items: center;
      padding: 0 max(60px, 6vw);
      will-change: transform;
      height: 100%;
    }

    .h-scroll-rail .svc-card {
      flex: 0 0 320px;
      width: 320px;
      height: 460px;
      display: flex;
      flex-direction: column;
    }

    .rail-intro {
      flex: 0 0 280px;
      width: 280px;
      height: 460px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 12px;
      padding: 0 16px 0 0;
      margin-left: -40px;
      position: relative;
    }
    .rail-intro-kicker {
      display: inline-flex;
      align-self: flex-start;
      align-items: center; gap: 8px;
      padding: 8px 14px;
      border-radius: var(--r-pill);
      background: rgba(245,163,0,0.10);
      border: 1px solid rgba(245,163,0,0.32);
      color: var(--amber);
      font-size: 11px; font-weight: 800;
      letter-spacing: 0.16em; text-transform: uppercase;
    }
    .rail-intro-title {
      font-family: var(--font-wordmark);
      font-size: clamp(34px, 4vw, 54px);
      font-weight: 500;
      letter-spacing: -0.04em;
      line-height: 0.98;
      color: var(--text-primary);
      margin: 0;
    }
    .rail-intro-title .amber { color: var(--amber); }
    .rail-intro-sub {
      font-size: 14px;
      color: var(--text-muted);
      max-width: 320px;
      line-height: 1.5;
    }
    .rail-intro-arrow {
      position: absolute;
      bottom: 24px; right: 24px;
      width: 44px; height: 44px;
      border-radius: 50%;
      background: var(--amber);
      color: var(--text-on-amber);
      display: grid; place-items: center;
      font-size: 22px; font-weight: 800;
      box-shadow: var(--shadow-amber);
      animation: hintBounce 1.4s ease-in-out infinite;
    }
    @media (max-width: 720px) {
      .rail-intro { flex: 0 0 220px; width: 220px; height: 400px; margin-left: -32px; }
      .rail-intro-title { font-size: 30px; }
    }

    .h-scroll-rail .svc-thumb {
      height: 280px;
    }

    .h-scroll-rail .svc-name {
      font-size: 17px;
      margin-top: 16px;
    }

    .h-scroll-rail .svc-price {
      font-size: 16px;
      margin-top: 6px;
    }

    .h-scroll-rail .svc-img {
      width: 75%;
      height: 75%;
    }

    .h-progress {
      position: absolute;
      left: 5vw;
      right: 5vw;
      bottom: 28px;
      height: 2px;
      border-radius: 1px;
      background: rgba(255, 255, 255, 0.06);
      overflow: hidden;
      z-index: 25;
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .h-progress.show {
      opacity: 1;
    }

    .h-progress-fill {
      height: 100%;
      width: 0;
      background: var(--amber);
      box-shadow: 0 0 12px var(--amber);
      transition: width 0.05s linear;
    }

    .h-hint {
      position: absolute;
      left: 50%;
      bottom: 50px;
      transform: translateX(-50%);
      font-size: 11px;
      font-weight: 700;
      color: var(--text-muted);
      letter-spacing: 0.18em;
      text-transform: uppercase;
      display: flex;
      align-items: center;
      gap: 12px;
      pointer-events: none;
      z-index: 25;
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .h-hint.show {
      opacity: 1;
    }

    .h-hint .arrow {
      width: 18px;
      height: 18px;
      border-radius: 50%;
      background: var(--amber);
      color: var(--text-on-amber);
      display: grid;
      place-items: center;
      font-size: 11px;
      font-weight: 800;
      animation: hintBounce 1.4s ease-in-out infinite;
    }

    @keyframes hintBounce {

      0%,
      100% {
        transform: translateX(0);
      }

      50% {
        transform: translateX(4px);
      }
    }

    /* Floating "Keep scrolling" cue above phone during zoom phase */
    .zoom-cue {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, calc(-50% - 440px));
      padding: 10px 18px;
      border-radius: var(--r-pill);
      background: rgba(245, 163, 0, 0.10);
      border: 1px solid rgba(245, 163, 0, 0.35);
      color: var(--amber);
      font-size: 11px;
      font-weight: 800;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      z-index: 26;
      pointer-events: none;
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: opacity 0.3s ease;
    }

    .zoom-cue .dot {
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background: var(--amber);
      box-shadow: 0 0 6px var(--amber);
      animation: pulse 1.4s ease-in-out infinite;
    }

    /* End-card: "view all" */
    .svc-end {
      flex: 0 0 320px;
      width: 320px;
      height: 460px;
      border-radius: 20px;
      border: 1px dashed rgba(245, 163, 0, 0.4);
      background: radial-gradient(ellipse at center, rgba(245, 163, 0, 0.08), transparent 70%);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 18px;
      color: var(--amber);
      transition: transform 0.3s var(--ease-spring), background 0.3s ease;
      cursor: pointer;
    }

    .svc-end:hover {
      transform: scale(1.03);
      background: radial-gradient(ellipse at center, rgba(245, 163, 0, 0.18), transparent 70%);
    }

    .svc-end img {
      width: 80px;
      height: 80px;
    }

    .svc-end .lbl {
      font-size: 14px;
      font-weight: 800;
      letter-spacing: 0.04em;
      text-transform: uppercase;
    }

    .svc-end .sub {
      font-size: 13px;
      color: var(--text-muted);
      font-weight: 500;
      max-width: 220px;
      text-align: center;
      line-height: 1.5;
    }

    @media (max-width: 720px) {

      .h-scroll-rail .svc-card,
      .svc-end {
        flex: 0 0 260px;
        width: 260px;
        height: 400px;
      }

      .h-scroll-rail .svc-thumb {
        height: 220px;
      }

      .phone-window {
        width: 320px;
        height: 660px;
      }

      .zoom-cue { display: none; }
      .ticker-track { animation: tickerScroll 18s linear infinite; }
    }

    /* Legacy services-grid kept for fallback (unused now) */
    .services-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
    }

    .svc-card {
      border-radius: 20px;
      padding: 14px;
      position: relative;
      overflow: hidden;
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.025) 100%);
      box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.12),
        inset 0 0 0 0.5px rgba(255, 255, 255, 0.07);
      backdrop-filter: blur(16px) saturate(180%);
      -webkit-backdrop-filter: blur(16px) saturate(180%);
      transition: transform 0.25s var(--ease-spring), box-shadow 0.25s ease;
      will-change: transform;
    }

    .svc-card:hover {
      transform: translateY(-4px);
      box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.18),
        inset 0 0 0 0.5px rgba(255, 255, 255, 0.10),
        0 14px 30px rgba(0, 0, 0, 0.4),
        0 0 32px rgba(245, 163, 0, 0.12);
    }

    .svc-thumb {
      position: relative;
      isolation: isolate;
      height: 140px;
      border-radius: 14px;
      display: grid;
      place-items: center;
      overflow: hidden;
    }

    .svc-thumb::before {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: inherit;
      background:
        radial-gradient(120% 90% at 50% 18%, rgba(255, 255, 255, 0.10) 0%, rgba(255, 255, 255, 0) 60%),
        radial-gradient(80% 60% at 50% 110%, rgba(245, 163, 0, 0.18) 0%, rgba(245, 163, 0, 0) 70%),
        linear-gradient(180deg, #1A1A1C 0%, #0F0F11 100%);
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), inset 0 0 0 0.5px rgba(255, 255, 255, 0.06);
      z-index: 0;
    }

    .svc-thumb::after {
      content: "";
      position: absolute;
      left: 50%;
      top: 64%;
      width: 60%;
      height: 16%;
      transform: translate(-50%, -50%);
      border-radius: 50%;
      background: radial-gradient(ellipse at center, rgba(13, 13, 15, 0.30) 0%, rgba(13, 13, 15, 0) 70%);
      z-index: 1;
      filter: blur(2px);
    }

    .svc-img {
      position: relative;
      z-index: 2;
      width: 78%;
      height: 78%;
      object-fit: contain;
      filter:
        drop-shadow(0 1px 1px rgba(13, 13, 15, 0.18)) drop-shadow(0 8px 16px rgba(13, 13, 15, 0.28)) drop-shadow(0 18px 28px rgba(13, 13, 15, 0.18));
    }

    .svc-rating {
      position: absolute;
      top: 10px;
      left: 10px;
      z-index: 3;
      padding: 3px 8px;
      border-radius: var(--r-pill);
      background: rgba(255, 255, 255, 0.95);
      color: #0D0D0F;
      font-size: 10px;
      font-weight: 800;
      display: inline-flex;
      align-items: center;
      gap: 3px;
    }

    .svc-rating svg {
      color: var(--amber);
    }

    .svc-add {
      position: absolute;
      bottom: 10px;
      right: 10px;
      z-index: 3;
      width: 30px;
      height: 30px;
      border-radius: 50%;
      background: #0D0D0F;
      color: var(--amber);
      display: grid;
      place-items: center;
      font-size: 18px;
      font-weight: 700;
      border: 1px solid rgba(255, 255, 255, 0.1);
      transition: transform 0.18s var(--ease-spring), background 0.18s ease, color 0.18s ease;
    }

    .svc-card:hover .svc-add {
      background: var(--amber);
      color: #0D0D0F;
      transform: rotate(90deg) scale(1.1);
    }

    .svc-name {
      font-size: 14px;
      font-weight: 700;
      letter-spacing: -0.01em;
      margin-top: 12px;
    }

    .svc-price {
      display: flex;
      align-items: baseline;
      gap: 6px;
      margin-top: 4px;
      font-size: 14px;
      font-weight: 700;
    }

    .svc-mrp {
      font-size: 11px;
      font-weight: 500;
      text-decoration: line-through;
      color: rgba(255, 255, 255, 0.4);
    }

    .svc-time {
      font-size: 11px;
      font-weight: 500;
      opacity: 0.5;
      margin-left: auto;
    }

    @media (max-width: 980px) {
      .services-grid {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    @media (max-width: 720px) {
      .services-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 420px) {
      .services-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
      }
    }

    /* ===== Why grid (feature cards) ========================================= */
    .why-section {
      padding: 80px 0 120px;
    }

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

    .why-card {
      padding: 28px;
      border-radius: 20px;
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0.03) 100%);
      box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.12),
        inset 0 0 0 0.5px rgba(255, 255, 255, 0.07);
      backdrop-filter: blur(16px) saturate(180%);
      -webkit-backdrop-filter: blur(16px) saturate(180%);
      transition: transform 0.3s var(--ease-out), border-color 0.3s ease;
    }

    .why-card:hover {
      transform: translateY(-4px);
    }

    .why-icon {
      width: 48px;
      height: 48px;
      border-radius: 12px;
      background: rgba(245, 163, 0, 0.10);
      border: 1px solid rgba(245, 163, 0, 0.28);
      display: grid;
      place-items: center;
      color: var(--amber);
      margin-bottom: 20px;
    }

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

    .why-title {
      font-size: 18px;
      font-weight: 700;
      letter-spacing: -0.01em;
      margin-bottom: 8px;
    }

    .why-body {
      font-size: 14px;
      color: var(--text-muted);
      line-height: 1.6;
    }

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

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

    /* ===== Mascot / hype ==================================================== */
    .mascot-section {
      position: relative;
      padding: 180px 0;
      background: var(--bg-deep);
      overflow: hidden;
      text-align: center;
    }

    .mascot-section::before {
      content: "";
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 900px;
      height: 900px;
      background: radial-gradient(circle, rgba(245, 163, 0, 0.18) 0%, transparent 60%);
      pointer-events: none;
    }

    .mascot-stack {
      position: relative;
      z-index: 2;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .mascot-kicker { margin-bottom: 18px; gap: 0; }
    .mascot-kicker::before { display: none; }

    .zop-big {
      width: 280px;
      height: 280px;
      filter: drop-shadow(0 0 40px rgba(245, 163, 0, 0.55));
      margin-bottom: 56px;
      will-change: transform;
    }

    .mascot-caption {
      font-size: clamp(40px, 6vw, 76px);
      font-weight: 800;
      letter-spacing: -0.03em;
      line-height: 1.0;
      max-width: 880px;
      margin-bottom: 28px;
    }

    .mascot-caption .accent {
      color: var(--amber);
    }

    .mascot-caption .stroke {
      position: relative;
      display: inline-block;
      color: rgba(255, 255, 255, 0.92);
      font-style: italic;
      font-weight: 700;
      padding: 0 0.08em;
    }
    .mascot-caption .stroke::before {
      content: "";
      position: absolute;
      left: -0.06em; right: -0.06em;
      top: 12%; bottom: 16%;
      background: linear-gradient(120deg, rgba(245,163,0,0.28) 0%, rgba(245,163,0,0.12) 100%);
      border-radius: 6px;
      transform: skewX(-6deg) rotate(-1.5deg);
      z-index: -1;
      box-shadow: 0 0 24px rgba(245,163,0,0.20);
    }
    .mascot-caption .stroke::after {
      content: "";
      position: absolute;
      left: 0; right: 0; bottom: 4%;
      height: 6px;
      background:
        url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 80 6' preserveAspectRatio='none'><path d='M0 3 Q 10 0 20 3 T 40 3 T 60 3 T 80 3' stroke='%23F5A300' stroke-width='2' fill='none' stroke-linecap='round'/></svg>") repeat-x;
      background-size: 80px 6px;
    }

    .mascot-body {
      font-size: 18px;
      color: var(--text-muted);
      max-width: 560px;
      line-height: 1.6;
      margin-bottom: 64px;
    }

    .stats-row {
      display: flex;
      gap: 64px;
      flex-wrap: wrap;
      justify-content: center;
    }

    .stat-block {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      min-width: 140px;
    }

    .stat-number {
      font-size: 60px;
      font-weight: 800;
      color: var(--amber);
      letter-spacing: -0.04em;
      line-height: 1;
      font-variant-numeric: tabular-nums;
    }

    .stat-label {
      font-size: 12px;
      font-weight: 700;
      color: var(--text-muted);
      letter-spacing: 0.1em;
      text-transform: uppercase;
    }

    @media (max-width: 720px) {
      .zop-big {
        width: 200px;
        height: 200px;
      }

      .stats-row {
        gap: 32px;
      }

      .stat-number {
        font-size: 44px;
      }
    }

    /* ===== How it works ===================================================== */
    .how-section {
      padding: 140px 0 0;
      position: relative;
      overflow: hidden;
    }
    .how-bg {
      position: absolute;
      inset: 0;
      pointer-events: none;
      z-index: 0;
    }
    .how-bg .floater {
      position: absolute;
      width: 8px; height: 8px;
      border-radius: 50%;
      background: var(--amber);
      box-shadow: 0 0 16px rgba(245,163,0,0.6);
      opacity: 0.35;
      will-change: transform;
    }
    .how-bg .glyph {
      position: absolute;
      width: 60px; height: 60px;
      opacity: 0.15;
      filter: drop-shadow(0 0 18px rgba(245,163,0,0.4));
      will-change: transform;
    }
    .how-section .container { position: relative; z-index: 1; }

    /* ===== Doors theatre (How it works) ==================================== */
    .doors-section {
      position: relative;
      background: #050505;
      overflow: hidden;
    }
    .doors-section::before {
      content: "";
      position: absolute; inset: 0;
      background:
        radial-gradient(60% 50% at 50% 50%, rgba(245,163,0,0.10) 0%, transparent 60%),
        radial-gradient(50% 40% at 80% 20%, rgba(245,163,0,0.08) 0%, transparent 60%);
      pointer-events: none;
      z-index: 0;
    }
    .doors-pin {
      position: relative;
      height: 100vh;
      min-height: 880px;
      display: grid;
      place-items: center;
      overflow: hidden;
      isolation: isolate;
      z-index: 1;
    }

    /* Floating intro header at top of pin (kicker + heading) */
    .doors-header {
      position: absolute;
      top: 24px; left: 50%;
      transform: translateX(-50%);
      text-align: center;
      z-index: 7;
      width: min(720px, 86vw);
    }
    .doors-header .section-kicker { display: inline-flex; }
    .doors-header h2 {
      font-size: clamp(36px, 5vw, 56px);
      font-weight: 700;
      letter-spacing: -0.025em;
      line-height: 1.05;
      margin-top: 12px;
    }
    .doors-header h2 .accent { color: var(--amber); }

    /* Stage = the theatre frame where doors and scenes live */
    .doors-stage {
      position: relative;
      width: min(840px, 92vw);
      height: min(760px, 76vh);
      border-radius: 36px;
      overflow: hidden;
      isolation: isolate;
      box-shadow:
        0 50px 120px rgba(0,0,0,0.65),
        0 0 0 1px rgba(245,163,0,0.18),
        0 0 80px rgba(245,163,0,0.10);
      background:
        radial-gradient(120% 80% at 50% 0%, rgba(245,163,0,0.10) 0%, transparent 60%),
        linear-gradient(180deg, #0F0F11 0%, #050505 100%);
      margin-top: 120px;
    }

    /* Layered theatre: each layer occupies the full stage; layers stack
       front-to-back. Each splittable layer has two halves that slide outward
       to reveal the next layer beneath. */
    .layer {
      position: absolute; inset: 0;
      overflow: hidden;
    }
    .half {
      position: absolute;
      top: 0; bottom: 0;
      width: calc(50% + 1px);
      overflow: hidden;
      will-change: transform;
    }
    .half.left  { left: 0; }
    .half.right { right: 0; }
    /* Each half holds a full-stage-wide content render, anchored so that the
       half's visible region shows the correct slice. Together both halves
       look like one continuous panel; sliding them outward tears it. */
    .half .content {
      position: absolute;
      top: 0;
      width: 200%;
      height: 100%;
      display: grid;
      grid-template-rows: auto 1fr auto auto;
      gap: 16px;
      padding: 56px 48px 48px;
      text-align: center;
    }
    .half.left  .content { left: 0; }
    .half.right .content { right: 0; }

    /* Initial closed-doors layer (no content — just dark panels with seam) */
    .init-layer { z-index: 6; }
    .init-layer .half {
      background:
        radial-gradient(120% 80% at 50% 50%, rgba(255,255,255,0.04) 0%, transparent 70%),
        linear-gradient(180deg, #1A1A1C 0%, #0E0E10 100%);
      box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.08),
        inset 0 0 0 0.5px rgba(255,255,255,0.06);
    }
    .init-layer .half.left::before, .init-layer .half.right::before {
      content: "";
      position: absolute;
      top: 0; bottom: 0;
      width: 2px;
      background: linear-gradient(180deg, transparent 0%, var(--amber) 30%, var(--amber) 70%, transparent 100%);
      box-shadow: 0 0 14px rgba(245,163,0,0.55);
    }
    .init-layer .half.left::before  { right: 0; }
    .init-layer .half.right::before { left: 0; }
    .init-layer .half.left::after, .init-layer .half.right::after {
      content: "";
      position: absolute;
      top: 50%; transform: translateY(-50%);
      width: 4px; height: 60px;
      border-radius: 4px;
      background: rgba(245,163,0,0.5);
      box-shadow: 0 0 10px rgba(245,163,0,0.5);
    }
    .init-layer .half.left::after  { right: 12px; }
    .init-layer .half.right::after { left: 12px; }
    .init-seam {
      position: absolute;
      left: 50%; top: 8%; bottom: 8%;
      width: 6px;
      transform: translateX(-50%);
      background: linear-gradient(180deg, transparent 0%, rgba(245,163,0,0.95) 50%, transparent 100%);
      box-shadow: 0 0 30px rgba(245,163,0,0.85), 0 0 60px rgba(245,163,0,0.4);
      pointer-events: none;
      z-index: 1;
      animation: seamPulse 2.4s ease-in-out infinite;
    }
    @keyframes seamPulse {
      0%, 100% { opacity: 0.55; }
      50% { opacity: 1; }
    }

    /* Scene layers (carry step content, stacked underneath init) */
    .scene-layer { z-index: 3; }
    .scene-layer.scene-1 { z-index: 5; }
    .scene-layer.scene-2 { z-index: 4; }
    .scene-layer.scene-3 { z-index: 3; }
    .scene-layer .half {
      background:
        radial-gradient(120% 80% at 50% 0%, rgba(245,163,0,0.10) 0%, transparent 60%),
        linear-gradient(180deg, #0F0F11 0%, #050505 100%);
    }

    .scene {
      position: absolute; inset: 0;
      display: grid;
      place-items: center;
    }
    .scene-content {
      position: absolute; inset: 0;
      display: grid;
      grid-template-rows: auto 1fr auto auto;
      gap: 16px;
      padding: 56px 48px 48px;
      text-align: center;
      z-index: 2;
    }
    .scene-num {
      font-family: var(--font-numeral);
      font-size: 80px;
      font-weight: 800;
      letter-spacing: -0.04em;
      line-height: 1;
      color: rgba(245,163,0,0.20);
      align-self: start;
    }
    .scene-visual {
      display: grid; place-items: center;
      align-self: center;
    }
    .scene-title {
      font-size: clamp(28px, 3.6vw, 42px);
      font-weight: 700;
      letter-spacing: -0.02em;
      color: var(--text-primary);
      margin: 0;
    }
    .scene-body {
      font-size: 15px;
      color: var(--text-muted);
      max-width: 420px;
      margin: 0 auto;
      line-height: 1.5;
    }
    .scene-tag {
      display: inline-flex; align-items: center; gap: 6px;
      align-self: center; justify-self: center;
      padding: 7px 14px; border-radius: var(--r-pill);
      background: rgba(245,163,0,0.10);
      border: 1px solid rgba(245,163,0,0.30);
      color: var(--amber);
      font-size: 11px; font-weight: 800;
      letter-spacing: 0.10em; text-transform: uppercase;
      margin: 0 auto;
    }

    /* Door panels — slide outward to reveal scene-content */
    .door {
      position: absolute;
      top: 0; bottom: 0;
      width: 51%;
      z-index: 5;
      will-change: transform;
      background:
        radial-gradient(120% 80% at 50% 50%, rgba(255,255,255,0.04) 0%, transparent 70%),
        linear-gradient(180deg, #1A1A1C 0%, #0E0E10 100%);
      box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.08),
        inset 0 0 0 0.5px rgba(255,255,255,0.06),
        0 30px 60px rgba(0,0,0,0.5);
      border-top: 1px solid rgba(255,255,255,0.06);
      border-bottom: 1px solid rgba(255,255,255,0.06);
    }
    .door.left  { left: 0;  border-left:  1px solid rgba(255,255,255,0.06); border-radius: 32px 0 0 32px; }
    .door.right { right: 0; border-right: 1px solid rgba(255,255,255,0.06); border-radius: 0 32px 32px 0; }
    /* Amber inner edge on the meeting side */
    .door.left::before, .door.right::before {
      content: "";
      position: absolute;
      top: 0; bottom: 0;
      width: 2px;
      background: linear-gradient(180deg, transparent 0%, var(--amber) 30%, var(--amber) 70%, transparent 100%);
      box-shadow: 0 0 14px rgba(245,163,0,0.55);
      opacity: 0.85;
    }
    .door.left::before  { right: 0; }
    .door.right::before { left: 0; }
    /* Door handle nub */
    .door.left::after, .door.right::after {
      content: "";
      position: absolute;
      top: 50%; transform: translateY(-50%);
      width: 4px; height: 60px;
      border-radius: 4px;
      background: rgba(245,163,0,0.5);
      box-shadow: 0 0 10px rgba(245,163,0,0.5);
    }
    .door.left::after  { right: 12px; }
    .door.right::after { left: 12px; }

    /* Center seam light burst (visible while doors closed) */
    .door-seam {
      position: absolute;
      left: 50%; top: 8%; bottom: 8%;
      width: 6px;
      transform: translateX(-50%);
      background: linear-gradient(180deg, transparent 0%, rgba(245,163,0,0.95) 50%, transparent 100%);
      box-shadow: 0 0 30px rgba(245,163,0,0.85), 0 0 60px rgba(245,163,0,0.4);
      z-index: 4;
      opacity: 0;
    }

    /* Scene-specific visuals — bigger versions of the existing pictographs */
    .scene-visual .vis-tap-big {
      position: relative; width: 200px; height: 200px;
    }
    .scene-visual .vis-tap-big .grid {
      position: absolute; inset: 0;
      display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
    }
    .scene-visual .vis-tap-big .cell {
      border-radius: 18px;
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.08);
    }
    .scene-visual .vis-tap-big .cell.hot {
      background: rgba(245,163,0,0.20);
      border-color: rgba(245,163,0,0.5);
      box-shadow: 0 0 26px rgba(245,163,0,0.35);
    }
    .scene-visual .vis-tap-big .finger {
      position: absolute;
      right: -16px; bottom: -16px;
      width: 56px; height: 56px;
      border-radius: 50%;
      background: var(--amber);
      box-shadow: 0 0 0 8px rgba(245,163,0,0.20), 0 0 32px rgba(245,163,0,0.5);
      animation: tapPulse 1.8s ease-in-out infinite;
    }

    .scene-visual .vis-clock-big {
      position: relative; width: 220px; height: 220px;
      border-radius: 50%;
      border: 2px solid rgba(245,163,0,0.5);
      background: radial-gradient(circle, rgba(245,163,0,0.12) 0%, transparent 65%);
      box-shadow: 0 0 32px rgba(245,163,0,0.20);
    }
    .scene-visual .vis-clock-big::before, .scene-visual .vis-clock-big::after {
      content: ""; position: absolute;
      left: 50%; top: 50%;
      background: var(--amber);
      transform-origin: bottom center;
      border-radius: 2px;
    }
    .scene-visual .vis-clock-big::before {
      width: 4px; height: 60px;
      transform: translate(-50%, -100%) rotate(35deg);
      animation: tickHour 8s linear infinite;
    }
    .scene-visual .vis-clock-big::after {
      width: 3px; height: 80px;
      transform: translate(-50%, -100%) rotate(120deg);
      animation: tickMin 4s linear infinite;
    }
    .scene-visual .vis-clock-big .center {
      position: absolute; left: 50%; top: 50%;
      width: 12px; height: 12px;
      border-radius: 50%;
      background: var(--amber);
      transform: translate(-50%, -50%);
      box-shadow: 0 0 14px var(--amber);
    }

    .scene-visual .vis-pin-big { position: relative; width: 220px; height: 220px; }
    .scene-visual .vis-pin-big .ring {
      position: absolute; left: 50%; top: 50%;
      transform: translate(-50%, -50%);
      border: 1.5px solid rgba(245,163,0,0.4);
      border-radius: 50%;
      animation: pinPulse 2.4s ease-out infinite;
    }
    .scene-visual .vis-pin-big .ring.r1 { width: 80px; height: 80px; }
    .scene-visual .vis-pin-big .ring.r2 { width: 130px; height: 130px; animation-delay: 0.4s; }
    .scene-visual .vis-pin-big .ring.r3 { width: 180px; height: 180px; animation-delay: 0.8s; }
    .scene-visual .vis-pin-big .pin {
      position: absolute;
      left: 50%; top: 50%;
      width: 46px; height: 60px;
      transform: translate(-50%, -56%);
      filter: drop-shadow(0 0 20px rgba(245,163,0,0.55));
    }
    .scene-visual .vis-pin-big .pin svg { width: 100%; height: 100%; display: block; }

    /* Finale layer (z-1, deepest, sits beneath all scenes) */
    .finale-layer {
      z-index: 1;
      display: grid;
      place-items: center;
      text-align: center;
      padding: 32px;
    }
    .finale-layer > div {
      transform: translateY(-32px);
    }
    .finale-layer .check-orb { margin-bottom: 64px; }
    .finale-layer .finale-title {
      font-family: var(--font-wordmark);
      font-size: clamp(40px, 5.2vw, 64px);
      font-weight: 500;
      letter-spacing: -0.04em;
      line-height: 1.0;
      color: var(--text-primary);
      margin: 0 0 12px;
    }
    .finale-layer .finale-title .green { color: #22C55E; }
    .finale-layer .finale-sub {
      font-size: 15px;
      color: var(--text-muted);
      max-width: 460px;
      margin: 0 auto;
      line-height: 1.5;
    }

    /* Mobile */
    @media (max-width: 720px) {
      .doors-pin { min-height: 760px; }
      .doors-stage { width: 94vw; height: 82vh; min-height: 620px; border-radius: 24px; margin-top: 100px; }
      .door.left { border-radius: 24px 0 0 24px; }
      .door.right { border-radius: 0 24px 24px 0; }
      .scene-content { padding: 40px 24px 32px; }
      .scene-num { font-size: 56px; }
      .scene-title { font-size: 28px; }
      .scene-visual .vis-tap-big,
      .scene-visual .vis-clock-big,
      .scene-visual .vis-pin-big { width: 150px; height: 150px; }
      .doors-header { top: 32px; }
      .doors-header h2 { font-size: 28px; }
    }

    /* ===== Finale (booking confirmed) ====================================== */
    .how-finale {
      position: relative;
      padding: 160px 0 180px;
      text-align: center;
      overflow: hidden;
      isolation: isolate;
    }
    .how-finale::before {
      content: "";
      position: absolute; inset: 0;
      background: radial-gradient(60% 50% at 50% 50%, rgba(34,197,94,0.18) 0%, transparent 60%);
      pointer-events: none;
      z-index: 0;
    }
    .check-orb {
      width: 160px; height: 160px;
      border-radius: 50%;
      margin: 0 auto 36px;
      position: relative;
      background: radial-gradient(circle at 30% 25%, #34D67A 0%, #22C55E 50%, #15803D 100%);
      box-shadow:
        0 30px 70px rgba(34,197,94,0.45),
        0 12px 28px rgba(34,197,94,0.30),
        inset 0 3px 0 rgba(255,255,255,0.4),
        inset 0 -3px 0 rgba(0,0,0,0.18);
      display: grid; place-items: center;
      transform: scale(0);
      z-index: 2;
    }
    .check-orb.is-popped { animation: orbBounce 0.85s cubic-bezier(0.2, 1.6, 0.4, 1) both; }
    @keyframes orbBounce {
      0% { transform: scale(0.4); opacity: 0; }
      60% { transform: scale(1.10); opacity: 1; }
      100% { transform: scale(1); opacity: 1; }
    }
    .check-orb::after {
      content: "";
      position: absolute; inset: -16px;
      border-radius: 50%;
      border: 2px solid rgba(34,197,94,0.30);
      animation: orbRing 1.6s ease-out 0.25s 1;
    }
    .check-orb::before {
      content: "";
      position: absolute; inset: -34px;
      border-radius: 50%;
      border: 1.5px dashed rgba(34,197,94,0.28);
      animation: orbSpin 14s linear infinite;
    }
    @keyframes orbRing {
      0% { transform: scale(0.6); opacity: 0; }
      40% { opacity: 1; }
      100% { transform: scale(1.6); opacity: 0; }
    }
    @keyframes orbSpin { to { transform: rotate(360deg); } }
    .check-orb svg {
      width: 80px; height: 80px;
      color: #fff;
      filter: drop-shadow(0 3px 6px rgba(0,0,0,0.3));
    }
    .check-orb.is-popped svg path {
      stroke-dasharray: 80;
      animation: scribble 0.55s cubic-bezier(0.4, 0, 0.2, 1) 0.6s both;
    }
    @keyframes scribble { from { stroke-dashoffset: 80; } to { stroke-dashoffset: 0; } }

    .how-finale-heading {
      font-family: var(--font-wordmark);
      font-size: clamp(40px, 6vw, 76px);
      font-weight: 500;
      letter-spacing: -0.04em;
      line-height: 1.0;
      color: var(--text-primary);
      margin: 0 0 14px;
      position: relative; z-index: 2;
    }
    .how-finale-heading .green { color: #22C55E; }
    .how-finale-sub {
      font-size: 17px;
      color: var(--text-muted);
      max-width: 480px;
      margin: 0 auto;
      line-height: 1.55;
      position: relative; z-index: 2;
    }

    /* Booking-id pill — same style as app */
    .booking-id {
      display: inline-flex; align-items: center; gap: 6px;
      padding: 8px 14px; border-radius: var(--r-pill);
      margin-top: 24px;
      font-family: 'JetBrains Mono', monospace;
      font-size: 12px; font-weight: 700;
      letter-spacing: -0.01em;
      background: rgba(245,163,0,0.14);
      color: var(--amber);
      box-shadow: inset 0 0 0 0.5px rgba(245,163,0,0.3);
      position: relative; z-index: 2;
    }

    /* Confetti */
    .confetti {
      position: absolute; inset: 0;
      pointer-events: none;
      z-index: 1;
      overflow: hidden;
    }
    .confetti span {
      position: absolute;
      border-radius: 1.5px;
      opacity: 0;
      animation: confall 2.6s ease-in 0.3s forwards;
    }
    .confetti.is-active span { animation-play-state: running; }
    @keyframes confall {
      0% { opacity: 0; transform: translateY(-40px) rotate(0); }
      20% { opacity: 1; }
      100% { opacity: 0; transform: translateY(360px) rotate(180deg); }
    }
    .c-c1  { left: 12%; top: 6%;  width: 9px; height: 9px;  background: #F5A300; animation-delay: 0.20s; }
    .c-c2  { left: 24%; top: 4%;  width: 7px; height: 7px;  background: #22C55E; animation-delay: 0.40s; border-radius: 50%; }
    .c-c3  { left: 38%; top: 8%;  width: 8px; height: 16px; background: #60A5FA; animation-delay: 0.50s; transform: rotate(20deg); }
    .c-c4  { left: 52%; top: 3%;  width: 9px; height: 9px;  background: #FFC042; animation-delay: 0.30s; border-radius: 50%; }
    .c-c5  { left: 64%; top: 7%;  width: 7px; height: 14px; background: #F5A300; animation-delay: 0.55s; transform: rotate(-25deg); }
    .c-c6  { left: 78%; top: 5%;  width: 8px; height: 8px;  background: #22C55E; animation-delay: 0.70s; border-radius: 50%; }
    .c-c7  { left: 88%; top: 9%;  width: 6px; height: 6px;  background: #FFC042; animation-delay: 0.60s; border-radius: 50%; }
    .c-c8  { left: 8%;  top: 16%; width: 7px; height: 12px; background: #F87171; animation-delay: 0.45s; transform: rotate(15deg); }
    .c-c9  { left: 92%; top: 18%; width: 6px; height: 11px; background: #22C55E; animation-delay: 0.80s; transform: rotate(-15deg); }
    .c-c10 { left: 18%; top: 22%; width: 8px; height: 8px;  background: #F5A300; animation-delay: 0.95s; border-radius: 50%; }
    .c-c11 { left: 70%; top: 18%; width: 6px; height: 13px; background: #60A5FA; animation-delay: 1.05s; transform: rotate(35deg); }
    .c-c12 { left: 46%; top: 20%; width: 7px; height: 7px;  background: #FFC042; animation-delay: 1.20s; border-radius: 50%; }

    .how-track {
      position: relative;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      counter-reset: stepCount;
    }

    .how-track::before {
      content: "";
      position: absolute;
      left: 8%;
      right: 8%;
      top: 88px;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(245, 163, 0, 0.4), transparent);
      pointer-events: none;
    }

    .how-step {
      position: relative;
      padding: 32px 28px 32px;
      border-radius: 24px;
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.025) 100%);
      box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.12),
        inset 0 0 0 0.5px rgba(255, 255, 255, 0.07);
      backdrop-filter: blur(16px) saturate(180%);
      -webkit-backdrop-filter: blur(16px) saturate(180%);
      transition: transform 0.35s var(--ease-out), box-shadow 0.35s ease;
      overflow: hidden;
      isolation: isolate;
    }

    .how-step::before {
      content: "";
      position: absolute;
      top: -40%;
      right: -30%;
      width: 80%;
      height: 80%;
      background: radial-gradient(circle, rgba(245, 163, 0, 0.10) 0%, transparent 60%);
      pointer-events: none;
      opacity: 0;
      transition: opacity 0.4s ease;
      z-index: 0;
    }

    .how-step:hover {
      transform: translateY(-6px);
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18), inset 0 0 0 0.5px rgba(255, 255, 255, 0.10), 0 18px 40px rgba(0, 0, 0, 0.45), 0 0 36px rgba(245, 163, 0, 0.12);
    }

    .how-step:hover::before {
      opacity: 1;
    }

    .how-step>* {
      position: relative;
      z-index: 1;
    }

    .how-step-badge {
      width: 56px;
      height: 56px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      font-family: var(--font-numeral);
      font-size: 18px;
      font-weight: 800;
      letter-spacing: -0.02em;
      color: var(--amber);
      background: rgba(10, 10, 10, 0.85);
      border: 1px solid rgba(245, 163, 0, 0.45);
      box-shadow: 0 0 0 4px rgba(10, 10, 10, 1), 0 0 20px rgba(245, 163, 0, 0.25);
      margin-bottom: 28px;
      position: relative;
      z-index: 2;
    }

    .how-step-visual {
      height: 180px;
      border-radius: 18px;
      margin-bottom: 24px;
      position: relative;
      overflow: hidden;
      background:
        radial-gradient(120% 90% at 50% 18%, rgba(255, 255, 255, 0.10) 0%, rgba(255, 255, 255, 0) 60%),
        radial-gradient(80% 60% at 50% 110%, rgba(245, 163, 0, 0.18) 0%, rgba(245, 163, 0, 0) 70%),
        linear-gradient(180deg, #1A1A1C 0%, #0F0F11 100%);
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), inset 0 0 0 0.5px rgba(255, 255, 255, 0.06);
      display: grid;
      place-items: center;
    }

    .how-step-visual svg {
      width: 64px;
      height: 64px;
      color: var(--amber);
    }

    .how-step-visual .pictograph {
      position: relative;
      width: 100%;
      height: 100%;
      display: grid;
      place-items: center;
    }

    .how-step-title {
      font-size: 22px;
      font-weight: 700;
      letter-spacing: -0.015em;
      margin-bottom: 10px;
    }

    .how-step-body {
      font-size: 14px;
      line-height: 1.6;
      color: var(--text-muted);
      margin-bottom: 20px;
    }

    .how-step-tag {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 6px 12px;
      border-radius: var(--r-pill);
      background: rgba(245, 163, 0, 0.10);
      border: 1px solid rgba(245, 163, 0, 0.30);
      font-size: 11px;
      font-weight: 700;
      color: var(--amber);
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    /* Step visuals. pure CSS */
    .vis-tap {
      position: relative;
      width: 120px;
      height: 120px;
    }

    .vis-tap .grid {
      position: absolute;
      inset: 0;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 8px;
    }

    .vis-tap .cell {
      border-radius: 12px;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.08);
    }

    .vis-tap .cell.hot {
      background: rgba(245, 163, 0, 0.20);
      border-color: rgba(245, 163, 0, 0.5);
      box-shadow: 0 0 18px rgba(245, 163, 0, 0.35);
    }

    .vis-tap .finger {
      position: absolute;
      right: -22px;
      bottom: -22px;
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: var(--amber);
      box-shadow: 0 0 0 6px rgba(245, 163, 0, 0.20), 0 0 28px rgba(245, 163, 0, 0.5);
      animation: tapPulse 1.8s ease-in-out infinite;
    }

    @keyframes tapPulse {

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

      50% {
        transform: scale(0.85);
      }
    }

    .vis-clock {
      position: relative;
      width: 130px;
      height: 130px;
      border-radius: 50%;
      border: 2px solid rgba(245, 163, 0, 0.5);
      background: radial-gradient(circle at 50% 50%, rgba(245, 163, 0, 0.12) 0%, transparent 65%);
      box-shadow: 0 0 24px rgba(245, 163, 0, 0.20);
    }

    .vis-clock::before,
    .vis-clock::after {
      content: "";
      position: absolute;
      left: 50%;
      top: 50%;
      background: var(--amber);
      transform-origin: bottom center;
      border-radius: 2px;
    }

    .vis-clock::before {
      width: 3px;
      height: 38px;
      transform: translate(-50%, -100%) rotate(35deg);
      animation: tickHour 8s linear infinite;
    }

    .vis-clock::after {
      width: 2px;
      height: 50px;
      transform: translate(-50%, -100%) rotate(120deg);
      animation: tickMin 4s linear infinite;
    }

    .vis-clock .center {
      position: absolute;
      left: 50%;
      top: 50%;
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--amber);
      transform: translate(-50%, -50%);
      box-shadow: 0 0 10px var(--amber);
    }

    @keyframes tickMin {
      from {
        transform: translate(-50%, -100%) rotate(0deg);
      }

      to {
        transform: translate(-50%, -100%) rotate(360deg);
      }
    }

    @keyframes tickHour {
      from {
        transform: translate(-50%, -100%) rotate(0deg);
      }

      to {
        transform: translate(-50%, -100%) rotate(360deg);
      }
    }

    .vis-pin {
      position: relative;
      width: 130px;
      height: 130px;
    }

    .vis-pin .ring {
      position: absolute;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%);
      border: 1px solid rgba(245, 163, 0, 0.4);
      border-radius: 50%;
      animation: pinPulse 2.4s ease-out infinite;
    }

    .vis-pin .ring.r1 {
      width: 60px;
      height: 60px;
    }

    .vis-pin .ring.r2 {
      width: 90px;
      height: 90px;
      animation-delay: 0.4s;
    }

    .vis-pin .ring.r3 {
      width: 120px;
      height: 120px;
      animation-delay: 0.8s;
    }

    @keyframes pinPulse {
      0% {
        opacity: 0.7;
        transform: translate(-50%, -50%) scale(0.6);
      }

      100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(1.2);
      }
    }

    .vis-pin .pin {
      position: absolute;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -65%);
      width: 28px;
      height: 36px;
      background: var(--amber);
      border-radius: 14px 14px 14px 0;
      transform-origin: bottom right;
      rotate: -45deg;
      box-shadow: 0 0 18px rgba(245, 163, 0, 0.55);
    }

    .vis-pin .pin::after {
      content: "";
      position: absolute;
      left: 50%;
      top: 38%;
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: #0A0A0A;
      transform: translate(-50%, -50%);
    }

    @media (max-width: 880px) {
      .how-track {
        grid-template-columns: 1fr;
        gap: 16px;
      }

      .how-track::before {
        display: none;
      }

      .how-step {
        padding: 28px 24px;
      }
    }

    /* ===== Trust ============================================================ */
    .trust-strip {
      border-radius: 24px;
      padding: 28px 32px;
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
      border: 1px solid var(--glass-border);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
      align-items: center;
    }

    .trust-col {
      display: flex;
      flex-direction: column;
      gap: 4px;
    }

    .trust-num {
      font-size: 32px;
      font-weight: 800;
      letter-spacing: -0.03em;
      color: var(--text-primary);
    }

    .trust-num .amber {
      color: var(--amber);
    }

    .trust-label {
      font-size: 12px;
      color: var(--text-muted);
      font-weight: 500;
    }

    @media (max-width: 720px) {
      .trust-strip {
        grid-template-columns: 1fr 1fr;
        padding: 22px 18px;
      }

      .trust-num {
        font-size: 24px;
      }
    }

    /* ===== Waitlist ========================================================= */
    .waitlist-section {
      position: relative;
      padding: 160px 0;
      overflow: hidden;
    }

    .waitlist-section::before {
      content: "";
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 1px;
      height: 320px;
      background: linear-gradient(to bottom, transparent, rgba(245, 163, 0, 0.6), transparent);
    }

    .waitlist-card {
      max-width: 600px;
      margin: 0 auto;
      padding: 56px 48px;
      border-radius: 28px;
      position: relative;
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0.03) 100%);
      box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.14),
        inset 0 0 0 0.5px rgba(255, 255, 255, 0.08),
        0 30px 60px rgba(0, 0, 0, 0.5);
      backdrop-filter: blur(28px) saturate(180%);
      -webkit-backdrop-filter: blur(28px) saturate(180%);
      will-change: transform;
    }

    .waitlist-zop {
      position: absolute;
      top: -50px;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 80px;
      filter: drop-shadow(0 12px 24px rgba(245, 163, 0, 0.45));
    }

    .waitlist-heading {
      font-size: clamp(32px, 4vw, 44px);
      font-weight: 800;
      letter-spacing: -0.025em;
      text-align: center;
      margin: 12px 0 14px;
    }

    .waitlist-sub {
      font-size: 15px;
      color: var(--text-muted);
      text-align: center;
      margin-bottom: 36px;
      line-height: 1.55;
    }

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

    .form-input,
    .form-select {
      width: 100%;
      height: 52px;
      padding: 0 18px;
      background: rgba(0, 0, 0, 0.28);
      border: 1px solid rgba(255, 255, 255, 0.10);
      border-radius: 14px;
      color: var(--text-primary);
      font: 500 14px/1 var(--font-ui);
      outline: none;
      transition: border-color 0.2s ease, box-shadow 0.2s ease;
    }

    .form-input::placeholder {
      color: rgba(255, 255, 255, 0.35);
      font-weight: 500;
    }

    .form-input:focus,
    .form-select:focus {
      border-color: var(--amber);
      box-shadow: 0 0 0 3px rgba(245, 163, 0, 0.18);
    }

    .form-select {
      appearance: none;
      -webkit-appearance: none;
      color: rgba(255, 255, 255, 0.5);
      background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='none' stroke='%23F5A300' stroke-width='1.6' d='M1 1l5 5 5-5'/></svg>");
      background-repeat: no-repeat;
      background-position: right 18px center;
      background-color: rgba(0, 0, 0, 0.28);
      padding-right: 44px;
    }

    .form-check {
      display: flex; align-items: center; gap: 12px;
      padding: 6px 4px;
      cursor: pointer;
      user-select: none;
    }
    .form-check input { position: absolute; opacity: 0; pointer-events: none; }
    .form-check-box {
      width: 20px; height: 20px;
      border-radius: 6px;
      border: 1.5px solid rgba(255,255,255,0.20);
      background: rgba(0,0,0,0.28);
      position: relative;
      flex-shrink: 0;
      transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
    }
    .form-check-box::after {
      content: "";
      position: absolute;
      left: 5px; top: 2px;
      width: 7px; height: 11px;
      border: solid #0A0A0A;
      border-width: 0 2px 2px 0;
      transform: rotate(45deg) scale(0);
      transition: transform 0.2s var(--ease-spring);
    }
    .form-check input:checked ~ .form-check-box {
      background: var(--amber);
      border-color: var(--amber);
      box-shadow: 0 0 0 3px rgba(245,163,0,0.18);
    }
    .form-check input:checked ~ .form-check-box::after {
      transform: rotate(45deg) scale(1);
    }
    .form-check input:focus-visible ~ .form-check-box {
      box-shadow: 0 0 0 3px rgba(245,163,0,0.35);
    }
    .form-check-label {
      font-size: 13px; font-weight: 500;
      color: rgba(255,255,255,0.78);
      line-height: 1.4;
    }

    .form-select.has-value {
      color: var(--text-primary);
    }

    .form-select option {
      background: #0A0A0A;
      color: var(--text-primary);
    }

    .submit-btn {
      height: 52px;
      width: 100%;
      background: var(--amber);
      color: var(--text-on-amber);
      border: none;
      border-radius: 14px;
      font: 700 14px/1 var(--font-ui);
      letter-spacing: 0.04em;
      text-transform: uppercase;
      margin-top: 6px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      box-shadow: var(--shadow-amber);
      transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease;
    }

    .submit-btn:hover {
      background: var(--amber-alt);
    }

    .submit-btn:active {
      transform: scale(0.99);
    }

    .submit-btn.is-loading {
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid var(--glass-border);
      color: transparent;
      box-shadow: none;
    }

    .submit-btn.is-success {
      background: rgba(245, 163, 0, 0.10);
      border: 1px solid rgba(245, 163, 0, 0.35);
      color: var(--amber);
      box-shadow: none;
      cursor: default;
    }

    .spinner {
      width: 18px;
      height: 18px;
      border-radius: 50%;
      border: 2px solid rgba(245, 163, 0, 0.25);
      border-top-color: var(--amber);
      animation: spin 0.8s linear infinite;
      display: none;
    }

    .submit-btn.is-loading .spinner {
      display: inline-block;
    }

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

    .form-note {
      font-size: 12px;
      color: rgba(255, 255, 255, 0.3);
      text-align: center;
      margin: 16px 0 0;
    }

    .success-line {
      font-size: 13px;
      color: var(--text-muted);
      text-align: center;
      margin: 16px 0 0;
      opacity: 0;
      transform: translateY(8px);
      transition: opacity 0.4s ease, transform 0.4s ease;
    }

    .success-line.show {
      opacity: 1;
      transform: translateY(0);
    }

    @media (max-width: 560px) {
      .waitlist-card {
        padding: 48px 24px;
      }
    }

    /* ===== Footer (with floating tabbar nav) ================================ */
    .footer {
      padding: 80px 0 48px;
      border-top: 1px solid var(--glass-divider);
      background: rgba(0, 0, 0, 0.4);
      position: relative;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.2fr 1fr 1fr 1fr;
      gap: 48px;
      margin-bottom: 56px;
    }

    .footer-brand .wordmark {
      font-size: 28px;
    }

    .footer-tag {
      margin-top: 12px;
      font-size: 13px;
      color: var(--text-muted);
      max-width: 260px;
      line-height: 1.55;
    }

    .footer-col h4 {
      font-size: 11px;
      font-weight: 700;
      color: var(--amber);
      letter-spacing: 0.14em;
      text-transform: uppercase;
      margin-bottom: 18px;
    }

    .footer-col ul {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .footer-col a {
      font-size: 14px;
      color: var(--text-muted);
      font-weight: 500;
      transition: color 0.2s ease;
    }

    .footer-col a:hover {
      color: var(--amber);
    }

    .footer-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding-top: 28px;
      border-top: 1px solid var(--glass-divider);
      flex-wrap: wrap;
      gap: 16px;
    }

    .footer-copy {
      font-size: 12px;
      color: rgba(255, 255, 255, 0.3);
      letter-spacing: 0.02em;
    }

    .footer-meta {
      display: flex;
      gap: 18px;
      align-items: center;
    }

    .footer-meta a {
      font-size: 12px;
      color: var(--text-muted);
    }

    .footer-meta a:hover {
      color: var(--amber);
    }

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

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

      .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
      }
    }

    /* ===== Reduced motion =================================================== */
    @media (prefers-reduced-motion: reduce) {

      *,
      *::before,
      *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
      }
    }

    /* ===== Preloader ======================================================== */
    .preloader {
      position: fixed;
      inset: 0;
      background: var(--bg-primary);
      z-index: 10000;
      display: grid;
      place-items: center;
    }

    .preloader-inner {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 20px;
    }

    .preloader-mascot {
      width: 88px;
      height: 88px;
      transform: scale(0);
      filter: drop-shadow(0 0 24px rgba(245, 163, 0, 0.6));
    }

    .preloader-word {
      font-family: var(--font-wordmark);
      font-size: 30px;
      font-weight: 500;
      letter-spacing: -0.04em;
      color: var(--text-primary);
      display: flex;
      gap: 1px;
    }

    .preloader-word span {
      opacity: 0;
      display: inline-block;
    }
