    /* ============================================================
       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(320px, 0.92fr) minmax(0, 1.08fr);
      gap: clamp(28px, 4.5vw, 72px);
      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: 22px;
    }
    .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(38px, 5.4vw, 68px);
      line-height: 0.99;
      letter-spacing: -0.035em;
      font-weight: 600;
      text-wrap: balance;
      margin-bottom: 20px;
    }
    .thin { font-weight: 300; color: var(--ink-2); }
    .hero__lede {
      font-size: clamp(16px, 1.5vw, 18.5px);
      line-height: 1.55;
      color: var(--ink-2);
      max-width: 42ch;
      margin-bottom: 28px;
    }
    .hero__lede strong { color: var(--ink); font-weight: 600; }
    .hero__actions {
      display: flex;
      align-items: center;
      gap: 22px;
      flex-wrap: wrap;
      margin-bottom: 26px;
    }
    .hero__stat {
      font-family: var(--mono);
      font-size: 12px;
      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; }
    .hero__frame {
      position: relative;
      border-radius: var(--radius-win);
      background: var(--surface);
      box-shadow: var(--win-shadow);
      animation: heroFloat 8.5s ease-in-out infinite;
    }
    @keyframes heroFloat {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-9px); }
    }
    .hero__carousel {
      display: flex;
      overflow-x: scroll;
      overflow-y: hidden;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
      border-radius: inherit;
      aspect-ratio: 16 / 9;
      background: #cdd2d9;
      box-shadow: var(--screen-rim);
      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,.16), 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 {
      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: 980px) {
      .hero {
        grid-template-columns: 1fr;
        gap: 36px;
        padding-top: clamp(96px, 13vh, 130px);
        min-height: 0;
      }
      .hero__copy { max-width: 620px; }
      .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; }
      .hero__carousel { aspect-ratio: 4 / 3; }
      .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 VR demo ---------- */
    .hero__demo {
      position: absolute;
      inset: 0;
      z-index: 2;
      border-radius: inherit;
      overflow: hidden;
      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-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; }

    /* ============================================================
       B2B component layer (exploreimmersive.com)
       Business register, same Passthrough system. Restyles the
       hand-duplicated nav/footer + every solution/case-study
       component into the light spatial vocabulary.
       ============================================================ */

    /* ---------- Scroll reveal (main.js / destinations.js) ---------- */
    .animate-on-scroll { transition: opacity 0.6s ease, transform 0.6s ease; }
    .animate-on-scroll.will-animate:not(.visible) { opacity: 0; transform: translateY(24px); }
    .animate-on-scroll.visible { opacity: 1; transform: none; }
    .delay-1 { transition-delay: 0.06s; }
    .delay-2 { transition-delay: 0.12s; }
    .delay-3 { transition-delay: 0.18s; }
    .delay-4 { transition-delay: 0.24s; }

    /* ---------- Nav: floating glass pill ---------- */
    html.nav-open, body.nav-open { overflow: hidden; }
    .nav__inner {
      pointer-events: auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
      width: auto;
      max-width: calc(100% - 28px);
      margin: 0 auto;
      padding: 7px 8px 7px 14px;
      border-radius: 24px;
      background: rgba(250, 251, 253, 0.7);
      -webkit-backdrop-filter: blur(24px) saturate(1.7);
      backdrop-filter: blur(24px) saturate(1.7);
      box-shadow: var(--glass-ring);
    }
    .nav--scrolled .nav__inner { background: rgba(250, 251, 253, 0.82); }
    .nav__logo {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      white-space: nowrap;
      font-size: 15px;
      font-weight: 600;
      letter-spacing: -0.02em;
      color: var(--ink);
      padding: 0;
      border-radius: 0;
      background: transparent;
      box-shadow: none;
      -webkit-backdrop-filter: none;
      backdrop-filter: none;
    }
    .nav__logo-icon { width: 26px; height: 26px; border-radius: 8px; }
    .nav__links {
      display: flex;
      align-items: center;
      gap: 2px;
      list-style: none;
      margin: 0;
      padding: 0;
      border-radius: 0;
      background: transparent;
      box-shadow: none;
      -webkit-backdrop-filter: none;
      backdrop-filter: none;
    }
    .nav__links li { list-style: none; }
    .nav__link {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      font-size: 14.5px;
      font-weight: 500;
      color: var(--ink-2);
      padding: 8px 13px;
      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--app svg { width: 12px; height: 12px; }
    .nav__cta {
      display: inline-flex;
      align-items: center;
      white-space: nowrap;
      padding: 9px 16px;
      border-radius: 16px;
      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__cta:hover { transform: translateY(-1px); box-shadow: var(--btn-shadow-hover); }
    .nav__toggle {
      display: none;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 4px;
      width: 42px;
      height: 42px;
      border: 0;
      border-radius: 21px;
      background: transparent;
      box-shadow: none;
      -webkit-backdrop-filter: none;
      backdrop-filter: none;
      cursor: pointer;
      flex-shrink: 0;
    }
    .nav__toggle span {
      display: block;
      width: 18px;
      height: 2px;
      border-radius: 2px;
      background: var(--ink);
      transition: transform 0.22s, opacity 0.22s;
    }
    .nav__toggle--active span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
    .nav__toggle--active span:nth-child(2) { opacity: 0; }
    .nav__toggle--active span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

    /* Nav dropdown (desktop hover / mobile tap) */
    .nav__dropdown { position: relative; }
    .nav__dropdown-menu {
      position: absolute;
      top: calc(100% + 12px);
      left: 50%;
      transform: translateX(-50%) translateY(10px);
      min-width: 190px;
      display: flex;
      flex-direction: column;
      gap: 2px;
      padding: 8px;
      border-radius: 16px;
      background: rgba(250, 251, 253, 0.95);
      -webkit-backdrop-filter: blur(24px) saturate(1.7);
      backdrop-filter: blur(24px) saturate(1.7);
      box-shadow: var(--glass-ring), 0 20px 50px rgba(21, 25, 34, 0.16);
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transition: opacity 0.18s, transform 0.18s, visibility 0.18s;
      z-index: 70;
    }
    .nav__dropdown:hover .nav__dropdown-menu {
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
      transform: translateX(-50%) translateY(0);
    }
    .nav__dropdown-item {
      display: block;
      padding: 9px 14px;
      border-radius: 10px;
      font-size: 14px;
      font-weight: 500;
      color: var(--ink-2);
      white-space: nowrap;
      transition: color 0.16s, background 0.16s;
    }
    .nav__dropdown-item:hover { color: var(--ink); background: rgba(23, 26, 33, 0.06); }

    /* ---------- Buttons ---------- */
    .btn--primary, .btn--dark {
      background: var(--ink);
      color: #fff;
      box-shadow: var(--btn-shadow);
    }
    .btn--primary:hover, .btn--dark:hover { transform: translateY(-1px); box-shadow: var(--btn-shadow-hover); }
    .btn--outline, .btn--outline-light {
      background: transparent;
      color: var(--ink);
      box-shadow: inset 0 0 0 1px var(--line);
    }
    .btn--outline:hover, .btn--outline-light:hover {
      transform: translateY(-1px);
      background: rgba(23, 26, 33, 0.04);
      box-shadow: inset 0 0 0 1px var(--ink-3);
    }

    /* ---------- Home hero (two-column, light) ---------- */
    .hero { min-height: min(74svh, 720px); }
    .hero__title {
      font-size: clamp(38px, 5.4vw, 64px);
      line-height: 1.0;
      letter-spacing: -0.035em;
      font-weight: 600;
      color: var(--ink);
      text-shadow: none;
      text-wrap: balance;
      margin-bottom: 20px;
    }
    .hero__subtitle {
      font-size: clamp(16px, 1.5vw, 18.5px);
      line-height: 1.55;
      color: var(--ink-2);
      max-width: 46ch;
      margin-bottom: 28px;
    }
    .hero__ctas { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
    .hero__panel { min-width: 0; }
    .hero__panel-img {
      width: 100%;
      aspect-ratio: 16 / 11;
      object-fit: cover;
      border-radius: var(--radius-win);
      background: #cdd2d9;
      box-shadow: var(--win-shadow);
      animation: heroFloat 8.5s ease-in-out infinite;
    }

    /* ---------- Award banner ---------- */
    .award-banner {
      display: flex;
      align-items: center;
      gap: 11px;
      width: max-content;
      max-width: calc(100% - 40px);
      margin: 8px auto 0;
      padding: 8px 16px 8px 10px;
      border-radius: 999px;
      color: var(--ink);
      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, 0.06), 0 6px 18px rgba(21, 25, 34, 0.14);
      transition: transform 0.16s, box-shadow 0.16s;
    }
    .award-banner:hover { transform: translateY(-1px); box-shadow: 0 0 0 1px rgba(23, 26, 33, 0.08), 0 10px 26px rgba(21, 25, 34, 0.18); }
    .award-banner__icon {
      width: 28px;
      height: 28px;
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: var(--ink);
      color: #fff;
      flex-shrink: 0;
    }
    .award-banner__icon svg { width: 15px; height: 15px; }
    .award-banner__text { font-size: 13.5px; font-weight: 600; line-height: 1.2; }
    .award-banner__arrow { width: 15px; height: 15px; color: var(--ink-3); flex-shrink: 0; }

    /* ---------- Section header + section variants ---------- */
    .section-header { max-width: 760px; margin-bottom: clamp(20px, 3vw, 34px); }
    .section-header--center { margin-left: auto; margin-right: auto; text-align: center; }
    .section-header__label,
    .page-hero__label,
    .card__label,
    .partners__label {
      display: inline-block;
      font-family: var(--mono);
      font-size: 12px;
      font-weight: 500;
      color: var(--ink-3);
      letter-spacing: 0.04em;
      text-transform: uppercase;
      margin-bottom: 12px;
    }
    .section-header h2, .section-header__title {
      font-size: clamp(24px, 3vw, 34px);
      font-weight: 600;
      letter-spacing: -0.025em;
      line-height: 1.12;
      color: var(--ink);
    }
    .section-header__subtitle {
      font-size: clamp(15px, 1.4vw, 17.5px);
      color: var(--ink-2);
      line-height: 1.55;
      margin-top: 12px;
      max-width: 62ch;
    }
    .section-header--center .section-header__subtitle { margin-left: auto; margin-right: auto; }
    .section--gray {
      background: rgba(252, 253, 254, 0.6);
      box-shadow: inset 0 1px 0 var(--line-2), inset 0 -1px 0 var(--line-2);
    }
    .section--dark { background: transparent; }

    /* ---------- Prose (content-grid / story / tech / legal) ---------- */
    .content-grid h2, .story__content h2, .tech__content h2, .legal-content h2 {
      font-size: clamp(23px, 2.6vw, 32px);
      font-weight: 600;
      letter-spacing: -0.02em;
      line-height: 1.14;
      color: var(--ink);
      margin-bottom: 14px;
    }
    .legal-content h2 { margin-top: 36px; }
    .legal-content h2:first-child { margin-top: 0; }
    .content-grid p, .story__content p, .tech__content p, .legal-content p {
      font-size: 16px;
      line-height: 1.62;
      color: var(--ink-2);
      margin-bottom: 14px;
    }
    .content-grid p strong, .story__content p strong, .tech__content p strong, .legal-content p strong { color: var(--ink); font-weight: 600; }
    .content-grid p a, .story__content p a, .tech__content p a, .legal-content a { color: var(--tint); font-weight: 500; }
    .content-grid p a:hover, .story__content p a:hover, .legal-content a:hover { color: var(--tint-deep); }
    .legal-content ul { margin: 14px 0 20px; padding-left: 20px; }
    .legal-content li { font-size: 16px; line-height: 1.55; color: var(--ink-2); margin-bottom: 8px; }

    /* ---------- Content grid + images ---------- */
    .content-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: clamp(28px, 4vw, 56px);
      align-items: center;
    }
    .content-grid--reverse > *:first-child { order: 2; }
    .content-grid--reverse > *:last-child { order: 1; }
    .content__image {
      width: 100%;
      border-radius: var(--radius-card);
      background: #cdd2d9;
      box-shadow: var(--card-shadow);
    }

    /* ---------- Quote block ---------- */
    .quote-block {
      border-left: 3px solid var(--tint);
      padding: 4px 0 4px 20px;
      margin: 22px 0;
    }
    .quote-block__text { font-size: 17.5px; line-height: 1.5; color: var(--ink); font-weight: 500; }
    .quote-block__author {
      font-family: var(--mono);
      font-size: 12px;
      color: var(--ink-3);
      margin-top: 10px;
      line-height: 1.4;
    }
    .quote-block__author span { display: block; color: var(--ink-3); }

    /* ---------- Feature list ---------- */
    .feature-list { list-style: none; display: flex; flex-direction: column; gap: 12px; margin: 18px 0; }
    .feature-list__item { display: flex; align-items: flex-start; gap: 12px; }
    .feature-list__icon { width: 20px; height: 20px; flex-shrink: 0; color: var(--tint); margin-top: 2px; }
    .feature-list__text { font-size: 15.5px; line-height: 1.5; color: var(--ink-2); }

    /* ---------- Cards ---------- */
    .cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
    .cards-grid--2 { grid-template-columns: repeat(2, 1fr); }
    .card {
      flex: initial;
      background: var(--surface);
      border-radius: var(--radius-card);
      padding: 26px 24px;
      box-shadow: var(--win-shadow-soft);
      display: flex;
      flex-direction: column;
      gap: 0;
      transition: transform 0.22s ease, box-shadow 0.22s;
    }
    .card:hover { transform: translateY(-4px); box-shadow: var(--card-shadow-hover); }
    .card__icon {
      width: 44px;
      height: 44px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(23, 26, 33, 0.06);
      color: var(--ink);
      margin-bottom: 16px;
    }
    .card__icon svg { width: 22px; height: 22px; }
    .card__title {
      order: 0;
      font-size: 18px;
      font-weight: 600;
      letter-spacing: -0.015em;
      line-height: 1.3;
      color: var(--ink);
      margin-bottom: 8px;
    }
    .card__text { font-size: 15px; line-height: 1.55; color: var(--ink-2); flex: 1; }
    .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;
    }
    .card:hover .card__link { gap: 10px; color: var(--tint-deep); }
    .card--link { text-decoration: none; }
    .card__image-wrapper {
      position: relative;
      border-radius: 14px;
      overflow: hidden;
      aspect-ratio: 16 / 10;
      background: #cdd2d9;
      margin-bottom: 16px;
      box-shadow: inset 0 0 0 1px var(--line-2);
    }
    .card__image { width: 100%; height: 100%; object-fit: cover; }
    .card__label { margin-bottom: 6px; }

    /* ---------- Solution cards (home) ---------- */
    .solutions-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }
    .solution-card {
      position: relative;
      display: block;
      aspect-ratio: 4 / 3;
      border-radius: var(--radius-card);
      overflow: hidden;
      box-shadow: var(--card-shadow);
      transition: transform 0.22s ease, box-shadow 0.22s;
    }
    .solution-card:hover { transform: translateY(-4px); box-shadow: var(--card-shadow-hover); }
    .solution-card__bg { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform 0.5s ease; }
    .solution-card:hover .solution-card__bg { transform: scale(1.05); }
    .solution-card__overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(23, 26, 33, 0.86), rgba(23, 26, 33, 0.25) 55%, rgba(23, 26, 33, 0.05));
    }
    .solution-card__content {
      position: absolute;
      inset: 0;
      z-index: 2;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 22px;
      color: #fff;
    }
    .solution-card__icon {
      width: 34px;
      height: 34px;
      margin-bottom: auto;
      color: #fff;
    }
    .solution-card__icon svg { width: 26px; height: 26px; }
    .solution-card__title { font-size: 20px; font-weight: 600; letter-spacing: -0.015em; color: #fff; }
    .solution-card__text { font-size: 14px; color: rgba(255, 255, 255, 0.85); line-height: 1.45; margin-top: 6px; }
    .solution-card__link {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 13.5px;
      font-weight: 600;
      color: #fff;
      margin-top: 12px;
      transition: gap 0.18s;
    }
    .solution-card:hover .solution-card__link { gap: 10px; }
    .solution-card__link svg { width: 14px; height: 14px; }

    /* ---------- Story (home) ---------- */
    .story__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 56px); align-items: center; }
    .story__image-container { position: relative; }
    .story__image-glow { display: none; }
    .story__image { width: 100%; border-radius: var(--radius-card); background: #cdd2d9; box-shadow: var(--card-shadow); }
    .story__content p { font-size: 16px; line-height: 1.62; color: var(--ink-2); margin-bottom: 14px; }
    .story__quote {
      font-size: clamp(19px, 2vw, 24px);
      font-weight: 500;
      line-height: 1.4;
      letter-spacing: -0.01em;
      color: var(--ink);
      border-left: 3px solid var(--tint);
      padding-left: 20px;
      margin: 20px 0;
    }
    .story__author { margin-top: 16px; }
    .story__author-name { font-size: 14px; font-weight: 600; color: var(--ink); }
    .story__author-title { font-family: var(--mono); font-size: 11.5px; color: var(--ink-3); margin-top: 2px; }

    /* ---------- Stats band ---------- */
    .stats {
      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;
    }
    .stat {
      padding: clamp(24px, 3.4vw, 38px) clamp(16px, 2vw, 26px);
      text-align: center;
      box-shadow: 0 0 0 0.5px var(--line-2);
    }
    .stat__value {
      font-size: clamp(26px, 3.4vw, 40px);
      font-weight: 600;
      letter-spacing: -0.02em;
      line-height: 1;
      color: var(--ink);
      font-variant-numeric: tabular-nums;
    }
    .stat__label { font-size: 13px; color: var(--ink-3); margin-top: 8px; }
    .stat__label a { color: inherit; text-decoration: underline; text-underline-offset: 2px; }
    .stat__label a:hover { color: var(--ink); }

    /* ---------- Technology (home) ---------- */
    .tech__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 56px); align-items: center; }
    .tech__features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 24px; }
    .tech__feature { display: flex; align-items: center; gap: 10px; }
    .tech__feature-icon {
      width: 38px;
      height: 38px;
      border-radius: 10px;
      background: rgba(23, 26, 33, 0.06);
      color: var(--ink);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .tech__feature-icon svg { width: 18px; height: 18px; }
    .tech__feature-text { font-size: 14px; font-weight: 500; color: var(--ink); }
    .tech__image { width: 100%; border-radius: var(--radius-card); background: #cdd2d9; box-shadow: var(--card-shadow); }

    /* ---------- Partners (As Seen In) ---------- */
    .partners { padding: clamp(30px, 4.5vw, 56px) 0; }
    .partners__label { display: block; text-align: center; margin-bottom: 22px; }
    .partners__grid { display: flex; align-items: center; justify-content: center; gap: clamp(28px, 5vw, 56px); flex-wrap: wrap; }
    .partners__logo { height: 22px; width: auto; filter: brightness(0); opacity: 0.45; transition: opacity 0.18s; }
    .partners__logo:hover { opacity: 0.7; }

    /* ---------- Product (Explore POV) ---------- */
    .product__glow { display: none; }
    .product__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 56px); align-items: center; }
    .product__badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: var(--ink);
      padding: 7px 14px 7px 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, 0.06), 0 6px 18px rgba(21, 25, 34, 0.14);
      margin-bottom: 18px;
    }
    .product__badge-text { font-size: 13px; font-weight: 600; }
    .product__title { font-size: clamp(28px, 3.4vw, 42px); font-weight: 600; letter-spacing: -0.025em; margin-bottom: 14px; color: var(--ink); }
    .product__text { font-size: 16.5px; line-height: 1.6; color: var(--ink-2); margin-bottom: 10px; }
    .product__featured { font-family: var(--mono); font-size: 12.5px; color: var(--ink-3); margin-bottom: 20px; }
    .product__stats { display: flex; gap: clamp(20px, 4vw, 40px); margin: 22px 0; flex-wrap: wrap; }
    .product__stat-value { font-size: clamp(22px, 2.4vw, 28px); font-weight: 600; letter-spacing: -0.02em; color: var(--ink); font-variant-numeric: tabular-nums; }
    .product__stat-label { font-size: 12.5px; color: var(--ink-3); margin-top: 2px; }
    .product__device { display: flex; justify-content: center; }
    .product__device-image { width: 100%; max-width: 480px; }

    /* ---------- CTA panel ---------- */
    .cta-section__glow { display: none; }
    .cta-section__content {
      max-width: 760px;
      margin: 0 auto;
      text-align: center;
      padding: clamp(32px, 5vw, 56px) clamp(24px, 4vw, 48px);
      border-radius: var(--radius-win);
      background: var(--surface);
      box-shadow: var(--win-shadow-soft);
    }
    .cta-section__title { font-size: clamp(26px, 3.4vw, 40px); font-weight: 600; letter-spacing: -0.025em; line-height: 1.1; margin-bottom: 12px; color: var(--ink); }
    .cta-section__text { font-size: clamp(15px, 1.4vw, 17px); color: var(--ink-2); line-height: 1.55; margin: 0 auto 24px; max-width: 54ch; }
    .cta-section__buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

    /* ---------- Page hero (subpages) ---------- */
    .page-hero { padding: clamp(120px, 16vh, 180px) 0 clamp(24px, 4vw, 40px); }
    .page-hero__glow { display: none; }
    .page-hero__content { max-width: 820px; }
    .page-hero__title { font-size: clamp(36px, 5.4vw, 60px); font-weight: 600; letter-spacing: -0.035em; line-height: 1.0; color: var(--ink); margin-bottom: 16px; }
    .page-hero__subtitle { font-size: clamp(16px, 1.6vw, 20px); color: var(--ink-2); line-height: 1.5; max-width: 54ch; }
    .page-hero__header-row { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
    .page-hero__back-link { display: inline-flex; align-items: center; gap: 6px; font-size: 13.5px; font-weight: 500; color: var(--ink-2); transition: color 0.16s; }
    .page-hero__back-link:hover { color: var(--ink); }
    .page-hero__divider { width: 1px; height: 16px; background: var(--line); }
    .page-hero__meta { display: flex; gap: 20px; margin-top: 18px; flex-wrap: wrap; }
    .page-hero__meta-item { display: inline-flex; align-items: center; gap: 7px; font-family: var(--mono); font-size: 13px; color: var(--ink-3); }
    .page-hero__meta-item svg { width: 16px; height: 16px; }

    /* ---------- Research partners / partner logo ---------- */
    .research-partners { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .research-partner {
      background: var(--surface);
      border-radius: var(--radius-card);
      padding: 30px;
      box-shadow: var(--win-shadow-soft);
      text-align: center;
    }
    .research-partner__logo { height: 66px; width: auto; max-width: 100%; margin: 0 auto 18px; object-fit: contain; }
    .research-partner__name { font-size: 18px; font-weight: 600; color: var(--ink); margin-bottom: 6px; }
    .research-partner__desc { font-size: 14.5px; color: var(--ink-2); line-height: 1.5; }
    .partner-logo-display {
      background: var(--surface);
      border-radius: var(--radius-card);
      padding: 32px;
      box-shadow: var(--win-shadow-soft);
      text-align: center;
    }
    .partner-logo-display__logo { max-height: 84px; width: auto; max-width: 100%; margin: 0 auto 16px; object-fit: contain; }
    .partner-logo-display__name { font-size: 17px; font-weight: 600; color: var(--ink); }
    .partner-logo-display__location { font-family: var(--mono); font-size: 12px; color: var(--ink-3); margin-top: 4px; }

    /* ---------- Narrow container / legal ---------- */
    .container.container--narrow { max-width: 760px; }

    /* ---------- Enterprise components ---------- */
    .stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .stat-card { background: var(--surface); border-radius: var(--radius-card); padding: 24px; text-align: center; box-shadow: var(--win-shadow-soft); }
    .stat-card__number { font-family: var(--mono); font-size: clamp(26px, 3vw, 36px); font-weight: 500; color: var(--ink); line-height: 1; margin-bottom: 8px; font-variant-numeric: tabular-nums; }
    .stat-card__label { font-size: 13px; color: var(--ink-3); }
    .use-cases-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
    .use-case-card {
      background: var(--surface);
      border-radius: var(--radius-card);
      padding: 26px;
      box-shadow: var(--win-shadow-soft);
      transition: transform 0.22s ease, box-shadow 0.22s;
    }
    .use-case-card:hover { transform: translateY(-4px); box-shadow: var(--card-shadow-hover); }
    .use-case-card__icon {
      width: 44px;
      height: 44px;
      border-radius: 12px;
      background: rgba(23, 26, 33, 0.06);
      color: var(--ink);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 16px;
    }
    .use-case-card__icon svg { width: 22px; height: 22px; }
    .use-case-card__title { font-size: 18px; font-weight: 600; color: var(--ink); margin-bottom: 8px; }
    .use-case-card__text { color: var(--ink-2); font-size: 15px; line-height: 1.55; margin-bottom: 14px; }
    .use-case-card__examples { list-style: none; display: flex; flex-direction: column; gap: 6px; }
    .use-case-card__examples li { position: relative; padding-left: 16px; font-size: 13.5px; color: var(--ink-3); line-height: 1.45; }
    .use-case-card__examples li::before { content: '\2022'; position: absolute; left: 0; color: var(--tint); }
    .styled-list { list-style: none; margin: 16px 0; display: flex; flex-direction: column; gap: 10px; }
    .styled-list li { position: relative; padding-left: 24px; line-height: 1.55; color: var(--ink-2); font-size: 15.5px; }
    .styled-list li::before { content: '\2192'; position: absolute; left: 0; color: var(--tint); }
    .styled-list li strong { color: var(--ink); font-weight: 600; }
    .credibility-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
    .credibility-item { text-align: center; padding: 20px; }
    .credibility-item__icon { width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; color: var(--ink); }
    .credibility-item__icon svg { width: 34px; height: 34px; }
    .credibility-item__number { font-size: clamp(28px, 3vw, 40px); font-weight: 600; color: var(--ink); line-height: 1; margin-bottom: 8px; letter-spacing: -0.02em; font-variant-numeric: tabular-nums; }
    .credibility-item__title { font-size: 16px; font-weight: 600; color: var(--ink); margin-bottom: 4px; }
    .credibility-item__text { font-size: 13.5px; color: var(--ink-3); line-height: 1.5; }

    /* ---------- Contact ---------- */
    .contact-simple { }
    .inquiry { max-width: 720px; margin: 0 auto 48px; }
    .inquiry__intro { color: var(--ink-2); margin-bottom: 20px; font-size: 16px; }
    .inquiry__thanks {
      display: none;
      margin-bottom: 20px;
      padding: 14px 18px;
      border-radius: 12px;
      background: rgba(58, 99, 230, 0.06);
      box-shadow: inset 0 0 0 1px rgba(58, 99, 230, 0.2);
      color: var(--ink);
      font-weight: 500;
    }
    .inquiry__thanks--visible { display: block; }
    .inquiry-form { display: grid; gap: 16px; }
    .inquiry-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
    .inquiry-form__group { display: flex; flex-direction: column; gap: 6px; }
    .inquiry-form__label { font-size: 13px; font-weight: 600; color: var(--ink-2); }
    .inquiry-form__input, .inquiry-form__select, .inquiry-form__textarea {
      width: 100%;
      padding: 12px 14px;
      font: 500 15px var(--sf);
      color: var(--ink);
      background: var(--surface);
      border: 0;
      border-radius: 12px;
      box-shadow: inset 0 0 0 1px var(--line);
      outline: none;
      transition: box-shadow 0.16s;
    }
    .inquiry-form__textarea { min-height: 140px; resize: vertical; }
    .inquiry-form__input:focus, .inquiry-form__select:focus, .inquiry-form__textarea:focus {
      box-shadow: inset 0 0 0 1px var(--tint), 0 0 0 3px rgba(58, 99, 230, 0.15);
    }
    .inquiry-form__btn { justify-self: start; }
    .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; max-width: 720px; margin: 0 auto 48px; }
    .contact-card { background: var(--surface); border-radius: var(--radius-card); padding: 26px; box-shadow: var(--win-shadow-soft); text-align: center; }
    .contact-card h2 { font-size: 19px; font-weight: 600; color: var(--ink); margin-bottom: 8px; }
    .contact-card p { color: var(--ink-2); font-size: 14.5px; line-height: 1.5; margin-bottom: 18px; }
    .contact-social { text-align: center; max-width: 720px; margin: 0 auto; }
    .contact-social h2 { font-size: 19px; font-weight: 600; color: var(--ink); }
    .contact-social p { color: var(--ink-3); }

    /* ---------- Destinations (JS-injected) ---------- */
    .page-hero--destination .page-hero__content { max-width: 900px; }
    .destinations-hub-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
      gap: 20px;
      opacity: 0;
      transition: opacity 0.4s ease;
    }
    .destinations-hub-grid.loaded { opacity: 1; }
    .destination-hub-card {
      display: block;
      border-radius: var(--radius-card);
      overflow: hidden;
      background: var(--surface);
      box-shadow: var(--card-shadow);
      transition: transform 0.22s ease, box-shadow 0.22s;
    }
    .destination-hub-card:hover { transform: translateY(-4px); box-shadow: var(--card-shadow-hover); }
    .destination-hub-card__image { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; display: block; background: #cdd2d9; }
    .destination-hub-card__content { padding: 16px 18px; }
    .destination-hub-card__title { font-size: 17px; font-weight: 600; letter-spacing: -0.015em; color: var(--ink); }
    .destination-hub-card__count { font-family: var(--mono); font-size: 12px; color: var(--ink-3); margin-top: 4px; }
    .video-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; }
    .video-card { display: flex; flex-direction: column; gap: 12px; }
    .video-card__thumb-link {
      position: relative;
      border-radius: var(--radius-card);
      overflow: hidden;
      aspect-ratio: 16 / 10;
      background: #cdd2d9;
      box-shadow: var(--card-shadow);
    }
    .video-card__thumb { width: 100%; height: 100%; object-fit: cover; }
    .video-card__duration {
      position: absolute;
      bottom: 10px;
      right: 10px;
      font-family: var(--mono);
      font-size: 10.5px;
      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, 0.08);
      font-variant-numeric: tabular-nums;
    }
    .video-card__body { display: flex; flex-direction: column; gap: 5px; padding: 0 3px; }
    .video-card__meta { display: flex; gap: 8px; }
    .video-card__type, .video-card__landscape { font-family: var(--mono); font-size: 10.5px; color: var(--ink-3); }
    .video-card__title { font-size: 16.5px; font-weight: 600; letter-spacing: -0.015em; color: var(--ink); }
    .video-card__desc { font-size: 14px; color: var(--ink-2); line-height: 1.5; }
    .no-results { grid-column: 1 / -1; text-align: center; color: var(--ink-3); padding: 40px; }

    /* ---------- Footer ---------- */
    .footer {
      margin-top: clamp(36px, 5vw, 64px);
      padding: clamp(36px, 5vw, 56px) 0 32px;
      border-top: 1px solid var(--line);
      background: linear-gradient(180deg, transparent, rgba(250, 251, 253, 0.5));
    }
    .footer__grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 28px 24px;
    }
    .footer__brand { max-width: 320px; }
    .footer__logo { display: inline-flex; align-items: center; gap: 10px; font-size: 16px; font-weight: 600; letter-spacing: -0.02em; color: var(--ink); margin-bottom: 10px; }
    .footer__tagline { font-size: 14px; color: var(--ink-2); line-height: 1.5; }
    .footer__heading { font-size: 12.5px; font-weight: 600; color: var(--ink-3); letter-spacing: 0.01em; margin-bottom: 12px; }
    .footer__links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
    .footer__link, .footer__section a { font-size: 14px; color: var(--ink-2); transition: color 0.16s; }
    .footer__link:hover { color: var(--ink); }
    .footer__bottom {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 10px 20px;
      margin-top: clamp(28px, 4vw, 40px);
      padding-top: 20px;
      border-top: 1px solid var(--line-2);
    }
    .footer__made-in, .footer__copyright { font-family: var(--mono); font-size: 11px; color: var(--ink-3); }
    .footer__legal { font-size: 13px; color: var(--ink-3); }
    .footer__legal-link { color: var(--ink-2); transition: color 0.16s; }
    .footer__legal-link:hover { color: var(--ink); }
    .footer__social { display: flex; gap: 10px; margin-left: auto; }
    .footer__social-link {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 36px;
      height: 36px;
      border-radius: 18px;
      color: var(--ink-2);
      background: rgba(23, 26, 33, 0.045);
      box-shadow: inset 0 0 0 1px var(--line-2);
      transition: color 0.16s, background 0.16s;
    }
    .footer__social-link:hover { color: var(--ink); background: rgba(23, 26, 33, 0.09); }
    .footer__social-link svg { width: 17px; height: 17px; fill: currentColor; }

    /* ---------- Responsive (B2B) ---------- */
    @media (max-width: 900px) {
      .content-grid, .story__grid, .tech__grid, .product__grid { grid-template-columns: 1fr; }
      .content-grid--reverse > *:first-child { order: 0; }
      .content-grid--reverse > *:last-child { order: 0; }
      .cards-grid, .cards-grid--2, .use-cases-grid { grid-template-columns: 1fr; }
      .credibility-grid { grid-template-columns: repeat(2, 1fr); }
      .research-partners { grid-template-columns: 1fr; }
      .stats { grid-template-columns: repeat(2, 1fr); }
      .tech__features { grid-template-columns: 1fr; }
      .footer__grid { grid-template-columns: 1fr 1fr; }
      .footer__brand { grid-column: 1 / -1; max-width: none; }
    }

    @media (max-width: 768px) {
      .nav__inner { width: 100%; }
      .nav__links {
        position: fixed;
        inset: 0;
        z-index: 55;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 6px;
        background: rgba(236, 238, 242, 0.95);
        -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__links.nav__links--open { opacity: 1; pointer-events: auto; }
      .nav__link { font-size: clamp(24px, 6vw, 32px); font-weight: 600; padding: 10px 22px; border-radius: 14px; }
      .nav__dropdown { display: flex; flex-direction: column; align-items: center; }
      .nav__dropdown-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        display: none;
        background: transparent;
        box-shadow: none;
        -webkit-backdrop-filter: none;
        backdrop-filter: none;
        padding: 4px 0 8px;
        min-width: 0;
        text-align: center;
      }
      .nav__dropdown.nav__dropdown--open .nav__dropdown-menu { display: flex; }
      .nav__dropdown-item { font-size: 17px; color: var(--ink-2); }
      .nav__toggle { display: flex; }
    }

    @media (max-width: 560px) {
      .nav__logo span { display: none; }
      .nav__cta { padding: 9px 13px; }
      .footer__grid { grid-template-columns: 1fr 1fr; }
      .footer__social { margin-left: 0; width: 100%; justify-content: flex-start; }
      .contact-grid { grid-template-columns: 1fr; }
      .credibility-grid, .stats, .stats-grid { grid-template-columns: 1fr 1fr; }
    }
