:root {
  --orange: #ff6e42;
  --black: #050505;
  --white: #ffffff;
  --soft-white: #f6f2ef;
  --grey: #9b9b9b;
  --line: rgba(255, 255, 255, 0.18);
  --nav-height: 82px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--white);
  background: var(--black);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--black);
}

body::selection {
  background: var(--orange);
  color: var(--black);
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 20;
  height: var(--nav-height);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(5, 5, 5, 0.76);
  backdrop-filter: blur(20px);
}

.nav {
  width: min(1180px, calc(100% - 32px));
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  min-width: 230px;
}

.brand-mark {
  width: 88px;
  height: 62px;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.support-link {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.9rem;
  font-weight: 800;
  white-space: nowrap;
}

.support-link small {
  color: var(--orange);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.support-phone,
.support-email {
  color: inherit;
}

.support-email {
  color: inherit;
  font-size: 0.78rem;
  font-weight: 600;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 2vw, 32px);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.99rem;
  font-weight: 650;
  white-space: nowrap;
}

.nav-links a {
  position: relative;
  padding: 8px 0;
}

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

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

.nav-action {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid rgba(255, 110, 66, 0.85);
  border-radius: 4px;
  background: var(--orange);
  color: var(--black);
  font-weight: 800;
  font-size: 0.9rem;
  white-space: nowrap;
  transition: transform 180ms ease, background 180ms ease;
}

.nav-action:hover,
.nav-action:focus-visible {
  transform: translateY(-1px);
  background: #ff815e;
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 100svh;
  padding-top: var(--nav-height);
  display: grid;
  overflow: hidden;
  isolation: isolate;
  background: var(--black);
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -3;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
          linear-gradient(90deg, rgba(0, 0, 0, 0.46) 0%, rgba(0, 0, 0, 0.26) 38%, rgba(0, 0, 0, 0.08) 78%),
          linear-gradient(0deg, rgba(0, 0, 0, 0.52) 0%, rgba(0, 0, 0, 0.01) 42%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 34%;
  z-index: -1;
  background: linear-gradient(0deg, var(--black), rgba(5, 5, 5, 0));
}

.hero-content {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(64px, 9vw, 132px) 0 46px;
  display: grid;
  align-content: end;
  gap: 48px;
}

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

.hero-product-logo {
  display: block;
  width: clamp(168px, 20vw, 270px);
  height: auto;
  margin: 0 0 22px;
  filter: drop-shadow(0 2px 16px rgba(0, 0, 0, 0.34));
}

h1 {
  max-width: 1080px;
  margin: 0;
  color: var(--white);
  font-size: clamp(2.9rem, 7vw, 4.35rem);
  line-height: 0.95;
  letter-spacing: 0;
  text-transform: uppercase;
  hyphens: auto;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.38);
}

.hero-lede {
  max-width: 760px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.08rem, 2vw, 1.42rem);
  line-height: 1.45;
  font-weight: 560;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.46);
}

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

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 20px;
  border-radius: 4px;
  border: 1px solid transparent;
  font: inherit;
  font-weight: 850;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

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

.button-primary {
  background: var(--orange);
  color: var(--black);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  backdrop-filter: blur(18px);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: rgba(255, 255, 255, 0.62);
  background: rgba(255, 255, 255, 0.14);
}

.button-video {
  border-color: rgba(255, 110, 66, 0.78);
  background: rgba(5, 5, 5, 0.5);
  color: var(--white);
  cursor: pointer;
  backdrop-filter: blur(18px);
}

.button-video:hover,
.button-video:focus-visible {
  border-color: var(--orange);
  background: rgba(255, 110, 66, 0.18);
}

.quick-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(5, 5, 5, 0.44);
  backdrop-filter: blur(18px);
}

.fact {
  min-height: 120px;
  padding: 22px 22px 20px;
  border-right: 1px solid var(--line);
  display: grid;
  align-content: center;
  gap: 8px;
}

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

.fact strong {
  color: var(--orange);
  font-size: clamp(1.45rem, 3vw, 2.35rem);
  line-height: 1;
  letter-spacing: 0;
}

.fact span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  line-height: 1.35;
}

.intro {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: var(--black);
  color: var(--white);
  padding: clamp(64px, 8vw, 104px) 0;
}

.route-animation {
  position: absolute;
  top: clamp(-96px, -6vw, -42px);
  left: max(12px, calc((100vw - 1180px) / 2 - 34px));
  width: min(56vw, 720px);
  height: min(42vw, 520px);
  min-height: 360px;
  pointer-events: none;
  opacity: 0.42;
  z-index: 0;
}

.route-animation svg {
  width: 100%;
  height: 100%;
  display: block;
}

.route-grid {
  stroke: rgba(255, 255, 255, 0.08);
  stroke-width: 1;
}

.route-line,
.ascent-line {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 16 18;
  animation: route-flow 5.6s linear infinite;
}

.route-line {
  stroke: rgba(255, 255, 255, 0.36);
  stroke-width: 2;
}

.ascent-line {
  stroke: rgba(255, 110, 66, 0.82);
  stroke-width: 3;
  stroke-dasharray: 10 15;
  animation-duration: 3.8s;
}

.route-marker {
  fill: var(--black);
  stroke: rgba(255, 255, 255, 0.55);
  stroke-width: 2;
}

.route-marker-start {
  stroke: var(--orange);
}

.route-pulse {
  fill: none;
  stroke: rgba(255, 110, 66, 0.48);
  stroke-width: 2;
  transform-origin: 168px 304px;
  animation: route-pulse 2.8s ease-out infinite;
}

.route-glider {
  fill: var(--orange);
  filter: drop-shadow(0 0 14px rgba(255, 110, 66, 0.5));
  offset-path: path("M168 304 C246 260 310 218 348 154 C374 109 419 77 478 62");
  animation: glider-rise 5.4s ease-in-out infinite;
}

.route-label {
  fill: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.intro-inner {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 1.05fr);
  gap: clamp(32px, 6vw, 86px);
  align-items: start;
}

.section-kicker {
  margin: 0 0 16px;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.intro h2 {
  margin: 0;
  max-width: 520px;
  font-size: clamp(1.9rem, 3.9vw, 3.7rem);
  line-height: 1.04;
  letter-spacing: 0;
  text-transform: uppercase;
}

.intro-text {
  display: grid;
  gap: 22px;
}

.intro-text p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
  line-height: 1.7;
}

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

.feature {
  min-height: 138px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  display: grid;
  grid-template-rows: auto 1fr auto;
  align-content: start;
  gap: 14px;
}

.feature b {
  display: block;
  color: var(--white);
  font-size: 1rem;
}

.feature span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.94rem;
  line-height: 1.5;
}

.feature-link {
  width: fit-content;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: end;
  margin-top: 0;
  padding: 0 14px;
  border: 1px solid rgba(255, 110, 66, 0.7);
  border-radius: 4px;
  color: var(--white);
  font-size: 0.86rem;
  font-weight: 800;
  background: rgba(255, 110, 66, 0.08);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.feature-link:hover,
.feature-link:focus-visible {
  transform: translateY(-1px);
  border-color: var(--orange);
  background: rgba(255, 110, 66, 0.18);
}

@keyframes route-flow {
  to {
    stroke-dashoffset: -136;
  }
}

@keyframes route-pulse {
  0% {
    transform: scale(0.52);
    opacity: 0.9;
  }

  80%,
  100% {
    transform: scale(2.8);
    opacity: 0;
  }
}

@keyframes glider-rise {
  0%,
  12% {
    offset-distance: 0%;
    opacity: 0;
  }

  24% {
    opacity: 1;
  }

  82% {
    opacity: 1;
  }

  100% {
    offset-distance: 100%;
    opacity: 0;
  }
}

.experience {
  position: relative;
  overflow: hidden;
  background: var(--soft-white);
  color: var(--black);
  margin-top: clamp(-97px, -7vw, -55px);
  padding: clamp(126px, 14vw, 184px) 0 clamp(72px, 9vw, 126px);
  clip-path: polygon(0 clamp(54px, 7vw, 96px), 100% 0, 100% 100%, 0 100%);
}

.experience-inner {
  position: relative;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(360px, 1.18fr);
  gap: clamp(34px, 6vw, 78px);
  align-items: center;
}

.experience-copy {
  display: grid;
  gap: 22px;
}

.light-kicker {
  margin: 0;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.experience h2 {
  margin: 0;
  font-size: clamp(2.1rem, 4.2vw, 4.35rem);
  line-height: 0.98;
  letter-spacing: 0;
  text-transform: uppercase;
}

.experience-copy p {
  margin: 0;
  color: rgba(5, 5, 5, 0.72);
  font-size: 1.08rem;
  line-height: 1.7;
}

.experience-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 6px;
}

.button-dark {
  background: var(--black);
  color: var(--white);
}

.button-outline-dark {
  border-color: rgba(5, 5, 5, 0.28);
  color: var(--black);
  background: rgba(255, 255, 255, 0.36);
}

.button-outline-dark:hover,
.button-outline-dark:focus-visible {
  border-color: var(--black);
  background: rgba(255, 255, 255, 0.62);
}

.event-gallery {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  grid-template-rows: repeat(2, minmax(180px, 1fr));
  gap: 14px;
}

.event-photo {
  min-height: 210px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--black);
  box-shadow: 0 22px 60px rgba(5, 5, 5, 0.16);
}

.event-photo:first-child {
  grid-row: span 2;
}

.event-photo-button {
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: block;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.event-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 220ms ease, opacity 220ms ease;
}

.event-photo-button:hover img,
.event-photo-button:focus-visible img {
  transform: scale(1.035);
  opacity: 0.92;
}

.status-band {
  border-top: 1px solid rgba(5, 5, 5, 0.12);
  background: #e8e6e3;
  color: var(--black);
  padding: 34px 0;
  box-shadow: inset 0 18px 38px rgba(5, 5, 5, 0.04);
}

.status-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(220px, 1.2fr) repeat(3, minmax(170px, 1fr));
  align-items: start;
  justify-content: space-between;
  gap: 28px;
  font-weight: 750;
}

.footer-column {
  display: grid;
  gap: 6px;
  font-style: normal;
  color: rgba(5, 5, 5, 0.68);
  font-weight: 650;
  line-height: 1.5;
}

.footer-label {
  color: var(--black);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-column a {
  color: var(--black);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: rgba(255, 110, 66, 0.65);
  text-underline-offset: 4px;
}

.legal-page {
  background: var(--soft-white);
  color: var(--black);
}

.legal-main {
  min-height: calc(100svh - var(--nav-height));
  padding: calc(var(--nav-height) + clamp(64px, 8vw, 112px)) 0 clamp(72px, 9vw, 128px);
}

.legal-inner {
  width: min(920px, calc(100% - 32px));
  margin: 0 auto;
}

.legal-kicker {
  margin: 0 0 14px;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.legal-main h1 {
  color: var(--black);
  text-shadow: none;
}

.legal-intro {
  max-width: 660px;
  margin: 24px 0 0;
  color: rgba(5, 5, 5, 0.66);
  font-size: 1.08rem;
  line-height: 1.65;
}

.legal-sections {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: clamp(42px, 6vw, 72px);
}

.legal-card {
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid rgba(5, 5, 5, 0.12);
  border-radius: 6px;
  background: var(--white);
  box-shadow: 0 18px 48px rgba(5, 5, 5, 0.05);
}

.legal-card:first-child,
.legal-card:last-child {
  grid-column: 1 / -1;
}

.legal-card h2 {
  margin: 0 0 18px;
  color: var(--black);
  font-size: clamp(1.25rem, 2.4vw, 1.65rem);
  line-height: 1.2;
}

.legal-card p,
.legal-card address {
  margin: 0;
  color: rgba(5, 5, 5, 0.72);
  font-style: normal;
  line-height: 1.75;
}

.legal-card p + p {
  margin-top: 16px;
}

.legal-card a {
  color: var(--black);
  font-weight: 750;
  text-decoration: underline;
  text-decoration-color: var(--orange);
  text-underline-offset: 4px;
}

.legal-sections-single {
  grid-template-columns: 1fr;
}

.legal-sections-single .legal-card {
  grid-column: 1;
}

.legal-list {
  margin: 14px 0 0;
  padding-left: 1.25rem;
  color: rgba(5, 5, 5, 0.72);
  line-height: 1.75;
}

.legal-list li + li {
  margin-top: 5px;
}

.legal-card .legal-list + p,
.legal-card p + address {
  margin-top: 16px;
}

.legal-note {
  margin-top: 18px !important;
  padding: 16px 18px;
  border-left: 3px solid var(--orange);
  background: rgba(255, 110, 66, 0.08);
}

.video-dialog {
  width: min(1120px, calc(100% - 32px));
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: #050505;
  color: var(--white);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.68);
}

.video-dialog::backdrop {
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(8px);
}

.video-modal {
  display: grid;
  gap: 0;
}

.video-modal-header {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 16px 0 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.video-modal-title {
  margin: 0;
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.video-close {
  width: 40px;
  height: 40px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  cursor: pointer;
  font-size: 1.35rem;
  line-height: 1;
}

.video-close:hover,
.video-close:focus-visible {
  border-color: var(--orange);
  color: var(--orange);
}

.full-video {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  background: var(--black);
}

.gallery-dialog {
  width: min(1180px, calc(100% - 28px));
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: #050505;
  color: var(--white);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.72);
}

.gallery-dialog::backdrop {
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(8px);
}

.gallery-modal {
  display: grid;
  gap: 0;
}

.gallery-stage {
  position: relative;
  min-height: min(72vh, 760px);
  display: grid;
  place-items: center;
  background: var(--black);
}

.gallery-image {
  max-width: 100%;
  max-height: min(72vh, 760px);
  display: block;
  object-fit: contain;
}

.gallery-nav {
  position: absolute;
  top: 50%;
  width: 46px;
  height: 46px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  background: rgba(5, 5, 5, 0.62);
  color: var(--white);
  cursor: pointer;
  font-size: 1.5rem;
  transform: translateY(-50%);
}

.gallery-nav:hover,
.gallery-nav:focus-visible {
  border-color: var(--orange);
  color: var(--orange);
}

.gallery-prev {
  left: 16px;
}

.gallery-next {
  right: 16px;
}

.gallery-caption {
  margin: 0;
  padding: 14px 18px 16px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
  line-height: 1.45;
}

.coming-soon-toast {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 50;
  max-width: min(320px, calc(100vw - 32px));
  padding: 14px 18px;
  border: 1px solid rgba(255, 110, 66, 0.5);
  border-radius: 6px;
  background: rgba(5, 5, 5, 0.92);
  color: var(--white);
  box-shadow: 0 18px 44px rgba(5, 5, 5, 0.3);
  font-size: 0.95rem;
  font-weight: 850;
  line-height: 1.35;
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.coming-soon-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.nav-links a.is-active::after {
  transform: scaleX(1);
}

.tech-page {
  background: var(--soft-white);
  color: var(--black);
}

.tech-hero {
  min-height: 100svh;
  padding: calc(var(--nav-height) + clamp(18px, 3.2vw, 40px)) 0 clamp(32px, 5vw, 58px);
  background:
          linear-gradient(180deg, rgba(246, 242, 239, 0.94), rgba(255, 255, 255, 0.82)),
          radial-gradient(circle at 68% 28%, rgba(255, 110, 66, 0.2), transparent 32%),
          var(--soft-white);
  color: var(--black);
}

.tech-hero-inner {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  gap: clamp(34px, 5vw, 62px);
}

.tech-hero-copy {
  max-width: 850px;
}

.tech-kicker {
  margin: 0 0 18px;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.tech-hero h1 {
  max-width: 880px;
  margin: 0;
  color: var(--black);
  font-size: clamp(2.4rem, 4.55vw, 4.7rem);
  line-height: 0.96;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: none;
  overflow-wrap: break-word;
}

.tech-hero-copy p:not(.tech-kicker) {
  max-width: 720px;
  margin: 24px 0 0;
  color: rgba(5, 5, 5, 0.72);
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
  line-height: 1.65;
  font-weight: 650;
}

.tech-render-stage {
  position: relative;
  min-height: 640px;
  display: grid;
  align-items: center;
  padding: clamp(22px, 3.4vw, 46px) clamp(26px, 5vw, 72px);
  border: 1px solid rgba(5, 5, 5, 0.08);
  border-radius: 8px;
  background:
          linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.36)),
          radial-gradient(circle at 50% 74%, rgba(5, 5, 5, 0.12), transparent 36%);
  box-shadow: 0 26px 70px rgba(5, 5, 5, 0.12);
  overflow: hidden;
}

.tech-render-stage::before {
  content: "";
  position: absolute;
  inset: 14% 8%;
  border: 1px solid rgba(5, 5, 5, 0.06);
  border-radius: 50%;
  transform: rotate(-7deg);
}

.tech-render-map {
  position: relative;
  width: min(100%, 1040px);
  margin: 0 auto;
}

.tech-render {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 22px 34px rgba(5, 5, 5, 0.22));
}

.tech-hotspot {
  position: absolute;
  z-index: 2;
  left: var(--x);
  top: var(--y);
  width: 0;
  height: 0;
  color: var(--black);
}

.tech-hotspot::before {
  content: "";
  position: absolute;
  width: var(--line-width, 130px);
  height: 2px;
  top: 0;
  left: 0;
  background: var(--orange);
  transform: rotate(var(--line-rotate, 0deg));
  transform-origin: left center;
  box-shadow: 0 0 14px rgba(255, 110, 66, 0.34);
}

.hotspot-dot {
  position: absolute;
  top: -8px;
  left: -8px;
  width: 16px;
  height: 16px;
  border: 3px solid var(--orange);
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 0 0 7px rgba(255, 110, 66, 0.18);
}

.hotspot-card {
  position: absolute;
  left: var(--card-left);
  top: var(--card-top);
  width: 260px;
  min-height: 128px;
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 16px;
  border: 1px solid rgba(5, 5, 5, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 42px rgba(5, 5, 5, 0.12);
}

.hotspot-card strong {
  font-size: 0.94rem;
  text-transform: uppercase;
}

.hotspot-card span {
  color: rgba(5, 5, 5, 0.66);
  font-size: 0.9rem;
  line-height: 1.45;
}

.hotspot-card a {
  width: fit-content;
  margin-top: 4px;
  color: var(--black);
  font-size: 0.86rem;
  font-weight: 850;
  text-decoration: underline;
  text-decoration-color: var(--orange);
  text-underline-offset: 4px;
}

.tech-pictograms {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

.tech-pictogram {
  position: absolute;
  width: min(144px, 15vw);
  min-height: 112px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 7px;
  padding: 13px 10px;
  border: 1px solid rgba(5, 5, 5, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 38px rgba(5, 5, 5, 0.1);
  color: var(--black);
  text-align: center;
  text-decoration: none;
  pointer-events: auto;
}

.tech-pictogram-sensors {
  top: clamp(24px, 4vw, 52px);
  left: clamp(24px, 4vw, 52px);
}

.tech-pictogram-app {
  right: clamp(24px, 4vw, 52px);
  bottom: clamp(24px, 4vw, 46px);
}

.tech-pictogram strong {
  font-size: 0.78rem;
  line-height: 1.12;
  text-transform: uppercase;
}

.tech-pictogram span {
  color: rgba(5, 5, 5, 0.58);
  font-size: 0.74rem;
  line-height: 1.2;
}

.tech-pictogram em {
  color: var(--black);
  font-size: 0.86rem;
  font-style: normal;
  font-weight: 850;
  line-height: 1.1;
  text-decoration: underline;
  text-decoration-color: var(--orange);
  text-underline-offset: 4px;
  padding-top: 5px;
}

.tech-pictogram i {
  position: relative;
  width: 30px;
  height: 30px;
  display: block;
}

.tech-pictogram-sensors i::before,
.tech-pictogram-sensors i::after {
  content: "";
  position: absolute;
  border: 2px solid var(--orange);
  border-radius: 50%;
}

.tech-pictogram-sensors i::before {
  inset: 2px;
}

.tech-pictogram-sensors i::after {
  inset: 10px;
  background: var(--orange);
}

.tech-pictogram-app i {
  border: 2px solid var(--orange);
  border-radius: 6px;
}

.tech-pictogram-app i::before {
  content: "";
  position: absolute;
  left: 9px;
  right: 9px;
  bottom: 5px;
  height: 2px;
  border-radius: 999px;
  background: var(--orange);
}

.hotspot-battery {
  --x: 42.97%;
  --y: 68.98%;
  --card-left: -338px;
  --card-top: 56px;
  --line-width: 142px;
  --line-rotate: 154deg;
}

.hotspot-propeller {
  --x: 70.31%;
  --y: 26.11%;
  --card-left: 116px;
  --card-top: -154px;
  --line-width: 142px;
  --line-rotate: -42deg;
}

.hotspot-controller {
  --x: 58.07%;
  --y: 42.13%;
  --card-left: 190px;
  --card-top: -28px;
  --line-width: 188px;
  --line-rotate: 7deg;
}

.hotspot-controller .hotspot-card {
  width: 300px;
}

.hotspot-frame {
  --x: 35.57%;
  --y: 38.43%;
  --card-left: -218px;
  --card-top: -194px;
  --line-width: 156px;
  --line-rotate: 218deg;
}

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

.tech-detail-link {
  min-height: 118px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 20px;
  border: 1px solid rgba(5, 5, 5, 0.12);
  border-radius: 8px;
  background: var(--white);
  color: var(--black);
}

.tech-detail-link strong {
  font-size: 1rem;
}

.tech-detail-link span {
  color: rgba(5, 5, 5, 0.62);
  font-size: 0.9rem;
  line-height: 1.4;
}

.propeller-system {
  position: relative;
  padding: 0;
  background: var(--white);
  color: var(--black);
}

.propeller-system::before,
.propeller-system::after {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  pointer-events: none;
  clip-path: polygon(
          0 0,
          100% 0,
          100% 22%,
          84% 42%,
          69% 30%,
          51% 66%,
          34% 48%,
          17% 82%,
          0 68%
  );
}

.propeller-system::before {
  height: clamp(98px, 10vw, 148px);
  background: linear-gradient(90deg, rgba(255, 110, 66, 0.26), var(--orange) 48%, #ff9a7b);
  z-index: 2;
}

.propeller-system::after {
  height: calc(clamp(98px, 10vw, 148px) - 5px);
  background:
          radial-gradient(circle at 72% 10%, rgba(255, 110, 66, 0.1), transparent 28%),
          var(--soft-white);
  z-index: 2;
}

.propeller-system-inner {
  position: relative;
  width: 100%;
  margin: 0 auto;
  display: grid;
  gap: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: var(--white);
  box-shadow: none;
  overflow: hidden;
  z-index: auto;
}

.propeller-copy {
  position: absolute;
  left: clamp(24px, 6vw, 96px);
  top: clamp(104px, 11vw, 170px);
  z-index: 3;
  width: min(540px, 43vw);
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  gap: 14px;
  padding: clamp(18px, 2.2vw, 28px);
  border: 1px solid rgba(5, 5, 5, 0.12);
  border-radius: 8px;
  background: rgba(246, 242, 239, 0.94);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 48px rgba(5, 5, 5, 0.14);
}

.propeller-copy .tech-kicker {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.propeller-copy h2 {
  max-width: 500px;
  margin: 0;
  color: var(--black);
  font-size: clamp(1.9rem, 2.8vw, 3rem);
  line-height: 0.98;
  letter-spacing: 0;
  text-transform: uppercase;
}

.propeller-copy p {
  max-width: 500px;
  margin: 0;
  color: rgba(5, 5, 5, 0.7);
  font-size: clamp(0.94rem, 1.12vw, 1.02rem);
  font-weight: 600;
  line-height: 1.5;
}

.propeller-copy p:first-of-type {
  align-self: end;
}

.propeller-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.propeller-facts span {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 13px;
  border: 1px solid rgba(255, 110, 66, 0.36);
  border-radius: 4px;
  background: rgba(255, 110, 66, 0.09);
  color: var(--black);
  font-size: 0.82rem;
  font-weight: 850;
}

.propeller-video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  width: 100%;
  background: var(--white);
  overflow: hidden;
}

.propeller-video-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
          linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0));
  z-index: 1;
}

.propeller-video-frame::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: clamp(56px, 7vw, 104px);
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), #e8e6e3);
  z-index: 1;
}

.propeller-video-visual {
  position: absolute;
  inset: 0;
  transform: scale(1.06);
  transform-origin: center center;
}

.propeller-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 58% center;
  background: var(--white);
}

.propeller-laser-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.propeller-laser-arrow {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.propeller-laser-line {
  fill: none;
  stroke: var(--orange);
  stroke-width: 2;
  stroke-linecap: butt;
  vector-effect: non-scaling-stroke;
  filter: drop-shadow(0 0 7px rgba(255, 110, 66, 0.34));
}

.propeller-laser-dot {
  position: absolute;
  left: 48.75%;
  top: 37.13%;
  width: 16px;
  height: 16px;
  border: 3px solid var(--orange);
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 0 0 7px rgba(255, 110, 66, 0.18);
  transform: translate(-50%, -50%);
}

.propeller-laser-label {
  position: absolute;
  left: 67%;
  top: 14%;
  width: min(25%, 380px);
  display: grid;
  gap: 4px;
  padding: clamp(10px, 1.15vw, 18px) clamp(12px, 1.35vw, 22px);
  border-left: 4px solid var(--orange);
  border-radius: 4px;
  background: rgba(5, 5, 5, 0.88);
  box-shadow: 0 12px 32px rgba(5, 5, 5, 0.18);
  color: var(--white);
}

.propeller-laser-label small {
  color: var(--orange);
  font-size: clamp(0.58rem, 0.72vw, 0.72rem);
  font-weight: 900;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
}

.propeller-laser-label strong {
  font-size: clamp(0.72rem, 1vw, 1rem);
  line-height: 1.24;
}

.cockpit-app {
  --cockpit-transition-bg: #0b0d0e;
  position: relative;
  z-index: 2;
  scroll-margin-top: var(--nav-height);
  padding: clamp(86px, 9vw, 132px) 0 clamp(154px, 15vw, 216px);
  background:
          linear-gradient(180deg, var(--cockpit-transition-bg) 0 140px, rgba(11, 13, 14, 0) 260px),
          radial-gradient(circle at 18% 42%, rgba(255, 110, 66, 0.18), transparent 30%),
          linear-gradient(135deg, #15191a, var(--black) 68%);
  color: var(--white);
}

.cockpit-app::before,
.cockpit-app::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  pointer-events: none;
  clip-path: polygon(
          0 66%,
          14% 78%,
          31% 42%,
          48% 60%,
          66% 20%,
          82% 38%,
          100% 4%,
          100% 100%,
          0 100%
  );
}

.cockpit-app::before {
  top: -116px;
  height: 128px;
  z-index: 2;
  background: linear-gradient(90deg, #ff9a7b, var(--orange) 48%, rgba(255, 110, 66, 0.32));
}

.cockpit-app::after {
  top: -110px;
  height: 134px;
  z-index: 2;
  background: var(--cockpit-transition-bg);
}

.cockpit-app-inner {
  position: relative;
  z-index: 3;
  isolation: isolate;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(460px, 1.22fr);
  align-items: center;
  gap: clamp(54px, 9vw, 126px);
}

.cockpit-app-inner::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -3% -24% 12% 38%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  transform: rotate(-10deg);
  pointer-events: none;
}

.cockpit-app-video-stage {
  position: relative;
  display: grid;
  justify-items: center;
}

.cockpit-app-phone {
  position: relative;
  width: min(100%, 342px);
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 38px;
  background: linear-gradient(145deg, #3a4143, #101314 44%, #292e30);
  box-shadow:
          0 36px 74px rgba(0, 0, 0, 0.52),
          0 0 0 9px rgba(255, 255, 255, 0.035),
          0 0 68px rgba(255, 110, 66, 0.12);
}

.cockpit-app-phone::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 17px;
  left: 50%;
  width: 26%;
  height: 18px;
  border-radius: 999px;
  background: #111516;
  transform: translateX(-50%);
  pointer-events: none;
}

.cockpit-app-video {
  width: 100%;
  aspect-ratio: 503 / 1047;
  display: block;
  border-radius: 29px;
  background: #e9e9e9;
  object-fit: cover;
}

.cockpit-app-video-label {
  position: absolute;
  right: -18px;
  bottom: 12%;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 13px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 4px;
  background: rgba(5, 5, 5, 0.82);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  backdrop-filter: blur(14px);
}

.cockpit-app-video-label::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 5px rgba(255, 110, 66, 0.16);
}

.cockpit-app-copy {
  position: relative;
  z-index: 1;
}

.cockpit-app-copy .tech-kicker {
  margin-bottom: 16px;
}

.cockpit-app-copy h2 {
  max-width: 700px;
  margin: 0;
  color: var(--white);
  font-size: clamp(2.35rem, 4.8vw, 4.75rem);
  line-height: 0.96;
  text-transform: uppercase;
}

.cockpit-app-lede {
  max-width: 660px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1rem, 1.45vw, 1.18rem);
  font-weight: 620;
  line-height: 1.65;
}

.cockpit-app-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: clamp(30px, 4vw, 46px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.14);
}

.cockpit-app-features article {
  display: grid;
  grid-template-columns: auto 1fr;
  align-content: start;
  gap: 14px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.055);
}

.cockpit-app-features article > span {
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.cockpit-app-features h3 {
  margin: 0;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cockpit-app-features p {
  margin: 9px 0 0;
  color: rgba(255, 255, 255, 0.63);
  font-size: 0.88rem;
  font-weight: 580;
  line-height: 1.5;
}

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

.cockpit-app-download {
  min-width: 0;
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.075);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.cockpit-app-download:hover,
.cockpit-app-download:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255, 110, 66, 0.75);
  background: rgba(255, 110, 66, 0.1);
}

.cockpit-app-download .cockpit-app-qr {
  width: 82px;
  height: 82px;
  display: block;
  border-radius: 4px;
}

.cockpit-store-badge {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
}

.cockpit-store-badge-apple {
  width: 150px;
}

.cockpit-store-badge-google {
  width: 172px;
  margin-left: -11px;
}

.harness-system {
  position: relative;
  z-index: 2;
  isolation: isolate;
  scroll-margin-top: calc(var(--nav-height) + 16px);
  padding: clamp(82px, 9vw, 132px) 0 0;
  background:
          radial-gradient(circle at 92% 4%, rgba(255, 110, 66, 0.13), transparent 26%),
          var(--soft-white);
  color: var(--black);
}

.harness-system::before,
.harness-system::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  pointer-events: none;
  clip-path: polygon(
          0 58%,
          16% 72%,
          34% 38%,
          51% 54%,
          68% 18%,
          83% 34%,
          100% 0,
          100% 100%,
          0 100%
  );
}

.harness-system::before {
  top: -104px;
  height: 106px;
  z-index: 0;
  background: linear-gradient(90deg, rgba(255, 110, 66, 0.24), var(--orange) 64%, #ff9a7b);
}

.harness-system::after {
  top: -99px;
  height: 101px;
  z-index: 0;
  background:
          radial-gradient(circle at 88% 0, rgba(255, 110, 66, 0.12), transparent 34%),
          var(--soft-white);
}

.harness-intro,
.frame-configurator {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
}

.harness-intro {
  position: relative;
  z-index: 1;
}

.harness-copy {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(360px, 1.1fr);
  gap: 18px clamp(42px, 8vw, 112px);
  align-items: end;
  margin-bottom: clamp(42px, 6vw, 76px);
}

.harness-copy .tech-kicker {
  grid-column: 1 / -1;
  margin: 0;
}

.harness-copy h2 {
  max-width: 610px;
  margin: 0;
  color: var(--black);
  font-size: clamp(2.35rem, 4.8vw, 4.75rem);
  line-height: 0.96;
  text-transform: uppercase;
}

.harness-copy > p:not(.tech-kicker) {
  max-width: 610px;
  margin: 0;
  color: rgba(5, 5, 5, 0.7);
  font-size: clamp(1rem, 1.55vw, 1.2rem);
  font-weight: 620;
  line-height: 1.65;
}

.harness-facts {
  grid-column: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 4px;
}

.harness-facts span {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 13px;
  border: 1px solid rgba(255, 110, 66, 0.4);
  border-radius: 4px;
  background: rgba(255, 110, 66, 0.08);
  font-size: 0.8rem;
  font-weight: 850;
}

.harness-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: clamp(150px, 17vw, 232px);
  gap: 12px;
}

.harness-photo {
  min-width: 0;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #d9d5d1;
  box-shadow: 0 18px 44px rgba(5, 5, 5, 0.12);
}

.harness-photo-wide {
  grid-column: span 2;
}

.harness-photo-tall {
  grid-row: span 2;
}

.harness-photo button {
  position: relative;
  width: 100%;
  height: 100%;
  display: block;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.harness-photo button::after {
  content: "+";
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
  background: rgba(5, 5, 5, 0.62);
  color: var(--white);
  font-size: 1.25rem;
  line-height: 1;
  opacity: 0;
  transform: translateY(5px);
  transition: opacity 180ms ease, transform 180ms ease, background 180ms ease;
}

.harness-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 260ms ease, filter 260ms ease;
}

.harness-photo button:hover img,
.harness-photo button:focus-visible img {
  transform: scale(1.035);
  filter: brightness(0.9);
}

.harness-photo button:hover::after,
.harness-photo button:focus-visible::after {
  opacity: 1;
  transform: translateY(0);
}

.frame-configurator {
  display: grid;
  grid-template-columns: minmax(280px, 0.55fr) minmax(600px, 1.45fr);
  gap: clamp(30px, 4vw, 64px);
  align-items: center;
}

.frame-configurator-band {
  position: relative;
  isolation: isolate;
  margin-top: clamp(78px, 9vw, 132px);
  padding: clamp(74px, 8vw, 120px) 0 clamp(82px, 9vw, 132px);
  background:
          radial-gradient(circle at 72% 50%, rgba(255, 110, 66, 0.07), transparent 34%),
          linear-gradient(135deg, #111111, #050505 68%);
  color: var(--white);
  overflow: visible;
}

.frame-configurator-band::before,
.frame-configurator-band::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  pointer-events: none;
  clip-path: polygon(
          0 78%,
          16% 86%,
          34% 58%,
          48% 70%,
          67% 30%,
          82% 44%,
          100% 0,
          100% 100%,
          0 100%
  );
}

.frame-configurator-band::before {
  top: -116px;
  height: 118px;
  z-index: -2;
  background: linear-gradient(90deg, rgba(255, 110, 66, 0.2), var(--orange) 68%, #ff9a7b);
}

.frame-configurator-band::after {
  top: -111px;
  height: 113px;
  z-index: -1;
  background: linear-gradient(135deg, #111111, #050505 76%);
}

.frame-configurator-band .frame-configurator {
  position: relative;
  z-index: 1;
  width: min(1380px, calc(100% - 32px));
}

.frame-configurator-copy h3 {
  max-width: 470px;
  margin: 0;
  color: var(--white);
  font-size: clamp(2rem, 3.5vw, 3.7rem);
  line-height: 0.98;
  text-transform: uppercase;
}

.frame-configurator-copy > p:not(.tech-kicker) {
  max-width: 510px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 1.02rem;
  font-weight: 620;
  line-height: 1.65;
}

.adjustment-options {
  margin: 30px 0 0;
  padding: 0;
  display: grid;
  list-style: none;
  counter-reset: adjustment-option;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.adjustment-options li {
  position: relative;
  min-height: 76px;
  display: grid;
  gap: 6px;
  padding: 17px 0 17px 38px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  counter-increment: adjustment-option;
}

.adjustment-options li::before {
  content: "0" counter(adjustment-option);
  position: absolute;
  left: 0;
  top: 18px;
  color: var(--orange);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.adjustment-options strong {
  color: var(--white);
  font-size: 0.83rem;
  line-height: 1.35;
}

.adjustment-options span {
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.78rem;
  font-weight: 620;
  line-height: 1.5;
}

.configurator-status {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.configurator-status span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 6px rgba(255, 110, 66, 0.14);
}

.pushrod-stage {
  position: relative;
  min-height: clamp(580px, 52vw, 740px);
  display: grid;
  grid-template-rows: auto minmax(330px, 1fr) auto auto;
  padding: 22px 0;
  border: 0;
  border-radius: 0;
  background:
          linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
          linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
          radial-gradient(circle at 50% 48%, rgba(255, 255, 255, 0.055), transparent 62%);
  background-size: 38px 38px, 38px 38px, auto;
  box-shadow: none;
  overflow: hidden;
}

.pushrod-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255, 110, 66, 0.045), transparent 28%);
}

.pushrod-stage-head {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.pushrod-stage-head strong {
  color: var(--white);
  font-size: 0.86rem;
}

.pushrod-stage-meta {
  display: grid;
  justify-items: end;
  gap: 8px;
}

.pilot-weight {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.pushrod-canvas {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  min-height: 330px;
  display: block;
  cursor: grab;
  touch-action: none;
  outline: none;
}

.pushrod-canvas.is-dragging {
  cursor: grabbing;
}

.pushrod-canvas:focus-visible {
  box-shadow: inset 0 0 0 2px rgba(255, 110, 66, 0.72);
}

.pushrod-controls {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
  margin: 2px 0 16px;
}

.pushrod-control-group {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.035);
}

.pushrod-control-group span {
  padding: 0 7px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pushrod-control-group button {
  width: 34px;
  height: 32px;
  display: inline-grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255, 110, 66, 0.38);
  border-radius: 4px;
  background: rgba(255, 110, 66, 0.08);
  color: var(--white);
  cursor: pointer;
  font: inherit;
  font-size: 1rem;
  transition: border-color 160ms ease, background 160ms ease, opacity 160ms ease;
}

.pushrod-control-group button:hover,
.pushrod-control-group button:focus-visible {
  border-color: var(--orange);
  background: rgba(255, 110, 66, 0.2);
}

.pushrod-control-group button:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.pushrod-hint {
  position: relative;
  z-index: 2;
  margin: 0;
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.harness-gallery-dialog .gallery-image {
  width: auto;
  height: auto;
}

@media (max-width: 1150px) {
  .cockpit-app {
    --cockpit-zig-height: clamp(64px, 9vw, 104px);
    --cockpit-zig-y-0: clamp(42px, 5.94vw, 69px);
    --cockpit-zig-y-1: clamp(50px, 7.02vw, 81px);
    --cockpit-zig-y-2: clamp(27px, 3.78vw, 44px);
    --cockpit-zig-y-3: clamp(38px, 5.4vw, 62px);
    --cockpit-zig-y-4: clamp(13px, 1.8vw, 21px);
    --cockpit-zig-y-5: clamp(24px, 3.42vw, 40px);
    --cockpit-zig-y-6: clamp(3px, 0.36vw, 5px);
    clip-path: polygon(
            0 var(--cockpit-zig-y-0),
            14% var(--cockpit-zig-y-1),
            31% var(--cockpit-zig-y-2),
            48% var(--cockpit-zig-y-3),
            66% var(--cockpit-zig-y-4),
            82% var(--cockpit-zig-y-5),
            100% var(--cockpit-zig-y-6),
            100% 100%,
            0 100%
    );
  }

  .cockpit-app::before,
  .cockpit-app::after {
    clip-path: polygon(
            0 var(--cockpit-zig-y-0),
            14% var(--cockpit-zig-y-1),
            31% var(--cockpit-zig-y-2),
            48% var(--cockpit-zig-y-3),
            66% var(--cockpit-zig-y-4),
            82% var(--cockpit-zig-y-5),
            100% var(--cockpit-zig-y-6),
            100% 100%,
            0 100%
    );
  }

  .cockpit-app::before {
    top: 0;
    height: var(--cockpit-zig-height);
  }

  .cockpit-app::after {
    top: 6px;
    height: calc(var(--cockpit-zig-height) + 18px);
  }
}

@media (min-width: 641px) and (max-width: 1150px) {
  .tech-pictograms {
    inset: auto;
    right: clamp(20px, 4vw, 42px);
    bottom: clamp(20px, 4vw, 42px);
    width: min(300px, 38vw);
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    pointer-events: auto;
  }

  .tech-pictogram {
    position: static;
    width: auto;
  }

  .propeller-system-inner {
    min-height: auto;
  }

  .propeller-copy {
    position: relative;
    left: auto;
    top: auto;
    width: auto;
    grid-template-columns: minmax(260px, 0.72fr) minmax(320px, 1fr);
    gap: 12px 20px;
    padding: 20px 24px 22px;
    border: 0;
    border-top: 1px solid rgba(5, 5, 5, 0.1);
    border-radius: 0;
    background: var(--soft-white);
    backdrop-filter: none;
    box-shadow: none;
  }

  .propeller-copy h2 {
    font-size: clamp(1.85rem, 4.2vw, 2.6rem);
  }

  .propeller-video-frame {
    aspect-ratio: 21 / 9;
  }

  .propeller-copy p {
    font-size: 0.94rem;
    line-height: 1.42;
  }

  .propeller-facts {
    gap: 8px;
    margin-top: 4px;
  }

  .propeller-facts span {
    min-height: 34px;
  }
}

@media (max-width: 920px) {
  .site-header {
    height: auto;
    min-height: var(--nav-height);
  }

  .nav {
    min-height: var(--nav-height);
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0 18px;
  }

  .menu-toggle {
    width: 46px;
    height: 44px;
    display: inline-grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    cursor: pointer;
  }

  .menu-toggle span,
  .menu-toggle::before,
  .menu-toggle::after {
    content: "";
    width: 20px;
    height: 2px;
    grid-area: 1 / 1;
    background: currentColor;
  }

  .menu-toggle::before {
    transform: translateY(-7px);
  }

  .menu-toggle::after {
    transform: translateY(7px);
  }

  .nav-menu {
    grid-column: 1 / -1;
    display: none;
    padding: 0 0 18px;
  }

  .nav.is-open .nav-menu {
    display: grid;
    gap: 16px;
  }

  .nav-links {
    display: grid;
    justify-content: stretch;
    gap: 2px;
    padding-top: 8px;
  }

  .nav-links a {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-links a::after {
    display: none;
  }

  .nav-action {
    grid-column: 1 / -1;
    display: none;
    width: 100%;
    margin-top: 8px;
  }

  .nav.is-open .nav-action {
    display: inline-flex;
    margin-bottom: 14px;
  }

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

  .fact:nth-child(2) {
    border-right: 0;
  }

  .fact:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .intro-inner {
    grid-template-columns: 1fr;
  }

  .experience-inner {
    grid-template-columns: 1fr;
  }

  .event-gallery {
    grid-template-rows: none;
  }

  .tech-render-stage {
    min-height: auto;
    padding-bottom: 260px;
  }

  .tech-hotspot {
    width: min(260px, 38vw);
  }

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

  .propeller-system-inner {
    min-height: auto;
  }

  .propeller-copy {
    position: relative;
    left: auto;
    top: auto;
    width: auto;
    grid-template-columns: 1fr;
    border: 0;
    border-top: 1px solid rgba(5, 5, 5, 0.1);
    border-radius: 0;
    background: var(--soft-white);
    backdrop-filter: none;
    box-shadow: none;
  }

  .propeller-video-frame {
    aspect-ratio: 16 / 9;
  }

  .cockpit-app-inner {
    grid-template-columns: minmax(250px, 0.72fr) minmax(0, 1.28fr);
    gap: 38px;
  }

  .cockpit-app-phone {
    width: min(100%, 280px);
  }

  .cockpit-app-features {
    grid-template-columns: 1fr;
  }

  .cockpit-app-downloads {
    grid-template-columns: 1fr;
  }

  .route-animation {
    top: -86px;
    left: -120px;
    width: 760px;
    max-width: none;
    opacity: 0.28;
  }
}

@media (min-width: 641px) and (max-width: 920px) {
  .propeller-copy {
    grid-template-columns: minmax(250px, 0.72fr) minmax(300px, 1fr);
    gap: 12px 20px;
    padding: 20px 24px 22px;
  }

  .propeller-copy h2 {
    font-size: clamp(1.85rem, 4.2vw, 2.6rem);
    grid-row: 2 / span 3;
  }

  .propeller-copy p {
    grid-column: 2;
    max-width: none;
    font-size: 0.94rem;
    line-height: 1.42;
  }

  .propeller-facts {
    grid-column: 2;
    gap: 8px;
    margin-top: 4px;
  }

  .propeller-facts span {
    min-height: 34px;
  }

  .hotspot-battery {
    --card-left: -235px;
    --card-top: 66px;
    --line-width: 98px;
    --line-rotate: 145deg;
  }

  .hotspot-propeller {
    --card-left: -80px;
    --card-top: -118px;
    --line-width: 96px;
    --line-rotate: -76deg;
  }

  .hotspot-controller {
    --card-left: -8px;
    --card-top: 48px;
    --line-width: 64px;
    --line-rotate: 21deg;
  }

  .hotspot-frame {
    --card-left: -220px;
    --card-top: -126px;
    --line-width: 104px;
    --line-rotate: 163deg;
  }

  .hotspot-controller .hotspot-card {
    width: 260px;
  }
}

@media (max-width: 640px) {
  :root {
    --nav-height: 74px;
  }

  .nav,
  .hero-content,
  .intro-inner,
  .experience-inner,
  .tech-hero-inner,
  .status-inner {
    width: min(100% - 24px, 1180px);
  }

  .brand {
    min-width: 0;
    gap: 12px;
  }

  .brand-mark {
    width: 74px;
    height: 52px;
  }

  .support-link {
    gap: 2px;
    font-size: 0.76rem;
  }

  .support-link small {
    font-size: 0.52rem;
  }

  .support-email {
    font-size: 0.62rem;
  }

  h1 {
    font-size: clamp(2.5rem, 11vw, 3.2rem);
  }

  .hero-copy {
    padding-top: 48px;
  }

  .hero-lede {
    font-size: 1.04rem;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .quick-facts {
    grid-template-columns: 1fr;
  }

  .fact,
  .fact:nth-child(2) {
    min-height: 94px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .fact:last-child {
    border-bottom: 0;
  }

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

  .experience {
    margin-top: -58px;
    padding: 112px 0 68px;
    clip-path: polygon(0 58px, 100% 0, 100% 100%, 0 100%);
  }

  .experience h2 {
    font-size: clamp(2rem, 11vw, 3.15rem);
  }

  .experience-actions {
    display: grid;
  }

  .event-gallery {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .event-photo,
  .event-photo:first-child {
    min-height: 210px;
    grid-row: auto;
  }

  .tech-hero {
    padding-top: calc(var(--nav-height) + 42px);
  }

  .tech-hero h1 {
    font-size: clamp(2.25rem, 10.5vw, 3.3rem);
  }

  .tech-render-stage {
    display: grid;
    gap: 14px;
    padding: 18px;
    overflow: hidden;
  }

  .tech-render-stage::before {
    display: none;
  }

  .tech-render {
    width: 100%;
    max-width: none;
    margin-left: 0;
  }

  .tech-render-map {
    display: grid;
    gap: 12px;
  }

  .tech-hotspot {
    position: relative;
    inset: auto;
    left: auto;
    top: auto;
    width: 100%;
    height: auto;
  }

  .tech-hotspot::before,
  .hotspot-dot {
    display: none;
  }

  .hotspot-card {
    position: relative;
    left: auto;
    top: auto;
    width: auto;
    min-height: 0;
  }

  .hotspot-controller .hotspot-card {
    width: auto;
  }

  .tech-pictograms {
    position: static;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    pointer-events: auto;
  }

  .tech-pictogram {
    position: static;
    width: auto;
    min-height: 104px;
  }

  .tech-detail-links {
    grid-template-columns: 1fr;
  }

  .propeller-system {
    padding: 0;
  }

  .propeller-system-inner {
    width: 100%;
    display: grid;
    gap: 0;
    padding: 0;
  }

  .propeller-copy h2 {
    font-size: clamp(2rem, 10vw, 3.15rem);
  }

  .propeller-copy {
    position: relative;
    left: auto;
    top: auto;
    width: auto;
    grid-template-columns: 1fr;
    padding: 22px;
    border: 0;
    border-top: 1px solid rgba(5, 5, 5, 0.1);
    border-radius: 0;
    background: var(--soft-white);
    backdrop-filter: none;
    box-shadow: none;
  }

  .propeller-video-frame {
    position: relative;
    inset: auto;
    aspect-ratio: 16 / 10.5;
  }

  .propeller-video-frame::before {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0));
  }

  .propeller-video-visual {
    transform: translate(-5%, 5%) scale(1.1);
    transform-origin: center center;
  }

  .propeller-video {
    object-fit: contain;
    object-position: center center;
  }

  .propeller-laser-label {
    left: 62%;
    top: 9%;
    width: 32%;
    gap: 3px;
    padding: 8px 9px;
    border-left-width: 3px;
  }

  .propeller-laser-label small {
    font-size: 0.5rem;
  }

  .propeller-laser-label strong {
    font-size: clamp(0.6rem, 2.8vw, 0.76rem);
  }

  .propeller-facts {
    display: grid;
  }

  .cockpit-app {
    padding: 74px 0 138px;
  }

  .cockpit-app-inner {
    width: min(100% - 24px, 1180px);
    grid-template-columns: 1fr;
    gap: 58px;
  }

  .cockpit-app-inner::before {
    inset: 30% -70% 24% 4%;
  }

  .cockpit-app-phone {
    width: min(78vw, 280px);
    border-radius: 32px;
  }

  .cockpit-app-video {
    border-radius: 23px;
  }

  .cockpit-app-video-label {
    right: max(-10px, -2vw);
  }

  .cockpit-app-copy h2 {
    font-size: clamp(2.15rem, 10vw, 3.15rem);
  }

  .cockpit-app-features article {
    padding: 18px;
  }

  .cockpit-app-download {
    grid-template-columns: 74px minmax(0, 1fr);
  }

  .cockpit-app-download .cockpit-app-qr {
    width: 74px;
    height: 74px;
  }

  .route-animation {
    top: -28px;
    left: -74px;
    right: 0;
    width: auto;
    height: 340px;
    min-height: 0;
    opacity: 0.38;
  }

  .status-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
  }

}

@media (max-width: 920px) {
  .harness-copy {
    grid-template-columns: 1fr;
  }

  .harness-copy .tech-kicker,
  .harness-facts {
    grid-column: 1;
  }

  .harness-gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-rows: clamp(160px, 26vw, 230px);
  }

  .frame-configurator {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .frame-configurator-copy {
    display: grid;
    grid-template-columns: minmax(240px, 0.8fr) minmax(300px, 1.2fr);
    gap: 0 28px;
  }

  .frame-configurator-copy .tech-kicker {
    grid-column: 1 / -1;
  }

  .frame-configurator-copy h3 {
    grid-row: 2 / span 2;
  }

  .frame-configurator-copy > p:not(.tech-kicker) {
    margin-top: 0;
  }

  .configurator-status {
    grid-column: 2;
    margin-top: 20px;
  }

  .pushrod-stage {
    min-height: clamp(540px, 78vw, 680px);
  }
}

@media (max-width: 640px) {
  .harness-system {
    padding: 72px 0 0;
  }

  .propeller-system::before,
  .propeller-system::after {
    clip-path: polygon(
            0 0,
            100% 0,
            100% 24%,
            72% 52%,
            48% 36%,
            24% 76%,
            0 58%
    );
  }

  .propeller-system::before {
    height: 68px;
  }

  .propeller-system::after {
    height: 64px;
  }

  .harness-system::before,
  .harness-system::after {
    clip-path: polygon(
            0 62%,
            25% 74%,
            50% 38%,
            74% 55%,
            100% 12%,
            100% 100%,
            0 100%
    );
  }

  .harness-system::before {
    top: -72px;
    height: 74px;
  }

  .harness-system::after {
    top: -68px;
    height: 70px;
  }

  .harness-intro,
  .frame-configurator {
    width: min(100% - 24px, 1180px);
  }

  .harness-copy {
    gap: 18px;
    margin-bottom: 34px;
  }

  .harness-copy h2 {
    font-size: clamp(2.15rem, 10vw, 3.15rem);
  }

  .harness-facts {
    display: grid;
  }

  .harness-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 160px;
    gap: 8px;
  }

  .harness-photo-wide {
    grid-column: span 2;
  }

  .harness-photo-tall {
    grid-row: span 2;
  }

  .harness-photo button::after {
    opacity: 1;
    transform: none;
  }

  .frame-configurator {
    margin-top: 0;
    padding-top: 0;
    gap: 38px;
  }

  .frame-configurator-band {
    margin-top: 72px;
    padding: 64px 0 70px;
  }

  .frame-configurator-band::before,
  .frame-configurator-band::after {
    clip-path: polygon(
            0 76%,
            24% 84%,
            50% 52%,
            72% 66%,
            100% 18%,
            100% 100%,
            0 100%
    );
  }

  .frame-configurator-band::before {
    top: -76px;
    height: 78px;
  }

  .frame-configurator-band::after {
    top: -72px;
    height: 74px;
  }

  .frame-configurator-band .frame-configurator {
    width: min(100% - 24px, 1180px);
  }

  .frame-configurator-copy {
    display: block;
  }

  .frame-configurator-copy h3 {
    font-size: clamp(2rem, 9vw, 2.9rem);
  }

  .frame-configurator-copy > p:not(.tech-kicker) {
    margin-top: 20px;
  }

  .configurator-status {
    margin-top: 24px;
  }

  .pushrod-stage {
    min-height: 500px;
    padding: 14px 0;
  }

  .pushrod-canvas {
    min-height: 400px;
  }

  .gallery-stage {
    min-height: 58vh;
  }

  .gallery-nav {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 920px) {
  .status-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .legal-sections {
    grid-template-columns: 1fr;
  }

  .legal-card,
  .legal-card:first-child,
  .legal-card:last-child {
    grid-column: 1;
  }
}

@media (max-width: 640px) {
  .legal-inner {
    width: min(100% - 24px, 920px);
  }

  .legal-main {
    padding-top: calc(var(--nav-height) + 48px);
  }

  .status-inner {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .route-line,
  .ascent-line,
  .route-pulse,
  .route-glider {
    animation: none;
  }
}
