@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --wz-black: #000;
  --wz-gray-900: #626265;
  --wz-gray-700: #6d6d70;
  --wz-gray-500: #767676;
  --wz-gray-300: #e5e5e8;
  --wz-gray-200: #efeff2;
  --wz-gray-150: #f5f5f5;
  --wz-gray-100: #fafafc;
  --wz-white: #ffffff;
  --wz-blue: #0066ff;
  --wz-blue-strong: #0052cc;
  --wz-blue-link: #0073ec;

  --wz-font-content: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --wz-font-ui: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --wz-ease: cubic-bezier(0.22, 0.61, 0.36, 1);

  /* semantic (light) */
  --bg: var(--wz-gray-100);
  --bg-alt: var(--wz-gray-200);
  --bg-card: var(--wz-white);
  --bg-dark: var(--wz-gray-900);
  --fg: var(--wz-black);
  --fg-muted: var(--wz-gray-700);
  --border: var(--wz-gray-300);
  --accent: var(--wz-blue);
  --wz-ctl-bg: #2b2b33;
  --wz-ctl-fg: #ffffff;
  --globe-glow: radial-gradient(
    circle at 50% 47%,
    #ffffff 0%,
    rgba(255, 255, 255, 0.92) 26%,
    rgba(255, 255, 255, 0.55) 44%,
    rgba(255, 255, 255, 0) 66%
  );
  --globe-sphere: radial-gradient(
    circle closest-side at 50% 50%,
    #ffffff 0%,
    #ffffff 80%,
    #f2f5f8 90%,
    #e4e8ef 97%,
    rgba(228, 232, 239, 0) 100%
  );
  --globe-shadow: drop-shadow(0 16px 38px rgba(124, 132, 148, 0.3));
  --accent-strong: var(--wz-blue-strong);
  --on-dark-fg: var(--wz-white);

  /* Page side gutters — Tailwind breakpoints, stepping 12 → 24 → 36 → 48 → 96 */
  --page-gutter: 12px;
}

@media (min-width: 640px) {
  :root {
    --page-gutter: 24px;
  }
} /* sm */
@media (min-width: 768px) {
  :root {
    --page-gutter: 36px;
  }
} /* md */
@media (min-width: 1024px) {
  :root {
    --page-gutter: 48px;
  }
} /* lg */
@media (min-width: 1280px) {
  :root {
    --page-gutter: 96px;
  }
} /* xl / 2xl */

[data-theme='dark'] {
  --bg: #0c0c0e;
  --bg-alt: #17171a;
  --bg-card: #1b1b1f;
  --bg-dark: #000000;
  --fg: #f5f5f7;
  --fg-muted: #9a9aa0;
  --border: #27272b;
  --accent: #4d8bff;
  --accent-strong: #70a3ff;
  --on-dark-fg: #f5f5f7;

  /* Flip the design-system's own semantic tokens so DS base styles
     (html/body background, .wz-body text, cards) follow dark mode too. */
  --wz-surface: #0c0c0e;
  --wz-surface-alt: #17171a;
  --wz-card: #1b1b1f;
  --wz-fg: #f5f5f7;
  --wz-fg-muted: #9a9aa0;
  --wz-gray-300: #27272b; /* hairline dividers */
  --wz-gray-150: #17171a; /* subtle field bg */
  --wz-ctl-bg: #9a9aa0; /* nav/control buttons — light grey in dark */
  --wz-ctl-fg: #0c0c0e;
  --globe-glow: radial-gradient(
    circle at 50% 47%,
    rgba(150, 180, 235, 0.45) 0%,
    rgba(110, 140, 195, 0.22) 40%,
    rgba(90, 115, 165, 0) 70%
  );
  --globe-sphere: radial-gradient(
    circle closest-side at 50% 50%,
    #272c35 0%,
    #21252e 78%,
    #181b21 92%,
    rgba(24, 27, 33, 0) 100%
  );
  --globe-shadow: drop-shadow(0 16px 40px rgba(0, 0, 0, 0.5));
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--wz-font-content);
  font-size: 18px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  transition:
    background 240ms var(--wz-ease),
    color 240ms var(--wz-ease);
}

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

/* ——— Container ——— */
.wz-container {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 var(--page-gutter);
}
.wz-container-narrow {
  width: 100%;
  max-width: 1176px;
  margin: 0 auto;
  padding: 0 var(--page-gutter);
}

/* ——— Buttons ——— */
.wz-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--wz-font-ui);
  font-weight: 500;
  font-size: 15px;
  line-height: 1;
  padding: 14px 30px;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  transition:
    background 160ms var(--wz-ease),
    color 160ms var(--wz-ease),
    transform 160ms var(--wz-ease),
    border-color 160ms var(--wz-ease);
  text-decoration: none;
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.wz-btn-primary {
  background: var(--accent);
  color: #fff;
}
.wz-btn-primary:hover {
  background: var(--accent-strong);
}
.wz-btn-ghost {
  background: transparent;
  color: var(--fg);
  border: 2px solid var(--accent);
  padding: 12px 28px;
}
.wz-btn-ghost:hover {
  background: var(--accent);
  color: #fff;
}
.wz-btn-dark {
  background: var(--fg);
  color: var(--bg);
}
.wz-btn-dark:hover {
  background: var(--fg-muted);
}
.wz-btn:active {
  transform: scale(0.98);
}
.wz-btn[disabled] {
  opacity: 0.45;
  cursor: not-allowed;
  pointer-events: none;
}

/* ——— Typography utilities ——— */
.wz-eyebrow {
  font-family: var(--wz-font-ui);
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-muted);
  font-weight: 500;
}
.wz-display {
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.01em;
  font-size: clamp(42px, 6vw, 75px);
  margin: 0;
}
.wz-h1 {
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.005em;
  font-size: clamp(32px, 5.4vw, 60px);
  margin: 0;
}
.wz-h2 {
  font-weight: 700;
  line-height: 1.05;
  font-size: clamp(30px, 3.6vw, 45px);
  margin: 0;
}
.wz-h3 {
  font-weight: 700;
  line-height: 1.15;
  font-size: clamp(24px, 2.4vw, 37.5px);
  margin: 0;
}
.wz-body {
  font-size: 20px;
  line-height: 1.5;
}
.wz-body-sm {
  font-size: 17px;
  line-height: 1.5;
  color: var(--fg-muted);
}

/* ——— Input ——— */
.wz-input {
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.7);
  border-radius: 9999px;
  padding: 17px 24px;
  margin-bottom: 14px;
  font-family: var(--wz-font-content);
  font-size: 18px;
  color: var(--fg);
  width: 100%;
  outline: none;
  transition: border-color 200ms;
}
.wz-input:focus {
  border-color: var(--fg);
}
.wz-input::placeholder {
  color: var(--fg-muted);
}
textarea.wz-input {
  resize: vertical;
  font-family: var(--wz-font-content);
  min-height: 120px;
  border: 1px solid rgba(0, 0, 0, 0.7);
  border-radius: 22px;
  padding: 16px 20px;
}
.wz-input-error {
  border-color: #d93636 !important;
}

/* ——— Section rhythm ——— */
.wz-section {
  padding: clamp(60px, 10vw, 120px) 0;
}
.wz-section-lg {
  padding: clamp(80px, 14vw, 180px) 0;
}
/* Tighter vertical rhythm on mobile */
@media (max-width: 640px) {
  .wz-section {
    padding: 44px 0;
  }
  .wz-section-lg {
    padding: 52px 0;
  }
  .wz-feature {
    padding: 44px 0 !important;
  }
  .wz-readblock {
    padding: 28px 0 !important;
  }
  .wz-sec-pad {
    padding-top: 36px !important;
    padding-bottom: 40px !important;
  }
  .wz-anim-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
}
/* VR scroll sequence: heavy on mobile -> show a static 360 viewer instead */
.wz-vr-seq-mobile {
  display: none;
}
@media (max-width: 760px) {
  .wz-vr-seq-desktop {
    display: none !important;
  }
  .wz-vr-seq-mobile {
    display: block !important;
  }
}
/* Visualisers partner form — responsive */
@media (max-width: 860px) {
  .wz-partner-form {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }
}
@media (max-width: 560px) {
  .wz-radio-grid {
    grid-template-columns: 1fr 1fr !important;
  }
  .wz-radio-grid label {
    font-size: 15px !important;
  }
}
/* Shared responsive body text: 20 / 18 / 16 across desktop / tablet / mobile */
.wz-body {
  font-size: 20px;
  line-height: 1.5;
}
@media (max-width: 980px) {
  .wz-body {
    font-size: 18px;
  }
}
@media (max-width: 640px) {
  .wz-body {
    font-size: 16px;
  }
}
/* Estate-agents MacBook scroll section — stack on mobile, no sticky */
@media (max-width: 860px) {
  .wz-mac-scroll {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }
  .wz-mac-sticky {
    position: static !important;
    height: auto !important;
    display: block !important;
  }
  .wz-mac-scroll > div:last-child {
    height: auto !important;
  }
  .wz-mac-textstage {
    position: static !important;
    height: auto !important;
  }
  .wz-mac-textstage > div {
    position: static !important;
  }
}
.wz-section-dark {
  background: var(--bg-dark);
  color: var(--on-dark-fg);
}
.wz-section-alt {
  background: var(--bg-alt);
}

/* ——— Card images radius ——— */
.wz-media {
  border-radius: 30px;
  overflow: hidden;
  background: var(--bg-alt);
}

/* ——— Audience hero: image + text split ——— */
.wz-hero-split {
  margin-top: 80px;
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
  text-align: left;
}
.wz-hero-split .wz-media {
  aspect-ratio: 4 / 3;
  background: transparent;
  border-radius: 0;
}
.wz-hero-split .wz-media img {
  object-fit: contain !important;
}
.wz-hero-split-copy h2 {
  font-size: clamp(32px, 5.4vw, 60px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--fg);
  margin: 0 0 22px;
  white-space: pre-line;
}
.wz-hero-split p {
  font-size: 20px;
  line-height: 1.6;
  color: var(--fg-muted);
  margin: 0;
}
@media (max-width: 980px) {
  .wz-hero-split p {
    font-size: 18px;
  }
}
@media (max-width: 640px) {
  .wz-hero-split p {
    font-size: 16px;
  }
}
@media (max-width: 860px) {
  .wz-hero-split {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .wz-hero-split .wz-media {
    aspect-ratio: 4 / 3;
    width: 100%;
    margin-left: 0;
    overflow: hidden;
  }
}

/* ——— Grid helpers ——— */
.wz-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 6vw, 120px);
  align-items: center;
}
.wz-grid-3 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 48px;
  row-gap: 36px;
}
@media (min-width: 1024px) {
  .wz-grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 860px) {
  .wz-grid-2 {
    grid-template-columns: 1fr;
  }
}

/* ——— Stat cards ——— */
/* 3×2 grid where the border-collapse is handled per-cell to avoid double borders */
.wz-stat {
  border: 0 solid var(--fg);
  border-top-width: 1px;
  width: auto;
  max-width: 100%;
  padding: 24px 0 36px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 10px;
  min-height: 150px;
}
/* single top rule per card — no side or bottom borders */
.wz-grid-3 > .wz-stat:nth-child(3n) {
  border-right-width: 0;
}
/* bottom row cells get a bottom border */
.wz-grid-3 > .wz-stat:nth-last-child(-n + 3) {
  border-bottom-width: 0;
}
.wz-stat-up {
  font-size: 16px;
  color: var(--fg);
}
.wz-stat-value {
  font-size: clamp(34px, 4vw, 60px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.01em;
}
.wz-stat-desc {
  color: var(--fg-muted);
  font-size: 18px;
  line-height: 1.4;
}
@media (max-width: 640px) {
  .wz-grid-3 {
    column-gap: 20px;
    row-gap: 24px;
  }
  .wz-stat {
    min-height: 124px;
    padding: 16px 0 24px;
    gap: 8px;
  }
  .wz-stat-up {
    font-size: 13px;
  }
  .wz-stat-value {
    font-size: clamp(24px, 7vw, 34px);
  }
  .wz-stat-desc {
    font-size: 13px;
    line-height: 1.35;
  }
}

/* ——— Reveal-on-scroll ——— */
.wz-reveal {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 1200ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 1200ms cubic-bezier(0.16, 1, 0.3, 1);
}
.wz-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ——— Form check (circular, tickable) ——— */
.wz-check {
  appearance: none;
  -webkit-appearance: none;
  width: 28px;
  height: 28px;
  flex: none;
  border: 1.5px solid rgba(0, 0, 0, 0.7);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  margin: 0;
  position: relative;
  transition:
    background 140ms var(--wz-ease),
    border-color 140ms var(--wz-ease);
}
.wz-check:hover {
  border-color: #0066ff;
}
.wz-check:checked {
  background: #0066ff;
  border-color: #0066ff;
}
.wz-check:checked::after {
  content: '';
  position: absolute;
  left: 9px;
  top: 5px;
  width: 6px;
  height: 11px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

/* ——— Nav ——— */
.wz-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  height: 100px;
  background: color-mix(in srgb, var(--bg) 86%, transparent);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid transparent;
  transition:
    border-color 240ms var(--wz-ease),
    background 240ms var(--wz-ease);
  display: flex;
  align-items: center;
}
.wz-header.is-scrolled {
  border-bottom-color: var(--border);
}
.wz-header-inner {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 var(--page-gutter);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 40px;
}
.wz-header-inner > :first-child {
  justify-self: start;
}
.wz-header-inner > .wz-nav {
  justify-self: center;
}
.wz-header-inner > :last-child {
  justify-self: end;
}
.wz-nav {
  display: flex;
  gap: 48px;
  align-items: center;
}
.wz-nav-item {
  position: relative;
  font-size: 15px;
  cursor: pointer;
  padding: 38px 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--fg);
  font-family: var(--wz-font-ui);
}
.wz-nav-item:hover {
  color: var(--fg-muted);
}
.wz-nav-dd {
  position: absolute;
  left: -16px;
  top: calc(100% + 6px);
  min-width: 260px;
  padding: 10px;
  background: var(--bg-card);
  border-radius: 16px;
  border: 1px solid var(--border);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  gap: 2px;
}
/* invisible bridge across the gap so moving the cursor from the
   label into the menu never leaves the hover area */
.wz-nav-dd::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: -14px;
  height: 16px;
}
.wz-nav-dd a {
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 15px;
  color: var(--fg);
  display: flex;
  flex-direction: column;
  gap: 2px;
  cursor: pointer;
  transition: background 140ms;
}
.wz-nav-dd a:hover {
  background: var(--bg-alt);
}
.wz-nav-dd a .sub {
  font-size: 13px;
  color: var(--fg-muted);
}

/* mobile nav */
.wz-burger {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 9999px;
  background: transparent;
  border: 1px solid var(--border);
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.wz-burger span {
  display: block;
  width: 16px;
  height: 2px;
  background: var(--fg);
  position: relative;
}
.wz-burger span::before,
.wz-burger span::after {
  content: '';
  position: absolute;
  left: 0;
  width: 16px;
  height: 2px;
  background: var(--fg);
}
.wz-burger span::before {
  top: -5px;
}
.wz-burger span::after {
  top: 5px;
}
@media (max-width: 767px) {
  .wz-header-inner {
    grid-template-columns: 1fr auto;
  }
  .wz-nav {
    display: none;
  }
  .wz-burger {
    display: inline-flex;
  }
  .wz-header-cta {
    display: none;
  }
}

/* mobile sheet */
.wz-sheet {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 60;
  padding: 120px 32px 40px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transform: translateY(-110%);
  transition: transform 320ms var(--wz-ease);
  overflow-y: auto;
}
.wz-sheet.is-open {
  transform: translateY(0);
}
.wz-sheet-close {
  position: absolute;
  top: 32px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 9999px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--fg);
  cursor: pointer;
  font-size: 22px;
}
.wz-sheet-group {
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}
.wz-sheet-group > summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 8px;
  font-size: 28px;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.wz-sheet-group > summary::-webkit-details-marker {
  display: none;
}
.wz-sheet-group a {
  display: block;
  padding: 10px 8px 10px 20px;
  font-size: 18px;
  color: var(--fg-muted);
}
.wz-sheet-group a:hover {
  color: var(--fg);
}

/* ——— Theme toggle ——— */
.wz-theme-toggle {
  width: 40px;
  height: 40px;
  border-radius: 9999px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--fg);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 160ms;
}
.wz-theme-toggle:hover {
  background: var(--bg-alt);
}

/* ——— Footer ——— */
.wz-footer {
  background: var(--bg-alt);
  padding: 120px 0 60px;
  color: var(--fg);
  margin-top: 0;
}
.wz-footer-grid {
  display: grid;
  grid-template-columns: max-content max-content;
  justify-content: start;
  gap: 100px;
}
.wz-footer h3 {
  font-size: clamp(24px, 4vw, 37.5px);
  margin: 0 0 20px;
  font-weight: 700;
}
.wz-footer .addr {
  font-size: 20px;
  line-height: 1.5;
  white-space: pre-line;
}
.wz-footer .addr.addr-offices {
  display: flex;
  gap: 100px;
}
.wz-footer .addr.addr-offices > div {
  white-space: pre;
}
.wz-footer .addr.addr-cols {
  columns: 2;
  column-gap: 48px;
}
.wz-footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 80px 0;
  border-top: 1px solid var(--border);
  margin-top: 60px;
}
.wz-footer-socials {
  display: flex;
  gap: 40px;
}
.wz-footer-socials a {
  font-size: 18px;
}
.wz-footer-socials a:hover {
  color: var(--accent);
}
.wz-footer-legal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 17px;
}
.wz-footer-legal a {
  color: var(--fg-muted);
  margin: 0 8px;
}
/* Tablet (≤1080px): shrink type + gaps so the two office columns fit */
@media (max-width: 1080px) {
  .wz-footer-grid {
    gap: clamp(32px, 6vw, 100px);
  }
  .wz-footer h3 {
    font-size: clamp(22px, 3vw, 30px);
  }
  .wz-footer .addr {
    font-size: clamp(15px, 1.7vw, 20px);
  }
  .wz-footer .addr.addr-offices {
    gap: clamp(24px, 4vw, 100px);
  }
}
@media (max-width: 720px) {
  .wz-footer-grid {
    grid-template-columns: 1fr;
  }
  .wz-footer .addr.addr-offices {
    gap: 40px;
  }
  .wz-footer-row {
    flex-direction: column;
    gap: 40px;
    align-items: flex-start;
  }
  .wz-footer-legal {
    flex-direction: column;
    gap: 16px;
  }
}

/* ——— Hero (home) ——— */
.wz-hero-home {
  padding: 120px 0 60px;
  text-align: center;
}
/* Tablet/mobile: tighten the big hero gaps (top + before text block) */
@media (max-width: 980px) {
  .wz-hero-home {
    padding: 110px 0 36px;
  }
  .wz-hero-media {
    margin-top: 44px;
  }
  .wz-readblock {
    padding: 36px 0;
  }
}
@media (max-width: 640px) {
  .wz-hero-home {
    padding: 96px 0 24px;
  }
  .wz-hero-media {
    margin-top: 28px;
  }
  .wz-readblock {
    padding: 24px 0;
  }
}
.wz-hero-home .eyebrow {
  margin-bottom: 20px;
}
.wz-hero-home h1 {
  white-space: pre-line;
  font-weight: 700;
  line-height: 1;
  font-size: clamp(44px, 7vw, 75px);
  margin: 0 auto 24px;
  max-width: 1100px;
}
.wz-hero-home .sub {
  font-size: clamp(16px, 1.7vw, 24px);
  line-height: 1.4;
  color: var(--fg);
  max-width: 820px;
  margin: 0 auto 40px;
}
.wz-hero-media {
  margin: 80px auto 0;
  width: calc(100% - 2 * var(--page-gutter));
  max-width: calc(1920px - 2 * var(--page-gutter));
  border-radius: 30px;
  overflow: hidden;
  aspect-ratio: 16/10;
  position: relative;
  background: #0a0a0a;
}
.wz-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ——— Hero Video ——— */
.wz-hero-video {
  position: relative;
  width: 100%;
  border-radius: 30px;
  overflow: hidden;
  background: #000;
}
.wz-hero-video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.wz-hero-video-frame video,
.wz-hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #000;
  display: block;
}
.wz-hero-chip:not(.live) i {
  background: #9a9a9e;
  box-shadow: none;
  animation: none;
}
.wz-hero-video-controls {
  position: absolute;
  bottom: 24px;
  left: 24px;
  display: flex;
  gap: 12px;
  z-index: 3;
}
.wz-vbtn {
  width: 48px;
  height: 48px;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition:
    background 160ms var(--wz-ease),
    transform 160ms var(--wz-ease);
}
.wz-vbtn:hover {
  background: rgba(0, 0, 0, 0.8);
}
.wz-vbtn:active {
  transform: scale(0.95);
}

/* ——— Animated Map hero ——— */
.wz-map-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  background: #0a0e1a;
  overflow: hidden;
  border-radius: 30px;
}
.wz-map-stage svg {
  width: 100%;
  height: 100%;
  display: block;
}
.wz-pin {
  position: absolute;
  width: 44px;
  height: 44px;
  transform: translate(-50%, -100%);
  pointer-events: none;
  opacity: 0;
  animation: pinDrop 500ms var(--wz-ease) forwards;
}
.wz-pin-ring {
  position: absolute;
  width: 0;
  height: 0;
  border-radius: 9999px;
  border: 2px solid #fff;
  transform: translate(-50%, -100%);
  top: 44px;
  left: 22px;
  animation: ringPulse 2.4s ease-out infinite;
  animation-delay: var(--pulse-delay, 0s);
}
@keyframes pinDrop {
  0% {
    opacity: 0;
    transform: translate(-50%, -160%) scale(0.3);
  }
  60% {
    opacity: 1;
    transform: translate(-50%, -92%) scale(1.12);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -100%) scale(1);
  }
}
@keyframes ringPulse {
  0% {
    width: 0;
    height: 0;
    opacity: 0.9;
  }
  100% {
    width: 120px;
    height: 120px;
    opacity: 0;
  }
}

/* ——— Feature block ——— */
.wz-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 120px 0;
}
.wz-feature h2 {
  font-size: clamp(32px, 5.4vw, 60px);
  font-weight: 700;
  line-height: 1;
  margin: 0 0 24px;
  white-space: pre-line;
}
.wz-feature p {
  font-size: 20px;
  line-height: 1.5;
  color: var(--fg-muted);
  margin: 0;
  max-width: 492px;
}
@media (max-width: 980px) {
  .wz-feature p {
    font-size: 18px;
  }
}
@media (max-width: 640px) {
  .wz-feature p {
    font-size: 16px;
  }
}
.wz-feature .media {
  aspect-ratio: 984/902;
  overflow: hidden;
  border-radius: 30px;
}
.wz-feature .media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.wz-feature.right-aligned {
  text-align: right;
}
.wz-feature.right-aligned p {
  margin-left: auto;
}
.wz-feature.right-aligned .media {
  order: -1;
}
@media (max-width: 860px) {
  .wz-feature {
    grid-template-columns: 1fr;
    padding: 60px 0;
  }
  .wz-feature.right-aligned {
    text-align: left;
  }
  .wz-feature.right-aligned p {
    margin-left: 0;
  }
  .wz-feature.right-aligned .media {
    order: 0;
  }
}

/* ——— Reading block (2 columns of text) ——— */
.wz-readblock {
  padding: 60px 0;
}
.wz-readblock .cols {
  columns: 2;
  column-gap: 64px;
  color: var(--fg-muted);
  font-size: 20px;
  line-height: 1.5;
  max-width: 1176px;
  margin: 0 auto;
}
@media (max-width: 860px) {
  .wz-readblock .cols {
    columns: 1;
  }
}
.wz-readblock-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  font-size: 20px;
  line-height: 1.55;
  color: var(--fg-muted);
}
@media (max-width: 860px) {
  .wz-readblock-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
/* Reading-block body text: 20 / 18 / 16 across desktop / tablet / mobile */
@media (max-width: 980px) {
  .wz-readblock .cols,
  .wz-readblock-grid {
    font-size: 18px;
  }
}
@media (max-width: 640px) {
  .wz-readblock .cols,
  .wz-readblock-grid {
    font-size: 16px;
  }
}

/* ——— CTA dark section ——— */
.wz-cta {
  background: #060608;
  color: var(--on-dark-fg);
  border-radius: 30px;
  padding: 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
[data-theme='dark'] .wz-cta {
  background: #efeff2;
  color: #0c0c0e;
}
/* VR page: hero (and page top) white in light mode to match the white GSAP tour */
.wz-vr-page,
.wz-vr-page > .wz-hero-home {
  background: #fff;
}
[data-theme='dark'] .wz-vr-page,
[data-theme='dark'] .wz-vr-page > .wz-hero-home {
  background: var(--bg);
}
.wz-eyebrow,
.wz-hero-home .eyebrow {
  font-size: clamp(30px, 4.5vw, 48px);
  font-weight: 700;
  text-transform: none;
  letter-spacing: normal;
  line-height: 1.1;
  color: var(--fg);
}
.wz-display,
.wz-hero-home h1 {
  font-size: clamp(36px, 7.2vw, 80px);
  font-weight: 200;
}
.wz-cta h2 {
  font-size: clamp(30px, 3.6vw, 45px);
  margin: 0 0 40px;
}
.wz-cta .cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 900px;
  margin: 0 auto 40px;
  text-align: left;
}
.wz-cta p {
  font-size: 18px;
  line-height: 1.5;
  margin: 0;
}
@media (max-width: 760px) {
  .wz-cta {
    padding: 48px 24px;
  }
  .wz-cta .cols {
    grid-template-columns: 1fr;
  }
}

/* ——— Benefits grid ——— */
.wz-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px 80px;
}
.wz-benefits .tile h3 {
  font-size: clamp(30px, 4vw, 36px);
  font-weight: 700;
  margin: 0 0 16px;
  line-height: 1.1;
}
.wz-benefits .tile p {
  font-size: 20px;
  line-height: 1.5;
  color: var(--fg-muted);
  margin: 0;
  white-space: pre-line;
}
@media (max-width: 980px) {
  .wz-benefits .tile p {
    font-size: 18px;
  }
}
@media (max-width: 640px) {
  .wz-benefits .tile p {
    font-size: 16px;
  }
}
@media (max-width: 980px) {
  .wz-benefits {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .wz-benefits {
    grid-template-columns: 1fr;
  }
}

/* ——— Feature explorer ——— */
.wz-fx-embed {
  width: 100%;
  height: 860px;
  border: 0;
  border-radius: 28px;
  display: block;
  background: transparent;
  margin-top: 24px;
}
@media (max-width: 980px) {
  .wz-fx-embed {
    height: 1340px;
  }
}
.wz-fx {
  display: grid;
  grid-template-columns: minmax(380px, 0.85fr) 1.15fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: stretch;
  min-height: 768px;
  --fx-pad: clamp(20px, 3vw, 40px);
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 32px;
  padding: clamp(20px, 3vw, 40px);
  box-shadow: 0 32px 96px rgba(0, 0, 0, 0.06);
}

/* Left — accordion */
.wz-fx-left {
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 52px;
}
.wz-fx-nav {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 5;
}
.wz-fx-arrow {
  width: 34px;
  height: 34px;
  flex: none;
  border-radius: 9999px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--fg);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  transition:
    transform 180ms var(--wz-ease),
    background 180ms var(--wz-ease);
}
.wz-fx-arrow:hover {
  transform: scale(1.12);
  background: var(--bg-alt);
}
.wz-fx-arrow:active {
  transform: scale(0.95);
}

.wz-fx-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  height: 384px;
}
.wz-fx-item {
  align-self: flex-start;
  max-width: 100%;
  text-align: left;
  background: var(--bg-alt);
  border: 1px solid transparent;
  border-radius: 24px;
  padding: 11px 22px;
  cursor: pointer;
  font-family: var(--wz-font-ui);
  color: var(--fg);
  transition:
    background 260ms var(--wz-ease),
    box-shadow 260ms var(--wz-ease),
    padding 320ms var(--wz-ease);
}
.wz-fx-item:hover {
  background: var(--border);
}
.wz-fx-item.open {
  align-self: flex-start;
  border-radius: 24px;
  padding: 16px 24px;
  background: var(--bg-alt);
  border-color: var(--border);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  cursor: default;
}
.wz-fx-label {
  font-size: clamp(16px, 1.1vw, 19px);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.5;
}
.wz-fx-item.open .wz-fx-label {
  color: var(--fg);
}
.wz-fx-desc {
  display: inline;
  font-weight: 400;
  color: var(--fg-muted);
}
/* reveal: grow height + fade in. width snaps wide on open (while height 0 = invisible),
   and on close waits for height to collapse before snapping narrow — no leftover empty box */
.wz-fx-body {
  display: grid;
  grid-template-rows: 0fr;
  width: 0;
  transition:
    grid-template-rows 360ms var(--wz-ease),
    width 0ms linear 360ms;
}
.wz-fx-item.open .wz-fx-body {
  grid-template-rows: 1fr;
  width: min(340px, 100%);
  transition:
    grid-template-rows 360ms var(--wz-ease),
    width 0ms linear 0ms;
}
.wz-fx-body-inner {
  overflow: hidden;
  min-width: 0;
  opacity: 0;
  transition: opacity 240ms var(--wz-ease);
}
.wz-fx-item.open .wz-fx-body-inner {
  opacity: 1;
  transition: opacity 280ms var(--wz-ease) 120ms;
}
.wz-fx-body-inner p {
  margin: 8px 0 0;
  font-size: clamp(14px, 0.95vw, 16px);
  line-height: 1.5;
  color: var(--fg-muted);
  width: 100%;
  max-width: 100%;
  text-wrap: balance;
}

/* Right — synchronized media stage (bleeds to the frame edges) */
.wz-fx-media {
  position: relative;
  align-self: stretch;
  min-height: 460px;
  margin: calc(-1 * var(--fx-pad)) calc(-1 * var(--fx-pad)) calc(-1 * var(--fx-pad)) 0;
  border-radius: 20px 31px 31px 20px;
  overflow: hidden;
  background: var(--bg-alt);
}
.wz-fx-tag {
  position: absolute;
  top: 18px;
  left: 20px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--wz-font-ui);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  mix-blend-mode: difference;
  pointer-events: none;
}
.wz-fx-tag::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 9999px;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  animation: wz-fx-pulse 2s var(--wz-ease) infinite;
}
@keyframes wz-fx-pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.35;
  }
}
@keyframes wzflash {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.25;
  }
}
.wz-team-grid {
  grid-template-columns: repeat(5, 1fr);
}
@media (max-width: 1240px) {
  .wz-team-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 1000px) {
  .wz-team-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 720px) {
  .wz-team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 460px) {
  .wz-team-grid {
    grid-template-columns: 1fr;
  }
}
.wz-fx-frame {
  position: absolute;
  inset: 0;
  will-change: opacity, transform;
  pointer-events: none;
}
/* parked off to the right, invisible, ready to enter — no transition */
.wz-fx-frame.idle {
  opacity: 0;
  transform: translateX(9%);
  transition: none;
}
/* entering: slide in from the right + fade in */
.wz-fx-frame.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
  transition:
    opacity 520ms var(--wz-ease),
    transform 720ms cubic-bezier(0.16, 1, 0.3, 1);
}
/* leaving: slide out to the left + fade out */
.wz-fx-frame.leaving {
  opacity: 0;
  transform: translateX(-9%);
  transition:
    opacity 460ms var(--wz-ease),
    transform 720ms cubic-bezier(0.16, 1, 0.3, 1);
}
.wz-fx-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 980px) {
  .wz-fx {
    grid-template-columns: 1fr;
  }
  .wz-fx-media {
    order: -1;
    min-height: 340px;
    margin: 0;
    border-radius: 20px;
  }
  .wz-fx-list {
    height: auto;
  }
}
@media (max-width: 560px) {
  .wz-fx {
    padding: 16px;
  }
  .wz-fx-left {
    padding-left: 44px;
  }
}

/* ——— Audience tiles on home ——— */
.wz-audience {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.wz-audience a {
  display: block;
  aspect-ratio: 4/5;
  border-radius: 30px;
  overflow: hidden;
  position: relative;
  background: var(--bg-alt);
  cursor: pointer;
  transition: transform 300ms var(--wz-ease);
}
.wz-audience a:hover {
  transform: translateY(-4px);
}
.wz-audience a .label {
  position: absolute;
  inset: auto 0 0 0;
  padding: 40px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  color: #fff;
  z-index: 2;
}
.wz-audience a .label h3 {
  margin: 0;
  font-size: clamp(22px, 3.4vw, 32px);
  font-weight: 700;
}
.wz-audience a::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.7) 100%);
  z-index: 1;
}
.wz-audience a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition: transform 600ms var(--wz-ease);
}
.wz-audience a:hover img {
  transform: scale(1.04);
}
@media (max-width: 780px) {
  .wz-audience {
    grid-template-columns: 1fr;
  }
}

/* ——— Audience hero (eyebrow pages) ——— */
.wz-audience-hero {
  padding: 200px 0 60px;
}
.wz-audience-hero .eyebrow {
  letter-spacing: 0.2em;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 30px;
  color: var(--fg);
}
.wz-audience-hero h1 {
  font-size: clamp(40px, 6vw, 75px);
  font-weight: 700;
  line-height: 1;
  margin: 0 0 32px;
  max-width: 1200px;
}
.wz-audience-hero .sub {
  font-size: 20px;
  color: var(--fg-muted);
  max-width: 600px;
  line-height: 1.5;
  margin: 0 0 40px;
}

/* ——— Service badge ——— */
.wz-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 9999px;
  background: var(--bg-alt);
  font-size: 13px;
  font-family: var(--wz-font-ui);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg);
}

/* ——— Calendly-style scheduler ——— */
.wz-cal {
  display: grid;
  grid-template-columns: 320px 1fr 1fr;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: var(--bg-card);
  overflow: hidden;
}
.wz-cal .info {
  padding: 40px;
  border-right: 1px solid var(--border);
}
.wz-cal .info .meta {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 32px;
  font-size: 15px;
  color: var(--fg-muted);
}
.wz-cal .info .meta-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.wz-cal .info .meta-item svg {
  flex-shrink: 0;
  margin-top: 2px;
}
.wz-cal .pick {
  padding: 40px;
  border-right: 1px solid var(--border);
}
.wz-cal .pick h3 {
  margin: 0 0 24px;
}
.wz-cal .cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  font-family: var(--wz-font-ui);
}
.wz-cal .cal-grid .dow {
  font-size: 12px;
  color: var(--fg-muted);
  text-align: center;
  padding: 8px 0;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.wz-cal .cal-grid button {
  aspect-ratio: 1;
  border: none;
  background: transparent;
  color: var(--fg);
  font-family: var(--wz-font-ui);
  font-size: 15px;
  font-weight: 500;
  border-radius: 9999px;
  cursor: pointer;
  transition: background 140ms;
}
.wz-cal .cal-grid button:hover:not([disabled]) {
  background: var(--bg-alt);
}
.wz-cal .cal-grid button[disabled] {
  color: var(--fg-muted);
  opacity: 0.35;
  cursor: not-allowed;
}
.wz-cal .cal-grid button.is-selected {
  background: var(--accent);
  color: #fff;
}
.wz-cal .cal-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  font-family: var(--wz-font-ui);
}
.wz-cal .cal-nav button {
  width: 32px;
  height: 32px;
  border-radius: 9999px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--fg);
  cursor: pointer;
}
.wz-cal .cal-nav button:hover:not([disabled]) {
  background: var(--bg-alt);
}
.wz-cal .slots {
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: 520px;
  overflow-y: auto;
}
.wz-cal .slots h3 {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 600;
}
.wz-cal .slot {
  padding: 14px 20px;
  border-radius: 8px;
  border: 2px solid var(--border);
  background: transparent;
  cursor: pointer;
  font-family: var(--wz-font-ui);
  font-size: 15px;
  font-weight: 500;
  color: var(--accent);
  transition:
    background 140ms,
    color 140ms,
    border-color 140ms;
  text-align: center;
}
.wz-cal .slot:hover {
  border-color: var(--accent);
}
.wz-cal .slot.is-selected {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
@media (max-width: 1100px) {
  .wz-cal {
    grid-template-columns: 1fr;
  }
  .wz-cal .info,
  .wz-cal .pick {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
}

/* ——— Support page ——— */
.wz-support-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.wz-support-card {
  padding: 40px;
  border-radius: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition:
    transform 240ms var(--wz-ease),
    border-color 240ms;
  cursor: pointer;
}
.wz-support-card:hover {
  transform: translateY(-4px);
  border-color: var(--fg);
}
.wz-support-card .icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}
.wz-support-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin: 0;
}
.wz-support-card p {
  margin: 0;
  color: var(--fg-muted);
  font-size: 16px;
  line-height: 1.5;
}
@media (max-width: 860px) {
  .wz-support-grid {
    grid-template-columns: 1fr;
  }
}

/* ——— FAQ accordion ——— */
.wz-faq details {
  border-top: 1px solid var(--border);
  padding: 24px 0;
}
.wz-faq details:last-child {
  border-bottom: 1px solid var(--border);
}
.wz-faq summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-size: 22px;
  font-weight: 700;
}
.wz-faq summary::-webkit-details-marker {
  display: none;
}
.wz-faq summary::after {
  content: '+';
  font-size: 24px;
  font-weight: 300;
  color: var(--fg-muted);
  transition: transform 200ms;
}
.wz-faq details[open] summary::after {
  content: '×';
}
.wz-faq p {
  color: var(--fg-muted);
  font-size: 17px;
  line-height: 1.6;
  margin: 16px 0 0;
}

/* ——— Theme variant menu (Tweaks) ——— */
.wz-tweaks {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 70;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 220px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  font-family: var(--wz-font-ui);
}
.wz-tweaks .title {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-muted);
  font-weight: 600;
}
.wz-tweaks label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
  color: var(--fg-muted);
}
.wz-tweaks select {
  width: 100%;
  padding: 8px 10px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--fg);
  font-family: var(--wz-font-ui);
  font-size: 14px;
}
.wz-tweaks .row {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: space-between;
}
.wz-tweaks button {
  border: 1px solid var(--border);
  background: transparent;
  color: var(--fg);
  padding: 6px 10px;
  border-radius: 8px;
  font-size: 13px;
  cursor: pointer;
  font-family: var(--wz-font-ui);
}
.wz-tweaks button.is-active {
  background: var(--fg);
  color: var(--bg);
  border-color: var(--fg);
}

/* ——— Parallax bg helper ——— */
.wz-parallax {
  will-change: transform;
}

/* ——— Small utilities ——— */
.wz-mt-xxl {
  margin-top: 180px;
}
.wz-mt-xl {
  margin-top: 120px;
}
.wz-mt-lg {
  margin-top: 80px;
}
.wz-mt-md {
  margin-top: 40px;
}
.wz-text-center {
  text-align: center;
}
.wz-section-title {
  text-align: center;
  margin-bottom: 80px;
}
.wz-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(28px, 5vw, 72px);
}
.wz-logos span {
  font-size: clamp(18px, 1.7vw, 26px);
  font-weight: 600;
  color: var(--fg-muted);
  letter-spacing: 0.01em;
  white-space: nowrap;
  transition: color 160ms var(--wz-ease);
}
.wz-logos span:hover {
  color: var(--fg);
}
/* Continuous logo marquee */
.wz-logos-marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.wz-logos-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: wz-logos-scroll 36s linear infinite;
}
.wz-logos-track span {
  display: inline-block;
  margin-right: clamp(36px, 5vw, 80px);
  font-size: clamp(18px, 1.7vw, 26px);
  font-weight: 600;
  color: var(--fg-muted);
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.wz-logos-track img {
  height: 92px;
  width: auto;
  max-width: 396px;
  object-fit: contain;
  margin-right: clamp(44px, 6vw, 96px);
  filter: grayscale(1);
  opacity: 0.85;
  flex: none;
}
[data-theme='dark'] .wz-logos-track img {
  filter: grayscale(1) brightness(0) invert(1);
}
[data-theme='dark'] .wz-logos-track img[data-logo='drew-smith'] {
  filter: grayscale(1);
}
.wz-logos-marquee:hover .wz-logos-track {
  animation-play-state: paused;
}
@keyframes wz-logos-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .wz-logos-track {
    animation: none;
  }
}

/* ——— Contact / talk responsive grid ——— */
@media (max-width: 960px) {
  .wz-contact-grid {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }
}

/* ——— Page transitions ——— */
.wz-page {
  animation: pageIn 420ms var(--wz-ease);
}
@keyframes pageIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── WIZIO Verse interactive showcase (native) ───────────────────── */
.wzs {
  align-items: stretch;
  overflow: hidden;
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #ffffff 17.71%, #dcdee4 82.16%, #dcdee4 100%);
}
.wzs-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wzs .wz-fx-left {
  z-index: 2;
}
.wzs-m-desc {
  display: none;
}

/* ── Integrations scroll: bigger, squarer scene on mobile so the logos are legible ── */
@media (max-width: 760px) {
  [data-screen-label='WIZIO Integrations'] .scene {
    width: min(94%, 66vh) !important;
    aspect-ratio: 1 / 1 !important;
    max-height: 82% !important;
  }
}
/* ── Integrations scroll: dark mode ── */
[data-theme='dark'] [data-screen-label='WIZIO Integrations'] {
  background: radial-gradient(
    125% 95% at 50% 42%,
    #1c1c1f 0%,
    #151517 50%,
    #0c0c0e 100%
  ) !important;
}
[data-theme='dark'] [data-screen-label='WIZIO Integrations'] .wlogo {
  color: #ffffff !important;
}
[data-theme='dark'] [data-screen-label='WIZIO Integrations'] .headline {
  color: #ffffff !important;
}
[data-theme='dark'] [data-screen-label='WIZIO Integrations'] .headline span {
  color: #4d9bff !important;
}
[data-theme='dark'] [data-screen-label='WIZIO Integrations'] .cap {
  color: #d4d8df !important;
}

/* ── WizioShowcase: dark mode — dark-grey panel, white caption card ── */
[data-theme='dark'] .wzs {
  background: linear-gradient(180deg, #1a1a1c 0%, #1a1a1c 17.71%, #0f0f11 82.16%, #0f0f11 100%);
}
[data-theme='dark'] .wzs .wz-fx-item.open {
  background: #ffffff;
  border-color: rgba(255, 255, 255, 0.6);
}
[data-theme='dark'] .wzs .wz-fx-item.open .wz-fx-label {
  color: #0c0c0e;
}
[data-theme='dark'] .wzs .wz-fx-item.open .wz-fx-body-inner p {
  color: #3a3a3d;
}
/* nav arrows white in dark mode */
[data-theme='dark'] .wzs .wz-fx-arrow,
[data-theme='dark'] .wzs .wz-fx-nav button {
  background: #ffffff !important;
  color: #0c0c0e !important;
  border-color: rgba(255, 255, 255, 0.5) !important;
}
/* Reserve & Deposit slide keeps a light backdrop in both modes so the
   feathered video edges dissolve into light, not into the dark panel. */
.wzs-offer-bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #ffffff 0%, #ffffff 17.71%, #dcdee4 82.16%, #dcdee4 100%);
}
/* Other-services card: the whole card frame zooms in on hover */
.wz-svc-card {
  transform: scale(1);
  transition: transform 500ms cubic-bezier(0.22, 0.61, 0.36, 1);
}
.wz-svc-card:hover {
  transform: scale(1.04);
}
@media (max-width: 760px) {
  .wz-cta-pair {
    grid-template-columns: 1fr !important;
  }
}
.wz-other-grid .wz-svc-card.wz-svc-sq {
  aspect-ratio: 1 / 1 !important;
}
/* Other Services: stack + taller cards on mobile */
@media (max-width: 760px) {
  .wz-other-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
  .wz-other-grid .wz-svc-card {
    aspect-ratio: 4 / 5 !important;
  }
}

/* ── WizioShowcase responsive: tablet + mobile ───────────────────────
   Stack the motion graphic on top (cropped from the left, since its scene
   lives in the right two-thirds) and move the feature buttons to a
   horizontal scroller at the bottom. */
@media (max-width: 980px) {
  .wz-fx.wzs {
    display: block;
    position: relative;
    height: clamp(440px, 92vw, 620px);
    min-height: 0;
    padding: 0;
    overflow: hidden;
  }
  /* motion graphic sits UNDERNEATH the buttons, centred full-bleed behind */
  .wzs > .wzs-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    z-index: 0;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }
  .wzs .wz-fx-left {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 16px 24px 20px;
  }
  /* prev / next chevrons sit centered BELOW the caption card */
  .wzs .wz-fx-nav {
    order: 2;
    position: static;
    display: flex;
    flex-direction: row;
    justify-content: center;
    transform: none;
    left: auto;
    right: auto;
    top: auto;
    width: auto;
    gap: 22px;
    margin-top: 14px;
    z-index: 5;
    pointer-events: auto;
  }
  .wzs .wz-fx-nav button {
    pointer-events: auto;
    background: color-mix(in srgb, var(--bg) 60%, transparent);
    backdrop-filter: saturate(140%) blur(14px);
    -webkit-backdrop-filter: saturate(140%) blur(14px);
  }
  .wzs .wz-fx-nav button svg {
    transform: rotate(-90deg);
  }
  /* active feature description, shown as a readable card on mobile */
  .wzs-m-desc {
    display: none;
  } /* description now lives inside the open carousel item */
  .wzs .wz-fx-list {
    order: 1;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    min-height: 150px;
    height: auto;
    gap: 16px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 4px 50%; /* lets any item scroll to the centre */
    scroll-snap-type: none;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .wzs .wz-fx-list::-webkit-scrollbar {
    width: 0;
    height: 0;
    display: none;
  }
  /* every feature is a full caption card; the active one centres, neighbours peek + fade */
  .wzs .wz-fx-item {
    flex: none;
    align-self: flex-end;
    max-width: calc(100vw - 56px);
    white-space: normal;
    background: color-mix(in srgb, var(--bg) 55%, transparent);
    backdrop-filter: saturate(150%) blur(20px);
    -webkit-backdrop-filter: saturate(150%) blur(20px);
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 14px 20px;
    transition: box-shadow 320ms var(--wz-ease);
    cursor: pointer;
  }
  /* not selected: collapse to a compact label chip */
  .wzs .wz-fx-item:not(.open) {
    opacity: 0.55;
  }
  .wzs .wz-fx-item.open {
    opacity: 1;
    background: color-mix(in srgb, var(--bg) 60%, transparent);
    padding: 16px 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: calc(100vw - 56px);
  }
  .wzs .wz-fx-label {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: var(--fg);
    line-height: 1.4;
    white-space: normal;
  }
  /* description reveal is handled by framer-motion (height + opacity spring);
     CSS transitions on these nodes get stuck, so none here */
  .wzs .wz-fx-item .wz-fx-body-inner p {
    white-space: normal;
    font-size: 14px;
    line-height: 1.5;
    margin-top: 6px;
    color: var(--fg-muted);
  }
}
@media (max-width: 560px) {
  .wz-fx.wzs {
    height: clamp(460px, 124vw, 600px);
  }
  .wzs > .wzs-bg {
    width: 100%;
  }
  .wzs .wz-fx-left {
    padding: 16px 20px 18px;
  }
}
.wzs-stage {
  position: relative;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 460px;
  margin-right: calc(0px - var(--fx-pad));
}
.wzs-browser {
  width: 100%;
  aspect-ratio: 16 / 10;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px 0 0 16px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.14);
  display: flex;
  flex-direction: column;
}
.wzs-browser-bar {
  height: 40px;
  flex: none;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 14px;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
}
.wzs-tl {
  width: 11px;
  height: 11px;
  border-radius: 9999px;
  flex: none;
}
.wzs-tl.r {
  background: #ff5f57;
}
.wzs-tl.y {
  background: #febc2e;
}
.wzs-tl.g {
  background: #28c840;
}
.wzs-url {
  flex: 1;
  margin: 0 10px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 9999px;
  font-family: var(--wz-font-ui);
  font-size: 11px;
  color: var(--fg-muted);
}
.wzs-url svg {
  opacity: 0.8;
}
.wzs-tag {
  flex: none;
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--wz-font-ui);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}
.wzs-tag i {
  width: 6px;
  height: 6px;
  border-radius: 9999px;
  background: var(--accent);
  animation: wz-fx-pulse 2s var(--wz-ease) infinite;
}
.wzs-viewport {
  position: relative;
  flex: 1;
  overflow: hidden;
  background: var(--bg-alt);
}

/* ── premium content-switching cross-dissolve (motion graphics) ──────────
   Incoming glides in from the right + scales up + fades in.
   Outgoing glides out to the left + scales down + fades out.
   Layers are absolutely stacked so they overlap with zero layout shift. */
.wzs-mglayer {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  will-change: transform, opacity;
  transform-origin: center;
}
/* enter/exit motion is driven by the Web Animations API (see MGLayer) */
.wzs-mglayer.is-active {
  z-index: 2;
}
.wzs-mglayer.is-leaving {
  z-index: 1;
  pointer-events: none;
}

.wzs-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  transform-origin: center;
}
/* parked (ready to enter), scaled down + invisible — no transition */
.wzs-layer.idle {
  opacity: 0;
  transform: scale(0.9);
  transition: none;
}
/* entering: zoom in (grow) + fade in */
.wzs-layer.active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
  transition:
    opacity 520ms var(--wz-ease),
    transform 760ms cubic-bezier(0.16, 1, 0.3, 1);
}
/* leaving: zoom out (shrink) + fade out */
.wzs-layer.leaving {
  opacity: 0;
  transform: scale(0.9);
  transition:
    opacity 460ms var(--wz-ease),
    transform 760ms cubic-bezier(0.16, 1, 0.3, 1);
}
.wzs-screen {
  position: absolute;
  inset: 0;
}
.wzs-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* iPad Pro showcase — angled float (keyframes from the IPadShowcase component) */
@keyframes wzIpadFloat {
  0% {
    transform: rotateX(7deg) rotateY(-25deg) rotateZ(1.6deg) translateY(0);
  }
  50% {
    transform: rotateX(5.5deg) rotateY(-28.5deg) rotateZ(1deg) translateY(-20px);
  }
  100% {
    transform: rotateX(7deg) rotateY(-25deg) rotateZ(1.6deg) translateY(0);
  }
}
@keyframes wzShadowFloat {
  0% {
    transform: translateX(-50%) scale(1);
    opacity: 0.3;
  }
  50% {
    transform: translateX(-50%) scale(0.93);
    opacity: 0.2;
  }
  100% {
    transform: translateX(-50%) scale(1);
    opacity: 0.3;
  }
}

/* Live inventory filter showcase — angled float + cursor/pill/panel timeline */
@keyframes wzFilterFloat {
  0% {
    transform: scale(0.74) rotateX(5deg) rotateY(-17deg) rotateZ(0.7deg) translateY(0);
  }
  50% {
    transform: scale(0.74) rotateX(3.5deg) rotateY(-19.5deg) rotateZ(0.5deg) translateY(-18px);
  }
  100% {
    transform: scale(0.74) rotateX(5deg) rotateY(-17deg) rotateZ(0.7deg) translateY(0);
  }
}
/* Mobile/compact: flatter angle + larger scale so the bar & dropdown fill the
   box and never clip on the sides. */
@keyframes wzFilterFloatM {
  0% {
    transform: scale(1.12) rotateX(2.5deg) rotateY(-7deg) rotateZ(0.4deg) translateY(0);
  }
  50% {
    transform: scale(1.12) rotateX(1.5deg) rotateY(-8.5deg) rotateZ(0.3deg) translateY(-12px);
  }
  100% {
    transform: scale(1.12) rotateX(2.5deg) rotateY(-7deg) rotateZ(0.4deg) translateY(0);
  }
}
@keyframes wzPillX {
  0%,
  22% {
    transform: translateX(0);
  }
  25%,
  47% {
    transform: translateX(197px);
  }
  50%,
  72% {
    transform: translateX(394px);
  }
  75%,
  97% {
    transform: translateX(591px);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes wzCursorX {
  0% {
    transform: translateX(0) scale(1);
  }
  3% {
    transform: translateX(0) scale(0.82);
  }
  6%,
  22% {
    transform: translateX(0) scale(1);
  }
  25% {
    transform: translateX(197px) scale(1);
  }
  28% {
    transform: translateX(197px) scale(0.82);
  }
  31%,
  47% {
    transform: translateX(197px) scale(1);
  }
  50% {
    transform: translateX(394px) scale(1);
  }
  53% {
    transform: translateX(394px) scale(0.82);
  }
  56%,
  72% {
    transform: translateX(394px) scale(1);
  }
  75% {
    transform: translateX(591px) scale(1);
  }
  78% {
    transform: translateX(591px) scale(0.82);
  }
  81%,
  97% {
    transform: translateX(591px) scale(1);
  }
  100% {
    transform: translateX(0) scale(1);
  }
}
@keyframes wzPanel0 {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  22% {
    opacity: 1;
    transform: translateY(0);
  }
  25% {
    opacity: 0;
    transform: translateY(-6px);
  }
  96% {
    opacity: 0;
    transform: translateY(-6px);
  }
  99%,
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes wzPanel1 {
  0%,
  23% {
    opacity: 0;
    transform: translateY(-6px);
  }
  26% {
    opacity: 1;
    transform: translateY(0);
  }
  47% {
    opacity: 1;
    transform: translateY(0);
  }
  50%,
  100% {
    opacity: 0;
    transform: translateY(-6px);
  }
}
@keyframes wzPanel2 {
  0%,
  48% {
    opacity: 0;
    transform: translateY(-6px);
  }
  51% {
    opacity: 1;
    transform: translateY(0);
  }
  72% {
    opacity: 1;
    transform: translateY(0);
  }
  75%,
  100% {
    opacity: 0;
    transform: translateY(-6px);
  }
}
@keyframes wzPanel3 {
  0%,
  73% {
    opacity: 0;
    transform: translateY(-6px);
  }
  76% {
    opacity: 1;
    transform: translateY(0);
  }
  97% {
    opacity: 1;
    transform: translateY(0);
  }
  99%,
  100% {
    opacity: 0;
    transform: translateY(-6px);
  }
}

/* card primitive used inside screens */
.wzs-card {
  position: absolute;
  z-index: 3;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px 18px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.18);
  min-width: 210px;
}
.wzs-card-eyebrow {
  font-family: var(--wz-font-ui);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 6px;
}
.wzs-card-title {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--fg);
}
.wzs-card-sub {
  font-size: 13px;
  color: var(--fg-muted);
  margin-top: 3px;
}
.wzs-card-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 13px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}
.wzs-dot-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
}
.wzs-dot-label i {
  width: 7px;
  height: 7px;
  border-radius: 9999px;
  background: var(--accent);
}
.wzs-link {
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
}

/* map */
.wzs-map-veil {
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 90% at 50% 0%, transparent 40%, rgba(0, 0, 0, 0.28));
}
.wzs-pin {
  position: absolute;
  width: 14px;
  height: 14px;
  margin: -7px 0 0 -7px;
  border-radius: 9999px;
  background: #fff;
  border: 3px solid var(--accent);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
  transform: scale(0);
  animation: wzs-drop 0.5s var(--wz-ease) forwards;
}
.wzs-pin.is-active {
  background: var(--accent);
  border-color: #fff;
  width: 18px;
  height: 18px;
  margin: -9px 0 0 -9px;
  z-index: 2;
}
.wzs-pin.is-active::after {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 9999px;
  border: 2px solid var(--accent);
  animation: wzs-ping 1.8s var(--wz-ease) infinite;
}
.wzs-map-card {
  left: 18px;
  bottom: 18px;
  animation: wzs-rise 0.6s var(--wz-ease) 0.5s both;
}

/* filter */
.wzs-filter {
  display: flex;
  background: var(--bg-card);
}
.wzs-filter-rail {
  width: 132px;
  flex: none;
  border-right: 1px solid var(--border);
  padding: 16px 14px;
  background: var(--bg-alt);
}
.wzs-rail-title {
  font-family: var(--wz-font-ui);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 12px;
}
.wzs-pill {
  font-family: var(--wz-font-ui);
  font-size: 12px;
  padding: 7px 12px;
  border-radius: 9999px;
  border: 1px solid var(--border);
  color: var(--fg-muted);
  margin-bottom: 8px;
  opacity: 0;
  animation: wzs-rise 0.4s var(--wz-ease) forwards;
}
.wzs-pill.on {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.wzs-rail-count {
  margin-top: 14px;
  font-size: 12px;
  color: var(--fg-muted);
}
.wzs-rail-count b {
  color: var(--fg);
  font-size: 15px;
}
.wzs-grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 16px;
  align-content: start;
}
.wzs-unit {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 10px;
  height: 58px;
  padding: 9px 11px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition:
    opacity 0.4s var(--wz-ease),
    transform 0.4s var(--wz-ease);
}
.wzs-unit.out {
  opacity: 0;
  transform: scale(0.9);
}
.wzs-unit-tag {
  font-family: var(--wz-font-ui);
  font-size: 11px;
  font-weight: 600;
  color: var(--accent);
}
.wzs-unit-price {
  font-size: 13px;
  font-weight: 700;
  color: var(--fg);
}

/* rotate */
.wzs-rotate-img {
  animation: wzs-pan 14s ease-in-out infinite alternate;
  transform-origin: center;
}
.wzs-compass {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 3;
  transition: transform 2.4s cubic-bezier(0.16, 1, 0.3, 1);
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.5));
}
.wzs-hint {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  z-index: 3;
  font-family: var(--wz-font-ui);
  font-size: 11px;
  color: #fff;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  padding: 7px 14px;
  border-radius: 9999px;
}

/* reserve */
.wzs-reserve-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.05) 45%, transparent);
}
.wzs-reserve-card {
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 230px;
  animation: wzs-slide-l 0.6s var(--wz-ease) both;
}
.wzs-spec {
  font-size: 12px;
  color: var(--fg-muted);
  margin-top: 8px;
  line-height: 1.45;
}
.wzs-reserve-btn {
  margin-top: 14px;
  width: 100%;
  border: 0;
  border-radius: 9999px;
  padding: 11px;
  font-family: var(--wz-font-ui);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition:
    background 0.3s var(--wz-ease),
    color 0.3s var(--wz-ease);
}
.wzs-reserve-btn.s0 {
  background: var(--accent);
  color: #fff;
}
.wzs-reserve-btn.s1 {
  background: var(--bg-alt);
  color: var(--fg-muted);
}
.wzs-reserve-btn.s2 {
  background: #1f9d55;
  color: #fff;
}

/* analytics */
.wzs-analytics {
  background: var(--bg-card);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.wzs-an-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.wzs-kpi {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 14px;
  opacity: 0;
  animation: wzs-rise 0.5s var(--wz-ease) forwards;
}
.wzs-kpi-label {
  font-family: var(--wz-font-ui);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-muted);
}
.wzs-kpi-val {
  font-size: 22px;
  font-weight: 700;
  color: var(--fg);
  margin-top: 4px;
  line-height: 1;
}
.wzs-kpi-up {
  font-size: 11px;
  font-weight: 600;
  color: #1f9d55;
  margin-top: 3px;
}
.wzs-an-chart {
  flex: 1;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
}
.wzs-an-chart-head {
  font-family: var(--wz-font-ui);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 12px;
}
.wzs-bars {
  flex: 1;
  display: flex;
  align-items: flex-end;
  gap: 10px;
  min-height: 90px;
}
.wzs-bar {
  flex: 1;
  background: linear-gradient(180deg, var(--accent), var(--accent-strong));
  border-radius: 6px 6px 0 0;
  transition: height 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes wzs-drop {
  0% {
    transform: scale(0);
  }
  70% {
    transform: scale(1.25);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes wzs-ping {
  0% {
    transform: scale(0.6);
    opacity: 0.9;
  }
  100% {
    transform: scale(1.7);
    opacity: 0;
  }
}
@keyframes wzs-rise {
  0% {
    opacity: 0;
    transform: translateY(12px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes wzs-slide-l {
  0% {
    opacity: 0;
    transform: translate(20px, -50%);
  }
  100% {
    opacity: 1;
    transform: translate(0, -50%);
  }
}
@keyframes wzs-pan {
  0% {
    transform: scale(1.12) translate(-2%, 0);
  }
  100% {
    transform: scale(1.12) translate(2%, -2%);
  }
}

@media (max-width: 980px) {
  .wzs-stage {
    order: -1;
    margin-right: 0;
  }
  .wzs-browser {
    aspect-ratio: 16 / 11;
    border-radius: 16px;
  }
}
@media (max-width: 560px) {
  .wzs-filter-rail {
    width: 104px;
  }
  .wzs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .wzs-reserve-card {
    width: 190px;
  }
}

/* ── Hero still (animated fallback when no production showreel) ───── */
.wz-hero-still {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform-origin: 60% 40%;
  animation: wz-hero-kenburns 22s ease-in-out infinite alternate;
}
.wz-hero-still-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.05) 0%,
    transparent 30%,
    transparent 60%,
    rgba(0, 0, 0, 0.32) 100%
  );
  pointer-events: none;
}
.wz-hero-chip {
  position: absolute;
  left: 24px;
  bottom: 24px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 16px;
  border-radius: 9999px;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(10px);
  color: #fff;
  font-family: var(--wz-font-ui);
  font-size: 12px;
  letter-spacing: 0.04em;
}
.wz-hero-chip i {
  width: 7px;
  height: 7px;
  border-radius: 9999px;
  background: #2bd17e;
  box-shadow: 0 0 0 0 rgba(43, 209, 126, 0.7);
  animation: wz-hero-live 2s var(--wz-ease) infinite;
}
@keyframes wz-hero-kenburns {
  0% {
    transform: scale(1.02);
  }
  100% {
    transform: scale(1.12) translate(-1.5%, -1%);
  }
}
@keyframes wz-hero-live {
  0% {
    box-shadow: 0 0 0 0 rgba(43, 209, 126, 0.6);
  }
  70% {
    box-shadow: 0 0 0 7px rgba(43, 209, 126, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(43, 209, 126, 0);
  }
}

/* ── CRM logo row ─────────────────────────────────────────────────── */
.wz-crm-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-top: 56px;
}
@media (min-width: 768px) {
  .wz-crm-row {
    gap: 40px;
  }
}
@media (min-width: 1280px) {
  .wz-crm-row {
    gap: 80px;
  }
}
.wz-crm-logo {
  width: 160px;
  height: 120px;
  object-fit: contain;
  filter: brightness(0);
  transition:
    opacity 200ms var(--wz-ease),
    transform 200ms var(--wz-ease);
}
.wz-crm-logo:hover {
  transform: translateY(-3px);
}
[data-theme='dark'] .wz-crm-logo {
  filter: brightness(0) invert(1);
}
@media (max-width: 640px) {
  .wz-crm-logo {
    width: 120px;
    height: 90px;
  }
}

/* ── Feature cards carousel (Apple-style) ─────────────────────────── */
.wz-fcards-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 48px;
}
.wz-fcards-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--wz-blue, #0066ff);
  font-family: var(--wz-font-ui);
  font-size: 18px;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 160ms var(--wz-ease);
}
.wz-fcards-link:hover {
  opacity: 0.7;
}
.wz-fcards {
  position: relative;
  width: min(100vw, 1920px);
  margin-left: calc(-50vw + 50% + max(0px, (100vw - 1920px) / 2));
  overflow: hidden;
  /* left edge of page content (matches .wz-container) */
  --fc-edge: var(--page-gutter);
}
.wz-fcards-scroller {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  scroll-padding-left: var(--fc-edge);
  padding-left: var(--fc-edge);
  padding-right: 24px;
  padding-bottom: 8px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.wz-fcards-scroller::-webkit-scrollbar {
  display: none;
}
.wz-fcard {
  position: relative;
  flex: 0 0 auto;
  width: 384px;
  max-width: 84vw;
  min-height: 580px;
  background: #fff;
  --fg: #0c0c0e;
  --fg-muted: #6d6d70;
  border-radius: 30px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  scroll-snap-align: start;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}
.wz-fcard-text {
  padding: 36px 36px 0;
}
.wz-fcard-eyebrow {
  font-family: var(--wz-font-ui);
  font-size: 16px;
  color: var(--fg);
  margin-bottom: 14px;
}
.wz-fcard-title {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin: 0 0 18px;
  color: var(--fg);
}
.wz-fcard-body {
  font-size: 17px;
  line-height: 1.4;
  color: var(--fg-muted);
  margin: 0;
}
.wz-fcard-media {
  flex: 1;
  width: 100%;
  min-height: 220px;
  margin-top: 28px;
  overflow: hidden;
}
.wz-fcard-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(var(--img-scale, 1));
  transition: transform 600ms var(--wz-ease);
}
.wz-fcard:hover .wz-fcard-media img {
  transform: scale(calc(var(--img-scale, 1) * 1.04));
}
.wz-fcard-add {
  position: absolute;
  bottom: 22px;
  right: 22px;
  width: 44px;
  height: 44px;
  border-radius: 9999px;
  border: 0;
  background: rgba(0, 0, 0, 0.72);
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
  transition:
    background 160ms var(--wz-ease),
    transform 160ms var(--wz-ease);
}
.wz-fcard-add:hover {
  background: #000;
}
.wz-fcard-add:active {
  transform: scale(0.94);
}
.wz-fcards-nav {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 28px;
  padding-right: var(--fc-edge);
}
.wz-fcards-arrow {
  width: 44px;
  height: 44px;
  border-radius: 9999px;
  border: 0;
  background: var(--bg-alt, #efeff2);
  color: var(--fg);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition:
    background 160ms var(--wz-ease),
    transform 160ms var(--wz-ease);
}
.wz-fcards-arrow:hover {
  background: var(--border, #d8d8dc);
}
.wz-fcards-arrow:active {
  transform: scale(0.94);
}
@media (max-width: 640px) {
  .wz-fcards-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .wz-fcard {
    min-height: 520px;
  }
}

/* ── Footer responsive fix (prevent narrow-screen overflow) ──────── */
@media (max-width: 640px) {
  .wz-footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .wz-footer-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
    padding: 48px 0;
  }
  .wz-footer-socials {
    flex-wrap: wrap;
    gap: 20px 28px;
  }
  .wz-footer .addr.addr-offices {
    flex-direction: column;
    gap: 0;
  }
  .wz-footer-legal {
    gap: 12px;
  }
}

/* ── Scroll Hero (merged Map + Integrated feature scrollytelling) ──── */
@keyframes wzCue {
  0% {
    transform: scaleY(0.2);
    opacity: 0.2;
    transform-origin: top;
  }
  45% {
    opacity: 1;
  }
  100% {
    transform: scaleY(1);
    opacity: 0.15;
    transform-origin: top;
  }
}
.wz-cue-line {
  display: block;
  width: 1px;
  height: 36px;
  background: var(--wz-gray-700);
  animation: wzCue 1.7s var(--wz-ease) infinite alternate;
}
@media (max-width: 767px) {
  .wz-textwrap {
    align-items: flex-start !important;
    justify-content: center !important;
    padding: 13vh 22px 0 !important;
    text-align: center;
  }
  .wz-textwrap > div {
    max-width: 600px !important;
    margin: 0 auto;
  }
  .wz-ipadwrap {
    align-items: flex-end !important;
    justify-content: center !important;
    padding: 0 16px 9vh !important;
  }
  .wz-ipad {
    width: min(88vw, 540px) !important;
  }
  .wz-cue {
    display: none !important;
  }
}

/* ── Cookie manager (silktide) sits below app modals/popups ──────────
   Its default z-index (99999) covered the 360 tour lightbox (z-index 1000).
   Cap it below the modal layer so any popup stays on top of the cookie icon. */
#stcm-wrapper {
  z-index: 800 !important;
}
#stcm-icon {
  z-index: 800 !important;
  bottom: 24px !important;
  left: 24px !important;
}

/* ─────────────────────────────────────────────────────────────────────
   RTL — Arabic & Hebrew. The i18n engine sets <html dir="rtl">; these
   rules mirror the directional chrome that uses physical offsets.
   ───────────────────────────────────────────────────────────────────── */
[dir='rtl'] {
  text-align: right;
}
/* Header dropdown flips to the inline-start (right) edge */
[dir='rtl'] .wz-nav-dd {
  left: auto;
  right: -16px;
}
[dir='rtl'] .wz-nav-dd a {
  text-align: right;
}
/* Sheet close button + list read right-to-left */
[dir='rtl'] .wz-sheet-close {
  right: auto;
  left: 24px;
}
[dir='rtl'] .wz-sheet-group summary,
[dir='rtl'] .wz-sheet-group > a {
  text-align: right;
}
/* Footer + legal bar keep their flex order but align to the right */
[dir='rtl'] .wz-footer-socials {
  justify-content: flex-start;
}
/* Reading blocks and body copy align to the reading direction */
[dir='rtl'] .wz-readblock-grid p,
[dir='rtl'] .wz-body,
[dir='rtl'] .wz-faq summary,
[dir='rtl'] .wz-faq p {
  text-align: right;
}
/* Inputs type in the reading direction */
[dir='rtl'] input,
[dir='rtl'] textarea,
[dir='rtl'] select {
  text-align: right;
}
/* Centered heroes stay centered regardless of direction */
[dir='rtl'] .wz-hero-home .wz-container {
  text-align: center;
}
/* Numeric/currency runs and Latin brand fragments stay LTR inside RTL text */
[dir='rtl'] .wz-stat-value,
[dir='rtl'] .wz-footer-legal > div:first-child {
  direction: ltr;
}
