:root {
  --ink: #111310;
  --ink-2: #1d201b;
  --paper: #f5f0e6;
  --paper-2: #e7dfd0;
  --line: rgba(17, 19, 16, 0.12);
  --line-dark: rgba(247, 244, 235, 0.16);
  --muted: #6e726a;
  --white: #ffffff;
  --wood: #c49a62;
  --moss: #24483b;
  --clay: #9a4b42;
  --blue: #24516f;
  --graphite: #090d0b;
  --steel: #9ea79c;
  --radius: 8px;
  --shadow: 0 28px 80px rgba(18, 16, 12, 0.16);
  --shadow-tight: 0 18px 48px rgba(18, 16, 12, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: linear-gradient(180deg, #f7f3ea 0%, var(--paper) 42%, #ebe3d5 100%);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

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

canvas {
  display: block;
}

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

h1,
h2,
h3,
p {
  margin-top: 0;
  overflow-wrap: break-word;
}

h1 {
  max-width: 560px;
  margin-bottom: 24px;
  font-size: clamp(54px, 5.7vw, 82px);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 720px;
  font-size: clamp(54px, 5.8vw, 88px);
  color: var(--paper);
}

h2 {
  max-width: 820px;
  margin-bottom: 18px;
  font-size: clamp(34px, 4.2vw, 58px);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.2;
}

p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 22px 46px;
  color: var(--ink);
  transition: background 180ms ease, border 180ms ease, padding 180ms ease;
}

.site-header:not(.is-scrolled):not(.is-open) {
  color: var(--paper);
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(245, 240, 230, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(20px);
}

.site-header.is-scrolled {
  padding-top: 14px;
  padding-bottom: 14px;
}

.brand {
  display: inline-grid;
  grid-template-columns: auto auto;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--ink);
  color: var(--paper);
  font-weight: 900;
}

.site-header:not(.is-scrolled):not(.is-open) .brand-mark {
  border-color: rgba(247, 244, 235, 0.22);
  background: rgba(247, 244, 235, 0.12);
  color: var(--paper);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.brand strong,
.brand em {
  display: block;
}

.brand strong {
  font-size: 15px;
  letter-spacing: 0.08em;
}

.brand em {
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
}

.site-header:not(.is-scrolled):not(.is-open) .brand em {
  color: rgba(247, 244, 235, 0.62);
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 24px;
}

.site-nav a,
.header-link {
  color: rgba(17, 19, 16, 0.72);
  font-size: 14px;
  font-weight: 780;
}

.site-header:not(.is-scrolled):not(.is-open) .site-nav a,
.site-header:not(.is-scrolled):not(.is-open) .header-link {
  color: rgba(247, 244, 235, 0.72);
}

.site-nav a.is-active,
.site-nav a:hover,
.header-link:hover {
  color: var(--ink);
}

.site-header:not(.is-scrolled):not(.is-open) .site-nav a.is-active,
.site-header:not(.is-scrolled):not(.is-open) .site-nav a:hover,
.site-header:not(.is-scrolled):not(.is-open) .header-link:hover {
  color: var(--paper);
}

.header-link {
  justify-self: end;
  padding: 12px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.36);
}

.site-header:not(.is-scrolled):not(.is-open) .header-link {
  border-color: rgba(247, 244, 235, 0.18);
  background: rgba(247, 244, 235, 0.1);
  backdrop-filter: blur(16px);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
}

.site-header:not(.is-scrolled):not(.is-open) .nav-toggle {
  border-color: rgba(247, 244, 235, 0.2);
  background: rgba(247, 244, 235, 0.1);
}

.site-header:not(.is-scrolled):not(.is-open) .nav-toggle span {
  background: var(--paper);
}

.nav-toggle span + span {
  margin-top: 5px;
}

.hero {
  --hero-x: 0;
  --hero-y: 0;
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  padding: 132px 56px 42px;
  overflow: hidden;
  background: #070807;
  color: var(--paper);
  isolation: isolate;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(6, 8, 7, 0.98) 0%, rgba(6, 8, 7, 0.88) 34%, rgba(6, 8, 7, 0.22) 63%, rgba(6, 8, 7, 0) 100%),
    linear-gradient(0deg, rgba(6, 8, 7, 0.68) 0%, rgba(6, 8, 7, 0.14) 28%, rgba(6, 8, 7, 0) 62%);
  pointer-events: none;
}

.hero-stage {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: clip;
  background:
    linear-gradient(90deg, rgba(7, 8, 7, 0.98) 0%, rgba(7, 8, 7, 0.78) 44%, rgba(7, 8, 7, 0.28) 100%),
    linear-gradient(0deg, rgba(7, 8, 7, 0.96) 0%, rgba(7, 8, 7, 0.24) 64%),
    url("assets/real-factory-line-a.webp") center right / cover no-repeat,
    linear-gradient(145deg, #070807 0%, #12150f 48%, #0a0c0a 100%);
}

.hero-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px);
  background-size: 112px 112px;
  mask-image: linear-gradient(90deg, transparent 0%, black 40%, black 100%);
  opacity: 0.34;
}

.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 700ms ease;
}

.webgl-ready .hero-canvas {
  opacity: 1;
}

.webgl-ready .factory-cinema,
.webgl-ready .product-flight {
  opacity: 0;
  pointer-events: none;
}

.factory-cinema,
.product-flight,
.process-rail {
  position: absolute;
  z-index: 0;
}

.factory-cinema {
  top: 11%;
  right: 4.2%;
  width: min(790px, 56vw);
  height: min(540px, 59vh);
  perspective: 1400px;
  transform: translate3d(calc(var(--hero-x) * -18px), calc(var(--hero-y) * -12px), 0);
  transition: transform 260ms ease-out;
}

.factory-frame {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(247, 244, 235, 0.16);
  border-radius: var(--radius);
  background: #10130f;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.42);
}

.factory-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.08) brightness(0.9);
}

.factory-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 36%),
    linear-gradient(90deg, rgba(6, 8, 7, 0.1), rgba(6, 8, 7, 0.38));
  pointer-events: none;
}

.factory-main {
  top: 6%;
  right: 0;
  width: 78%;
  height: 58%;
  transform: rotateY(-12deg) rotateX(4deg) translateZ(0);
  animation: documentaryDrift 12s ease-in-out infinite;
}

.factory-secondary {
  bottom: 15%;
  left: 0;
  width: 47%;
  height: 34%;
  opacity: 0.88;
  transform: rotateY(16deg) rotateX(2deg) translateZ(-70px);
  animation: documentaryDrift 13s ease-in-out infinite reverse;
}

.factory-tertiary {
  right: 8%;
  bottom: 0;
  width: 54%;
  height: 34%;
  opacity: 0.82;
  transform: rotateY(-8deg) rotateX(-2deg) translateZ(55px);
  animation: documentaryDrift 14s ease-in-out infinite;
}

.product-flight {
  display: none;
  right: 3.8%;
  bottom: 132px;
  width: min(840px, 58vw);
  height: 330px;
  perspective: 1500px;
  transform: translate3d(calc(var(--hero-x) * 20px), calc(var(--hero-y) * 10px), 0);
  transition: transform 260ms ease-out;
}

.flight-card {
  position: absolute;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 10px;
  margin: 0;
  padding: 13px;
  overflow: hidden;
  border: 1px solid rgba(247, 244, 235, 0.42);
  border-radius: var(--radius);
  background: #f8f6ef;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
  transform-style: preserve-3d;
  animation: cardFloat 8.5s ease-in-out infinite;
}

.flight-card img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
  background: #f8f6ef;
  filter: saturate(1.02) contrast(1.08) brightness(1.16);
}

.flight-card figcaption {
  color: rgba(17, 19, 16, 0.76);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.flight-card-wood {
  top: 14px;
  left: 0;
  width: 25%;
  height: 36%;
  transform: rotateY(18deg) rotateX(3deg) translateZ(-20px);
}

.flight-card-slats {
  bottom: 10px;
  left: 13%;
  width: 28%;
  height: 42%;
  transform: rotateY(14deg) rotateX(-2deg) translateZ(36px);
  animation-delay: -1.6s;
}

.flight-card-blank {
  top: 52px;
  left: 34%;
  width: 32%;
  height: 45%;
  transform: rotateY(-8deg) rotateX(4deg) translateZ(74px);
  animation-delay: -3s;
}

.flight-card-finished {
  top: 0;
  right: 0;
  width: 18%;
  height: 76%;
  transform: rotateY(-16deg) rotateX(5deg) translateZ(44px);
  animation-delay: -2.1s;
}

.flight-card-color {
  right: 18%;
  bottom: 0;
  width: 32%;
  height: 39%;
  transform: rotateY(-12deg) rotateX(-3deg) translateZ(18px);
  animation-delay: -4.4s;
}

.process-rail {
  right: 5.2%;
  bottom: 52px;
  display: grid;
  grid-template-columns: repeat(5, auto);
  gap: 8px;
  align-items: center;
  color: rgba(247, 244, 235, 0.68);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.process-rail span {
  position: relative;
  padding: 8px 10px;
  border: 1px solid rgba(247, 244, 235, 0.16);
  border-radius: 999px;
  background: rgba(247, 244, 235, 0.08);
  backdrop-filter: blur(12px);
}

@keyframes documentaryDrift {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -10px;
  }
}

@keyframes cardFloat {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -12px;
  }
}

.hero-content,
.hero-proof,
.hero-stage-note {
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 650px;
}

.eyebrow {
  margin-bottom: 18px;
  color: var(--moss);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero-content p {
  max-width: 620px;
  color: rgba(247, 244, 235, 0.74);
  font-size: 20px;
}

.hero .eyebrow {
  color: #d8be82;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 850;
  transition: transform 160ms ease, background 160ms ease, border 160ms ease;
}

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

.button.primary {
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
}

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

.hero .button.primary {
  border-color: rgba(247, 244, 235, 0.92);
  background: var(--paper);
  color: var(--ink);
}

.hero .button.secondary {
  border-color: rgba(247, 244, 235, 0.2);
  background: rgba(247, 244, 235, 0.08);
  color: var(--paper);
  backdrop-filter: blur(18px);
}

.hero-route-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 680px;
  margin-top: 28px;
}

.hero-route-chips span {
  padding: 9px 12px;
  border: 1px solid rgba(247, 244, 235, 0.16);
  border-radius: 999px;
  background: rgba(247, 244, 235, 0.075);
  color: rgba(247, 244, 235, 0.76);
  font-size: 12px;
  font-weight: 820;
  transition: background 260ms ease, border-color 260ms ease, color 260ms ease, box-shadow 260ms ease;
}

.hero-route-chips span.is-active {
  border-color: rgba(216, 190, 130, 0.74);
  background: rgba(216, 190, 130, 0.22);
  color: #fff8e6;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14), 0 10px 34px rgba(216, 190, 130, 0.12);
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 1040px;
  margin-top: 46px;
  border: 1px solid rgba(247, 244, 235, 0.18);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(247, 244, 235, 0.14);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.hero-proof span {
  display: grid;
  gap: 4px;
  padding: 20px;
  background: rgba(247, 244, 235, 0.08);
  backdrop-filter: blur(16px);
}

.hero-proof strong {
  font-size: 16px;
}

.hero-proof small {
  color: rgba(247, 244, 235, 0.62);
  font-size: 13px;
  line-height: 1.35;
}

.hero-stage-note {
  position: absolute;
  right: 56px;
  bottom: 42px;
  display: grid;
  gap: 4px;
  min-width: 220px;
  padding: 18px 20px;
  border: 1px solid rgba(247, 244, 235, 0.16);
  border-radius: var(--radius);
  background: rgba(8, 12, 10, 0.34);
  color: var(--paper);
  backdrop-filter: blur(18px);
}

.hero-stage-note span {
  color: rgba(247, 244, 235, 0.62);
  font-size: 12px;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-stage-note strong {
  font-size: 15px;
}

.hero-rebuilt {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 26px;
  padding: 124px 56px 34px;
}

.hero-rebuilt::after {
  background:
    linear-gradient(90deg, rgba(6, 8, 7, 0.98) 0%, rgba(6, 8, 7, 0.88) 34%, rgba(6, 8, 7, 0.42) 61%, rgba(6, 8, 7, 0.16) 100%),
    linear-gradient(0deg, rgba(6, 8, 7, 0.88) 0%, rgba(6, 8, 7, 0.28) 35%, rgba(6, 8, 7, 0) 74%);
}

.hero-rebuilt .hero-stage {
  background:
    linear-gradient(90deg, rgba(7, 8, 7, 0.98) 0%, rgba(7, 8, 7, 0.7) 48%, rgba(7, 8, 7, 0.18) 100%),
    linear-gradient(0deg, rgba(7, 8, 7, 0.9) 0%, rgba(7, 8, 7, 0.2) 68%),
    url("assets/real-factory-line-c.webp") center right / cover no-repeat,
    #070807;
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(420px, 0.78fr) minmax(560px, 1.22fr);
  gap: clamp(34px, 5vw, 76px);
  align-items: end;
  width: 100%;
}

.hero-rebuilt .hero-content {
  max-width: 720px;
}

.hero-rebuilt .hero h1,
.hero-rebuilt h1 {
  max-width: 620px;
  margin-bottom: 22px;
  font-size: clamp(52px, 4.8vw, 74px);
  line-height: 0.98;
}

.hero-rebuilt .hero-content p {
  max-width: 680px;
  font-size: 19px;
  line-height: 1.62;
}

.hero-visual {
  position: relative;
  display: grid;
  gap: 14px;
  align-self: end;
  min-height: 0;
}

.hero-factory-window {
  position: relative;
  min-height: 285px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(247, 244, 235, 0.18);
  border-radius: var(--radius);
  background: #111511;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.36);
}

.hero-factory-window img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 285px;
  object-fit: cover;
  object-position: center 50%;
  transform: scale(1.002);
  filter: saturate(1.02) contrast(1.03) brightness(0.98);
}

.hero-factory-window::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 42%),
    linear-gradient(0deg, rgba(8, 10, 8, 0.72), rgba(8, 10, 8, 0.04) 58%);
  pointer-events: none;
}

.hero-factory-window figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  z-index: 1;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  color: var(--paper);
}

.hero-factory-window figcaption span,
.route-board-head span {
  color: #d8be82;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-factory-window figcaption strong {
  max-width: 360px;
  font-size: 14px;
  line-height: 1.35;
  text-align: right;
}

.hero-route-board {
  display: grid;
  gap: 12px;
  padding: 14px;
  border: 1px solid rgba(247, 244, 235, 0.16);
  border-radius: var(--radius);
  background: rgba(10, 14, 11, 0.68);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(18px);
}

.route-board-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
}

.route-board-head strong {
  color: var(--paper);
  font-size: 15px;
}

.route-steps {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.route-steps li {
  position: relative;
  display: grid;
  grid-template-rows: 62px auto auto;
  gap: 7px;
  min-width: 0;
  padding: 8px;
  border: 1px solid rgba(247, 244, 235, 0.12);
  border-radius: 6px;
  background: rgba(247, 244, 235, 0.07);
  color: var(--paper);
  transition: background 220ms ease, border-color 220ms ease, transform 220ms ease;
}

.route-steps li::after {
  content: "";
  position: absolute;
  top: 42px;
  right: -10px;
  width: 12px;
  height: 1px;
  background: rgba(216, 190, 130, 0.5);
}

.route-steps li:last-child::after {
  display: none;
}

.route-steps li.is-active {
  border-color: rgba(216, 190, 130, 0.72);
  background: rgba(216, 190, 130, 0.18);
  transform: translateY(-3px);
}

.route-steps img {
  width: 100%;
  height: 62px;
  object-fit: cover;
  border-radius: 4px;
  background: rgba(247, 244, 235, 0.12);
  filter: saturate(0.96) contrast(1.04);
}

.route-steps span {
  color: #d8be82;
  font-size: 11px;
  font-weight: 900;
}

.route-steps strong {
  min-width: 0;
  color: rgba(247, 244, 235, 0.86);
  font-size: 12px;
  line-height: 1.2;
}

.hero-rebuilt .hero-proof {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: 100%;
  max-width: none;
  margin-top: 0;
}

.section {
  padding: 96px 56px;
}

.section,
.markets,
.contact {
  scroll-margin-top: 84px;
}

.section-intro {
  max-width: 960px;
  margin-bottom: 34px;
}

.section-intro p:not(.eyebrow) {
  max-width: 740px;
}

.coverage-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
  gap: 28px;
  align-items: stretch;
}

.range-photo {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.range-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #f1ecdf;
}

.range-photo {
  position: relative;
  min-height: 540px;
  background: #ede7dc;
}

.range-photo img {
  filter: saturate(0.95) contrast(1.02);
  object-position: center;
}

.range-photo figcaption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid rgba(245, 240, 230, 0.18);
  border-radius: 6px;
  overflow: hidden;
  background: rgba(17, 19, 16, 0.72);
  backdrop-filter: blur(12px);
}

.range-photo figcaption span {
  padding: 14px 12px;
  color: var(--paper);
  font-size: 12px;
  font-weight: 860;
  text-align: center;
}

.coverage-grid,
.route-grid {
  display: grid;
  gap: 12px;
}

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

.coverage-grid article,
.route-grid article,
.proof-list article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.5);
}

.coverage-grid article {
  box-shadow: 0 12px 34px rgba(18, 16, 12, 0.055);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.coverage-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(17, 19, 16, 0.2);
  box-shadow: 0 22px 62px rgba(18, 16, 12, 0.12);
}

.coverage-grid span {
  display: block;
  margin-bottom: 34px;
  color: var(--wood);
  font-size: 12px;
  font-weight: 900;
}

.coverage-grid p,
.route-grid p,
.proof-list p {
  margin-bottom: 0;
  font-size: 15px;
  line-height: 1.55;
}

.scene-coverage {
  background: linear-gradient(180deg, #f5f0e6 0%, #eee7d8 100%);
}

.scene-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(340px, 0.82fr);
  gap: 18px;
  align-items: stretch;
  margin-bottom: 18px;
}

.scene-video-card {
  position: relative;
  min-height: 520px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--ink);
  box-shadow: var(--shadow);
}

.scene-video-card video,
.scene-video-card img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  filter: saturate(0.94) contrast(1.03);
}

.scene-video-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(17, 19, 16, 0) 42%, rgba(17, 19, 16, 0.76) 100%),
    linear-gradient(90deg, rgba(17, 19, 16, 0.18), rgba(17, 19, 16, 0));
  pointer-events: none;
}

.scene-video-card figcaption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  z-index: 1;
  display: grid;
  gap: 6px;
  max-width: 520px;
  color: var(--paper);
}

.scene-video-card strong {
  font-size: 18px;
}

.scene-video-card span {
  color: rgba(247, 244, 235, 0.72);
  font-size: 14px;
  line-height: 1.55;
}

.scene-proof-panel {
  display: grid;
  align-content: end;
  min-height: 520px;
  padding: 34px;
  border: 1px solid rgba(17, 19, 16, 0.1);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.52), rgba(255, 255, 255, 0.32)),
    linear-gradient(145deg, rgba(36, 72, 59, 0.13), rgba(196, 154, 98, 0.12));
  box-shadow: var(--shadow-tight);
}

.scene-proof-panel > span {
  width: max-content;
  margin-bottom: 24px;
  padding: 10px 12px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--paper);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.scene-proof-panel h3 {
  max-width: 560px;
  margin-bottom: 18px;
  font-size: clamp(28px, 3.5vw, 42px);
  line-height: 1.05;
}

.scene-proof-panel p {
  max-width: 520px;
  font-size: 16px;
}

.scene-proof-list {
  display: grid;
  gap: 1px;
  margin-top: 26px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--line);
}

.scene-proof-list strong {
  padding: 15px 16px;
  background: rgba(255, 255, 255, 0.54);
  color: #30352e;
  font-size: 14px;
  line-height: 1.35;
}

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

.scene-grid article {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.56);
  box-shadow: 0 16px 46px rgba(18, 16, 12, 0.07);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.scene-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(17, 19, 16, 0.2);
  box-shadow: 0 24px 70px rgba(18, 16, 12, 0.12);
}

.scene-grid img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: contain;
  background: #f8f6ef;
  border-bottom: 1px solid var(--line);
  filter: saturate(0.98) contrast(1.04);
}

.scene-grid div {
  padding: 22px;
}

.scene-grid span {
  display: block;
  margin-bottom: 14px;
  color: var(--moss);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.scene-grid h3 {
  margin-bottom: 10px;
  font-size: 21px;
}

.scene-grid p {
  margin-bottom: 0;
  font-size: 15px;
  line-height: 1.55;
}

.scene-program-link {
  display: inline-block;
  margin-top: 18px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: rgba(17, 19, 16, 0.28);
  text-underline-offset: 5px;
}

.scene-program-link:hover {
  text-decoration-color: currentColor;
}

.product-directory-group + .product-directory-group {
  margin-top: 48px;
}

.product-directory-group > .eyebrow {
  margin-bottom: 16px;
}

.capability {
  background: linear-gradient(180deg, #121511 0%, #0b0e0c 100%);
  color: var(--paper);
}

.capability .eyebrow {
  color: #d3b16e;
}

.capability p {
  color: rgba(247, 244, 235, 0.68);
}

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

.route-grid article {
  display: grid;
  grid-template-rows: auto auto auto 1fr;
  min-height: 100%;
  padding: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.045);
  border-color: var(--line-dark);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.route-grid article:hover {
  transform: translateY(-5px);
  border-color: rgba(216, 190, 130, 0.34);
  background: rgba(255, 255, 255, 0.07);
}

.route-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid var(--line-dark);
  filter: saturate(0.94) contrast(1.03);
}

.route-grid span {
  display: block;
  padding: 20px 22px 0;
  color: #d8be82;
  font-size: 12px;
  font-weight: 900;
}

.route-grid h3 {
  padding: 0 22px;
  margin-top: 22px;
  color: var(--paper);
}

.route-grid p {
  padding: 0 22px 24px;
}

.proof {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: 56px;
  align-items: center;
  background:
    linear-gradient(180deg, #eee6d8 0%, #f5f0e6 100%);
}

.proof-image {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-tight);
}

.proof-image img {
  width: 100%;
  height: auto;
  min-height: 0;
  object-fit: contain;
  object-position: center;
  filter: saturate(0.96) contrast(1.03);
}

.proof-list {
  display: grid;
  gap: 14px;
  margin-top: 34px;
}

.proof-list strong {
  display: block;
  margin-bottom: 8px;
  font-size: 17px;
}

.evidence {
  background: var(--paper);
}

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

.evidence-grid article {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.52);
  box-shadow: 0 14px 42px rgba(18, 16, 12, 0.06);
}

.evidence-grid img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
  filter: saturate(0.92) contrast(1.03);
}

.evidence-grid h3,
.evidence-grid p {
  padding-right: 22px;
  padding-left: 22px;
}

.evidence-grid h3 {
  margin-top: 20px;
}

.evidence-grid p {
  margin-bottom: 22px;
  font-size: 15px;
  line-height: 1.55;
}

.specs {
  background: var(--paper);
}

.spec-table {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.58);
}

.spec-table > div {
  display: grid;
  grid-template-columns: 0.8fr 1fr 1.45fr;
  gap: 18px;
  padding: 22px 24px;
  border-bottom: 1px solid var(--line);
}

.spec-table > div:last-child {
  border-bottom: 0;
}

.spec-table > div:first-child {
  background: var(--ink);
  color: var(--paper);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.spec-table span {
  color: #33362f;
  line-height: 1.45;
}

.spec-table > div:first-child span {
  color: var(--paper);
}

.markets {
  padding: 96px 56px;
  background: var(--moss);
  color: var(--paper);
}

.markets .eyebrow {
  color: #d8be82;
}

.markets p {
  color: rgba(247, 244, 235, 0.76);
}

.market-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  max-width: 1080px;
}

.market-tags span {
  padding: 14px 18px;
  border: 1px solid rgba(247, 244, 235, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--paper);
  font-size: 14px;
  font-weight: 760;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 0.76fr);
  gap: 56px;
  padding: 96px 56px;
  background: var(--paper);
}

.contact-copy {
  max-width: 660px;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 30px;
  color: #40443d;
  font-weight: 720;
}

.contact-list a {
  color: var(--moss);
}

.inquiry-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.64);
  box-shadow: var(--shadow-tight);
}

.inquiry-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 820;
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  width: 100%;
  border: 1px solid rgba(17, 19, 16, 0.16);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.74);
  color: var(--ink);
  font: inherit;
  font-size: 15px;
}

.inquiry-form input,
.inquiry-form select {
  min-height: 48px;
  padding: 0 14px;
}

.inquiry-form textarea {
  resize: vertical;
  min-height: 132px;
  padding: 14px;
}

.inquiry-form input:focus-visible,
.inquiry-form select:focus-visible,
.inquiry-form textarea:focus-visible {
  border-color: var(--moss);
  outline: 3px solid rgba(38, 86, 66, 0.14);
  outline-offset: 1px;
}

.inquiry-form button:disabled {
  cursor: wait;
  opacity: 0.62;
}

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

.form-honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
}

.form-note {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 13px;
}

.form-note.is-success {
  color: #1f6a45;
  font-weight: 760;
}

.form-note.is-error {
  color: #9a3a2f;
  font-weight: 760;
}

.form-fallback-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 10px;
}

.form-fallback-links a {
  color: var(--moss);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px 56px;
  background: var(--ink);
  color: rgba(247, 244, 235, 0.76);
  font-size: 13px;
}

.site-footer a {
  color: #d8be82;
  font-weight: 820;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px;
}

.seo-page-body {
  background: #f5f0e6;
  overflow-x: hidden;
}

.seo-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 0.78fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  min-height: 720px;
  padding: 132px 56px 82px;
  overflow: hidden;
  background:
    radial-gradient(circle at 74% 18%, rgba(216, 190, 130, 0.19), transparent 33%),
    linear-gradient(135deg, #080b09 0%, #151914 46%, #273b31 100%);
  color: var(--paper);
}

.seo-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 8, 7, 0.78) 0%, rgba(6, 8, 7, 0.28) 58%, rgba(6, 8, 7, 0.54) 100%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 96px);
  pointer-events: none;
}

.seo-hero-copy,
.seo-hero-image {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.seo-hero h1 {
  max-width: 860px;
  margin-bottom: 22px;
  color: var(--paper);
  font-size: clamp(44px, 5.4vw, 76px);
  line-height: 0.98;
}

.seo-hero p {
  max-width: 720px;
  color: rgba(247, 244, 235, 0.76);
  font-size: 18px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 24px;
  color: rgba(247, 244, 235, 0.56);
  font-size: 13px;
  font-weight: 760;
}

.breadcrumb a {
  color: rgba(247, 244, 235, 0.76);
}

.breadcrumb strong {
  color: #d8be82;
}

.seo-hero-image {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(247, 244, 235, 0.18);
  border-radius: var(--radius);
  background: rgba(247, 244, 235, 0.08);
  box-shadow: 0 40px 98px rgba(0, 0, 0, 0.42);
}

.seo-hero-image img {
  width: 100%;
  min-height: 360px;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  filter: saturate(1.03) contrast(1.03);
}

.seo-hero-image figcaption {
  display: block;
  padding: 16px 18px;
  color: rgba(247, 244, 235, 0.76);
  font-size: 13px;
  font-weight: 780;
  line-height: 1.45;
}

.seo-section {
  background: var(--paper);
}

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

.seo-grid > *,
.faq-list > *,
.page-link-grid > * {
  min-width: 0;
}

.seo-panel,
.faq-list article,
.page-link-grid a,
.seo-quote-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.46);
  box-shadow: var(--shadow-tight);
}

.seo-panel {
  padding: 26px;
}

.legacy-home-profile,
.legacy-profile-copy {
  background: #f5f0e6;
}

.legacy-home-profile .section-intro,
.legacy-profile-copy .section-intro {
  max-width: 1020px;
}

.legacy-home-profile .section-intro p,
.legacy-profile-copy .section-intro p {
  max-width: 960px;
}

.legacy-home-profile .seo-grid,
.legacy-profile-copy .seo-grid {
  margin-top: 44px;
}

.legacy-home-profile .seo-panel p,
.legacy-profile-copy .seo-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.legacy-current-note {
  max-width: 1020px;
  margin: 30px 0 0;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.seo-panel h3,
.faq-list h3 {
  margin-bottom: 14px;
}

.seo-panel ul,
.faq-list p {
  margin-bottom: 0;
}

.seo-panel ul {
  display: grid;
  gap: 12px;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.6;
}

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

.faq-list article {
  padding: 24px;
}

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

.page-link-grid a {
  display: grid;
  gap: 12px;
  min-height: 180px;
  padding: 24px;
  color: var(--ink);
  font-size: 19px;
  font-weight: 880;
  line-height: 1.2;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.page-link-grid a:hover {
  transform: translateY(-4px);
  border-color: rgba(196, 154, 98, 0.46);
  background: rgba(255, 255, 255, 0.72);
}

.page-link-grid span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 520;
  line-height: 1.55;
}

.seo-contact-block {
  background:
    radial-gradient(circle at 82% 18%, rgba(216, 190, 130, 0.18), transparent 30%),
    linear-gradient(135deg, #10120f, #182018 56%, #26392e);
}

.seo-contact-block .contact-copy p,
.seo-contact-block .contact-list span,
.seo-contact-block .contact-list a {
  color: rgba(247, 244, 235, 0.72);
}

.seo-quote-card {
  display: grid;
  gap: 12px;
  align-self: start;
  padding: 28px;
  background: rgba(247, 244, 235, 0.08);
  border-color: rgba(247, 244, 235, 0.18);
  color: var(--paper);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
}

.seo-quote-card strong {
  margin-bottom: 8px;
  font-size: 24px;
}

.seo-quote-card span {
  padding: 12px 0;
  border-bottom: 1px solid rgba(247, 244, 235, 0.14);
  color: rgba(247, 244, 235, 0.7);
  font-weight: 720;
}

.seo-quote-card .button {
  margin-top: 12px;
}

.article-layout {
  background: var(--paper);
}

.article-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 0.72fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  min-height: 720px;
  padding: 132px 56px 82px;
  background:
    linear-gradient(90deg, rgba(6, 8, 7, 0.84), rgba(6, 8, 7, 0.38)),
    linear-gradient(135deg, #080b09, #172019 58%, #314236);
  color: var(--paper);
}

.article-hero-copy {
  min-width: 0;
}

.article-hero h1 {
  max-width: 920px;
  margin-bottom: 22px;
  color: var(--paper);
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1;
}

.article-hero-copy > p:not(.eyebrow) {
  max-width: 720px;
  color: rgba(247, 244, 235, 0.76);
  font-size: 18px;
}

.article-hero time {
  display: block;
  margin-top: 24px;
  color: #d8be82;
  font-size: 13px;
  font-weight: 800;
}

.article-hero-image {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(247, 244, 235, 0.18);
  border-radius: var(--radius);
  box-shadow: 0 40px 98px rgba(0, 0, 0, 0.42);
}

.article-hero-image img {
  width: 100%;
  aspect-ratio: 16 / 11;
  min-height: 360px;
  object-fit: cover;
}

.article-content {
  width: min(820px, calc(100% - 40px));
  margin: 0 auto;
  padding: 96px 0 52px;
}

.article-content > p {
  margin-bottom: 28px;
  color: #343a35;
  font-size: 19px;
  line-height: 1.82;
}

.article-source-note {
  margin-top: 54px;
  padding: 26px 0 0;
  border-top: 1px solid var(--line);
}

.article-source-note strong {
  display: block;
  margin-bottom: 10px;
  font-size: 18px;
}

.article-source-note p {
  margin: 0;
  color: var(--muted);
}

.article-pagination {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 34px 0 96px;
  border-top: 1px solid var(--line);
}

.article-pagination a {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 820;
  line-height: 1.4;
}

.article-pagination a:last-child {
  text-align: right;
}

.article-pagination a span {
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

.article-card {
  display: grid;
  grid-template-rows: 220px auto auto 1fr;
  gap: 12px;
  min-width: 0;
  padding-bottom: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.5);
  color: var(--ink);
  box-shadow: var(--shadow-tight);
  transition: transform 180ms ease, border-color 180ms ease;
}

.article-card:hover {
  transform: translateY(-4px);
  border-color: rgba(196, 154, 98, 0.46);
}

.article-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.article-card > span,
.article-card h2,
.article-card p {
  margin: 0 22px;
}

.article-card > span {
  color: #8a6a37;
  font-size: 11px;
  font-weight: 820;
}

.article-card h2 {
  font-size: 22px;
  line-height: 1.12;
}

.article-card p {
  color: var(--muted);
  font-size: 14px;
}

.video-detail-link {
  color: #d8be82;
  font-size: 12px;
  font-weight: 820;
}

.video-watch-hero {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(520px, 1.28fr);
  gap: clamp(30px, 5vw, 76px);
  align-items: center;
  min-height: 100svh;
  padding: 132px 56px 82px;
  background:
    linear-gradient(90deg, rgba(7, 9, 8, 0.96), rgba(7, 9, 8, 0.62)),
    linear-gradient(135deg, #080b09, #1a241d 58%, #35473a);
  color: var(--paper);
}

.video-watch-copy {
  min-width: 0;
}

.video-watch-copy h1 {
  max-width: 760px;
  margin-bottom: 24px;
  color: var(--paper);
  font-size: clamp(44px, 5.2vw, 76px);
  line-height: 0.98;
}

.video-watch-copy > p:not(.eyebrow) {
  color: rgba(247, 244, 235, 0.74);
  font-size: 18px;
  line-height: 1.65;
}

.video-watch-frame {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(247, 244, 235, 0.18);
  border-radius: var(--radius);
  background: #050605;
  box-shadow: 0 42px 110px rgba(0, 0, 0, 0.46);
}

.video-watch-frame video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #050605;
  object-fit: contain;
}

.video-watch-frame figcaption {
  padding: 16px 18px;
  color: rgba(247, 244, 235, 0.7);
  font-size: 13px;
  font-weight: 760;
}

.video-summary-section,
.article-buyer-section {
  background: #eee6d8;
}

.article-related-section {
  background: var(--paper);
}

.article-check-number {
  display: block;
  margin-bottom: 28px;
  color: #8a6a37;
  font-size: 12px;
  font-weight: 900;
}

.article-buyer-section .seo-panel p,
.video-summary-section .seo-panel p {
  margin: 0;
  color: #343a35;
  font-size: 16px;
  font-weight: 680;
  line-height: 1.6;
}

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

.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 620ms ease, transform 620ms ease;
}

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

.js .hero .reveal {
  opacity: 1;
  transform: translateY(0);
  transition: none;
}

.js .seo-hero .reveal,
.js .article-hero .reveal,
.js .video-watch-hero .reveal {
  opacity: 1;
  transform: translateY(0);
  transition: none;
}

@media (max-width: 1120px) {
  .article-hero {
    grid-template-columns: 1fr 0.88fr;
  }

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

  .factory-cinema {
    width: min(720px, 62vw);
  }

  .product-flight {
    width: min(760px, 64vw);
  }

  .coverage-layout,
  .scene-showcase,
  .proof,
  .contact {
    grid-template-columns: 1fr;
  }

  .route-grid,
  .scene-grid,
  .evidence-grid,
  .seo-grid,
  .page-link-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .seo-hero {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: auto;
  }

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

  .route-steps li::after {
    display: none;
  }

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

@media (max-width: 980px) {
  .video-watch-hero {
    grid-template-columns: 1fr;
    gap: 34px;
    min-height: auto;
    padding: 124px 40px 72px;
  }

  .video-watch-copy {
    max-width: 720px;
  }
}

@media (max-width: 760px) {
  .video-watch-hero {
    grid-template-columns: 1fr;
    gap: 30px;
    min-height: auto;
    padding: 118px 20px 64px;
  }

  .video-watch-copy h1 {
    font-size: clamp(36px, 10vw, 48px);
    line-height: 1;
  }

  .video-watch-copy > p:not(.eyebrow) {
    font-size: 16px;
  }

  .article-hero {
    grid-template-columns: 1fr;
    gap: 26px;
    min-height: auto;
    padding: 118px 20px 72px;
  }

  .article-hero h1 {
    font-size: clamp(32px, 9vw, 42px);
    line-height: 1.04;
  }

  .article-hero-copy > p:not(.eyebrow),
  .article-content > p {
    font-size: 16px;
  }

  .article-hero-image img {
    min-height: 260px;
  }

  .article-content {
    padding: 70px 0 38px;
  }

  .article-pagination,
  .article-card-grid {
    grid-template-columns: 1fr;
  }

  .article-pagination a:last-child {
    text-align: left;
  }

  .article-card {
    grid-template-rows: 210px auto auto 1fr;
  }

  h1 {
    font-size: clamp(46px, 12vw, 52px);
    line-height: 0.95;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(39px, 10.5vw, 48px);
    line-height: 1;
  }

  h2 {
    font-size: clamp(34px, 10vw, 44px);
    line-height: 1;
  }

  .site-header {
    grid-template-columns: auto auto;
    padding: 14px 18px;
  }

  .brand em,
  .header-link {
    display: none;
  }

  .nav-toggle {
    display: grid;
    justify-self: end;
  }

  .site-nav {
    position: fixed;
    top: 73px;
    left: 14px;
    right: 14px;
    display: none;
    grid-column: 1 / -1;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(245, 240, 230, 0.96);
    box-shadow: var(--shadow);
  }

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

  .site-nav.is-open {
    display: grid;
    gap: 14px;
  }

  .site-header.is-open {
    background: rgba(247, 244, 235, 0.95);
  }

  .hero {
    min-height: 1240px;
    padding: 112px 20px 28px;
    align-items: start;
  }

  .hero-rebuilt {
    min-height: auto;
    padding: 112px 20px 28px;
    gap: 24px;
  }

  .hero::after {
    z-index: 0;
    background:
      linear-gradient(180deg, rgba(8, 12, 10, 0.97) 0%, rgba(8, 12, 10, 0.92) 48%, rgba(8, 12, 10, 0.42) 70%, rgba(8, 12, 10, 0.2) 100%),
      linear-gradient(90deg, rgba(8, 12, 10, 0.86) 0%, rgba(8, 12, 10, 0.38) 100%);
  }

  .hero-stage {
    position: absolute;
    z-index: 0;
    margin: 0;
    aspect-ratio: auto;
  }

  .hero-content,
  .hero-proof {
    z-index: 2;
  }

  .hero-layout {
    gap: 26px;
  }

  .hero-rebuilt .hero-content p {
    font-size: 16px;
    line-height: 1.58;
  }

  .hero-visual {
    gap: 10px;
  }

  .hero-factory-window {
    min-height: 220px;
  }

  .hero-factory-window img {
    min-height: 220px;
  }

  .hero-factory-window figcaption {
    display: grid;
    align-items: start;
  }

  .hero-factory-window figcaption strong {
    max-width: 100%;
    text-align: left;
  }

  .hero-route-board {
    padding: 12px;
  }

  .route-board-head {
    display: grid;
    gap: 4px;
  }

  .route-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
  }

  .route-steps li {
    grid-template-rows: 68px auto auto;
    padding: 7px;
  }

  .route-steps img {
    height: 68px;
  }

  .factory-cinema {
    display: none;
  }

  .product-flight {
    top: 690px;
    left: 20px;
    right: 20px;
    width: auto;
    height: 230px;
    transform: none;
  }

  .flight-card {
    padding: 9px;
  }

  .flight-card figcaption {
    font-size: 10px;
  }

  .flight-card-wood,
  .flight-card-slats {
    display: none;
  }

  .flight-card-blank {
    top: 18px;
    left: 0;
    width: 52%;
    height: 38%;
    transform: rotateY(8deg);
  }

  .flight-card-finished {
    top: 0;
    right: 0;
    width: 34%;
    height: 68%;
    transform: rotateY(-8deg);
  }

  .flight-card-color {
    left: 16%;
    right: auto;
    bottom: 0;
    width: 64%;
    height: 39%;
    transform: rotateY(-4deg);
  }

  .process-rail {
    display: none;
  }

  .hero-content p {
    color: rgba(247, 244, 235, 0.76);
    font-size: 16px;
    line-height: 1.58;
  }

  .hero-actions {
    gap: 10px;
    margin-top: 22px;
  }

  .button {
    width: 100%;
  }

  .hero-proof {
    grid-template-columns: 1fr;
    margin-top: 338px;
  }

  .hero-rebuilt .hero-proof {
    grid-template-columns: 1fr;
    margin-top: 0;
  }

  .hero-route-chips {
    margin-top: 22px;
  }

  .hero-route-chips span {
    padding: 8px 10px;
    font-size: 11px;
  }

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

  .section,
  .markets,
  .contact,
  .seo-hero {
    padding: 76px 20px;
  }

  .seo-hero {
    padding-top: 118px;
    min-height: auto;
    width: 100%;
    overflow-x: hidden;
    overflow-y: visible;
  }

  .seo-hero h1 {
    max-width: 100%;
    font-size: clamp(30px, 8vw, 36px);
    line-height: 1.08;
    overflow-wrap: break-word;
    word-break: normal;
  }

  .seo-hero p {
    max-width: 100%;
    font-size: 16px;
    line-height: 1.62;
  }

  .seo-hero-image {
    width: 100%;
  }

  .seo-hero-image img {
    min-height: 260px;
  }

  .seo-hero-image figcaption {
    font-size: 12px;
    overflow-wrap: anywhere;
  }

  .coverage-layout {
    gap: 20px;
  }

  .coverage-grid,
  .route-grid,
  .scene-grid,
  .evidence-grid,
  .seo-grid,
  .faq-list,
  .page-link-grid {
    grid-template-columns: 1fr;
  }

  .seo-panel,
  .faq-list article,
  .page-link-grid a,
  .seo-quote-card {
    padding: 20px;
  }

  .page-link-grid a {
    min-height: auto;
  }

  .scene-showcase {
    gap: 14px;
  }

  .scene-video-card,
  .scene-proof-panel {
    min-height: auto;
    transform: none;
  }

  .scene-video-card video,
  .scene-video-card img {
    min-height: 310px;
  }

  .scene-video-card figcaption {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }

  .scene-proof-panel {
    padding: 22px;
  }

  .range-photo {
    border-radius: 6px;
    transform: none;
  }

  .range-photo {
    min-height: 360px;
  }

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

  .spec-table {
    overflow-x: auto;
  }

  .spec-table > div {
    min-width: 720px;
  }

  .inquiry-form {
    padding: 20px;
  }

  .form-field-grid {
    grid-template-columns: 1fr;
  }

  .site-footer {
    display: grid;
    padding: 24px 20px;
  }

  .footer-links {
    justify-content: start;
  }
}

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

  .coverage-grid article:hover,
  .route-grid article:hover,
  .scene-grid article:hover,
  .button:hover {
    transform: none;
  }
}
