/* ────────────────────────────────────────────────────────────────────────
   Royal Enterprises — interactive supply-bay
   ──────────────────────────────────────────────────────────────────────── */

:root {
  --accent: #ff7a1f;
  --accent-bright: #f0b46a;
  --accent-soft: rgba(255, 122, 31, 0.18);
  --hivis: #7dd35a;
  --hivis-soft: rgba(125, 211, 90, 0.18);
  --engraved: 0 1px 0 rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.06);
  --ink-0: #06070a;
  --ink-1: #0d0f13;
  --ink-2: #14171c;
  --ink-3: #1c2027;
  --line: rgba(255, 255, 255, 0.07);
  --line-strong: rgba(255, 255, 255, 0.16);
  --text: #f3f4f6;
  --text-2: #b6bcc6;
  --text-3: #6b727d;
  --dim: rgba(6, 7, 10, 0.62);
  --font-display: "Geist", "Söhne", "Inter", "Helvetica Neue", system-ui, sans-serif;
  --font-mono: "Geist Mono", "JetBrains Mono", "IBM Plex Mono", ui-monospace, monospace;
  --font-editorial: "Instrument Serif", "Times New Roman", serif;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--ink-0);
  color: var(--text);
  font-family: var(--font-display);
  min-height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-font-smoothing: antialiased;
  letter-spacing: -0.01em;
}
/* When the intro is up we don't want the page to scroll past the hero — the
   below-fold is suppressed in JSX anyway, but lock the viewport to be safe. */
body.intro-lock { overflow: hidden; }

#root { min-height: 100%; }

/* ───── Stage / scene ───── */
.stage {
  position: relative;
  width: 100%;
  height: 100vh;
  background:
    radial-gradient(ellipse at 50% 100%, #14171c 0%, #06070a 70%);
  overflow: hidden;
}

.scene {
  position: relative;
  width: 100vw !important;
  height: 100vh !important;
  max-width: none;
  aspect-ratio: auto;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04),
    0 30px 80px -20px rgba(0, 0, 0, 0.9);
}

.scene-image {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  max-width: none;
  object-fit: cover !important;
  object-position: center center;
  user-select: none;
  -webkit-user-drag: none;
  transition: transform 1200ms cubic-bezier(.2,.7,.2,1), filter 400ms ease;
  will-change: transform, filter;
}

.scene.is-loading .scene-image { transform: scale(1.06); filter: brightness(0.6) blur(8px); }
.scene.is-dimmed .scene-image {
  filter: brightness(0.85)
          drop-shadow(0.6px 0 0 rgba(255,80,80,0.10))
          drop-shadow(-0.6px 0 0 rgba(80,200,255,0.10));
}
.scene.is-intro-covered .scene-image { filter: brightness(0.45) saturate(0.85); transform: scale(1.04); }

/* ───── Intro hero video layer ───── */
.intro-hero {
  position: absolute;
  inset: 0;
  z-index: 45;
  overflow: hidden;
  background: #06070a;
  isolation: isolate;
  --intro-x: 72%;
  --intro-y: 54%;
  --intro-dx: 0px;
  --intro-dy: 0px;
  animation: intro-in 700ms cubic-bezier(.2,.7,.2,1) both;
}
.intro-hero::before {
  content: "";
  position: absolute;
  inset: -12%;
  z-index: 3;
  pointer-events: none;
  background:
    radial-gradient(circle at var(--intro-x) var(--intro-y), rgba(255,138,61,0.18), transparent 18%),
    radial-gradient(circle at calc(var(--intro-x) + 8%) calc(var(--intro-y) + 10%), rgba(255,255,255,0.08), transparent 14%);
  opacity: 0;
  transition: opacity 360ms ease;
  mix-blend-mode: screen;
}
.intro-hero.is-active::before { opacity: 1; }
@keyframes intro-in {
  from { opacity: 0; transform: scale(1.015); }
  to   { opacity: 1; transform: scale(1); }
}
.intro-hero.is-exiting {
  pointer-events: none;
  animation: intro-out 1080ms cubic-bezier(.2,.7,.2,1) forwards;
}
@keyframes intro-out {
  0%   { opacity: 1; transform: scale(1); filter: brightness(1); }
  55%  { opacity: 1; transform: scale(1.018); filter: brightness(1.12); }
  100% { opacity: 0; transform: scale(1.045); filter: brightness(0.8); }
}
.intro-video-stack,
.intro-video,
.intro-scrim {
  position: absolute;
  inset: 0;
}
.intro-video-stack {
  transform: translate3d(calc(var(--intro-dx) * -0.35), calc(var(--intro-dy) * -0.25), 0) scale(1.01);
  transition: transform 420ms cubic-bezier(.2,.7,.2,1);
  will-change: transform;
}
.intro-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(1.08) contrast(1.04) saturate(1.05);
  transition: opacity 900ms cubic-bezier(.4,0,.2,1), transform 2200ms cubic-bezier(.2,.7,.2,1), filter 700ms ease;
}
.intro-video-idle {
  opacity: 1;
  transform: scale(1.01);
}
.intro-video-activate {
  opacity: 0;
  transform: scale(1.012);
}
.intro-hero.is-active .intro-video-idle {
  opacity: 0.22;
  transform: scale(1.018);
  filter: brightness(1.04);
}
.intro-hero.is-active .intro-video-activate {
  opacity: 1;
  transform: translate3d(calc(var(--intro-dx) * 0.35), calc(var(--intro-dy) * 0.22), 0) scale(1.035);
}
.intro-scrim {
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(ellipse 46% 60% at 72% 50%, rgba(255,122,31,0.08), transparent 68%),
    linear-gradient(90deg, rgba(6,7,10,0.82) 0%, rgba(6,7,10,0.62) 32%, rgba(6,7,10,0.18) 60%, rgba(6,7,10,0.00) 86%, rgba(6,7,10,0.08) 100%),
    linear-gradient(180deg, rgba(6,7,10,0.04) 0%, rgba(6,7,10,0.10) 60%, rgba(6,7,10,0.42) 100%);
}
.intro-copy {
  position: absolute;
  z-index: 4;
  left: clamp(28px, 6vw, 96px);
  top: 50%;
  transform: translateY(-50%);
  width: min(600px, 50vw);
  color: var(--text);
  animation: intro-copy-in 900ms cubic-bezier(.2,.7,.2,1) 180ms both;
}
@keyframes intro-copy-in {
  from { opacity: 0; transform: translateY(calc(-50% + 18px)); filter: blur(8px); }
  to   { opacity: 1; transform: translateY(-50%); filter: blur(0); }
}
.intro-brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  padding: 8px 10px 8px 8px;
  border-radius: 14px;
  background: rgba(8,10,13,0.54);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
}
.intro-brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 11px 3px 11px 3px;
  background: linear-gradient(135deg, rgba(255,122,31,0.24), rgba(217,100,32,0.10));
  color: var(--accent-bright);
  font-size: 19px;
  font-weight: 500;
  letter-spacing: -0.02em;
  border: 1px solid rgba(255,122,31,0.42);
  box-shadow:
    0 14px 30px -16px rgba(255,122,31,0.95),
    inset 0 1px 0 rgba(255,255,255,0.10),
    inset 0 -1px 0 rgba(0,0,0,0.45);
}
.intro-brand-lockup strong {
  display: block;
  color: #fff;
  font-size: clamp(18px, 1.7vw, 22px);
  line-height: 1;
  font-weight: 500;
  letter-spacing: -0.022em;
  font-feature-settings: "ss01", "ss02";
}
.intro-brand-lockup strong .wm-soft {
  color: rgba(255,255,255,0.62);
  font-weight: 400;
}
.intro-brand-lockup small {
  display: block;
  margin-top: 5px;
  color: var(--text-3);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.intro-kicker {
  display: inline-flex;
  align-items: center;
  height: 24px;
  padding: 0 11px;
  border-radius: 999px;
  border: 1px solid rgba(255,138,61,0.32);
  background: rgba(255,138,61,0.10);
  color: var(--accent-bright);
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.intro-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
  color: var(--text-3);
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.intro-eyebrow-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--hivis);
  box-shadow: 0 0 8px rgba(125, 211, 90, 0.7);
  animation: live-blink 2.2s ease-in-out infinite;
}
.intro-copy h1 {
  margin: 22px 0 0;
  max-width: 18ch;
  font-size: clamp(34px, 4vw, 60px);
  line-height: 1.06;
  letter-spacing: -0.018em;
  font-weight: 420;
  color: #fff;
  text-wrap: balance;
}
.intro-copy h1 em {
  font-family: var(--font-editorial);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.005em;
  color: #fff;
  white-space: nowrap;
  padding: 0 0.06em 0 0.02em;
}
.intro-copy p {
  margin: 22px 0 0;
  max-width: 40ch;
  font-size: clamp(13.5px, 1vw, 15px);
  line-height: 1.62;
  color: var(--text-2);
  letter-spacing: -0.008em;
  text-wrap: pretty;
  font-weight: 400;
  opacity: 0.85;
}
.intro-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}
.intro-actions .btn {
  height: 44px;
  border-radius: 999px;
  padding: 0 22px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.005em;
  transition: transform 260ms cubic-bezier(.2,.7,.2,1), background 220ms ease, border-color 220ms ease;
}
.intro-actions .btn:active {
  transform: translateY(1px) scale(0.985);
}
.intro-actions .kbd {
  display: inline-grid;
  place-items: center;
  min-width: 20px;
  height: 20px;
  margin-left: 10px;
  padding: 0 6px;
  border-radius: 5px;
  background: rgba(0,0,0,0.28);
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: inset 0 -1px 0 rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.85);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.04em;
}
.intro-secondary {
  background: rgba(255,255,255,0.045);
  color: #fff;
  border-color: rgba(255,255,255,0.14);
}
.intro-secondary:hover {
  background: rgba(255,255,255,0.085);
  border-color: rgba(255,255,255,0.24);
}
.intro-proof {
  display: grid;
  grid-template-columns: max-content 1fr;
  column-gap: 14px;
  row-gap: 5px;
  margin-top: 36px;
  max-width: 320px;
  color: var(--text-3);
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-variant-numeric: tabular-nums;
  opacity: 0.85;
}
.intro-proof span {
  display: contents;
}
.intro-proof span b {
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.04em;
  align-self: center;
}
.intro-proof span i {
  position: relative;
  font-style: normal;
  color: var(--text-2);
  letter-spacing: 0.08em;
  padding-left: 14px;
  align-self: center;
}
.intro-proof span i::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 8px;
  height: 1px;
  background: rgba(255,255,255,0.18);
}
.intro-scroll-cue {
  position: absolute;
  z-index: 5;
  left: 50%;
  bottom: clamp(28px, 4.5vh, 56px);
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  border: 0;
  padding: 8px 14px;
  background: transparent;
  color: var(--text-2);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  animation: scroll-cue-in 700ms cubic-bezier(.2,.7,.2,1) 700ms both;
}
.intro-scroll-cue:focus-visible {
  outline: 1px solid rgba(255,138,61,0.5);
  outline-offset: 6px;
  border-radius: 14px;
}
@keyframes scroll-cue-in {
  from { opacity: 0; transform: translate(-50%, 14px); }
  to   { opacity: 1; transform: translate(-50%, 0); }
}
.scroll-mouse {
  width: 22px;
  height: 34px;
  border-radius: 12px;
  border: 1.3px solid rgba(255,255,255,0.55);
  position: relative;
  display: block;
  background: rgba(8, 10, 13, 0.28);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow:
    0 6px 18px -8px rgba(0,0,0,0.6),
    inset 0 1px 0 rgba(255,255,255,0.10);
  transition: border-color 220ms ease, transform 220ms cubic-bezier(.2,.7,.2,1);
}
.scroll-dot {
  position: absolute;
  left: 50%;
  top: 6px;
  width: 2.5px;
  height: 7px;
  background: #fff;
  border-radius: 2px;
  transform: translateX(-50%);
  animation: scroll-dot-fall 1.8s cubic-bezier(.65,0,.35,1) infinite;
  box-shadow: 0 0 8px rgba(255,255,255,0.55);
}
@keyframes scroll-dot-fall {
  0%   { transform: translate(-50%, 0);    opacity: 0; }
  15%  { opacity: 1; }
  55%  { transform: translate(-50%, 14px); opacity: 1; }
  80%  { transform: translate(-50%, 14px); opacity: 0; }
  100% { transform: translate(-50%, 0);    opacity: 0; }
}
.scroll-chevron {
  display: block;
  width: 10px;
  height: 6px;
  margin-top: -2px;
  opacity: 0.55;
  animation: scroll-chev 1.8s cubic-bezier(.65,0,.35,1) infinite;
}
.scroll-chevron svg { display: block; width: 100%; height: 100%; }
@keyframes scroll-chev {
  0%, 100% { transform: translateY(-2px); opacity: 0.35; }
  50%      { transform: translateY(2px);  opacity: 0.85; }
}
.scroll-label {
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-3);
  font-variant-numeric: tabular-nums;
  transition: color 220ms ease;
}
.intro-scroll-cue:hover .scroll-mouse {
  border-color: rgba(255, 138, 61, 0.65);
  transform: translateY(-2px);
}
.intro-scroll-cue:hover .scroll-label {
  color: var(--accent-bright);
}
.intro-hero.is-exiting .intro-scroll-cue {
  opacity: 0;
  transition: opacity 280ms ease;
  pointer-events: none;
}
.intro-hotspot {
  position: absolute;
  z-index: 5;
  right: clamp(120px, 18vw, 300px);
  top: 56%;
  width: 118px;
  height: 118px;
  border: 0;
  background: transparent;
  cursor: pointer;
  color: #fff;
  display: grid;
  place-items: center;
  transform: translate(calc(50% + var(--intro-dx)), calc(-50% + var(--intro-dy)));
  transition: transform 420ms cubic-bezier(.2,.7,.2,1);
}
.intro-hotspot-core {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow:
    0 0 0 2px rgba(6,7,10,0.85),
    0 0 18px rgba(255,138,61,0.9),
    0 0 42px rgba(255,138,61,0.46);
  position: relative;
}
.intro-hotspot-core::before,
.intro-hotspot-core::after {
  content: "";
  position: absolute;
  inset: 50%;
  width: 12px;
  height: 12px;
  margin: -6px;
  border-radius: 50%;
  border: 1px solid rgba(255,167,102,0.72);
  animation: intro-ping 2.4s cubic-bezier(.2,.7,.2,1) infinite;
}
.intro-hotspot-core::after {
  animation-delay: 680ms;
}
@keyframes intro-ping {
  from { transform: scale(1); opacity: 0.82; }
  to   { transform: scale(6.6); opacity: 0; }
}
.intro-hotspot-label {
  position: absolute;
  top: calc(50% + 28px);
  white-space: nowrap;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(10,12,15,0.82);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--text-2);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: opacity 240ms ease, transform 240ms cubic-bezier(.2,.7,.2,1);
}
.intro-hotspot:hover .intro-hotspot-label,
.intro-hotspot:focus-visible .intro-hotspot-label {
  color: #fff;
  transform: translateY(-3px);
}
.intro-hero.is-active .intro-hotspot-core {
  transform: scale(1.28);
  box-shadow:
    0 0 0 2px rgba(6,7,10,0.9),
    0 0 20px rgba(255,138,61,1),
    0 0 58px rgba(255,138,61,0.64);
}
.intro-trust {
  position: absolute;
  z-index: 4;
  left: clamp(28px, 6vw, 96px);
  bottom: clamp(28px, 5vh, 56px);
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--text-3);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 600ms cubic-bezier(.2,.7,.2,1), transform 600ms cubic-bezier(.2,.7,.2,1);
}
.intro-hero .intro-trust { opacity: 0.7; transform: translateY(0); transition-delay: 900ms; }
.intro-trust span {
  position: relative;
}
.intro-trust span + span::before {
  content: "";
  position: absolute;
  left: -12px;
  top: 50%;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  transform: translateY(-50%);
}

.bay-transition {
  position: absolute;
  inset: 0;
  z-index: 70;
  pointer-events: none;
  overflow: hidden;
  background: rgba(5, 6, 8, 0.08);
  animation: bay-transition-fade 2200ms cubic-bezier(.2,.7,.2,1) forwards;
}
@keyframes bay-transition-fade {
  0%   { opacity: 0; }
  10%  { opacity: 1; }
  78%  { opacity: 1; }
  100% { opacity: 0; }
}
.bay-transition::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(ellipse 42% 36% at 50% 50%, rgba(255,138,61,0.20), transparent 64%),
    linear-gradient(90deg, rgba(5,6,8,0.86), rgba(5,6,8,0.20) 45%, rgba(5,6,8,0.86));
  animation: bay-transition-glow 2200ms cubic-bezier(.2,.7,.2,1) forwards;
}
@keyframes bay-transition-glow {
  0%   { opacity: 0; transform: scale(0.96); }
  18%  { opacity: 1; transform: scale(1); }
  58%  { opacity: 0.72; transform: scale(1.05); }
  100% { opacity: 0; transform: scale(1.14); }
}
.bay-transition::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 4;
  background:
    repeating-linear-gradient(90deg, transparent 0 22px, rgba(255,255,255,0.045) 22px 23px),
    repeating-linear-gradient(0deg, transparent 0 26px, rgba(255,138,61,0.035) 26px 27px);
  mix-blend-mode: screen;
  opacity: 0;
  animation: bay-transition-grid 2200ms cubic-bezier(.2,.7,.2,1) forwards;
}
@keyframes bay-transition-grid {
  0%, 14% { opacity: 0; transform: scale(1.04); }
  36%     { opacity: 0.34; transform: scale(1); }
  70%     { opacity: 0.16; }
  100%    { opacity: 0; transform: scale(1.08); }
}
.bay-transition-panel {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 3;
  width: 52%;
  background:
    linear-gradient(180deg, rgba(22,25,31,0.98), rgba(6,7,10,0.98)),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.04) 0 1px, transparent 1px 42px);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.06);
  animation-duration: 2200ms;
  animation-timing-function: cubic-bezier(.2,.7,.2,1);
  animation-fill-mode: forwards;
}
.bay-transition-panel.panel-left {
  left: 0;
  transform-origin: left center;
  animation-name: bay-panel-left;
}
.bay-transition-panel.panel-right {
  right: 0;
  transform-origin: right center;
  animation-name: bay-panel-right;
}
@keyframes bay-panel-left {
  0%   { transform: translateX(-105%); }
  18%  { transform: translateX(0); }
  48%  { transform: translateX(0); }
  82%  { transform: translateX(-105%); }
  100% { transform: translateX(-105%); }
}
@keyframes bay-panel-right {
  0%   { transform: translateX(105%); }
  18%  { transform: translateX(0); }
  48%  { transform: translateX(0); }
  82%  { transform: translateX(105%); }
  100% { transform: translateX(105%); }
}
.bay-transition-scan {
  position: absolute;
  top: -10%;
  bottom: -10%;
  left: 50%;
  z-index: 6;
  width: 3px;
  background: linear-gradient(180deg, transparent, rgba(255,167,102,0.95), transparent);
  box-shadow:
    0 0 18px rgba(255,138,61,0.82),
    0 0 80px rgba(255,138,61,0.38);
  opacity: 0;
  transform: translateX(-50%) scaleY(0.4);
  animation: bay-scan 2200ms cubic-bezier(.2,.7,.2,1) forwards;
}
@keyframes bay-scan {
  0%, 12% { opacity: 0; transform: translateX(-50%) scaleY(0.4); }
  22%     { opacity: 1; transform: translateX(-50%) scaleY(1); }
  46%     { opacity: 1; transform: translateX(-50%) scaleY(1); }
  72%     { opacity: 0.72; transform: translateX(-50%) scaleY(1.14); }
  100%    { opacity: 0; transform: translateX(-50%) scaleY(1.4); }
}
.bay-transition-readout {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 8;
  width: min(420px, calc(100vw - 44px));
  transform: translate(-50%, -50%);
  display: grid;
  gap: 7px;
  justify-items: center;
  text-align: center;
  padding: 22px 24px;
  border-radius: 18px;
  background: rgba(6,7,10,0.62);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.08),
    0 24px 70px -26px rgba(0,0,0,0.9);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  animation: bay-readout 2200ms cubic-bezier(.2,.7,.2,1) forwards;
}
.bay-transition-readout span,
.bay-transition-readout small {
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.16em;
}
.bay-transition-readout span {
  color: var(--accent-bright);
  font-size: 10px;
}
.bay-transition-readout strong {
  color: #fff;
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1;
  letter-spacing: -0.04em;
}
.bay-transition-readout small {
  color: var(--text-3);
  font-size: 9px;
}
@keyframes bay-readout {
  0%, 10% { opacity: 0; transform: translate(-50%, calc(-50% + 18px)) scale(0.96); }
  24%     { opacity: 1; transform: translate(-50%, -50%) scale(1); }
  56%     { opacity: 1; transform: translate(-50%, -50%) scale(1); }
  78%     { opacity: 0; transform: translate(-50%, calc(-50% - 16px)) scale(0.98); }
  100%    { opacity: 0; transform: translate(-50%, calc(-50% - 16px)) scale(0.98); }
}

/* subtle ambient drift */
@keyframes ambient-drift {
  0%   { transform: translate3d(0, 0, 0) scale(1.012); }
  50%  { transform: translate3d(-0.3%, -0.2%, 0) scale(1.018); }
  100% { transform: translate3d(0, 0, 0) scale(1.012); }
}
.scene-image.ambient { animation: ambient-drift 28s ease-in-out infinite; }

/* parallax wrapper for mouse-driven offset */
.scene-parallax {
  position: absolute;
  inset: 0;
  transition: transform 600ms cubic-bezier(.2,.7,.2,1);
  will-change: transform;
}

/* Film grain: static overlay only (was a 2s animated shift that hammered
   compositing every frame). Keeps the texture, drops the cost. */
.scene-grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  mix-blend-mode: overlay;
  opacity: 0.10;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.04 0 0 0 0 0.04 0 0 0 0 0.05 0 0 0 0.55 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* warehouse strip-light flicker layer */
.scene-flicker {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 30% 8% at 78% 14%, rgba(255, 240, 200, 0.10), transparent 70%),
    radial-gradient(ellipse 22% 6% at 32% 9%, rgba(255, 240, 200, 0.08), transparent 70%);
  animation: flicker 6s ease-in-out infinite;
}
@keyframes flicker {
  0%, 92%, 100% { opacity: 1; }
  93% { opacity: 0.65; }
  94% { opacity: 1; }
  96% { opacity: 0.8; }
  97% { opacity: 1; }
}

/* ───── Top bar / brand ───── */
.topbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 22px;
  z-index: 50;
  background: linear-gradient(to bottom, rgba(6,7,10,0.72), rgba(6,7,10,0.28) 60%, rgba(6,7,10,0));
  pointer-events: none;
}
.stage.has-intro .topbar { background: linear-gradient(to bottom, rgba(6,7,10,0.55), rgba(6,7,10,0.15) 60%, rgba(6,7,10,0)); }
.stage.has-intro .topbar-icons { opacity: 0; pointer-events: none; transition: opacity 280ms ease; }
.topbar::after {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255,122,31,0.42) 22%, rgba(255,255,255,0.10) 50%, rgba(255,122,31,0.42) 78%, transparent 100%);
  opacity: 0.85;
  pointer-events: none;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  pointer-events: auto;
  text-decoration: none;
  color: inherit;
  transition: transform 220ms cubic-bezier(.2,.7,.2,1);
}
.brand:hover { transform: translateY(-1px); }
.brand-img {
  height: 36px;
  width: auto;
  display: block;
  background: transparent;
  /* tiny glow so the yellow mark sits on the dark hero without floating */
  filter: drop-shadow(0 1px 1px rgba(0,0,0,0.55))
          drop-shadow(0 0 14px rgba(255,180,40,0.18));
}
@media (max-width: 760px) {
  .brand-img { height: 30px; }
}
.brand-wordmark {
  display: flex;
  flex-direction: column;
  gap: 5px;
  line-height: 1;
}
.brand-wordmark strong {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.022em;
  color: #fff;
}
.brand-wordmark strong .wm-soft {
  color: rgba(255,255,255,0.55);
  font-weight: 400;
}
.brand-wordmark small {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  color: var(--text-3);
  text-transform: uppercase;
}
.brand-divider {
  height: 22px;
  width: 1px;
  background: var(--line);
  margin: 0 4px;
}
.brand-bars {
  display: flex; gap: 5px; align-items: center;
}
.brand-bars > span {
  display: block;
  height: 2px;
  background: rgba(255,255,255,0.18);
  border-radius: 1px;
  width: 16px;
}
.brand-bars > span:first-child {
  background: var(--accent);
  width: 28px;
  box-shadow: 0 0 12px rgba(255, 122, 31, 0.65);
  animation: brand-bar-pulse 4s ease-in-out infinite;
}
@keyframes brand-bar-pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 10px rgba(255,122,31,0.55); }
  50%      { opacity: 0.55; box-shadow: 0 0 16px rgba(255,122,31,0.85); }
}

.topbar-icons {
  display: flex;
  gap: 4px;
  pointer-events: auto;
}
.bay-exit {
  position: absolute;
  top: 12px;
  right: 148px;
  z-index: 31;
  height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 9px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(12,14,17,0.68);
  color: var(--text-2);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  cursor: pointer;
  font: inherit;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: transform 220ms cubic-bezier(.2,.7,.2,1), background 220ms ease, color 220ms ease, border-color 220ms ease;
}
.bay-exit:hover {
  transform: translateY(-1px);
  background: rgba(255,138,61,0.10);
  border-color: rgba(255,138,61,0.34);
  color: #fff;
}
.bay-exit:active {
  transform: translateY(1px) scale(0.985);
}
.icon-btn {
  width: 36px; height: 36px;
  display: grid; place-items: center;
  border-radius: 8px;
  background: transparent;
  color: rgba(255,255,255,0.7);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 180ms ease;
}
.icon-btn:hover {
  background: rgba(255,255,255,0.05);
  border-color: var(--line);
  color: #fff;
}

/* ───── Category dock (bottom) ───── */
.dock {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 30;
  display: flex;
  gap: 4px;
  padding: 6px;
  border-radius: 14px;
  background: rgba(12, 14, 17, 0.62);
  backdrop-filter: blur(24px) saturate(140%);
  -webkit-backdrop-filter: blur(24px) saturate(140%);
  border: 1px solid var(--line);
  box-shadow:
    0 12px 40px -8px rgba(0,0,0,0.7),
    var(--engraved);
  animation: dock-in 600ms cubic-bezier(.2,.7,.2,1) 200ms both;
}
@keyframes dock-in {
  from { opacity: 0; transform: translate(-50%, 24px); }
  to   { opacity: 1; transform: translate(-50%, 0); }
}
.dock-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 40px;
  padding: 0 14px;
  border-radius: 10px;
  background: transparent;
  border: 1px solid transparent;
  color: var(--text-2);
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.005em;
  transition: all 180ms ease;
  white-space: nowrap;
}
.dock-btn:hover {
  color: #fff;
  background: rgba(255,255,255,0.04);
}
.dock-btn.is-active {
  color: #fff;
  background: rgba(255, 138, 61, 0.12);
  border-color: rgba(255, 138, 61, 0.35);
  box-shadow: 0 0 0 1px rgba(255,138,61,0.1) inset;
}
.dock-btn .dock-count {
  font-family: var(--font-mono);
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 5px;
  background: rgba(255,255,255,0.06);
  color: var(--text-3);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}
.dock-btn.is-active .dock-count {
  background: rgba(255, 138, 61, 0.18);
  color: var(--accent-bright);
}

.dock-divider {
  width: 1px;
  align-self: stretch;
  background: var(--line);
  margin: 6px 4px;
}

.dock-btn-icon {
  width: 36px;
  padding: 0;
  justify-content: center;
}

/* ───── Hotspots — interactive product markers ───── */
.hotspot {
  position: absolute;
  transform: translate(-50%, -50%);
  width: 36px; height: 36px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 12;
  display: grid; place-items: center;
  background: transparent;
  border: none;
  padding: 0;
  animation: hotspot-in 600ms cubic-bezier(.2,.7,.2,1) both;
  animation-delay: calc(var(--i, 0) * 50ms + 500ms);
  /* per-category tint, set below */
  --tint: rgba(255,255,255,0.55);
  --tint-soft: rgba(255,255,255,0.18);
}
.hotspot[data-cat="safety"]      { --tint: rgba(255,183,133,0.78); --tint-soft: rgba(255,183,133,0.22); }
.hotspot[data-cat="tools"]       { --tint: rgba(247,220,112,0.78); --tint-soft: rgba(247,220,112,0.22); }
.hotspot[data-cat="hardware"]    { --tint: rgba(207,213,221,0.70); --tint-soft: rgba(207,213,221,0.20); }
.hotspot[data-cat="engineering"] { --tint: rgba(168,210,237,0.78); --tint-soft: rgba(168,210,237,0.22); }

@keyframes hotspot-in {
  from { opacity: 0; transform: translate(-50%, -50%) scale(0.4); }
  to   { opacity: 0.9; transform: translate(-50%, -50%) scale(1); }
}

.hotspot-core {
  position: relative;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fff;
  box-shadow:
    0 0 0 1.2px rgba(6,7,10,0.7),
    0 0 10px rgba(255, 255, 255, 0.55),
    0 0 22px var(--tint-soft);
  transition: all 240ms cubic-bezier(.2,.7,.2,1);
}
.hotspot::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1px solid var(--tint);
  pointer-events: none;
  opacity: 0.6;
  animation: hotspot-breathe 4.2s cubic-bezier(.4,0,.6,1) infinite;
  animation-delay: calc(var(--i, 0) * 230ms);
}
.hotspot::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid var(--tint-soft);
  pointer-events: none;
  opacity: 0;
  transition: opacity 240ms ease, transform 240ms cubic-bezier(.2,.7,.2,1);
}
@keyframes hotspot-breathe {
  0%, 100% { transform: scale(1);    opacity: 0.45; }
  50%      { transform: scale(1.35); opacity: 0.80; }
}

.hotspot:hover .hotspot-core,
.hotspot.is-active .hotspot-core {
  width: 8px; height: 8px;
  background: var(--accent-bright);
  box-shadow:
    0 0 0 1.5px rgba(6,7,10,0.85),
    0 0 14px var(--accent),
    0 0 32px var(--tint);
}
.hotspot:hover::before,
.hotspot.is-active::before {
  border-color: var(--accent);
  opacity: 0.9;
  animation-duration: 1.8s;
}
.hotspot:hover::after,
.hotspot.is-active::after {
  opacity: 0.6;
  border-color: var(--accent-soft);
  transform: scale(1.1);
}

.hotspot.is-muted .hotspot-core {
  background: rgba(255, 255, 255, 0.30);
  box-shadow: 0 0 0 1px rgba(6,7,10,0.65);
}
.hotspot.is-muted::before { opacity: 0.18; animation: none; }
.hotspot.is-muted::after  { display: none; }

.hotspot.is-hidden {
  opacity: 0;
  pointer-events: none;
}

@media (hover: none), (max-width: 760px) {
  .hotspot { width: 44px; height: 44px; }
  .hotspot-core { width: 8px; height: 8px; }
  .hotspot::before { width: 18px; height: 18px; }
  .hotspot::after { width: 30px; height: 30px; }
}

/* ───── Highlight frame + dim mask — subtle ───── */
.dim-frame {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 11;
  opacity: 0;
  transition: opacity 320ms ease;
}
.dim-frame.is-on { opacity: 1; }

.dim-panel {
  position: absolute;
  background: rgba(6, 7, 10, 0.55);
  backdrop-filter: blur(1px) saturate(0.9);
  -webkit-backdrop-filter: blur(1px) saturate(0.9);
  transition: all 380ms cubic-bezier(.2,.7,.2,1);
}

.highlight-ring {
  position: absolute;
  border-radius: 4px;
  pointer-events: none;
  transition: all 380ms cubic-bezier(.2,.7,.2,1);
  z-index: 11;
  /* very subtle: thin outline + warm glow */
  box-shadow:
    inset 0 0 0 1px rgba(255, 174, 110, 0.32),
    0 0 32px rgba(255, 138, 61, 0.18);
}

/* ───── Hover card ───── */
.hover-card {
  position: absolute;
  z-index: 20;
  width: 280px;
  background: linear-gradient(180deg, rgba(20, 23, 28, 0.94), rgba(12, 14, 17, 0.94));
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  box-shadow:
    0 0 0 1px rgba(255,138,61,0.08),
    0 20px 60px -10px rgba(0,0,0,0.9),
    0 0 0 9999px transparent;
  padding: 14px;
  pointer-events: auto;
  animation: hover-card-in 260ms cubic-bezier(.2,.7,.2,1);
  transform-origin: var(--origin, left center);
}
@keyframes hover-card-in {
  from { opacity: 0; transform: translateY(4px) scale(0.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.hc-connector {
  position: absolute;
  z-index: 19;
  pointer-events: none;
}
.hc-connector svg {
  display: block;
  overflow: visible;
}
.hc-connector path {
  fill: none;
  stroke: var(--accent);
  stroke-width: 1.2;
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
  animation: connector-draw 360ms cubic-bezier(.2,.7,.2,1) forwards;
}
@keyframes connector-draw {
  to { stroke-dashoffset: 0; }
}
.hc-connector circle {
  fill: var(--accent);
  filter: drop-shadow(0 0 6px rgba(255,138,61,0.7));
}

.hc-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}
.hc-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 22px;
  padding: 0 9px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--line-strong);
  color: var(--text-2);
  font-family: var(--font-mono);
}
.hc-chip[data-cat="safety"]      { color: #ffb785; background: rgba(255,138,61,0.10); border-color: rgba(255,138,61,0.30); }
.hc-chip[data-cat="tools"]       { color: #f7dc70; background: rgba(245,197,24,0.10); border-color: rgba(245,197,24,0.30); }
.hc-chip[data-cat="hardware"]    { color: #cfd5dd; background: rgba(154,163,173,0.10); border-color: rgba(154,163,173,0.30); }
.hc-chip[data-cat="engineering"] { color: #a8d2ed; background: rgba(95,168,211,0.10); border-color: rgba(95,168,211,0.30); }

.hc-id {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-3);
  letter-spacing: 0.06em;
}

.hc-title {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.18;
  color: #fff;
  margin: 0 0 4px;
}
.hc-tag {
  font-size: 12.5px;
  line-height: 1.42;
  color: var(--text-2);
  margin: 0 0 12px;
  text-wrap: pretty;
}

.hc-specs {
  display: grid;
  gap: 6px;
  margin-bottom: 12px;
  padding: 10px;
  background: rgba(0,0,0,0.28);
  border-radius: 9px;
  border: 1px solid var(--line);
}
.hc-spec-row {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 10px;
  font-size: 11.5px;
  align-items: baseline;
}
.hc-spec-key {
  color: var(--text-3);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.hc-spec-val {
  color: var(--text);
  font-weight: 500;
}

.hc-actions {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
}
.btn {
  height: 36px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0 14px;
  border-radius: 9px;
  border: 1px solid var(--line-strong);
  background: rgba(255,255,255,0.03);
  color: #fff;
  font: inherit;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  /* Spring-like timing — Propeller / CRED-style tactile feel. */
  transition: background 180ms cubic-bezier(.2,.7,.2,1),
              border-color 180ms ease,
              color 180ms ease,
              transform 220ms cubic-bezier(.34,1.56,.64,1),
              box-shadow 220ms ease;
  letter-spacing: 0.01em;
}
.btn:hover { background: rgba(255,255,255,0.08); }
.btn:active { transform: scale(0.97); }
.btn.primary {
  background: #ff7a1f;
  border-color: rgba(0,0,0,0.25);
  color: #1a0c00;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.30),
    inset 0 -1px 0 rgba(0,0,0,0.22),
    0 8px 22px -10px rgba(255,122,31,0.55);
}
.btn.primary:hover { background: #ff8a35; transform: translateY(-1px); }
.btn.primary:active { transform: scale(0.97); }
.btn.icon { width: 36px; padding: 0; }
.btn.ghost {
  background: transparent;
  border-color: var(--line-strong);
}

.btn.is-added {
  background: rgba(31, 138, 91, 0.18);
  border-color: rgba(31, 138, 91, 0.5);
  color: #6ddca0;
}

/* ───── Detail modal ───── */
.modal-backdrop {
  position: absolute;
  inset: 0;
  z-index: 60;
  background: rgba(4, 5, 8, 0.72);
  backdrop-filter: blur(10px) saturate(0.7);
  -webkit-backdrop-filter: blur(10px) saturate(0.7);
  display: grid;
  place-items: center;
  animation: backdrop-in 260ms ease both;
}
@keyframes backdrop-in {
  from { opacity: 0; backdrop-filter: blur(0px); }
  to   { opacity: 1; backdrop-filter: blur(10px); }
}

.modal {
  position: relative;
  width: min(94%, 1240px);
  max-height: 92%;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  grid-template-rows: 1fr auto;
  background: linear-gradient(180deg, #14171c, #0d0f13);
  border: 1px solid var(--line-strong);
  border-radius: 18px;
  box-shadow:
    0 0 0 1px rgba(255,138,61,0.08),
    0 60px 120px -20px rgba(0,0,0,0.95);
  overflow: hidden;
  animation: modal-in 380ms cubic-bezier(.2,.7,.2,1) both;
}
@keyframes modal-in {
  from { opacity: 0; transform: scale(0.96) translateY(10px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

/* left media side */
.modal-media {
  position: relative;
  background: #06070a;
  display: flex;
  flex-direction: column;
  min-width: 0;
  border-right: 1px solid var(--line);
}

.modal-media-meta {
  position: absolute;
  top: 16px;
  left: 16px;
  right: 16px;
  z-index: 5;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  pointer-events: none;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.modal-media-meta strong {
  font-weight: 600;
  color: rgba(255,255,255,0.85);
}

.modal-media-foot {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 96px;
  z-index: 5;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  pointer-events: none;
}
.modal-media-foot .product-title {
  font-size: 26px;
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: #fff;
  text-shadow: 0 2px 18px rgba(0,0,0,0.6);
  margin: 0;
  max-width: 80%;
  text-wrap: balance;
}
.modal-media-foot .product-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  text-align: right;
}
.modal-media-foot .product-badge strong {
  font-weight: 700;
  color: var(--accent-bright);
  font-size: 11px;
}

.modal-image {
  position: relative;
  flex: 1;
  min-height: 460px;
  overflow: hidden;
}
.modal-image-inner {
  position: absolute;
  inset: 18px;
  background-image: var(--hero-bg);
  background-size: var(--bg-size);
  background-position: var(--bg-pos);
  background-repeat: no-repeat;
  transform: scale(1.0);
  filter: contrast(1.05) saturate(1.05);
  transition: transform 7s ease-out;
  animation: media-kenburns 14s ease-in-out infinite alternate;
}
@keyframes media-kenburns {
  from { transform: scale(1.0) translate(0, 0); }
  to   { transform: scale(1.08) translate(-1%, -0.5%); }
}
/* layered vignette + warm spot */
.modal-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 35%, transparent 40%, rgba(0,0,0,0.55) 95%),
    linear-gradient(180deg, rgba(0,0,0,0.18) 0%, transparent 40%, rgba(0,0,0,0.85) 100%);
  pointer-events: none;
}
.modal-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 65% 30%, rgba(255, 180, 100, 0.06), transparent 50%);
  pointer-events: none;
  z-index: 3;
}

/* film noise overlay just inside modal image */
.modal-image-grain {
  position: absolute; inset: 0;
  pointer-events: none;
  mix-blend-mode: overlay;
  opacity: 0.12;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.95' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.04 0 0 0 0 0.04 0 0 0 0 0.05 0 0 0 0.9 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  z-index: 3;
}

/* spec ticks along the bottom of image */
.modal-image-ticks {
  position: absolute;
  left: 16px; right: 16px;
  bottom: 16px;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 10px;
  pointer-events: none;
  opacity: 0.7;
}
.modal-image-ticks .tick {
  height: 8px;
  width: 1px;
  background: rgba(255,255,255,0.35);
}
.modal-image-ticks .tick.long { height: 14px; background: var(--accent); }
.modal-image-ticks .label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.45);
  margin-left: auto;
  text-transform: uppercase;
}

.modal-thumbs {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 6px;
  padding: 12px 14px;
  background: rgba(0,0,0,0.4);
  border-top: 1px solid var(--line);
  position: relative;
  z-index: 6;
}
.modal-thumb {
  aspect-ratio: 1;
  border-radius: 6px;
  background-image: var(--hero-bg);
  background-size: var(--thumb-size);
  background-position: var(--thumb-pos);
  background-repeat: no-repeat;
  background-color: rgba(7, 9, 12, 0.72);
  border: 1px solid var(--line);
  cursor: pointer;
  transition: all 200ms ease;
  position: relative;
  overflow: hidden;
  filter: brightness(0.85);
}
.modal-thumb:hover { transform: translateY(-2px); border-color: var(--line-strong); filter: brightness(1); }
.modal-thumb.is-active {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent), 0 6px 16px -6px rgba(255,138,61,0.5);
  filter: brightness(1.05);
}

/* right content side */
.modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow-y: auto;
  padding: 26px 30px 22px;
}
.modal-content::-webkit-scrollbar { width: 6px; }
.modal-content::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.1); border-radius: 3px; }

.modal-tag {
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-2);
  margin: 0 0 22px;
  text-wrap: pretty;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 8;
  width: 36px; height: 36px;
  display: grid; place-items: center;
  border-radius: 8px;
  background: rgba(12,14,17,0.85);
  backdrop-filter: blur(10px);
  border: 1px solid var(--line-strong);
  color: var(--text-2);
  cursor: pointer;
  transition: all 200ms ease;
}
.modal-close:hover { background: rgba(255,255,255,0.06); color: #fff; transform: rotate(90deg); }

.modal-section-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--text-3);
  text-transform: uppercase;
  margin: 0 0 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.modal-section-label::before {
  content: "";
  width: 12px; height: 1px;
  background: var(--accent);
}

.modal-section { margin-bottom: 18px; }

.spec-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
}
.spec-cell {
  padding: 10px 12px;
  background: rgba(13, 15, 19, 0.92);
  display: grid;
  gap: 3px;
}
.spec-cell-key {
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-3);
}
.spec-cell-val {
  font-size: 12.5px;
  color: #fff;
  font-weight: 500;
  line-height: 1.3;
}

.variant-swatches {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.swatch {
  width: 30px; height: 30px;
  border-radius: 7px;
  cursor: pointer;
  position: relative;
  border: 1.5px solid var(--line-strong);
  transition: all 180ms ease;
}
.swatch::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 9px;
  border: 1.5px solid transparent;
  transition: border-color 180ms ease;
}
.swatch:hover { transform: translateY(-2px); }
.swatch.is-active::after { border-color: var(--accent); }

.tag-row {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.tag {
  padding: 6px 10px;
  font-size: 11px;
  border-radius: 7px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  color: var(--text-2);
  font-weight: 500;
  letter-spacing: -0.005em;
  transition: all 180ms ease;
}
.tag:hover { background: rgba(255,255,255,0.07); color: #fff; }

.list-row {
  display: grid;
  gap: 6px;
}
.list-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 8px;
  font-size: 12.5px;
  color: var(--text);
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--line);
  transition: all 180ms ease;
}
.list-item:hover { background: rgba(255,138,61,0.06); border-color: rgba(255,138,61,0.3); }
.list-item .dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.modal-footer {
  position: sticky;
  bottom: -22px;
  margin: 18px -30px -22px;
  padding: 16px 30px;
  background: linear-gradient(180deg, rgba(13,15,19,0.6), rgba(13,15,19,0.98));
  border-top: 1px solid var(--line);
  backdrop-filter: blur(16px);
  display: flex;
  gap: 10px;
}
.modal-footer .btn.primary { flex: 1; height: 44px; font-size: 13px; }

/* related strip at bottom (across modal) */
.modal-related {
  grid-column: 1 / -1;
  padding: 16px 22px;
  background: #08090c;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: auto repeat(4, 1fr);
  gap: 10px;
  align-items: stretch;
}
.modal-related-label {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
}
.modal-related-label small {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-3);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.modal-related-label strong {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.01em;
}
.related-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 10px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--line);
  cursor: pointer;
  text-align: left;
  transition: all 220ms ease;
  min-width: 0;
}
.related-card:hover {
  background: rgba(255, 138, 61, 0.06);
  border-color: rgba(255, 138, 61, 0.35);
  transform: translateY(-2px);
}
.related-thumb {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 7px;
  background-image: var(--hero-bg);
  background-size: var(--thumb-size);
  background-position: var(--thumb-pos);
  background-repeat: no-repeat;
  background-color: rgba(7, 9, 12, 0.72);
  border: 1px solid var(--line);
}
.related-info { min-width: 0; }
.related-info small {
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--text-3);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 2px;
}
.related-info strong {
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.01em;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* ───── Enquiry tray ───── */
.tray {
  position: absolute;
  right: 22px;
  bottom: 80px;
  z-index: 35;
  width: 320px;
  background: linear-gradient(180deg, rgba(20, 23, 28, 0.96), rgba(12, 14, 17, 0.96));
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  box-shadow:
    0 0 0 1px rgba(255,138,61,0.06),
    0 28px 80px -10px rgba(0,0,0,0.95);
  overflow: hidden;
  transform-origin: bottom right;
  animation: tray-in 320ms cubic-bezier(.2,.7,.2,1);
}
@keyframes tray-in {
  from { opacity: 0; transform: scale(0.92) translateY(12px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

.tray-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px 10px;
}
.tray-head h4 {
  font-size: 13px;
  font-weight: 600;
  margin: 0;
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  gap: 8px;
}
.tray-count {
  font-family: var(--font-mono);
  font-size: 10px;
  padding: 2px 7px;
  border-radius: 5px;
  background: var(--accent);
  color: #06070a;
  font-weight: 700;
}
.tray-list {
  max-height: 240px;
  overflow-y: auto;
  padding: 0 8px 8px;
}
.tray-list::-webkit-scrollbar { width: 4px; }
.tray-list::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.1); border-radius: 2px; }

.tray-item {
  display: grid;
  grid-template-columns: 38px 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 8px;
  border-radius: 9px;
  transition: background 180ms ease;
  animation: tray-item-in 240ms cubic-bezier(.2,.7,.2,1) both;
}
@keyframes tray-item-in {
  from { opacity: 0; transform: translateX(8px); }
  to   { opacity: 1; transform: translateX(0); }
}
.tray-item:hover { background: rgba(255,255,255,0.04); }
.tray-thumb {
  width: 38px; height: 38px;
  border-radius: 7px;
  background-image: var(--hero-bg);
  background-size: var(--thumb-size);
  background-position: var(--thumb-pos);
  background-repeat: no-repeat;
  background-color: rgba(7, 9, 12, 0.72);
  border: 1px solid var(--line);
}
.tray-info { min-width: 0; }
.tray-info small {
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--text-3);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: block;
}
.tray-info strong {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: -0.01em;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.tray-remove {
  width: 24px; height: 24px;
  border-radius: 6px;
  background: transparent;
  border: 1px solid transparent;
  color: var(--text-3);
  cursor: pointer;
  display: grid; place-items: center;
  transition: all 160ms ease;
}
.tray-remove:hover { color: #ff6f6f; background: rgba(255,80,80,0.08); border-color: rgba(255,80,80,0.2); }

.tray-footer {
  padding: 10px 14px 14px;
  border-top: 1px solid var(--line);
  background: rgba(0,0,0,0.25);
}
.tray-footer .btn.primary { width: 100%; height: 40px; }

/* enquiry FAB */
.fab {
  position: absolute;
  right: 22px;
  bottom: 80px;
  z-index: 34;
  height: 48px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(180deg, #ff9a55, #e8732a);
  color: #06070a;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  cursor: pointer;
  font: inherit;
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 0.01em;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.08) inset,
    0 16px 36px -8px rgba(255,138,61,0.55),
    0 0 0 6px rgba(255,138,61,0.08);
  transition: all 220ms cubic-bezier(.2,.7,.2,1);
  animation: fab-in 360ms cubic-bezier(.2,.7,.2,1);
}
@keyframes fab-in {
  from { opacity: 0; transform: scale(0.6) translateY(20px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
.fab:hover { transform: translateY(-2px); filter: brightness(1.06); }
.fab .fab-badge {
  display: grid; place-items: center;
  min-width: 22px; height: 22px;
  padding: 0 6px;
  border-radius: 999px;
  background: #06070a;
  color: var(--accent-bright);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
}

@keyframes fab-pop {
  0%   { transform: scale(1); }
  40%  { transform: scale(1.18); }
  100% { transform: scale(1); }
}
.fab.popping { animation: fab-pop 400ms cubic-bezier(.2,.7,.2,1); }

/* tooltip after click highlight in modal media (callout description) */
.modal-callout-tip {
  position: absolute;
  z-index: 5;
  background: rgba(20, 23, 28, 0.95);
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  padding: 6px 10px;
  font-size: 10.5px;
  color: #fff;
  font-weight: 500;
  white-space: nowrap;
  pointer-events: none;
  box-shadow: 0 6px 18px -4px rgba(0,0,0,0.8);
  opacity: 0;
  transform: translateY(2px);
  transition: opacity 180ms ease, transform 180ms ease;
}
.modal-callout:hover + .modal-callout-tip { opacity: 1; transform: translateY(0); }

/* loading spinner */
.boot-spinner {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 50;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  color: var(--text-2);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-family: var(--font-mono);
  transition: opacity 400ms ease, transform 400ms ease;
}
.boot-spinner.is-out { opacity: 0; transform: translate(-50%, -50%) scale(0.96); pointer-events: none; }
.boot-spinner .bar {
  width: 200px;
  height: 2px;
  background: rgba(255,255,255,0.08);
  border-radius: 2px;
  overflow: hidden;
}
.boot-spinner .bar::after {
  content: "";
  display: block;
  height: 100%;
  width: 40%;
  background: var(--accent);
  border-radius: 2px;
  animation: boot-bar 1.6s ease-in-out infinite;
}
@keyframes boot-bar {
  0%   { transform: translateX(-100%); }
  100% { transform: translateX(350%); }
}

/* meta strip at lower right (live indicator) */
.live-pip {
  position: absolute;
  left: 22px;
  bottom: 22px;
  z-index: 25;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 12px 6px 10px;
  background: rgba(12, 14, 17, 0.62);
  backdrop-filter: blur(24px) saturate(140%);
  -webkit-backdrop-filter: blur(24px) saturate(140%);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 10.5px;
  font-family: var(--font-mono);
  color: var(--text-2);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-variant-numeric: tabular-nums;
  box-shadow: var(--engraved);
}
.live-pip .live-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--hivis);
  box-shadow: 0 0 8px rgba(125, 211, 90, 0.85);
  animation: live-blink 2.2s ease-in-out infinite;
}
.live-pip .live-eq {
  display: inline-flex;
  align-items: flex-end;
  gap: 2px;
  height: 12px;
}
.live-pip .live-eq i {
  display: block;
  width: 2px;
  background: var(--hivis);
  border-radius: 1px;
  box-shadow: 0 0 6px rgba(125, 211, 90, 0.55);
  transform-origin: bottom center;
  animation: live-eq 1.1s ease-in-out infinite;
}
.live-pip .live-eq i:nth-child(1) { height: 8px;  animation-delay: 0ms; }
.live-pip .live-eq i:nth-child(2) { height: 11px; animation-delay: 220ms; }
@keyframes live-eq {
  0%, 100% { transform: scaleY(0.42); opacity: 0.78; }
  50%      { transform: scaleY(1);    opacity: 1; }
}
@keyframes live-blink {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.35; }
}

/* Mobile pan hint — fades after 6s or first horizontal scroll */
.pan-hint {
  position: fixed;
  z-index: 26;
  bottom: 78px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 16px;
  background: rgba(8,10,13,0.82);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--text-2);
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  pointer-events: none;
  box-shadow:
    0 10px 28px -12px rgba(0,0,0,0.75),
    inset 0 1px 0 rgba(255,255,255,0.06);
  animation: pan-hint-in 520ms cubic-bezier(.2,.7,.2,1) both,
             pan-hint-out 480ms cubic-bezier(.4,0,.6,1) 5800ms forwards;
}
@keyframes pan-hint-in {
  from { opacity: 0; transform: translate(-50%, 14px); }
  to   { opacity: 1; transform: translate(-50%, 0); }
}
@keyframes pan-hint-out {
  to { opacity: 0; transform: translate(-50%, -6px); }
}
.pan-hint-label { color: var(--text-2); }
.pan-hint-arrow {
  display: inline-grid;
  place-items: center;
  color: var(--accent-bright);
  animation: pan-hint-arrow 1.4s ease-in-out infinite;
}
.pan-hint-arrow svg { display: block; }
@keyframes pan-hint-arrow {
  0%, 100% { transform: translateX(0);   opacity: 0.85; }
  50%      { transform: translateX(4px); opacity: 1; }
}

/* hover hint legend */
.boot-hint {
  position: absolute;
  left: 50%;
  bottom: 88px;
  transform: translateX(-50%);
  z-index: 25;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  background: rgba(12, 14, 17, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 11.5px;
  color: var(--text-2);
  font-weight: 500;
  letter-spacing: 0.005em;
  animation: hint-cycle 9s ease-out forwards;
  pointer-events: none;
}
.boot-hint .pulse {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent);
  animation: hint-dot 1.4s ease-in-out infinite;
}
@keyframes hint-dot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(0.65); opacity: 0.55; }
}
@keyframes hint-cycle {
  0%   { opacity: 0; transform: translate(-50%, 12px); }
  10%  { opacity: 1; transform: translate(-50%, 0); }
  80%  { opacity: 1; }
  100% { opacity: 0; transform: translate(-50%, -8px); pointer-events: none; }
}

.bay-guide {
  position: absolute;
  left: 50%;
  bottom: 84px;
  z-index: 31;
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: repeat(3, minmax(160px, 1fr));
  gap: 8px;
  width: min(760px, calc(100vw - 40px));
  padding: 8px;
  border-radius: 16px;
  background: rgba(10, 12, 15, 0.82);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 24px 70px -18px rgba(0,0,0,0.85);
  animation: bay-guide-in 620ms cubic-bezier(.2,.7,.2,1) both;
}
@keyframes bay-guide-in {
  from { opacity: 0; transform: translate(-50%, 22px) scale(0.98); }
  to   { opacity: 1; transform: translate(-50%, 0) scale(1); }
}
.bay-guide-step {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 12px;
  border-radius: 11px;
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.08);
}
.bay-guide-step span {
  flex-shrink: 0;
  color: var(--accent-bright);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
}
.bay-guide-step strong {
  min-width: 0;
  color: #fff;
  font-size: 12px;
  font-weight: 650;
  letter-spacing: -0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ─────────── Tablet (≤ 1024px) ─────────── */
@media (max-width: 1024px) {
  .topbar { padding: 0 16px; height: 54px; }
  .brand-bars { display: none; }
  .brand-divider { display: none; }
  .intro-copy {
    left: clamp(20px, 5vw, 56px);
    width: min(540px, calc(100vw - 44px));
    top: 50%;
  }
  .intro-copy h1 { font-size: clamp(28px, 4.4vw, 44px); }
  .intro-categories {
    right: clamp(20px, 4vw, 56px);
    bottom: clamp(96px, 12vh, 140px);
    width: min(420px, 48vw);
    grid-template-columns: 1fr 1fr;
  }
  .intro-categories span { min-height: 40px; font-size: 9.5px; }
  .dock {
    padding: 5px;
    border-radius: 12px;
    max-width: calc(100vw - 28px);
    overflow-x: auto;
    scrollbar-width: none;
  }
  .dock::-webkit-scrollbar { display: none; }
  .dock-btn { height: 38px; padding: 0 12px; font-size: 12.5px; }
  .live-pip { left: 16px; bottom: 76px; padding: 5px 10px 5px 8px; font-size: 9.5px; }
  .bay-exit { top: 64px; right: 14px; }
  .modal { width: min(980px, calc(100vw - 24px)); }
}

/* Mobile-only product list — disabled (we use horizontal pan instead) */
.mobile-products { display: none !important; }

/* ─────────── Pan-mode photo (any aspect narrower than 16:9) ─────────── */
.stage.is-pan:not(.has-intro) .scene {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  cursor: grab;
}
.stage.is-pan:not(.has-intro) .scene::-webkit-scrollbar { height: 0; display: none; }
.stage.is-pan:not(.has-intro) .scene-parallax {
  position: relative !important;
  inset: auto !important;
  width: calc(100vh * 1.778);
  width: calc(100dvh * 1.778);
  height: 100vh;
  height: 100dvh;
  flex: 0 0 auto;
  transform: none !important;
  animation: none !important;
}
.stage.is-pan:not(.has-intro) .scene-image {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center center !important;
}
/* Chrome pinned to viewport so it doesn't pan with the photo */
.stage.is-pan .topbar,
.stage.is-pan .dock,
.stage.is-pan .bay-exit,
.stage.is-pan .live-pip,
.stage.is-pan .boot-hint,
.stage.is-pan .bay-guide,
.stage.is-pan .fab,
.stage.is-pan .modal-backdrop,
.stage.is-pan .boot-spinner,
.stage.is-pan .tweaks-panel { position: fixed; }

/* Mobile-only title in modal content (shown via media query below) */
.modal-title-mobile { display: none; }

/* ─────────── Phone (≤ 760px) ─────────── */
@media (max-width: 760px) {
  /* Topbar — brand only, pinned via fixed so it doesn't scroll with photo */
  .topbar { position: fixed; padding: 0 16px; height: 54px; }
  .brand-wordmark small { display: none; }
  .brand-wordmark strong { font-size: 14px; }
  .brand-mark { width: 32px; height: 32px; }

  /* INTRO HERO — minimal vertical layout */
  .intro-copy {
    left: 20px;
    right: 20px;
    top: auto;
    bottom: 30vh;
    transform: none;
    width: auto;
    max-width: none;
    animation: intro-copy-in-mobile 700ms cubic-bezier(.2,.7,.2,1) 180ms both;
  }
  @keyframes intro-copy-in-mobile {
    from { opacity: 0; transform: translateY(14px); filter: blur(6px); }
    to   { opacity: 1; transform: translateY(0); filter: blur(0); }
  }
  .intro-eyebrow { font-size: 9.5px; letter-spacing: 0.22em; margin-bottom: 2px; }
  .intro-copy h1 {
    margin-top: 16px;
    font-size: clamp(28px, 8vw, 36px);
    max-width: 100%;
    line-height: 1.08;
    font-weight: 440;
  }
  .intro-copy p { font-size: 13.5px; margin-top: 16px; max-width: 36ch; }
  .intro-actions { margin-top: 22px; gap: 8px; }
  .intro-actions .btn { flex: 1 1 auto; min-width: 0; height: 44px; font-size: 12.5px; padding: 0 16px; }
  .intro-actions .kbd { display: none; }
  .intro-proof, .intro-categories, .intro-trust { display: none; }
  .intro-scrim {
    background:
      radial-gradient(ellipse 90% 50% at 50% 90%, rgba(6,7,10,0.94), rgba(6,7,10,0.55) 50%, rgba(6,7,10,0.10) 80%),
      linear-gradient(180deg, rgba(6,7,10,0.10) 0%, rgba(6,7,10,0.20) 35%, rgba(6,7,10,0.78) 100%);
  }
  .intro-scroll-cue { bottom: 16px; }
  .scroll-mouse { width: 20px; height: 30px; }
  .scroll-label { font-size: 8.5px; letter-spacing: 0.22em; }

  /* Boot hint references hover — irrelevant on touch */
  .boot-hint { display: none !important; }
  /* Hover card is desktop-only (no hover on touch); modal opens on tap */
  .hover-card, .hc-connector { display: none !important; }

  /* Dock — horizontal scroll bar at the bottom */
  .dock {
    bottom: 10px;
    border-radius: 12px;
    padding: 4px;
    width: calc(100vw - 16px);
    max-width: calc(100vw - 16px);
    left: 8px;
    transform: none;
    justify-content: flex-start;
    overflow-x: auto;
    scrollbar-width: none;
    animation: dock-in-mobile 600ms cubic-bezier(.2,.7,.2,1) 200ms both;
  }
  .dock::-webkit-scrollbar { display: none; }
  @keyframes dock-in-mobile {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .dock-btn { height: 36px; padding: 0 10px; font-size: 12px; gap: 6px; flex: 0 0 auto; }
  .dock-btn .dock-count { font-size: 9.5px; padding: 1px 5px; }
  .dock-divider { margin: 5px 3px; }

  /* Bay exit & live-pip */
  .bay-exit { top: 62px; right: 10px; height: 30px; font-size: 9px; padding: 0 10px; letter-spacing: 0.16em; }
  .live-pip { bottom: 64px; left: 12px; font-size: 9px; letter-spacing: 0.10em; padding: 5px 10px 5px 8px; }
  .live-pip .live-eq { height: 10px; }
  .boot-hint { font-size: 11px; bottom: 116px; padding: 7px 12px; }
  .bay-guide { display: none !important; }

  /* Hotspot tap target larger on phone */
  .hotspot { width: 44px; height: 44px; }

  /* Enquiry FAB above the dock */
  .fab { bottom: 70px; right: 14px; }

  /* ── DETAIL MODAL — single viewport, no scroll if possible ── */
  .modal-backdrop {
    inset: 0;
    padding: 0;
    align-items: stretch;
    justify-content: stretch;
  }
  .modal {
    width: 100vw;
    max-width: 100vw;
    height: 100vh;
    height: 100dvh;
    max-height: none;
    border-radius: 0;
    display: flex;
    flex-direction: column;
    grid-template-columns: none !important;
    grid-template-rows: none !important;
    overflow: hidden;
    border: 0;
  }
  /* Photo — no overlay chrome on phone */
  .modal-media {
    flex: 0 0 42dvh;
    height: 42dvh;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    overflow: hidden;
    background: #06070a;
  }
  .modal-image {
    min-height: 0 !important;
    height: 100%;
  }
  /* No cropping zoom, no inset gap, fit the whole product image */
  .modal-image-inner {
    inset: 0 !important;
    transform: none !important;
    animation: none !important;
    background-size: contain !important;
    background-position: center center !important;
  }
  .modal-image::before { display: none !important; }
  .modal-image::after {
    background: linear-gradient(180deg, transparent 0%, transparent 70%, rgba(0,0,0,0.35) 100%) !important;
  }
  .modal-image-grain { opacity: 0.06; }
  .modal-media-meta,
  .modal-media-foot,
  .modal-image-ticks,
  .modal-thumbs { display: none !important; }

  /* Clean mobile-only title inside content */
  .modal-title-mobile {
    display: block;
    margin: 2px 0 10px;
    font-size: clamp(22px, 5.8vw, 28px);
    font-weight: 500;
    letter-spacing: -0.02em;
    line-height: 1.06;
    color: #fff;
    max-width: 88%;
  }

  .modal-content {
    flex: 1 1 auto;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 18px 18px 0;
    display: flex;
    flex-direction: column;
  }
  .modal-tag-row { margin-bottom: 10px; }
  .modal-tag {
    margin: 0 0 14px;
    font-size: 13.5px;
    line-height: 1.5;
    color: var(--text-2);
  }
  .modal-section { margin-bottom: 14px; }
  .modal-section-label { font-size: 10px; letter-spacing: 0.18em; margin-bottom: 8px; }
  /* Specs single column */
  .modal-content .spec-grid,
  .modal-content [class*="spec-grid"] { grid-template-columns: 1fr !important; gap: 6px; }
  .spec-cell { padding: 10px 12px; }
  .spec-cell-key { font-size: 9.5px; letter-spacing: 0.14em; }
  .spec-cell-val { font-size: 13px; }
  /* Limit specs to 4 visible on phone — no scroll */
  .modal-content .spec-grid .spec-cell:nth-child(n+5) { display: none; }
  /* Hide applications + industries (3rd & 4th .modal-section) */
  .modal-content .modal-section ~ .modal-section ~ .modal-section { display: none !important; }
  /* Compact variant swatches */
  .variant-swatches { gap: 6px; }
  .modal-close {
    top: 10px;
    right: 10px;
    z-index: 10;
    background: rgba(8,10,13,0.7);
    backdrop-filter: blur(10px);
  }
  /* Sticky footer pinned to bottom of modal-content */
  .modal-footer {
    position: sticky;
    bottom: 0;
    margin: 14px -18px 0;
    padding: 12px 16px;
    background: linear-gradient(180deg, rgba(13,15,19,0.3), rgba(13,15,19,0.98) 30%);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-top: 1px solid var(--line);
    z-index: 6;
    flex-wrap: nowrap;
    gap: 8px;
  }
  .modal-footer .btn.primary { flex: 1 1 auto; min-width: 0; font-size: 12.5px; height: 44px; }
  .modal-footer .btn:not(.primary) { height: 44px; padding: 0 16px; font-size: 12.5px; }
  /* The whole "Often paired with" strip — clutter on phone */
  .modal-related { display: none !important; }

  /* Live-pip removed on phone — decorative clutter */
  .live-pip { display: none !important; }
}

/* ─────────── Tiny phone (≤ 380px) ─────────── */
@media (max-width: 380px) {
  .intro-copy h1 { font-size: 24px; line-height: 1.1; }
  .intro-copy p { font-size: 13px; }
  .dock-btn { padding: 0 8px; font-size: 11.5px; }
  .dock-btn .dock-count { display: none; }
  .modal-media { height: 46vh; height: 46dvh; }
}

/* ────────────────────────────────────────────────────────────────────────
   Enquiry & Upload sheets — slide-up modal that collects 2 essentials
   then hands off to WhatsApp.
   ──────────────────────────────────────────────────────────────────────── */
.enq-backdrop {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0;
  background: rgba(4, 5, 8, 0.62);
  -webkit-backdrop-filter: blur(8px) saturate(140%);
  backdrop-filter: blur(8px) saturate(140%);
  animation: enq-back-in 260ms cubic-bezier(.2,.7,.2,1);
}
@keyframes enq-back-in { from { opacity: 0; } to { opacity: 1; } }

.enq-sheet {
  position: relative;
  width: 100%;
  max-width: 520px;
  max-height: min(92vh, 760px);
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, #15171c 0%, #0c0e12 100%);
  color: var(--text);
  border: 1px solid var(--line-strong);
  border-bottom: 0;
  border-radius: 18px 18px 0 0;
  box-shadow: 0 -30px 80px -20px rgba(0,0,0,0.7);
  overflow: hidden;
  animation: enq-sheet-in 360ms cubic-bezier(.18,.86,.32,1.05) both;
}
@media (min-width: 720px) {
  .enq-backdrop { align-items: center; padding: 24px; }
  .enq-sheet { border-radius: 18px; border-bottom: 1px solid var(--line-strong); }
}
@keyframes enq-sheet-in {
  from { transform: translateY(28px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}

.enq-head {
  display: flex; align-items: flex-start; justify-content: space-between;
  padding: 20px 22px 14px;
  border-bottom: 1px solid var(--line);
}
.enq-eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
}
.enq-title {
  margin: 0;
  font-family: var(--font-editorial);
  font-weight: 400;
  font-size: clamp(20px, 3vw, 24px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: #fff;
  max-width: 22ch;
}
.enq-x {
  appearance: none;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  color: var(--text-2);
  width: 30px; height: 30px;
  border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease, transform 160ms ease;
}
.enq-x:hover { background: rgba(255,255,255,0.08); color: #fff; border-color: var(--line-strong); }
.enq-x:active { transform: scale(0.94); }

.enq-body {
  padding: 18px 22px 8px;
  overflow-y: auto;
  flex: 1;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.12) transparent;
}
.enq-body::-webkit-scrollbar { width: 4px; }
.enq-body::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.12); border-radius: 4px; }

.enq-lede {
  margin: 0 0 16px;
  font-size: 13.5px;
  color: var(--text-2);
  line-height: 1.5;
}

.enq-items {
  display: flex; flex-direction: column; gap: 6px;
  margin-bottom: 18px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255,255,255,0.015);
}
.enq-item {
  display: grid;
  grid-template-columns: 22px 1fr auto;
  align-items: baseline;
  gap: 10px;
  font-size: 13px;
}
.enq-item-no {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--accent);
  letter-spacing: 0.1em;
}
.enq-item-name { color: var(--text); font-weight: 500; }
.enq-item-cat {
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-3);
}
.enq-item-more {
  color: var(--text-3);
  font-style: italic;
  font-size: 12px;
  padding-left: 32px;
}

.enq-fields { display: flex; flex-direction: column; gap: 12px; }
.enq-field { display: flex; flex-direction: column; gap: 5px; }
.enq-label {
  display: flex; justify-content: space-between; align-items: baseline;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-3);
}
.enq-label .req { color: var(--accent); font-style: normal; margin-left: 4px; }
.enq-label .opt { color: var(--text-3); font-style: normal; opacity: 0.7; text-transform: none; letter-spacing: 0.04em; font-size: 10px; }

.enq-input {
  appearance: none;
  width: 100%;
  background: rgba(255,255,255,0.025);
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: 10px;
  font: inherit;
  font-size: 14.5px;
  padding: 11px 13px;
  outline: none;
  transition: border-color 160ms ease, background 160ms ease;
}
.enq-input::placeholder { color: var(--text-3); opacity: 0.7; }
.enq-input:focus { border-color: var(--accent); background: rgba(255,255,255,0.04); }
.enq-textarea { resize: vertical; min-height: 76px; line-height: 1.45; }

.enq-hint { font-size: 11px; color: var(--text-3); margin-top: 2px; }
.enq-hint.err { color: #ff7a7a; }

.enq-foot-note {
  margin: 18px 0 4px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.08em;
  color: var(--text-3);
  text-align: center;
}

.enq-foot {
  display: flex; gap: 10px;
  padding: 14px 22px 18px;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,0.012), rgba(255,255,255,0));
}
.enq-foot .btn { flex: 1; justify-content: center; }
.enq-send {
  background: #25D366 !important;
  color: #062612 !important;
  border-color: #25D366 !important;
}
.enq-send:hover { filter: brightness(1.08); }
.enq-send.is-disabled { background: rgba(37,211,102,0.32) !important; color: rgba(6,38,18,0.55) !important; cursor: not-allowed; }
.enq-send svg { margin-right: 2px; }

/* Dropzone for UploadSheet */
.enq-dropzone {
  position: relative;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 6px;
  padding: 24px 16px;
  margin-bottom: 18px;
  border: 1.5px dashed var(--line-strong);
  border-radius: 14px;
  background:
    repeating-linear-gradient(45deg, rgba(255,255,255,0.012) 0 6px, transparent 6px 12px);
  color: var(--text-2);
  text-align: center;
  cursor: pointer;
  min-height: 130px;
  transition: border-color 180ms ease, background 180ms ease;
}
.enq-dropzone:hover { border-color: var(--accent); background: rgba(255,122,31,0.04); }
.enq-dropzone.has-file { padding: 14px 16px; min-height: 0; cursor: default; border-style: solid; border-color: var(--line-strong); background: rgba(255,255,255,0.018); }
.enq-dropzone strong { color: #fff; font-weight: 600; font-size: 14.5px; }
.enq-dropzone small { font-size: 11.5px; color: var(--text-3); }
.enq-drop-icon { color: var(--text-2); }
.enq-file-input { position: absolute; inset: 0; opacity: 0; cursor: pointer; }

.enq-file-preview {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  align-items: center;
  gap: 14px;
  width: 100%;
  text-align: left;
}
.enq-file-img {
  width: 64px; height: 64px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--line);
}
.enq-file-ico { width: 64px; display: flex; justify-content: center; }
.enq-file-glyph {
  position: relative;
  width: 56px; height: 64px;
  color: var(--text-2);
}
.enq-file-glyph svg { width: 100%; height: 100%; }
.enq-file-glyph span {
  position: absolute; left: 50%; bottom: 14px; transform: translateX(-50%);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  color: var(--accent);
}
.enq-file-info { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.enq-file-info strong { font-size: 13.5px; color: #fff; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.enq-file-info small { font-size: 11px; color: var(--text-3); }
.enq-file-x {
  width: 26px; height: 26px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.04);
  color: var(--text-2);
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer;
}
.enq-file-x:hover { background: rgba(255,80,80,0.12); color: #ff8c8c; border-color: rgba(255,80,80,0.3); }

.enq-share-note {
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(255,122,31,0.25);
  background: rgba(255,122,31,0.06);
  display: flex; flex-direction: column; gap: 4px;
  font-size: 12.5px;
  color: var(--text-2);
}
.enq-share-note strong { color: var(--accent); font-weight: 600; font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.12em; text-transform: uppercase; }
.enq-share-note em { color: #fff; font-style: normal; }

/* ────────────────────────────────────────────────────────────────────────
   Upload pill — entry point inside the scene (when no cart)
   ──────────────────────────────────────────────────────────────────────── */
.upload-pill {
  position: absolute;
  z-index: 18;
  left: 50%;
  bottom: 96px;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: rgba(20, 23, 28, 0.78);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  color: var(--text);
  font-family: var(--font-display);
  font-size: 12.5px;
  letter-spacing: 0.01em;
  cursor: pointer;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.04) inset,
    0 14px 40px rgba(0,0,0,0.45);
  transition: transform 160ms cubic-bezier(.2,.7,.2,1), background 160ms ease, border-color 160ms ease;
  animation: pill-in 700ms 700ms cubic-bezier(.2,.7,.2,1) both;
}
@keyframes pill-in {
  from { opacity: 0; transform: translate(-50%, 14px); }
  to   { opacity: 1; transform: translate(-50%, 0); }
}
.upload-pill:hover {
  background: rgba(255,122,31,0.14);
  border-color: rgba(255,122,31,0.45);
  transform: translateX(-50%) translateY(-2px);
}
.upload-pill:active { transform: translateX(-50%) scale(0.97); }
.upload-pill svg { color: var(--accent); }
.upload-pill.is-mini {
  position: fixed;
  left: auto; bottom: 90px; right: 24px;
  font-size: 11.5px;
  padding: 8px 14px;
  transform: none;
  animation: pill-mini-in 280ms cubic-bezier(.2,.7,.2,1) both;
}
@keyframes pill-mini-in {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.upload-pill.is-mini:hover { transform: translateY(-2px); }
.upload-pill.is-mini:active { transform: scale(0.97); }
@media (max-width: 760px) {
  .upload-pill { bottom: 108px; font-size: 11.5px; padding: 9px 14px; }
  .upload-pill.is-mini { right: 14px; }
}

/* ────────────────────────────────────────────────────────────────────────
   Sent toast
   ──────────────────────────────────────────────────────────────────────── */
.sent-toast {
  position: fixed;
  z-index: 220;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 18px;
  border-radius: 999px;
  background: rgba(8, 30, 18, 0.92);
  border: 1px solid rgba(37,211,102,0.45);
  color: #d6f5e3;
  font-size: 12.5px;
  letter-spacing: 0.01em;
  box-shadow: 0 18px 50px rgba(0,0,0,0.55);
  animation: sent-toast-in 320ms cubic-bezier(.2,.7,.2,1), sent-toast-out 360ms 3800ms cubic-bezier(.4,0,.6,1) forwards;
}
.sent-toast svg { color: #25D366; }
@keyframes sent-toast-in {
  from { opacity: 0; transform: translate(-50%, 18px); }
  to   { opacity: 1; transform: translate(-50%, 0); }
}
@keyframes sent-toast-out {
  to { opacity: 0; transform: translate(-50%, 18px); }
}

/* ────────────────────────────────────────────────────────────────────────
   Continue cue — "More from Royal ↓" floating button at base of scene
   ──────────────────────────────────────────────────────────────────────── */
.continue-cue {
  position: absolute;
  z-index: 22;
  right: 24px;
  bottom: 88px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: rgba(13, 15, 19, 0.7);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  color: var(--text-2);
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease, border-color 160ms ease;
  animation: continue-in 900ms 1200ms cubic-bezier(.2,.7,.2,1) both;
}
.continue-cue:hover { background: rgba(255,122,31,0.12); color: #fff; border-color: rgba(255,122,31,0.4); }
.continue-cue:active { transform: scale(0.96); }
.continue-cue-arrow {
  display: inline-flex;
  align-items: center;
  width: 18px; height: 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  justify-content: center;
  color: var(--accent);
  animation: cue-arrow-bob 1.8s ease-in-out infinite;
}
@keyframes cue-arrow-bob {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(3px); }
}
@keyframes continue-in {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
@media (max-width: 760px) {
  /* On mobile vertical scroll just works (no wheel hijack), so the cue is
     less essential. Move it well above the dock and shrink it. */
  .continue-cue { right: 12px; bottom: 110px; padding: 7px 11px; font-size: 9px; gap: 8px; }
}

/* ────────────────────────────────────────────────────────────────────────
   Below-fold long-form sections
   ──────────────────────────────────────────────────────────────────────── */
.below-fold {
  position: relative;
  width: 100%;
  background: linear-gradient(180deg, #06070a 0%, #0c0e12 30%, #0c0e12 75%, #06070a 100%);
  color: var(--text);
  z-index: 1;
}
.below-fold::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 60px;
  background: linear-gradient(180deg, rgba(0,0,0,0.6), transparent);
  pointer-events: none;
}

.sec {
  position: relative;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: clamp(72px, 11vh, 120px) clamp(24px, 5vw, 64px);
  /* content-visibility:auto caused layout jumps on scroll — removed in
     favour of native paint heuristics. */
}
.sec + .sec { border-top: 1px solid var(--line); }

.sec-head { max-width: 720px; margin-bottom: clamp(36px, 6vh, 60px); }
.sec-eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
/* Eyebrow dot — hidden by user request; the orange section numbering and
   the eyebrow text already carry the brand accent. */
.sec-eyebrow-dot { display: none; }
.sec-h2 {
  font-family: var(--font-editorial);
  font-weight: 400;
  font-size: clamp(28px, 4.4vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin: 0 0 18px;
  color: #fff;
}
.sec-h2 em { font-style: italic; color: var(--accent); font-feature-settings: "ss01"; }
.sec-sub {
  margin: 0;
  max-width: 60ch;
  font-size: clamp(14.5px, 1.4vw, 16px);
  line-height: 1.55;
  color: var(--text-2);
}

/* Reveal-on-scroll — slimmer, hardware-accelerated. translate3d nudges the
   browser to keep these on the GPU; shorter duration means less time spent
   in the half-opacity (grainy-looking) middle of the transition. */
.reveal {
  opacity: 0;
  transform: translate3d(0, 12px, 0);
  transition: opacity 420ms cubic-bezier(.2,.7,.2,1),
              transform 480ms cubic-bezier(.2,.7,.2,1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}
.reveal.is-in { opacity: 1; transform: translate3d(0, 0, 0); }
.reveal.is-in { will-change: auto; }
@media (prefers-reduced-motion: reduce) {
  .reveal { transition: none; transform: none; opacity: 1; }
}

/* ── Capability strip ── */
.sec-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}
@media (max-width: 880px) { .sec-stat-grid { grid-template-columns: repeat(2, 1fr); } }
.stat-tile {
  position: relative;
  background: #0d0f13;
  padding: 28px 24px 26px;
  display: flex; flex-direction: column; gap: 14px;
  min-height: 180px;
  transition: background 280ms ease;
}
.stat-tile:hover { background: #11141a; }
.stat-num {
  font-family: var(--font-editorial);
  font-size: clamp(38px, 5vw, 58px);
  line-height: 1;
  color: #fff;
  letter-spacing: -0.02em;
}
.stat-lbl {
  font-size: 13.5px;
  line-height: 1.45;
  color: var(--text-2);
  max-width: 30ch;
}
.stat-corner {
  position: absolute; top: 12px; right: 16px;
  color: var(--accent); font-family: var(--font-mono); font-size: 14px; opacity: 0.7;
}

/* ── Sectors ── */
.sec-sector-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 980px) { .sec-sector-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .sec-sector-grid { grid-template-columns: 1fr; } }

.sector-card {
  position: relative;
  padding: 26px 24px 24px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255,255,255,0.012) 0%, rgba(255,255,255,0.002) 100%);
  display: flex; flex-direction: column; gap: 10px;
  transition: border-color 280ms ease, transform 280ms ease, background 280ms ease;
  min-height: 240px;
}
.sector-card:hover {
  border-color: rgba(255,122,31,0.45);
  transform: translateY(-3px);
  background: linear-gradient(180deg, rgba(255,122,31,0.04) 0%, rgba(255,255,255,0.005) 100%);
}
.sector-no {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  color: var(--accent);
  margin-bottom: 6px;
}
.sector-label {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  margin: 0;
  color: #fff;
}
.sector-copy {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--text-2);
  max-width: 32ch;
}
.sector-kit {
  margin: auto 0 0;
  padding: 14px 0 0;
  list-style: none;
  display: flex; flex-wrap: wrap; gap: 6px;
  border-top: 1px solid var(--line);
}
.sector-kit li {
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-3);
  padding: 4px 8px;
  border: 1px solid var(--line);
  border-radius: 6px;
}
.sector-corner {
  position: absolute; top: 14px; right: 14px;
  width: 18px; height: 18px;
  border-top: 1px solid var(--line-strong);
  border-right: 1px solid var(--line-strong);
}

/* ── Process ── */
.sec-proc-rail {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
@media (max-width: 980px) { .sec-proc-rail { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .sec-proc-rail { grid-template-columns: 1fr; } }
.proc-step { display: flex; flex-direction: column; gap: 18px; }
.proc-no-rail {
  display: flex; align-items: center; gap: 14px;
}
.proc-no {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--accent);
  padding: 6px 10px;
  border: 1px solid rgba(255,122,31,0.4);
  border-radius: 6px;
  background: rgba(255,122,31,0.06);
}
.proc-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--accent), transparent 70%);
}
.proc-content h3 {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 19px;
  color: #fff;
}
.proc-content p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--text-2);
}
.sec-cta-row {
  display: flex; flex-wrap: wrap; gap: 12px;
  margin-top: 44px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}
.sec-cta-row .btn { padding: 12px 18px; font-size: 13.5px; }

/* ── Standards ── */
.sec-std-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}
@media (max-width: 980px) { .sec-std-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .sec-std-grid { grid-template-columns: 1fr; } }
.std-chip {
  background: #0d0f13;
  padding: 22px 22px 24px;
  display: flex; flex-direction: column; gap: 6px;
  min-height: 130px;
}
.std-code {
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.08em;
  color: #fff;
  border-bottom: 1px solid var(--line);
  padding-bottom: 8px;
}
.std-body {
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--text-2);
}

/* ── Depot ── */
.sec-depot-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 980px) { .sec-depot-grid { grid-template-columns: 1fr 1fr; } .depot-pickup { grid-column: 1 / -1; } }
@media (max-width: 620px) { .sec-depot-grid { grid-template-columns: 1fr; } .depot-pickup { grid-column: auto; } }

.depot-card {
  padding: 26px 24px 24px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255,255,255,0.012);
  display: flex; flex-direction: column; gap: 10px;
}
.depot-card.depot-channel {
  border-color: rgba(37,211,102,0.32);
  background: linear-gradient(180deg, rgba(37,211,102,0.06), rgba(37,211,102,0.012));
}
.depot-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}
.depot-channel .depot-label { color: #25D366; }
.depot-card h3 {
  margin: 0;
  font-family: var(--font-editorial);
  font-weight: 400;
  font-size: 22px;
  color: #fff;
  letter-spacing: -0.01em;
}
.depot-card p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--text-2);
}
.depot-wa-num {
  font-family: var(--font-mono);
  font-size: 18px;
  color: #fff;
  letter-spacing: 0.03em;
  margin: 4px 0;
}
.depot-line-copy { color: var(--text-2); font-size: 13.5px; line-height: 1.55; }
.depot-line {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 12px;
  padding: 8px 0;
  border-top: 1px solid var(--line);
  font-size: 12.5px;
}
.depot-line:first-of-type { margin-top: 4px; }
.depot-line span { color: var(--text-3); font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; }
.depot-line strong { color: #fff; font-weight: 500; }
.depot-cta-row {
  margin-top: auto;
  padding-top: 16px;
  display: flex; flex-wrap: wrap; gap: 8px;
}
.depot-cta-row .btn { flex: 1; justify-content: center; padding: 11px 14px; font-size: 12.5px; }
.depot-list {
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
  display: flex; flex-direction: column; gap: 6px;
}
.depot-list li {
  font-size: 12.5px;
  color: var(--text-2);
  padding-left: 18px;
  position: relative;
}
.depot-list li::before {
  content: "";
  position: absolute; left: 0; top: 9px;
  width: 8px; height: 1px;
  background: var(--accent);
}

/* ── Footer ── */
.sec-foot {
  padding-top: clamp(56px, 8vh, 80px);
  padding-bottom: 28px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 48px;
}
@media (max-width: 880px) { .foot-grid { grid-template-columns: 1fr 1fr; } .foot-brand { grid-column: 1 / -1; } }
@media (max-width: 540px) { .foot-grid { grid-template-columns: 1fr; } }
.foot-brand { display: flex; flex-direction: column; gap: 6px; }
.foot-mark { width: 32px; height: 32px; color: var(--accent); margin-bottom: 6px; }
.foot-mark-img {
  width: 56px; height: auto;
  display: block;
  margin: 0 0 16px;
  background: transparent;
  filter: drop-shadow(0 1px 1px rgba(0,0,0,0.55))
          drop-shadow(0 0 18px rgba(255,180,40,0.15));
}
.foot-brand strong {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  color: #fff;
}
.foot-brand small {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-3);
}
.foot-blurb {
  margin: 16px 0 0;
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-2);
  max-width: 36ch;
}
.foot-col h4 {
  margin: 0 0 14px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-3);
  font-weight: 500;
}
.foot-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.foot-col li { font-size: 13px; color: var(--text-2); }
.foot-col a {
  color: var(--text-2);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 160ms ease, border-color 160ms ease;
}
.foot-col a:hover { color: #fff; border-bottom-color: var(--accent); }
.foot-rule {
  width: 100%;
  height: 1px;
  background: var(--line);
  margin-bottom: 22px;
}
.foot-meta {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 16px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-3);
}
.foot-meta-mid { color: var(--text-2); }
.foot-meta-mono { color: var(--accent); }
@media (max-width: 620px) {
  .foot-meta { flex-direction: column; align-items: flex-start; gap: 6px; }
}

/* When the user scrolls past the stage, fade out the scene-only fixed UI —
   topbar / dock / bay-exit / live-pip / continue-cue / upload-pill — they
   have no purpose over the long-form sections. !important needed because
   several of these elements lock their final opacity through entry
   animations (e.g. .dock dock-in). */
.stage.is-past-fold .topbar,
.stage.is-past-fold .dock,
.stage.is-past-fold .bay-exit,
.stage.is-past-fold .live-pip,
.stage.is-past-fold .continue-cue,
.stage.is-past-fold .upload-pill,
.stage.is-past-fold .pan-hint,
.stage.is-past-fold .boot-hint,
.stage.is-past-fold .fab {
  opacity: 0 !important;
  pointer-events: none !important;
  transition: opacity 240ms cubic-bezier(.2,.7,.2,1) !important;
  animation: none !important;
}

/* ────────────────────────────────────────────────────────────────────────
   Pull-quote band — the principles line, full-bleed, big editorial moment
   ──────────────────────────────────────────────────────────────────────── */
.pull-quote {
  position: relative;
  width: 100%;
  padding: clamp(48px, 10vh, 96px) 0;
  overflow: hidden;
  background: radial-gradient(ellipse at 50% 0%, rgba(255,122,31,0.08) 0%, transparent 60%),
              linear-gradient(180deg, #0b0d11 0%, #08090c 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.pull-quote::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(255,122,31,0.05) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255,122,31,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  opacity: 0.35;
  pointer-events: none;
}
.pull-quote-grid {
  position: relative;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 64px);
  display: flex; flex-direction: column; gap: 24px;
  text-align: center;
  align-items: center;
}
.pull-quote-tag {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
}
.pull-quote-text {
  font-family: var(--font-editorial);
  font-weight: 400;
  font-size: clamp(26px, 4.2vw, 50px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0;
  color: #fff;
  max-width: 22ch;
}
.pq-line {
  display: inline-flex; flex-wrap: wrap; justify-content: center;
  gap: 0 14px;
  align-items: baseline;
}
.pq-word {
  display: inline-flex; align-items: baseline; gap: 14px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 600ms cubic-bezier(.2,.7,.2,1), transform 600ms cubic-bezier(.2,.7,.2,1);
  transition-delay: var(--pq-delay, 0ms);
}
.reveal.is-in .pq-word { opacity: 1; transform: translateY(0); }
.pq-word em { font-style: italic; color: #fff; }
.pq-word em::first-letter { color: var(--accent); }
.pq-sep {
  color: var(--accent);
  font-style: normal;
  opacity: 0.55;
  font-size: 0.7em;
}
.pull-quote-sig {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-top: 6px;
}
.pq-rule { display: inline-block; width: 32px; height: 1px; background: var(--accent); opacity: 0.6; }

@media (max-width: 620px) {
  .pull-quote-text { max-width: 18ch; font-size: 26px; line-height: 1.18; }
  .pq-line { gap: 0 10px; }
  .pq-word { gap: 10px; }
}

/* ────────────────────────────────────────────────────────────────────────
   Customer marquee — two infinite-scrolling rows of brand names
   ──────────────────────────────────────────────────────────────────────── */
.sec-head-tight { margin-bottom: clamp(24px, 4vh, 36px); }

.cust-marquee {
  position: relative;
  display: flex; flex-direction: column; gap: 14px;
  padding: 8px 0 6px;
  /* fade in/out at the edges */
  mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
}
.cust-track {
  display: flex;
  overflow: hidden;
  width: 100%;
}
.cust-row {
  display: flex; align-items: center; gap: 12px;
  flex-shrink: 0;
  white-space: nowrap;
  padding-right: 12px;
  will-change: transform;
}
.cust-track.is-left .cust-row { animation: cust-scroll-left 38s linear infinite; }
.cust-track.is-right .cust-row { animation: cust-scroll-right 44s linear infinite; }
.cust-marquee:hover .cust-row { animation-play-state: paused; }
@keyframes cust-scroll-left {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}
@keyframes cust-scroll-right {
  from { transform: translate3d(-50%, 0, 0); }
  to   { transform: translate3d(0, 0, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .cust-track .cust-row { animation: none !important; transform: none !important; }
  .cust-marquee { mask-image: none; -webkit-mask-image: none; }
}

/* Editorial chip — no images, pure typography. The leading vertical rule
   in accent orange gives each chip a visual anchor and rhythm in the row. */
.cust-chip {
  position: relative;
  display: inline-grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 14px;
  row-gap: 2px;
  align-items: center;
  padding: 14px 22px 14px 18px;
  margin: 0;
  border-radius: 0;
  background: transparent;
  transition: transform 220ms cubic-bezier(.2,.7,.2,1);
  flex-shrink: 0;
  color: var(--text);
}
.cust-chip:hover { transform: translateY(-2px); }
.cust-rule {
  grid-column: 1;
  grid-row: 1 / span 2;
  width: 2px;
  height: 38px;
  background: linear-gradient(180deg, var(--accent), rgba(255,122,31,0.2));
  border-radius: 2px;
}
.cust-name {
  grid-column: 2;
  grid-row: 1;
  font-family: var(--font-editorial);
  font-style: italic;
  font-size: 26px;
  line-height: 1.05;
  letter-spacing: -0.005em;
  color: #fff;
  white-space: nowrap;
}
.cust-sector {
  grid-column: 2;
  grid-row: 2;
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-3);
  white-space: nowrap;
}
@media (max-width: 620px) {
  .cust-name { font-size: 22px; }
  .cust-chip { padding: 12px 18px 12px 14px; column-gap: 12px; }
  .cust-rule { height: 32px; }
}
.cust-meta {
  margin-top: 24px;
  text-align: center;
}
.cust-meta-mono {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-3);
}
@media (max-width: 620px) {
  .cust-name { font-size: 18px; }
  .cust-chip { padding: 11px 16px; gap: 10px; }
}

/* ────────────────────────────────────────────────────────────────────────
   Send Requirement — checklist card + 4 action cards
   ──────────────────────────────────────────────────────────────────────── */
.req-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) 1.15fr;
  gap: 18px;
}
@media (max-width: 880px) { .req-grid { grid-template-columns: 1fr; } }

.req-list-card {
  position: relative;
  padding: 30px 28px 26px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255,122,31,0.04) 0%, rgba(255,255,255,0.005) 100%),
    radial-gradient(circle at 100% 0%, rgba(255,122,31,0.08), transparent 35%);
  overflow: hidden;
  min-height: 100%;
}
.req-list-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--accent), transparent 60%);
}
.req-list-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 22px;
}
.req-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex; flex-direction: column; gap: 0;
}
.req-list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  align-items: baseline;
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
  transition: padding-left 220ms cubic-bezier(.2,.7,.2,1), background 220ms ease;
}
.req-list li:last-child { border-bottom: 0; }
.req-list li:hover { padding-left: 6px; background: rgba(255,122,31,0.025); }
.req-list-no {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--accent);
  align-self: center;
}
.req-list-item {
  font-size: 14px;
  color: var(--text);
  font-weight: 500;
}
.req-list-foot {
  margin: 22px 0 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 12.5px;
  line-height: 1.55;
  color: var(--text-2);
}
.req-list-foot strong { color: #fff; font-weight: 600; }

.req-actions {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
@media (max-width: 540px) { .req-actions { grid-template-columns: 1fr; } }

.req-action {
  position: relative;
  display: flex; flex-direction: column; gap: 8px;
  padding: 22px 22px 20px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255,255,255,0.012);
  color: inherit;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
  font: inherit;
  overflow: hidden;
  transition:
    transform 260ms cubic-bezier(.2,.7,.2,1),
    border-color 260ms ease,
    background 260ms ease,
    box-shadow 260ms ease;
}
.req-action::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 14px;
  pointer-events: none;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(255,122,31,0.16), transparent 50%);
  opacity: 0;
  transition: opacity 240ms ease;
}
.req-action:hover {
  transform: translateY(-3px);
  border-color: rgba(255,122,31,0.45);
  background: rgba(255,255,255,0.022);
  box-shadow: 0 24px 50px -28px rgba(255,122,31,0.6);
}
.req-action:hover::after { opacity: 1; }
.req-action:active { transform: translateY(-1px) scale(0.99); }

.req-action-row {
  display: flex; justify-content: space-between; align-items: flex-start;
  margin-bottom: 6px;
}
.req-action-num {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--text-3);
}
.req-action-glyph {
  width: 38px; height: 38px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.025);
  color: var(--accent);
  display: inline-flex; align-items: center; justify-content: center;
}
.req-action-wa .req-action-glyph { color: #25D366; border-color: rgba(37,211,102,0.4); background: rgba(37,211,102,0.08); }
.req-action h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.005em;
}
.req-action p {
  margin: 0;
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--text-2);
  max-width: 30ch;
}
.req-action-cta {
  margin-top: auto;
  padding-top: 14px;
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  color: var(--accent);
  text-transform: uppercase;
}
.req-action-cta svg { transition: transform 200ms cubic-bezier(.2,.7,.2,1); flex-shrink: 0; }
.req-action:hover .req-action-cta svg { transform: translateX(3px); }
/* Long emails / values: keep them on one line with ellipsis instead of wrap */
.req-action-cta-tight {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
  max-width: 100%;
  text-transform: none;
  font-size: 10px;
  letter-spacing: 0.04em;
}
.req-action-cta-tight {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ────────────────────────────────────────────────────────────────────────
   Depot phones list (3 numbers) + email row
   ──────────────────────────────────────────────────────────────────────── */
.depot-phones {
  list-style: none;
  margin: 4px 0 12px;
  padding: 0;
  display: flex; flex-direction: column; gap: 0;
}
.depot-phones li { border-bottom: 1px solid rgba(37,211,102,0.15); }
.depot-phones li:last-child { border-bottom: 0; }
.depot-phones a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 0;
  font-family: var(--font-mono);
  font-size: 14.5px;
  letter-spacing: 0.02em;
  color: #fff;
  text-decoration: none;
  transition: color 180ms ease, transform 200ms cubic-bezier(.2,.7,.2,1);
}
.depot-phones a:hover { color: #25D366; transform: translateX(3px); }
.depot-phones svg { color: #25D366; opacity: 0; transition: opacity 180ms ease; }
.depot-phones a:hover svg { opacity: 1; }

.depot-email-row {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
  font-size: 12.5px;
}
.depot-email-row span {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-3);
}
.depot-email-row a {
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 180ms ease, border-color 180ms ease;
}
.depot-email-row a:hover { color: var(--accent); border-bottom-color: var(--accent); }

/* ────────────────────────────────────────────────────────────────────────
   Footer profile download button
   ──────────────────────────────────────────────────────────────────────── */
.foot-catalog {
  margin-top: 18px;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 14px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(255,255,255,0.025);
  color: var(--text);
  text-decoration: none;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background 180ms ease, border-color 180ms ease, transform 200ms cubic-bezier(.2,.7,.2,1);
  align-self: flex-start;
}
.foot-catalog:hover {
  background: rgba(255,122,31,0.1);
  border-color: rgba(255,122,31,0.4);
  color: #fff;
  transform: translateY(-2px);
}
.foot-catalog svg { color: var(--accent); }

/* Tweaks panel custom touches (override if needed) */

/* ════════════════════════════════════════════════════════════════════════
   MOTION ERA — landonorris.com DNA transplant.
   Engine: GSAP + ScrollTrigger + Lenis. Ease & timing taken verbatim from
   the captured kit: cubic-bezier(0.65, 0.05, 0, 1) over 0.75s.
   ════════════════════════════════════════════════════════════════════════ */

:root {
  --cubic-default: cubic-bezier(0.65, 0.05, 0, 1);
  --duration-default: 0.75s;
  --stage-warm: #120d08;
  --paper: #f2efe7;
  --paper-ink: #15130f;
  --paper-line: rgba(21, 19, 15, 0.12);
}

html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

/* Stage — the below-fold background is now a tweened custom property so
   ScrollTrigger can theme-flip whole sections like landonorris.com. */
.below-fold {
  background: var(--stage-bg, #06070a);
  transition: none; /* GSAP owns this */
}

/* Blueprint grid texture on the dark stages — Royal's answer to Lando's
   topographic contour lines. Sits under content, fades at edges. */
.below-fold::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20width%3D'880'%20height%3D'880'%3E%3Cpath%20d%3D'M0%2036.5L20%2037.4L40%2037.8L60%2037.2L80%2035.7L100%2033.5L120%2031.1L140%2028.8L160%2027.4L180%2027.1L200%2028.4L220%2031.2L240%2035.5L260%2040.7L280%2046.4L300%2052.0L320%2056.8L340%2060.5L360%2062.8L380%2063.7L400%2063.5L420%2062.5L440%2061.3L460%2060.3L480%2060.0L500%2060.6L520%2062.1L540%2064.3L560%2066.7L580%2068.9L600%2070.4L620%2070.6L640%2069.4L660%2066.5L680%2062.3L700%2057.1L720%2051.4L740%2045.8L760%2041.0L780%2037.3L800%2035.0L820%2034.0L840%2034.3L860%2035.2L880%2036.5'%20fill%3D'none'%20stroke%3D'rgba(255%2C255%2C255%2C0.045)'%20stroke-width%3D'1'%2F%3E%3Cpath%20d%3D'M0%20176.2L20%20179.7L40%20180.5L60%20178.5L80%20174.0L100%20167.2L120%20158.8L140%20149.4L160%20139.8L180%20130.7L200%20122.9L220%20117.1L240%20113.6L260%20112.9L280%20114.8L300%20119.4L320%20126.1L340%20134.5L360%20143.9L380%20153.6L400%20162.6L420%20170.4L440%20176.2L460%20179.7L480%20180.5L500%20178.5L520%20174.0L540%20167.2L560%20158.8L580%20149.4L600%20139.8L620%20130.7L640%20122.9L660%20117.1L680%20113.6L700%20112.9L720%20114.8L740%20119.4L760%20126.1L780%20134.5L800%20143.9L820%20153.6L840%20162.6L860%20170.4L880%20176.2'%20fill%3D'none'%20stroke%3D'rgba(255%2C255%2C255%2C0.045)'%20stroke-width%3D'1'%2F%3E%3Cpath%20d%3D'M0%20246.8L20%20246.5L40%20246.7L60%20247.3L80%20248.5L100%20250.2L120%20252.4L140%20255.0L160%20257.8L180%20260.6L200%20263.1L220%20265.2L240%20266.7L260%20267.2L280%20266.8L300%20265.3L320%20262.8L340%20259.3L360%20254.9L380%20249.9L400%20244.6L420%20239.1L440%20233.8L460%20229.0L480%20224.9L500%20221.7L520%20219.6L540%20218.6L560%20218.8L580%20220.0L600%20222.1L620%20225.0L640%20228.4L660%20232.0L680%20235.6L700%20239.0L720%20241.9L740%20244.4L760%20246.2L780%20247.3L800%20247.9L820%20247.9L840%20247.6L860%20247.2L880%20246.8'%20fill%3D'none'%20stroke%3D'rgba(255%2C255%2C255%2C0.045)'%20stroke-width%3D'1'%2F%3E%3Cpath%20d%3D'M0%20341.4L20%20348.1L40%20353.8L60%20357.8L80%20360.1L100%20360.6L120%20359.8L140%20358.3L160%20356.7L180%20355.5L200%20355.4L220%20356.4L240%20358.6L260%20361.5L280%20364.6L300%20367.3L320%20368.8L340%20368.7L360%20366.6L380%20362.6L400%20356.9L420%20350.2L440%20343.0L460%20336.3L480%20330.7L500%20326.6L520%20324.4L540%20323.8L560%20324.6L580%20326.1L600%20327.8L620%20328.9L640%20329.1L660%20328.0L680%20325.9L700%20323.0L720%20319.8L740%20317.2L760%20315.6L780%20315.7L800%20317.8L820%20321.9L840%20327.5L860%20334.3L880%20341.4'%20fill%3D'none'%20stroke%3D'rgba(255%2C255%2C255%2C0.045)'%20stroke-width%3D'1'%2F%3E%3Cpath%20d%3D'M0%20427.3L20%20422.1L40%20417.8L60%20414.4L80%20412.1L100%20411.0L120%20411.1L140%20412.3L160%20414.5L180%20417.6L200%20421.2L220%20425.1L240%20429.1L260%20433.0L280%20436.5L300%20439.4L320%20441.8L340%20443.5L360%20444.5L380%20445.1L400%20445.3L420%20445.2L440%20445.1L460%20445.1L480%20445.4L500%20446.1L520%20447.3L540%20448.9L560%20451.0L580%20453.4L600%20456.0L620%20458.5L640%20460.7L660%20462.5L680%20463.6L700%20463.8L720%20463.0L740%20461.2L760%20458.3L780%20454.4L800%20449.7L820%20444.4L840%20438.7L860%20432.9L880%20427.3'%20fill%3D'none'%20stroke%3D'rgba(255%2C255%2C255%2C0.045)'%20stroke-width%3D'1'%2F%3E%3Cpath%20d%3D'M0%20551.2L20%20545.9L40%20540.8L60%20536.1L80%20532.1L100%20528.8L120%20526.5L140%20524.9L160%20524.1L180%20524.0L200%20524.3L220%20524.9L240%20525.5L260%20526.0L280%20526.3L300%20526.1L320%20525.5L340%20524.5L360%20523.2L380%20521.7L400%20520.1L420%20518.7L440%20517.7L460%20517.4L480%20517.8L500%20519.1L520%20521.4L540%20524.8L560%20529.0L580%20534.1L600%20539.7L620%20545.6L640%20551.6L660%20557.3L680%20562.3L700%20566.5L720%20569.7L740%20571.5L760%20572.0L780%20571.1L800%20568.9L820%20565.6L840%20561.4L860%20556.5L880%20551.2'%20fill%3D'none'%20stroke%3D'rgba(255%2C255%2C255%2C0.045)'%20stroke-width%3D'1'%2F%3E%3Cpath%20d%3D'M0%20621.0L20%20616.2L40%20613.8L60%20613.6L80%20615.4L100%20618.4L120%20622.2L140%20626.2L160%20629.9L180%20633.2L200%20636.0L220%20638.6L240%20641.1L260%20643.7L280%20646.5L300%20649.4L320%20652.1L340%20654.2L360%20655.2L380%20654.6L400%20652.0L420%20647.3L440%20640.6L460%20632.6L480%20624.1L500%20615.9L520%20609.2L540%20604.9L560%20603.9L580%20606.2L600%20612.0L620%20620.6L640%20631.0L660%20642.0L680%20652.3L700%20660.7L720%20666.3L740%20668.3L760%20666.8L780%20662.0L800%20654.6L820%20645.8L840%20636.5L860%20628.0L880%20621.0'%20fill%3D'none'%20stroke%3D'rgba(255%2C255%2C255%2C0.045)'%20stroke-width%3D'1'%2F%3E%3Cpath%20d%3D'M0%20743.4L20%20745.7L40%20748.9L60%20752.3L80%20755.5L100%20757.9L120%20758.8L140%20758.1L160%20755.6L180%20751.4L200%20746.1L220%20740.3L240%20734.5L260%20729.5L280%20725.6L300%20723.2L320%20722.2L340%20722.4L360%20723.2L380%20724.2L400%20724.8L420%20724.6L440%20723.3L460%20720.9L480%20717.8L500%20714.3L520%20711.1L540%20708.8L560%20707.8L580%20708.6L600%20711.1L620%20715.2L640%20720.5L660%20726.4L680%20732.1L700%20737.2L720%20741.0L740%20743.5L760%20744.5L780%20744.3L800%20743.5L820%20742.5L840%20741.9L860%20742.1L880%20743.4'%20fill%3D'none'%20stroke%3D'rgba(255%2C255%2C255%2C0.045)'%20stroke-width%3D'1'%2F%3E%3Cpath%20d%3D'M0%20821.5L20%20820.0L40%20817.9L60%20815.7L80%20813.3L100%20811.2L120%20809.5L140%20808.6L160%20808.7L180%20809.8L200%20812.1L220%20815.6L240%20820.2L260%20825.6L280%20831.8L300%20838.2L320%20844.7L340%20850.8L360%20856.3L380%20860.7L400%20863.9L420%20865.7L440%20866.0L460%20864.8L480%20862.2L500%20858.5L520%20853.8L540%20848.6L560%20843.0L580%20837.5L600%20832.4L620%20827.9L640%20824.1L660%20821.4L680%20819.5L700%20818.7L720%20818.6L740%20819.1L760%20820.0L780%20821.0L800%20822.0L820%20822.7L840%20822.9L860%20822.5L880%20821.5'%20fill%3D'none'%20stroke%3D'rgba(255%2C255%2C255%2C0.045)'%20stroke-width%3D'1'%2F%3E%3C%2Fsvg%3E");
  background-size: 880px 880px;
  mask-image: radial-gradient(ellipse 90% 80% at 50% 35%, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 90% 80% at 50% 35%, black 30%, transparent 75%);
  pointer-events: none;
  z-index: 0;
}
.below-fold > * { position: relative; z-index: 1; }

/* ── Dual-voice impact headings ──
   Was: all-serif 28–52px. Now: heavy Geist caps at impact scale with
   Instrument Serif italic swap-words in accent — the Lando signature. */
.sec-h2 {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(30px, 4.4vw, 62px);
  line-height: 1.06;
  letter-spacing: -0.02em;
  margin: 0 0 26px;
  color: #fff;
}
.sec-h2 em {
  font-family: var(--font-editorial);
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  color: var(--accent);
  letter-spacing: 0;
  font-size: 1.04em;
  line-height: 0;
}
/* Word-split spans (GSAP scrub targets) */
.sec-h2 .w {
  display: inline-block;
  will-change: transform, opacity;
}

/* Ghost numerals — oversized outlined section numbers drifting behind heads */
.sec-ghost-no {
  position: absolute;
  top: clamp(8px, 3vh, 30px);
  right: clamp(8px, 4vw, 48px);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(120px, 22vw, 320px);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.07);
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

/* ── Counter-marquee band ── */
.marquee-band {
  position: relative;
  overflow: hidden;
  padding: clamp(36px, 6vh, 72px) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.mq-row {
  display: flex;
  white-space: nowrap;
  will-change: transform;
}
.mq-row + .mq-row { margin-top: 18px; }
.mq-chunk {
  display: inline-flex;
  align-items: baseline;
  gap: 1.5em;
  padding-right: 1.5em;
  flex: none;
}
.mq-serif {
  font-family: var(--font-editorial);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(24px, 3.6vw, 54px);
  line-height: 1;
  color: var(--accent);
}
.mq-sans {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(30px, 4.8vw, 70px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: rgba(243, 244, 246, 0.92);
}
.mq-sans.is-ghost {
  color: transparent;
  -webkit-text-stroke: 1px rgba(243, 244, 246, 0.4);
}

/* ── Block-wipe highlight (data-anim-high mechanic) ── */
.hl-wipe {
  position: relative;
  display: inline-block;
  isolation: isolate;
}
.hl-wipe::before {
  content: "";
  position: absolute;
  inset: -0.04em -0.12em;
  background: var(--accent);
  transform-origin: left center;
  transform: scaleX(0);
  z-index: -1;
}
.hl-wipe.hl-in::before {
  animation: hlWipe var(--duration-default) var(--cubic-default) forwards;
}
.hl-wipe.hl-in { color: #100a04; }
.hl-wipe.hl-in em, .sec-h2 .hl-wipe.hl-in { color: #100a04; }
@keyframes hlWipe { to { transform: scaleX(1); } }

/* ── Paper panel — the one light stage (enquiry checklist) ── */
.sec-req.is-paper {
  max-width: 1340px;
  margin-left: auto;
  margin-right: auto;
  background: var(--paper);
  color: var(--paper-ink);
  border-radius: clamp(20px, 3vw, 40px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}
.sec-req.is-paper + .sec { border-top: none; }
.sec + .sec-req.is-paper { border-top: none; }
@media (min-width: 761px) {
  .sec-req.is-paper { margin-top: clamp(30px, 6vh, 70px); margin-bottom: clamp(30px, 6vh, 70px); }
}
@media (max-width: 1380px) {
  .sec-req.is-paper { margin-left: clamp(10px, 2vw, 24px); margin-right: clamp(10px, 2vw, 24px); }
}
.sec-req.is-paper .sec-inner {
  max-width: 1240px;
  margin: 0 auto;
}
.sec-req.is-paper .sec-h2 { color: var(--paper-ink); }
.sec-req.is-paper .sec-h2 em { color: #c4560a; }
.sec-req.is-paper .sec-sub { color: rgba(21, 19, 15, 0.66); }
.sec-req.is-paper .sec-eyebrow { color: #c4560a; }
.sec-req.is-paper .req-list-card {
  background: rgba(255, 255, 255, 0.55);
  border-color: var(--paper-line);
}
.sec-req.is-paper .req-list-tag { color: #c4560a; }
.sec-req.is-paper .req-list li { border-color: var(--paper-line); }
.sec-req.is-paper .req-list-no { color: #c4560a; }
.sec-req.is-paper .req-list-item { color: var(--paper-ink); }
.sec-req.is-paper .req-list-foot { color: rgba(21, 19, 15, 0.6); }
.sec-req.is-paper .req-list-foot strong { color: var(--paper-ink); }
.sec-req.is-paper .req-action {
  background: rgba(255, 255, 255, 0.62);
  border-color: var(--paper-line);
}
.sec-req.is-paper .req-action h3 { color: var(--paper-ink); }
.sec-req.is-paper .req-action p { color: rgba(21, 19, 15, 0.6); }
.sec-req.is-paper .req-action-num { color: rgba(21, 19, 15, 0.4); }
.sec-req.is-paper .req-action-cta { color: #c4560a; }
.sec-req.is-paper .req-action-glyph { color: #c4560a; }

/* ── Museum collage ── */
.sec-collage {
  max-width: none;
  overflow: hidden;
  min-height: 90vh;
}
.collage-stage {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  min-height: clamp(560px, 86vh, 860px);
}
.collage-item {
  position: absolute;
  width: var(--cw, 240px);
  will-change: transform;
}
.collage-item img {
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid var(--line-strong);
}
.collage-cap {
  display: block;
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 8px;
}
.collage-swatch {
  position: absolute;
  width: 44px;
  height: 12px;
  background: var(--accent);
  will-change: transform;
}
.collage-quote {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(560px, 82vw);
  text-align: center;
  z-index: 2;
}
.collage-quote p {
  font-family: var(--font-editorial);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(26px, 3.4vw, 44px);
  line-height: 1.18;
  color: #fff;
  margin: 0 0 18px;
  text-shadow: 0 2px 24px rgba(6, 7, 10, 0.8);
}
.collage-sig {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
}

/* ── Ticket-notch quote card (pinned, like Lando's next-race card) ── */
.quote-ticket {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 60;
  width: 168px;
  background: var(--ink-2);
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  padding: 14px 14px 12px;
  text-decoration: none;
  clip-path: polygon(
    0 0, 100% 0, 100% calc(100% - 34px),
    calc(100% - 10px) calc(100% - 24px), 100% calc(100% - 14px),
    100% 100%, 0 100%
  );
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s var(--cubic-default), transform 0.5s var(--cubic-default),
              border-color 0.3s;
  pointer-events: none;
}
.quote-ticket.is-on { opacity: 1; transform: none; pointer-events: auto; }
.quote-ticket:hover { border-color: var(--accent); }
.qt-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 6px;
}
.qt-num {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 26px;
  line-height: 1;
  color: #fff;
}
.qt-num em {
  font-family: var(--font-editorial);
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
}
.qt-meta {
  display: block;
  margin-top: 7px;
  padding-top: 7px;
  border-top: 1px dashed var(--line-strong);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}


@media (max-width: 760px) {
  .sec-h2 { font-size: clamp(26px, 7vw, 40px); }
  .sec-ghost-no { font-size: clamp(90px, 28vw, 160px); opacity: 0.7; }
  .quote-ticket { width: 148px; left: 12px; bottom: 12px; }
  .collage-stage { min-height: 520px; }
  .collage-item { width: calc(var(--cw, 240px) * 0.62); }
}

.gsap-own {
  transition: none !important;
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .sec-h2 .w { transform: none !important; opacity: 1 !important; }
  .mq-row { transform: none !important; }
  .hl-wipe.hl-in::before { animation: none; transform: scaleX(1); }
  .collage-item, .collage-swatch { transform: none !important; }
}

/* ── Supply bays — expanding columns gallery (replaces the collage) ────── */
.sec-bays { max-width: 1340px; }
.bays {
  display: flex;
  gap: 10px;
  height: clamp(400px, 66vh, 620px);
}
.bay {
  position: relative;
  flex: 1;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  cursor: pointer;
  transition: flex var(--duration-default) var(--cubic-default);
  background: var(--ink-2);
}
.bay.is-open { flex: 2.1; }
.bay img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.55) brightness(0.78);
  transition: filter var(--duration-default) var(--cubic-default),
              transform var(--duration-default) var(--cubic-default);
}
.bay.is-open img { filter: none; transform: scale(1.02); }
.bay figcaption {
  position: absolute;
  inset: auto 0 0 0;
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 40px 14px 12px;
  background: linear-gradient(180deg, transparent, rgba(6, 7, 10, 0.82));
  white-space: nowrap;
}
.bay-no {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--accent);
}
.bay-cap {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.4s var(--cubic-default), transform 0.4s var(--cubic-default);
}
.bay.is-open .bay-cap { opacity: 1; transform: none; }
@media (max-width: 760px) {
  .bays { flex-direction: column; height: auto; gap: 8px; }
  .bay { height: 56px; flex: none; transition: height var(--duration-default) var(--cubic-default); }
  .bay.is-open { height: 300px; flex: none; }
  .bay-cap { opacity: 1; transform: none; }
}

/* ── Footer typographic lockup (replaces the raster mark) ── */
.foot-lockup { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.foot-lockup strong {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 21px;
  letter-spacing: -0.02em;
  color: #fff;
}
.foot-lockup strong .wm-soft { color: rgba(255, 255, 255, 0.5); font-weight: 400; }
.foot-lockup small {
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-3);
}

/* WhatsApp inline icon */
.wa-ico { flex: none; vertical-align: -0.12em; }

/* ── Variant G: flip — split-flap board ── */
.brand-flip {
  display: grid;
  grid-template-columns: minmax(300px, 480px) 1fr;
  gap: clamp(28px, 4vw, 60px);
  align-items: start;
}
.flip-board {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: clamp(20px, 2.6vw, 30px);
  border-radius: 18px;
  border: 1px solid var(--line-strong);
  background:
    repeating-linear-gradient(0deg, transparent 0 30px, rgba(255,255,255,0.03) 30px 31px),
    linear-gradient(170deg, #15181e, #08090c 75%);
}
.flip-meta {
  font-family: var(--font-mono); font-size: 9.5px;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent);
}
.flip-panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: clamp(26px, 4vh, 44px) 10px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid var(--line);
  transform-origin: center top;
  transition: transform 0.24s cubic-bezier(0.6, 0, 0.8, 0.4), opacity 0.24s;
}
.flip-panel.is-flipping { transform: perspective(700px) rotateX(-86deg); opacity: 0.2; }
.flip-logo img {
  height: 44px; width: auto; max-width: 200px; object-fit: contain;
  filter: brightness(0) invert(1);
}
.flip-logo .brand-fallback { font-size: 30px; letter-spacing: 0.12em; color: #fff; }
.flip-name { font-weight: 700; font-size: 19px; letter-spacing: -0.01em; color: #fff; }
.flip-foot {
  display: flex; justify-content: space-between;
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-3);
}
.flip-list { display: flex; flex-wrap: wrap; gap: 6px 8px; align-content: start; }
.flip-list button {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text-3);
  font: inherit; font-size: 12px; font-weight: 500;
  cursor: pointer;
  transition: all 0.25s;
}
.flip-list button span { font-family: var(--font-mono); font-size: 8.5px; color: var(--text-3); }
.flip-list button:hover { color: #fff; border-color: var(--line-strong); }
.flip-list button.on {
  color: #fff; border-color: rgba(255, 122, 31, 0.5);
  background: rgba(255, 122, 31, 0.08);
}
.flip-list button.on span { color: var(--accent); }
@media (max-width: 880px) { .brand-flip { grid-template-columns: 1fr; } }

/* ── Brands — flip board is the kept variant; columns stretch so the pill
   list fills the board's full height (no dead space under the names). ── */
.sec-brands { max-width: 1340px; }
.brand-flip { align-items: stretch; }
.flip-list {
  align-content: space-between;
  gap: 10px;
}
.flip-list button {
  padding: 10px 16px;
  font-size: 13px;
}

/* Static SEO content inside #root — readable by crawlers, invisible to
   users (kept in the accessibility tree; replaced when React mounts). */
.seo-static {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}
