:root {
  --bg: #070808;
  --bg-elevated: #0e1112;
  --bg-panel: rgba(14, 17, 18, 0.84);
  --bg-panel-strong: rgba(14, 17, 18, 0.96);
  --paper: #f2efe7;
  --paper-soft: #ded9ce;
  --paper-line: rgba(7, 8, 8, 0.14);
  --text: #f2efe7;
  --text-soft: #c9c8c2;
  --text-muted: #8ea0a6;
  --ink: #070808;
  --ink-soft: #3f474a;
  --ink-muted: #69767a;
  --accent: #73bdd9;
  --accent-soft: rgba(115, 189, 217, 0.1);
  --line: rgba(242, 239, 231, 0.14);
  --line-strong: rgba(242, 239, 231, 0.24);
  --shadow-soft: 0 24px 70px rgba(0, 0, 0, 0.34);
  --shadow-card: 0 20px 58px rgba(0, 0, 0, 0.22);
  --shadow-paper: 0 22px 56px rgba(7, 8, 8, 0.11);
  --radius-shell: 10px;
  --radius-core: 6px;
  --radius-small: 4px;
  --container: 1240px;
  --nav-h: 64px;
  --pad: clamp(20px, 4vw, 56px);
  --section-gap: clamp(88px, 12vw, 152px);
  --display: "Instrument Sans", "Manrope", "Helvetica Neue", Arial, sans-serif;
  --body: "Instrument Sans", "Manrope", "Helvetica Neue", Arial, sans-serif;
  --mono: "IBM Plex Mono", "SFMono-Regular", ui-monospace, monospace;
  --ease-standard: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-swift: cubic-bezier(0.32, 0.72, 0, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: rgba(115, 189, 217, 0.4) transparent;
}

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

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at top right, rgba(115, 189, 217, 0.075), transparent 30%),
    linear-gradient(90deg, rgba(242, 239, 231, 0.025) 1px, transparent 1px),
    linear-gradient(180deg, rgba(242, 239, 231, 0.018) 1px, transparent 1px),
    var(--bg);
  background-size: auto, 72px 72px, 72px 72px, auto;
  color: var(--text);
  font-family: var(--body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

@supports (overflow: clip) {
  html,
  body {
    overflow-x: clip;
  }
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: 0.14;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2' seed='9'/><feColorMatrix values='0 0 0 0 0.95 0 0 0 0 0.88 0 0 0 0 0.78 0 0 0 0.55 0'/></filter><rect width='200' height='200' filter='url(%23n)'/></svg>");
  mix-blend-mode: overlay;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  background:
    linear-gradient(to bottom, rgba(7, 8, 8, 0.18), rgba(7, 8, 8, 0.82)),
    linear-gradient(90deg, transparent 0, transparent calc(100% - 1px), rgba(242, 239, 231, 0.06) calc(100% - 1px));
  background-size: auto, min(100vw, var(--container)) 100%;
  background-position: center top;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  border: 0;
  cursor: pointer;
}

::selection {
  background: var(--accent);
  color: var(--text);
}

.skip-link {
  position: absolute;
  left: 16px;
  top: 16px;
  z-index: 90;
  padding: 10px 14px;
  border-radius: var(--radius-small);
  background: var(--paper);
  color: var(--ink);
  transform: translateY(-140%);
  transition: transform 320ms var(--ease-standard);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 60;
  pointer-events: none;
  height: var(--nav-h);
}

.nav-shell {
  pointer-events: auto;
  width: 100%;
  margin: 0;
  min-height: var(--nav-h);
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 48px;
  border-radius: 0;
  border-bottom: 1px solid transparent;
  background: linear-gradient(to bottom, rgba(7, 8, 8, 0.88) 0%, rgba(7, 8, 8, 0) 100%);
  transition:
    background 360ms var(--ease-standard),
    border-color 360ms var(--ease-standard),
    transform 360ms var(--ease-standard),
    box-shadow 360ms var(--ease-standard),
    backdrop-filter 360ms var(--ease-standard);
}

.site-header.is-scrolled .nav-shell {
  background: rgba(7, 8, 8, 0.9);
  border-color: rgba(242, 239, 231, 0.1);
  box-shadow: none;
  backdrop-filter: blur(14px) saturate(140%);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.brand-logo {
  width: 156px;
  height: auto;
}

.brand img:not(.brand-logo),
.brand svg {
  width: 102px;
  height: auto;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand-tag {
  font-family: var(--body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--text-soft);
  text-transform: uppercase;
}

.nav-links {
  display: inline-flex;
  align-items: center;
  gap: 32px;
  justify-content: center;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
}

.nav-links a {
  position: relative;
  padding: 6px 0;
  border-radius: 0;
  font-family: var(--body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--text-soft);
  text-transform: uppercase;
  transition:
    color 260ms var(--ease-standard),
    background 260ms var(--ease-standard),
    transform 260ms var(--ease-standard);
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--text);
  outline: none;
}

.nav-links a.active {
  color: var(--text);
}

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

.nav-links a:hover::after,
.nav-links a:focus-visible::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-actions .button-secondary {
  display: none;
}

.nav-actions .button-primary {
  min-height: auto;
  padding: 10px 18px 10px 14px;
  border-radius: var(--radius-small);
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--text);
  box-shadow: none;
  gap: 10px;
}

.nav-actions .button-primary::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 1px solid currentColor;
  flex-shrink: 0;
  transition:
    background 320ms var(--ease-standard),
    transform 320ms var(--ease-standard);
}

.nav-actions .button-primary .button-icon {
  width: auto;
  height: auto;
  border-radius: 0;
  background: none;
  font-size: 12px;
}

.nav-actions .button-primary:hover,
.nav-actions .button-primary:focus-visible {
  background: rgba(115, 189, 217, 0.12);
  color: var(--text);
}

.nav-actions .button-primary:hover::before,
.nav-actions .button-primary:focus-visible::before {
  background: currentColor;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-small);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  color: var(--text);
  position: relative;
}

.nav-toggle span {
  position: absolute;
  left: 15px;
  width: 18px;
  height: 1px;
  background: currentColor;
  transition: transform 320ms var(--ease-standard), opacity 320ms var(--ease-standard);
}

.nav-toggle span:nth-child(1) {
  top: 18px;
}

.nav-toggle span:nth-child(2) {
  top: 24px;
}

.nav-toggle span:nth-child(3) {
  top: 30px;
}

.menu-open .nav-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.menu-open .nav-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.nav-panel {
  display: none;
}

.button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 54px;
  padding: 8px 10px 8px 22px;
  border-radius: var(--radius-small);
  font-family: var(--body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition:
    transform 320ms var(--ease-standard),
    background 320ms var(--ease-standard),
    border-color 320ms var(--ease-standard),
    color 320ms var(--ease-standard);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.button:active {
  transform: scale(0.985);
}

.button-icon {
  width: 34px;
  height: 34px;
  border-radius: 2px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition:
    transform 320ms var(--ease-standard),
    background 320ms var(--ease-standard),
    color 320ms var(--ease-standard);
}

.button:hover .button-icon,
.button:focus-visible .button-icon {
  transform: translate(2px, -1px);
}

.button-primary {
  border: 1px solid rgba(242, 239, 231, 0.28);
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.18);
}

.button-primary .button-icon {
  background: rgba(7, 8, 8, 0.08);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #ffffff;
}

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: var(--text);
  background: rgba(255, 255, 255, 0.035);
}

.button-secondary .button-icon {
  background: rgba(255, 255, 255, 0.05);
}

.button-ghost {
  padding-inline: 0;
  min-height: auto;
  color: var(--text-soft);
}

.button-ghost .button-icon {
  width: 30px;
  height: 30px;
  background: rgba(255, 255, 255, 0.05);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  color: var(--text);
}

.home-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  overflow: hidden;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.home-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  clip-path: inset(49% 0 49% 0);
  animation: home-hero-slit-open 1800ms var(--ease-swift) 180ms forwards;
  will-change: clip-path;
}

.home-hero-image,
.home-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 110%;
  object-fit: cover;
  object-position: center 58%;
  transform: scale(1.12);
  animation:
    home-hero-settle 3200ms var(--ease-swift) 180ms forwards,
    home-hero-breath 22s ease-in-out 4s infinite alternate;
  will-change: transform;
}

.home-hero-video {
  z-index: 1;
  display: none;
}

@media (min-width: 1024px) and (prefers-reduced-motion: no-preference) {
  .home-hero-video {
    display: block;
  }
}

.home-hero-aperture,
.home-hero-beam,
.home-hero-scrim {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.home-hero-aperture {
  z-index: 2;
}

.home-hero-aperture::before,
.home-hero-aperture::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--accent);
  box-shadow: 0 0 16px rgba(115, 189, 217, 0.42);
  opacity: 0;
  animation: home-hero-aperture-top 2200ms var(--ease-swift) 180ms forwards;
}

.home-hero-aperture::after {
  animation-name: home-hero-aperture-bottom;
}

.home-hero-beam {
  z-index: 2;
  overflow: hidden;
  opacity: 0;
  animation: home-hero-fade 900ms var(--ease-standard) 2400ms forwards;
}

.home-hero-beam::before {
  content: "";
  position: absolute;
  top: 61%;
  left: -35%;
  width: 55%;
  height: 2px;
  background:
    linear-gradient(
      to right,
      transparent 0%,
      rgba(115, 189, 217, 0) 15%,
      rgba(174, 222, 238, 0.75) 50%,
      rgba(115, 189, 217, 0) 85%,
      transparent 100%
    );
  filter: blur(0.6px);
  box-shadow:
    0 0 14px rgba(115, 189, 217, 0.55),
    0 0 34px rgba(115, 189, 217, 0.25);
  animation: home-hero-beam-sweep 13s ease-in-out 3s infinite;
  will-change: transform, opacity;
}

.home-hero-scrim {
  z-index: 1;
  background:
    linear-gradient(to top, rgba(7, 8, 8, 0.92) 0%, rgba(7, 8, 8, 0.32) 38%, rgba(7, 8, 8, 0.16) 100%),
    radial-gradient(circle at 82% 15%, rgba(115, 189, 217, 0.08), transparent 24%),
    radial-gradient(circle at 15% 18%, rgba(255, 255, 255, 0.05), transparent 18%);
}

.home-hero-meta {
  position: absolute;
  top: calc(var(--nav-h) + 24px);
  left: 0;
  right: 0;
  z-index: 3;
  width: min(100%, calc(var(--container) + (var(--pad) * 2)));
  margin: 0 auto;
  padding: 0 var(--pad);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  color: var(--text-soft);
  font-family: var(--body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.65;
  opacity: 0;
  animation: home-hero-fade 1000ms var(--ease-standard) 1200ms forwards;
}

.home-hero-meta-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.home-hero-meta-group b {
  color: var(--text);
  font-weight: 600;
}

.home-hero-meta-group--right {
  text-align: right;
}

.home-hero-meta-group--right b {
  color: var(--accent);
}

.home-hero-content {
  position: relative;
  z-index: 3;
  width: min(100%, calc(var(--container) + (var(--pad) * 2)));
  margin: 0 auto;
  padding: 0 var(--pad) 9vh;
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(280px, 0.78fr);
  gap: clamp(36px, 6vw, 84px);
  align-items: end;
}

.home-hero-copy {
  max-width: 760px;
}

.home-hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 30px;
  opacity: 0;
  animation: home-hero-fade 1000ms var(--ease-standard) 900ms forwards;
}

.home-hero-eyebrow-mark {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  box-shadow: 0 0 0 4px rgba(115, 189, 217, 0.08);
  position: relative;
}

.home-hero-eyebrow-mark::after {
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: 999px;
  background: var(--accent);
}

.home-hero-eyebrow i {
  display: block;
  width: 36px;
  height: 1px;
  background: var(--accent);
}

.home-hero-eyebrow span:last-child {
  color: var(--accent);
  font-family: var(--body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.home-hero-title {
  margin: 0;
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(72px, 11vw, 184px);
  line-height: 0.88;
  letter-spacing: 0;
  color: var(--text);
  overflow: hidden;
}

.home-hero-title--lockup {
  max-width: min(70vw, 620px);
  line-height: 1;
  opacity: 0;
  animation: home-hero-fade 1000ms var(--ease-standard) 540ms forwards;
  overflow: visible;
}

.brand-lockup {
  width: min(100%, 620px);
  height: auto;
}

.home-hero-title .word {
  display: inline-block;
  overflow: hidden;
}

.home-hero-title .word span {
  display: inline-block;
  transform: translateY(110%);
  animation: home-hero-title-rise 1300ms var(--ease-swift) forwards;
}

.home-hero-title .word:nth-child(1) span {
  animation-delay: 500ms;
}

.home-hero-title .word:nth-child(2) span {
  animation-delay: 720ms;
}

.home-hero-title em {
  color: var(--accent);
  font-style: normal;
  font-weight: 600;
}

.home-hero-tag {
  max-width: 28ch;
  margin: 34px 0 0;
  color: var(--text);
  font-family: var(--body);
  font-size: clamp(20px, 2.15vw, 30px);
  font-weight: 500;
  line-height: 1.34;
  letter-spacing: 0;
  opacity: 0;
  animation: home-hero-fade 1100ms var(--ease-standard) 1400ms forwards;
  text-shadow: 0 1px 24px rgba(0, 0, 0, 0.72);
}

.home-hero-tag em {
  color: var(--text);
  font-style: normal;
  font-weight: 600;
}

.home-hero-actions {
  margin-top: 30px;
  opacity: 0;
  animation: home-hero-fade 1100ms var(--ease-standard) 1600ms forwards;
}

.home-hero-actions .button-primary {
  border-color: rgba(242, 239, 231, 0.24);
  background: rgba(7, 8, 8, 0.72);
  color: var(--text);
  backdrop-filter: blur(12px);
}

.home-hero-actions .button-primary .button-icon {
  background: rgba(242, 239, 231, 0.08);
}

.home-hero-actions .button-secondary {
  background: rgba(7, 8, 8, 0.42);
  backdrop-filter: blur(12px);
}

.home-hero-stats {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-bottom: 6px;
  opacity: 0;
  animation: home-hero-fade 1100ms var(--ease-standard) 1600ms forwards;
}

.technical-seal {
  width: min(100%, 260px);
  height: auto;
}

.technical-seal--hero {
  align-self: flex-end;
  margin-bottom: 22px;
  opacity: 0.92;
}

.technical-seal--page {
  margin: -6px 0 2px;
  opacity: 0.9;
}

.technical-seal--section,
.technical-seal--inline {
  margin-top: 4px;
  opacity: 0.92;
}

.home-hero-stat {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: baseline;
  padding: 20px 0;
  border-bottom: 1px solid rgba(237, 229, 212, 0.14);
}

.home-hero-stat:last-child {
  border-bottom: 0;
}

.home-hero-stat-value {
  margin: 0;
  color: var(--text);
  font-family: var(--display);
  font-size: clamp(40px, 4vw, 54px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
  font-variant-numeric: tabular-nums lining-nums;
}

.home-hero-stat-value small {
  margin-left: 6px;
  color: var(--text-soft);
  font-family: var(--body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.home-hero-stat-label {
  color: var(--text-soft);
  font-family: var(--body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-align: right;
  line-height: 1.52;
}

.home-hero-bottom {
  position: relative;
  z-index: 3;
  width: min(100%, calc(var(--container) + (var(--pad) * 2)));
  margin: 0 auto;
  padding: 18px var(--pad) 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  border-top: 1px solid var(--line);
  opacity: 0;
  animation: home-hero-fade 1000ms var(--ease-standard) 1800ms forwards;
}

.home-hero-scroll {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.home-hero-scroll-text,
.home-hero-location {
  color: var(--text-soft);
  font-family: var(--body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.home-hero-scroll-line {
  width: 56px;
  height: 1px;
  background: var(--text-muted);
  position: relative;
  overflow: hidden;
}

.home-hero-scroll-line::after {
  content: "";
  position: absolute;
  top: 0;
  left: -30%;
  width: 30%;
  height: 100%;
  background: var(--accent);
  animation: home-hero-scroll-line 2200ms var(--ease-standard) infinite;
}

.home-hero-location b {
  color: var(--text-soft);
  font-weight: 500;
}

.home-detail {
  position: relative;
  margin: 0 0 var(--section-gap);
}

.home-detail-lead {
  width: min(100%, calc(var(--container) + (var(--pad) * 2)));
  margin: 0 auto;
  padding: 132px var(--pad) 72px;
  display: grid;
  grid-template-columns: 1fr 1.28fr;
  gap: clamp(36px, 6vw, 80px);
  align-items: end;
}

.home-detail-intro {
  padding-bottom: 10px;
}

.home-detail-intro h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(42px, 5.2vw, 82px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
  text-wrap: balance;
}

.home-detail-intro p {
  max-width: 430px;
  margin: 28px 0 0;
  color: var(--text-soft);
  font-size: 16px;
  line-height: 1.72;
}

.home-detail-intro b {
  color: var(--text);
  font-weight: 500;
}

.home-detail-stage {
  position: relative;
  height: min(84vh, 860px);
  overflow: hidden;
  background: var(--bg-elevated);
}

.home-detail-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 110%;
  object-fit: cover;
  object-position: center 42%;
  will-change: transform;
}

.home-detail-vignette {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 70% at 50% 50%, transparent 0%, transparent 40%, rgba(6, 6, 6, 0.6) 90%),
    linear-gradient(to top, rgba(6, 6, 6, 0.56) 0%, transparent 30%);
  pointer-events: none;
}

.vehicle-annot {
  --annot-line: 92px;
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--text);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 900ms var(--ease-standard),
    transform 900ms var(--ease-standard);
}

.vehicle-annot.is-visible {
  opacity: 1;
  transform: none;
}

.vehicle-annot--right {
  flex-direction: row-reverse;
  text-align: right;
}

.vehicle-annot__dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  position: relative;
  background: transparent;
  box-shadow: 0 0 0 4px rgba(115, 189, 217, 0.08);
  flex-shrink: 0;
}

.vehicle-annot__dot::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 999px;
  background: var(--accent);
}

.vehicle-annot.is-visible .vehicle-annot__dot {
  animation: vehicle-annot-pulse 1400ms var(--ease-swift) 1;
}

.vehicle-annot__line {
  width: var(--annot-line);
  height: 1px;
  background: rgba(237, 229, 212, 0.44);
  flex-shrink: 0;
}

.vehicle-annot__n {
  color: var(--accent);
  font-weight: 500;
}

.vehicle-annot__txt {
  color: var(--text);
  letter-spacing: 0.08em;
}

.home-detail-mobile-notes {
  display: none;
  width: min(100%, calc(var(--container) + (var(--pad) * 2)));
  margin: 16px auto 0;
  padding: 0 var(--pad);
  gap: 10px;
  flex-wrap: wrap;
}

.home-detail-foot {
  width: min(100%, calc(var(--container) + (var(--pad) * 2)));
  margin: 0 auto;
  padding: 36px var(--pad) 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
  border-top: 1px solid var(--line);
}

.home-detail-foot-item {
  padding-top: 24px;
}

.home-detail-foot-item span {
  display: block;
  margin-bottom: 12px;
  color: var(--accent);
  font-family: var(--body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.home-detail-foot-item h3 {
  margin: 0 0 8px;
  color: var(--text);
  font-family: var(--display);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.25;
}

.home-detail-foot-item p {
  margin: 0;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.68;
}

@keyframes home-hero-slit-open {
  0% {
    clip-path: inset(49% 0 49% 0);
  }

  100% {
    clip-path: inset(0 0 0 0);
  }
}

@keyframes home-hero-settle {
  to {
    transform: scale(1) translateY(0);
  }
}

@keyframes home-hero-breath {
  from {
    transform: scale(1) translateY(0);
  }

  to {
    transform: scale(1.025) translateY(-6px);
  }
}

@keyframes home-hero-aperture-top {
  0% {
    top: 50%;
    opacity: 0;
  }

  15% {
    opacity: 1;
  }

  100% {
    top: 0%;
    opacity: 0;
  }
}

@keyframes home-hero-aperture-bottom {
  0% {
    top: 50%;
    opacity: 0;
  }

  15% {
    opacity: 1;
  }

  100% {
    top: 100%;
    opacity: 0;
  }
}

@keyframes home-hero-beam-sweep {
  0% {
    transform: translateX(0);
    opacity: 0;
  }

  6% {
    opacity: 0.96;
  }

  14% {
    transform: translateX(190%);
    opacity: 0;
  }

  100% {
    transform: translateX(190%);
    opacity: 0;
  }
}

@keyframes home-hero-title-rise {
  to {
    transform: translateY(0);
  }
}

@keyframes home-hero-fade {
  from {
    opacity: 0;
    transform: translateY(6px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes home-hero-scroll-line {
  to {
    left: 130%;
  }
}

@keyframes vehicle-annot-pulse {
  0% {
    box-shadow: 0 0 0 4px rgba(115, 189, 217, 0.08);
  }

  60% {
    box-shadow: 0 0 0 10px rgba(115, 189, 217, 0);
  }

  100% {
    box-shadow: 0 0 0 4px rgba(115, 189, 217, 0.08);
  }
}

.page-shell {
  position: relative;
}

.page-hero {
  position: relative;
  padding: clamp(128px, 18vw, 180px) var(--pad) 64px;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(to bottom, rgba(7, 8, 8, 0.18), rgba(7, 8, 8, 0.78)),
    radial-gradient(circle at 84% 8%, rgba(115, 189, 217, 0.075), transparent 25%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  width: min(100%, var(--container));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(28px, 4vw, 72px);
  align-items: center;
}

.hero-copy {
  display: grid;
  gap: 24px;
}

.hero-kicker-line {
  margin: 0;
  color: var(--accent);
  font-family: var(--body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.hero-intro {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  padding: 7px 10px;
  border-radius: var(--radius-small);
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-family: var(--body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--text-soft);
  text-transform: uppercase;
}

.hero-intro::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  box-shadow: 0 0 0 4px rgba(115, 189, 217, 0.08);
}

.hero-title {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(46px, 6.4vw, 88px);
  font-weight: 600;
  line-height: 0.96;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero-title--product {
  max-width: 10ch;
  font-size: clamp(56px, 8.2vw, 104px);
  line-height: 0.92;
}

.hero-title em,
.section-title em,
.lead-copy em,
.metric-value em,
.cta-title em,
.quote-line em,
.process-title em,
.story-title em,
.panel-title em,
.home-detail-intro h2 em {
  color: inherit;
  font-style: normal;
}

.hero-lede,
.section-copy,
.story-copy,
.panel-copy,
.lead-copy {
  max-width: 60ch;
  margin: 0;
  color: var(--text-soft);
  font-size: 18px;
  line-height: 1.72;
}

.hero-lede {
  max-width: 48ch;
}

.hero-actions,
.stack-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-note {
  display: grid;
  gap: 8px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
}

.hero-note span,
.meta-line,
.eyebrow,
.micro-label {
  font-family: var(--body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.hero-note span {
  color: var(--text-soft);
}

.hero-note strong {
  color: var(--text);
  font-weight: 500;
}

.frame {
  padding: 10px;
  border-radius: var(--radius-shell);
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(242, 239, 231, 0.1);
  box-shadow: var(--shadow-soft);
}

.frame-core {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-core);
  background: linear-gradient(180deg, rgba(14, 17, 18, 0.95), rgba(7, 8, 8, 0.98));
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.08);
}

.visual-stage {
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(90deg, rgba(242, 239, 231, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(242, 239, 231, 0.025) 1px, transparent 1px),
    radial-gradient(circle at 54% 54%, rgba(255, 255, 255, 0.06), transparent 30%),
    radial-gradient(circle at 78% 18%, rgba(115, 189, 217, 0.075), transparent 28%),
    linear-gradient(180deg, rgba(14, 17, 18, 0.96), rgba(7, 8, 8, 0.98));
  background-size: 42px 42px, 42px 42px, auto, auto, auto;
}

.hero-visual {
  aspect-ratio: 5 / 3;
  min-height: clamp(300px, 44vw, 560px);
}

.hero-visual img {
  width: 100%;
  height: 100%;
}

.hero-stage {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px;
}

.hero-stage-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 76% 18%, rgba(115, 189, 217, 0.18), transparent 26%),
    radial-gradient(circle at 50% 78%, rgba(255, 255, 255, 0.06), transparent 28%);
  pointer-events: none;
}

.hero-car {
  position: relative;
  z-index: 1;
  transform: translateX(28px) scale(1.08);
  transform-origin: center center;
}

.hero-stage-card {
  position: absolute;
  z-index: 3;
  min-width: 164px;
  padding: 14px 16px;
  border-radius: var(--radius-core);
  background: rgba(9, 9, 9, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(12px);
  display: grid;
  gap: 6px;
}

.hero-stage-card--top {
  top: 26px;
  right: 26px;
}

.hero-stage-card--bottom {
  right: 26px;
  bottom: 28px;
}

.hero-stage-card-label {
  color: var(--text-soft);
  font-family: var(--body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.hero-stage-card strong {
  color: var(--text);
  font-family: var(--display);
  font-size: 34px;
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: 0;
  font-variant-numeric: tabular-nums lining-nums;
}

.hero-stage-inset {
  position: absolute;
  left: 26px;
  bottom: 26px;
  z-index: 3;
  width: 232px;
  display: grid;
  gap: 10px;
}

.hero-stage-inset-core {
  overflow: hidden;
  border-radius: var(--radius-core);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(10, 10, 10, 0.92);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.24);
  height: 150px;
}

.hero-stage-inset-label {
  color: var(--text-soft);
  font-family: var(--body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1.6;
}

.visual-contain {
  object-fit: contain;
  object-position: center center;
  padding: clamp(16px, 2.6vw, 30px);
}

.visual-cover {
  object-fit: cover;
  object-position: center center;
}

.hero-caption,
.media-caption {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px 0;
  color: var(--text-soft);
  font-family: var(--body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.hero-caption strong,
.media-caption strong {
  color: var(--text-soft);
  font-weight: 500;
}

.section {
  padding: 0 var(--pad);
  margin: 0 0 var(--section-gap);
}

.section-inner {
  width: min(100%, var(--container));
  margin: 0 auto;
}

.section-head {
  display: grid;
  gap: 14px;
  margin-bottom: clamp(28px, 4vw, 42px);
}

.section-kicker {
  font-family: var(--body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--accent);
}

.section-title,
.story-title,
.panel-title,
.cta-title,
.process-title {
  margin: 0;
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(32px, 4.6vw, 60px);
  line-height: 1.02;
  letter-spacing: 0;
  text-wrap: balance;
}

.section-title.small,
.story-title.small,
.panel-title.small,
.process-title.small {
  font-size: clamp(28px, 3.3vw, 42px);
}

.surface-paper .section-title,
.surface-paper .story-title,
.surface-paper .panel-title,
.surface-paper .cta-title,
.surface-paper .process-title,
.surface-paper .lead-copy,
.surface-paper .story-copy,
.surface-paper .section-copy,
.surface-paper .panel-copy {
  color: var(--ink);
}

.surface-paper {
  position: relative;
}

.surface-paper .section-inner {
  position: relative;
  padding: clamp(28px, 4vw, 46px);
  border-radius: var(--radius-shell);
  background:
    linear-gradient(90deg, rgba(7, 8, 8, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(7, 8, 8, 0.025) 1px, transparent 1px),
    linear-gradient(180deg, rgba(248, 246, 240, 0.985), rgba(235, 232, 224, 0.975));
  background-size: 56px 56px, 56px 56px, auto;
  border: 1px solid var(--paper-line);
  box-shadow: var(--shadow-paper);
}

.surface-paper .frame {
  background: rgba(255, 255, 255, 0.62);
  border-color: rgba(25, 20, 12, 0.08);
  box-shadow: var(--shadow-paper);
}

.surface-paper .frame-core {
  background:
    radial-gradient(circle at top left, rgba(115, 189, 217, 0.055), transparent 30%),
    linear-gradient(180deg, rgba(255, 250, 241, 0.88), rgba(245, 236, 220, 0.96));
  color: var(--ink);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.45);
}

.surface-paper .hero-note span,
.surface-paper .meta-line,
.surface-paper .micro-label,
.surface-paper .card-copy,
.surface-paper .section-copy,
.surface-paper .story-copy,
.surface-paper .panel-copy {
  color: var(--ink-soft);
}

.surface-paper .button-secondary {
  color: var(--ink);
  border-color: rgba(25, 20, 12, 0.16);
  background: rgba(255, 255, 255, 0.58);
}

.surface-paper .button-secondary .button-icon {
  background: rgba(25, 20, 12, 0.08);
}

.surface-paper .button-primary {
  color: var(--text);
  border-color: rgba(7, 8, 8, 0.9);
  background: var(--ink);
}

.surface-paper .button-primary .button-icon {
  background: rgba(242, 239, 231, 0.1);
}

.surface-paper .button-primary:hover,
.surface-paper .button-primary:focus-visible {
  background: #141718;
}

.surface-paper .card-shell,
.surface-paper .mini-panel,
.surface-paper .compare-row,
.surface-paper .spec-card,
.surface-paper .timeline-card,
.surface-paper .trust-card,
.surface-paper .quote-panel {
  background: rgba(255, 255, 255, 0.68);
  border-color: rgba(25, 20, 12, 0.12);
  box-shadow: none;
}

.surface-paper .card-title,
.surface-paper .metric-value,
.surface-paper .compare-cell,
.surface-paper .spec-value,
.surface-paper .timeline-step,
.surface-paper .trust-card strong,
.surface-paper .detail-list strong {
  color: var(--ink);
}

.surface-paper .card-copy,
.surface-paper .metric-label,
.surface-paper .spec-note,
.surface-paper .compare-label,
.surface-paper .timeline-copy,
.surface-paper .trust-card p,
.surface-paper .detail-list span {
  color: var(--ink-soft);
}

.metric-grid,
.card-grid,
.trust-grid,
.timeline-grid,
.spec-grid,
.component-grid {
  display: grid;
  gap: 20px;
}

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

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

.trust-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.card-grid.cols-2,
.timeline-grid,
.component-grid.cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card-grid.cols-4,
.spec-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.metric-card,
.card-shell,
.mini-panel,
.compare-row,
.spec-card,
.timeline-card,
.trust-card,
.quote-panel,
.detail-card {
  border-radius: var(--radius-core);
  border: 1px solid rgba(242, 239, 231, 0.1);
  background: rgba(255, 255, 255, 0.025);
  box-shadow: var(--shadow-card);
}

.metric-card,
.card-shell,
.mini-panel,
.spec-card,
.timeline-card,
.trust-card,
.detail-card {
  padding: 24px;
}

.metric-card {
  display: grid;
  gap: 10px;
}

.metric-value {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: 0;
  font-variant-numeric: tabular-nums lining-nums;
}

.metric-value small {
  font-family: var(--body);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-soft);
  letter-spacing: 0.04em;
}

.metric-label,
.card-copy,
.spec-note,
.timeline-copy,
.trust-card p,
.detail-list span,
.quote-copy {
  margin: 0;
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.72;
}

.metric-label strong,
.card-copy strong,
.story-copy strong,
.section-copy strong,
.panel-copy strong,
.lead-copy strong {
  color: var(--text);
  font-weight: 600;
}

.surface-paper .metric-label strong,
.surface-paper .card-copy strong,
.surface-paper .story-copy strong,
.surface-paper .section-copy strong,
.surface-paper .panel-copy strong,
.surface-paper .lead-copy strong {
  color: var(--ink);
}

.card-title,
.spec-value,
.timeline-step,
.trust-card strong,
.detail-list strong {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0;
}

.card-shell {
  display: grid;
  gap: 12px;
}

.card-meta,
.spec-label,
.timeline-label,
.quote-label,
.table-meta,
.footer-meta {
  margin: 0;
  color: var(--text-muted);
  font-family: var(--body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.surface-paper .card-meta,
.surface-paper .spec-label,
.surface-paper .timeline-label,
.surface-paper .quote-label,
.surface-paper .table-meta,
.surface-paper .footer-meta {
  color: var(--ink-muted);
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: clamp(24px, 4vw, 54px);
  align-items: center;
}

.story-stack,
.panel-stack {
  display: grid;
  gap: 18px;
}

.photo-shell {
  padding: 10px;
  border-radius: var(--radius-shell);
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(242, 239, 231, 0.1);
  box-shadow: var(--shadow-soft);
}

.photo-core {
  overflow: hidden;
  border-radius: var(--radius-core);
  aspect-ratio: 16 / 10;
  min-height: 320px;
  background: rgba(10, 10, 10, 0.95);
}

.photo-core img {
  width: 100%;
  height: 100%;
}

.photo-core.visual-stage {
  background:
    linear-gradient(90deg, rgba(242, 239, 231, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(242, 239, 231, 0.025) 1px, transparent 1px),
    radial-gradient(circle at 52% 52%, rgba(255, 255, 255, 0.06), transparent 30%),
    radial-gradient(circle at 76% 18%, rgba(115, 189, 217, 0.075), transparent 28%),
    linear-gradient(180deg, rgba(14, 17, 18, 0.98), rgba(7, 8, 8, 0.98));
  background-size: 42px 42px, 42px 42px, auto, auto, auto;
}

.photo-tall .photo-core {
  aspect-ratio: 4 / 5;
  min-height: 520px;
}

.photo-wide .photo-core {
  aspect-ratio: 21 / 9;
  min-height: 360px;
}

.annotated-media {
  position: relative;
}

.hotspot-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hotspot {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  max-width: 240px;
  color: var(--text);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.7);
}

.hotspot-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  box-shadow: 0 0 0 4px rgba(115, 189, 217, 0.1);
  position: relative;
  flex-shrink: 0;
}

.hotspot-dot::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 999px;
  background: var(--accent);
}

.hotspot-line {
  width: 86px;
  height: 1px;
  background: rgba(255, 255, 255, 0.5);
  flex-shrink: 0;
}

.hotspot-copy {
  display: grid;
  gap: 4px;
}

.hotspot-copy b {
  color: var(--accent);
  font-weight: 500;
}

.hotspot-copy span {
  color: var(--text);
  font-size: 11px;
  letter-spacing: 0.08em;
}

.hotspot.is-right {
  flex-direction: row-reverse;
  text-align: right;
}

.hotspot.is-right .hotspot-line {
  background: rgba(255, 255, 255, 0.45);
}

.surface-paper .hotspot {
  color: var(--ink);
  text-shadow: 0 1px 16px rgba(255, 255, 255, 0.45);
}

.surface-paper .hotspot-line {
  background: rgba(25, 20, 12, 0.36);
}

.surface-paper .hotspot-copy span {
  color: var(--ink);
}

/* Override: hotspots posed on a dark visual-stage always stay light,
   even when the section uses .surface-paper (cream) as background. */
.surface-paper .visual-stage .hotspot,
.surface-paper .photo-core .hotspot {
  color: var(--text);
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.7);
}

.surface-paper .visual-stage .hotspot-line,
.surface-paper .photo-core .hotspot-line {
  background: rgba(255, 255, 255, 0.5);
}

.surface-paper .visual-stage .hotspot.is-right .hotspot-line,
.surface-paper .photo-core .hotspot.is-right .hotspot-line {
  background: rgba(255, 255, 255, 0.45);
}

.surface-paper .visual-stage .hotspot-copy span,
.surface-paper .photo-core .hotspot-copy span {
  color: var(--text);
}

.hotspot-list {
  display: none;
  gap: 10px;
  margin-top: 16px;
}

.hotspot-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: var(--radius-small);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-family: var(--body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--text-soft);
}

.surface-paper .hotspot-chip {
  background: rgba(25, 20, 12, 0.04);
  border-color: rgba(25, 20, 12, 0.1);
  color: var(--ink-soft);
}

.hotspot-chip::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  box-shadow: 0 0 0 4px rgba(115, 189, 217, 0.08);
}

.bullet-list,
.detail-list,
.inline-list,
.footer-links,
.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.bullet-list {
  display: grid;
  gap: 12px;
}

.bullet-list li,
.inline-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.bullet-list li::before,
.inline-list li::before,
.detail-list li::before {
  content: "";
  width: 9px;
  height: 9px;
  margin-top: 8px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  box-shadow: 0 0 0 4px rgba(115, 189, 217, 0.08);
  flex-shrink: 0;
}

.bullet-list span,
.inline-list span {
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.66;
}

.surface-paper .bullet-list span,
.surface-paper .inline-list span {
  color: var(--ink-soft);
}

.link-card {
  display: grid;
  gap: 14px;
  padding: 22px;
  border-radius: var(--radius-core);
  border: 1px solid rgba(242, 239, 231, 0.1);
  background: rgba(255, 255, 255, 0.025);
  transition:
    transform 320ms var(--ease-standard),
    border-color 320ms var(--ease-standard),
    background 320ms var(--ease-standard);
}

.link-card:hover,
.link-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(115, 189, 217, 0.26);
  background: rgba(255, 255, 255, 0.05);
  outline: none;
}

.link-card strong {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0;
}

.link-card span {
  color: var(--text-soft);
}

.surface-paper .link-card {
  border-color: rgba(25, 20, 12, 0.1);
  background: rgba(255, 255, 255, 0.45);
}

.surface-paper .link-card:hover,
.surface-paper .link-card:focus-visible {
  background: rgba(255, 255, 255, 0.65);
}

.surface-paper .link-card strong {
  color: var(--ink);
}

.surface-paper .link-card span {
  color: var(--ink-soft);
}

.quote-panel {
  padding: 28px;
  display: grid;
  gap: 16px;
}

.quote-line {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: 0;
}

.quote-copy {
  max-width: 56ch;
}

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

.flow-card {
  position: relative;
  padding: 22px;
  border-radius: var(--radius-core);
  border: 1px solid rgba(242, 239, 231, 0.1);
  background: rgba(255, 255, 255, 0.025);
  min-height: 220px;
  display: grid;
  align-content: start;
  gap: 12px;
}

.surface-paper .flow-card {
  border-color: rgba(25, 20, 12, 0.1);
  background: rgba(255, 255, 255, 0.42);
}

.flow-card::after {
  content: "";
  position: absolute;
  top: 34px;
  right: -9px;
  width: 18px;
  height: 1px;
  background: rgba(115, 189, 217, 0.4);
}

.flow-card:last-child::after {
  display: none;
}

.flow-step {
  color: var(--accent);
  font-family: var(--body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.flow-title {
  margin: 0;
  font-family: var(--display);
  font-size: 26px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.08;
}

.flow-copy {
  margin: 0;
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.66;
}

.surface-paper .flow-copy {
  color: var(--ink-soft);
}

.surface-paper .flow-title {
  color: var(--ink);
}

.component-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.component-card {
  display: grid;
  gap: 12px;
  padding: 22px;
  border-radius: var(--radius-core);
  border: 1px solid rgba(242, 239, 231, 0.1);
  background: rgba(255, 255, 255, 0.025);
}

.component-n {
  color: var(--accent);
  font-family: var(--body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.component-title {
  margin: 0;
  font-family: var(--display);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.08;
}

.component-copy {
  margin: 0;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.64;
}

.surface-paper .component-card {
  border-color: rgba(25, 20, 12, 0.1);
  background: rgba(255, 255, 255, 0.46);
}

.surface-paper .component-title {
  color: var(--ink);
}

/* Scroll-driven architecture sequence */
.scroll-arch {
  padding: 0 var(--pad);
  margin: 0 0 var(--section-gap);
}

.scroll-arch-head {
  margin-bottom: clamp(32px, 5vw, 56px);
}

.scroll-arch-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.scroll-arch-media {
  position: sticky;
  top: calc(var(--nav-h) + 24px);
  align-self: start;
}

.scroll-arch-frame {
  position: relative;
  aspect-ratio: 16 / 10;
  border-radius: var(--radius-core);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-soft);
}

.scroll-arch-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  padding: clamp(16px, 2.6vw, 30px);
  transition: filter 900ms var(--ease-standard);
}

.scroll-arch[data-arch-active] .scroll-arch-img {
  filter: brightness(0.94) contrast(1.04) saturate(1.02);
}

.sa-hotspot {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text-soft);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.4;
  transform: translateY(3px);
  transition:
    opacity 620ms var(--ease-standard),
    transform 620ms var(--ease-standard),
    color 620ms var(--ease-standard);
  pointer-events: none;
}

.sa-hotspot.is-active {
  opacity: 1;
  transform: translateY(0);
  color: var(--text);
}

.sa-hotspot--right {
  flex-direction: row-reverse;
}

.sa-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.05);
  transition:
    background 620ms var(--ease-standard),
    box-shadow 620ms var(--ease-standard),
    transform 620ms var(--ease-standard);
}

.sa-hotspot.is-active .sa-dot {
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(115, 189, 217, 0.18);
  transform: scale(1.08);
}

.sa-line {
  display: block;
  width: 56px;
  height: 1px;
  background: rgba(255, 255, 255, 0.16);
  opacity: 0;
  transition:
    background 620ms var(--ease-standard),
    opacity 620ms var(--ease-standard);
}

.sa-hotspot.is-active .sa-line {
  background: rgba(115, 189, 217, 0.56);
  opacity: 1;
}

.sa-label {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  white-space: nowrap;
  opacity: 0;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.78);
  transition: opacity 620ms var(--ease-standard);
}

.sa-hotspot.is-active .sa-label {
  opacity: 1;
}

.sa-label b {
  color: var(--accent);
  font-weight: 500;
}

.scroll-arch-counter {
  position: absolute;
  left: 22px;
  top: 22px;
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
  color: var(--text-soft);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.scroll-arch-counter [data-arch-counter] {
  color: var(--accent);
  font-size: 13px;
}

.scroll-arch-counter em {
  font-style: normal;
}

.scroll-arch-caption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 18px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--text-soft);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  pointer-events: none;
}

.scroll-arch-steps {
  list-style: none;
  margin: 0;
  padding: 18vh 0 24vh;
  display: grid;
  gap: clamp(34vh, 44vh, 52vh);
}

.sa-step {
  max-width: 460px;
  opacity: 0.52;
  transform: translateY(8px);
  transition:
    opacity 560ms var(--ease-standard),
    transform 560ms var(--ease-standard);
}

.sa-step.is-active {
  opacity: 1;
  transform: translateY(0);
}

.sa-step-n {
  margin: 0 0 14px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

.sa-step-title {
  margin: 0 0 16px;
  font-family: var(--display);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.1;
  color: var(--text);
}

.sa-step-title em {
  font-style: normal;
  font-weight: 600;
  color: var(--accent);
}

.sa-step-copy {
  margin: 0;
  color: var(--text-soft);
  font-size: 16px;
  line-height: 1.64;
}

@media (max-width: 1180px) {
  .scroll-arch-inner {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 36px;
  }

  .scroll-arch-steps {
    padding: 10vh 0 14vh;
    gap: 28vh;
  }
}

@media (max-width: 960px) {
  .scroll-arch-inner {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .scroll-arch-media {
    position: sticky;
    top: calc(var(--nav-h) + 8px);
    z-index: 2;
  }

  .scroll-arch-frame {
    aspect-ratio: 4 / 3;
    max-height: 46vh;
  }

  .scroll-arch-img {
    padding: clamp(10px, 2vw, 18px);
  }

  .scroll-arch-steps {
    padding: 4vh 0 6vh;
    gap: 18vh;
  }

  .sa-step {
    max-width: 100%;
  }

  .sa-step-title {
    font-size: clamp(22px, 5vw, 30px);
  }

  .sa-hotspot {
    font-size: 10px;
    letter-spacing: 0.1em;
    gap: 8px;
  }

  .sa-line {
    width: 28px;
  }

  .sa-label {
    padding: 4px 8px;
    background: rgba(11, 10, 8, 0.72);
    backdrop-filter: blur(4px);
    border-radius: var(--radius-small);
  }

  .scroll-arch-counter {
    left: 14px;
    top: 14px;
  }

  .scroll-arch-caption {
    display: none;
  }
}

@media (max-width: 560px) {
  .sa-step-title {
    font-size: 22px;
  }

  .sa-step-copy {
    font-size: 15px;
  }

  .scroll-arch-frame {
    aspect-ratio: 5 / 4;
    max-height: 42vh;
  }

  .scroll-arch-steps {
    gap: 14vh;
    padding: 3vh 0 4vh;
  }

  .sa-hotspot {
    font-size: 9px;
    gap: 6px;
  }

  .sa-line {
    width: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .scroll-arch-img,
  .sa-hotspot,
  .sa-step,
  .sa-dot,
  .sa-line {
    transition: none !important;
  }

  .sa-step {
    opacity: 1;
    transform: none;
  }

  .sa-hotspot {
    opacity: 1;
    transform: none;
    color: var(--text);
  }
}

/* Drive unit loop */
.drive-unit-section {
  margin: calc(var(--section-gap) * -0.22) 0 var(--section-gap);
  padding: 0 var(--pad);
}

.drive-unit-section__inner {
  width: min(100%, var(--container));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(30px, 5vw, 72px);
  align-items: center;
}

.drive-unit-copy {
  max-width: 560px;
}

.drive-unit-specs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin: clamp(24px, 3vw, 36px) 0 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.drive-unit-specs > div {
  padding: 18px 20px 18px 0;
  border-right: 1px solid var(--line);
}

.drive-unit-specs > div + div {
  padding-left: 20px;
}

.drive-unit-specs > div:last-child {
  border-right: 0;
}

.drive-unit-specs dt {
  margin: 0 0 7px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.drive-unit-specs dd {
  margin: 0;
  color: var(--text);
  font-family: var(--display);
  font-size: clamp(16px, 1.4vw, 19px);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.005em;
}

.drive-unit-media {
  position: relative;
  margin: 0;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-shell);
  background: #030404;
}

.drive-unit-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(242, 239, 231, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(242, 239, 231, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: 0.18;
}

.drive-unit-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(7, 8, 8, 0.04), rgba(7, 8, 8, 0.32)),
    radial-gradient(ellipse at 54% 48%, transparent 44%, rgba(7, 8, 8, 0.44) 100%);
}

.drive-unit-video,
.drive-unit-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.drive-unit-video {
  z-index: 1;
  display: none;
}

.drive-unit-poster {
  z-index: 0;
}

.drive-unit-caption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  z-index: 4;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--text-muted);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.drive-unit-caption span:first-child {
  color: var(--accent);
}

@media (min-width: 768px) and (prefers-reduced-motion: no-preference) {
  .drive-unit-video {
    display: block;
  }
}

@media (max-width: 960px) {
  .drive-unit-section {
    margin-top: calc(var(--section-gap) * -0.12);
  }

  .drive-unit-section__inner {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 560px) {
  .drive-unit-section {
    padding: 0 18px;
  }

  .drive-unit-specs {
    grid-template-columns: minmax(0, 1fr);
  }

  .drive-unit-specs > div,
  .drive-unit-specs > div + div {
    padding: 16px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .drive-unit-specs > div:last-child {
    border-bottom: 0;
  }

  .drive-unit-caption {
    left: 14px;
    right: 14px;
    bottom: 12px;
    font-size: 9px;
    letter-spacing: 0.12em;
  }
}

.surface-paper .component-copy {
  color: var(--ink-soft);
}

.compare-wrap {
  display: grid;
  gap: 14px;
}

.compare-head,
.compare-row {
  display: grid;
  grid-template-columns: 1.05fr repeat(3, minmax(0, 1fr));
  gap: 12px;
  align-items: stretch;
}

.compare-head {
  padding: 0 18px;
}

.compare-head .compare-cell {
  padding: 0 10px;
  color: var(--text-muted);
  font-family: var(--body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.compare-row {
  padding: 16px;
}

.compare-cell {
  border-radius: var(--radius-small);
  padding: 16px;
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
  display: grid;
  gap: 6px;
}

.compare-label {
  font-family: var(--body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--text-soft);
}

.compare-value {
  margin: 0;
  font-family: var(--display);
  font-size: 26px;
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: 0;
  font-variant-numeric: tabular-nums lining-nums;
}

.compare-copy {
  margin: 0;
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.62;
}

.surface-paper .compare-head .compare-cell,
.surface-paper .compare-label {
  color: var(--ink-muted);
}

.surface-paper .compare-cell {
  background: rgba(25, 20, 12, 0.03);
}

.surface-paper .compare-value {
  color: var(--ink);
}

.surface-paper .compare-copy {
  color: var(--ink-soft);
}

.spec-card {
  display: grid;
  gap: 8px;
}

.spec-value {
  font-size: clamp(28px, 3vw, 42px);
}

.spec-value small {
  font-family: var(--body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-soft);
}

.surface-paper .spec-value small {
  color: var(--ink-muted);
}

.detail-list {
  display: grid;
  gap: 14px;
}

.detail-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
}

.detail-list li::before {
  margin-top: 6px;
}

.detail-list strong,
.detail-list span {
  display: block;
}

.band-panel {
  padding: clamp(26px, 5vw, 42px);
  border-radius: var(--radius-shell);
  background:
    linear-gradient(90deg, rgba(115, 189, 217, 0.08), transparent 42%),
    rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(242, 239, 231, 0.1);
  box-shadow: var(--shadow-card);
}

.surface-paper .band-panel {
  background:
    linear-gradient(90deg, rgba(115, 189, 217, 0.055), transparent 42%),
    rgba(255, 255, 255, 0.52);
  border-color: rgba(25, 20, 12, 0.1);
  box-shadow: var(--shadow-paper);
}

.band-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: start;
}

.form-shell {
  padding: 10px;
  border-radius: var(--radius-shell);
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(242, 239, 231, 0.1);
  box-shadow: var(--shadow-soft);
}

.form-core {
  padding: 26px;
  border-radius: var(--radius-core);
  background: rgba(14, 17, 18, 0.96);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.08);
  display: grid;
  gap: 18px;
}

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

.field,
.field-full {
  display: grid;
  gap: 8px;
}

.field-full {
  grid-column: 1 / -1;
}

.field label,
.field-full label {
  color: var(--text-soft);
  font-family: var(--body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.field input,
.field select,
.field-full textarea {
  width: 100%;
  padding: 16px 18px;
  border-radius: var(--radius-small);
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  font-size: 15px;
  line-height: 1.55;
  transition:
    border-color 260ms var(--ease-standard),
    background 260ms var(--ease-standard);
}

.field input::placeholder,
.field-full textarea::placeholder {
  color: var(--text-muted);
  opacity: 1;
}

.field input:focus,
.field select:focus,
.field-full textarea:focus {
  outline: none;
  border-color: rgba(115, 189, 217, 0.5);
  background: rgba(255, 255, 255, 0.05);
}

.field select option {
  color: var(--text);
  background: var(--bg-elevated);
}

.field-full textarea {
  resize: vertical;
  min-height: 150px;
}

.consent-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.68;
}

.consent-row input {
  margin-top: 4px;
}

.consent-row a,
.footer-links a,
.text-link {
  color: var(--text);
  text-decoration: underline;
  text-decoration-color: rgba(115, 189, 217, 0.5);
  text-underline-offset: 3px;
}

.surface-paper .text-link,
.surface-paper .consent-row a,
.surface-paper .footer-links a {
  color: var(--ink);
  text-decoration-color: rgba(7, 8, 8, 0.42);
}

.text-link:hover,
.consent-row a:hover,
.footer-links a:hover {
  color: var(--accent);
}

.surface-paper .text-link:hover {
  color: var(--ink-soft);
  text-decoration-color: var(--ink);
}

.form-note {
  margin: 0;
  color: var(--text-soft);
  font-family: var(--body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.68;
}

.form-note.is-error {
  color: #f19268;
}

.direct-card {
  display: grid;
  gap: 16px;
  padding: 28px;
  border-radius: var(--radius-core);
  border: 1px solid rgba(242, 239, 231, 0.1);
  background: rgba(255, 255, 255, 0.025);
  box-shadow: var(--shadow-card);
}

.direct-card strong {
  font-family: var(--display);
  font-size: 30px;
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: 0;
}

.contact-list {
  display: grid;
  gap: 14px;
}

.contact-list li {
  display: grid;
  gap: 4px;
}

.contact-list span {
  color: var(--text-muted);
  font-family: var(--body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.contact-list a,
.contact-list strong {
  color: var(--text);
  font-size: 17px;
}

.timeline-grid {
  align-items: stretch;
}

.timeline-card {
  display: grid;
  gap: 10px;
}

.timeline-step {
  font-size: 34px;
}

.timeline-copy {
  font-size: 15px;
}

.privacy-panel {
  padding: 28px;
  border-radius: var(--radius-core);
  border: 1px solid rgba(242, 239, 231, 0.1);
  background: rgba(255, 255, 255, 0.025);
  box-shadow: var(--shadow-card);
  display: grid;
  gap: 12px;
}

.privacy-panel p {
  margin: 0;
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.7;
}

.privacy-panel strong {
  color: var(--text);
}

.site-footer {
  padding: 0 var(--pad) 36px;
}

.footer-shell {
  width: min(100%, var(--container));
  margin: 0 auto;
  padding: 28px;
  border-radius: var(--radius-shell);
  border: 1px solid rgba(242, 239, 231, 0.1);
  background: rgba(255, 255, 255, 0.025);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
  gap: 24px;
  align-items: start;
}

.footer-brand {
  display: grid;
  gap: 14px;
}

.footer-brand p {
  margin: 0;
  color: var(--text-soft);
  max-width: 44ch;
  line-height: 1.72;
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links a {
  width: fit-content;
  color: var(--text);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--text);
}

.footer-meta {
  display: grid;
  gap: 12px;
}

.footer-meta span,
.footer-meta a {
  color: var(--text-soft);
}

.footer-bottom {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  color: var(--text-soft);
  font-family: var(--body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
}

.footer-disclaimer {
  margin: 0;
  padding: 14px 0 0;
  color: var(--text-soft);
  opacity: 0.7;
  font-family: var(--body);
  font-size: 10.5px;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.6;
  font-style: italic;
  max-width: 78ch;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 840ms var(--ease-standard),
    transform 840ms var(--ease-standard);
}

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

.delay-1 {
  transition-delay: 120ms;
}

.delay-2 {
  transition-delay: 220ms;
}

.delay-3 {
  transition-delay: 320ms;
}

.utility-muted {
  color: var(--text-muted);
}

.utility-accent {
  color: var(--accent);
}

.spacer-compact {
  margin-bottom: 28px;
}

.spacer-large {
  margin-bottom: 52px;
}

@media (max-width: 1180px) {
  .home-hero-content,
  .home-detail-lead {
    grid-template-columns: 1fr;
  }

  .hero-grid,
  .split-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .card-grid.cols-4,
  .spec-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 960px) {
  .nav-shell {
    gap: 16px;
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav-panel {
    position: fixed;
    inset: 0;
    z-index: 58;
    display: grid;
    align-items: start;
    padding: 96px var(--pad) 24px;
    background: rgba(6, 6, 6, 0.88);
    backdrop-filter: blur(18px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
      opacity 320ms var(--ease-standard),
      visibility 320ms var(--ease-standard);
  }

  .menu-open .nav-panel {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav-panel-inner {
    width: min(100%, 560px);
    padding: 18px;
    border-radius: var(--radius-shell);
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(14, 14, 14, 0.94);
    box-shadow: var(--shadow-soft);
    display: grid;
    gap: 12px;
  }

  .nav-panel a {
    padding: 18px 16px;
    border-radius: var(--radius-small);
    border: 1px solid rgba(255, 255, 255, 0.06);
    font-family: var(--display);
    font-size: 30px;
    font-weight: 600;
    line-height: 1.04;
    letter-spacing: 0;
    background: rgba(255, 255, 255, 0.02);
    transform: translateY(18px);
    opacity: 0;
    transition:
      transform 520ms var(--ease-standard),
      opacity 520ms var(--ease-standard),
      border-color 260ms var(--ease-standard);
  }

  .menu-open .nav-panel a {
    transform: translateY(0);
    opacity: 1;
  }

  .menu-open .nav-panel a:nth-child(1) {
    transition-delay: 60ms;
  }

  .menu-open .nav-panel a:nth-child(2) {
    transition-delay: 120ms;
  }

  .menu-open .nav-panel a:nth-child(3) {
    transition-delay: 180ms;
  }

  .menu-open .nav-panel a:nth-child(4) {
    transition-delay: 240ms;
  }

  .nav-panel a:hover,
  .nav-panel a:focus-visible,
  .nav-panel a.active {
    border-color: rgba(115, 189, 217, 0.28);
    outline: none;
  }

  .metric-grid,
  .card-grid.cols-3,
  .card-grid.cols-2,
  .timeline-grid,
  .trust-grid,
  .flow-grid {
    grid-template-columns: 1fr;
  }

  .component-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .band-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .compare-head {
    display: none;
  }

  .hotspot-layer {
    display: none;
  }

  .hotspot-list {
    display: flex;
    flex-wrap: wrap;
  }

  .compare-row {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .compare-cell::before {
    display: none;
  }

  .surface-paper .compare-cell::before {
    display: none;
  }
}

@media (max-width: 720px) {
  .nav-shell {
    width: 100%;
    padding-inline: 16px;
    margin-top: 0;
  }

  .site-header::before,
  .site-header::after {
    display: none;
  }

  .site-header::before {
    top: 12px;
    right: 16px;
    width: 42px;
    height: 40px;
    border: 1px solid rgba(242, 239, 231, 0.18);
    border-radius: var(--radius-small);
    background: rgba(242, 239, 231, 0.06);
  }

  .site-header::after {
    top: 25px;
    right: 28px;
    width: 18px;
    height: 1px;
    background: var(--text);
    box-shadow: 0 6px 0 var(--text), 0 12px 0 var(--text);
  }

  .brand-tag,
  .nav-actions .button-secondary {
    display: none;
  }

  .brand-logo {
    width: 116px;
  }

  .brand::after {
    content: none;
  }

  .nav-actions {
    gap: 8px;
    margin-left: auto;
    position: relative;
    z-index: 2;
  }

  .nav-actions .button-primary {
    display: none;
  }

  .nav-toggle {
    display: none !important;
  }

  .nav-links {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    z-index: 59;
    display: flex;
    justify-content: flex-start;
    gap: 12px;
    overflow-x: auto;
    padding: 0 14px 12px;
    border-bottom: 1px solid rgba(242, 239, 231, 0.08);
    background: rgba(7, 8, 8, 0.88);
    backdrop-filter: blur(14px);
    scrollbar-width: none;
  }

  .nav-links::-webkit-scrollbar {
    display: none;
  }

  .nav-links a {
    flex: 0 0 auto;
    font-size: 10px;
    letter-spacing: 0.01em;
    white-space: nowrap;
  }

  .brand svg {
    width: 86px;
  }

  .home-hero-meta {
    display: none;
  }

  .home-hero {
    justify-content: flex-start;
  }

  .home-hero-media {
    clip-path: inset(0);
    animation: none;
  }

  .home-hero-image,
  .home-hero-video {
    transform: scale(1);
    animation: none;
  }

  .home-hero-aperture,
  .home-hero-beam {
    display: none;
  }

  .home-hero-title--lockup,
  .home-hero-tag,
  .home-hero-actions,
  .home-hero-bottom {
    opacity: 1;
    animation: none;
  }

  .home-hero-content {
    display: block;
    padding-top: 112px;
    padding-bottom: 0;
  }

  .home-hero-eyebrow {
    display: none;
  }

  .home-hero-title {
    max-width: 100%;
    font-size: clamp(46px, 13vw, 74px);
    line-height: 0.92;
  }

  .home-hero-title--lockup {
    width: calc(100vw - 40px);
    max-width: none;
  }

  .brand-lockup {
    width: 340px !important;
    max-width: calc(100vw - 40px) !important;
  }

  .technical-seal--hero {
    align-self: flex-start;
    margin-bottom: 14px;
  }

  .home-hero-tag {
    margin-top: 24px;
    max-width: 22ch;
    font-size: clamp(18px, 5.1vw, 24px);
    line-height: 1.36;
  }

  .home-hero-stats {
    display: none;
  }

  .home-hero-bottom {
    margin-top: auto;
    padding: 14px var(--pad) 20px;
    flex-direction: column;
    align-items: flex-start;
  }

  .home-hero-scroll-line {
    width: 42px;
  }

  .home-detail-lead {
    padding-top: 92px;
    padding-bottom: 40px;
    gap: 24px;
  }

  .home-detail-intro h2 {
    font-size: clamp(34px, 11vw, 52px);
  }

  .home-detail-intro p {
    margin-top: 18px;
    font-size: 16px;
  }

  .home-detail-stage {
    height: 56vh;
  }

  .home-detail-foot {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .page-hero {
    padding-top: 112px;
    padding-bottom: 40px;
  }

  .hero-title {
    font-size: clamp(38px, 11.5vw, 58px);
  }

  .hero-title--product {
    max-width: 100%;
    font-size: clamp(46px, 13.5vw, 68px);
  }

  .hero-kicker-line {
    font-size: 11px;
    line-height: 1.6;
  }

  .hero-lede,
  .section-copy,
  .story-copy,
  .panel-copy,
  .lead-copy {
    font-size: 16px;
  }

  .hero-visual {
    aspect-ratio: 4 / 3;
    min-height: 280px;
  }

  .hero-stage {
    padding: 18px;
  }

  .hero-car {
    transform: translateX(8px) scale(1.12);
  }

  .hero-stage-card {
    min-width: 132px;
    padding: 10px 12px;
  }

  .hero-stage-card--top {
    top: 16px;
    right: 16px;
  }

  .hero-stage-card--bottom {
    right: 16px;
    bottom: 16px;
  }

  .hero-stage-card strong {
    font-size: 26px;
  }

  .hero-stage-inset {
    display: none;
  }

  .photo-core {
    aspect-ratio: 4 / 3;
    min-height: 260px;
  }

  .photo-tall .photo-core,
  .photo-wide .photo-core {
    aspect-ratio: 4 / 3;
    min-height: 260px;
  }

  .card-grid.cols-4,
  .spec-grid,
  .component-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-core,
  .direct-card,
  .privacy-panel {
    padding: 22px;
  }

  .surface-paper .section-inner {
    padding: 24px;
    border-radius: var(--radius-shell);
  }

  .hero-actions,
  .stack-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .home-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
    justify-content: space-between;
  }

  .nav-actions .button {
    width: auto;
    justify-content: flex-start;
  }

  .hero-caption,
  .media-caption,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .section {
    margin-bottom: 84px;
  }
}

@media (max-width: 960px) {
  .vehicle-annot {
    display: none;
  }

  .home-detail-mobile-notes {
    display: flex;
  }
}

/* Product dramaturgy */
.home-hero {
  min-height: 108vh;
  min-height: 108dvh;
  background: #030404;
}

.home-hero-media {
  clip-path: none;
  animation: home-hero-fade 1400ms var(--ease-standard) 120ms both;
}

.home-hero-image,
.home-hero-video {
  height: 100%;
  object-position: center 55%;
  transform: scale(1.04);
  animation: home-hero-settle 3600ms var(--ease-swift) 120ms forwards;
}

.home-hero-aperture,
.home-hero-beam {
  display: none;
}

.home-hero-scrim {
  background:
    linear-gradient(to top, rgba(7, 8, 8, 0.88) 0%, rgba(7, 8, 8, 0.46) 34%, rgba(7, 8, 8, 0.08) 72%),
    linear-gradient(90deg, rgba(7, 8, 8, 0.74) 0%, rgba(7, 8, 8, 0.12) 38%, rgba(7, 8, 8, 0.2) 100%);
}

.home-hero-content {
  grid-template-columns: 1fr;
  align-items: end;
  padding-bottom: clamp(112px, 16vh, 172px);
}

.home-hero-copy--cinema {
  max-width: 760px;
}

.home-hero-title--lockup {
  max-width: min(52vw, 520px);
}

.brand-lockup {
  width: min(100%, 520px);
}

.home-hero-tag {
  max-width: 36ch;
  margin-top: 24px;
  color: rgba(242, 239, 231, 0.88);
  font-size: clamp(18px, 1.55vw, 24px);
  font-weight: 500;
  line-height: 1.42;
}

.hero-tech-rail {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 26px;
  opacity: 0;
  animation: home-hero-fade 1100ms var(--ease-standard) 1500ms forwards;
}

.hero-tech-rail span {
  padding: 7px 10px;
  border: 1px solid rgba(242, 239, 231, 0.13);
  border-radius: var(--radius-small);
  background: rgba(7, 8, 8, 0.36);
  color: var(--text-soft);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  line-height: 1;
}

.scene-shell {
  width: min(100%, calc(var(--container) + (var(--pad) * 2)));
  margin: 0 auto;
  padding: 0 var(--pad);
}

.scene-index {
  display: inline-flex;
  width: fit-content;
  color: var(--accent);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  line-height: 1.4;
  text-transform: uppercase;
}

.scene-lead {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 6vw, 90px);
  align-items: end;
  padding: clamp(76px, 10vw, 124px) 0 clamp(24px, 4vw, 48px);
}

.scene-lead h2,
.lighting-copy h2,
.architecture-head h2,
.usage-lab__copy h2,
.concept-status__copy h2,
.rear-closing__content h2 {
  margin: 0;
  color: var(--text);
  font-family: var(--display);
  font-size: clamp(40px, 5.8vw, 84px);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: 0;
  text-wrap: balance;
}

.scene-lead p,
.lighting-copy p,
.architecture-head p,
.split-moment__copy p,
.usage-lab__copy p,
.concept-status__copy p {
  max-width: 44ch;
  margin: 0;
  color: var(--text-soft);
  font-size: 17px;
  line-height: 1.72;
}

.scene-lead h2 {
  grid-column: 2;
}

.scene-lead p {
  grid-column: 2;
}

.cinema-frame {
  position: relative;
  margin: 0;
  min-height: 72vh;
  overflow: hidden;
  border-top: 1px solid rgba(242, 239, 231, 0.08);
  border-bottom: 1px solid rgba(242, 239, 231, 0.08);
  background: #030404;
}

.cinema-frame::after,
.light-panel::after,
.architecture-stage::after,
.rear-closing__scrim {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cinema-frame::after {
  background:
    linear-gradient(to bottom, rgba(7, 8, 8, 0.18), transparent 28%, rgba(7, 8, 8, 0.62)),
    radial-gradient(ellipse at center, transparent 48%, rgba(7, 8, 8, 0.42) 100%);
}

.cinema-frame img,
.light-panel img,
.architecture-stage img,
.split-moment__image img,
.rear-closing__image {
  width: 100%;
  height: 100%;
  display: block;
}

.cinema-frame img,
.light-panel img,
.rear-closing__image {
  object-fit: cover;
}

.cinema-frame--front {
  min-height: 78vh;
}

.cinema-frame--front img {
  object-position: center 52%;
}

.cinema-frame--side {
  min-height: 74vh;
}

.cinema-frame--side img {
  object-position: center 54%;
}

.cinema-frame figcaption {
  position: absolute;
  left: var(--pad);
  right: var(--pad);
  bottom: 24px;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: rgba(242, 239, 231, 0.62);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.lighting-signature,
.silhouette-scene,
.fcev-architecture,
.usage-lab,
.concept-status {
  margin: 0 0 clamp(110px, 14vw, 178px);
}

.lighting-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: end;
}

.lighting-copy {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 18px;
  padding-bottom: clamp(24px, 5vw, 72px);
}

.lighting-copy h2 {
  font-size: clamp(38px, 4.8vw, 72px);
}

.light-panel {
  position: relative;
  margin: 0;
  overflow: hidden;
  min-height: 56vh;
  border: 1px solid rgba(242, 239, 231, 0.08);
  background: #030404;
}

.light-panel::after {
  background: linear-gradient(to top, rgba(7, 8, 8, 0.52), transparent 42%);
}

.light-panel figcaption {
  position: absolute;
  left: 22px;
  bottom: 18px;
  z-index: 2;
  color: rgba(242, 239, 231, 0.58);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.light-panel--front {
  min-height: clamp(460px, 64vh, 720px);
}

.light-panel--front img {
  object-position: 48% 48%;
}

.light-panel--rear {
  grid-column: 1 / -1;
  min-height: clamp(380px, 54vh, 640px);
  margin-top: clamp(18px, 3vw, 34px);
}

.light-panel--rear img {
  object-position: center 54%;
}

.scene-lead--split {
  grid-template-columns: minmax(0, 0.76fr) minmax(0, 1.24fr);
}

.fcev-architecture {
  padding-top: 0;
}

.architecture-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.56fr) auto;
  gap: clamp(22px, 4vw, 60px);
  align-items: end;
  margin-bottom: clamp(22px, 4vw, 42px);
}

.architecture-head > div {
  display: grid;
  gap: 18px;
}

.architecture-head h2 {
  font-size: clamp(36px, 4.6vw, 66px);
}

.technical-seal--architecture {
  width: min(260px, 22vw);
  justify-self: end;
}

.architecture-stage {
  position: relative;
  height: min(92vh, 920px);
  min-height: 620px;
  overflow: hidden;
  border-top: 1px solid rgba(242, 239, 231, 0.09);
  border-bottom: 1px solid rgba(242, 239, 231, 0.09);
  background:
    linear-gradient(90deg, rgba(242, 239, 231, 0.028) 1px, transparent 1px),
    linear-gradient(180deg, rgba(242, 239, 231, 0.02) 1px, transparent 1px),
    #030404;
  background-size: 64px 64px;
}

.architecture-stage::after {
  background:
    linear-gradient(to top, rgba(7, 8, 8, 0.58), transparent 24%, rgba(7, 8, 8, 0.34)),
    radial-gradient(ellipse at center, transparent 56%, rgba(7, 8, 8, 0.48) 100%);
}

.architecture-stage > img {
  position: relative;
  z-index: 1;
  object-fit: contain;
  object-position: center;
  padding: clamp(26px, 5vw, 86px);
}

.lab-measure {
  position: absolute;
  z-index: 2;
  left: var(--pad);
  right: var(--pad);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(242, 239, 231, 0.22), transparent);
  pointer-events: none;
}

.lab-measure--top {
  top: 12%;
}

.lab-measure--bottom {
  bottom: 13%;
}

.lab-callout {
  position: absolute;
  left: var(--x);
  top: var(--y);
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  line-height: 1.35;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 760ms var(--ease-standard),
    transform 760ms var(--ease-standard);
}

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

.lab-callout--right {
  transform: translate(calc(-100% + 8px), 10px);
  text-align: right;
}

.lab-callout--right.is-visible {
  transform: translate(calc(-100% + 8px), 0);
}

.lab-callout__pin {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(115, 189, 217, 0.08);
  flex: 0 0 auto;
}

.lab-callout__line {
  width: var(--line);
  height: 1px;
  background: rgba(242, 239, 231, 0.42);
  flex: 0 0 auto;
}

.lab-callout__text {
  white-space: nowrap;
  color: rgba(242, 239, 231, 0.88);
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.8);
}

.lab-callout__text b {
  color: var(--accent);
  font-weight: 500;
}

.architecture-mobile-list {
  display: none;
  width: min(100%, calc(var(--container) + (var(--pad) * 2)));
  margin: 18px auto 0;
  padding: 0 var(--pad);
  gap: 10px;
}

.architecture-mobile-list span {
  padding: 10px 12px;
  border: 1px solid rgba(242, 239, 231, 0.1);
  border-radius: var(--radius-small);
  color: var(--text-soft);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.split-moment {
  display: grid;
  grid-template-columns: minmax(0, 1.34fr) minmax(280px, 0.66fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding-top: clamp(58px, 9vw, 116px);
}

.split-moment__image {
  margin: 0;
  min-height: clamp(420px, 58vh, 720px);
  overflow: hidden;
  background: #030404;
}

.split-moment__image img {
  object-fit: cover;
  object-position: center;
}

.split-moment__copy {
  display: grid;
  gap: 18px;
  align-content: center;
}

.split-moment__copy h3 {
  margin: 0;
  color: var(--text);
  font-family: var(--display);
  font-size: clamp(30px, 3.8vw, 54px);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: 0;
}

.usage-lab__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(30px, 6vw, 92px);
  align-items: start;
  padding-top: clamp(30px, 5vw, 70px);
  border-top: 1px solid rgba(242, 239, 231, 0.1);
}

.usage-lab__copy,
.concept-status__copy {
  display: grid;
  gap: 18px;
}

.usage-lab__matrix {
  display: grid;
  border-top: 1px solid rgba(242, 239, 231, 0.12);
}

.usage-lab__matrix article {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(242, 239, 231, 0.12);
}

.usage-lab__matrix span {
  color: var(--accent);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.usage-lab__matrix strong {
  color: var(--text);
  font-family: var(--display);
  font-size: clamp(22px, 2.4vw, 34px);
  font-weight: 600;
  line-height: 1.12;
}

.concept-status__grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.56fr) minmax(0, 1fr);
  gap: clamp(30px, 6vw, 86px);
  align-items: center;
  padding: clamp(34px, 6vw, 62px) var(--pad);
  border-top: 1px solid rgba(242, 239, 231, 0.1);
  border-bottom: 1px solid rgba(242, 239, 231, 0.1);
  background:
    linear-gradient(90deg, rgba(115, 189, 217, 0.04), transparent 46%),
    rgba(242, 239, 231, 0.018);
}

.concept-status__seal {
  display: grid;
  justify-items: start;
}

.concept-status__copy .button {
  width: fit-content;
  margin-top: 8px;
}

.rear-closing {
  position: relative;
  min-height: 96vh;
  min-height: 96dvh;
  overflow: hidden;
  margin-bottom: clamp(48px, 7vw, 80px);
  background: #030404;
}

.rear-closing__image {
  position: absolute;
  inset: 0;
  object-fit: cover;
  object-position: center 52%;
}

.rear-closing__scrim {
  background:
    linear-gradient(to top, rgba(7, 8, 8, 0.9) 0%, rgba(7, 8, 8, 0.28) 44%, rgba(7, 8, 8, 0.24) 100%),
    linear-gradient(90deg, rgba(7, 8, 8, 0.78) 0%, transparent 48%, rgba(7, 8, 8, 0.1) 100%);
}

.rear-closing__content {
  position: relative;
  z-index: 2;
  width: min(100%, calc(var(--container) + (var(--pad) * 2)));
  min-height: inherit;
  margin: 0 auto;
  padding: clamp(104px, 14vh, 160px) var(--pad) clamp(52px, 8vh, 86px);
  display: grid;
  align-content: end;
  gap: 22px;
}

.rear-closing__content h2 {
  max-width: 11ch;
}

.rear-closing__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

@media (max-width: 1180px) {
  .architecture-head,
  .lighting-grid,
  .split-moment,
  .usage-lab__grid,
  .concept-status__grid {
    grid-template-columns: 1fr;
  }

  .technical-seal--architecture {
    justify-self: start;
    width: 260px;
  }

  .scene-lead,
  .scene-lead--split {
    grid-template-columns: 1fr;
  }

  .scene-lead h2,
  .scene-lead p {
    grid-column: auto;
  }
}

@media (max-width: 960px) {
  .architecture-stage {
    height: 58vh;
    min-height: 420px;
  }

  .architecture-stage > img {
    padding: 18px;
  }

  .lab-callout {
    display: none;
  }

  .architecture-mobile-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .home-hero {
    min-height: 92vh;
    min-height: 92dvh;
  }

  .home-hero-image,
  .home-hero-video {
    object-position: 58% 52%;
    transform: scale(1.04);
  }

  .home-hero-content {
    display: grid;
    padding-top: 128px;
    padding-bottom: 96px;
  }

  .home-hero-title--lockup {
    width: min(100%, 340px);
  }

  .brand-lockup {
    width: min(100%, 340px) !important;
  }

  .home-hero-tag {
    max-width: 25ch;
    font-size: 19px;
  }

  .hero-tech-rail {
    margin-top: 20px;
  }

  .home-hero-bottom {
    padding-bottom: 18px;
  }

  .scene-lead {
    padding-top: 84px;
    padding-bottom: 28px;
  }

  .scene-lead h2,
  .lighting-copy h2,
  .architecture-head h2,
  .usage-lab__copy h2,
  .concept-status__copy h2,
  .rear-closing__content h2 {
    font-size: clamp(34px, 11vw, 54px);
  }

  .cinema-frame--front,
  .cinema-frame--side {
    min-height: 58vh;
  }

  .cinema-frame--front img {
    object-position: 58% 50%;
  }

  .cinema-frame--side img {
    object-position: center 50%;
  }

  .cinema-frame figcaption {
    flex-direction: column;
    bottom: 18px;
  }

  .lighting-grid {
    gap: 18px;
  }

  .lighting-copy {
    padding-bottom: 10px;
  }

  .light-panel,
  .light-panel--front,
  .light-panel--rear {
    min-height: 46vh;
  }

  .light-panel--front img {
    object-position: 44% 50%;
  }

  .light-panel--rear img {
    object-position: 62% 52%;
  }

  .architecture-head {
    gap: 18px;
  }

  .architecture-stage {
    height: 48vh;
    min-height: 360px;
  }

  .architecture-mobile-list {
    grid-template-columns: 1fr;
  }

  .split-moment {
    padding-top: 54px;
  }

  .split-moment__image {
    min-height: 42vh;
  }

  .split-moment__image img {
    object-position: center 50%;
  }

  .usage-lab__matrix article {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .concept-status__copy .button,
  .rear-closing__actions .button {
    width: 100%;
  }

  .rear-closing {
    min-height: 86vh;
    min-height: 86dvh;
  }

  .rear-closing__image {
    object-position: 58% 52%;
  }

  .rear-closing__content {
    padding-top: 110px;
  }
}

/* ============================================================
   PREMIUM SECONDARY-PAGE COMPONENTS
   technology / usage-specs / contact
   ============================================================ */

/* PRINCIPLE RAIL — replaces flow-grid on technology */
.principle-rail {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(14, 17, 18, 0.36), rgba(7, 8, 8, 0.22));
}

.principle-rail::before {
  content: "";
  position: absolute;
  left: 6%;
  right: 6%;
  top: 50%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(115, 189, 217, 0.32), transparent);
  pointer-events: none;
}

.principle {
  position: relative;
  padding: clamp(28px, 3vw, 40px);
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.principle:last-child {
  border-right: 0;
}

.principle__num {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--accent);
  text-transform: uppercase;
}

.principle__num::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: currentColor;
  box-shadow: 0 0 0 4px rgba(115, 189, 217, 0.1);
}

.principle__title {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(20px, 1.8vw, 26px);
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: -0.01em;
}

.principle__copy {
  margin: 0;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.6;
}

/* CLARIFY MODULE — premium replacement for cards-2 grid on technology */
.clarify {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-shell);
  overflow: hidden;
  background: linear-gradient(180deg, rgba(14, 17, 18, 0.5), rgba(7, 8, 8, 0.3));
}

.clarify__cell {
  position: relative;
  padding: clamp(28px, 3vw, 40px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.clarify__cell:nth-child(2n) { border-right: 0; }
.clarify__cell:nth-last-child(-n+2) { border-bottom: 0; }

.clarify__label {
  margin: 0;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.clarify__title {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 600;
  line-height: 1.22;
  letter-spacing: -0.005em;
}

.clarify__copy {
  margin: 0;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.6;
}

/* DRIVING SCENARIOS — replaces compare-wrap on usage-specs */
.scenarios {
  display: grid;
  gap: clamp(20px, 2.4vw, 28px);
}

.scenario {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-shell);
  overflow: hidden;
  background: linear-gradient(180deg, rgba(14, 17, 18, 0.6), rgba(7, 8, 8, 0.36));
  transition: border-color 320ms var(--ease-standard);
}

.scenario:hover {
  border-color: rgba(115, 189, 217, 0.28);
}

.scenario__media {
  position: relative;
  aspect-ratio: 4 / 3;
  background: rgba(7, 8, 8, 0.6);
  overflow: hidden;
}

.scenario__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 1.4s var(--ease-standard);
}

.scenario:hover .scenario__media img {
  transform: scale(1.0);
}

.scenario__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 55%, rgba(7, 8, 8, 0.7)),
    linear-gradient(180deg, rgba(7, 8, 8, 0.18), transparent 35%);
}

.scenario__media-tag {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  padding: 6px 10px;
  border-radius: var(--radius-small);
  border: 1px solid rgba(242, 239, 231, 0.16);
  background: rgba(7, 8, 8, 0.6);
  backdrop-filter: blur(6px);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.scenario__body {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: clamp(26px, 3vw, 38px);
}

.scenario__step {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.scenario__step b {
  color: var(--accent);
  font-weight: 600;
}

.scenario__title {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(24px, 2.4vw, 32px);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.01em;
}

.scenario__copy {
  margin: 0;
  color: var(--text-soft);
  font-size: 14.5px;
  line-height: 1.65;
}

.scenario__bars {
  display: grid;
  gap: 10px;
  margin-top: 6px;
}

.scenario__bar {
  display: grid;
  grid-template-columns: minmax(96px, 0.7fr) minmax(0, 1.3fr) auto;
  gap: 14px;
  align-items: center;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.scenario__bar-track {
  position: relative;
  height: 2px;
  background: rgba(242, 239, 231, 0.1);
  border-radius: 999px;
  overflow: hidden;
}

.scenario__bar-fill {
  position: absolute;
  inset: 0;
  width: var(--fill, 50%);
  background: var(--accent);
  border-radius: 999px;
}

.scenario__bar-fill--soft {
  background: rgba(242, 239, 231, 0.36);
}

.scenario__bar-val {
  color: var(--text-soft);
  letter-spacing: 0.06em;
  text-transform: none;
}

.scenario__verdict {
  margin-top: 14px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.scenario__pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: rgba(242, 239, 231, 0.04);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.scenario__pill--accent {
  border-color: rgba(115, 189, 217, 0.32);
  background: rgba(115, 189, 217, 0.08);
  color: var(--accent);
}

.scenario__pill::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: currentColor;
  opacity: 0.75;
}

/* DECISION MATRIX — When it makes sense */
.decision {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(20px, 2vw, 28px);
}

.decision__col {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius-shell);
  background: linear-gradient(180deg, rgba(14, 17, 18, 0.6), rgba(7, 8, 8, 0.32));
  padding: clamp(28px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.decision__col--pertinent {
  background:
    linear-gradient(180deg, rgba(115, 189, 217, 0.06), rgba(7, 8, 8, 0.36));
  border-color: rgba(115, 189, 217, 0.22);
}

.decision__head {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.decision__col--pertinent .decision__head b {
  color: var(--accent);
}

.decision__col--limit .decision__head b {
  color: var(--text-soft);
}

.decision__title {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 600;
  line-height: 1.14;
  letter-spacing: -0.01em;
}

.decision__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.decision__list li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
  color: var(--text-soft);
  font-size: 14.5px;
  line-height: 1.55;
}

.decision__list li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.decision__list li::before {
  content: "+";
  font-family: var(--mono);
  font-size: 14px;
  color: var(--accent);
  line-height: 1.2;
  font-weight: 500;
}

.decision__col--limit .decision__list li::before {
  content: "—";
  color: var(--text-muted);
}

/* INFRA READOUT — premium infrastructure metrics */
.infra-readout {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-shell);
  overflow: hidden;
  background: linear-gradient(180deg, rgba(14, 17, 18, 0.6), rgba(7, 8, 8, 0.36));
}

.infra-readout__cell {
  padding: clamp(28px, 3vw, 36px);
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
}

.infra-readout__cell:last-child { border-right: 0; }

.infra-readout__cell--accent::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(115, 189, 217, 0.06), transparent 60%);
  pointer-events: none;
}

.infra-readout__cell > * { position: relative; z-index: 1; }

.infra-readout__label {
  margin: 0;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.infra-readout__value {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(40px, 4.4vw, 60px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.02em;
}

.infra-readout__value small {
  display: block;
  margin-top: 8px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
}

.infra-readout__note {
  margin: 0;
  color: var(--text-soft);
  font-size: 13.5px;
  line-height: 1.6;
}

/* TECH SHEET — premium spec sheet (replaces spec-grid) */
.tech-sheet {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius-shell);
  background: linear-gradient(180deg, rgba(14, 17, 18, 0.6), rgba(7, 8, 8, 0.36));
  overflow: hidden;
}

.tech-sheet__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding: 18px 24px;
  border-bottom: 1px solid var(--line);
  background: rgba(7, 8, 8, 0.42);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.tech-sheet__head em {
  color: var(--accent);
  font-style: normal;
}

.tech-sheet__rows {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.tech-sheet__row {
  display: grid;
  grid-template-columns: minmax(120px, 0.8fr) minmax(0, 1.2fr);
  gap: 14px;
  padding: 22px 24px;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}

.tech-sheet__row:nth-child(odd) {
  border-right: 1px solid var(--line);
}

.tech-sheet__row:nth-last-child(-n+2) {
  border-bottom: 0;
}

.tech-sheet__label {
  margin: 0;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.tech-sheet__value {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.01em;
}

.tech-sheet__value small {
  margin-left: 6px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text-muted);
}

.tech-sheet__foot {
  padding: 18px 24px;
  border-top: 1px solid var(--line);
  background: rgba(7, 8, 8, 0.36);
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-soft);
}

/* AUDIENCE GRID — Contact "Pour qui" statutory */
.audience {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-shell);
  overflow: hidden;
  background: linear-gradient(180deg, rgba(14, 17, 18, 0.5), rgba(7, 8, 8, 0.32));
}

.audience__cell {
  position: relative;
  padding: clamp(28px, 3vw, 40px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: background 320ms var(--ease-standard);
}

.audience__cell:nth-child(2n) { border-right: 0; }
.audience__cell:nth-last-child(-n+2) { border-bottom: 0; }
.audience__cell:hover {
  background: rgba(115, 189, 217, 0.04);
}

.audience__index {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.audience__index b {
  color: var(--accent);
}

.audience__title {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 600;
  line-height: 1.16;
  letter-spacing: -0.005em;
}

.audience__copy {
  margin: 0;
  color: var(--text-soft);
  font-size: 14.5px;
  line-height: 1.62;
}

/* PROCESS RAIL — Contact 3-step premium */
.process-rail {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
}

.process-rail::before {
  content: "";
  position: absolute;
  top: 24px;
  left: 5%;
  right: 5%;
  height: 1px;
  background: linear-gradient(90deg, var(--accent), rgba(115, 189, 217, 0.2) 60%, transparent);
  opacity: 0.6;
  pointer-events: none;
}

.process-step {
  position: relative;
  padding: 0 clamp(20px, 2vw, 28px);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.process-step:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 12px;
  bottom: 0;
  width: 1px;
  background: var(--line);
}

.process-step__node {
  position: relative;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 1px solid rgba(115, 189, 217, 0.34);
  background: rgba(7, 8, 8, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--accent);
  margin-bottom: 4px;
}

.process-step__node::after {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: 999px;
  border: 1px solid rgba(115, 189, 217, 0.12);
}

.process-step__label {
  margin: 0;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.process-step__title {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(20px, 1.8vw, 24px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.005em;
}

.process-step__copy {
  margin: 0;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.6;
}

/* ACCESS BAND — Contact confidential moment */
.access-band {
  position: relative;
  padding: clamp(64px, 9vw, 104px) var(--pad);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(7, 8, 8, 0.94), rgba(7, 8, 8, 0.78)),
    radial-gradient(ellipse at 78% 50%, rgba(115, 189, 217, 0.1), transparent 55%);
  overflow: hidden;
}

.access-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(242, 239, 231, 0.04) 1px, transparent 1px);
  background-size: 92px 100%;
  opacity: 0.6;
  pointer-events: none;
}

.access-band__inner {
  position: relative;
  z-index: 1;
  width: min(100%, var(--container));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(28px, 4vw, 64px);
  align-items: center;
}

.access-band__copy {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.access-band__kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--accent);
  text-transform: uppercase;
}

.access-band__kicker::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: currentColor;
  box-shadow: 0 0 0 4px rgba(115, 189, 217, 0.12);
}

.access-band__title {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(34px, 4.6vw, 56px);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

.access-band__title em {
  color: var(--accent);
  font-style: normal;
}

.access-band__lede {
  max-width: 50ch;
  margin: 0;
  color: var(--text-soft);
  font-size: 16.5px;
  line-height: 1.7;
}

.access-band__rail {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.access-band__rail span {
  padding: 7px 10px;
  border: 1px solid rgba(242, 239, 231, 0.13);
  border-radius: var(--radius-small);
  background: rgba(7, 8, 8, 0.4);
  color: var(--text-soft);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  line-height: 1;
}

.access-band__media {
  position: relative;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--line);
  border-radius: var(--radius-shell);
  overflow: hidden;
}

.access-band__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.access-band__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(7, 8, 8, 0.62));
  pointer-events: none;
}

.access-band__media-caption {
  position: absolute;
  left: 18px;
  bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.access-band__media-caption b {
  color: var(--text);
  font-weight: 600;
}

/* USE-CASE SCENES — editorial mobility situations (replaces bars) */
.use-cases {
  display: grid;
  gap: clamp(40px, 6vw, 80px);
}

.case {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(28px, 4vw, 64px);
  align-items: center;
}

.case--reverse {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}

.case--reverse .case__media {
  order: 2;
}

.case__media {
  position: relative;
  aspect-ratio: 5 / 4;
  border: 1px solid var(--line);
  border-radius: var(--radius-shell);
  overflow: hidden;
  background: rgba(7, 8, 8, 0.6);
}

.case__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease-standard);
}

.case:hover .case__media img {
  transform: scale(1.02);
}

.case__media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 55%, rgba(7, 8, 8, 0.55));
}

.case__index {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--text-soft);
  text-transform: uppercase;
}

.case__index b {
  color: var(--accent);
  font-weight: 600;
}

.case__body {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.case__kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.case__kicker::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--accent);
}

.case__title {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.015em;
  text-wrap: balance;
}

.case__title em {
  color: inherit;
  font-style: italic;
  font-weight: 500;
}

.case__lede {
  margin: 0;
  max-width: 56ch;
  color: var(--text-soft);
  font-size: 16px;
  line-height: 1.7;
}

.case__data {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin-top: 8px;
  border-top: 1px solid var(--line);
}

.case__data > div {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.case__data > div:nth-child(odd) {
  padding-right: 20px;
  border-right: 1px solid var(--line);
}

.case__data > div:nth-child(even) {
  padding-left: 20px;
}

.case__data dt {
  margin: 0;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.case__data dd {
  margin: 0;
  font-family: var(--display);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.25;
  color: var(--text);
  letter-spacing: -0.005em;
}

.case__verdict {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
}

.case__pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 13px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: rgba(242, 239, 231, 0.04);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.case__pill--accent {
  border-color: rgba(115, 189, 217, 0.32);
  background: rgba(115, 189, 217, 0.08);
  color: var(--accent);
}

.case__pill::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: currentColor;
  opacity: 0.75;
}

/* EXPLODED REVEAL — premium layered reveal of the vehicle */
.exploded-reveal {
  position: relative;
  padding: clamp(72px, 10vw, 128px) 0 clamp(48px, 6vw, 80px);
  overflow: hidden;
  background:
    radial-gradient(ellipse at 50% 15%, rgba(115, 189, 217, 0.1), transparent 50%),
    linear-gradient(180deg, rgba(7, 8, 8, 0.92), rgba(7, 8, 8, 0.7) 60%, rgba(7, 8, 8, 0.92));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.exploded-reveal::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(242, 239, 231, 0.045) 1px, transparent 1px);
  background-size: 92px 100%;
  opacity: 0.6;
  pointer-events: none;
}

.exploded-reveal__inner {
  position: relative;
  z-index: 1;
  width: min(100%, var(--container));
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  gap: clamp(40px, 5vw, 72px);
}

.exploded-reveal__head {
  max-width: 56ch;
}

.exploded-reveal__kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--accent);
  text-transform: uppercase;
}

.exploded-reveal__kicker::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
}

.exploded-reveal__title {
  margin: 14px 0 18px;
  font-family: var(--display);
  font-size: clamp(34px, 4.4vw, 56px);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.015em;
  text-wrap: balance;
}

.exploded-reveal__title em {
  color: var(--accent);
  font-style: normal;
}

.exploded-reveal__lede {
  margin: 0;
  color: var(--text-soft);
  font-size: 16.5px;
  line-height: 1.7;
}

.exploded-reveal__stage {
  position: relative;
  aspect-ratio: 16 / 10;
  border: 1px solid var(--line);
  border-radius: var(--radius-shell);
  overflow: hidden;
  background: rgba(7, 8, 8, 0.7);
}

.exploded-reveal__stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(0deg, transparent 0, transparent 60px, rgba(115, 189, 217, 0.04) 60px, rgba(115, 189, 217, 0.04) 61px),
    repeating-linear-gradient(90deg, transparent 0, transparent 60px, rgba(115, 189, 217, 0.04) 60px, rgba(115, 189, 217, 0.04) 61px);
  pointer-events: none;
  opacity: 0.7;
  z-index: 1;
}

.exploded-reveal__stage::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 50%, transparent 30%, rgba(7, 8, 8, 0.7) 90%);
  pointer-events: none;
  z-index: 2;
}

.exploded-reveal__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  z-index: 3;
  filter: drop-shadow(0 30px 80px rgba(115, 189, 217, 0.08));
  animation: exploded-float 8s ease-in-out infinite;
}

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

.exploded-reveal__corner {
  position: absolute;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(115, 189, 217, 0.36);
  z-index: 4;
}

.exploded-reveal__corner--tl { top: 16px; left: 16px; border-right: 0; border-bottom: 0; }
.exploded-reveal__corner--tr { top: 16px; right: 16px; border-left: 0; border-bottom: 0; }
.exploded-reveal__corner--bl { bottom: 16px; left: 16px; border-right: 0; border-top: 0; }
.exploded-reveal__corner--br { bottom: 16px; right: 16px; border-left: 0; border-top: 0; }

.exploded-reveal__readout {
  position: absolute;
  z-index: 4;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--text-soft);
  text-transform: uppercase;
}

.exploded-reveal__readout--tl { top: 30px; left: 56px; }
.exploded-reveal__readout--tr { top: 30px; right: 56px; }
.exploded-reveal__readout--bl { bottom: 30px; left: 56px; }
.exploded-reveal__readout--br { bottom: 30px; right: 56px; }

.exploded-reveal__legend {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-shell);
  background: linear-gradient(180deg, rgba(14, 17, 18, 0.6), rgba(7, 8, 8, 0.4));
  overflow: hidden;
}

.exploded-reveal__legend > div {
  padding: 22px 24px;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.exploded-reveal__legend > div:last-child {
  border-right: 0;
}

.exploded-reveal__legend dt {
  margin: 0;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--accent);
  text-transform: uppercase;
}

.exploded-reveal__legend dd {
  margin: 0;
  font-family: var(--display);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.25;
  color: var(--text);
}

/* RESPONSIVE for new components */
@media (max-width: 960px) {
  .principle-rail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .principle:nth-child(2n) { border-right: 0; }
  .principle:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }
  .principle-rail::before { display: none; }

  .clarify {
    grid-template-columns: minmax(0, 1fr);
  }
  .clarify__cell {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .clarify__cell:last-child { border-bottom: 0; }

  .scenario {
    grid-template-columns: minmax(0, 1fr);
  }
  .scenario__media {
    aspect-ratio: 16 / 9;
  }
  .scenario__media::after {
    background: linear-gradient(180deg, transparent 50%, rgba(7, 8, 8, 0.78));
  }

  .decision {
    grid-template-columns: minmax(0, 1fr);
  }

  .infra-readout {
    grid-template-columns: minmax(0, 1fr);
  }
  .infra-readout__cell {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .infra-readout__cell:last-child { border-bottom: 0; }

  .tech-sheet__rows {
    grid-template-columns: minmax(0, 1fr);
  }
  .tech-sheet__row {
    border-right: 0 !important;
  }

  .audience {
    grid-template-columns: minmax(0, 1fr);
  }
  .audience__cell {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .audience__cell:last-child { border-bottom: 0; }

  .process-rail {
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
  }
  .process-rail::before { display: none; }
  .process-step {
    padding-left: 0;
    padding-right: 0;
  }
  .process-step:not(:last-child)::after {
    right: auto;
    left: 24px;
    top: 56px;
    bottom: -28px;
    width: 1px;
  }

  .access-band__inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .case,
  .case--reverse {
    grid-template-columns: minmax(0, 1fr);
  }
  .case--reverse .case__media {
    order: 0;
  }

  .exploded-reveal__legend {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .exploded-reveal__legend > div {
    border-bottom: 1px solid var(--line);
  }
  .exploded-reveal__legend > div:nth-child(2n) {
    border-right: 0;
  }
  .exploded-reveal__legend > div:nth-last-child(-n+2) {
    border-bottom: 0;
  }
  .exploded-reveal__readout {
    display: none;
  }
}

@media (max-width: 600px) {
  .principle-rail {
    grid-template-columns: minmax(0, 1fr);
  }
  .principle {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .principle:last-child { border-bottom: 0; }

  .case__data {
    grid-template-columns: minmax(0, 1fr);
  }
  .case__data > div:nth-child(odd) {
    padding-right: 0;
    border-right: 0;
  }
  .case__data > div:nth-child(even) {
    padding-left: 0;
  }
}

/* ============================================================
   MOBILE-FIRST REFINEMENT — premium automotive on phone
   Targets 430px (large phones), 390px (typical), 768px (tablet)
   Priority: cinematic hero, restrained typography, calmer rhythm
   ============================================================ */

@media (max-width: 768px) {
  :root {
    --pad: 22px;
    --section-gap: 80px;
  }

  html {
    -webkit-text-size-adjust: 100%;
  }

  body {
    background-size: auto, 56px 56px, 56px 56px, auto;
  }

  /* HEADER — calm, hamburger only, no overload */
  .nav-shell {
    padding: 12px 18px;
    align-items: center;
  }

  .brand-logo {
    width: 96px;
    height: auto;
  }

  .brand-tag {
    display: none;
  }

  /* Hide horizontal scrollable links at 768px — use hamburger panel instead */
  .nav-links {
    display: none !important;
  }

  .site-header::before,
  .site-header::after {
    display: none !important;
  }

  .nav-actions {
    gap: 10px;
  }

  .nav-actions .button-secondary {
    display: none;
  }

  .nav-actions .button-primary {
    display: none;
  }

  .nav-toggle {
    display: inline-flex !important;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(242, 239, 231, 0.16);
    background: rgba(242, 239, 231, 0.04);
    border-radius: var(--radius-small);
  }

  /* MOBILE NAV PANEL — strong, full-bleed */
  .nav-panel {
    padding: 88px 22px 28px;
  }

  .nav-panel-inner {
    width: 100%;
    padding: 14px;
    gap: 8px;
    background: rgba(11, 11, 12, 0.96);
    border: 1px solid rgba(242, 239, 231, 0.08);
  }

  .nav-panel a {
    padding: 18px 18px;
    font-size: 22px;
    line-height: 1.1;
    border-radius: var(--radius-small);
  }

  /* HOME HERO — cinematic single moment */
  .home-hero {
    min-height: 100dvh;
    height: auto;
  }

  .home-hero-image,
  .home-hero-video {
    object-position: 56% 52%;
    transform: scale(1.06);
  }

  .home-hero-scrim {
    background:
      linear-gradient(to top,
        rgba(7, 8, 8, 0.94) 0%,
        rgba(7, 8, 8, 0.58) 36%,
        rgba(7, 8, 8, 0.06) 78%);
  }

  .home-hero-content {
    grid-template-columns: 1fr;
    padding: 100px 22px 36px;
    align-items: end;
    min-height: 100dvh;
  }

  .home-hero-copy--cinema {
    max-width: 100%;
    gap: 16px;
  }

  .home-hero-title--lockup {
    width: 100%;
    max-width: 320px;
    margin: 0;
  }

  .brand-lockup {
    width: 100% !important;
    max-width: 320px !important;
    height: auto;
  }

  .home-hero-tag {
    margin-top: 14px;
    max-width: 28ch;
    color: rgba(242, 239, 231, 0.92);
    font-size: 17px;
    line-height: 1.42;
    text-wrap: balance;
  }

  .hero-tech-rail {
    margin-top: 18px;
    gap: 6px;
  }

  .hero-tech-rail span {
    padding: 6px 9px;
    font-size: 9.5px;
    letter-spacing: 0.14em;
  }

  .home-hero-actions,
  .home-hero-content .hero-actions {
    margin-top: 20px !important;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    width: 100%;
    max-width: 360px;
  }

  .home-hero-bottom {
    padding: 16px 22px 22px;
    gap: 12px;
  }

  .home-hero-scroll-text {
    font-size: 11px;
    letter-spacing: 0.18em;
  }

  .home-hero-location {
    font-size: 11px;
    letter-spacing: 0.12em;
  }

  /* BUTTONS — premium touch targets */
  .button {
    min-height: 52px;
    padding: 14px 18px;
    font-size: 14px;
    letter-spacing: 0.02em;
    border-radius: var(--radius-small);
  }

  .button-icon {
    font-size: 16px;
  }

  .nav-actions .button {
    min-height: 40px;
    padding: 10px 14px;
    font-size: 12px;
  }

  /* PAGE HERO — secondary pages */
  .page-hero {
    padding-top: 96px;
    padding-bottom: 32px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hero-copy {
    gap: 18px;
    order: 1;
  }

  .frame.is-visible,
  .hero-grid .frame {
    order: 0;
  }

  .hero-intro {
    font-size: 10px;
    padding: 6px 10px;
    letter-spacing: 0.14em;
  }

  .hero-title {
    font-size: clamp(32px, 9.5vw, 44px);
    line-height: 0.98;
    text-wrap: balance;
  }

  .hero-lede {
    font-size: 15.5px;
    line-height: 1.6;
    max-width: 100%;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    width: 100%;
    margin-top: 8px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-note {
    flex-direction: column;
    gap: 8px;
    font-size: 13px;
  }

  .frame {
    width: 100%;
  }

  .frame-core,
  .hero-visual {
    aspect-ratio: 5 / 4;
    min-height: 0;
  }

  .visual-contain {
    padding: 16px;
  }

  .technical-seal--page {
    width: 200px;
    height: auto;
    margin-bottom: 4px;
  }

  /* SECTION RHYTHM */
  .section {
    margin-bottom: 64px;
  }

  .section-inner {
    padding: 0 var(--pad);
  }

  .section-head {
    gap: 14px;
    margin-bottom: 28px;
  }

  .section-kicker {
    font-size: 10.5px;
    letter-spacing: 0.16em;
  }

  .section-title,
  .section-title.small,
  .story-title.small {
    font-size: clamp(28px, 8vw, 38px);
    line-height: 1.04;
    text-wrap: balance;
    letter-spacing: -0.005em;
  }

  .section-copy {
    font-size: 15.5px;
    line-height: 1.62;
    max-width: 100%;
  }

  /* SCENE LEAD — landing micro-sections */
  .scene-lead {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 60px 0 24px;
  }

  .scene-lead h2,
  .lighting-copy h2 {
    grid-column: 1;
    font-size: clamp(30px, 9vw, 44px);
    line-height: 1.02;
  }

  .scene-lead p,
  .lighting-copy p {
    grid-column: 1;
    font-size: 15.5px;
    line-height: 1.6;
    max-width: 100%;
  }

  .scene-index {
    font-size: 10.5px;
    letter-spacing: 0.14em;
  }

  /* CINEMA + LIGHTING — calmer mobile crops */
  .cinema-frame,
  .cinema-frame--front,
  .cinema-frame--side {
    min-height: 60vh;
    min-height: 60dvh;
  }

  .cinema-frame img,
  .cinema-frame--front img,
  .cinema-frame--side img {
    object-position: center 52%;
  }

  .cinema-frame figcaption {
    bottom: 18px;
    font-size: 9.5px;
    letter-spacing: 0.12em;
  }

  .lighting-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    align-items: stretch;
  }

  .lighting-copy {
    padding-bottom: 12px;
  }

  .light-panel,
  .light-panel--front,
  .light-panel--rear {
    min-height: 56vh;
    min-height: 56dvh;
    grid-column: 1;
    margin-top: 0;
  }

  .light-panel--rear {
    margin-top: 12px;
  }

  .light-panel figcaption {
    left: 18px;
    bottom: 14px;
    font-size: 9.5px;
    letter-spacing: 0.12em;
  }

  /* SILHOUETTE / REAR CLOSING */
  .silhouette-scene,
  .lighting-signature {
    margin: 0 0 60px;
  }

  .rear-closing {
    min-height: 78vh;
    min-height: 78dvh;
  }

  .rear-closing__image {
    object-position: 56% 52%;
  }

  .rear-closing__content {
    padding: 96px 22px 36px;
    gap: 14px;
  }

  .rear-closing__content h2 {
    font-size: clamp(26px, 8.4vw, 38px);
    line-height: 1.08;
  }

  .rear-closing__actions {
    width: 100%;
    flex-direction: column;
    gap: 10px;
  }

  /* PRINCIPLE RAIL — vertical sequence */
  .principle-rail {
    grid-template-columns: 1fr;
    border: 1px solid var(--line);
    border-radius: var(--radius-shell);
  }

  .principle-rail::before {
    display: none;
  }

  .principle {
    padding: 22px 22px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    gap: 10px;
  }

  .principle:last-child {
    border-bottom: 0;
  }

  .principle__num {
    font-size: 10px;
    letter-spacing: 0.16em;
  }

  .principle__title {
    font-size: 19px;
    line-height: 1.18;
  }

  .principle__copy {
    font-size: 14px;
    line-height: 1.55;
  }

  /* CLARIFY — vertical premium list */
  .clarify {
    grid-template-columns: 1fr;
  }

  .clarify__cell {
    padding: 22px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    gap: 8px;
  }

  .clarify__cell:last-child {
    border-bottom: 0;
  }

  .clarify__title {
    font-size: 17px;
  }

  .clarify__copy {
    font-size: 13.5px;
  }

  /* SCROLL-ARCH — mobile inspection sequence */
  .scroll-arch {
    padding: 0 var(--pad);
  }

  .scroll-arch-inner {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .scroll-arch-media {
    position: sticky;
    top: 8px;
    z-index: 3;
    margin: 0 calc(-1 * var(--pad));
    padding: 0;
  }

  .scroll-arch-frame {
    aspect-ratio: 5 / 4;
    max-height: none;
    border-radius: 0;
    border-left: 0;
    border-right: 0;
  }

  .scroll-arch-img {
    padding: 14px;
  }

  /* Hide on-image hotspot labels on small phones; rely on the steps below */
  .sa-hotspot .sa-label {
    display: none;
  }

  .sa-hotspot .sa-line {
    display: none;
  }

  .sa-dot {
    width: 10px;
    height: 10px;
    box-shadow: 0 0 0 4px rgba(7, 8, 8, 0.55);
  }

  .sa-hotspot.is-active .sa-dot {
    box-shadow: 0 0 0 6px rgba(115, 189, 217, 0.22);
  }

  .scroll-arch-counter {
    left: 16px;
    top: 16px;
    padding: 5px 9px;
    background: rgba(7, 8, 8, 0.6);
    backdrop-filter: blur(6px);
    border-radius: var(--radius-small);
    font-size: 10px;
  }

  .scroll-arch-counter [data-arch-counter] {
    font-size: 12px;
  }

  .scroll-arch-steps {
    padding: 36px 0 24px;
    gap: 56vh;
  }

  .sa-step {
    max-width: 100%;
    opacity: 0.86;
  }

  .sa-step.is-active {
    opacity: 1;
  }

  .sa-step-n {
    font-size: 11px;
    letter-spacing: 0.16em;
    margin-bottom: 10px;
  }

  .sa-step-title {
    font-size: 22px;
    line-height: 1.14;
    margin-bottom: 12px;
  }

  .sa-step-copy {
    font-size: 14.5px;
    line-height: 1.6;
  }

  /* EXPLODED REVEAL — readable hero on mobile */
  .exploded-reveal {
    padding: 56px 0 36px;
  }

  .exploded-reveal::before {
    display: none;
  }

  .exploded-reveal__inner {
    padding: 0 var(--pad);
    gap: 24px;
  }

  .exploded-reveal__title {
    font-size: clamp(28px, 8.4vw, 40px);
    margin: 12px 0 14px;
  }

  .exploded-reveal__lede {
    font-size: 15px;
    line-height: 1.62;
  }

  .exploded-reveal__stage {
    aspect-ratio: 4 / 3;
    margin: 0 calc(-1 * var(--pad));
    border-left: 0;
    border-right: 0;
    border-radius: 0;
  }

  .exploded-reveal__stage::before {
    background-size: 40px 100%;
    opacity: 0.4;
  }

  .exploded-reveal__stage::after {
    background:
      radial-gradient(ellipse at 50% 50%, transparent 25%, rgba(7, 8, 8, 0.6) 95%);
  }

  .exploded-reveal__img {
    object-fit: contain;
    padding: 16px;
  }

  .exploded-reveal__corner {
    width: 18px;
    height: 18px;
  }

  .exploded-reveal__corner--tl,
  .exploded-reveal__corner--tr,
  .exploded-reveal__corner--bl,
  .exploded-reveal__corner--br {
    top: auto;
    bottom: auto;
    left: auto;
    right: auto;
  }

  .exploded-reveal__corner--tl { top: 12px; left: 12px; }
  .exploded-reveal__corner--tr { top: 12px; right: 12px; }
  .exploded-reveal__corner--bl { bottom: 12px; left: 12px; }
  .exploded-reveal__corner--br { bottom: 12px; right: 12px; }

  .exploded-reveal__readout {
    display: none;
  }

  .exploded-reveal__legend {
    grid-template-columns: 1fr 1fr;
  }

  .exploded-reveal__legend > div {
    padding: 16px 14px;
    gap: 6px;
    border-bottom: 1px solid var(--line);
  }

  .exploded-reveal__legend > div:nth-child(2n) {
    border-right: 0;
  }

  .exploded-reveal__legend > div:nth-last-child(-n+1) {
    border-bottom: 0;
  }

  .exploded-reveal__legend dt {
    font-size: 9.5px;
    letter-spacing: 0.16em;
  }

  .exploded-reveal__legend dd {
    font-size: 14px;
    line-height: 1.2;
  }

  /* USE CASES — vertical editorial panels */
  .use-cases {
    gap: 56px;
  }

  .case,
  .case--reverse {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .case--reverse .case__media {
    order: 0;
  }

  .case__media {
    aspect-ratio: 5 / 4;
    margin: 0 calc(-1 * var(--pad));
    border-radius: 0;
    border-left: 0;
    border-right: 0;
  }

  .case__media::after {
    background: linear-gradient(180deg, transparent 60%, rgba(7, 8, 8, 0.55));
  }

  .case__index {
    top: 14px;
    left: 16px;
    font-size: 10px;
    letter-spacing: 0.16em;
  }

  .case__body {
    gap: 16px;
  }

  .case__kicker {
    font-size: 10px;
    letter-spacing: 0.14em;
  }

  .case__kicker::before {
    width: 22px;
  }

  .case__title {
    font-size: clamp(24px, 7.4vw, 32px);
    line-height: 1.08;
  }

  .case__lede {
    font-size: 15px;
    line-height: 1.62;
  }

  .case__data {
    grid-template-columns: 1fr 1fr;
    margin-top: 4px;
  }

  .case__data > div {
    padding: 14px 0;
    gap: 4px;
  }

  .case__data > div:nth-child(odd) {
    padding-right: 14px;
  }

  .case__data > div:nth-child(even) {
    padding-left: 14px;
  }

  .case__data dt {
    font-size: 9.5px;
    letter-spacing: 0.14em;
  }

  .case__data dd {
    font-size: 15px;
    line-height: 1.22;
  }

  .case__verdict {
    gap: 8px;
  }

  .case__pill {
    padding: 6px 11px;
    font-size: 9.5px;
    letter-spacing: 0.14em;
  }

  /* DECISION MATRIX */
  .decision {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .decision__col {
    padding: 24px 22px;
    gap: 14px;
  }

  .decision__title {
    font-size: 20px;
    line-height: 1.16;
  }

  .decision__list li {
    font-size: 14px;
    line-height: 1.55;
    padding-bottom: 12px;
    grid-template-columns: 16px 1fr;
    gap: 10px;
  }

  /* INFRA READOUT — vertical, compact */
  .infra-readout {
    grid-template-columns: 1fr;
  }

  .infra-readout__cell {
    padding: 22px 22px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    gap: 10px;
  }

  .infra-readout__cell:last-child {
    border-bottom: 0;
  }

  .infra-readout__value {
    font-size: clamp(38px, 12vw, 52px);
  }

  .infra-readout__value small {
    font-size: 10px;
    letter-spacing: 0.16em;
    margin-top: 6px;
  }

  .infra-readout__note {
    font-size: 13.5px;
    line-height: 1.55;
  }

  /* TECH SHEET — readable spec sheet */
  .tech-sheet__head {
    padding: 14px 18px;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    font-size: 10px;
    letter-spacing: 0.14em;
  }

  .tech-sheet__rows {
    grid-template-columns: 1fr;
  }

  .tech-sheet__row {
    grid-template-columns: 1fr;
    padding: 16px 20px;
    gap: 6px;
    border-right: 0 !important;
  }

  .tech-sheet__row:last-child {
    border-bottom: 0;
  }

  .tech-sheet__label {
    font-size: 10px;
    letter-spacing: 0.16em;
  }

  .tech-sheet__value {
    font-size: 24px;
  }

  .tech-sheet__value small {
    font-size: 11px;
  }

  .tech-sheet__foot {
    padding: 16px 20px;
    font-size: 13px;
  }

  /* AUDIENCE — 2 col on mobile keeps statutory feel without endless scroll */
  .audience {
    grid-template-columns: 1fr 1fr;
  }

  .audience__cell {
    padding: 22px 18px;
    gap: 10px;
    border-right: 1px solid var(--line);
  }

  .audience__cell:nth-child(2n) {
    border-right: 0;
  }

  .audience__cell:nth-last-child(-n+2) {
    border-bottom: 0;
  }

  .audience__index {
    font-size: 10px;
    letter-spacing: 0.14em;
  }

  .audience__title {
    font-size: 17px;
    line-height: 1.14;
  }

  .audience__copy {
    font-size: 13px;
    line-height: 1.56;
  }

  /* PROCESS RAIL — clean vertical with side connector */
  .process-rail {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-left: 8px;
  }

  .process-rail::before {
    display: none;
  }

  .process-step {
    padding: 0 0 0 64px;
    position: relative;
  }

  .process-step__node {
    position: absolute;
    left: 0;
    top: 0;
    width: 44px;
    height: 44px;
    font-size: 12px;
  }

  .process-step__node::after {
    inset: -3px;
  }

  .process-step:not(:last-child)::after {
    content: "";
    position: absolute;
    left: 21px;
    top: 48px;
    bottom: -28px;
    width: 1px;
    height: auto;
    background: linear-gradient(180deg, rgba(115, 189, 217, 0.36), rgba(115, 189, 217, 0.06));
    right: auto;
  }

  .process-step__label {
    font-size: 9.5px;
    letter-spacing: 0.16em;
  }

  .process-step__title {
    font-size: 19px;
    line-height: 1.18;
  }

  .process-step__copy {
    font-size: 13.5px;
    line-height: 1.55;
  }

  /* ACCESS BAND — confidential moment */
  .access-band {
    padding: 56px 0;
  }

  .access-band::before {
    background-size: 56px 100%;
    opacity: 0.4;
  }

  .access-band__inner {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 0 var(--pad);
  }

  .access-band__copy {
    gap: 14px;
  }

  .access-band__kicker {
    font-size: 10px;
    letter-spacing: 0.18em;
  }

  .access-band__title {
    font-size: clamp(28px, 8.4vw, 40px);
    line-height: 1.04;
  }

  .access-band__lede {
    font-size: 15px;
    line-height: 1.62;
    max-width: 100%;
  }

  .access-band__rail span {
    padding: 6px 9px;
    font-size: 9.5px;
    letter-spacing: 0.14em;
  }

  .access-band__media {
    aspect-ratio: 5 / 4;
    margin: 0 calc(-1 * var(--pad));
    border-radius: 0;
    border-left: 0;
    border-right: 0;
  }

  .access-band__media-caption {
    left: 16px;
    bottom: 14px;
    font-size: 9.5px;
    letter-spacing: 0.14em;
  }

  /* CONTACT FORM — calm, premium */
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .form-shell {
    margin: 0 calc(-1 * var(--pad));
  }

  .form-core {
    padding: 24px 22px;
    border-radius: 0;
    border-left: 0;
    border-right: 0;
    gap: 18px;
  }

  .form-core .section-head {
    margin-bottom: 6px;
  }

  .form-core .panel-title.small {
    font-size: 22px;
    line-height: 1.14;
  }

  .form-core .panel-copy {
    font-size: 14px;
    line-height: 1.6;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .field label,
  .field-full label {
    font-size: 10.5px;
    letter-spacing: 0.14em;
    margin-bottom: 6px;
  }

  .field input,
  .field select,
  .field-full input,
  .field-full textarea {
    min-height: 50px;
    padding: 14px 16px;
    font-size: 16px;
    border-radius: var(--radius-small);
  }

  .field-full textarea {
    min-height: 130px;
    padding-top: 14px;
  }

  .consent-row {
    gap: 12px;
    padding: 14px 0 4px;
    font-size: 13px;
    line-height: 1.5;
  }

  .consent-row input {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    flex: 0 0 auto;
  }

  .form-core .hero-actions {
    margin-top: 4px;
  }

  .form-core .button-primary {
    width: 100%;
  }

  .form-note {
    font-size: 12.5px;
    line-height: 1.55;
  }

  .direct-card,
  .privacy-panel {
    padding: 22px;
    gap: 12px;
  }

  .contact-list li {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 12px 0;
    font-size: 14.5px;
  }

  /* CTA BANDS */
  .band-panel {
    padding: 26px 22px;
    border-radius: var(--radius-shell);
  }

  .band-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .cta-title {
    font-size: clamp(24px, 7.4vw, 32px);
    line-height: 1.08;
  }

  .stack-actions {
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }

  .stack-actions .button {
    width: 100%;
  }

  /* EXPLORE CARDS — index third section */
  .card-grid.cols-3 {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .card-shell {
    padding: 22px;
  }

  .card-shell .card-title {
    font-size: 18px;
    line-height: 1.18;
  }

  .card-shell .card-copy {
    font-size: 14px;
    line-height: 1.55;
  }

  /* FOOTER */
  .footer-shell {
    padding: 40px 22px 32px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    font-size: 11px;
  }

  /* PREVENT HORIZONTAL OVERFLOW */
  body, html {
    overflow-x: hidden;
  }

  @supports (overflow: clip) {
    body,
    html {
      overflow-x: clip;
    }
  }
}

@media (max-width: 430px) {
  :root {
    --pad: 18px;
  }

  .nav-shell {
    padding: 10px 14px;
  }

  .brand-logo {
    width: 86px;
  }

  .nav-actions .button-primary {
    padding: 9px 11px;
  }

  .home-hero-content {
    padding: 92px 18px 28px;
  }

  .brand-lockup,
  .home-hero-title--lockup {
    max-width: 280px !important;
  }

  .home-hero-tag {
    font-size: 16px;
    max-width: 26ch;
  }

  .hero-tech-rail span {
    font-size: 9px;
    padding: 5px 8px;
  }

  .home-hero-bottom {
    padding: 14px 18px 18px;
  }

  .button {
    min-height: 50px;
    padding: 13px 16px;
    font-size: 13.5px;
  }

  .hero-title {
    font-size: clamp(30px, 9vw, 38px);
  }

  .section-title,
  .section-title.small,
  .story-title.small,
  .scene-lead h2,
  .lighting-copy h2 {
    font-size: clamp(26px, 8.2vw, 34px);
  }

  .section-copy,
  .scene-lead p,
  .lighting-copy p {
    font-size: 15px;
  }

  /* AUDIENCE — collapse to 1 column on very small phones */
  .audience {
    grid-template-columns: 1fr;
  }

  .audience__cell {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .audience__cell:last-child {
    border-bottom: 0;
  }

  /* CASE DATA — single column on smallest screens */
  .case__data {
    grid-template-columns: 1fr;
  }

  .case__data > div:nth-child(odd) {
    padding-right: 0;
    border-right: 0;
  }

  .case__data > div:nth-child(even) {
    padding-left: 0;
  }

  /* EXPLODED LEGEND — single column on smallest screens */
  .exploded-reveal__legend {
    grid-template-columns: 1fr;
  }

  .exploded-reveal__legend > div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .exploded-reveal__legend > div:last-child {
    border-bottom: 0;
  }

  .scroll-arch-frame {
    aspect-ratio: 4 / 3;
  }

  .sa-step-title {
    font-size: 21px;
  }

  .sa-step-copy {
    font-size: 14px;
  }

  /* FORM */
  .form-core {
    padding: 22px 18px;
  }

  .field input,
  .field select,
  .field-full input,
  .field-full textarea {
    min-height: 48px;
    padding: 13px 14px;
  }

  .access-band__title,
  .exploded-reveal__title,
  .case__title,
  .access-band__title em {
    font-size: clamp(26px, 8vw, 34px);
  }

  .rear-closing__content h2 {
    font-size: clamp(24px, 8vw, 32px);
  }

  .infra-readout__value {
    font-size: clamp(34px, 11vw, 46px);
  }
}

/* Mobile motion + composition parity */
@media (prefers-reduced-motion: no-preference) {
  .home-hero-video,
  .drive-unit-video {
    display: block;
  }
}

@media (max-width: 768px) {
  .page-shell,
  .page-hero,
  .hero-grid,
  .hero-copy,
  .frame,
  .section,
  .section-inner,
  .scroll-arch,
  .drive-unit-section,
  .drive-unit-section__inner,
  .exploded-reveal,
  .exploded-reveal__inner {
    min-width: 0;
    max-width: 100%;
  }

  .home-hero {
    min-height: 100svh;
  }

  .home-hero-media {
    background: #030404;
  }

  .home-hero-image,
  .home-hero-video {
    height: 100%;
    object-fit: cover;
    object-position: 48% 46%;
    transform: scale(1.02);
  }

  .home-hero-video {
    opacity: 0.92;
  }

  .home-hero-scrim {
    background:
      linear-gradient(to top,
        rgba(7, 8, 8, 0.93) 0%,
        rgba(7, 8, 8, 0.7) 26%,
        rgba(7, 8, 8, 0.24) 58%,
        rgba(7, 8, 8, 0.04) 84%),
      linear-gradient(90deg, rgba(7, 8, 8, 0.12), transparent 42%, rgba(7, 8, 8, 0.18));
  }

  .home-hero-content {
    padding-top: 104px;
    padding-bottom: 38px;
  }

  .home-hero-copy--cinema {
    width: min(100%, 360px);
  }

  .home-hero-title--lockup {
    max-width: min(100%, 310px);
  }

  .brand-lockup {
    max-width: min(100%, 310px) !important;
  }

  .home-hero-tag {
    max-width: 29ch;
    font-size: clamp(16px, 4.35vw, 18px);
    line-height: 1.44;
  }

  body[data-page="technology"] .page-hero {
    overflow: hidden;
    padding: 92px 18px 44px;
  }

  body[data-page="technology"] .hero-grid {
    width: 100%;
    gap: 24px;
  }

  body[data-page="technology"] .hero-copy {
    order: 0;
    gap: 16px;
  }

  body[data-page="technology"] .hero-grid .frame {
    order: 1;
    width: 100%;
    max-width: 100%;
    margin: 4px 0 0;
    padding: 8px;
    overflow: hidden;
    box-shadow: none;
  }

  body[data-page="technology"] .hero-title {
    max-width: 10.8ch;
    font-size: clamp(34px, 9.2vw, 40px);
    line-height: 1.02;
    overflow-wrap: normal;
  }

  body[data-page="technology"] .hero-lede {
    max-width: 34ch;
    font-size: 15px;
    line-height: 1.62;
  }

  body[data-page="technology"] .hero-actions {
    max-width: 100%;
  }

  body[data-page="technology"] .hero-actions .button,
  body[data-page="technology"] .stack-actions .button {
    width: 100%;
    max-width: 100%;
    justify-content: space-between;
  }

  body[data-page="technology"] .hero-visual {
    aspect-ratio: 16 / 10;
    min-height: 0;
  }

  body[data-page="technology"] .visual-contain {
    padding: 12px;
  }

  body[data-page="technology"] .hero-caption {
    padding: 12px 10px 0;
    gap: 8px;
    font-size: 10px;
    line-height: 1.35;
    letter-spacing: 0.04em;
  }

  body[data-page="technology"] .technical-seal--page {
    width: 178px;
  }

  .drive-unit-section {
    margin: -10px 0 68px;
    padding: 0 18px;
  }

  .drive-unit-section__inner {
    gap: 22px;
  }

  .drive-unit-copy {
    max-width: 34ch;
  }

  .drive-unit-media {
    margin: 0;
    aspect-ratio: 4 / 3;
    border-radius: var(--radius-core);
  }

  .drive-unit-video,
  .drive-unit-poster {
    object-fit: contain;
    transform: scale(1.08);
  }

  .drive-unit-caption {
    font-size: 9.5px;
    line-height: 1.35;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .home-hero-video,
  .drive-unit-video {
    display: none !important;
  }
}

/* Mobile vertical art direction polish */
@media (max-width: 768px) {
  :root {
    --nav-h: 56px;
    --pad: clamp(18px, 4.6vw, 22px);
    --section-gap: 72px;
  }

  body {
    background-size: auto, 48px 48px, 48px 48px, auto;
  }

  body::before {
    opacity: 0.1;
  }

  .site-header {
    height: var(--nav-h);
  }

  .nav-shell {
    min-height: var(--nav-h);
    padding: 8px var(--pad);
    gap: 12px;
    background: rgba(7, 8, 8, 0.78);
    border-bottom: 1px solid rgba(242, 239, 231, 0.08);
    backdrop-filter: blur(16px) saturate(130%);
  }

  .site-header.is-scrolled .nav-shell {
    background: rgba(7, 8, 8, 0.9);
    border-color: rgba(242, 239, 231, 0.12);
  }

  .brand-logo {
    width: clamp(82px, 22vw, 96px);
  }

  .nav-toggle {
    width: 38px;
    height: 38px;
    border-radius: 6px;
    border-color: rgba(242, 239, 231, 0.18);
    background: rgba(242, 239, 231, 0.035);
  }

  .nav-toggle span {
    left: 10px;
    width: 16px;
  }

  .nav-toggle span:nth-child(1) {
    top: 14px;
  }

  .nav-toggle span:nth-child(2) {
    top: 19px;
  }

  .nav-toggle span:nth-child(3) {
    top: 24px;
  }

  .menu-open .nav-toggle span:nth-child(1) {
    transform: translateY(5px) rotate(45deg);
  }

  .menu-open .nav-toggle span:nth-child(3) {
    transform: translateY(-5px) rotate(-45deg);
  }

  .nav-panel {
    padding: calc(var(--nav-h) + 20px) var(--pad) 24px;
    background: rgba(4, 5, 5, 0.9);
  }

  .nav-panel-inner {
    padding: 10px;
    gap: 6px;
    border-radius: 8px;
  }

  .nav-panel a {
    padding: 16px 14px;
    font-size: clamp(22px, 6vw, 28px);
  }

  .button {
    min-height: 46px;
    padding: 10px 12px 10px 16px;
    border-radius: 6px;
    font-size: 13px;
  }

  .button-icon {
    width: 30px;
    height: 30px;
  }

  .home-hero {
    display: block;
    min-height: 100svh;
    padding-top: var(--nav-h);
    background:
      radial-gradient(ellipse at 50% 34%, rgba(115, 189, 217, 0.1), transparent 42%),
      linear-gradient(180deg, #050606 0%, #070808 58%, #030404 100%);
  }

  .home-hero-media {
    inset: var(--nav-h) 0 auto;
    height: min(48svh, 430px);
    clip-path: none;
    overflow: visible;
    opacity: 1;
    animation: none;
  }

  .home-hero-media::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    z-index: 2;
    height: 44%;
    pointer-events: none;
    background:
      linear-gradient(180deg, transparent 0%, rgba(7, 8, 8, 0.28) 58%, rgba(7, 8, 8, 0.9) 100%),
      radial-gradient(ellipse at 50% 100%, rgba(242, 239, 231, 0.12), transparent 56%);
  }

  .home-hero-image {
    display: block;
    opacity: 1;
    transition: opacity 420ms var(--ease-standard);
  }

  .home-hero-image,
  .home-hero-video {
    inset: auto auto 0 50%;
    width: min(118vw, 540px);
    height: auto;
    max-width: none;
    object-fit: contain;
    object-position: center bottom;
    transform: translateX(-50%);
    animation: none;
    filter: drop-shadow(0 26px 46px rgba(0, 0, 0, 0.45));
  }

  .home-hero-scrim {
    z-index: 1;
    background:
      linear-gradient(180deg, rgba(7, 8, 8, 0.08) 0%, rgba(7, 8, 8, 0.08) 34%, rgba(7, 8, 8, 0.88) 76%, rgba(7, 8, 8, 0.98) 100%),
      linear-gradient(90deg, rgba(7, 8, 8, 0.34), transparent 34%, rgba(7, 8, 8, 0.22));
  }

  .home-hero-content {
    width: 100%;
    min-height: calc(100svh - var(--nav-h));
    padding: clamp(340px, 50svh, 430px) var(--pad) 22px;
    display: flex;
    align-items: flex-end;
  }

  .home-hero-copy--cinema {
    width: min(100%, 348px);
    max-width: 348px;
    gap: 12px;
  }

  .home-hero-title--lockup,
  .brand-lockup {
    max-width: min(100%, 258px) !important;
  }

  .home-hero-tag {
    max-width: 31ch;
    margin-top: 12px;
    font-size: clamp(15px, 4vw, 16px);
    line-height: 1.44;
    color: rgba(242, 239, 231, 0.92);
    text-shadow: 0 1px 24px rgba(0, 0, 0, 0.75);
  }

  .hero-tech-rail {
    margin-top: 14px;
    gap: 5px;
  }

  .hero-tech-rail span {
    padding: 5px 7px;
    border-color: rgba(242, 239, 231, 0.14);
    background: rgba(7, 8, 8, 0.46);
    font-size: 8.8px;
    letter-spacing: 0.14em;
  }

  .home-hero-content .hero-actions {
    display: grid;
    width: 100%;
    max-width: 348px;
    margin-top: 16px !important;
    gap: 8px;
  }

  .home-hero-content .hero-actions .button {
    width: 100%;
    justify-content: space-between;
  }

  .home-hero-content .button-primary {
    background: rgba(242, 239, 231, 0.94);
    color: var(--ink);
  }

  .home-hero-content .button-secondary {
    border-color: rgba(242, 239, 231, 0.16);
    background: rgba(242, 239, 231, 0.045);
  }

  .home-hero-bottom {
    display: none;
  }

  .page-hero {
    padding: calc(var(--nav-h) + 38px) var(--pad) 42px;
  }

  .page-hero::before {
    background:
      linear-gradient(to bottom, rgba(7, 8, 8, 0.14), rgba(7, 8, 8, 0.76)),
      radial-gradient(circle at 84% 8%, rgba(115, 189, 217, 0.08), transparent 28%);
  }

  .hero-grid {
    gap: 22px;
  }

  .hero-copy {
    gap: 14px;
  }

  .hero-intro {
    max-width: 100%;
    padding: 6px 9px;
    white-space: normal;
    font-size: 9.5px;
    line-height: 1.25;
    letter-spacing: 0.13em;
  }

  .technical-seal--page {
    width: 154px;
  }

  .hero-title,
  body[data-page="technology"] .hero-title {
    max-width: 13.5ch;
    font-size: clamp(30px, 8.4vw, 38px);
    line-height: 1.04;
  }

  .hero-lede,
  body[data-page="technology"] .hero-lede {
    max-width: 35ch;
    font-size: 14.5px;
    line-height: 1.58;
  }

  .hero-actions {
    gap: 8px;
  }

  .hero-actions .button,
  body[data-page="technology"] .hero-actions .button,
  body[data-page="technology"] .stack-actions .button {
    min-height: 46px;
    justify-content: space-between;
  }

  .hero-grid .frame,
  body[data-page="technology"] .hero-grid .frame {
    padding: 7px;
    border-radius: 8px;
  }

  .hero-visual,
  body[data-page="technology"] .hero-visual {
    aspect-ratio: 16 / 10;
  }

  .visual-contain {
    padding: 10px;
  }

  .hero-caption {
    flex-direction: column;
    gap: 2px;
    padding: 10px 4px 0;
    font-size: 9px;
    line-height: 1.32;
    letter-spacing: 0.06em;
  }

  .section {
    margin-bottom: var(--section-gap);
  }

  .section-head {
    gap: 10px;
    margin-bottom: 22px;
  }

  .section-title,
  .section-title.small,
  .story-title.small,
  .scene-lead h2,
  .lighting-copy h2 {
    font-size: clamp(25px, 7.2vw, 34px);
    line-height: 1.06;
  }

  .section-copy,
  .scene-lead p,
  .lighting-copy p {
    max-width: 36ch;
    font-size: 14.5px;
    line-height: 1.58;
  }

  .surface-paper .section-inner {
    padding: 26px 20px;
    border-radius: 8px;
  }

  #explore .section-inner {
    padding: 26px 20px 22px;
  }

  #explore .card-grid.cols-3 {
    gap: 0;
    border-top: 1px solid rgba(7, 8, 8, 0.12);
  }

  #explore .card-shell {
    padding: 18px 0;
    border: 0;
    border-bottom: 1px solid rgba(7, 8, 8, 0.1);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  #explore .card-shell:last-child {
    border-bottom: 0;
  }

  #explore .card-shell .card-title {
    font-size: 17px;
    line-height: 1.18;
  }

  #explore .card-shell .card-copy {
    display: -webkit-box;
    overflow: hidden;
    font-size: 13.5px;
    line-height: 1.5;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }

  #explore .text-link {
    font-size: 13.5px;
  }

  .scene-lead {
    padding: 44px 0 18px;
    gap: 10px;
  }

  .silhouette-scene,
  .lighting-signature {
    margin-bottom: 64px;
  }

  .cinema-frame--side {
    min-height: 46svh;
    display: flex;
    align-items: center;
    border-top-color: rgba(242, 239, 231, 0.06);
    border-bottom-color: rgba(242, 239, 231, 0.06);
  }

  .cinema-frame--side img {
    object-fit: contain;
    object-position: center center;
    padding: 18px 0;
  }

  .cinema-frame::after {
    background:
      linear-gradient(to bottom, rgba(7, 8, 8, 0.08), transparent 42%, rgba(7, 8, 8, 0.42)),
      radial-gradient(ellipse at center, transparent 54%, rgba(7, 8, 8, 0.46) 100%);
  }

  .lighting-grid {
    gap: 14px;
  }

  .lighting-copy {
    padding-bottom: 4px;
  }

  .light-panel,
  .light-panel--front,
  .light-panel--rear {
    min-height: 52svh;
  }

  .light-panel--front {
    min-height: 42svh;
  }

  .light-panel--rear {
    min-height: 58svh;
  }

  .principle-rail,
  .clarify,
  .decision,
  .infra-readout {
    overflow: hidden;
    border-radius: 8px;
  }

  .principle {
    padding: 18px;
  }

  .principle__title {
    font-size: 17px;
  }

  .principle__copy {
    font-size: 13.5px;
  }

  .scroll-arch-media {
    top: var(--nav-h);
  }

  .scroll-arch-frame {
    border-radius: 8px;
  }

  .drive-unit-section {
    margin: 8px 0 72px;
    padding: 0 var(--pad);
  }

  .drive-unit-section__inner {
    gap: 18px;
  }

  .drive-unit-copy {
    order: 1;
    max-width: 36ch;
  }

  .drive-unit-copy .section-title.small {
    font-size: clamp(24px, 6.6vw, 30px);
    line-height: 1.08;
  }

  .drive-unit-copy .section-copy {
    font-size: 14px;
    line-height: 1.54;
  }

  .drive-unit-media {
    order: 0;
    margin: 0 calc(-1 * var(--pad));
    aspect-ratio: 3 / 2;
    border-right: 0;
    border-left: 0;
    border-radius: 0;
  }

  .drive-unit-video,
  .drive-unit-poster {
    padding: 12px;
    transform: scale(1);
  }

  .drive-unit-poster {
    transition: opacity 420ms var(--ease-standard);
  }

  .drive-unit-specs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 20px;
  }

  .drive-unit-specs > div,
  .drive-unit-specs > div + div {
    padding: 14px 12px 14px 0;
    border-bottom: 0;
  }

  .drive-unit-specs > div + div {
    padding-left: 12px;
  }

  .drive-unit-specs dd {
    font-size: 14.5px;
    line-height: 1.24;
  }

  .drive-unit-caption {
    font-size: 8.8px;
    letter-spacing: 0.12em;
  }

  .rear-closing {
    min-height: 76svh;
  }

  .rear-closing__image {
    object-position: 50% 50%;
  }

  .rear-closing__content {
    padding: calc(var(--nav-h) + 32px) var(--pad) 28px;
  }
}

@media (max-width: 430px) {
  .home-hero-media {
    height: 46svh;
  }

  .home-hero-content {
    padding-top: clamp(310px, 48svh, 390px);
  }

  .home-hero-title--lockup,
  .brand-lockup {
    max-width: min(100%, 236px) !important;
  }

  .home-hero-tag {
    max-width: 30ch;
    font-size: 15px;
  }

  .home-hero-image,
  .home-hero-video {
    width: min(116vw, 510px);
  }

  .hero-title,
  body[data-page="technology"] .hero-title {
    font-size: clamp(28px, 8vw, 34px);
  }

  .section-title,
  .section-title.small,
  .story-title.small,
  .scene-lead h2,
  .lighting-copy h2 {
    font-size: clamp(24px, 7vw, 31px);
  }

  .nav-panel a {
    font-size: 22px;
  }
}

@keyframes mobile-hero-drift {
  from {
    transform: translateX(-50%) scale(1.01);
  }

  to {
    transform: translateX(-50%) scale(1.045);
  }
}

@media (max-width: 768px) and (prefers-reduced-motion: no-preference) {
  .home-hero-video,
  .drive-unit-video {
    display: block !important;
  }

  .home-hero-image,
  .home-hero-video {
    animation: mobile-hero-drift 16s var(--ease-standard) infinite alternate;
  }

  .home-hero-media.is-video-playing .home-hero-image,
  .drive-unit-media.is-video-playing .drive-unit-poster {
    opacity: 0;
  }

  .home-hero-media.is-video-blocked .home-hero-video,
  .drive-unit-media.is-video-blocked .drive-unit-video {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .scroll-arch {
    padding: 0;
    margin-bottom: 72px;
  }

  .scroll-arch-head {
    padding: 0 var(--pad);
    margin-bottom: 18px;
  }

  .scroll-arch-inner {
    display: block;
    padding: 0 var(--pad);
  }

  .scroll-arch-media {
    position: sticky;
    top: calc(var(--nav-h) + 8px);
    z-index: 4;
    margin: 0 calc(-1 * var(--pad));
    padding: 0;
  }

  .scroll-arch-frame {
    aspect-ratio: 16 / 10;
    max-height: none;
    border-radius: 0;
    border-right: 0;
    border-left: 0;
    box-shadow: 0 22px 46px rgba(0, 0, 0, 0.34);
  }

  .scroll-arch-img {
    padding: 10px 12px;
  }

  .scroll-arch-counter {
    left: 14px;
    top: 14px;
    background: rgba(7, 8, 8, 0.72);
    border: 1px solid rgba(242, 239, 231, 0.1);
  }

  .scroll-arch-steps {
    padding: 22px 0 74px;
    gap: 42svh;
  }

  .sa-step {
    max-width: 100%;
    padding: 18px 18px 20px;
    border: 1px solid rgba(242, 239, 231, 0.12);
    border-radius: 8px;
    background:
      linear-gradient(180deg, rgba(14, 17, 18, 0.9), rgba(7, 8, 8, 0.82));
    opacity: 0.72;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
  }

  .sa-step.is-active {
    opacity: 1;
    border-color: rgba(115, 189, 217, 0.32);
    background:
      linear-gradient(180deg, rgba(16, 29, 34, 0.92), rgba(7, 8, 8, 0.86));
  }

  .sa-step-n {
    margin-bottom: 10px;
    font-size: 10px;
  }

  .sa-step-title {
    margin-bottom: 10px;
    font-size: clamp(20px, 5.8vw, 24px);
    line-height: 1.12;
  }

  .sa-step-copy {
    font-size: 13.8px;
    line-height: 1.56;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-hero-video,
  .drive-unit-video {
    display: none !important;
  }
}

@media (max-width: 768px) and (max-height: 720px) {
  .home-hero-content {
    padding-top: 300px;
  }

  .home-hero-title--lockup,
  .brand-lockup {
    max-width: min(100%, 220px) !important;
  }

  .home-hero-tag {
    font-size: 14.5px;
  }
}
