    /* ============================================================
       Explore POV — "Passthrough" design system
       Light spatial theme: one window primitive, real shadows,
       SF system type + mono instrument captions.
       ============================================================ */
    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

    :root {
      --ground: #E6E8EC;
      --ground-hi: #F5F7F9;
      --ground-lo: #D6D9E0;
      --surface: #FCFDFE;
      --ink: #171A21;
      --ink-2: #565D69;
      --ink-3: #8A909C;
      --line: rgba(23, 26, 33, 0.12);
      --line-2: rgba(23, 26, 33, 0.07);
      --tint: #3A63E6;
      --tint-deep: #2743A8;
      --star: #D9A13B;
      --sf: "SF Pro Display", "SF Pro Text", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
      --mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
      --win-shadow: 0 1px 2px rgba(21,25,34,.10), 0 10px 24px rgba(21,25,34,.13), 0 34px 70px rgba(21,25,34,.16), 0 80px 140px rgba(21,25,34,.14);
      --win-shadow-soft: 0 0 0 1px var(--line-2), 0 14px 40px rgba(21,25,34,.1);
      --card-shadow: 0 1px 2px rgba(21,25,34,.08), 0 8px 20px rgba(21,25,34,.10), 0 24px 48px rgba(21,25,34,.10);
      --card-shadow-hover: 0 2px 4px rgba(21,25,34,.14), 0 20px 44px rgba(21,25,34,.2);
      --btn-shadow: 0 1px 2px rgba(21,25,34,.3), 0 10px 26px rgba(21,25,34,.22);
      --btn-shadow-hover: 0 2px 5px rgba(21,25,34,.34), 0 16px 34px rgba(21,25,34,.26);
      --screen-rim: inset 0 1px 0 rgba(255,255,255,.55), inset 0 0 0 1px rgba(255,255,255,.16), inset 0 0 0 1.5px rgba(23,26,33,.06);
      --glass-ring: 0 1px 0 rgba(255,255,255,.6) inset, 0 0 0 1px rgba(23,26,33,.06), 0 12px 34px rgba(21,25,34,.14);
      --radius-win: 26px;
      --radius-card: 20px;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: var(--sf);
      background: var(--ground);
      color: var(--ink);
      line-height: 1.5;
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility;
      overflow-x: clip;
    }

    ::selection { background: rgba(58, 99, 230, 0.18); }

    a { color: inherit; text-decoration: none; }
    img { max-width: 100%; display: block; }
    button { font-family: inherit; }

    a:focus-visible, button:focus-visible, input:focus-visible, [tabindex]:focus-visible {
      outline: 2px solid var(--tint);
      outline-offset: 3px;
      border-radius: 6px;
    }

    .hidden { display: none !important; }

    .container {
      max-width: 1240px;
      margin: 0 auto;
      padding: 0 clamp(20px, 5vw, 64px);
    }

    /* The luminous room */
    .ambient {
      position: fixed;
      inset: 0;
      z-index: -1;
      pointer-events: none;
      background:
        radial-gradient(130% 85% at 50% -12%, var(--ground-hi), transparent 58%),
        radial-gradient(100% 55% at 50% 116%, var(--ground-lo), transparent 55%);
    }

    /* ============================================================
       Navigation — floating glass pill
       ============================================================ */
    .nav {
      position: fixed;
      top: 14px;
      left: 0;
      right: 0;
      z-index: 60;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 0 14px;
      pointer-events: none;
    }
    .nav > * { pointer-events: auto; }
    .nav__logo {
      display: flex;
      align-items: center;
      gap: 8px;
      white-space: nowrap;
      font-size: 15px;
      font-weight: 600;
      letter-spacing: -0.02em;
      padding: 9px 16px 9px 12px;
      border-radius: 22px;
      background: rgba(250, 251, 253, 0.62);
      -webkit-backdrop-filter: blur(24px) saturate(1.7);
      backdrop-filter: blur(24px) saturate(1.7);
      box-shadow: var(--glass-ring);
    }
    .nav__logo img { width: 26px; height: 26px; border-radius: 50%; }
    .nav__links {
      display: flex;
      align-items: center;
      gap: 4px;
      padding: 6px;
      border-radius: 22px;
      background: rgba(250, 251, 253, 0.62);
      -webkit-backdrop-filter: blur(24px) saturate(1.7);
      backdrop-filter: blur(24px) saturate(1.7);
      box-shadow: var(--glass-ring);
    }
    .nav__link {
      font-size: 14.5px;
      font-weight: 500;
      color: var(--ink-2);
      padding: 8px 14px;
      border-radius: 12px;
      transition: color 0.16s, background 0.16s;
    }
    .nav__link:hover { color: var(--ink); background: rgba(23, 26, 33, 0.06); }
    .nav__link--active { color: var(--ink); background: rgba(23, 26, 33, 0.06); }
    .nav__globe {
      display: none;
      align-items: center;
      justify-content: center;
      width: 42px;
      height: 42px;
      border-radius: 21px;
      color: var(--ink-2);
      background: rgba(250, 251, 253, 0.62);
      -webkit-backdrop-filter: blur(24px) saturate(1.7);
      backdrop-filter: blur(24px) saturate(1.7);
      box-shadow: var(--glass-ring);
    }
    .nav__globe svg { width: 20px; height: 20px; }
    .nav__toggle {
      display: none;
      align-items: center;
      justify-content: center;
      width: 42px;
      height: 42px;
      border: 0;
      border-radius: 21px;
      color: var(--ink);
      cursor: pointer;
      background: rgba(250, 251, 253, 0.62);
      -webkit-backdrop-filter: blur(24px) saturate(1.7);
      backdrop-filter: blur(24px) saturate(1.7);
      box-shadow: var(--glass-ring);
    }
    .nav__toggle svg { width: 20px; height: 20px; }

    /* Search */
    .search-wrapper { position: relative; }
    .search-toggle {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 42px;
      height: 42px;
      border: 0;
      border-radius: 21px;
      color: var(--ink-2);
      cursor: pointer;
      background: rgba(250, 251, 253, 0.62);
      -webkit-backdrop-filter: blur(24px) saturate(1.7);
      backdrop-filter: blur(24px) saturate(1.7);
      box-shadow: var(--glass-ring);
      transition: color 0.16s;
    }
    .search-toggle:hover { color: var(--ink); }
    .search-toggle svg { width: 18px; height: 18px; }
    .search-box {
      position: absolute;
      top: calc(100% + 10px);
      right: 0;
      width: min(380px, calc(100vw - 40px));
      border-radius: 20px;
      background: rgba(250, 251, 253, 0.88);
      -webkit-backdrop-filter: blur(24px) saturate(1.7);
      backdrop-filter: blur(24px) saturate(1.7);
      box-shadow: var(--glass-ring), 0 24px 60px rgba(21,25,34,.18);
      padding: 10px;
      opacity: 0;
      transform: translateY(-6px);
      pointer-events: none;
      transition: opacity 0.18s, transform 0.18s;
    }
    .search-box.active { opacity: 1; transform: none; pointer-events: auto; }
    .search-input {
      width: 100%;
      border: 0;
      border-radius: 12px;
      background: rgba(23, 26, 33, 0.05);
      box-shadow: inset 0 0 0 1px var(--line-2);
      padding: 11px 14px;
      font: 500 14.5px var(--sf);
      color: var(--ink);
    }
    .search-input::placeholder { color: var(--ink-3); }
    .search-input:focus { outline: 2px solid var(--tint); outline-offset: 1px; }
    .search-results { max-height: 320px; overflow-y: auto; margin-top: 6px; }
    .search-result {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 8px;
      border-radius: 12px;
      transition: background 0.16s;
    }
    .search-result:hover { background: rgba(23, 26, 33, 0.06); }
    .search-result__img {
      width: 68px;
      height: 44px;
      object-fit: cover;
      border-radius: 8px;
      box-shadow: 0 0 0 1px var(--line-2), 0 2px 6px rgba(21,25,34,.12);
      flex-shrink: 0;
    }
    .search-result__info { min-width: 0; }
    .search-result__title {
      font-size: 14px;
      font-weight: 600;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .search-result__meta {
      font-family: var(--mono);
      font-size: 10.5px;
      color: var(--ink-3);
      margin-top: 2px;
    }
    .search-empty {
      padding: 14px;
      font-size: 13.5px;
      color: var(--ink-3);
      text-align: center;
    }

    /* Sign in + account */
    .nav__btn {
      border: 0;
      cursor: pointer;
      white-space: nowrap;
      padding: 11px 18px;
      border-radius: 21px;
      font-size: 14px;
      font-weight: 600;
      background: var(--ink);
      color: #fff;
      box-shadow: var(--btn-shadow);
      transition: transform 0.16s, box-shadow 0.16s;
    }
    .nav__btn:hover { transform: translateY(-1px); box-shadow: var(--btn-shadow-hover); }
    .account-area { position: relative; }
    .account-btn {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 42px;
      height: 42px;
      border: 0;
      border-radius: 21px;
      color: var(--ink);
      cursor: pointer;
      background: rgba(250, 251, 253, 0.62);
      -webkit-backdrop-filter: blur(24px) saturate(1.7);
      backdrop-filter: blur(24px) saturate(1.7);
      box-shadow: var(--glass-ring);
    }
    .account-btn svg { width: 20px; height: 20px; }
    .account-dropdown {
      position: absolute;
      top: calc(100% + 10px);
      right: 0;
      width: 280px;
      border-radius: 20px;
      background: var(--surface);
      box-shadow: 0 0 0 1px var(--line-2), 0 24px 60px rgba(21,25,34,.18);
      padding: 16px;
      opacity: 0;
      transform: translateY(-6px);
      pointer-events: none;
      transition: opacity 0.18s, transform 0.18s;
    }
    .account-dropdown.visible { opacity: 1; transform: none; pointer-events: auto; }
    .account-dropdown__header { display: flex; align-items: center; gap: 12px; }
    .account-dropdown__avatar {
      width: 40px;
      height: 40px;
      border-radius: 20px;
      background: rgba(23, 26, 33, 0.06);
      color: var(--ink-2);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .account-dropdown__avatar svg { width: 22px; height: 22px; }
    .account-dropdown__info { min-width: 0; }
    .account-dropdown__email {
      font-size: 14px;
      font-weight: 600;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .account-dropdown__status { font-size: 12.5px; color: var(--ink-3); margin-top: 1px; }
    .account-dropdown__divider { height: 1px; background: var(--line-2); margin: 13px 0; }
    .account-dropdown__item {
      display: flex;
      justify-content: space-between;
      align-items: baseline;
      gap: 12px;
      padding: 3px 0;
    }
    .account-dropdown__label { font-size: 13.5px; color: var(--ink-2); }
    .account-dropdown__value { font-size: 13.5px; font-weight: 600; }
    .account-dropdown__value.premium { color: var(--tint); }
    .account-dropdown__logout {
      width: 100%;
      border: 0;
      cursor: pointer;
      padding: 10px;
      border-radius: 12px;
      font-size: 14px;
      font-weight: 600;
      color: var(--ink);
      background: rgba(23, 26, 33, 0.05);
      box-shadow: inset 0 0 0 1px var(--line-2);
      transition: background 0.16s;
    }
    .account-dropdown__logout:hover { background: rgba(23, 26, 33, 0.09); }

    /* Mobile overlay */
    .nav__overlay {
      position: fixed;
      inset: 0;
      z-index: 55;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 8px;
      background: rgba(236, 238, 242, 0.85);
      -webkit-backdrop-filter: blur(30px) saturate(1.6);
      backdrop-filter: blur(30px) saturate(1.6);
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.22s;
    }
    .nav__overlay.open { opacity: 1; pointer-events: auto; }
    .nav__overlay a {
      font-size: clamp(26px, 6vw, 34px);
      font-weight: 600;
      letter-spacing: -0.025em;
      color: var(--ink);
      padding: 10px 22px;
      border-radius: 16px;
      transition: background 0.16s;
    }
    .nav__overlay a:hover { background: rgba(23, 26, 33, 0.06); }

    /* ============================================================
       Buttons & links
       ============================================================ */
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      padding: 14px 22px;
      border-radius: 16px;
      font-size: 15.5px;
      font-weight: 600;
      background: var(--ink);
      color: #fff;
      box-shadow: var(--btn-shadow);
      transition: transform 0.16s, box-shadow 0.16s;
    }
    .btn:hover { transform: translateY(-1px); box-shadow: var(--btn-shadow-hover); }
    .btn svg { width: 16px; height: 16px; }
    .link {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 15px;
      font-weight: 500;
      color: var(--tint);
      transition: gap 0.18s, color 0.18s;
    }
    .link:hover { gap: 10px; color: var(--tint-deep); }

    /* ============================================================
       Hero — copy beside a floating window
       ============================================================ */
    .hero {
      max-width: 1360px;
      margin: 0 auto;
      padding: clamp(108px, 15vh, 160px) clamp(20px, 4vw, 56px) clamp(28px, 4vh, 48px);
      display: grid;
      grid-template-columns: minmax(300px, 500px) minmax(340px, 540px);
      justify-content: center;
      gap: clamp(36px, 4.5vw, 68px);
      align-items: center;
      min-height: min(92svh, 900px);
    }
    .hero__copy { max-width: 560px; }
    .hero__award {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 8px 14px 8px 10px;
      border-radius: 999px;
      background: rgba(250, 251, 253, 0.72);
      -webkit-backdrop-filter: blur(14px) saturate(1.6);
      backdrop-filter: blur(14px) saturate(1.6);
      box-shadow: 0 0 0 1px rgba(23,26,33,.06), 0 6px 18px rgba(21,25,34,.14);
      margin-bottom: 30px;
    }
    .hero__award-icon {
      width: 26px;
      height: 26px;
      border-radius: 13px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: var(--ink);
      color: #fff;
      flex-shrink: 0;
    }
    .hero__award-icon svg { width: 13px; height: 13px; }
    .hero__award-text { display: flex; flex-direction: column; line-height: 1.15; }
    .hero__award-text strong { font-size: 12.5px; font-weight: 600; }
    .hero__award-text span { font-size: 11px; color: var(--ink-2); }
    .hero__h1 {
      font-size: clamp(56px, 8vw, 112px);
      line-height: 0.99;
      letter-spacing: -0.035em;
      font-weight: 600;
      text-wrap: balance;
      margin-bottom: 28px;
    }
    .thin { font-weight: 300; color: var(--ink-2); }
    .hero__lede {
      font-size: clamp(17px, 1.6vw, 20px);
      line-height: 1.62;
      color: var(--ink-2);
      max-width: 38ch;
      margin-bottom: 38px;
    }
    .hero__lede strong { color: var(--ink); font-weight: 600; }
    .hero__actions {
      display: flex;
      align-items: center;
      gap: 24px;
      flex-wrap: wrap;
      margin-bottom: 34px;
    }
    .hero__actions .btn { padding: 16px 27px; font-size: 16px; }
    .hero__actions .link { font-size: 15.5px; }
    .hero__stat {
      font-family: var(--mono);
      font-size: 12.5px;
      font-weight: 500;
      color: var(--ink-3);
      font-variant-numeric: tabular-nums;
    }
    .hero__stat b { color: var(--ink); font-weight: 500; }

    /* The window */
    .hero__win { min-width: 0; max-width: min(100%, 540px); margin-left: auto; width: 100%; }
    .hero__frame {
      position: relative;
      border-radius: var(--radius-win);
      background: transparent;
      box-shadow: 0 2px 6px rgba(21, 25, 34, 0.12), 0 18px 44px rgba(21, 25, 34, 0.20), 0 54px 110px rgba(21, 25, 34, 0.18);
    }
    @keyframes heroFloat {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-9px); }
    }
    @property --halo {
      syntax: '<angle>';
      initial-value: 0deg;
      inherits: true;
    }
    .hero__frame {
      padding: 0;
      animation: heroFloat 8.5s ease-in-out infinite, haloDrift 16s linear infinite;
    }
    @keyframes haloDrift { to { --halo: 360deg; } }
    /* soft spectral halo: light refracting around the portal edge */
    .hero__frame::before {
      content: "";
      position: absolute;
      inset: -7px;
      z-index: -1;
      border-radius: 33px;
      background: conic-gradient(from var(--halo),
        #6f8bff, #b06fff, #ff6fd8, #5fd4c8, #7fc3ff, #6f8bff);
      filter: blur(20px) saturate(1.3);
      opacity: 0.5;
    }
    /* the opening's cut edge: ambient occlusion + light wrap from the other side */
    .hero__rim {
      position: absolute;
      inset: 0;
      z-index: 3;
      border-radius: inherit;
      pointer-events: none;
      box-shadow:
        inset 0 0 30px rgba(120, 150, 255, 0.16),
        inset 0 2px 12px rgba(21, 25, 34, 0.22);
    }
    /* dichroic band right on the cut, counter-rotating against the spill */
    .hero__ring {
      position: absolute;
      inset: -3px;
      z-index: 5;
      border-radius: calc(var(--radius-win) + 3px);
      pointer-events: none;
      padding: 3px;
      background: conic-gradient(from calc(360deg - var(--halo)),
        #6f8bff, #b06fff, #ff6fd8, #5fd4c8, #7fc3ff, #6f8bff);
      mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
      mask-composite: exclude;
      -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
      -webkit-mask-composite: xor;
      opacity: 1;
    }
    .hero__carousel {
      display: flex;
      overflow-x: scroll;
      overflow-y: hidden;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
      border-radius: var(--radius-win);
      aspect-ratio: 1 / 1;
      background: #10151d;
      cursor: grab;
    }
    .hero__carousel::-webkit-scrollbar { display: none; }
    .hero__carousel.dragging, .hero__carousel.dragging * { cursor: grabbing; }
    .hero__frame::after {
      content: "";
      position: absolute;
      left: 0; right: 0; top: 0;
      height: 38%;
      pointer-events: none;
      background: linear-gradient(180deg, rgba(255,255,255,.09), transparent);
      mix-blend-mode: screen;
      border-radius: inherit;
      z-index: 3;
    }
    .hero__slide {
      position: relative;
      flex: 0 0 100%;
      scroll-snap-align: start;
      overflow: hidden;
    }
    .hero__media { position: absolute; inset: 0; }
    .hero__media video, .hero__media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .hero__gradient {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(23, 26, 33, 0.55), rgba(23, 26, 33, 0.12) 38%, transparent 55%);
      pointer-events: none;
    }
    .hero__content {
      position: absolute;
      left: 18px;
      right: 18px;
      bottom: 16px;
      z-index: 2;
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      column-gap: 14px;
      align-items: end;
    }
    .hero__content > :not(.hero__cta) { grid-column: 1; }
    .hero__label {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-family: var(--mono);
      font-size: 10.5px;
      font-weight: 500;
      color: rgba(255, 255, 255, 0.85);
      margin-bottom: 5px;
    }
    .hero__label svg { width: 11px; height: 11px; }
    .hero__premium-badge {
      font-family: var(--mono);
      font-size: 9.5px;
      font-weight: 500;
      color: var(--ink);
      background: rgba(250, 251, 253, 0.85);
      padding: 2px 8px;
      border-radius: 999px;
      margin-left: 4px;
    }
    .hero__title {
      font-size: clamp(17px, 1.7vw, 21px);
      font-weight: 600;
      letter-spacing: -0.015em;
      line-height: 1.25;
      color: #fff;
      text-shadow: 0 1px 12px rgba(23, 26, 33, 0.3);
    }
    .hero__tagline {
      font-size: 13px;
      color: rgba(255, 255, 255, 0.85);
      line-height: 1.45;
      margin-top: 3px;
    }
    .hero__meta {
      font-family: var(--mono);
      font-size: 11px;
      font-weight: 500;
      color: rgba(255, 255, 255, 0.75);
      font-variant-numeric: tabular-nums;
      margin-top: 4px;
    }
    .hero__cta {
      grid-column: 2;
      grid-row: 1 / span 4;
      align-self: end;
    }
    .hero__cta {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      padding: 10px 16px;
      border-radius: 12px;
      font-size: 13.5px;
      font-weight: 600;
      background: var(--ink);
      color: #fff;
      box-shadow: var(--btn-shadow);
      transition: transform 0.16s, box-shadow 0.16s;
      white-space: nowrap;
    }
    .hero__cta:hover { transform: translateY(-1px); box-shadow: var(--btn-shadow-hover); }
    .hero__cta svg { width: 14px; height: 14px; }

    .hero__grip {
      display: none;
      width: 52px;
      height: 5px;
      border-radius: 3px;
      margin: 14px auto 0;
      background: rgba(23, 26, 33, 0.20);
      box-shadow: 0 1px 3px rgba(255,255,255,.7);
    }
    .hero__dots {
      display: flex;
      justify-content: center;
      gap: 7px;
      margin-top: 12px;
      min-height: 6px;
    }
    .hero__dot {
      width: 6px;
      height: 6px;
      border: 0;
      border-radius: 3px;
      background: rgba(23, 26, 33, 0.18);
      cursor: pointer;
      padding: 0;
      transition: width 0.22s, background 0.22s;
    }
    .hero__dot.active { width: 18px; background: var(--ink); }

    /* ============================================================
       Sections & shelves
       ============================================================ */
    .section { padding: clamp(30px, 4.5vw, 56px) 0; }
    .section__header {
      display: flex;
      align-items: baseline;
      justify-content: space-between;
      gap: 20px;
      flex-wrap: wrap;
      margin-bottom: clamp(18px, 2.5vw, 26px);
    }
    .section__title {
      font-size: clamp(24px, 3vw, 34px);
      font-weight: 600;
      letter-spacing: -0.025em;
    }
    .section__link {
      font-size: 15px;
      font-weight: 500;
      color: var(--tint);
      transition: color 0.18s;
    }
    .section__link:hover { color: var(--tint-deep); }

    .shelf-container { position: relative; }
    .shelf {
      display: flex;
      gap: clamp(16px, 2vw, 24px);
      overflow-x: auto;
      scroll-snap-type: x proximity;
      scrollbar-width: none;
      padding: 6px 4px 40px;
      margin-bottom: -18px;
    }
    .shelf::-webkit-scrollbar { display: none; }
    .shelf--loading { min-height: 240px; }
    .shelf-arrow {
      position: absolute;
      top: 38%;
      transform: translateY(-50%);
      z-index: 5;
      width: 44px;
      height: 44px;
      border: 0;
      border-radius: 22px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      color: var(--ink);
      background: rgba(250, 251, 253, 0.82);
      -webkit-backdrop-filter: blur(10px) saturate(1.6);
      backdrop-filter: blur(10px) saturate(1.6);
      box-shadow: 0 0 0 1px rgba(23,26,33,.08), 0 4px 12px rgba(21,25,34,.14);
      transition: transform 0.16s, opacity 0.16s;
    }
    .shelf-arrow:hover { transform: translateY(-50%) scale(1.05); }
    .shelf-arrow--left { left: -10px; }
    .shelf-arrow--right { right: -10px; }
    .shelf-arrow.disabled { opacity: 0; pointer-events: none; }
    .shelf-arrow svg { width: 18px; height: 18px; }
    .scroll-indicators {
      display: none;
      justify-content: center;
      gap: 6px;
      margin-top: 2px;
    }
    .scroll-dot {
      width: 5px;
      height: 5px;
      border-radius: 3px;
      background: rgba(23, 26, 33, 0.18);
      transition: width 0.22s, background 0.22s;
    }
    .scroll-dot.active { width: 14px; background: var(--ink); }

    /* ---------- Video cards (contract: .card/.card__img/.card__body/.card__title) ---------- */
    .card {
      flex: 0 0 clamp(238px, 23vw, 296px);
      display: flex;
      flex-direction: column;
      gap: 12px;
      scroll-snap-align: start;
      transition: transform 0.22s ease;
    }
    .card:hover { transform: translateY(-4px); }
    .card__img {
      position: relative;
      border-radius: var(--radius-card);
      background: #cdd2d9;
      box-shadow: var(--card-shadow);
      aspect-ratio: 16 / 10;
      overflow: hidden;
      transition: box-shadow 0.22s;
    }
    .card__img::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 2;
      pointer-events: none;
      border-radius: inherit;
      box-shadow: var(--screen-rim);
    }
    .card:hover .card__img { box-shadow: var(--card-shadow-hover); }
    .card__img img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .card__duration, .card__date {
      position: absolute;
      z-index: 3;
      bottom: 10px;
      right: 10px;
      font-family: var(--mono);
      font-size: 10.5px;
      font-weight: 500;
      color: var(--ink);
      padding: 4px 9px;
      border-radius: 999px;
      background: rgba(250, 251, 253, 0.82);
      -webkit-backdrop-filter: blur(10px);
      backdrop-filter: blur(10px);
      box-shadow: 0 0 0 1px rgba(23,26,33,.08), 0 4px 12px rgba(21,25,34,.14);
      font-variant-numeric: tabular-nums;
    }
    .card__date { right: auto; left: 10px; }
    .card__premium {
      position: absolute;
      z-index: 3;
      top: 10px;
      right: 10px;
      font-size: 10.5px;
      font-weight: 600;
      letter-spacing: 0.01em;
      color: var(--ink);
      padding: 5px 10px;
      border-radius: 999px;
      background: rgba(250, 251, 253, 0.82);
      -webkit-backdrop-filter: blur(10px);
      backdrop-filter: blur(10px);
      box-shadow: 0 0 0 1px rgba(23,26,33,.08), 0 4px 12px rgba(21,25,34,.14);
    }
    .card__body {
      display: flex;
      flex-direction: column;
      gap: 3px;
      padding: 0 3px;
    }
    .card__title {
      order: 1;
      font-size: 16.5px;
      font-weight: 600;
      letter-spacing: -0.015em;
      line-height: 1.3;
    }
    .card__location {
      order: 2;
      font-family: var(--mono);
      font-size: 11.5px;
      font-weight: 500;
      color: var(--ink-3);
      font-variant-numeric: tabular-nums;
    }
    .card__tags { order: 3; display: flex; gap: 6px; flex-wrap: wrap; margin-top: 3px; }
    .card__tag {
      font-family: var(--mono);
      font-size: 10px;
      font-weight: 500;
      color: var(--ink-2);
      padding: 2px 8px;
      border-radius: 999px;
      background: rgba(23, 26, 33, 0.045);
      box-shadow: inset 0 0 0 1px var(--line-2);
    }

    /* ---------- Country cards ---------- */
    .country-card {
      flex: 0 0 clamp(200px, 18vw, 240px);
      display: flex;
      flex-direction: column;
      gap: 12px;
      scroll-snap-align: start;
      position: relative;
      transition: transform 0.22s ease;
    }
    .country-card:hover { transform: translateY(-4px); }
    .country-card img {
      width: 100%;
      aspect-ratio: 4 / 3;
      object-fit: cover;
      border-radius: var(--radius-card);
      background: #cdd2d9;
      box-shadow: var(--card-shadow);
      transition: box-shadow 0.22s;
    }
    .country-card:hover img { box-shadow: var(--card-shadow-hover); }
    .country-card__overlay { display: none; }
    .country-card__body { padding: 0 3px; }
    .country-card__name {
      font-size: 16.5px;
      font-weight: 600;
      letter-spacing: -0.015em;
    }
    .country-card__count {
      font-family: var(--mono);
      font-size: 11.5px;
      font-weight: 500;
      color: var(--ink-3);
      font-variant-numeric: tabular-nums;
    }

    /* ============================================================
       Value props — quiet editorial columns
       ============================================================ */
    .value-prop { padding: clamp(44px, 7vw, 84px) 0; }
    .value-prop__tagline {
      font-size: clamp(28px, 4vw, 50px);
      font-weight: 600;
      letter-spacing: -0.03em;
      line-height: 1.02;
      text-wrap: balance;
      max-width: 22ch;
    }
    .value-prop__subtitle {
      font-size: clamp(15px, 1.4vw, 17.5px);
      color: var(--ink-2);
      max-width: 52ch;
      margin-top: 12px;
    }
    .value-prop__features {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: clamp(24px, 3.5vw, 48px);
      margin-top: clamp(28px, 4vw, 48px);
      border-top: 1px solid var(--line);
      padding-top: clamp(24px, 3.5vw, 40px);
    }
    .value-prop__icon { display: none; }
    .value-prop__title {
      font-size: clamp(19px, 1.9vw, 23px);
      font-weight: 600;
      letter-spacing: -0.02em;
      margin-bottom: 8px;
    }
    .value-prop__desc {
      font-size: 15.5px;
      line-height: 1.55;
      color: var(--ink-2);
      max-width: 40ch;
    }
    .value-prop__desc a { color: var(--tint); font-weight: 500; }
    .value-prop__desc a:hover { color: var(--tint-deep); }

    /* ============================================================
       Social proof
       ============================================================ */
    .social-proof { padding: clamp(44px, 7vw, 84px) 0; }
    .social-proof__title {
      font-size: clamp(28px, 4vw, 50px);
      font-weight: 600;
      letter-spacing: -0.03em;
      line-height: 1.02;
    }
    .social-proof__stats {
      display: flex;
      gap: clamp(28px, 5vw, 72px);
      flex-wrap: wrap;
      margin-top: clamp(24px, 3.5vw, 40px);
    }
    .social-proof__stat-value {
      font-size: clamp(26px, 3.4vw, 38px);
      font-weight: 600;
      letter-spacing: -0.02em;
      font-variant-numeric: tabular-nums;
    }
    .social-proof__stat-label {
      font-size: 13.5px;
      color: var(--ink-3);
      margin-top: 3px;
    }
    .social-proof__badges {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      margin-top: clamp(22px, 3vw, 32px);
    }
    .social-proof__badge {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 9px 16px 9px 11px;
      border-radius: 999px;
      background: rgba(250, 251, 253, 0.72);
      -webkit-backdrop-filter: blur(14px) saturate(1.6);
      backdrop-filter: blur(14px) saturate(1.6);
      box-shadow: 0 0 0 1px rgba(23,26,33,.06), 0 6px 18px rgba(21,25,34,.14);
    }
    .social-proof__badge-icon {
      width: 28px;
      height: 28px;
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: var(--ink);
      color: #fff;
      flex-shrink: 0;
    }
    .social-proof__badge-icon svg { width: 14px; height: 14px; }
    .social-proof__badge-title { font-size: 13px; font-weight: 600; line-height: 1.2; }
    .social-proof__badge-subtitle { font-size: 11.5px; color: var(--ink-2); }
    .testimonials {
      columns: 3 280px;
      column-gap: 20px;
      margin-top: clamp(28px, 4vw, 44px);
    }
    .testimonial {
      break-inside: avoid;
      margin-bottom: 20px;
      padding: 22px;
      border-radius: var(--radius-card);
      background: var(--surface);
      box-shadow: var(--win-shadow-soft);
    }
    .testimonial__stars {
      color: var(--star);
      font-size: 12px;
      letter-spacing: 2px;
      margin-bottom: 10px;
    }
    .testimonial__text {
      font-size: 15px;
      line-height: 1.55;
      color: var(--ink);
    }
    .testimonial--featured .testimonial__text { font-size: 17px; font-weight: 500; }
    .testimonial__author { font-size: 13px; font-weight: 600; margin-top: 12px; }
    .testimonial__source {
      font-family: var(--mono);
      font-size: 10.5px;
      color: var(--ink-3);
      margin-top: 2px;
    }

    /* ============================================================
       Tech specs — instrument readout
       ============================================================ */
    .tech-specs { padding: clamp(30px, 4.5vw, 56px) 0; }
    .tech-specs__title {
      font-size: clamp(24px, 3vw, 34px);
      font-weight: 600;
      letter-spacing: -0.025em;
      margin-bottom: clamp(18px, 2.5vw, 26px);
    }
    .tech-specs__grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1px;
      border-radius: var(--radius-win);
      background: var(--surface);
      box-shadow: var(--win-shadow-soft);
      overflow: hidden;
    }
    .tech-spec {
      padding: clamp(22px, 3vw, 34px) clamp(18px, 2.5vw, 28px);
      box-shadow: 0 0 0 0.5px var(--line-2);
    }
    .tech-spec__value {
      font-family: var(--mono);
      font-size: clamp(22px, 2.6vw, 30px);
      font-weight: 500;
      letter-spacing: -0.01em;
      font-variant-numeric: tabular-nums;
    }
    .tech-spec__icon { color: var(--ink); height: clamp(28px, 3.2vw, 38px); display: flex; align-items: center; }
    .tech-spec__icon svg { width: 30px; height: 30px; }
    .tech-spec__label {
      font-size: 13px;
      color: var(--ink-3);
      margin-top: 6px;
    }

    /* ============================================================
       Press
       ============================================================ */
    .press-mentions { padding: clamp(30px, 4.5vw, 56px) 0; }
    .press-mentions__title {
      font-family: var(--mono);
      font-size: 12px;
      font-weight: 500;
      color: var(--ink-3);
      text-align: center;
      margin-bottom: 22px;
    }
    .press-mentions__logos {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: clamp(28px, 5vw, 56px);
      flex-wrap: wrap;
    }
    .press-logo {
      height: 22px;
      width: auto;
      filter: brightness(0);
      opacity: 0.45;
      transition: opacity 0.18s;
    }
    .press-logo:hover { opacity: 0.7; }

    /* ============================================================
       Impact stories
       ============================================================ */
    .impact-stories { padding: clamp(44px, 7vw, 84px) 0; }
    .impact-stories__title {
      font-size: clamp(28px, 4vw, 50px);
      font-weight: 600;
      letter-spacing: -0.03em;
      line-height: 1.02;
      margin-bottom: clamp(24px, 3.5vw, 40px);
    }
    .impact-stories__grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }
    .impact-story {
      padding: 26px;
      border-radius: var(--radius-card);
      background: var(--surface);
      box-shadow: var(--win-shadow-soft);
      display: flex;
      flex-direction: column;
    }
    .impact-story__icon { color: var(--tint); margin-bottom: 14px; }
    .impact-story__icon svg { width: 22px; height: 22px; }
    .impact-story__quote {
      font-size: 15.5px;
      line-height: 1.55;
      color: var(--ink);
      flex: 1;
    }
    .impact-story__author { font-size: 13.5px; font-weight: 600; margin-top: 16px; }
    .impact-story__detail {
      font-family: var(--mono);
      font-size: 10.5px;
      color: var(--ink-3);
      margin-top: 2px;
    }

    /* ============================================================
       Devices
       ============================================================ */
    .devices { padding: clamp(44px, 7vw, 84px) 0; }
    .devices__title {
      font-size: clamp(28px, 4vw, 50px);
      font-weight: 600;
      letter-spacing: -0.03em;
      line-height: 1.02;
    }
    .devices__subtitle {
      font-size: clamp(15px, 1.4vw, 17.5px);
      color: var(--ink-2);
      margin-top: 10px;
    }
    .devices__grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 18px;
      margin-top: clamp(24px, 3.5vw, 40px);
    }
    .device-card {
      padding: 24px 22px;
      border-radius: var(--radius-card);
      background: var(--surface);
      box-shadow: var(--win-shadow-soft);
      display: flex;
      flex-direction: column;
      transition: transform 0.22s ease, box-shadow 0.22s;
    }
    .device-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--card-shadow-hover);
    }
    .device-card__icon {
      height: 32px;
      display: flex;
      align-items: center;
      color: var(--ink);
      margin-bottom: 16px;
    }
    .device-card__icon svg { width: 26px; height: 26px; }
    .device-card__logo {
      height: 22px;
      width: auto;
      filter: brightness(0);
      opacity: 0.8;
    }
    .device-card__name {
      font-size: 17px;
      font-weight: 600;
      letter-spacing: -0.015em;
    }
    .device-card__meta {
      font-size: 13px;
      color: var(--ink-2);
      line-height: 1.45;
      margin-top: 5px;
      flex: 1;
    }
    .device-card__link {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 14px;
      font-weight: 500;
      color: var(--tint);
      margin-top: 16px;
      transition: gap 0.18s, color 0.18s;
    }
    .device-card:hover .device-card__link { gap: 10px; color: var(--tint-deep); }
    .device-card__link svg { width: 14px; height: 14px; }

    /* ============================================================
       FAQs
       ============================================================ */
    .faqs { padding: clamp(44px, 7vw, 84px) 0; }
    .faqs__header { margin-bottom: clamp(22px, 3vw, 32px); }
    .faqs__title {
      font-size: clamp(28px, 4vw, 50px);
      font-weight: 600;
      letter-spacing: -0.03em;
      line-height: 1.02;
    }
    .faqs__subtitle {
      font-size: clamp(15px, 1.4vw, 17.5px);
      color: var(--ink-2);
      margin-top: 10px;
    }
    .faqs__list {
      border-radius: var(--radius-win);
      background: var(--surface);
      box-shadow: var(--win-shadow-soft);
      padding: 6px clamp(18px, 2.5vw, 30px);
      max-width: 860px;
    }
    .faq { border-bottom: 1px solid var(--line-2); }
    .faq:last-child { border-bottom: 0; }
    .faq__question {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      text-align: left;
      border: 0;
      background: transparent;
      cursor: pointer;
      padding: 19px 2px;
      font-size: 16.5px;
      font-weight: 600;
      letter-spacing: -0.01em;
      color: var(--ink);
    }
    .faq__question svg {
      width: 17px;
      height: 17px;
      flex-shrink: 0;
      color: var(--ink-3);
      transition: transform 0.25s;
    }
    .faq.open .faq__question svg { transform: rotate(180deg); }
    .faq__answer {
      display: grid;
      grid-template-rows: 0fr;
      transition: grid-template-rows 0.3s ease;
    }
    .faq.open .faq__answer { grid-template-rows: 1fr; }
    .faq__answer-inner {
      overflow: hidden;
      font-size: 15px;
      line-height: 1.6;
      color: var(--ink-2);
      padding: 0 2px;
    }
    .faq.open .faq__answer-inner { padding-bottom: 20px; }
    .faq__answer-inner a { color: var(--tint); font-weight: 500; }
    .faq__answer-inner a:hover { color: var(--tint-deep); }

    /* ============================================================
       Pricing
       ============================================================ */
    .pricing { padding: clamp(44px, 7vw, 84px) 0; }
    .pricing__header { margin-bottom: clamp(22px, 3vw, 32px); }
    .pricing__title {
      font-size: clamp(28px, 4vw, 50px);
      font-weight: 600;
      letter-spacing: -0.03em;
      line-height: 1.02;
    }
    .pricing__subtitle {
      font-size: clamp(15px, 1.4vw, 17.5px);
      color: var(--ink-2);
      margin-top: 10px;
    }
    .pricing__cards {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      max-width: 940px;
    }
    .pricing-card {
      position: relative;
      padding: 26px 24px;
      border-radius: var(--radius-win);
      background: var(--surface);
      box-shadow: var(--win-shadow-soft);
      cursor: pointer;
      display: flex;
      flex-direction: column;
      gap: 6px;
      transition: transform 0.22s ease, box-shadow 0.22s;
    }
    .pricing-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--card-shadow-hover);
    }
    .pricing-card--featured {
      box-shadow: 0 0 0 2px var(--ink), var(--card-shadow);
    }
    .pricing-card__badge {
      position: absolute;
      top: -12px;
      left: 22px;
      font-size: 11px;
      font-weight: 600;
      color: #fff;
      background: var(--ink);
      padding: 5px 11px;
      border-radius: 999px;
      box-shadow: var(--btn-shadow);
    }
    .pricing-card__name { font-size: 15px; font-weight: 600; color: var(--ink-2); }
    .pricing-card__price { display: flex; align-items: baseline; gap: 4px; }
    .pricing-card__amount {
      font-size: clamp(26px, 3vw, 34px);
      font-weight: 600;
      letter-spacing: -0.02em;
      font-variant-numeric: tabular-nums;
    }
    .pricing-card__savings {
      font-family: var(--mono);
      font-size: 11px;
      font-weight: 500;
      color: var(--ink-3);
      min-height: 16px;
    }
    .pricing-card__cta {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      margin-top: 14px;
      padding: 12px;
      border-radius: 14px;
      font-size: 14.5px;
      font-weight: 600;
      background: var(--ink);
      color: #fff;
      box-shadow: var(--btn-shadow);
      transition: transform 0.16s, box-shadow 0.16s;
    }
    .pricing-card:hover .pricing-card__cta { transform: translateY(-1px); box-shadow: var(--btn-shadow-hover); }

    /* ============================================================
       Footer
       ============================================================ */
    .footer {
      margin-top: clamp(36px, 5vw, 64px);
      border-top: 1px solid var(--line);
      background: linear-gradient(180deg, transparent, rgba(250, 251, 253, 0.5));
    }
    .footer__inner {
      max-width: 1240px;
      margin: 0 auto;
      padding: clamp(36px, 5vw, 56px) clamp(20px, 5vw, 64px) 32px;
    }
    .footer__logo {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-size: 16px;
      font-weight: 600;
      letter-spacing: -0.02em;
      margin-bottom: 8px;
    }
    .footer__logo img { width: 26px; height: 26px; border-radius: 50%; }
    .footer__dest {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      padding: 18px 0 6px;
      margin-bottom: clamp(22px, 3vw, 34px);
      border-bottom: 1px solid var(--line-2);
      padding-bottom: clamp(22px, 3vw, 30px);
    }
    .dest-chip {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      padding: 7px 13px;
      border-radius: 999px;
      font-size: 13px;
      font-weight: 500;
      color: var(--ink);
      background: rgba(23, 26, 33, 0.045);
      box-shadow: inset 0 0 0 1px var(--line-2);
      transition: background 0.16s;
    }
    .dest-chip:hover { background: rgba(23, 26, 33, 0.09); }
    .dest-chip .n {
      font-family: var(--mono);
      font-size: 10.5px;
      font-weight: 500;
      color: var(--ink-3);
      font-variant-numeric: tabular-nums;
    }
    .footer__sections {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
      gap: 28px 20px;
    }
    .footer__section { display: flex; flex-direction: column; gap: 9px; }
    .footer__heading {
      font-size: 12.5px;
      font-weight: 600;
      color: var(--ink-3);
      letter-spacing: 0.01em;
      margin-bottom: 3px;
    }
    .footer__section a, .footer__link {
      font-size: 14px;
      color: var(--ink-2);
      transition: color 0.16s;
    }
    .footer__section a:hover, .footer__link:hover { color: var(--ink); }
    .footer__links { list-style: none; display: flex; flex-direction: column; gap: 9px; }
    .footer__copy {
      display: block;
      margin-top: clamp(28px, 4vw, 40px);
      padding-top: 20px;
      border-top: 1px solid var(--line-2);
      font-family: var(--mono);
      font-size: 11px;
      color: var(--ink-3);
    }
    .footer__copy::after {
      content: "No CGI. No game engine. Real places.";
      float: right;
    }

    /* ============================================================
       Auth modal
       ============================================================ */
    .auth-modal {
      position: fixed;
      inset: 0;
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 20px;
      background: rgba(214, 217, 224, 0.55);
      -webkit-backdrop-filter: blur(18px) saturate(1.4);
      backdrop-filter: blur(18px) saturate(1.4);
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.22s;
    }
    .auth-modal.visible { opacity: 1; pointer-events: auto; }
    .auth-modal__content {
      width: min(400px, 100%);
      border-radius: var(--radius-win);
      background: var(--surface);
      box-shadow: var(--win-shadow);
      padding: 34px 30px 28px;
      text-align: center;
      transform: translateY(10px);
      transition: transform 0.22s;
    }
    .auth-modal.visible .auth-modal__content { transform: none; }
    .auth-modal__icon {
      width: 52px;
      height: 52px;
      border-radius: 26px;
      margin: 0 auto 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(23, 26, 33, 0.06);
      color: var(--ink);
    }
    .auth-modal__icon svg { width: 24px; height: 24px; }
    .auth-modal__title {
      font-size: 22px;
      font-weight: 600;
      letter-spacing: -0.02em;
      margin-bottom: 6px;
    }
    .auth-error {
      display: none;
      font-size: 13.5px;
      color: #C0392B;
      background: rgba(192, 57, 43, 0.08);
      border-radius: 10px;
      padding: 10px 12px;
      margin: 10px 0 2px;
    }
    .auth-error.visible, .auth-error:not(:empty) { display: block; }
    .auth-modal__buttons {
      display: flex;
      flex-direction: column;
      gap: 10px;
      margin-top: 20px;
    }
    .auth-btn {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      width: 100%;
      border: 0;
      cursor: pointer;
      padding: 13px;
      border-radius: 14px;
      font-size: 15px;
      font-weight: 600;
      transition: transform 0.16s, box-shadow 0.16s;
    }
    .auth-btn svg { width: 18px; height: 18px; }
    .auth-btn--apple {
      background: var(--ink);
      color: #fff;
      box-shadow: var(--btn-shadow);
    }
    .auth-btn--apple:hover { transform: translateY(-1px); box-shadow: var(--btn-shadow-hover); }
    .auth-btn--google {
      background: var(--surface);
      color: var(--ink);
      box-shadow: 0 0 0 1px var(--line), 0 2px 8px rgba(21,25,34,.08);
    }
    .auth-btn--google:hover { transform: translateY(-1px); box-shadow: 0 0 0 1px var(--line), 0 6px 16px rgba(21,25,34,.14); }
    .auth-newsletter {
      display: flex;
      align-items: flex-start;
      gap: 9px;
      margin-top: 18px;
      text-align: left;
      cursor: pointer;
    }
    .auth-newsletter input { margin-top: 3px; accent-color: var(--tint); }
    .auth-newsletter__text { font-size: 12.5px; color: var(--ink-2); line-height: 1.45; }

    /* Auth loading */
    .auth-loading {
      position: fixed;
      inset: 0;
      z-index: 110;
      display: none;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 14px;
      background: rgba(230, 232, 236, 0.92);
      -webkit-backdrop-filter: blur(20px);
      backdrop-filter: blur(20px);
    }
    .auth-loading.visible { display: flex; }
    .auth-loading__logo { width: 52px; height: 52px; border-radius: 50%; box-shadow: var(--card-shadow); }
    .auth-loading__spinner {
      width: 26px;
      height: 26px;
      border: 3px solid var(--line);
      border-top-color: var(--ink);
      border-radius: 50%;
      animation: spin 0.8s linear infinite;
    }
    @keyframes spin { to { transform: rotate(360deg); } }
    .auth-loading__text { font-size: 16px; font-weight: 600; }
    .auth-loading__subtext { font-size: 13.5px; color: var(--ink-2); }

    /* ============================================================
       Paywall modal
       ============================================================ */
    .paywall-modal {
      position: fixed;
      inset: 0;
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 20px;
      background: rgba(214, 217, 224, 0.55);
      -webkit-backdrop-filter: blur(18px) saturate(1.4);
      backdrop-filter: blur(18px) saturate(1.4);
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.22s;
    }
    .paywall-modal.visible { opacity: 1; pointer-events: auto; }
    .paywall-modal__content {
      position: relative;
      width: min(440px, 100%);
      max-height: min(86vh, 720px);
      overflow-y: auto;
      border-radius: var(--radius-win);
      background: var(--surface);
      box-shadow: var(--win-shadow);
      padding: 30px 26px 24px;
      transform: translateY(10px);
      transition: transform 0.22s;
    }
    .paywall-modal.visible .paywall-modal__content { transform: none; }
    .paywall-modal__close {
      position: absolute;
      top: 14px;
      right: 14px;
      width: 32px;
      height: 32px;
      border: 0;
      border-radius: 16px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--ink-2);
      background: rgba(23, 26, 33, 0.05);
      transition: background 0.16s, color 0.16s;
    }
    .paywall-modal__close:hover { background: rgba(23, 26, 33, 0.1); color: var(--ink); }
    .paywall-modal__close svg { width: 16px; height: 16px; }
    .paywall-modal__header { text-align: center; }
    .paywall-modal__icon {
      width: 48px;
      height: 48px;
      border-radius: 24px;
      margin: 0 auto 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(23, 26, 33, 0.06);
      color: var(--ink);
    }
    .paywall-modal__icon svg { width: 22px; height: 22px; }
    .paywall-modal__title {
      font-size: 21px;
      font-weight: 600;
      letter-spacing: -0.02em;
    }
    .paywall-modal__subtitle {
      font-size: 13.5px;
      line-height: 1.5;
      color: var(--ink-2);
      margin-top: 6px;
    }
    .paywall-modal__benefits {
      display: flex;
      flex-direction: column;
      gap: 8px;
      margin: 18px 0 4px;
    }
    .paywall-benefit { display: flex; align-items: center; gap: 9px; }
    .paywall-benefit__icon { width: 15px; height: 15px; color: var(--tint); flex-shrink: 0; }
    .paywall-benefit__text { font-size: 13.5px; color: var(--ink-2); }
    .paywall-modal__images {
      display: flex;
      gap: 8px;
      margin: 14px 0 4px;
    }
    .paywall-modal__images img {
      flex: 1;
      min-width: 0;
      aspect-ratio: 16 / 10;
      object-fit: cover;
      border-radius: 12px;
      box-shadow: 0 0 0 1px var(--line-2), 0 4px 12px rgba(21,25,34,.12);
    }
    .paywall-modal__packages {
      display: flex;
      flex-direction: column;
      gap: 9px;
      margin-top: 14px;
    }
    .paywall-modal__loading {
      font-size: 13.5px;
      color: var(--ink-3);
      text-align: center;
      padding: 14px;
    }
    .paywall-package {
      position: relative;
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 13px 14px;
      border-radius: 14px;
      background: var(--surface);
      box-shadow: 0 0 0 1px var(--line);
      cursor: pointer;
      transition: box-shadow 0.16s, background 0.16s;
    }
    .paywall-package:hover { box-shadow: 0 0 0 1px var(--ink-3); }
    .paywall-package.selected {
      box-shadow: 0 0 0 2px var(--tint);
      background: rgba(58, 99, 230, 0.04);
    }
    .paywall-package__badge {
      position: absolute;
      top: -9px;
      right: 12px;
      font-size: 10px;
      font-weight: 600;
      color: #fff;
      background: var(--tint);
      padding: 3px 9px;
      border-radius: 999px;
    }
    .paywall-package__radio {
      width: 18px;
      height: 18px;
      border-radius: 9px;
      border: 2px solid var(--line);
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .paywall-package.selected .paywall-package__radio { border-color: var(--tint); }
    .paywall-package.selected .paywall-package__radio::after {
      content: "";
      width: 8px;
      height: 8px;
      border-radius: 4px;
      background: var(--tint);
    }
    .paywall-package__info { flex: 1; min-width: 0; }
    .paywall-package__name { font-size: 14.5px; font-weight: 600; }
    .paywall-package__detail {
      font-family: var(--mono);
      font-size: 10.5px;
      color: var(--ink-3);
      margin-top: 1px;
    }
    .paywall-package__price { text-align: right; }
    .paywall-package__amount {
      font-size: 16px;
      font-weight: 600;
      font-variant-numeric: tabular-nums;
    }
    .paywall-modal__cta {
      width: 100%;
      border: 0;
      cursor: pointer;
      margin-top: 16px;
      padding: 14px;
      border-radius: 14px;
      font-size: 15.5px;
      font-weight: 600;
      background: var(--ink);
      color: #fff;
      box-shadow: var(--btn-shadow);
      transition: transform 0.16s, box-shadow 0.16s, opacity 0.16s;
    }
    .paywall-modal__cta:hover:not(:disabled) { transform: translateY(-1px); box-shadow: var(--btn-shadow-hover); }
    .paywall-modal__cta:disabled { opacity: 0.45; cursor: default; }
    .paywall-modal__footer {
      display: flex;
      justify-content: center;
      gap: 18px;
      margin-top: 14px;
    }
    .paywall-modal__footer a {
      font-size: 12px;
      color: var(--ink-3);
      transition: color 0.16s;
    }
    .paywall-modal__footer a:hover { color: var(--ink); }

    /* ============================================================
       Responsive
       ============================================================ */
    @media (max-width: 1040px) {
      .hero {
        grid-template-columns: 1fr;
        justify-content: center;
        gap: 44px;
        padding-top: clamp(96px, 12vh, 130px);
        min-height: 0;
        text-align: center;
      }
      .hero__copy { max-width: 560px; margin: 0 auto; }
      .hero__lede { margin-left: auto; margin-right: auto; }
      .hero__actions { justify-content: center; }
      .hero__win { margin: 0 auto; max-width: min(100%, 500px); }
    }

    @media (max-width: 980px) {
      .value-prop__features { grid-template-columns: 1fr; gap: 28px; }
      .impact-stories__grid { grid-template-columns: 1fr; }
      .tech-specs__grid { grid-template-columns: repeat(2, 1fr); }
      .pricing__cards { grid-template-columns: 1fr; max-width: 480px; }
    }

    @media (max-width: 768px) {
      .nav { justify-content: space-between; }
      .nav__links { display: none; }
      .nav__globe { display: flex; }
      .nav__toggle { display: flex; }
      .nav__btn { padding: 11px 15px; }
      .nav { gap: 8px; }
    }

    @media (max-width: 430px) {
      .nav__logo span { display: none; }
      .nav__logo { padding: 9px 11px; }
      .shelf-arrow { display: none; }
      .scroll-indicators { display: flex; }
      .card { flex-basis: min(76vw, 300px); }
      .country-card { flex-basis: min(56vw, 230px); }
      .testimonials { columns: 1; }
      .footer__copy::after { float: none; display: block; margin-top: 6px; }
    }

    @media (prefers-reduced-motion: reduce) {
      html { scroll-behavior: auto; }
      *, *::before, *::after { animation-duration: 0.001s !important; transition-duration: 0.001s !important; }
      .hero__frame { animation: none; }
      .hero__frame::before { opacity: 0.3; }
    }

    /* ---------- Hero VR demo ---------- */
    .hero__demo {
      position: absolute;
      inset: 0;
      z-index: 2;
      border-radius: inherit;
      overflow: hidden;
      background: #0d1117;
      opacity: 0;
      transition: opacity 0.9s ease;
    }
    .hero__demo.on { opacity: 1; }
    .hero__demo-canvas { position: absolute; inset: 0; z-index: 0; }
    .hero__demo-canvas canvas {
      display: block;
      width: 100%;
      height: 100%;
      cursor: grab;
      touch-action: none;
    }
    .hero__demo-canvas.dragging canvas { cursor: grabbing; }
    .hero__demo .hero__gradient { z-index: 1; }
    .hero__demo-ui { z-index: 3; pointer-events: none; }
    .hero__demo-ui .hero__cta { pointer-events: auto; }
    .hero__demo-hint {
      position: absolute;
      inset: 0;
      z-index: 4;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 16px;
      pointer-events: none;
      opacity: 0;
      transition: opacity 0.5s ease;
    }
    .hero__demo-hint.show { opacity: 1; }
    .hero__demo-hint.rest .hero__demo-touch { animation: touchPulse 2.6s ease-in-out infinite; }
    @keyframes touchPulse {
      0%, 100% { transform: scale(1); opacity: 0.95; }
      50% { transform: scale(0.82); opacity: 0.55; }
    }
    .hero__demo-touch {
      width: 30px;
      height: 30px;
      border-radius: 15px;
      background: rgba(250, 251, 253, 0.35);
      box-shadow: 0 0 0 1.5px rgba(255, 255, 255, 0.9), 0 6px 18px rgba(21, 25, 34, 0.35);
      -webkit-backdrop-filter: blur(4px);
      backdrop-filter: blur(4px);
      transition: transform 0.2s ease;
    }
    .hero__demo-hint-label {
      font-family: var(--mono);
      font-size: 11px;
      font-weight: 500;
      color: #fff;
      background: rgba(23, 26, 33, 0.35);
      padding: 6px 13px;
      border-radius: 999px;
      -webkit-backdrop-filter: blur(8px);
      backdrop-filter: blur(8px);
    }
    .hero__frame.demo-mode .hero__carousel { visibility: hidden; }
