:root {
  --bg: #000000;
  --panel: rgba(14, 14, 14, 0.96);
  --text: #ffffff;
  --muted: #a0a0a0;
  --accent: #ff2800;
  --border: #333333;
  --glow: 0 10px 60px rgba(255, 40, 0, 0.18);
}

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

body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

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

html {
  scroll-behavior: auto;
}

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

.page {
  position: relative;
}

.story {
  --story-panel-count: 1;
  --story-progress-ratio: 0;
  position: relative;
  min-height: calc((var(--story-panel-count) + 1) * 100vh);
}

.story__sticky {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  height: 100vh;
  isolation: isolate;
}

.story__sticky > .story__panel {
  --story-panel-progress: 0;
  --story-panel-visibility: 0;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 100%;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.story__panel.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.story:not([data-ready="true"]) .story__sticky > [data-story-panel]:first-child {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.story__progress {
  position: absolute;
  top: 50%;
  right: clamp(1rem, 1.8vw, 1.8rem);
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  transform: translateY(-50%);
  pointer-events: auto;
}

.story__progress-track {
  position: relative;
  width: 2px;
  height: min(36vh, 280px);
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
  pointer-events: none;
}

.story__progress-fill {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 40, 0, 0.9) 0%, rgba(255, 255, 255, 0.38) 100%);
  transform-origin: top center;
  transform: scaleY(var(--story-progress-ratio));
}

.story__progress-markers {
  display: grid;
  gap: 0.65rem;
}

.story__progress-marker {
  appearance: none;
  -webkit-appearance: none;
  width: 0.58rem;
  height: 0.58rem;
  padding: 0;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  cursor: pointer;
  transform: scale(calc(0.88 + var(--story-marker-progress, 0) * 0.12));
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease;
}

.story__progress-marker:hover,
.story__progress-marker:focus-visible {
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.12);
  box-shadow:
    0 0 14px rgba(255, 255, 255, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
  outline: none;
}

.story__progress-marker.is-active {
  border-color: rgba(255, 40, 0, 0.8);
  background: rgba(255, 40, 0, 0.22);
  box-shadow:
    0 0 18px rgba(255, 40, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.story__progress-marker.is-complete:not(.is-active) {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.22);
}

.site-header {
  position: absolute;
  inset: 0 0 auto 0;
  z-index: 3;
  padding: 0 clamp(0rem, 0.5vw, 3rem);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
}

.hero {
  position: relative;
  min-height: 100vh;
  padding: clamp(0rem, 0vw, 3rem) clamp(0rem, 0.5vw, 3rem);
  border-bottom: 1px solid var(--border);
  isolation: isolate;
  display: grid;
  align-items: end;
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 1;
/*  filter: grayscale(85%); */
  filter: contrast(115%);
}

.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.logo {
    font-size: 2.2rem;
    font-weight: 200;
    text-decoration: none;
    display:flex;
}

.logo:hover {
    opacity: 0.9;
}


.dot {
    font-weight: 300;
    font-size: 1em;
    color: #ff2800;
    margin-left: -0.13em;
    margin-right: -0.13em;
    top: 0.11em;
    position:relative;
}

.nav-links {
  display: flex;
  gap: 1.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 200;
  font-size: 1.2rem;
}

.nav-links a {
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.35rem;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

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

.hero__headline {
  align-self: end;
  display: grid;
  gap: 0.1rem;
  margin-bottom: clamp(1.5rem, 6vw, 2rem);
  text-transform: uppercase;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition:
    opacity 220ms ease,
    transform 320ms cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0s linear 220ms;
  z-index: 2;
}

.hero__headline--positioned {
  position: absolute;
  align-self: auto;
  margin-bottom: 0;
}

.hero__headline.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
}

.hero__headline-items {
  display: grid;
  gap: 0.1rem;
}

.hero__headline--layout-stack .hero__headline-items {
  justify-items: start;
}

.hero__headline--layout-feature-grid {
  width: min(1120px, calc(100vw - 2.5rem));
  gap: clamp(1rem, 2.4vw, 2rem);
}

.hero__headline--layout-feature-grid .hero__headline-items {
  justify-items: center;
  text-align: center;
}

.headline-line {
  font-size: clamp(32px, 10.5vw, 220px);
  font-weight: bold;
  letter-spacing: -0.015em;
  line-height: clamp(32px, 8.5vw, 180px)
}

.hero__feature-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(0.75rem, 2vw, 2.25rem);
  padding: clamp(1.2rem, 1.4vw, 1.8rem);
  text-transform: none;
  margin-top:19px;
}

.hero__feature-grid * {
  text-transform: none;
}

.hero-feature-card {
  min-height: clamp(205px, 29vw, 315px);
  position: relative;
  display: grid;
  grid-auto-rows: min-content;
  align-content: center;
  justify-items: center;
  gap: 3rem;
  padding: clamp(1.4rem, 2.2vw, 2.1rem) 1.35rem;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.155);
  color: var(--text);
  background: transparent;
  text-decoration: none;
  transition:
    transform 320ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 180ms ease,
    border-color 180ms ease,
    box-shadow 320ms cubic-bezier(0.22, 1, 0.36, 1),
    background-color 180ms ease;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

.hero-feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.095) 0%, rgba(255,255,255,0.025) 85%),
    rgba(12, 15, 22, 0.24);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.28),
    0 18px 45px rgba(0,0,0,0.28);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  z-index: 0;
}

.hero-feature-card > * {
  position: relative;
  z-index: 1;
}

.hero-feature-card:hover {
transform: translateY(-2px) scale(1.015);
  border-color: rgba(255,255,255,0.38);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.4),
    0 5px 15px rgba(255,255,255,0.4);
}

.hero-feature-card--arrival-pulse {
  animation: hero-card-arrival-float var(--hero-card-pulse-duration, 220ms) cubic-bezier(0.23, 1, 0.32, 1) 1;
}

.hero-feature-card--arrival-pulse::before {
  animation: hero-card-arrival-glass var(--hero-card-pulse-duration, 220ms) cubic-bezier(0.23, 1, 0.32, 1) 1;
}

@keyframes hero-card-arrival-float {
  0%,
  100% {
    transform: translateY(0) scale(1);
    border-color: rgba(255,255,255,0.155);
  }
  45% {
    transform: translateY(-2px) scale(1.015);
    border-color: rgba(255,255,255,0.38);
  }
}

@keyframes hero-card-arrival-glass {
  0%,
  100% {
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,0.28),
      0 18px 45px rgba(0,0,0,0.28);
  }
  45% {
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,0.4),
      0 45px 100px rgba(255,40,0,0.45);
  }
}

.hero-feature-card__icon {
  width: clamp(46px, 5.2vw, 56px);
  height: clamp(46px, 5.2vw, 56px);
  color: rgba(255, 255, 255, 0.96);
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
}

.hero-feature-card__icon svg {
  width: 100%;
  height: 100%;
}

.hero-feature-card__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.hero-feature-card__body {
  display: grid;
  gap: 0.35rem;
  justify-items: center;
  text-align: center;
}

.hero-feature-card__title {
  margin: 0;
  font-size: clamp(1.45rem, 1.5vw, 1.8rem);
  font-weight: 100;
  letter-spacing: -0.028em;
  line-height: 1.05;
}

.hero-feature-card__copy {
  margin: 0;
  font-size: clamp(0.93rem, 1.18vw, 1.07rem);
  line-height: 1.48;
  color: rgba(245, 247, 251, 0.76);
  text-align: center;
  font-weight: 100;
}

.hero-cta {
  margin-top: clamp(2rem, 3.5vw, 3.2rem);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.1rem;
}

.hero-cta__text {
  margin: 0;
  max-width: 48ch;
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  color: rgba(245, 247, 251, 0.68);
  font-weight: 300;
  letter-spacing: 0.02em;
  text-transform: none;
  line-height: 1.45;
}

.hero-cta__button {
  display: inline-block;
  padding: 1.05rem 3.2rem;
  font-size: clamp(1.05rem, 1.5vw, 1.35rem);
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #fff;
  background:transparent;
  border: 1px solid rgba(255,255,255,0.155);
  border-radius: 9999px;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);

  transition:
    transform 320ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 180ms ease,
    border-color 180ms ease,
    box-shadow 320ms cubic-bezier(0.22, 1, 0.36, 1),
    background-color 180ms ease;
  text-decoration: none;
}

.hero-cta__button:hover {
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.4),
    0 5px 15px rgba(255,255,255,0.4);
  transform: translateY(-2px);}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.9rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-weight: 100;
  font-size: 0.9rem;
}

.pill--ghost {
  background: transparent;
  color: var(--muted);
}

.hero__controls {
  position: absolute;
  right: clamp(1.5rem, 3vw, 3.5rem);
  top: 50%;
  display: grid;
  gap: 0.85rem;
  transform: translateY(-50%);
  z-index: 2;
}

.control-btn {
  width: 70px;
  height: 70px;
  border-radius: 999px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: #f5f7fb;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition:
    transform 320ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 180ms ease,
    border-color 180ms ease,
    box-shadow 320ms cubic-bezier(0.22, 1, 0.36, 1),
    background-color 180ms ease;
   backdrop-filter: blur(3px);
   -webkit-backdrop-filter: blur(3px);
}

.control-btn:hover {
  transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.38);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), 0 5px 15px rgba(255, 255, 255, 0.4);  
}

.device-story {
  --story-progress: 0;
  --signal-strength: 1;
  --wire-strength: 0;
  --solid-strength: 0;
  --glow-strength: 0;
  min-height: 240vh;
  padding: clamp(4rem, 8vw, 7rem) clamp(1.25rem, 3vw, 3rem) clamp(5rem, 12vw, 9rem);
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.06), transparent 30%),
    linear-gradient(180deg, rgba(6, 7, 8, 0.98) 0%, rgba(10, 12, 16, 0.98) 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  gap: clamp(2rem, 4vw, 3rem);
}

.device-story p {
  text-transform: none;
}

.device-story__copy {
  display: grid;
  gap: 1rem;
  max-width: 960px;
}

.device-story__eyebrow {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.82rem;
  color: rgba(245, 247, 251, 0.68);
}

.device-story__title {
  margin: 0;
  max-width: 16ch;
  font-size: clamp(2.4rem, 5vw, 5.8rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.device-story__lede {
  margin: 0;
  max-width: 60ch;
  color: rgba(245, 247, 251, 0.78);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  line-height: 1.55;
}

.device-story__layout {
  display: grid;
  grid-template-columns: minmax(320px, 1.05fr) minmax(280px, 0.8fr);
  align-items: start;
  gap: clamp(1.5rem, 4vw, 4rem);
}

.device-story__stage {
  position: sticky;
  top: 10vh;
  min-height: 78vh;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 25%, rgba(255, 255, 255, 0.04), transparent 38%),
    rgba(12, 15, 20, 0.78);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(10px);
  display: grid;
  place-items: center;
  align-content: center;
  gap: 1.5rem;
  overflow: hidden;
  padding: 2.5rem;
}

.device-story__status {
  margin: 0;
  max-width: 30ch;
  text-align: center;
  color: rgba(245, 247, 251, 0.72);
  font-size: 0.98rem;
  line-height: 1.45;
}

.device-story__steps {
  display: grid;
  gap: 26vh;
  padding-block: 10vh;
}

.story-step {
  padding: 1.4rem 1.5rem 1.55rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(13, 16, 22, 0.52);
  opacity: 0.42;
  transform: translateY(22px);
  transition: opacity 0.25s ease, transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.story-step.is-active {
  opacity: 1;
  transform: translateY(0);
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(13, 16, 22, 0.86);
}

.story-step__index {
  display: inline-flex;
  margin-bottom: 0.8rem;
  color: rgba(245, 247, 251, 0.45);
  font-size: 0.82rem;
  letter-spacing: 0.22em;
}

.story-step h3 {
  margin: 0 0 0.65rem;
  font-size: 1.55rem;
  letter-spacing: -0.02em;
}

.story-step p {
  margin: 0;
  color: rgba(245, 247, 251, 0.74);
  line-height: 1.55;
}

.device-reveal {
  position: relative;
  width: min(34vw, 360px);
  min-width: 230px;
  aspect-ratio: 0.52;
  isolation: isolate;
}

.device-reveal__glow,
.device-reveal__grid,
.device-reveal__signals,
.device-reveal__object {
  position: absolute;
  inset: 0;
}

.device-reveal__glow {
  border-radius: 32px;
  background:
    radial-gradient(circle at 50% 55%, rgba(255, 255, 255, 0.1), transparent 26%),
    radial-gradient(circle at 48% 24%, rgba(255, 40, 0, 0.18), transparent 20%),
    radial-gradient(circle at 50% 68%, rgba(255, 255, 255, 0.08), transparent 32%);
  opacity: calc(0.15 + (var(--glow-strength) * 0.85));
  transform: scale(calc(0.92 + (var(--solid-strength) * 0.08)));
  filter: blur(24px);
}

.device-reveal__grid {
  border-radius: 32px;
  background:
    linear-gradient(transparent 97%, rgba(255, 255, 255, 0.05) 100%),
    linear-gradient(90deg, transparent 97%, rgba(255, 255, 255, 0.05) 100%);
  background-size: 100% 32px, 32px 100%;
  opacity: calc(0.08 + (var(--signal-strength) * 0.24));
}

.device-signal {
  position: absolute;
  left: 50%;
  top: var(--signal-top);
  width: var(--signal-width);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(229, 233, 240, 0.98), transparent);
  box-shadow: 0 0 22px rgba(255, 255, 255, 0.26);
  opacity: calc(0.06 + (var(--signal-strength) * 0.94));
  transform:
    translateX(-50%)
    translateY(calc((0.55 - var(--story-progress)) * var(--signal-offset) * 28px))
    scaleX(calc(1 - (var(--story-progress) * 0.34)));
  transform-origin: center;
}

.device-reveal__object {
  transform: translateY(calc((1 - var(--solid-strength)) * 22px));
}

.device-piece {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.device-piece--antenna {
  top: 3%;
  width: 16%;
  height: 48%;
  border-radius: 999px;
}

.device-piece--neck {
  top: 48%;
  width: 9%;
  height: 10%;
  border-radius: 8px;
}

.device-piece--connector {
  top: 50%;
  width: 11%;
  height: 5.4%;
  border-radius: 999px;
}

.device-piece--body {
  top: 56%;
  width: 45%;
  height: 34%;
  border-radius: 24px;
}

.device-piece--button {
  top: 57%;
  left: 66.5%;
  width: 5.8%;
  height: 12%;
  border-radius: 999px;
}

.device-piece--sensor {
  top: 63.2%;
  left: 50.5%;
  width: 1.7%;
  height: 1.7%;
  border-radius: 999px;
  background: rgba(8, 8, 8, 0.7);
  opacity: calc(var(--solid-strength) * 0.8);
}

.device-piece--outline {
  background: transparent;
  border: 1.5px solid rgba(210, 214, 220, 0.75);
  opacity: calc(0.04 + (var(--wire-strength) * (1 - (var(--solid-strength) * 0.35))) * 0.92);
  filter: drop-shadow(0 0 18px rgba(255, 255, 255, 0.08));
}

.device-piece--solid {
  opacity: calc(0.04 + (var(--solid-strength) * 0.96));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 26px 40px rgba(0, 0, 0, 0.28);
}

.device-piece--solid.device-piece--antenna {
  background: linear-gradient(180deg, rgba(19, 20, 22, 0.98) 0%, rgba(10, 10, 11, 0.98) 100%);
}

.device-piece--solid.device-piece--neck {
  background: linear-gradient(180deg, rgba(19, 20, 22, 0.98) 0%, rgba(12, 12, 14, 0.98) 100%);
}

.device-piece--solid.device-piece--connector {
  background: linear-gradient(180deg, rgba(214, 214, 214, 0.95) 0%, rgba(131, 131, 131, 0.95) 100%);
}

.device-piece--solid.device-piece--body {
  overflow: hidden;
  background: linear-gradient(180deg, rgba(126, 119, 106, 0.98) 0%, rgba(106, 100, 88, 0.98) 100%);
}

.device-piece--solid.device-piece--body::before {
  content: "";
  position: absolute;
  inset: 8% 13% 9%;
  border-radius: 16px;
  background:
    repeating-linear-gradient(
      90deg,
      rgba(58, 56, 50, 0.45) 0 7%,
      rgba(58, 56, 50, 0.45) 7.5% 9%,
      transparent 9% 18%
    );
  opacity: 0.9;
}

.device-piece--button:not(.device-piece--outline) {
  background: linear-gradient(180deg, #ff4a1c 0%, #c91f00 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.24),
    0 14px 24px rgba(201, 31, 0, 0.22);
  opacity: calc(0.12 + (var(--solid-strength) * 0.92));
}

main {
  display: grid;
  gap: 0;
}

.section {
  position: relative;
  display: grid;
  padding-top:1.85rem;
}

@media (min-width: 1024px) {
  .padding--fluid {
    /* On laptops and larger: scale between 2rem and 3rem */
    padding-right: clamp(1rem, 3vw, 3rem);
  }
}

.section--intro {
  padding: 8rem 1rem 0;
}

.section__label {
  font-size: 2.38em;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 40, 0, 0.9);
}

.section__content {
  font-size: 2.38em;
  color: var(--muted);
  display: grid;
  gap: 0.01em;
}

.intro {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: clamp(1.5rem, 3vw, 2.75rem);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
}

.intro__text {
  font-size: clamp(6rem, 9vw, 11rem);
  color: #e5e9f0;
  font-weight: 400;
  text-box-edge: cap alphabetic;
  text-box-trim: trim-both;
  margin-left: -0.04em;
}

.grid {
  grid-template-columns: minmax(200px, 250px) 1fr;
  align-items: start;
  gap: 1.25rem;
}

.grid--reverse {
  grid-template-columns: 1fr minmax(120px, 290px);
}

.card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: clamp(1.5rem, 3vw, 2.75rem);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
  display: grid;
  gap: 0.75rem;
}

.agent-card {
  grid-template-columns: minmax(280px, 1.2fr) 1fr;
  align-items: start;
  gap: clamp(1rem, 3vw, 2rem);
}

.agent-media {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #0c0f14;
  min-height: 240px;
}

.agent-audio-toggle {
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 56px;
  height: 56px;
  background: rgba(12, 15, 20, 0.65);
  border-color: rgba(255, 255, 255, 0.45);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(6px);
}

.agent-audio-toggle:hover {
  background: rgba(12, 15, 20, 0.8);
  border-color: rgba(255, 255, 255, 0.75);
}

.agent-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  background: #0c0f14;
}

.agent-details h3 {
  margin: 0 0 0.35rem;
  letter-spacing: 0.02em;
}

.agent-details {
  display: grid;
  gap: 1rem;
}

.agent-role {
  color: var(--muted);
  margin: 0;
}

.agent-block {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.9rem 1rem;
  display: grid;
  gap: 0.25rem;
  margin: 0;
}

.agent-block ul {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--muted);
  display: grid;
  gap: 0.25rem;
}

.card__meta {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.card h2 {
  margin: 0;
  font-size: clamp(1.8rem, 2.4vw, 2.8rem);
  letter-spacing: -0.01em;
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
}

#connect {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  align-content: start;
  min-height: 100svh;
  height: 100svh;
  padding: clamp(1.25rem, 2.5vw, 2.5rem);
  background: #ffffff;
  color: #101010;
  isolation: isolate;
  overflow: hidden;
}

#connect::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.72;
  background:
    linear-gradient(90deg, transparent 0, transparent 58%, rgba(0, 0, 0, 0.08) 58%, rgba(0, 0, 0, 0.08) calc(58% + 1px), transparent calc(58% + 1px)),
    repeating-linear-gradient(180deg, transparent 0 56px, rgba(0, 0, 0, 0.065) 56px 57px),
    repeating-linear-gradient(90deg, transparent 0 44px, rgba(0, 0, 0, 0.05) 44px 45px);
  mask-image: linear-gradient(180deg, transparent 0, rgba(0, 0, 0, 1) 12%, rgba(0, 0, 0, 1) 88%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, transparent 0, rgba(0, 0, 0, 1) 12%, rgba(0, 0, 0, 1) 88%, transparent 100%);
}

#connect > * {
  position: relative;
  z-index: 1;
}

.connect__heading {
  align-self: start;
  max-width: min(62vw, 980px);
}

.connect__title {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0;
  font-size: clamp(4.75rem, 11vw, 10.5rem);
  font-weight: 500;
  line-height: 0.79;
  letter-spacing: -0.08em;
  text-transform: uppercase;
}

.connect__title-line {
  display: block;
}

.connect__links {
  display: grid;
  justify-items: end;
  align-self: start;
  gap: 0;
  margin: 0;
  padding-top: clamp(0.15rem, 0.9vw, 0.85rem);
  text-align: right;
}

.connect__link {
  color: #101010;
  font-size: clamp(2.4rem, 4.75vw, 4.8rem);
  font-weight: 400;
  line-height: 0.86;
  letter-spacing: -0.045em;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    transform 180ms ease,
    color 180ms ease,
    opacity 180ms ease;
}

.connect__link:hover {
  transform: translateX(-8px);
  color: var(--accent);
}

@media (max-width: 900px) {
  .hero {
    min-height: 80vh;
  }

  .hero__headline--layout-feature-grid {
    width: min(760px, calc(100vw - 1.75rem));
  }

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

  .device-story {
    min-height: auto;
    padding-block: 4rem 5rem;
  }

  .device-story__layout {
    grid-template-columns: 1fr;
  }

  .device-story__stage {
    position: relative;
    top: auto;
    min-height: 62vh;
  }

  .device-story__steps {
    gap: 1rem;
    padding-block: 0;
  }

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

  .device-reveal {
    width: min(62vw, 340px);
  }

  .grid,
  .grid--reverse {
    grid-template-columns: 1fr;
  }

  .section__label {
    order: -1;
  }

  .scroll-hint {
    display: none;
  }

  .nav-links {
    gap: 1rem;
    font-size: 0.85rem;
  }

  #connect {
    min-height: 100svh !important;
    align-content: stretch;
  }

  .site-header {
    padding: 0 1.25rem;
  }

  .hero__controls {
    right: 1.25rem;
  }

  .agent-card {
    grid-template-columns: 1fr;
  }

  #connect {
    grid-template-columns: 1fr;
    align-items: start;
    align-content: start;
    gap: 2.5rem;
    min-height: 100svh;
    height: auto;
  }

  .connect__links {
    justify-items: start;
    text-align: left;
    padding-top: 0;
  }

  .connect__link {
    font-size: clamp(2rem, 9vw, 4rem);
  }
}

@media (max-width: 600px) {
  .hero {
    padding: 3rem 1.25rem;
  }

  .hero__headline--layout-feature-grid {
    width: calc(100vw - 1rem);
    gap: 0.9rem;
  }

  .hero__feature-grid {
    grid-template-columns: 1fr;
    padding: 0.75rem;
    border-radius: 22px;
  }

  .hero-feature-card {
    min-height: 0;
  }

  .device-story {
    padding-inline: 1.25rem;
  }

  .device-story__title {
    max-width: 11ch;
  }

  .device-story__stage {
    min-height: 56vh;
    padding: 1.5rem;
  }

  .device-story__status {
    font-size: 0.9rem;
  }

  .device-reveal {
    width: min(72vw, 300px);
    min-width: 0;
  }

/*  main {
    padding: 2rem 1.25rem 3rem;
  } */

  .card,
  .intro {
    padding: 1.5rem;
  }

  #connect .hero__headline {
    gap: 0.22rem;
  }
}

.be-pm {
  --be-pm-cell-target: 64px;
  min-height: 100vh;
  display: grid;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: #000;
  padding: clamp(2.5rem, 6vw, 5rem) clamp(1.25rem, 3vw, 3rem);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.be-pm__grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.62;
  z-index: 0;
  background:
    linear-gradient(90deg, transparent 0, transparent 58%, rgba(255, 255, 255, 0.06) 58%, rgba(255, 255, 255, 0.06) calc(58% + 1px), transparent calc(58% + 1px)),
    repeating-linear-gradient(180deg, transparent 0 56px, rgba(255, 255, 255, 0.05) 56px 57px),
    repeating-linear-gradient(90deg, transparent 0 44px, rgba(255, 255, 255, 0.032) 44px 45px);

  mask-image: linear-gradient(180deg, transparent 0, rgba(0, 0, 0, 1) 15%, rgba(0, 0, 0, 1) 85%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, transparent 0, rgba(0, 0, 0, 1) 15%, rgba(0, 0, 0, 1) 85%, transparent 100%);
}

.section-mosaic-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  pointer-events: none;
  z-index: 2;
  mask-image: linear-gradient(180deg, transparent 0, rgba(0, 0, 0, 1) 8%, rgba(0, 0, 0, 1) 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, transparent 0, rgba(0, 0, 0, 1) 8%, rgba(0, 0, 0, 1) 92%, transparent 100%);
  transition: opacity 160ms linear;
}

.be-pm__intro,
.be-pm__copy,
.predict__copy,
.predict__panel,
.analyze__copy,
.analyze__panel,
.sensor__copy,
.sensor__panel,
.predict__chips,
.analyze__chips,
.sensor__chips,
.sensor__spotlight,
.predict__image,
.analyze__image,
.sensor__image {
  will-change: auto;
}

.story__panel.is-active .be-pm__intro,
.story__panel.is-active .be-pm__copy,
.story__panel.is-active .predict__copy,
.story__panel.is-active .predict__panel,
.story__panel.is-active .analyze__copy,
.story__panel.is-active .analyze__panel,
.story__panel.is-active .sensor__copy,
.story__panel.is-active .sensor__panel,
.story__panel.is-active .predict__chips,
.story__panel.is-active .analyze__chips,
.story__panel.is-active .sensor__chips,
.story__panel.is-active .sensor__spotlight,
.story__panel.is-active .predict__image,
.story__panel.is-active .analyze__image,
.story__panel.is-active .sensor__image {
  will-change: transform, opacity;
}

.be-pm__shell {
  position: relative;
  z-index: 1;
  width: min(1240px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: clamp(2rem, 8vw, 8rem);
  align-items: end;
}

.be-pm__shell::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 1px;
  background: linear-gradient(180deg, transparent 0, rgba(255, 40, 0, 0.9) 18%, rgba(255, 255, 255, 0.2) 100%);
}

.be-pm__intro {
  padding-left: clamp(1.5rem, 3vw, 3rem);
  opacity: calc(0.34 + var(--story-panel-progress) * 0.66);
  transform: translate3d(0, calc((1 - var(--story-panel-progress)) * 34px), 0);
}

.be-pm__eyebrow {
  display: block;
  margin-bottom: 1.35rem;
  color: #ff2800;
  font-size: 0.82rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 400;
}

.be-pm__title {
  margin: 0;
  font-size: clamp(4.9rem, 12vw, 12rem);
  line-height: 0.88;
  letter-spacing: -0.065em;
  font-weight: 200;
  color: #fff;
}

.be-pm__copy {
  position: relative;
  max-width: 34rem;
  opacity: calc(0.3 + var(--story-panel-progress) * 0.7);
  transform: translate3d(calc((1 - var(--story-panel-progress)) * 16px), calc((1 - var(--story-panel-progress)) * 28px), 0);
}

.be-pm__lead {
  margin: 0 0 1.6rem;
  color: #fff;
  font-size: clamp(1.15rem, 1.8vw, 1.6rem);
  line-height: 1.35;
  font-weight: 300;
  text-transform: none;
}

.be-pm__manifesto {
  display: grid;
  gap: 0.95rem;
  margin-bottom: 2.25rem;
}

.be-pm__manifesto p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(0.98rem, 1.12vw, 1.08rem);
  line-height: 1.65;
  text-transform: none;
  opacity: calc(0.14 + var(--story-panel-progress) * 0.86);
  transform: translate3d(0, calc((1 - var(--story-panel-progress)) * 14px + var(--be-pm-line-shift, 0px)), 0);
}

.be-pm__manifesto p:nth-child(1) { --be-pm-line-shift: 0px; }
.be-pm__manifesto p:nth-child(2) { --be-pm-line-shift: 6px; }
.be-pm__manifesto p:nth-child(3) { --be-pm-line-shift: 12px; }
.be-pm__manifesto p:nth-child(4) { --be-pm-line-shift: 18px; }

.be-pm__cta {
  --be-pm-cta-hover-scale: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1rem 1.4rem;
  border: 1px solid var(--border);
  border-radius: 2px;
  color: #fff;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: transparent;
  position: relative;
  overflow: hidden;
  transition:
    transform 320ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 180ms ease,
    border-color 180ms ease,
    box-shadow 320ms cubic-bezier(0.22, 1, 0.36, 1),
    background-color 180ms ease;
  transform: scale(var(--be-pm-cta-hover-scale));
}

.be-pm__cta::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 -100%;
  width: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.5s;
}

.be-pm__cta::after {
  content: ">";
  color: #ff2800;
  font-size: 1rem;
  line-height: 1;
  position: relative;
  z-index: 1;
}

.be-pm__cta > * {
  position: relative;
  z-index: 1;
}

.be-pm__cta:hover::before {
  left: 100%;
}

.be-pm__cta:hover {
  --be-pm-cta-hover-scale: 1.02;
  border-color: var(--text);
}

@media (max-width: 900px) {
  .be-pm {
    min-height: auto;
    padding-block: 4rem;
  }

  .be-pm__shell {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .be-pm__shell::before {
    inset: 0 0 auto 0;
    width: auto;
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 40, 0, 0.9) 0, rgba(255, 255, 255, 0.2) 100%);
  }

  .be-pm__intro {
    padding-left: 0;
    padding-top: 1.25rem;
  }

  .be-pm__copy {
    max-width: 42rem;
    padding-block: 0;
  }
}

@media (max-width: 600px) {
  .be-pm {
    padding-inline: 1.25rem;
  }

  .be-pm__grid {
    opacity: 0.34;
  }

  .be-pm__eyebrow {
    margin-bottom: 1rem;
    font-size: 0.74rem;
    letter-spacing: 0.18em;
  }

  .be-pm__title {
    font-size: clamp(3.6rem, 18vw, 5.8rem);
  }

  .be-pm__lead {
    font-size: 1.05rem;
  }

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

.predict {
  --predict-cell-target: 64px;
  min-height: 100vh;
  display: grid;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: #000;
  padding: clamp(2.5rem, 6vw, 5rem) clamp(1.25rem, 3vw, 3rem);
  border-bottom: 1px solid var(--border);
}

.predict__grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.74;
  background:
    repeating-linear-gradient(180deg, transparent 0 56px, rgba(255, 255, 255, 0.042) 56px 57px),
    repeating-linear-gradient(90deg, transparent 0 44px, rgba(255, 255, 255, 0.028) 44px 45px);
  mask-image: linear-gradient(180deg, transparent 0, rgba(0, 0, 0, 1) 12%, rgba(0, 0, 0, 1) 88%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, transparent 0, rgba(0, 0, 0, 1) 12%, rgba(0, 0, 0, 1) 88%, transparent 100%);
}

.predict__shell {
  position: relative;
  z-index: 1;
  width: min(1360px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(2rem, 4.5vw, 4.75rem);
  align-items: center;
}

.predict__copy {
  position: relative;
  padding: clamp(1.4rem, 2vw, 2.2rem) 0 clamp(1.4rem, 2vw, 2.2rem) clamp(1.45rem, 2.8vw, 2.5rem);
  max-width: 31rem;
  opacity: calc(0.3 + var(--story-panel-progress) * 0.7);
  transform: translate3d(calc((1 - var(--story-panel-progress)) * -18px), calc((1 - var(--story-panel-progress)) * 24px), 0);
}

.predict__copy::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 1px;
  background: linear-gradient(180deg, rgba(255, 40, 0, 0.9) 0, rgba(255, 255, 255, 0.18) 100%);
}

.predict__eyebrow {
  display: block;
  margin-bottom: 1.25rem;
  color: #ff2800;
  font-size: 0.82rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 400;
}

.predict__title {
  margin: 0 0 1.35rem;
  font-size: clamp(4.5rem, 9vw, 8.6rem);
  line-height: 0.9;
  letter-spacing: -0.06em;
  font-weight: 200;
  color: #fff;
}

.predict__lead {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.08rem, 1.5vw, 1.32rem);
  line-height: 1.55;
  text-transform: none;
}

.predict__metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.85rem;
}

.predict__metric {
  display: inline-flex;
  align-items: center;
  min-height: 2.35rem;
  padding: 0.55rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.predict__cta {
  margin-top: 2.25rem;
}

.predict__panel {
  position: relative;
  padding: clamp(0.95rem, 1.4vw, 1.25rem);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
/*  background:
    radial-gradient(circle at 10% 0, rgba(255, 40, 0, 0.12), transparent 32%),
    linear-gradient(180deg, rgba(18, 18, 18, 0.96) 0, rgba(7, 7, 7, 0.98) 100%); */
  box-shadow:
    0 30px 90px rgba(0, 0, 0, 0.52),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  overflow: hidden;
  opacity: calc(0.26 + var(--story-panel-progress) * 0.74);
  transform:
    translate3d(calc((1 - var(--story-panel-progress)) * 28px), calc((1 - var(--story-panel-progress)) * 18px), 0)
    scale(calc(0.965 + var(--story-panel-progress) * 0.035));
}

.predict__panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.03), transparent 10%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 10%);
  pointer-events: none;
  filter: blur(3px);
}

.predict__panel-head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
  padding-bottom: 0.95rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.predict__panel-label,
.predict__panel-meta {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.predict__panel-meta {
  color: rgba(255, 255, 255, 0.46);
}

.predict__viewport {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  background: #050505;
  isolation: isolate;
}

.predict__viewport::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.32) 0, transparent 18%, transparent 82%, rgba(0, 0, 0, 0.36) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.12) 0, transparent 18%, transparent 74%, rgba(0, 0, 0, 0.24) 100%);
  pointer-events: none;
}

.predict__viewport::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  background:
    radial-gradient(circle at 50% 50%, transparent 58%, rgba(0, 0, 0, 0.18) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 14%);
  pointer-events: none;
}

.predict__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform:
    scale(calc(1.07 - var(--story-panel-progress) * 0.03))
    translate3d(calc((1 - var(--story-panel-progress)) * 10px), calc((1 - var(--story-panel-progress)) * 8px), 0);
  transform-origin: center;
  filter: saturate(0.94) contrast(1.02);
}

.predict__chips {
  position: absolute;
  inset: auto 1rem 1rem 1rem;
  z-index: 4;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  opacity: calc(0.28 + var(--story-panel-progress) * 0.72);
  transform: translate3d(0, calc((0.58 - var(--story-panel-progress)) * 28px), 0);
}

.predict__chip {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.45rem 0.72rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.52);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

@media (max-width: 980px) {
  .predict {
    min-height: auto;
    padding-block: 4rem;
  }

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

  .predict__copy {
    max-width: 42rem;
  }
}

@media (max-width: 600px) {
  .predict {
    padding-inline: 1.25rem;
  }

  .predict__grid {
    opacity: 0.4;
  }

  .predict__copy {
    padding-left: 1.15rem;
  }

  .predict__eyebrow {
    margin-bottom: 0.95rem;
    font-size: 0.74rem;
    letter-spacing: 0.18em;
  }

  .predict__title {
    font-size: clamp(3.4rem, 16vw, 5.5rem);
  }

  .predict__lead {
    font-size: 1rem;
  }

  .predict__panel-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .predict__chips {
    inset: auto 0.85rem 0.85rem 0.85rem;
  }
}

.analyze {
  --analyze-cell-target: 64px;
  min-height: 100vh;
  display: grid;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: #000;
  padding: clamp(2.5rem, 6vw, 5rem) clamp(1.25rem, 3vw, 3rem);
  border-bottom: 1px solid var(--border);
}

.analyze__grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.74;
  background:
    repeating-linear-gradient(180deg, transparent 0 56px, rgba(255, 255, 255, 0.042) 56px 57px),
    repeating-linear-gradient(90deg, transparent 0 44px, rgba(255, 255, 255, 0.028) 44px 45px);
  mask-image: linear-gradient(180deg, transparent 0, rgba(0, 0, 0, 1) 12%, rgba(0, 0, 0, 1) 88%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, transparent 0, rgba(0, 0, 0, 1) 12%, rgba(0, 0, 0, 1) 88%, transparent 100%);
}

.analyze__shell {
  position: relative;
  z-index: 1;
  width: min(1360px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: clamp(2rem, 4.5vw, 4.75rem);
  align-items: center;
}

.analyze__panel {
  position: relative;
  padding: clamp(0.95rem, 1.4vw, 1.25rem);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
/*  background:
    radial-gradient(circle at 0 0, rgba(255, 40, 0, 0.12), transparent 30%),
    linear-gradient(180deg, rgba(18, 18, 18, 0.96) 0, rgba(7, 7, 7, 0.98) 100%); */
  box-shadow:
    0 30px 90px rgba(0, 0, 0, 0.52),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  overflow: hidden;
  opacity: calc(0.26 + var(--story-panel-progress) * 0.74);
  transform:
    translate3d(calc((1 - var(--story-panel-progress)) * -28px), calc((1 - var(--story-panel-progress)) * 18px), 0)
    scale(calc(0.965 + var(--story-panel-progress) * 0.035));
}

.analyze__panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.03), transparent 10%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 10%);
  pointer-events: none;
  filter: blur(3px);
}

.analyze__panel-head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
  padding-bottom: 0.95rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.analyze__panel-label,
.analyze__panel-meta {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.analyze__panel-meta {
  color: rgba(255, 255, 255, 0.46);
}

.analyze__viewport {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  background: #050505;
  isolation: isolate;
}

.analyze__viewport::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.38) 0, transparent 16%, transparent 84%, rgba(0, 0, 0, 0.32) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.16) 0, transparent 18%, transparent 72%, rgba(0, 0, 0, 0.24) 100%);
  pointer-events: none;
}

.analyze__viewport::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  background:
    radial-gradient(circle at 50% 50%, transparent 60%, rgba(0, 0, 0, 0.16) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 12%);
  pointer-events: none;
}

.analyze__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform:
    scale(calc(1.06 - var(--story-panel-progress) * 0.03))
    translate3d(calc((1 - var(--story-panel-progress)) * -10px), calc((1 - var(--story-panel-progress)) * 8px), 0);
  transform-origin: center;
  filter: saturate(0.92) contrast(1.04);
}

.analyze__chips {
  position: absolute;
  inset: auto 1rem 1rem 1rem;
  z-index: 4;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  opacity: calc(0.28 + var(--story-panel-progress) * 0.72);
  transform: translate3d(0, calc((0.58 - var(--story-panel-progress)) * 28px), 0);
}

.analyze__chip {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.45rem 0.72rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.52);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.analyze__copy {
  position: relative;
  padding: clamp(1.4rem, 2vw, 2.2rem) 0 clamp(1.4rem, 2vw, 2.2rem) clamp(1.45rem, 2.8vw, 2.5rem);
  max-width: 31rem;
  opacity: calc(0.3 + var(--story-panel-progress) * 0.7);
  transform: translate3d(calc((1 - var(--story-panel-progress)) * 18px), calc((1 - var(--story-panel-progress)) * 24px), 0);
}

.analyze__copy::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 1px;
  background: linear-gradient(180deg, rgba(255, 40, 0, 0.9) 0, rgba(255, 255, 255, 0.18) 100%);
}

.analyze__eyebrow {
  display: block;
  margin-bottom: 1.25rem;
  color: #ff2800;
  font-size: 0.82rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 400;
}

.analyze__title {
  margin: 0 0 1.35rem;
  font-size: clamp(4.5rem, 9vw, 8.6rem);
  line-height: 0.9;
  letter-spacing: -0.06em;
  font-weight: 200;
  color: #fff;
}

.analyze__lead {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.08rem, 1.5vw, 1.32rem);
  line-height: 1.55;
  text-transform: none;
}

.analyze__metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.85rem;
}

.analyze__metric {
  display: inline-flex;
  align-items: center;
  min-height: 2.35rem;
  padding: 0.55rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.analyze__cta {
  margin-top: 2.25rem;
}

@media (max-width: 980px) {
  .analyze {
    min-height: auto;
    padding-block: 4rem;
  }

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

  .analyze__copy {
    max-width: 42rem;
  }
}

@media (max-width: 600px) {
  .analyze {
    padding-inline: 1.25rem;
  }

  .analyze__grid {
    opacity: 0.4;
  }

  .analyze__copy {
    padding-left: 1.15rem;
  }

  .analyze__eyebrow {
    margin-bottom: 0.95rem;
    font-size: 0.74rem;
    letter-spacing: 0.18em;
  }

  .analyze__title {
    font-size: clamp(3.4rem, 16vw, 5.5rem);
  }

  .analyze__lead {
    font-size: 1rem;
  }

  .analyze__panel-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .analyze__chips {
    inset: auto 0.85rem 0.85rem 0.85rem;
  }
}

.sensor {
  --sensor-cell-target: 64px;
  min-height: 100vh;
  display: grid;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: #000;
  padding: clamp(2.5rem, 6vw, 5rem) clamp(1.25rem, 3vw, 3rem);
  border-bottom: 1px solid var(--border);
}

.sensor__grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.72;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 22%),
    repeating-linear-gradient(180deg, transparent 0 56px, rgba(255, 255, 255, 0.042) 56px 57px),
    repeating-linear-gradient(90deg, transparent 0 44px, rgba(255, 255, 255, 0.028) 44px 45px);
  mask-image: linear-gradient(180deg, transparent 0, rgba(0, 0, 0, 1) 12%, rgba(0, 0, 0, 1) 88%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, transparent 0, rgba(0, 0, 0, 1) 12%, rgba(0, 0, 0, 1) 88%, transparent 100%);
}

.sensor__shell {
  position: relative;
  z-index: 1;
  width: min(1360px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(2rem, 4.5vw, 5rem);
  align-items: center;
}

.sensor__copy {
  position: relative;
  padding: clamp(1.4rem, 2vw, 2.2rem) 0 clamp(1.4rem, 2vw, 2.2rem) clamp(1.45rem, 2.8vw, 2.5rem);
  max-width: 31rem;
  opacity: calc(0.3 + var(--story-panel-progress) * 0.7);
  transform: translate3d(calc((1 - var(--story-panel-progress)) * -18px), calc((1 - var(--story-panel-progress)) * 24px), 0);
}

.sensor__copy::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 1px;
  background: linear-gradient(180deg, rgba(255, 40, 0, 0.9) 0, rgba(255, 255, 255, 0.18) 100%);
}

.sensor__eyebrow {
  display: block;
  margin-bottom: 1.25rem;
  color: #ff2800;
  font-size: 0.82rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 400;
}

.sensor__title {
  margin: 0 0 1.35rem;
  font-size: clamp(4.5rem, 9vw, 8.6rem);
  line-height: 0.9;
  letter-spacing: -0.06em;
  font-weight: 200;
  color: #fff;
}

.sensor__lead {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.08rem, 1.5vw, 1.32rem);
  line-height: 1.55;
  text-transform: none;
}

.sensor__metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.85rem;
}

.sensor__metric {
  display: inline-flex;
  align-items: center;
  min-height: 2.35rem;
  padding: 0.55rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.sensor__cta {
  margin-top: 2.25rem;
}

.sensor__panel {
  position: relative;
  padding: clamp(0.95rem, 1.4vw, 1.25rem);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
/*  background:
    radial-gradient(circle at 78% 20%, rgba(255, 40, 0, 0.11), transparent 26%),
    linear-gradient(180deg, rgba(18, 18, 18, 0.96) 0, rgba(7, 7, 7, 0.98) 100%); */
  box-shadow:
    0 30px 90px rgba(0, 0, 0, 0.52),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  overflow: hidden;
  opacity: calc(0.26 + var(--story-panel-progress) * 0.74);
  transform:
    translate3d(calc((1 - var(--story-panel-progress)) * 28px), calc((1 - var(--story-panel-progress)) * 18px), 0)
    scale(calc(0.965 + var(--story-panel-progress) * 0.035));
}

.sensor__panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.03), transparent 10%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 10%);
  pointer-events: none;
  filter: blur(3px);
}

.sensor__panel-head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
  padding-bottom: 0.95rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.sensor__panel-label,
.sensor__panel-meta {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.sensor__panel-meta {
  color: rgba(255, 255, 255, 0.46);
}

.sensor__stage {
  position: relative;
  min-height: clamp(520px, 68vw, 750px);
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  background:
    linear-gradient(180deg, rgba(12, 12, 12, 0.96) 0, rgba(5, 5, 5, 1) 100%);
  isolation: isolate;
}

.sensor__stage::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.24) 0, transparent 14%, transparent 88%, rgba(0, 0, 0, 0.28) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0, transparent 10%, transparent 68%, rgba(0, 0, 0, 0.22) 84%, rgba(0, 0, 0, 0.58) 100%);
  pointer-events: none;
}

.sensor__spotlight {
  position: absolute;
  inset: auto;
  left: 58%;
  top: 16%;
  width: min(40vw, 420px);
  height: min(40vw, 420px);
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.08) 0, rgba(255, 40, 0, 0.1) 28%, rgba(255, 40, 0, 0.03) 52%, transparent 72%);
  filter: blur(10px);
  opacity: calc(0.16 + var(--story-panel-progress) * 0.48);
  transform:
    translateX(-50%)
    translateY(calc((0.56 - var(--story-panel-progress)) * 42px))
    scale(calc(0.92 + var(--story-panel-progress) * 0.16));
  z-index: 0;
  pointer-events: none;
}

.sensor__image {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 75% 50%;
  transform:
    scale(calc(1.05 - var(--story-panel-progress) * 0.05))
    translate3d(calc((1 - var(--story-panel-progress)) * 10px), calc((1 - var(--story-panel-progress)) * 8px), 0);
  transform-origin: center;
}

.sensor__chips {
  position: absolute;
  inset: auto 1rem 1rem 1rem;
  z-index: 3;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  opacity: calc(0.28 + var(--story-panel-progress) * 0.72);
  transform: translate3d(0, calc((0.58 - var(--story-panel-progress)) * 28px), 0);
}

.sensor__chip {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.45rem 0.72rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.52);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

@media (max-width: 980px) {
  .sensor {
    min-height: auto;
    padding-block: 4rem;
  }

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

  .sensor__copy {
    max-width: 42rem;
  }

  .sensor__stage {
    min-height: clamp(420px, 88vw, 700px);
  }
}

@media (max-width: 600px) {
  .sensor {
    padding-inline: 1.25rem;
  }

  .sensor__grid {
    opacity: 0.4;
  }

  .sensor__copy {
    padding-left: 1.15rem;
  }

  .sensor__eyebrow {
    margin-bottom: 0.95rem;
    font-size: 0.74rem;
    letter-spacing: 0.18em;
  }

  .sensor__title {
    font-size: clamp(3.4rem, 16vw, 5.5rem);
  }

  .sensor__lead {
    font-size: 1rem;
  }

  .sensor__panel-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .sensor__image {
    object-position: 60% 50%;
    transform: scale(1.28);
  }

  .sensor__chips {
    inset: auto 0.85rem 0.85rem 0.85rem;
  }
}
