:root {
  color-scheme: dark;
  --bg: #030303;
  --bg-2: #080706;
  --graphite: #12100e;
  --graphite-2: #1a1714;
  --line: rgba(255, 255, 255, 0.11);
  --line-warm: rgba(255, 139, 41, 0.42);
  --text: #f8f2ea;
  --soft: #d9d0c6;
  --muted: #a19990;
  --faint: #706963;
  --accent: #ff861f;
  --accent-2: #ffb15d;
  --accent-deep: #9e3f12;
  --glass: rgba(13, 12, 10, 0.58);
  --glass-strong: rgba(21, 18, 15, 0.78);
  --shadow: 0 34px 120px rgba(0, 0, 0, 0.72);
  --display: "Bodoni Moda", Georgia, serif;
  --body: "Jost", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
  width: 100%;
}

body {
  margin: 0;
  width: 100%;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--text);
  font-family: var(--body);
  background:
    radial-gradient(circle at 73% 17%, rgba(255, 117, 24, 0.24), transparent 24rem),
    radial-gradient(circle at 52% 52%, rgba(113, 59, 25, 0.17), transparent 42rem),
    linear-gradient(180deg, #030303 0%, #070604 48%, #030303 100%);
}

main {
  overflow: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -4;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035), transparent 22%, transparent 78%, rgba(255, 255, 255, 0.03)),
    radial-gradient(ellipse at center, transparent 44%, rgba(0, 0, 0, 0.74) 100%);
}

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

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

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.noise {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(circle at center, black, transparent 76%);
}

.cinema-glow {
  position: fixed;
  inset: auto -18vw -35vh -18vw;
  z-index: -1;
  height: 60vh;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 62% 16%, rgba(255, 112, 21, 0.34), transparent 42%),
    radial-gradient(ellipse at 42% 28%, rgba(255, 177, 93, 0.12), transparent 44%);
  filter: blur(30px);
  transform: translate3d(0, var(--parallax-glow, 0px), 0);
}

.scroll-meter {
  position: fixed;
  inset: 0 auto auto 0;
  z-index: 40;
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.04);
}

.scroll-meter span {
  display: block;
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--accent), #ffd0a0);
  box-shadow: 0 0 28px rgba(255, 126, 31, 0.95);
}

.site-header {
  position: fixed;
  top: 20px;
  left: 50%;
  z-index: 35;
  width: min(1160px, calc(100% - 40px));
  min-height: 60px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 10px 12px 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(18, 16, 14, 0.72), rgba(7, 6, 5, 0.58));
  backdrop-filter: blur(24px) saturate(1.35);
  box-shadow: 0 24px 100px rgba(0, 0, 0, 0.46);
}

.brand,
.header-cta,
.btn,
nav a {
  transition: transform 260ms cubic-bezier(0.2, 0.8, 0.2, 1), border-color 260ms ease, color 260ms ease, background 260ms ease, box-shadow 260ms ease;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.brand-mark {
  width: 28px;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 171, 91, 0.42);
  border-radius: 7px;
  background:
    radial-gradient(circle at 30% 22%, rgba(255, 209, 155, 0.9), transparent 18%),
    linear-gradient(135deg, #ff9429, #7e2e0d);
  box-shadow: 0 0 42px rgba(255, 118, 28, 0.44);
}

nav {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.025);
}

nav a,
.header-cta {
  border-radius: 7px;
  padding: 9px 13px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 600;
}

nav a:hover,
nav a:focus-visible {
  color: var(--text);
  background: rgba(255, 255, 255, 0.07);
}

.header-cta {
  color: var(--text);
  border: 1px solid rgba(255, 138, 34, 0.36);
  background: linear-gradient(180deg, rgba(255, 140, 34, 0.18), rgba(255, 112, 24, 0.08));
}

.header-cta:hover,
.brand:hover,
.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.section-frame {
  position: relative;
  z-index: 5;
  width: min(1220px, calc(100% - 42px));
  margin-inline: auto;
}

.model-stage {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.model-stage::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 52%;
  width: min(92vw, 1180px);
  aspect-ratio: 1.8;
  transform: translate(-50%, -50%) rotate(-3deg);
  border-radius: 50%;
  background:
    radial-gradient(ellipse at 58% 48%, rgba(255, 139, 40, 0.28), transparent 43%),
    radial-gradient(ellipse at 45% 70%, rgba(255, 255, 255, 0.08), transparent 47%);
  filter: blur(34px);
  opacity: 0.94;
}

.model-stage::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 9vh;
  width: min(76vw, 980px);
  height: 15vh;
  transform: translateX(-50%) perspective(800px) rotateX(64deg);
  border-radius: 50%;
  background:
    linear-gradient(90deg, transparent, rgba(255, 152, 53, 0.16), transparent),
    radial-gradient(ellipse at center, rgba(255, 255, 255, 0.13), transparent 62%);
  filter: blur(12px);
  opacity: 0.75;
}

#keyboard-canvas {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  max-width: none;
  filter: blur(var(--scene-blur, 0px)) drop-shadow(0 38px 80px rgba(0, 0, 0, 0.78)) drop-shadow(0 0 70px rgba(255, 113, 24, 0.28));
}

.model-fallback {
  position: absolute;
  left: 61%;
  top: 50%;
  z-index: 2;
  width: min(760px, 82vw);
  aspect-ratio: 2.35;
  transform: translate(-50%, -50%) rotate(-8deg);
  border: 1px solid rgba(255, 148, 55, 0.42);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 139, 36, 0.16), rgba(255, 255, 255, 0.035)),
    linear-gradient(180deg, #17120d, #080706);
  box-shadow: 0 0 110px rgba(255, 118, 28, 0.3), inset 0 0 44px rgba(255, 255, 255, 0.045);
}

.model-fallback span {
  position: absolute;
  inset: 16%;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 6px;
}

.model-fallback strong {
  position: absolute;
  left: 26px;
  bottom: 22px;
  font-family: var(--display);
  font-size: clamp(1.65rem, 4vw, 3.45rem);
  line-height: 1;
}

.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(330px, 0.5fr);
  align-items: center;
  gap: 36px;
  padding: 132px 0 76px;
}

.hero::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: 10vh;
  z-index: -1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), rgba(255, 132, 31, 0.36), transparent);
  box-shadow: 0 0 56px rgba(255, 121, 25, 0.28);
}

.hero-copy {
  max-width: 720px;
  padding-top: 0;
  transform: translate3d(0, var(--hero-parallax, 0px), 0);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--accent-2);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.5;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: normal;
  word-break: normal;
}

h1,
h2 {
  margin: 0;
  color: var(--text);
  font-family: var(--display);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: 0;
  text-wrap: balance;
}

h1 {
  max-width: 690px;
  font-size: 70px;
}

h1 span,
h2 span {
  display: block;
}

h2 {
  max-width: 920px;
  font-size: clamp(52px, 4.86vw, 70px);
}

h3 {
  margin: 0;
  color: var(--text);
  font-size: 20px;
  line-height: 1.2;
}

p {
  color: var(--muted);
  line-height: 1.72;
}

.hero-text {
  max-width: 590px;
  margin: 24px 0 0;
  color: var(--soft);
  font-size: clamp(1.05rem, 1.45vw, 1.26rem);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
}

.btn-primary {
  color: #130a04;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.24), transparent 46%),
    linear-gradient(135deg, #ffc176, #ff861f 55%, #b84b13);
  box-shadow: 0 18px 70px rgba(255, 118, 28, 0.36), inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.btn-secondary {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(18px) saturate(1.24);
}

.btn-secondary:hover {
  border-color: rgba(255, 151, 53, 0.4);
  background: rgba(255, 139, 36, 0.11);
}

.hero-specs {
  justify-self: end;
  align-self: end;
  width: min(360px, 100%);
  display: grid;
  gap: 10px;
  margin-bottom: 10vh;
  transform: translate3d(0, var(--spec-parallax, 0px), 0);
}

.hero-specs div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 66px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025));
  backdrop-filter: blur(22px) saturate(1.3);
  box-shadow: 0 22px 80px rgba(0, 0, 0, 0.38);
}

.hero-specs .card-index {
  margin: 0;
  color: var(--accent-2);
  font-size: 0.72rem;
  font-weight: 700;
}

.hero-specs strong {
  color: var(--soft);
  font-size: 0.95rem;
  text-align: right;
  margin-left: auto;
}

.story-shell {
  position: relative;
  z-index: 6;
  min-height: 360vh;
  padding: 22vh 0 24vh;
}

.story-chapter {
  position: relative;
  width: min(520px, calc(100% - 42px));
  min-height: 54vh;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(8, 7, 6, 0.62);
  backdrop-filter: blur(26px) saturate(1.28);
  box-shadow: var(--shadow);
}

.story-chapter::after,
.service-card::after,
.orbit-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.14), transparent 34%, rgba(255, 135, 32, 0.08));
  opacity: 0.72;
}

.service-card::before,
.orbit-card::before,
.process-rail li::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: 0;
  pointer-events: none;
  border-radius: inherit;
  background:
    radial-gradient(circle at var(--icon-glow-x, 24%) 22%, rgba(255, 139, 36, 0.18), transparent 32%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 38%);
  opacity: 0.62;
  transition: opacity 320ms ease, transform 320ms ease;
}

.story-chapter p:not(.eyebrow) {
  max-width: 440px;
}

.chapter-one {
  margin: 0 auto 0 max(21px, calc((100vw - 1220px) / 2));
}

.chapter-two {
  margin: 70vh max(21px, calc((100vw - 1220px) / 2)) 0 auto;
}

.chapter-three {
  margin: 80vh auto 0;
  text-align: center;
}

.chapter-three p:not(.eyebrow) {
  margin-inline: auto;
}

.chapter-three .btn {
  margin-top: 12px;
}

.orbit-services {
  position: relative;
  width: min(1220px, calc(100% - 42px));
  margin: 76vh auto 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.orbit-card,
.service-card,
.process-rail li,
.trust-grid div {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.018)),
    rgba(13, 12, 10, 0.72);
  backdrop-filter: blur(22px) saturate(1.24);
  box-shadow: 0 26px 85px rgba(0, 0, 0, 0.36);
}

.orbit-card,
.service-card {
  min-height: 210px;
  padding: 24px;
  transition: transform 320ms cubic-bezier(0.2, 0.8, 0.2, 1), border-color 320ms ease, box-shadow 320ms ease;
}

.orbit-card:hover,
.service-card:hover {
  transform: translateY(-8px) scale(1.012);
  border-color: rgba(255, 143, 39, 0.42);
  box-shadow: 0 34px 110px rgba(255, 101, 20, 0.13), 0 26px 85px rgba(0, 0, 0, 0.44);
}

.orbit-card > *,
.service-card > *,
.process-rail li > * {
  position: relative;
  z-index: 1;
}

.orbit-card:hover::before,
.service-card:hover::before,
.process-rail li:hover::before {
  opacity: 1;
  transform: scale(1.05);
}

.card-index {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--accent-2);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.section-heading {
  max-width: 880px;
  margin-bottom: 46px;
}

.services,
.process,
.why,
.cta {
  padding-block: 128px;
}

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

.cinema-icon {
  --icon-size: 58px;
  position: relative;
  display: grid;
  place-items: center;
  width: var(--icon-size);
  aspect-ratio: 1;
  margin-bottom: 28px;
  border: 1px solid rgba(255, 164, 77, 0.32);
  border-radius: 8px;
  color: #ffd0a1;
  background:
    radial-gradient(circle at 31% 18%, rgba(255, 226, 186, 0.28), transparent 24%),
    linear-gradient(145deg, rgba(255, 153, 54, 0.18), rgba(255, 255, 255, 0.035)),
    rgba(13, 11, 9, 0.72);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    inset 0 -18px 30px rgba(255, 115, 24, 0.055),
    0 0 34px rgba(255, 118, 28, 0.18),
    0 18px 55px rgba(0, 0, 0, 0.36);
  transform: translate3d(0, var(--icon-parallax, 0px), 0);
  transition: transform 360ms cubic-bezier(0.2, 0.8, 0.2, 1), border-color 360ms ease, box-shadow 360ms ease, color 360ms ease;
}

.cinema-icon::before,
.cinema-icon::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border-radius: inherit;
}

.cinema-icon::before {
  inset: -9px;
  background: radial-gradient(circle, rgba(255, 128, 29, 0.2), transparent 62%);
  filter: blur(8px);
  opacity: 0.78;
  transition: opacity 360ms ease, transform 360ms ease;
}

.cinema-icon::after {
  inset: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent);
}

.cinema-icon svg {
  position: relative;
  z-index: 1;
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 10px rgba(255, 133, 31, 0.42));
}

.mini-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 34px;
  aspect-ratio: 1;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 158, 70, 0.24);
  border-radius: 7px;
  color: #ffc48a;
  background:
    radial-gradient(circle at 30% 18%, rgba(255, 220, 173, 0.18), transparent 26%),
    linear-gradient(145deg, rgba(255, 139, 36, 0.11), rgba(255, 255, 255, 0.03));
  box-shadow: 0 0 24px rgba(255, 118, 28, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: transform 300ms cubic-bezier(0.2, 0.8, 0.2, 1), border-color 300ms ease, box-shadow 300ms ease;
}

.mini-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 8px rgba(255, 137, 35, 0.4));
}

.hero-specs div:hover .mini-icon,
.trust-grid div:hover .mini-icon {
  transform: translateY(-3px) scale(1.04);
  border-color: rgba(255, 174, 91, 0.48);
  box-shadow: 0 0 34px rgba(255, 118, 28, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.orbit-card .cinema-icon {
  --icon-size: 50px;
  float: right;
  margin: -4px 0 16px 16px;
}

.orbit-card .cinema-icon svg {
  width: 26px;
  height: 26px;
}

.service-card:hover .cinema-icon,
.orbit-card:hover .cinema-icon,
.process-rail li:hover .cinema-icon {
  color: #ffe0bd;
  border-color: rgba(255, 174, 91, 0.58);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.24),
    0 0 48px rgba(255, 118, 28, 0.3),
    0 22px 70px rgba(0, 0, 0, 0.45);
  transform: translate3d(0, -6px, 0) rotate(-2deg) scale(1.045);
}

.service-card:hover .cinema-icon::before,
.orbit-card:hover .cinema-icon::before,
.process-rail li:hover .cinema-icon::before {
  opacity: 1;
  transform: scale(1.22);
}

.service-card:hover .cinema-icon svg,
.orbit-card:hover .cinema-icon svg,
.process-rail li:hover .cinema-icon svg {
  animation: icon-breathe 1.8s cubic-bezier(0.2, 0.8, 0.2, 1) infinite alternate;
}

.process-rail {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-rail::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 5%;
  right: 5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), rgba(255, 132, 31, 0.45), transparent);
  box-shadow: 0 0 32px rgba(255, 118, 28, 0.24);
}

.process-rail li {
  position: relative;
  min-height: 152px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.process-rail .cinema-icon {
  --icon-size: 52px;
  margin: 0 0 20px;
}

.process-rail .cinema-icon svg {
  width: 27px;
  height: 27px;
}

@keyframes icon-breathe {
  from {
    transform: translateY(0);
    filter: drop-shadow(0 0 8px rgba(255, 133, 31, 0.36));
  }

  to {
    transform: translateY(-1.5px);
    filter: drop-shadow(0 0 18px rgba(255, 159, 61, 0.62));
  }
}

.why {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  align-items: center;
  gap: 52px;
}

.why-media {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: var(--glass);
  box-shadow: var(--shadow);
}

.why-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.08);
  transform: translate3d(0, var(--media-parallax, 0px), 0) scale(1.08);
}

.why-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 18%, rgba(0, 0, 0, 0.58)), radial-gradient(circle at 74% 20%, rgba(255, 139, 36, 0.22), transparent 38%);
}

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

.trust-grid div {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 74px;
  padding: 18px;
  color: var(--soft);
  font-weight: 700;
}

.cta {
  min-height: 82vh;
  display: grid;
  place-items: center;
  text-align: center;
}

.cta::before {
  content: "";
  position: absolute;
  inset: 10% 0;
  z-index: -1;
  background: radial-gradient(ellipse at center, rgba(255, 118, 28, 0.18), transparent 58%);
  filter: blur(16px);
}

.cta p:not(.eyebrow) {
  max-width: 660px;
  margin: 24px auto 34px;
  color: var(--soft);
}

.cta h2 {
  font-size: clamp(52px, 4.86vw, 70px);
}

.pending-reveal {
  opacity: 0;
  transform: translateY(34px);
}

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

@media (max-width: 1100px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: 108vh;
  }

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

  .hero-specs {
    justify-self: start;
    width: min(620px, 100%);
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-bottom: 0;
  }

  .hero-specs div {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-specs strong {
    text-align: left;
    margin-left: 0;
  }

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

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

  .process-rail::before {
    display: none;
  }

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

@media (max-width: 760px) {
  .section-frame,
  .orbit-services {
    width: min(100% - 28px, 1220px);
  }

  .site-header {
    top: 12px;
    left: 10px;
    right: 10px;
    width: auto;
    min-height: 54px;
    transform: none;
  }

  nav {
    display: none;
  }

  .brand span:last-child {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .model-stage {
    position: absolute;
    height: 92vh;
  }

  .model-stage::before {
    top: 39%;
    width: 118vw;
  }

  .model-stage::after {
    bottom: 25vh;
    width: 96vw;
  }

  .model-fallback {
    left: 56%;
    top: 31%;
    width: 86vw;
  }

  .model-fallback strong {
    left: 18px;
    bottom: 16px;
    max-width: calc(100% - 36px);
    font-size: clamp(1.15rem, 7vw, 1.75rem);
    white-space: nowrap;
  }

  .hero {
    min-height: 105vh;
    padding: 110px 0 56px;
    align-items: end;
  }

  .hero-copy {
    padding-top: 29vh;
  }

  .eyebrow {
    font-size: 0.67rem;
    line-height: 1.6;
    letter-spacing: 0.13em;
  }

  h1 {
    font-size: clamp(2.45rem, 10.5vw, 3.05rem);
    line-height: 1;
    text-shadow: 0 16px 56px rgba(0, 0, 0, 0.82);
  }

  .hero-text {
    max-width: calc(100vw - 28px);
    font-size: 20px;
    line-height: 1.58;
  }

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

  h2 {
    font-size: clamp(2.25rem, 9vw, 3.15rem);
    line-height: 1.02;
  }

  .hero-actions,
  .btn {
    width: 100%;
  }

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

  .story-shell {
    min-height: auto;
    padding: 64px 0 76px;
  }

  .story-chapter,
  .chapter-one,
  .chapter-two,
  .chapter-three {
    width: min(100% - 28px, 520px);
    min-height: auto;
    margin: 26px auto;
  }

  .orbit-services {
    margin-top: 28px;
  }

  .service-grid,
  .orbit-services,
  .process-rail,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .services,
  .process,
  .why,
  .cta {
    padding-block: 82px;
  }

  .why-media {
    min-height: 360px;
  }
}

@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;
  }
}
