:root {
  --bg: #080b10;
  --panel: #10151c;
  --panel-soft: #141b24;
  --panel-solid: #0d1118;
  --text: #f4f2ec;
  --muted: rgba(244, 242, 236, 0.66);
  --soft: rgba(244, 242, 236, 0.82);
  --faint: rgba(244, 242, 236, 0.1);
  --line: rgba(244, 242, 236, 0.18);
  --line-strong: rgba(244, 242, 236, 0.38);
  --metal: #c8cdd2;
  --accent: #9EB4CC;
  --accent-blue: #AABED1;
  --accent-blue-soft: rgba(170, 190, 209, 0.18);
  --accent-metal: #D1C8AE;
  --shadow: rgba(0, 0, 0, 0.5);
  --page-pad: clamp(18px, 2.2vw, 42px);
  --cinema-max: 1880px;
  --wide-pad: max(var(--page-pad), calc(50vw - 940px));
  --header-safe: 24px;
  --mono: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
  --sans: "Inter Tight", Inter, Arial, sans-serif;
  --display: "Space Grotesk", "Inter Tight", Inter, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 0;
  background: var(--bg);
  max-width: 100%;
  overflow-x: clip;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(244, 242, 236, 0.025), transparent 34rem),
    linear-gradient(180deg, #080b10 0%, #0b0e12 38%, #090b0f 72%, #0b0c0d 100%),
    var(--bg);
  color: var(--text);
  font-family: var(--sans);
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
  text-rendering: geometricPrecision;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -4;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.28) 100%);
}

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

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

main {
  position: relative;
  overflow-x: clip;
  background:
    radial-gradient(ellipse at 78% 36%, rgba(244, 242, 236, 0.025), transparent 30rem),
    linear-gradient(180deg, transparent 0%, rgba(12, 15, 20, 0.72) 42%, rgba(9, 11, 15, 0.94) 100%);
}

section,
[id] {
  scroll-margin-top: var(--header-safe);
}

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

input,
select,
textarea {
  border-radius: 0;
}

:focus-visible {
  outline: 1px solid var(--accent-blue);
  outline-offset: 4px;
}

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

.mono {
  font-family: var(--mono);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.noise {
  position: fixed;
  inset: 0;
  z-index: -2;
  opacity: 0.04;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px),
    radial-gradient(circle at 70% 70%, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px);
  background-size: 3px 3px, 5px 5px;
  mix-blend-mode: screen;
}

/* Header */
.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1660px, calc(100vw - 40px));
  height: 54px;
  padding: 0 16px 0 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(10, 13, 18, 0.66);
  backdrop-filter: blur(22px) saturate(1.08);
  box-shadow: 0 16px 58px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(244, 242, 236, 0.05);
  transform: translateX(-50%);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.brand-mark {
  position: relative;
  width: 22px;
  height: 22px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
}

.brand-mark::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 4px;
  width: 9px;
  height: 13px;
  border: 1px solid var(--accent-blue);
  border-bottom: 0;
  transform: translateX(-50%) skewX(-12deg);
}

.brand-mark::after {
  content: "";
  position: absolute;
  left: 5px;
  right: 5px;
  bottom: 5px;
  height: 2px;
  background: var(--accent-metal);
}

nav {
  display: flex;
  gap: 26px;
  color: var(--muted);
  font-size: 14px;
}

nav a,
.cta,
.submit-link {
  transition: color 180ms ease, border-color 180ms ease, opacity 180ms ease;
}

nav a:hover,
.cta:hover,
.submit-link:hover {
  color: var(--text);
  border-color: var(--accent-blue);
}

.cta,
.submit-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: max-content;
  margin-top: 30px;
  padding-bottom: 7px;
  border-bottom: 1px solid rgba(244, 242, 236, 0.72);
  color: var(--text);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  overflow: clip;
  isolation: isolate;
  contain: paint;
  background:
    radial-gradient(ellipse at 72% 48%, rgba(170, 190, 209, 0.055), transparent 34rem),
    #07090d;
}

.hero-bg {
  position: absolute;
  inset: 0 0 auto;
  z-index: -3;
  height: 100svh;
  overflow: hidden;
  contain: paint;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 0;
  filter: brightness(0.86) contrast(1.02) saturate(0.92);
  transform: scale(1.055);
  transform-origin: 58% 50%;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 69% 45%, rgba(244, 242, 236, 0.11), transparent 26%),
    linear-gradient(90deg, rgba(7, 9, 13, 0.96) 0%, rgba(7, 9, 13, 0.8) 31%, rgba(7, 9, 13, 0.28) 57%, rgba(7, 9, 13, 0.36) 100%),
    linear-gradient(180deg, rgba(7, 9, 13, 0.76) 0%, rgba(7, 9, 13, 0.12) 44%, rgba(7, 9, 13, 0.9) 100%);
}

.hero-fog,
.hero-led,
.hero-floor-light {
  position: absolute;
  z-index: -1;
  pointer-events: none;
}

.hero-fog {
  inset: 0;
  height: 100svh;
  opacity: 0;
  background:
    radial-gradient(ellipse at 74% 34%, rgba(188, 207, 224, 0.06), transparent 34%),
    radial-gradient(ellipse at 56% 58%, rgba(170, 190, 209, 0.045), transparent 36%);
  filter: blur(16px);
  transform: translate3d(2.5%, 0, 0) scale(1.03);
  mix-blend-mode: screen;
}

.hero-led {
  left: clamp(250px, 39vw, 650px);
  right: clamp(72px, 8vw, 150px);
  top: clamp(380px, 52svh, 560px);
  height: 5px;
  opacity: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent 0%, rgba(170, 190, 209, 0.18) 8%, rgba(240, 248, 255, 0.82) 48%, rgba(170, 190, 209, 0.18) 92%, transparent 100%);
  box-shadow:
    0 0 10px rgba(205, 229, 255, 0.34),
    0 0 24px rgba(170, 190, 209, 0.14);
  transform: scaleX(0.35);
  transform-origin: center;
}

.hero-floor-light {
  left: clamp(300px, 43vw, 700px);
  right: clamp(80px, 9vw, 180px);
  top: clamp(540px, 68svh, 720px);
  height: 190px;
  opacity: 0;
  background:
    radial-gradient(ellipse at 48% 6%, rgba(170, 190, 209, 0.08), rgba(206, 229, 255, 0.035) 30%, transparent 70%),
    linear-gradient(90deg, transparent, rgba(170, 190, 209, 0.055), transparent);
  filter: blur(18px);
  transform: translateY(18px) scaleX(0.72);
}

.hero-inner {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  gap: clamp(24px, 3.2vw, 46px);
  width: min(var(--cinema-max), calc(100vw - var(--wide-pad) - var(--wide-pad)));
  min-height: 100svh;
  margin: 0 auto;
  padding: clamp(118px, 15vh, 172px) 0 32px;
}

.hero-meta {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  color: var(--soft);
  font-size: 12px;
  opacity: 0;
  transform: translateY(10px);
}

.hero-body {
  display: grid;
  align-items: center;
}

.hero-copy {
  position: relative;
  max-width: min(720px, 46vw);
}

.hero-copy::before {
  content: "";
  position: absolute;
  inset: -36px -44px -30px -44px;
  z-index: -1;
  background: radial-gradient(ellipse at 20% 46%, rgba(7, 9, 13, 0.9), rgba(7, 9, 13, 0.72) 48%, transparent 74%);
  pointer-events: none;
}

.eyebrow,
.section-label {
  color: var(--muted);
  font-size: 12px;
}

.accent-label {
  color: var(--accent-metal);
}

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

h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: 0;
}

h1 {
  max-width: 720px;
  margin-top: 18px;
  font-size: clamp(48px, 4.4vw, 78px);
  line-height: 1.02;
}

h2 {
  max-width: 980px;
  font-size: clamp(38px, 4.7vw, 76px);
  line-height: 1.05;
}

h3 {
  font-size: clamp(26px, 2.2vw, 38px);
  line-height: 1.04;
}

.intro,
.design-copy p,
.interior-panel p,
.engineering-copy p,
.final p,
.powertrain p,
.modes-heading p {
  color: var(--soft);
  font-size: clamp(17px, 1.18vw, 21px);
  line-height: 1.48;
}

.intro {
  max-width: 560px;
  margin: 30px 0 0;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin: 24px 0 42px;
}

.section-heading h2 {
  margin: 0;
}

.section-kicker {
  flex: 0 0 auto;
  color: var(--accent-blue);
  font-size: 11px;
  text-shadow: none;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: max-content;
  margin-top: 30px;
  padding-bottom: 7px;
  border-bottom: 1px solid rgba(244, 242, 236, 0.76);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cta::after,
.submit-link::after {
  content: "->";
  transition: transform 180ms ease;
}

.cta:hover::after,
.submit-link:hover::after {
  transform: translateX(4px);
}

.hero .cta::after {
  content: "->";
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  column-gap: clamp(22px, 4vw, 76px);
  border-top: 1px solid rgba(244, 242, 236, 0.32);
  border-bottom: 1px solid rgba(244, 242, 236, 0.18);
  background: linear-gradient(90deg, rgba(7, 9, 13, 0.54), transparent 58%);
  backdrop-filter: blur(6px);
  opacity: 0;
  transform: translateY(18px);
}

.hero-stats article {
  position: relative;
  min-width: 0;
  padding: clamp(16px, 1.8vw, 24px) 0;
  border-right: 0;
  opacity: 0;
  transform: translateY(12px);
}

.hero-stats article + article::before {
  content: "";
  position: absolute;
  left: clamp(-38px, -2vw, -12px);
  top: 24%;
  bottom: 24%;
  width: 1px;
  background: rgba(244, 242, 236, 0.16);
}

.hero-stats span,
.stat-grid span {
  display: block;
  color: var(--muted);
  font-size: 11px;
}

.hero-stats strong,
.stat-grid strong {
  display: block;
  margin-top: 12px;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0;
  white-space: nowrap;
}

.hero-stats strong {
  font-size: clamp(38px, 4vw, 68px);
  line-height: 0.94;
}

.hero-stats small,
.stat-grid small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.1em;
  line-height: 1.35;
  text-transform: uppercase;
}

body.is-loaded .hero-bg img {
  animation: heroImageReveal 1600ms cubic-bezier(0.16, 1, 0.3, 1) 200ms both;
}

body.is-loaded .hero-fog {
  animation: heroFogReveal 4200ms ease 240ms both;
}

body.is-loaded .hero-led {
  animation: ledWake 1850ms cubic-bezier(0.16, 1, 0.3, 1) 500ms both;
}

body.is-loaded .hero-floor-light {
  animation: floorFlash 1700ms cubic-bezier(0.16, 1, 0.3, 1) 680ms both;
}

body.is-loaded .hero-meta {
  animation: introText 680ms cubic-bezier(0.16, 1, 0.3, 1) 980ms both;
}

.hero-copy .eyebrow,
.hero-copy h1,
.hero-copy .intro,
.hero-copy .cta {
  opacity: 0;
  transform: translateY(18px);
}

body.is-loaded .hero-copy .eyebrow {
  animation: introText 650ms cubic-bezier(0.16, 1, 0.3, 1) 1080ms both;
}

body.is-loaded .hero-copy h1 {
  animation: introText 760ms cubic-bezier(0.16, 1, 0.3, 1) 1200ms both;
}

body.is-loaded .hero-copy .intro {
  animation: introText 720ms cubic-bezier(0.16, 1, 0.3, 1) 1450ms both;
}

body.is-loaded .hero-copy .cta {
  animation: introText 720ms cubic-bezier(0.16, 1, 0.3, 1) 1520ms both;
}

body.is-loaded .hero-stats {
  animation: statsReveal 760ms cubic-bezier(0.16, 1, 0.3, 1) 1700ms both;
}

body.is-loaded .hero-stats article {
  animation: introText 620ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

body.is-loaded .hero-stats article:nth-child(1) {
  animation-delay: 1740ms;
}

body.is-loaded .hero-stats article:nth-child(2) {
  animation-delay: 1840ms;
}

body.is-loaded .hero-stats article:nth-child(3) {
  animation-delay: 1940ms;
}

body.is-loaded .hero-stats article:nth-child(4) {
  animation-delay: 2040ms;
}

@keyframes heroImageReveal {
  0% {
    opacity: 0;
    filter: brightness(0.66) contrast(1.02) saturate(0.9);
    transform: scale(1.075);
  }

  100% {
    opacity: 1;
    filter: brightness(0.98) contrast(1.02) saturate(0.94);
    transform: scale(1.03);
  }
}

@keyframes heroFogReveal {
  0% {
    opacity: 0;
    transform: translate3d(3%, 1%, 0) scale(1.04);
  }

  42% {
    opacity: 0.54;
  }

  100% {
    opacity: 0.34;
    transform: translate3d(-1%, 0, 0) scale(1.01);
  }
}

@keyframes ledWake {
  0% {
    opacity: 0;
    transform: scaleX(0.24);
    filter: blur(2px);
  }

  36% {
    opacity: 0.78;
    transform: scaleX(1.02);
    filter: blur(0);
  }

  54% {
    opacity: 0.58;
  }

  100% {
    opacity: 0.62;
    transform: scaleX(1);
    filter: blur(0);
  }
}

@keyframes floorFlash {
  0% {
    opacity: 0;
    transform: translateY(22px) scaleX(0.54);
  }

  42% {
    opacity: 0.42;
    transform: translateY(0) scaleX(1);
  }

  100% {
    opacity: 0.24;
    transform: translateY(8px) scaleX(0.92);
  }
}

@keyframes introText {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes statsReveal {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Shared sections */
.section {
  position: relative;
  isolation: isolate;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: clamp(96px, 8vw, 148px) var(--wide-pad);
  border-top: 1px solid rgba(244, 242, 236, 0.07);
  scroll-margin-top: var(--header-safe);
}

.section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.section::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -1px;
  z-index: -1;
  height: clamp(76px, 9vw, 150px);
  pointer-events: none;
  background: linear-gradient(180deg, rgba(16, 19, 23, 0.56), transparent 76%);
  opacity: 0.74;
}

.section-tight {
  padding-top: clamp(86px, 7vw, 120px);
}

.chapter-system::before {
  background:
    radial-gradient(ellipse at 76% 8%, rgba(170, 190, 209, 0.055), transparent 36rem),
    radial-gradient(ellipse at 22% 52%, rgba(244, 242, 236, 0.04), transparent 28rem),
    linear-gradient(180deg, rgba(14, 17, 22, 0.98), rgba(12, 15, 20, 0.82) 58%, rgba(10, 12, 16, 0.96));
}

.chapter-system + .chapter-system,
.chapter-material + .chapter-material,
.chapter-campaign + .chapter-campaign {
  border-top-color: rgba(244, 242, 236, 0.035);
}

.chapter-material::before {
  background:
    radial-gradient(ellipse at 18% 18%, rgba(197, 166, 106, 0.055), transparent 32rem),
    radial-gradient(ellipse at 86% 54%, rgba(170, 190, 209, 0.045), transparent 32rem),
    linear-gradient(180deg, rgba(13, 15, 18, 0.88), rgba(14, 15, 17, 0.97));
}

.chapter-campaign::before {
  background:
    linear-gradient(180deg, rgba(10, 13, 18, 0.4), rgba(13, 15, 18, 0.9)),
    radial-gradient(ellipse at 50% 20%, rgba(244, 242, 236, 0.04), transparent 34rem);
}

.image-card,
.design-notes article,
.mode-grid article,
.request-form,
.power-map {
  border: 1px solid rgba(244, 242, 236, 0.2);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent),
    var(--panel);
}

.image-card {
  position: relative;
  margin: 0;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 50% 16%, rgba(244, 242, 236, 0.045), transparent 44%),
    var(--panel-solid);
  box-shadow: 0 30px 110px rgba(0, 0, 0, 0.24), inset 0 1px 0 rgba(244, 242, 236, 0.06);
}

.image-card::before {
  content: none;
}

.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.01) saturate(0.92);
  transition: transform 700ms cubic-bezier(0.16, 1, 0.3, 1), filter 700ms ease;
}

.image-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(7, 9, 13, 0), rgba(7, 9, 13, 0.04) 58%, rgba(7, 9, 13, 0.22));
  pointer-events: none;
}

.image-card figcaption {
  position: absolute;
  left: 20px;
  bottom: 18px;
  z-index: 2;
  color: rgba(244, 242, 236, 0.72);
  font-size: 11px;
}

.image-card:hover img {
  filter: brightness(1) contrast(1.01) saturate(0.94);
  transform: scale(1.025);
}

/* Design */
.design-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 3vw, 46px);
}

.motion-breaker + .design-section {
  padding-top: clamp(118px, 9vw, 172px);
}

.design-section::after,
.engineering::after,
.interior::after,
.gallery::after {
  background:
    radial-gradient(ellipse at 68% 34%, rgba(244, 242, 236, 0.055), transparent 28rem),
    radial-gradient(ellipse at 42% 58%, rgba(170, 190, 209, 0.035), transparent 34rem),
    linear-gradient(180deg, rgba(19, 21, 23, 0.52), transparent 74%);
  opacity: 0.68;
}

.side-label {
  justify-self: start;
  writing-mode: initial;
  transform: none;
}

.design-copy {
  max-width: 840px;
}

.design-copy p {
  max-width: 650px;
  margin-top: 24px;
}

.design-grid {
  grid-column: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.34fr) minmax(390px, 0.66fr);
  gap: clamp(28px, 3vw, 56px);
  margin-top: clamp(34px, 4vw, 62px);
}

.design-grid,
.engineering-layout,
.interior-panel,
.gallery-grid {
  position: relative;
  z-index: 0;
}

.design-grid::before,
.engineering-layout::before,
.interior-panel::before,
.gallery-grid::before {
  content: "";
  position: absolute;
  inset: clamp(-54px, -4vw, -28px);
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 36% 34%, rgba(244, 242, 236, 0.05), transparent 28rem),
    radial-gradient(ellipse at 72% 58%, rgba(170, 190, 209, 0.04), transparent 34rem);
  opacity: 0.55;
}

.design-grid > *,
.engineering-layout > *,
.interior-panel > *,
.gallery-grid > * {
  position: relative;
  z-index: 1;
}

.large-image {
  min-height: clamp(560px, 40vw, 780px);
}

.large-image img {
  object-position: center 52%;
}

.design-notes {
  display: grid;
  align-content: start;
  gap: 0;
  padding-top: 4px;
}

.design-notes article,
.design-tech-card,
.micro-specs article,
.mode-grid article {
  padding: 24px;
  transition: color 200ms ease, border-color 200ms ease, background-color 200ms ease;
}

.design-notes article:hover,
.design-tech-card:hover,
.micro-specs article:hover,
.mode-grid article:hover,
.stat-grid article:hover {
  border-color: rgba(244, 242, 236, 0.22);
  background: transparent;
}

.design-notes span,
.design-tech-card span,
.micro-specs span,
.mode-grid span {
  display: block;
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 11px;
}

.design-notes p,
.mode-grid p {
  color: var(--soft);
  line-height: 1.42;
}

.design-notes article {
  padding: 0 0 22px;
  border: 0;
  border-bottom: 1px solid rgba(244, 242, 236, 0.12);
  border-radius: 0;
  background: transparent;
}

.design-notes article + article {
  padding-top: 22px;
}

.design-tech-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: clamp(6px, 1vw, 16px);
  border-top: 1px solid rgba(244, 242, 236, 0.14);
  border-bottom: 1px solid rgba(244, 242, 236, 0.08);
}

.design-tech-card {
  display: grid;
  grid-template-columns: 64px 1fr;
  min-height: 0;
  align-content: center;
  gap: 16px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(244, 242, 236, 0.08);
  background: transparent;
  box-shadow: none;
}

.design-tech-card:last-child {
  border-bottom: 0;
}

.design-tech-card span {
  margin-bottom: 0;
  color: var(--accent-blue);
  font-size: 10px;
}

.design-tech-card strong {
  display: block;
  font-family: var(--display);
  font-size: clamp(19px, 1.25vw, 24px);
  line-height: 1.12;
  letter-spacing: 0;
}

.design-tech-card small {
  display: block;
  grid-column: 2;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.25;
}

.design-section .image-card img,
.engineering .image-card img,
.interior .image-card img,
.gallery .image-card img {
  filter: brightness(0.98) contrast(1.01) saturate(0.92);
}

.interior .image-card::after,
.gallery .image-card::after {
  background:
    radial-gradient(ellipse at 54% 36%, rgba(244, 242, 236, 0.025), transparent 42%),
    linear-gradient(180deg, rgba(7, 9, 13, 0), rgba(7, 9, 13, 0.03) 58%, rgba(7, 9, 13, 0.2));
}

/* Performance */
.performance {
  position: relative;
  padding-bottom: clamp(56px, 6vw, 90px);
}

.performance h2 {
  max-width: 920px;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 2.4vw, 42px);
  align-items: start;
  padding: clamp(22px, 2.4vw, 36px) 0;
  border-top: 1px solid rgba(244, 242, 236, 0.22);
  border-bottom: 1px solid rgba(244, 242, 236, 0.12);
}

.stat-grid article {
  display: block;
  grid-column: auto;
  min-width: 0;
  min-height: 0;
  padding: 0;
  border-top: 0;
  border-left: 1px solid rgba(244, 242, 236, 0.12);
  padding-left: clamp(14px, 1.5vw, 24px);
  overflow: hidden;
  background: transparent;
  box-shadow: none;
}

.stat-grid article:first-child {
  grid-column: auto;
  border-left: 0;
  padding-left: 0;
}

.stat-value {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-top: clamp(28px, 3vw, 52px);
}

.stat-grid .stat-value strong {
  margin-top: 0;
  font-size: clamp(52px, 5.2vw, 92px);
  line-height: 0.9;
}

.stat-value em {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 12px;
  font-style: normal;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-shadow: none;
}

.stat-grid small {
  max-width: 260px;
  margin-top: clamp(22px, 2vw, 32px);
}
/* Engineering */
.engineering {
  padding-top: clamp(96px, 8vw, 132px);
  scroll-margin-top: var(--header-safe);
}

.engineering-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.42fr);
  gap: clamp(34px, 6vw, 112px);
  align-items: end;
  margin-bottom: clamp(28px, 4vw, 56px);
}

.engineering-heading .eyebrow {
  margin-top: 28px;
}

.engineering-heading h2 {
  max-width: 940px;
  margin-top: 16px;
  font-size: clamp(44px, 5.1vw, 82px);
}

.engineering-heading > p {
  max-width: 560px;
  color: var(--soft);
  font-size: clamp(18px, 1.25vw, 22px);
  line-height: 1.42;
}

.engineering-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.58fr) minmax(320px, 0.62fr);
  gap: clamp(34px, 4vw, 72px);
  align-items: start;
}

.detail-image {
  height: min(56vw, 820px);
  min-height: 620px;
}

.detail-image img {
  object-position: center;
}

.engineering-copy {
  display: grid;
  gap: clamp(16px, 1.4vw, 24px);
  align-content: start;
  padding-top: 4px;
}

.engineering-image {
  isolation: isolate;
  position: sticky;
  top: 112px;
}

.engineering-image::before {
  opacity: 0.78;
}

.tech-callout {
  position: absolute;
  z-index: 4;
  width: min(260px, 34%);
  padding: 0 0 0 14px;
  border-left: 1px solid rgba(244, 242, 236, 0.34);
  background: transparent;
  backdrop-filter: none;
  box-shadow: none;
}

.tech-callout::before {
  content: "";
  position: absolute;
  top: 50%;
  width: clamp(48px, 7vw, 96px);
  height: 1px;
  background: linear-gradient(90deg, rgba(244, 242, 236, 0.46), transparent);
}

.tech-callout span {
  display: block;
  margin-bottom: 7px;
  color: var(--accent-metal);
  font-size: 10px;
}

.tech-callout strong {
  display: block;
  font-size: clamp(15px, 1.15vw, 18px);
  line-height: 1.12;
}

.callout-wheel {
  left: 26px;
  top: 26px;
}

.callout-wheel::before,
.callout-brake::before {
  left: 100%;
}

.callout-tire {
  right: 26px;
  top: 28%;
}

.callout-tire::before,
.callout-cooling::before {
  right: 100%;
  background: linear-gradient(90deg, transparent, rgba(244, 242, 236, 0.46));
}

.callout-brake {
  left: 32px;
  bottom: 24%;
}

.callout-cooling {
  right: 30px;
  bottom: 28px;
}

.micro-specs {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: 4px;
  border-top: 1px solid rgba(244, 242, 236, 0.16);
  border-bottom: 1px solid rgba(244, 242, 236, 0.1);
}

.micro-specs article {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 18px;
  align-items: baseline;
  min-height: 0;
  padding: 18px 0;
  border-bottom: 1px solid rgba(244, 242, 236, 0.08);
  background: transparent;
  box-shadow: none;
}

.micro-specs article:last-child {
  border-bottom: 0;
}

.micro-specs strong {
  display: block;
  font-family: var(--display);
  font-size: clamp(20px, 1.45vw, 27px);
  line-height: 1.15;
  letter-spacing: 0;
}

.status-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 0;
}

.status-row-top {
  margin-bottom: 2px;
}

.status-row span {
  padding: 0;
  border: 0;
  color: var(--muted);
  font-size: 10px;
  background: transparent;
}

.status-row span + span::before {
  content: "";
  display: inline-block;
  width: 26px;
  height: 1px;
  margin-right: 12px;
  vertical-align: middle;
  background: rgba(244, 242, 236, 0.24);
}

.engineering-note {
  padding: 22px 0 0;
  border: 0;
  border-top: 1px solid rgba(244, 242, 236, 0.14);
  border-radius: 0;
  background: transparent;
}

.engineering-note span {
  display: block;
  margin-bottom: 16px;
  color: var(--accent-metal);
  font-size: 10px;
}

.engineering-note p {
  color: var(--soft);
  font-size: 17px;
  line-height: 1.45;
}

/* Powertrain */
.powertrain {
  padding-top: clamp(56px, 6vw, 90px);
  padding-bottom: clamp(58px, 6.5vw, 98px);
}

.powertrain-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.62fr) minmax(620px, 1.38fr);
  gap: clamp(42px, 6.2vw, 118px);
  align-items: center;
}

.powertrain-copy h2 {
  margin-top: 16px;
}

.powertrain p:not(.eyebrow) {
  max-width: 670px;
  margin-top: 24px;
}

.power-map {
  position: relative;
  min-height: clamp(500px, 31vw, 640px);
  overflow: hidden;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(244, 242, 236, 0.075), transparent 30%),
    linear-gradient(180deg, rgba(244, 242, 236, 0.025), transparent 48%);
  box-shadow: none;
  border-left: 0;
  border-right: 0;
  border-radius: 0;
}

.power-map::before {
  content: "";
  position: absolute;
  z-index: 1;
  left: 8%;
  right: 8%;
  top: 36%;
  height: 24%;
  border-top: 1px solid rgba(244, 242, 236, 0.18);
  border-bottom: 1px solid rgba(244, 242, 236, 0.1);
  border-radius: 50%;
  transform: skewX(-10deg);
  opacity: 0.7;
}

.power-map::after {
  content: "";
  position: absolute;
  inset: 8% 2% 4%;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(13, 17, 23, 0.42), rgba(13, 17, 23, 0.08) 46%, rgba(13, 17, 23, 0.36)),
    url("assets/nova-exterior-dark.png") center 58% / 92% auto no-repeat;
  opacity: 0.32;
  filter: saturate(0.82) contrast(0.95) brightness(0.86);
  pointer-events: none;
}

.map-line {
  position: absolute;
  z-index: 1;
  left: 10%;
  right: 10%;
  top: 50%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(244, 242, 236, 0.46), transparent);
  box-shadow: none;
  opacity: 0.52;
  transform: scaleX(1);
  transform-origin: center;
  transition: opacity 900ms ease, transform 1200ms cubic-bezier(0.16, 1, 0.3, 1);
}

.power-map.reveal .map-line {
  opacity: 0;
  transform: scaleX(0.18);
}

.power-map.reveal.visible .map-line {
  opacity: 0.62;
  transform: scaleX(1);
}

.map-node {
  position: absolute;
  z-index: 2;
  width: clamp(170px, 11vw, 220px);
  min-height: 0;
  padding: 0 0 0 18px;
  border-left: 1px solid rgba(244, 242, 236, 0.34);
  border-radius: 0;
  background: transparent;
  text-align: left;
  backdrop-filter: none;
  transition: color 220ms ease, transform 220ms ease;
}

.map-node:hover,
.map-node:focus-within {
  border-color: rgba(244, 242, 236, 0.58);
  box-shadow: none;
  transform: translateY(-2px);
}

.map-node span {
  color: var(--muted);
  font-size: 10px;
}

.map-node strong {
  display: block;
  margin-top: 7px;
  font-family: var(--display);
  font-size: clamp(17px, 1.2vw, 21px);
  letter-spacing: 0;
}

.n1 {
  left: 11%;
  top: 22%;
}

.n2 {
  left: 38%;
  top: 56%;
}

.n3 {
  right: 9%;
  top: 22%;
}

.n4 {
  right: 18%;
  bottom: 18%;
}

/* Interior */
.interior-panel {
  display: grid;
  grid-template-columns: minmax(360px, 0.42fr) minmax(0, 1.58fr);
  gap: clamp(42px, 6.4vw, 112px);
  align-items: center;
}

.interior-panel h2 {
  margin-top: 16px;
}

.interior-panel p:not(.eyebrow) {
  margin-top: 24px;
}

.cockpit-frame {
  height: clamp(560px, 38vw, 780px);
}

.cockpit-frame img {
  object-position: center;
}

/* Motion breaker */
.motion-breaker {
  position: relative;
  width: 100%;
  min-height: clamp(560px, 54vw, 940px);
  overflow: hidden;
  isolation: isolate;
  border-top: 1px solid rgba(244, 242, 236, 0.055);
  border-bottom: 1px solid rgba(244, 242, 236, 0.055);
  background:
    linear-gradient(180deg, rgba(11, 14, 19, 0.98), rgba(11, 14, 19, 0.52) 42%, rgba(13, 14, 16, 0.98)),
    var(--bg);
  scroll-margin-top: var(--header-safe);
}

.motion-breaker img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.94) contrast(1.01) saturate(0.9);
  transform: scale(1.02);
  transition: transform 1200ms cubic-bezier(0.16, 1, 0.3, 1), filter 900ms ease;
}

.motion-breaker.reveal img {
  transform: scale(1.055);
}

.motion-breaker.reveal.visible img {
  transform: scale(1.015);
}

.motion-breaker::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(7, 9, 13, 0.45), rgba(7, 9, 13, 0.08) 48%, rgba(7, 9, 13, 0.36)),
    linear-gradient(180deg, rgba(7, 9, 13, 0.08), rgba(7, 9, 13, 0.42));
}

.motion-breaker-copy {
  position: absolute;
  left: var(--wide-pad);
  bottom: clamp(54px, 7vw, 118px);
  z-index: 2;
  max-width: 720px;
}

.motion-breaker-copy span {
  display: block;
  margin-bottom: 18px;
  color: var(--accent-blue);
  font-size: 11px;
}

.motion-breaker-copy h2 {
  max-width: 760px;
  font-size: clamp(46px, 6.2vw, 96px);
  line-height: 1.02;
}

/* Modes */
.modes {
  width: 100%;
  padding-top: clamp(58px, 6vw, 94px);
}

.modes-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.45fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: end;
  margin-top: 24px;
}

.modes-heading p {
  max-width: 520px;
}

.mode-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(12px, 1vw, 20px);
  margin-top: 54px;
}

.mode-card {
  position: relative;
  display: flex;
  min-height: clamp(300px, 19vw, 380px);
  flex-direction: column;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(244, 242, 236, 0.035), transparent 36%),
    var(--panel);
  box-shadow: inset 0 1px 0 rgba(244, 242, 236, 0.04);
}

.mode-card::before {
  content: "";
  position: absolute;
  left: 20px;
  right: 20px;
  top: 52px;
  height: 1px;
  background: linear-gradient(90deg, var(--accent-blue), transparent);
  opacity: 0.26;
  transition: opacity 220ms ease, box-shadow 220ms ease;
}

.mode-card::after {
  content: "";
  position: absolute;
  inset: auto 20px 20px auto;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--muted);
  box-shadow: 0 0 0 transparent;
  transition: background-color 220ms ease, box-shadow 220ms ease;
}

.mode-card:hover,
.mode-card:focus-within,
.mode-card.is-active {
  border-color: var(--accent-blue);
  background:
    linear-gradient(145deg, rgba(244, 242, 236, 0.055), transparent 42%),
    var(--panel-soft);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(244, 242, 236, 0.06);
}

.mode-card:hover::before,
.mode-card:focus-within::before,
.mode-card.is-active::before {
  opacity: 0.56;
  box-shadow: none;
}

.mode-card:hover::after,
.mode-card:focus-within::after,
.mode-card.is-active::after {
  background: var(--accent-blue);
  box-shadow: none;
}

.mode-grid h3 {
  margin-bottom: 24px;
}

.mode-card p {
  margin-bottom: 28px;
}

.mode-card small {
  display: block;
  margin-top: auto;
  color: var(--accent-blue);
  font-size: 10px;
}

.mode-card small::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 2px;
  margin-right: 10px;
  vertical-align: middle;
  background: linear-gradient(90deg, var(--accent-blue), transparent);
  box-shadow: none;
}

/* Gallery */
.gallery {
  padding-bottom: clamp(60px, 6vw, 96px);
}

.gallery h2 {
  max-width: 980px;
  margin: 24px 0 50px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.42fr 0.58fr;
  gap: clamp(18px, 1.4vw, 28px);
  margin-bottom: clamp(28px, 2.6vw, 48px);
}

.gallery-feature {
  height: clamp(600px, 40vw, 820px);
}

.gallery-feature img {
  object-position: center;
}

.gallery-stack {
  display: grid;
  gap: clamp(18px, 1.4vw, 28px);
}

.gallery-stack figure {
  height: clamp(290px, 19.2vw, 396px);
}

.gallery-stack figure:first-child img {
  object-position: center;
}

.gallery-stack figure:last-child img {
  object-position: center;
}

.marquee-gallery {
  overflow-x: hidden;
  overflow-y: hidden;
  margin-inline: calc(0px - var(--wide-pad));
  padding: 18px var(--wide-pad);
  border-top: 1px solid rgba(244, 242, 236, 0.07);
  border-bottom: 1px solid rgba(244, 242, 236, 0.07);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  overscroll-behavior-x: contain;
  touch-action: pan-x;
  user-select: none;
  contain: layout paint;
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 18px;
  animation: galleryLoop 42s linear infinite;
  touch-action: pan-x;
  will-change: transform;
}

.marquee-gallery:hover .marquee-track {
  animation-play-state: paused;
}

.marquee-gallery figure {
  flex: 0 0 min(740px, 76vw);
  width: min(740px, 76vw);
  height: clamp(340px, 25vw, 500px);
  box-shadow: none;
  touch-action: pan-x;
  user-select: none;
}

.marquee-gallery img {
  -webkit-user-drag: none;
  user-select: none;
}

@keyframes galleryLoop {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 9px));
  }
}

/* Request */
.final {
  min-height: 76vh;
  padding-top: clamp(70px, 8vw, 118px);
  border-top-color: transparent;
}

.final::before {
  background:
    linear-gradient(180deg, rgba(7, 9, 13, 0.08), rgba(8, 11, 16, 0.9) 26%, rgba(7, 9, 13, 0.98) 100%),
    linear-gradient(90deg, rgba(7, 9, 13, 0.92), rgba(7, 9, 13, 0.54)),
    radial-gradient(ellipse at 74% 18%, rgba(197, 166, 106, 0.07), transparent 30rem),
    url("assets/nova-exterior-dark.png") right 18% / min(980px, 58vw) auto no-repeat;
}

.request-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 600px);
  gap: clamp(42px, 7vw, 128px);
  align-items: start;
  margin-top: 26px;
}

.request-copy h2 {
  margin-top: 16px;
  font-size: clamp(48px, 8vw, 118px);
  line-height: 0.96;
}

.request-copy p:not(.eyebrow) {
  max-width: 680px;
  margin-top: 18px;
}

.request-form {
  display: grid;
  gap: 16px;
  padding: 24px;
  background:
    linear-gradient(145deg, rgba(244, 242, 236, 0.04), transparent 42%),
    rgba(17, 23, 34, 0.72);
  backdrop-filter: blur(14px);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.24), inset 0 1px 0 rgba(244, 242, 236, 0.06);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.request-form label {
  display: grid;
  gap: 9px;
}

.request-form label span {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.request-form input,
.request-form select,
.request-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: rgba(7, 10, 15, 0.84);
  color: var(--text);
  padding: 14px 13px;
  outline: none;
  font-size: 16px;
  transition: border-color 180ms ease, background-color 180ms ease;
}

.request-form input::placeholder,
.request-form textarea::placeholder {
  color: rgba(244, 242, 236, 0.34);
}

.request-form input:focus,
.request-form select:focus,
.request-form textarea:focus {
  border-color: rgba(244, 242, 236, 0.42);
  background: rgba(9, 13, 19, 0.96);
  box-shadow: 0 0 0 3px rgba(244, 242, 236, 0.06);
}

.submit-link {
  margin-top: 8px;
}

/* Footer and reveals */
.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  width: calc(100vw - var(--wide-pad) - var(--wide-pad));
  max-width: var(--cinema-max);
  margin: 0 auto 26px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 11px;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 700ms ease,
    transform 800ms cubic-bezier(0.16, 1, 0.3, 1);
}

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

.image-card.reveal img {
  transform: scale(1.035);
}

.image-card.reveal.visible img {
  transform: scale(1);
}

.image-card.reveal.visible:hover img {
  transform: scale(1.025);
}

.stat-grid article:nth-child(2).reveal,
.micro-specs article:nth-child(2).reveal,
.mode-grid article:nth-child(2).reveal,
.gallery-stack figure:nth-child(2).reveal {
  transition-delay: 70ms;
}

.stat-grid article:nth-child(3).reveal,
.micro-specs article:nth-child(3).reveal,
.mode-grid article:nth-child(3).reveal {
  transition-delay: 140ms;
}

.stat-grid article:nth-child(4).reveal,
.micro-specs article:nth-child(4).reveal,
.mode-grid article:nth-child(4).reveal {
  transition-delay: 210ms;
}

@media (max-width: 1180px) {
  .hero-body,
  .design-section,
  .design-grid,
  .engineering-heading,
  .engineering-layout,
  .powertrain-grid,
  .interior-panel,
  .modes-heading,
  .request-layout,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .hero-body {
    align-items: start;
  }

  .hero-copy {
    max-width: min(760px, 72vw);
  }

  .design-grid {
    grid-column: 1;
  }

  .side-label {
    writing-mode: initial;
    transform: none;
  }

  .engineering-image {
    position: relative;
    top: auto;
  }

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

@media (max-width: 820px) {
  :root {
    --header-safe: 16px;
  }

  .site-header {
    top: 12px;
    width: calc(100vw - 24px);
    height: 52px;
    padding-inline: 16px;
  }

  nav {
    gap: 14px;
    font-size: 13px;
  }

  nav a:nth-child(2),
  nav a:nth-child(3) {
    display: none;
  }

  .section {
    width: 100%;
    padding: 92px var(--wide-pad);
  }

  .motion-breaker + .design-section {
    padding-top: 104px;
  }

  .section-heading {
    display: grid;
    gap: 14px;
    margin-bottom: 34px;
  }

  .hero-bg img {
    object-position: 64% center;
  }

  .hero-bg::after {
    background:
      radial-gradient(ellipse at 22% 36%, rgba(7, 9, 13, 0.98), rgba(7, 9, 13, 0.76) 44%, transparent 74%),
      linear-gradient(90deg, rgba(7, 9, 13, 0.96) 0%, rgba(7, 9, 13, 0.84) 48%, rgba(7, 9, 13, 0.38) 100%),
      linear-gradient(180deg, rgba(7, 9, 13, 0.74) 0%, rgba(7, 9, 13, 0.14) 44%, rgba(7, 9, 13, 0.92) 100%);
  }

  .hero-led {
    left: 38vw;
    right: 8vw;
    top: 58svh;
  }

  .hero-floor-light {
    left: 32vw;
    right: 7vw;
    top: 73svh;
  }

  .hero-inner {
    width: calc(100vw - 32px);
    min-height: 100svh;
    padding: 106px 0 28px;
  }

  .hero-meta {
    display: grid;
    gap: 10px;
  }

  h1 {
    font-size: clamp(42px, 11.8vw, 66px);
    line-height: 1.01;
  }

  h2 {
    font-size: clamp(36px, 9.4vw, 64px);
    line-height: 1.04;
  }

  .intro {
    max-width: 430px;
  }

  .hero-copy {
    max-width: min(100%, 520px);
  }

  .hero-copy::before {
    inset: -26px -20px -26px;
    background: radial-gradient(ellipse at 18% 42%, rgba(7, 9, 13, 0.98), rgba(7, 9, 13, 0.76) 48%, transparent 78%);
  }

  .hero-stats {
    grid-template-columns: 1fr 1fr;
    column-gap: 22px;
  }

  .hero-stats article:nth-child(odd)::before {
    content: none;
  }

  .hero-stats article:nth-child(2n) {
    border-right: 0;
  }

  .hero-stats article:nth-child(-n + 2) {
    border-bottom: 0;
  }

  .large-image,
  .detail-image,
  .cockpit-frame,
  .gallery-feature,
  .gallery-stack figure {
    min-height: 0;
    height: 360px;
  }

  .stat-grid,
  .stat-grid article,
  .stat-grid article:first-child {
    grid-template-columns: 1fr;
  }

  .stat-grid {
    gap: 0;
  }

  .stat-grid article {
    grid-column: 1;
    padding: 20px 0;
  }

  .micro-specs,
  .design-tech-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .tech-callout {
    display: none;
  }

  .power-map {
    min-height: 520px;
  }

  .map-line {
    left: 50%;
    top: 9%;
    bottom: 9%;
    width: 1px;
    height: auto;
    background: linear-gradient(180deg, transparent, rgba(244, 242, 236, 0.42), transparent);
    transform: scaleY(1);
  }

  .power-map.reveal .map-line {
    transform: scaleY(0.18);
  }

  .power-map.reveal.visible .map-line {
    transform: scaleY(1);
  }

  .map-node {
    left: 24px;
    right: auto;
    width: calc(100% - 48px);
    padding-left: 14px;
  }

  .n1 {
    top: 8%;
  }

  .n2 {
    top: 32%;
  }

  .n3 {
    top: 56%;
  }

  .n4 {
    top: auto;
    bottom: 7%;
  }

  .marquee-gallery figure {
    height: 310px;
  }

  .marquee-gallery {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .marquee-gallery::-webkit-scrollbar {
    display: none;
  }

  .marquee-track {
    animation: none;
  }

  .marquee-gallery figure {
    scroll-snap-align: center;
  }

  .mode-grid {
    display: flex;
    gap: 14px;
    margin-inline: -16px;
    overflow-x: auto;
    padding: 0 16px 12px;
    scroll-snap-type: x mandatory;
    contain: layout paint;
  }

  .mode-card {
    flex: 0 0 82vw;
    min-height: 260px;
    scroll-snap-align: start;
  }

  .motion-breaker {
    min-height: 520px;
  }

  .motion-breaker-copy {
    left: 16px;
    right: 16px;
    bottom: 48px;
  }

  .motion-breaker-copy h2 {
    font-size: clamp(40px, 10vw, 58px);
  }

  .site-footer {
    display: grid;
    width: calc(100vw - 32px);
  }

  @keyframes heroImageReveal {
    0% {
      opacity: 0;
      filter: brightness(0.68) contrast(1.02) saturate(0.96);
      transform: scale(1.18) translateY(13%);
    }

    100% {
      opacity: 1;
      filter: brightness(0.98) contrast(1.02) saturate(0.94);
      transform: scale(1.14) translateY(15%);
    }
  }
}

@media (max-width: 560px) {
  :root {
    --header-safe: 14px;
  }

  .brand {
    font-size: 14px;
  }

  nav {
    gap: 12px;
    font-size: 12px;
  }

  .hero-copy::before {
    inset: -22px -18px -24px;
  }

  .hero-stats,
  .mode-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats article {
    border-right: 0;
    border-bottom: 1px solid rgba(244, 242, 236, 0.1);
  }

  .hero-stats article + article::before {
    content: none;
  }

  .hero-stats article:last-child {
    border-bottom: 0;
  }

  .request-copy h2 {
    font-size: clamp(46px, 14vw, 76px);
    line-height: 1;
  }
}

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

  body.is-loaded .hero-bg img,
  body.is-loaded .hero-meta,
  body.is-loaded .hero-copy .eyebrow,
  body.is-loaded .hero-copy h1,
  body.is-loaded .hero-copy .intro,
  body.is-loaded .hero-copy .cta,
  body.is-loaded .hero-stats,
  body.is-loaded .hero-stats article {
    opacity: 1;
    transform: none;
  }

  body.is-loaded .hero-bg img {
    filter: brightness(0.98) contrast(1.02) saturate(0.94);
  }

  body.is-loaded .hero-fog {
    opacity: 0.44;
    transform: none;
  }

  body.is-loaded .hero-led {
    opacity: 0.72;
    transform: none;
  }

  body.is-loaded .hero-floor-light {
    opacity: 0.3;
    transform: none;
  }
}
