:root {
  color-scheme: light;
  --page: #f5f5f7;
  --paper: #ffffff;
  --ink: #161617;
  --muted: #6e6e73;
  --soft: #86868b;
  --line: #d9d9df;
  --line-dark: rgba(255, 255, 255, 0.16);
  --blue: #0066cc;
  --cyan: #20d7ff;
  --amber: #f5b55a;
  --dark: #0b0c0f;
  --dark-2: #14161b;
  --radius: 8px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font-text: "SF Pro Text", -apple-system, BlinkMacSystemFont, "SF Pro Icons", "SF Pro SC", "PingFang SC", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-display: "SF Pro Display", "SF Pro Text", -apple-system, BlinkMacSystemFont, "SF Pro Icons", "SF Pro SC", "PingFang SC", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(245, 245, 247, 0.98) 38%),
    var(--page);
  color: var(--ink);
  font-family: var(--font-text);
  letter-spacing: 0;
  font-feature-settings: "kern";
  font-optical-sizing: auto;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.scroll-progress {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 60;
  height: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 120ms linear;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  clip-path: inset(50%);
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, calc(100% - 40px));
  min-height: 52px;
  margin: 0 auto;
  color: rgba(22, 22, 23, 0.9);
  background: rgba(245, 245, 247, 0.82);
  backdrop-filter: saturate(180%) blur(18px);
  transition:
    background 240ms var(--ease),
    color 240ms var(--ease);
}

.site-nav-dark {
  color: rgba(255, 255, 255, 0.9);
  background: rgba(11, 12, 15, 0.78);
}

.brand,
.nav-links {
  display: inline-flex;
  align-items: center;
}

.brand {
  position: relative;
  min-height: 40px;
  transition:
    opacity 180ms var(--ease),
    transform 260ms var(--ease);
}

.brand:hover {
  opacity: 0.86;
  transform: translateY(-1px);
}

.brand-lockup {
  display: block;
  width: 206px;
  height: auto;
  max-height: 40px;
}

.nav-links {
  gap: 28px;
}

.nav-links a {
  position: relative;
  color: currentColor;
  font-size: 12px;
  font-weight: 400;
  opacity: 0.76;
  transition: opacity 180ms var(--ease);
}

.nav-links a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 260ms var(--ease);
}

.nav-links a:hover {
  opacity: 1;
}

.nav-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

main {
  overflow: hidden;
}

.home-hero {
  position: relative;
  display: grid;
  align-items: end;
  width: 100%;
  min-height: clamp(590px, 74vh, 760px);
  margin: 0;
  overflow: hidden;
  padding: 56px 0 34px;
  background: #050608;
  color: #fff;
  text-align: left;
  isolation: isolate;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: center;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 760ms var(--ease),
    transform 760ms var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.home-hero.reveal {
  opacity: 1;
  transform: none;
}

.trust-strip.reveal {
  opacity: 1;
  transform: none;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
}

.home-hero h1 {
  margin: 0 0 16px;
  max-width: 930px;
  font-size: clamp(44px, 6.2vw, 92px);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.34;
}

.hero-actions {
  display: flex;
  justify-content: flex-start;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 20px;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.1765;
  transition:
    transform 240ms var(--ease),
    box-shadow 240ms var(--ease),
    background 240ms var(--ease);
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 12px 28px rgba(0, 102, 204, 0.22);
}

.button-secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
}

.button-secondary:hover {
  background: #fff;
}

.home-hero .eyebrow {
  color: var(--cyan);
}

.home-hero .button-primary {
  background: #f8fbff;
  color: #071018;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.28);
}

.home-hero .button-secondary {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  backdrop-filter: blur(18px);
}

.home-hero .button-secondary:hover {
  background: rgba(255, 255, 255, 0.14);
}

.hero-background-video,
.hero-overlay {
  position: absolute;
  inset: 0;
  display: block;
}

.hero-background-video {
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.82;
  filter: saturate(0.94) contrast(1.08) brightness(0.74);
}

.hero-overlay {
  z-index: 1;
  background:
    radial-gradient(circle at 72% 16%, rgba(32, 215, 255, 0.18), transparent 26%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.58) 42%, rgba(0, 0, 0, 0.24) 72%, rgba(0, 0, 0, 0.62)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.44) 70%, rgba(0, 0, 0, 0.72));
}

.hero-note {
  max-width: 620px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  line-height: 1.5;
}

.button-dark-secondary {
  border: 1px solid var(--line-dark);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.9);
}

.button-dark-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 10px;
  margin-top: 30px;
}

.hero-proof span {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  padding: 9px 12px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 500;
  backdrop-filter: blur(16px);
}

.hero-live-link {
  position: absolute;
  right: max(20px, calc((100% - 1180px) / 2));
  bottom: 34px;
  z-index: 2;
  display: grid;
  min-width: min(330px, calc(100% - 40px));
  gap: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.34);
  padding-top: 16px;
  color: #fff;
}

.hero-live-link span,
.hero-live-link em {
  color: rgba(255, 255, 255, 0.64);
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  text-transform: uppercase;
}

.hero-live-link strong {
  max-width: 310px;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.08;
}

.hero-live-link em {
  color: var(--cyan);
}

.hero-stage {
  display: grid;
  gap: 14px;
  color: var(--ink);
}

.hero-stage-shell {
  position: relative;
  display: block;
  min-height: clamp(390px, 54vh, 590px);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 15%, rgba(255, 255, 255, 0.18), transparent 34%),
    linear-gradient(180deg, #1d2027, #0d0f13 55%, #060708);
  box-shadow: 0 32px 92px rgba(22, 22, 23, 0.18);
  isolation: isolate;
}

.hero-stage-video,
.featured-live-video,
.product-preview-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-stage-video {
  z-index: 0;
  opacity: 0.86;
  filter: saturate(1.04) contrast(1.02);
}

.hero-stage-shell::before {
  z-index: 1;
}

.hero-stage-live .hero-stage-shell {
  background: #0b0d12;
}

.hero-stage-live .stage-screen,
.hero-stage-live .stage-side,
.hero-stage-live .stage-platform,
.hero-stage-live .stage-product {
  opacity: 0;
}

.hero-stage-live .stage-floor-ring,
.hero-stage-live .stage-reflection,
.hero-stage-live .stage-top-light {
  z-index: 1;
}

.hero-stage-shell::before {
  content: "";
  position: absolute;
  inset: auto -18% -18% -18%;
  height: 44%;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), transparent 38%),
    repeating-radial-gradient(ellipse at center, rgba(255, 255, 255, 0.18) 0 1px, transparent 1px 44px);
  opacity: 0.7;
  transform: perspective(760px) rotateX(62deg);
  transform-origin: top;
}

.stage-top-light,
.stage-screen,
.stage-screen-line,
.stage-side,
.stage-platform,
.stage-product,
.stage-floor-ring,
.stage-reflection {
  position: absolute;
  display: block;
}

.stage-top-light {
  top: 0;
  left: 50%;
  width: 58%;
  height: 26%;
  background: radial-gradient(ellipse at center, rgba(255, 225, 178, 0.5), transparent 66%);
  filter: blur(8px);
  transform: translateX(-50%);
}

.stage-screen {
  top: 18%;
  right: 12%;
  left: 12%;
  height: 32%;
  border: 1px solid rgba(124, 172, 255, 0.36);
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.14), transparent 42%),
    linear-gradient(135deg, rgba(35, 84, 144, 0.88), rgba(9, 14, 24, 0.86));
  box-shadow: 0 0 60px rgba(0, 102, 204, 0.22);
}

.stage-screen-title {
  position: absolute;
  top: 24px;
  left: 28px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.stage-screen-line {
  right: 26px;
  left: 28px;
  height: 1px;
  background: rgba(255, 255, 255, 0.24);
}

.stage-screen-line-a {
  top: 52%;
}

.stage-screen-line-b {
  top: 64%;
  opacity: 0.72;
}

.stage-screen-line-c {
  top: 76%;
  opacity: 0.42;
}

.stage-side {
  top: 19%;
  width: 15%;
  height: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.035);
}

.stage-side-left {
  left: 5%;
  transform: skewY(8deg);
}

.stage-side-right {
  right: 5%;
  transform: skewY(-8deg);
}

.stage-platform {
  left: 50%;
  bottom: 16%;
  width: 42%;
  height: 13%;
  border: 1px solid rgba(255, 226, 181, 0.28);
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(0, 0, 0, 0.22));
  box-shadow: 0 0 46px rgba(255, 206, 146, 0.16);
  transform: translateX(-50%);
}

.stage-product {
  left: 50%;
  bottom: 24%;
  width: 30%;
  height: 9%;
  border-radius: 50% 50% 28% 28%;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(173, 181, 192, 0.7)),
    linear-gradient(90deg, #242832, #e5e7eb 46%, #20242c);
  box-shadow:
    inset 0 -12px 18px rgba(0, 0, 0, 0.18),
    0 18px 34px rgba(0, 0, 0, 0.48);
  transform: translateX(-50%);
  transition: transform 420ms var(--ease);
}

.hero-stage:hover .stage-product {
  transform: translateX(-50%) translateY(-6px);
}

.stage-floor-ring {
  left: 50%;
  bottom: 12%;
  border: 1px solid rgba(255, 226, 181, 0.34);
  border-radius: 50%;
  transform: translateX(-50%) perspective(560px) rotateX(72deg);
}

.stage-floor-ring-a {
  width: 62%;
  height: 20%;
}

.stage-floor-ring-b {
  width: 82%;
  height: 28%;
  border-color: rgba(128, 174, 255, 0.24);
}

.stage-reflection {
  left: 50%;
  bottom: 2%;
  width: 22%;
  height: 22%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.22), transparent 68%);
  filter: blur(8px);
  transform: translateX(-50%);
}

.stage-caption {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
  font-size: 13px;
}

.stage-caption strong {
  color: var(--ink);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 1px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto 90px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.trust-strip div {
  display: grid;
  gap: 10px;
  min-height: 112px;
  align-content: center;
  padding: 20px;
  background: rgba(255, 255, 255, 0.8);
}

.trust-strip span {
  color: var(--soft);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.trust-strip strong {
  font-size: clamp(18px, 2vw, 25px);
  line-height: 1.14;
  text-wrap: balance;
}

.featured {
  width: min(1320px, calc(100% - 40px));
  margin: 0 auto 98px;
}

.featured-link {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  color: #fff;
  background: #171717;
  overflow: hidden;
}

.featured-visual {
  position: relative;
  display: block;
  min-height: clamp(420px, 62vh, 720px);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.62), transparent 23%, transparent 77%, rgba(0, 0, 0, 0.62)),
    linear-gradient(180deg, #24231f 0 22%, #5e5a52 22% 52%, #262523 52% 100%);
}

.featured-live-video {
  z-index: 0;
  opacity: 0.94;
  filter: saturate(1.03) contrast(1.04);
}

.featured-link-live .featured-visual {
  background: #141414;
}

.featured-link-live .featured-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.46), transparent 25%, transparent 78%, rgba(0, 0, 0, 0.4)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.1), transparent 48%, rgba(0, 0, 0, 0.32));
  pointer-events: none;
}

.featured-link-live .skylight,
.featured-link-live .gallery-wall,
.featured-link-live .display-case,
.featured-link-live .featured-floor-line {
  display: none;
}

.featured-link-live .light-beam {
  z-index: 2;
  opacity: 0.34;
  mix-blend-mode: screen;
}

.featured-link:hover .light-beam {
  animation: featuredBeam 3.8s var(--ease) infinite alternate;
}

.featured-link:hover .display-case {
  animation: displayFloat 3.2s ease-in-out infinite;
}

.featured-visual::before {
  content: "";
  position: absolute;
  inset: 58% 0 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), transparent 42%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 150px);
  transform: perspective(800px) rotateX(60deg);
  transform-origin: top;
}

.skylight {
  position: absolute;
  top: 0;
  left: 50%;
  width: min(360px, 38vw);
  height: 150px;
  background: #efe5d2;
  transform: translateX(-50%) skewX(-18deg);
  box-shadow: 0 0 42px rgba(255, 233, 189, 0.55);
}

.light-beam {
  position: absolute;
  top: 108px;
  left: 47%;
  width: min(420px, 42vw);
  height: 430px;
  background: linear-gradient(100deg, rgba(255, 232, 185, 0.42), rgba(255, 232, 185, 0.06) 72%, transparent);
  filter: blur(1px);
  transform: skewX(-12deg);
}

.featured-floor-line {
  position: absolute;
  right: 12%;
  bottom: 24%;
  left: 12%;
  height: 1px;
  background: rgba(255, 242, 212, 0.2);
  transform: perspective(700px) rotateX(62deg);
}

.featured-floor-line-a {
  bottom: 31%;
}

.featured-floor-line-b {
  bottom: 17%;
}

.gallery-wall {
  position: absolute;
  top: 38%;
  width: 18%;
  height: 23%;
  border: 10px solid rgba(20, 20, 20, 0.7);
  background: linear-gradient(135deg, #cfc5b6, #7f796f);
  box-shadow: 0 24px 52px rgba(0, 0, 0, 0.35);
}

.gallery-wall-left {
  left: 9%;
}

.gallery-wall-right {
  right: 10%;
  background: linear-gradient(135deg, #5f5b55, #2d2c2b);
}

.display-case {
  position: absolute;
  left: 50%;
  bottom: 16%;
  width: min(260px, 20vw);
  height: 132px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.04));
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.55);
  transform: translateX(-50%);
}

.featured-copy {
  display: grid;
  gap: 8px;
  padding: 24px 0 0;
  color: var(--ink);
}

.featured-copy strong {
  font-size: clamp(32px, 5vw, 64px);
  line-height: 1.06;
}

.featured-copy span:last-child {
  max-width: 620px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.5;
}

.work,
.solutions,
.packages,
.industries,
.process,
.partners,
.technology,
.contact,
.scene-hero,
.scene-selector,
.scene-product-panel {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

section[id] {
  scroll-margin-top: 82px;
}

.section-heading {
  display: grid;
  gap: 10px;
  max-width: 720px;
  margin-bottom: 28px;
}

.section-heading h2,
.contact h2,
.scene-selector h2 {
  margin: 0;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.08;
  letter-spacing: 0;
}

.section-heading p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.56;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.product-card {
  display: grid;
  min-height: 560px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
  transform:
    perspective(1200px)
    rotateX(var(--rx, 0deg))
    rotateY(var(--ry, 0deg))
    translateY(0);
  transition:
    border-color 260ms var(--ease),
    box-shadow 360ms var(--ease),
    transform 360ms var(--ease);
  will-change: transform;
}

.product-card:hover,
.product-card:focus-visible {
  border-color: rgba(0, 0, 0, 0.18);
  box-shadow: 0 28px 70px rgba(22, 22, 23, 0.12);
  transform:
    perspective(1200px)
    rotateX(var(--rx, 0deg))
    rotateY(var(--ry, 0deg))
    translateY(-6px);
}

.product-visual {
  position: relative;
  display: block;
  min-height: 370px;
  overflow: hidden;
  background: #191a1f;
  transform: translateZ(0);
}

.product-preview-video {
  z-index: 0;
  background: #111;
  opacity: 0.96;
  filter: saturate(1.03) contrast(1.03);
  transform: scale(1.012);
  transition:
    opacity 320ms var(--ease),
    transform 900ms var(--ease),
    filter 900ms var(--ease);
}

.product-card:hover .product-preview-video,
.product-card:focus-visible .product-preview-video {
  opacity: 1;
  filter: saturate(1.08) contrast(1.06);
  transform: scale(1.045);
}

.product-preview-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), transparent 42%, rgba(0, 0, 0, 0.38)),
    radial-gradient(circle at 72% 18%, rgba(255, 255, 255, 0.2), transparent 32%);
  pointer-events: none;
}

.preview-badge {
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 3;
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  padding: 0 10px;
  background: rgba(8, 9, 12, 0.46);
  color: rgba(255, 255, 255, 0.82);
  font-size: 11px;
  font-weight: 600;
  backdrop-filter: blur(12px);
}

.has-live-preview .visual-horizon,
.has-live-preview .visual-object,
.has-live-preview .visual-line {
  opacity: 0;
}

.has-live-preview .visual-shine {
  z-index: 2;
}

.product-card-stone .product-visual {
  background:
    linear-gradient(180deg, rgba(255, 249, 235, 0.55), transparent 42%),
    linear-gradient(135deg, #b9b0a1, #494844 62%, #161616);
}

.product-card-dark .product-visual {
  background:
    radial-gradient(circle at 52% 18%, rgba(75, 117, 148, 0.28), transparent 28%),
    linear-gradient(135deg, #111316, #252526 58%, #090909);
}

.product-card-graphite .product-visual {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), transparent 28%),
    linear-gradient(135deg, #22252b, #0d1015);
}

.product-card-blue .product-visual {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), transparent 42%),
    linear-gradient(135deg, #202733, #536073 62%, #15191f);
}

.product-card-light .product-visual {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), transparent 46%),
    linear-gradient(135deg, #ded8ce, #9a958d 62%, #56524d);
}

.product-card-warm-stone .product-visual {
  background:
    linear-gradient(180deg, rgba(255, 222, 184, 0.48), transparent 44%),
    linear-gradient(135deg, #a7835f, #4d4037 62%, #1b1512);
}

.visual-horizon,
.visual-object,
.visual-line,
.visual-shine {
  position: absolute;
  display: block;
}

.visual-horizon {
  right: 0;
  bottom: 28%;
  left: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.38);
}

.visual-object {
  left: 50%;
  bottom: 18%;
  width: 34%;
  height: 22%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.08);
  transform: translateX(-50%);
  transition:
    transform 520ms var(--ease),
    opacity 520ms var(--ease);
}

.product-card-graphite .visual-object {
  width: 54%;
  height: 13%;
  border-radius: 50% 50% 22% 22%;
  background: linear-gradient(90deg, #5d626c, #d7d9dc 52%, #2d3137);
}

.product-card-dark .visual-object {
  width: 28%;
  height: 32%;
}

.visual-line {
  left: 9%;
  right: 9%;
  height: 1px;
  background: rgba(255, 255, 255, 0.18);
}

.visual-shine {
  top: 0;
  bottom: 0;
  left: -42%;
  width: 38%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.18), transparent);
  opacity: 0;
  transform: skewX(-16deg);
}

.product-card:hover .visual-shine,
.product-card:focus-visible .visual-shine {
  animation: shineSweep 1.8s var(--ease) forwards;
}

.product-card:hover .visual-object,
.product-card:focus-visible .visual-object {
  transform: translateX(calc(-50% + var(--mx, 0px))) translateY(var(--my, 0px));
}

.visual-line-a {
  top: 18%;
}

.visual-line-b {
  bottom: 13%;
}

.product-copy {
  display: grid;
  align-content: end;
  gap: 10px;
  padding: 26px;
}

.product-index {
  color: var(--soft);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
}

.product-flags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: -2px;
}

.product-flags span {
  display: inline-flex;
  min-height: 27px;
  align-items: center;
  border: 1px solid rgba(0, 102, 204, 0.22);
  border-radius: 999px;
  padding: 0 10px;
  background: rgba(0, 102, 204, 0.07);
  color: #164b7c;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.product-card strong {
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.08;
}

.product-short {
  max-width: 390px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.48;
}

.product-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 12px;
}

.product-meta span {
  min-height: 38px;
  border-top: 1px solid var(--line);
  padding-top: 10px;
  color: var(--soft);
  font-size: 12px;
  line-height: 1.35;
}

.product-review-capability {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.product-review-capability span {
  display: inline-flex;
  min-height: 26px;
  align-items: center;
  border: 1px solid rgba(0, 102, 204, 0.18);
  border-radius: 999px;
  padding: 0 9px;
  background: rgba(0, 102, 204, 0.055);
  color: #164b7c;
  font-size: 11px;
  font-weight: 600;
  line-height: 1;
}

.product-proof {
  display: grid;
  gap: 1px;
  overflow: hidden;
  margin-top: 6px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.08);
}

.product-proof span {
  display: grid;
  gap: 5px;
  min-height: 66px;
  align-content: start;
  padding: 12px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--muted);
  font-size: 12px;
  line-height: 1.42;
}

.product-proof em {
  color: var(--ink);
  font-size: 10px;
  font-style: normal;
  font-weight: 600;
  text-transform: uppercase;
}

.motion-preview {
  position: absolute;
  inset: 0;
  overflow: hidden;
  opacity: 0;
  transform: scale(1.015);
  transition:
    opacity 320ms var(--ease),
    transform 900ms var(--ease);
}

.product-card:hover .motion-preview,
.product-card:focus-visible .motion-preview {
  opacity: 1;
  transform: scale(1);
}

.preview-room,
.preview-light,
.preview-object,
.preview-screen,
.preview-line,
.preview-scan {
  position: absolute;
  display: block;
}

.preview-room {
  inset: 0;
  background:
    radial-gradient(circle at 50% 28%, rgba(255, 255, 255, 0.16), transparent 26%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.52), transparent 25%, transparent 75%, rgba(0, 0, 0, 0.5));
}

.preview-light-a {
  top: 0;
  left: 46%;
  width: 30%;
  height: 70%;
  background: linear-gradient(105deg, rgba(255, 237, 196, 0.52), rgba(255, 237, 196, 0.02));
  filter: blur(2px);
  transform: skewX(-16deg);
  animation: beamDrift 3.8s ease-in-out infinite alternate;
}

.preview-light-b {
  right: 9%;
  bottom: 16%;
  width: 34%;
  height: 22%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.28), transparent 64%);
  animation: glowPulse 2.8s ease-in-out infinite;
}

.preview-object {
  left: 50%;
  bottom: 18%;
  width: 30%;
  height: 20%;
  border: 1px solid rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.32);
  transform: translateX(-50%);
  animation: objectBreathe 3.2s ease-in-out infinite;
}

.preview-screen {
  top: 25%;
  left: 34%;
  width: 32%;
  height: 22%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.2), transparent),
    linear-gradient(135deg, rgba(0, 102, 204, 0.62), rgba(9, 19, 35, 0.84));
  box-shadow: 0 0 36px rgba(0, 102, 204, 0.28);
}

.preview-line {
  right: 12%;
  left: 12%;
  height: 1px;
  background: rgba(255, 255, 255, 0.22);
  animation: lineSlide 2.6s ease-in-out infinite;
}

.preview-line-a {
  top: 20%;
}

.preview-line-b {
  top: 56%;
  animation-delay: 220ms;
}

.preview-line-c {
  bottom: 17%;
  animation-delay: 440ms;
}

.preview-scan {
  top: 18%;
  bottom: 12%;
  left: -18%;
  width: 16%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
  transform: skewX(-12deg);
  animation: scanPreview 2.7s ease-in-out infinite;
}

.motion-preview-dark .preview-object {
  width: 24%;
  height: 34%;
}

.motion-preview-dark .preview-screen {
  top: 34%;
  height: 18%;
}

.motion-preview-stone .preview-light-a {
  background: linear-gradient(105deg, rgba(255, 232, 180, 0.62), rgba(255, 232, 180, 0.02));
}

.motion-preview-stone .preview-object {
  height: 24%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0.04));
}

.motion-preview-graphite .preview-object {
  width: 56%;
  height: 14%;
  border-radius: 50% 50% 28% 28%;
  background: linear-gradient(90deg, #24282f, #e6e8eb 46%, #2a3038);
}

.motion-preview-graphite .preview-line-a,
.motion-preview-graphite .preview-line-b,
.motion-preview-graphite .preview-line-c {
  border-radius: 999px;
  height: 2px;
  background: rgba(0, 102, 204, 0.36);
}

.motion-preview-blue .preview-object {
  width: 13%;
  height: 34%;
  border-radius: 999px 999px 30px 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.26), rgba(91, 141, 255, 0.12));
}

.motion-preview-blue .preview-screen {
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.22), transparent),
    linear-gradient(135deg, rgba(87, 106, 226, 0.62), rgba(13, 18, 31, 0.86));
}

.motion-preview-light .preview-room {
  background:
    radial-gradient(circle at 56% 18%, rgba(255, 238, 206, 0.48), transparent 34%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.32), transparent 28%, transparent 74%, rgba(110, 92, 72, 0.3));
}

.motion-preview-warm-stone .preview-room {
  background:
    radial-gradient(circle at 72% 30%, rgba(255, 206, 154, 0.34), transparent 34%),
    linear-gradient(90deg, rgba(47, 35, 28, 0.46), transparent 25%, transparent 78%, rgba(38, 26, 20, 0.5));
}

.motion-preview-warm-stone .preview-object {
  width: 46%;
  height: 18%;
  border-radius: 6px;
  background: linear-gradient(90deg, #2b211b, #a98561 52%, #221913);
}

.solutions,
.industries,
.process {
  padding: 112px 0 0;
}

.engagement {
  margin: 112px 0 0;
  padding: 82px 0;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.04), rgba(0, 102, 204, 0.1) 36%, transparent 72%),
    #121316;
  color: #fff;
}

.engagement-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 44px;
  align-items: start;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.engagement-copy {
  display: grid;
  gap: 14px;
}

.engagement-copy h2 {
  margin: 0;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.08;
  letter-spacing: 0;
}

.engagement-copy p:last-child {
  margin: 0;
  max-width: 600px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 16px;
  line-height: 1.62;
}

.engagement-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.16);
}

.engagement-grid article {
  display: grid;
  align-content: start;
  gap: 16px;
  min-height: 320px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.055);
}

.engagement-grid span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}

.engagement-grid ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.engagement-grid li {
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  line-height: 1.5;
}

.engagement-grid li + li {
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  padding-top: 12px;
}

.packages {
  padding-top: 104px;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.package-grid article {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 300px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 18px 52px rgba(22, 22, 23, 0.045);
}

.package-grid article span {
  color: var(--blue);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}

.package-grid h3 {
  margin: 0;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.04;
}

.package-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.package-link {
  align-self: end;
  margin-top: auto;
}

.package-grid ul {
  display: grid;
  gap: 11px;
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
}

.package-grid li {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding-top: 11px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.46;
}

.package-card-guide {
  border-color: rgba(0, 102, 204, 0.28) !important;
  background:
    linear-gradient(180deg, rgba(0, 102, 204, 0.075), rgba(255, 255, 255, 0.82) 44%),
    rgba(255, 255, 255, 0.88) !important;
}

.package-note {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--soft);
  font-size: 13px;
  line-height: 1.5;
}

.review-system {
  margin: 104px 0 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 78px 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.94), rgba(246, 247, 249, 0.9)),
    #f5f6f8;
}

.review-system-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 54px;
  align-items: start;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.review-system-copy {
  display: grid;
  gap: 14px;
}

.review-system-copy h2 {
  margin: 0;
  font-size: clamp(34px, 4.8vw, 56px);
  line-height: 1.08;
  letter-spacing: 0;
}

.review-system-copy p:last-child {
  margin: 0;
  max-width: 620px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.62;
}

.review-system-points {
  display: grid;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.review-system-points article {
  display: grid;
  grid-template-columns: minmax(130px, 0.32fr) minmax(190px, 0.42fr) minmax(0, 0.72fr);
  gap: 18px;
  align-items: start;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding: 22px 0;
}

.review-system-points span {
  color: var(--blue);
  font-size: 11px;
  font-weight: 600;
  line-height: 1.3;
  text-transform: uppercase;
}

.review-system-points strong {
  color: var(--ink);
  font-size: clamp(19px, 2vw, 25px);
  line-height: 1.08;
}

.review-system-points p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.technology {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 42px;
  align-items: end;
  margin-top: 112px;
  border-radius: var(--radius);
  padding: 44px;
  background:
    radial-gradient(circle at 88% 12%, rgba(0, 102, 204, 0.18), transparent 28%),
    linear-gradient(135deg, #111318, #1f2329 58%, #0d0e11);
  color: #fff;
}

.technology-copy {
  display: grid;
  gap: 14px;
}

.technology-copy h2 {
  margin: 0;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.08;
}

.technology-copy p:last-child {
  margin: 0;
  max-width: 560px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 16px;
  line-height: 1.62;
}

.solution-grid,
.industry-grid,
.process-list,
.technology-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.process-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.solution-grid article,
.industry-grid article,
.process-list article {
  border-top: 1px solid var(--line);
  padding-top: 20px;
}

.solution-grid article {
  display: grid;
  min-height: 360px;
  align-content: start;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 50px rgba(22, 22, 23, 0.045);
  transition:
    border-color 240ms var(--ease),
    transform 240ms var(--ease),
    box-shadow 240ms var(--ease);
}

.solution-grid article:hover {
  border-color: rgba(0, 0, 0, 0.16);
  box-shadow: 0 28px 70px rgba(22, 22, 23, 0.08);
  transform: translateY(-4px);
}

.solution-grid article span,
.industry-grid span,
.process-list span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.solution-grid h3,
.industry-grid h3,
.process-list h3 {
  margin: 18px 0 10px;
  font-size: 22px;
  line-height: 1.12;
}

.solution-grid p,
.industry-grid p,
.process-list p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.58;
}

.solution-points {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.solution-points li {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding-top: 10px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.46;
}

.solution-points strong {
  color: var(--ink);
  font-weight: 600;
}

.solution-link {
  display: inline-flex;
  width: fit-content;
  margin-top: 18px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 600;
}

.solution-link:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.partners {
  padding-top: 112px;
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.partner-card {
  display: grid;
  min-height: 230px;
  align-content: start;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.68)),
    var(--paper);
  box-shadow: 0 18px 42px rgba(22, 22, 23, 0.04);
  transition:
    border-color 240ms var(--ease),
    transform 240ms var(--ease),
    box-shadow 240ms var(--ease);
}

.partner-card:hover {
  border-color: rgba(0, 0, 0, 0.16);
  box-shadow: 0 26px 62px rgba(22, 22, 23, 0.08);
  transform: translateY(-3px);
}

.partner-name {
  display: block;
  max-width: 260px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 600;
  line-height: 1.3;
  text-transform: uppercase;
}

.partner-card strong {
  max-width: 260px;
  color: var(--ink);
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.08;
}

.partner-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.52;
}

.partner-disclaimer {
  max-width: 720px;
  margin: 16px 0 0;
  color: var(--soft);
  font-size: 12px;
  line-height: 1.5;
}

.technology-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: var(--line-dark);
}

.technology-grid article {
  display: grid;
  min-height: 148px;
  align-content: end;
  gap: 10px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.055);
  transition:
    background 240ms var(--ease),
    transform 240ms var(--ease);
}

.technology-grid article:hover {
  background: rgba(255, 255, 255, 0.085);
}

.technology-grid span {
  color: rgba(255, 255, 255, 0.52);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}

.technology-grid strong {
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.08;
}

.contact {
  display: grid;
  justify-items: center;
  gap: 22px;
  padding: 104px 20px 120px;
  text-align: center;
}

.contact h2 {
  max-width: 760px;
}

.contact-intro {
  max-width: 720px;
  margin: -6px 0 6px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.58;
}

.contact-route-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  width: min(980px, 100%);
  margin-top: 4px;
}

.contact-route {
  display: grid;
  gap: 10px;
  min-height: 210px;
  align-content: start;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
  text-align: left;
  transition:
    border-color 220ms var(--ease),
    box-shadow 260ms var(--ease),
    transform 260ms var(--ease);
}

.contact-route:hover,
.contact-route:focus-visible {
  border-color: rgba(0, 102, 204, 0.42);
  box-shadow: 0 22px 56px rgba(22, 22, 23, 0.09);
  transform: translateY(-3px);
}

.contact-route span {
  color: var(--blue);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}

.contact-route strong {
  font-size: 22px;
  line-height: 1.08;
}

.contact-route em {
  color: var(--muted);
  font-size: 14px;
  font-style: normal;
  line-height: 1.5;
}

.museum-contact {
  gap: 18px;
}

.museum-pilot-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  width: min(960px, 100%);
  margin: 10px 0 2px;
}

.museum-pilot-grid article {
  display: grid;
  gap: 9px;
  min-height: 176px;
  align-content: start;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(247, 248, 249, 0.78)),
    #fff;
  text-align: left;
}

.museum-pilot-grid span {
  color: var(--blue);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}

.museum-pilot-grid strong {
  color: var(--ink);
  font-size: 20px;
  line-height: 1.12;
}

.museum-pilot-grid p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.52;
}

.museum-readiness {
  width: min(1180px, calc(100% - 40px));
  margin: 118px auto 0;
}

.museum-readiness-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.museum-readiness-grid article {
  display: grid;
  min-height: 238px;
  align-content: space-between;
  gap: 18px;
  border: 1px solid rgba(20, 24, 32, 0.12);
  border-radius: var(--radius);
  padding: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(238, 242, 247, 0.72)),
    #fff;
  box-shadow: 0 18px 50px rgba(18, 24, 35, 0.055);
}

.museum-readiness-grid span,
.museum-readiness-flow span {
  color: var(--blue);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}

.museum-readiness-grid strong {
  color: var(--ink);
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.04;
}

.museum-readiness-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.58;
}

.museum-readiness-flow {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  margin-top: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.museum-readiness-flow span {
  display: flex;
  min-height: 68px;
  align-items: center;
  justify-content: center;
  padding: 14px;
  background: rgba(255, 255, 255, 0.84);
  color: var(--muted);
  text-align: center;
  letter-spacing: 0;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  border-top: 1px solid var(--line);
  padding: 26px 0 34px;
  color: var(--muted);
}

.site-footer div,
.site-footer nav {
  display: inline-flex;
  align-items: center;
}

.site-footer div {
  gap: 12px;
  color: var(--ink);
}

.site-footer .footer-brand {
  min-width: 206px;
}

.site-footer strong {
  font-size: 13px;
}

.site-footer nav {
  gap: 22px;
}

.site-footer a {
  font-size: 12px;
  transition: color 180ms var(--ease);
}

.site-footer a:hover {
  color: var(--ink);
}

.museum-page {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(245, 245, 247, 0.98) 42%),
    var(--page);
}

.museum-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(420px, 1.16fr);
  gap: 48px;
  align-items: center;
  width: min(1180px, calc(100% - 40px));
  min-height: 68vh;
  margin: 0 auto;
  padding: 78px 0 70px;
}

.museum-hero-copy {
  display: grid;
  align-content: center;
}

.museum-hero h1 {
  margin: 0 0 18px;
  font-size: clamp(44px, 6.2vw, 82px);
  line-height: 1.04;
  letter-spacing: 0;
}

.museum-hero-copy > p:last-of-type {
  max-width: 660px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.42;
}

.museum-visual {
  position: relative;
  display: grid;
  min-height: clamp(420px, 58vh, 680px);
  align-items: end;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius);
  background: #0b0c0f;
  box-shadow: 0 34px 92px rgba(22, 22, 23, 0.18);
}

.museum-visual video,
.museum-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.94;
}

.museum-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 42%, rgba(0, 0, 0, 0.72)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.2), transparent 44%, rgba(0, 0, 0, 0.28));
}

.museum-visual-caption {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: end;
  padding: 24px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.museum-visual-caption strong {
  color: #fff;
}

.museum-strip,
.museum-system,
.museum-product,
.museum-delivery,
.museum-route,
.museum-build {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.museum-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.museum-strip div {
  display: grid;
  min-height: 220px;
  align-content: end;
  gap: 12px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.82);
}

.museum-strip span,
.museum-product-grid article > span,
.museum-route-list span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.museum-strip strong {
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.08;
}

.museum-strip p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

.museum-system {
  padding-top: 104px;
}

.museum-system-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.museum-system-grid article {
  display: grid;
  min-height: 240px;
  align-content: space-between;
  gap: 18px;
  padding: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(248, 249, 250, 0.82)),
    #fff;
}

.museum-system-grid span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.museum-system-grid strong {
  max-width: 14ch;
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.03;
}

.museum-system-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.museum-product {
  padding-top: 112px;
}

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

.museum-product-grid article {
  display: grid;
  min-height: 286px;
  align-content: end;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 50px rgba(22, 22, 23, 0.045);
}

.museum-product-grid h3 {
  margin: 18px 0 12px;
  font-size: clamp(23px, 2.6vw, 34px);
  line-height: 1.04;
}

.museum-product-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.58;
}

.museum-delivery {
  padding-top: 104px;
}

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

.museum-delivery-grid article {
  display: grid;
  gap: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(244, 246, 248, 0.76)),
    #fff;
  box-shadow: 0 18px 46px rgba(22, 22, 23, 0.04);
}

.museum-delivery-grid span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.museum-delivery-grid ul {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.museum-delivery-grid li {
  position: relative;
  padding-left: 20px;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.5;
}

.museum-delivery-grid li::before {
  content: "";
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue);
}

.museum-route {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 44px;
  align-items: start;
  padding-top: 112px;
}

.museum-route h2 {
  margin: 0 0 16px;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.06;
}

.museum-route > div > p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.58;
}

.museum-route-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.museum-route-list li {
  display: grid;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  background: rgba(255, 255, 255, 0.78);
}

.museum-route-list strong {
  font-size: clamp(20px, 2.3vw, 28px);
  line-height: 1.08;
}

.museum-route-list p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.56;
}

.museum-build {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 36px;
  align-items: end;
  margin-top: 112px;
  border-radius: var(--radius);
  padding: 44px;
  background:
    radial-gradient(circle at 82% 12%, rgba(79, 195, 179, 0.24), transparent 30%),
    linear-gradient(135deg, #111318, #1b2026 58%, #0d0e11);
  color: #fff;
}

.museum-build-grid {
  margin: 0;
}

.scene-page {
  background: var(--dark);
  color: #fff;
}

.scene-page::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(11, 12, 15, 0.52), var(--dark) 48%),
    var(--scene-preview, none) center 10% / cover no-repeat,
    var(--dark);
  opacity: 0.24;
  filter: blur(18px) saturate(0.9);
  transform: scale(1.06);
}

.scene-page main {
  padding-bottom: 70px;
}

.scene-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: 44px;
  align-items: end;
  padding: 78px 0 30px;
}

.scene-copy h1 {
  margin: 0 0 18px;
  font-size: clamp(46px, 8vw, 96px);
  line-height: 1.04;
  letter-spacing: 0;
}

.scene-product-name {
  margin: -8px 0 18px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(18px, 2.6vw, 30px);
  font-weight: 500;
  line-height: 1.18;
}

.scene-copy #scene-summary {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 19px;
  line-height: 1.52;
}

.scene-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.scene-meta {
  display: grid;
  gap: 16px;
  margin: 0;
}

.scene-meta div {
  border-top: 1px solid var(--line-dark);
  padding-top: 14px;
}

dt {
  color: rgba(255, 255, 255, 0.46);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
}

dd {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  line-height: 1.45;
}

.scene-viewer {
  position: relative;
  width: min(1440px, calc(100% - 40px));
  min-height: clamp(540px, 76vh, 850px);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: #050506;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.34);
}

.scene-viewer iframe {
  position: relative;
  display: block;
  width: 100%;
  height: clamp(540px, 76vh, 850px);
  border: 0;
  background: #050506;
}

.viewer-load {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  font-weight: 500;
}

.viewer-load[hidden] {
  display: none;
}

.scene-viewer-preview {
  display: grid;
  min-height: clamp(480px, 70vh, 780px);
  align-items: end;
  background:
    linear-gradient(180deg, rgba(5, 5, 6, 0.06), rgba(5, 5, 6, 0.86)),
    linear-gradient(90deg, rgba(5, 5, 6, 0.74), transparent 46%, rgba(5, 5, 6, 0.24)),
    var(--scene-preview, none) center / cover no-repeat,
    #050506;
}

.scene-viewer-preview::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.22), transparent 32%),
    linear-gradient(180deg, transparent 62%, rgba(0, 0, 0, 0.46));
  pointer-events: none;
}

.viewer-preview-copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
  max-width: 620px;
  padding: clamp(24px, 5vw, 54px);
}

.viewer-preview-copy h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(34px, 5vw, 68px);
  line-height: 1.06;
}

.viewer-preview-copy p:not(.eyebrow) {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 17px;
  line-height: 1.5;
}

.viewer-preview-copy .button {
  width: fit-content;
}

.scene-product-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 34px;
  padding-top: 54px;
}

.section-heading-dark h2 {
  color: #fff;
}

.section-heading-dark p:last-child {
  color: rgba(255, 255, 255, 0.68);
}

.scene-product-content {
  display: grid;
  gap: 12px;
}

.scene-proof-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.scene-proof-strip article {
  min-height: 144px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  padding: 18px;
  background: rgba(255, 255, 255, 0.075);
}

.scene-proof-strip span {
  display: block;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}

.scene-proof-strip p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 15px;
  line-height: 1.48;
}

.scene-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.scene-detail-grid article {
  min-height: 216px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  padding: 18px;
  background: rgba(255, 255, 255, 0.045);
}

.scene-detail-grid article > span {
  display: block;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}

.scene-detail-grid ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.scene-detail-grid li {
  position: relative;
  padding-left: 15px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  line-height: 1.44;
}

.scene-detail-grid li::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.52;
}

.scene-selector {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 24px;
  padding-top: 42px;
}

.compact-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.compact-card {
  position: relative;
  display: grid;
  gap: 8px;
  min-height: 112px;
  align-content: end;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  padding: 16px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.04);
  overflow: hidden;
  transition:
    background 240ms var(--ease),
    border-color 240ms var(--ease),
    transform 240ms var(--ease);
}

.compact-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 10%, rgba(0, 0, 0, 0.68)),
    var(--compact-preview, none) center / cover no-repeat;
  opacity: 0.42;
  transform: scale(1.04);
  transition:
    opacity 260ms var(--ease),
    transform 520ms var(--ease);
}

.compact-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.07);
}

.compact-card:hover::before,
.compact-card:focus-visible::before {
  opacity: 0.66;
  transform: scale(1.08);
}

.compact-card[aria-current="page"] {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.09);
}

.compact-card > span:not(.compact-motion) {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.48);
  font-size: 11px;
  font-weight: 600;
}

.compact-card strong {
  position: relative;
  z-index: 1;
  font-size: 15px;
  line-height: 1.2;
}

.compact-motion {
  position: absolute;
  inset: 0;
  opacity: 0.22;
}

.compact-motion span {
  position: absolute;
  display: block;
}

.compact-motion span:nth-child(1) {
  right: 16%;
  bottom: 18%;
  left: 16%;
  height: 1px;
  background: rgba(255, 255, 255, 0.28);
}

.compact-motion span:nth-child(2) {
  top: 24%;
  left: 18%;
  width: 34%;
  height: 24%;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.06);
}

.compact-motion span:nth-child(3) {
  top: 10%;
  bottom: 0;
  left: -22%;
  width: 18%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
  transform: skewX(-16deg);
}

.compact-card:hover .compact-motion span:nth-child(3) {
  animation: scanPreview 1.8s var(--ease) infinite;
}

.live-page {
  min-height: 100vh;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(5, 5, 6, 0.74), #050506 54%),
    var(--scene-preview, none) center / cover no-repeat,
    #050506;
  color: #fff;
}

.live-page::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.18), transparent 30%),
    rgba(5, 5, 6, 0.72);
  backdrop-filter: blur(18px);
}

.live-nav {
  position: fixed;
  top: 14px;
  right: 20px;
  left: 20px;
  z-index: 10;
  display: grid;
  grid-template-columns: minmax(150px, 260px) minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  min-height: 56px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  padding: 8px 12px;
  background: rgba(11, 12, 15, 0.72);
  backdrop-filter: saturate(160%) blur(18px);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.32);
}

.live-nav .brand {
  min-height: 36px;
}

.live-nav-meta {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.live-nav-meta span {
  color: rgba(255, 255, 255, 0.54);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}

.live-nav-meta strong {
  overflow: hidden;
  color: rgba(255, 255, 255, 0.92);
  font-size: 14px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.live-nav-links {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.live-nav-links a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  transition: color 180ms var(--ease);
}

.live-nav-links a:hover {
  color: #fff;
}

.live-nav-links .live-quality-link {
  min-height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  padding: 8px 10px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
}

.live-nav-links .live-quality-link:hover {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.live-nav-links .live-quality-link[hidden] {
  display: none;
}

.live-focus-toggle {
  min-height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  padding: 0 12px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.88);
  font: inherit;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition:
    background 180ms var(--ease),
    border-color 180ms var(--ease),
    color 180ms var(--ease);
}

.live-focus-toggle:hover,
.live-focus-toggle[aria-pressed="true"] {
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.live-stage {
  position: relative;
  display: grid;
  min-height: 100vh;
  padding: 86px 14px 14px;
}

.live-stage iframe {
  display: block;
  width: 100%;
  height: calc(100vh - 100px);
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: #050506;
  box-shadow: 0 30px 88px rgba(0, 0, 0, 0.38);
}

.live-load {
  position: absolute;
  inset: 86px 14px 14px;
  z-index: 1;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(5, 5, 6, 0.42), rgba(5, 5, 6, 0.86)),
    var(--scene-preview, none) center / cover no-repeat,
    #050506;
  color: rgba(255, 255, 255, 0.72);
}

.live-load[hidden] {
  display: none;
}

.live-load-card {
  display: grid;
  gap: 12px;
  width: min(420px, calc(100% - 36px));
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  padding: 20px;
  background: rgba(9, 10, 12, 0.78);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.38);
  backdrop-filter: saturate(150%) blur(20px);
}

.live-load-card span {
  color: rgba(255, 255, 255, 0.56);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}

.live-load-card strong {
  color: rgba(255, 255, 255, 0.94);
  font-size: 20px;
  line-height: 1.12;
}

.live-load-card p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  line-height: 1.5;
}

.live-progress {
  overflow: hidden;
  height: 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.13);
}

.live-progress span {
  display: block;
  width: 8%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #8fb7ff, #f0a26a);
  box-shadow: 0 0 24px rgba(143, 183, 255, 0.48);
  transition: width 420ms var(--ease);
}

.live-load-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.live-load-actions[hidden] {
  display: none;
}

.live-load-actions a,
.live-load-actions button {
  min-height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  padding: 8px 11px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.86);
  font: inherit;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
}

.live-load.is-slow .live-load-card {
  border-color: rgba(240, 162, 106, 0.36);
}

.live-debug {
  position: absolute;
  right: 24px;
  bottom: 24px;
  z-index: 4;
  display: grid;
  gap: 10px;
  width: min(360px, calc(100% - 48px));
  max-height: calc(100vh - 130px);
  overflow: auto;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  padding: 14px;
  background: rgba(7, 8, 10, 0.82);
  color: rgba(255, 255, 255, 0.74);
  font-size: 11px;
  line-height: 1.35;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
  backdrop-filter: saturate(150%) blur(16px);
  pointer-events: none;
}

.live-debug[hidden] {
  display: none;
}

.live-debug strong {
  color: rgba(255, 255, 255, 0.92);
  font-size: 12px;
  letter-spacing: 0;
}

.live-debug dl {
  display: grid;
  gap: 7px;
  margin: 0;
}

.live-debug dl div {
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
}

.live-debug dt {
  color: rgba(255, 255, 255, 0.44);
  font-weight: 600;
  text-transform: uppercase;
}

.live-debug dd {
  overflow-wrap: anywhere;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.live-page.is-ui-minimized .live-nav {
  right: 14px;
  left: auto;
  width: auto;
  min-height: 44px;
  grid-template-columns: auto;
  padding: 6px;
}

.live-page.is-ui-minimized .live-nav .brand,
.live-page.is-ui-minimized .live-nav-meta,
.live-page.is-ui-minimized #live-case-link,
.live-page.is-ui-minimized #live-direct-link,
.live-page.is-ui-minimized #live-quality-link {
  display: none;
}

.live-page.is-ui-minimized .live-nav-links {
  width: auto;
}

.live-page.is-ui-minimized .live-stage {
  padding: 0;
}

.live-page.is-ui-minimized .live-stage iframe {
  height: 100vh;
  border: 0;
  border-radius: 0;
}

.live-page.is-ui-minimized .live-load {
  inset: 0;
  border: 0;
  border-radius: 0;
}

.live-page.is-ui-minimized .mobile-controls {
  display: none !important;
}

.live-page.is-ui-minimized .live-debug {
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
}

.mobile-controls {
  display: none;
}

.mobile-stick,
.mobile-look-pad {
  touch-action: none;
  user-select: none;
  -webkit-user-select: none;
}

.mobile-stick {
  position: fixed;
  bottom: max(18px, env(safe-area-inset-bottom));
  left: max(18px, env(safe-area-inset-left));
  z-index: 12;
  width: 118px;
  height: 118px;
  pointer-events: auto;
}

.mobile-stick-base {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.16), transparent 32%),
    rgba(8, 10, 14, 0.58);
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.36);
}

.mobile-stick-base::before,
.mobile-stick-base::after {
  content: "";
  position: absolute;
  background: rgba(255, 255, 255, 0.24);
}

.mobile-stick-base::before {
  top: 18px;
  bottom: 18px;
  left: 50%;
  width: 1px;
}

.mobile-stick-base::after {
  top: 50%;
  right: 18px;
  left: 18px;
  height: 1px;
}

.mobile-stick-knob {
  position: relative;
  z-index: 1;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 50%;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.08)),
    rgba(0, 102, 204, 0.72);
  box-shadow: 0 10px 28px rgba(0, 102, 204, 0.36);
  transition: transform 80ms linear;
}

.mobile-look-pad {
  position: fixed;
  right: max(18px, env(safe-area-inset-right));
  bottom: max(22px, env(safe-area-inset-bottom));
  z-index: 12;
  width: 132px;
  height: 112px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.14), transparent 38%),
    rgba(8, 10, 14, 0.48);
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
  pointer-events: auto;
}

.mobile-look-pad span,
.mobile-look-pad::before,
.mobile-look-pad::after {
  position: absolute;
  display: block;
  pointer-events: none;
}

.mobile-look-pad span {
  inset: 28px 38px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
}

.mobile-look-pad::before,
.mobile-look-pad::after {
  content: "";
  background: rgba(255, 255, 255, 0.26);
}

.mobile-look-pad::before {
  top: 50%;
  right: 24px;
  left: 24px;
  height: 1px;
}

.mobile-look-pad::after {
  top: 24px;
  bottom: 24px;
  left: 50%;
  width: 1px;
}

@keyframes shineSweep {
  0% {
    left: -42%;
    opacity: 0;
  }
  18% {
    opacity: 1;
  }
  100% {
    left: 116%;
    opacity: 0;
  }
}

@keyframes scanPreview {
  0% {
    left: -18%;
    opacity: 0;
  }
  18%,
  78% {
    opacity: 1;
  }
  100% {
    left: 102%;
    opacity: 0;
  }
}

@keyframes beamDrift {
  from {
    transform: translateX(-18px) skewX(-16deg);
    opacity: 0.68;
  }
  to {
    transform: translateX(22px) skewX(-16deg);
    opacity: 1;
  }
}

@keyframes glowPulse {
  0%,
  100% {
    transform: scale(0.92);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.08);
    opacity: 1;
  }
}

@keyframes objectBreathe {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-6px);
  }
}

@keyframes lineSlide {
  0%,
  100% {
    transform: translateX(-10px);
    opacity: 0.42;
  }
  50% {
    transform: translateX(12px);
    opacity: 1;
  }
}

@keyframes featuredBeam {
  from {
    transform: translateX(-18px) skewX(-12deg);
    opacity: 0.75;
  }
  to {
    transform: translateX(28px) skewX(-12deg);
    opacity: 1;
  }
}

@keyframes displayFloat {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-8px);
  }
}

@media (max-width: 920px) {
  .site-nav {
    width: min(100% - 24px, 1180px);
  }

  .nav-links {
    gap: 14px;
  }

  .home-hero {
    grid-template-columns: 1fr;
    min-height: 760px;
    width: 100%;
    padding: 92px 0 54px;
  }

  .featured,
  .work,
  .solutions,
  .packages,
  .review-system-inner,
  .engagement-inner,
  .trust-strip,
  .industries,
  .process,
  .partners,
  .technology,
  .contact,
  .site-footer,
  .scene-hero,
  .scene-selector,
  .scene-product-panel,
  .scene-viewer,
  .museum-hero,
  .museum-strip,
  .museum-system,
  .museum-product,
  .museum-delivery,
  .museum-route,
  .museum-build {
    width: min(100% - 24px, 1180px);
  }

  .featured {
    margin-bottom: 70px;
  }

  .product-grid,
  .solution-grid,
  .package-grid,
  .review-system-inner,
  .engagement-inner,
  .engagement-grid,
  .trust-strip,
  .technology,
  .scene-hero,
  .scene-selector,
  .scene-product-panel,
  .compact-grid,
  .museum-hero,
  .museum-strip,
  .museum-system-grid,
  .museum-product-grid,
  .museum-delivery-grid,
  .museum-route,
  .museum-build {
    grid-template-columns: 1fr;
  }

  .review-system-points article {
    grid-template-columns: minmax(120px, 0.34fr) minmax(0, 0.66fr);
  }

  .review-system-points p {
    grid-column: 2;
  }

  .industry-grid,
  .process-list,
  .partner-grid,
  .technology-grid,
  .scene-detail-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-card {
    min-height: 500px;
  }

  .hero-live-link {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(100% - 40px, 1180px);
    margin: 44px auto 0;
  }

  .trust-strip {
    margin-bottom: 70px;
  }

  .technology {
    padding: 28px;
  }

  .engagement {
    margin-top: 78px;
    padding: 62px 0;
  }

  .museum-hero {
    min-height: auto;
    padding: 68px 0 54px;
  }

  .museum-visual {
    min-height: 420px;
  }

  .museum-product,
  .museum-system,
  .museum-delivery,
  .museum-route {
    padding-top: 78px;
  }

  .museum-build {
    margin-top: 78px;
    padding: 28px;
  }

  .live-nav {
    grid-template-columns: 1fr;
    gap: 8px;
    align-items: start;
  }

  .live-nav-meta {
    justify-content: flex-start;
  }

  .live-nav-links {
    width: 100%;
    justify-content: space-between;
  }

  .live-stage {
    padding-top: 142px;
  }

  .live-stage iframe {
    height: calc(100vh - 156px);
  }

  .live-load {
    inset: 142px 14px 14px;
  }

}

@media (orientation: landscape) and (max-height: 620px) {
  .home-hero {
    min-height: calc(100vh - 70px);
    padding: 24px 0;
    align-items: center;
  }

  .home-hero h1 {
    max-width: 760px;
    font-size: clamp(38px, 7vw, 54px);
    line-height: 1.06;
  }

  .hero-copy {
    max-width: 680px;
    font-size: 16px;
    line-height: 1.35;
  }

  .hero-actions {
    margin-top: 14px;
  }

  .hero-note,
  .hero-proof,
  .hero-live-link {
    display: none;
  }

  .live-nav {
    top: 10px;
    right: 14px;
    left: 14px;
    grid-template-columns: minmax(150px, 250px) minmax(0, 1fr) auto;
    gap: 12px;
    align-items: center;
    min-height: 48px;
    padding: 6px 10px;
  }

  .live-nav .brand {
    min-height: 30px;
  }

  .live-nav .brand-lockup {
    width: 152px;
  }

  .live-nav-meta {
    display: flex;
    justify-content: center;
  }

  .live-nav-links {
    width: auto;
    justify-content: flex-end;
  }

  .live-stage {
    padding-top: 72px;
  }

  .live-stage iframe {
    height: calc(100vh - 86px);
  }

  .live-load {
    inset: 72px 14px 14px;
  }

  .mobile-controls {
    display: block;
    pointer-events: none;
  }

  .mobile-stick {
    bottom: max(12px, env(safe-area-inset-bottom));
    left: max(14px, env(safe-area-inset-left));
    width: 106px;
    height: 106px;
  }

  .mobile-look-pad {
    right: max(14px, env(safe-area-inset-right));
    bottom: max(14px, env(safe-area-inset-bottom));
    width: 118px;
    height: 96px;
  }
}

@media (max-width: 620px) {
  section[id] {
    scroll-margin-top: 116px;
  }

  .site-nav {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    align-items: start;
    min-height: auto;
    padding: 9px 0 10px;
  }

  .brand {
    min-height: 30px;
  }

  .brand-lockup {
    width: 152px;
    max-height: 30px;
  }

  .nav-links {
    column-gap: 14px;
    row-gap: 7px;
    flex-wrap: wrap;
    width: 100%;
    max-width: 100%;
    padding-bottom: 0;
  }

  .nav-links a {
    font-size: 11px;
    white-space: nowrap;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .featured-visual {
    min-height: 360px;
  }

  .display-case {
    width: 170px;
  }

  .product-visual {
    min-height: 300px;
  }

  .product-meta {
    grid-template-columns: 1fr;
  }

  .solution-grid,
  .package-grid,
  .contact-route-grid,
  .museum-pilot-grid,
  .museum-readiness-grid,
  .museum-readiness-flow,
  .engagement-grid,
  .review-system-points article,
  .industry-grid,
  .process-list,
  .partner-grid,
  .technology-grid,
  .scene-proof-strip,
  .scene-detail-grid {
    grid-template-columns: 1fr;
  }

  .review-system {
    margin-top: 78px;
    padding: 56px 0;
  }

  .review-system-points p {
    grid-column: auto;
  }

  .home-hero {
    min-height: auto;
    padding: 42px 0 28px;
  }

  .home-hero h1 {
    font-size: clamp(38px, 11.4vw, 48px);
  }

  .hero-note {
    font-size: 13px;
  }

  .hero-live-link {
    display: none;
  }

  .hero-stage-shell {
    min-height: 420px;
  }

  .stage-caption {
    display: grid;
  }

  .technology {
    margin-top: 78px;
    padding: 22px;
  }

  .museum-visual {
    min-height: 360px;
  }

  .museum-visual-caption {
    display: grid;
    padding: 18px;
  }

  .museum-strip div,
  .museum-system-grid article,
  .museum-product-grid article,
  .museum-delivery-grid article,
  .museum-pilot-grid article,
  .museum-readiness-grid article,
  .museum-route-list li {
    min-height: auto;
    padding: 18px;
  }

  .museum-readiness {
    margin-top: 78px;
  }

  .museum-readiness-flow span {
    min-height: 52px;
    justify-content: flex-start;
    text-align: left;
  }

  .museum-build {
    padding: 22px;
  }

  .scene-actions {
    flex-direction: column;
  }

  .contact-actions {
    width: 100%;
    flex-direction: column;
  }

  .scene-viewer,
  .scene-viewer iframe {
    min-height: 520px;
    height: 520px;
  }

  .scene-viewer-preview {
    min-height: 520px;
  }

  .viewer-preview-copy .button {
    width: 100%;
  }

  .live-nav {
    right: 12px;
    left: 12px;
  }

  .live-nav .brand-lockup {
    width: 152px;
  }

  .live-nav-meta {
    display: grid;
    gap: 4px;
  }

  .site-footer,
  .site-footer nav {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
