:root {
  --ink: #061831;
  --ink-2: #0b2748;
  --paper: #f3f1eb;
  --white: #ffffff;
  --line: rgba(6, 24, 49, 0.14);
  --line-light: rgba(255, 255, 255, 0.18);
  --muted: #617083;
  --orange: #ff5b19;
  --amber: #f2b43d;
  --teal: #21a6a1;
  --mint: #9adbd0;
  --page: clamp(20px, 4.6vw, 76px);
  --section-space: clamp(112px, 7vw, 132px);
  --inner: 1440px;
  --display: "Space Grotesk", sans-serif;
  --body: "Manrope", sans-serif;
  color-scheme: light;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
}

body.nav-locked {
  overflow: hidden;
}

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

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

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

button,
input,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

button {
  color: inherit;
}

.site-header {
  --header-bg: rgba(4, 22, 42, 0.78);
  --header-border: rgba(255, 255, 255, 0.22);
  --header-fg: #ffffff;
  --header-muted: rgba(255, 255, 255, 0.58);
  --header-line: rgba(255, 255, 255, 0.14);
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  min-height: 84px;
  align-items: center;
  gap: 32px;
  padding: 12px max(22px, calc((100vw - var(--inner)) / 2 + 18px));
  color: var(--header-fg);
  background: var(--header-bg);
  border: 0;
  border-bottom: 1px solid var(--header-border);
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: blur(18px) saturate(125%);
  transform: none;
  transition:
    top 300ms ease,
    left 420ms cubic-bezier(0.2, 0.75, 0.2, 1),
    width 420ms cubic-bezier(0.2, 0.75, 0.2, 1),
    transform 420ms cubic-bezier(0.2, 0.75, 0.2, 1),
    min-height 300ms ease,
    padding 300ms ease,
    border-radius 300ms ease,
    color 300ms ease,
    background 300ms ease,
    border-color 300ms ease,
    box-shadow 300ms ease;
}

.site-header.is-scrolled {
  top: 10px;
  left: 50%;
  width: min(calc(100% - 40px), var(--inner));
  min-height: 60px;
  padding: 7px 12px 7px 18px;
  border: 1px solid var(--header-border);
  border-radius: 8px;
  transform: translateX(-50%);
  --header-bg: rgba(4, 22, 42, 0.94);
  box-shadow: 0 16px 48px rgba(0, 10, 28, 0.28);
}

.site-header.is-light {
  --header-bg: rgba(246, 244, 238, 0.9);
  --header-border: rgba(6, 24, 49, 0.13);
  --header-fg: #061831;
  --header-muted: rgba(6, 24, 49, 0.52);
  --header-line: rgba(6, 24, 49, 0.13);
  box-shadow: 0 16px 50px rgba(12, 28, 47, 0.13);
  backdrop-filter: blur(20px) saturate(135%);
}

.site-header.is-light.is-scrolled {
  --header-bg: rgba(246, 244, 238, 0.96);
}

.site-header.nav-open {
  --header-bg: rgba(4, 22, 42, 0.98);
  --header-border: rgba(255, 255, 255, 0.2);
  --header-fg: #ffffff;
  --header-muted: rgba(255, 255, 255, 0.58);
  --header-line: rgba(255, 255, 255, 0.14);
}

.site-header.is-light.nav-open,
.site-header.is-light.is-scrolled.nav-open {
  --header-bg: rgba(4, 22, 42, 0.98);
  --header-border: rgba(255, 255, 255, 0.2);
  --header-fg: #ffffff;
  --header-muted: rgba(255, 255, 255, 0.58);
  --header-line: rgba(255, 255, 255, 0.14);
  box-shadow: 0 20px 55px rgba(0, 10, 28, 0.34);
}

.brand {
  position: relative;
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  display: grid;
  width: 42px;
  aspect-ratio: 1;
  place-items: center;
  color: var(--white);
  background: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  font-family: var(--display);
  font-size: 16px;
  font-weight: 700;
  transition: width 300ms ease, transform 260ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.brand:hover .brand-mark,
.brand:focus-visible .brand-mark {
  transform: translateY(-2px) rotate(-5deg);
}

.site-header.is-scrolled .brand-mark {
  width: 36px;
}

.brand-name {
  display: grid;
  gap: 2px;
  line-height: 1;
}

.brand-name strong {
  font-family: var(--display);
  font-size: 15px;
  letter-spacing: -0.02em;
}

.brand-name span {
  color: var(--header-muted);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: color 300ms ease;
}

.header-context {
  display: grid;
  min-width: 176px;
  grid-template-columns: auto 40px 1fr;
  align-items: center;
  gap: 10px;
  color: var(--header-muted);
  transition: color 300ms ease, opacity 240ms ease, transform 300ms ease;
}

.header-context span {
  color: var(--orange);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.header-context i {
  position: relative;
  height: 1px;
  overflow: hidden;
  background: var(--header-line);
}

.header-context i::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, var(--orange));
  content: "";
  transform: translateX(-100%);
  animation: contextPulse 3.2s ease-in-out infinite;
}

.header-context strong {
  overflow: hidden;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.header-context.is-changing {
  opacity: 0.25;
  transform: translateY(-4px);
}

.nav-links {
  display: flex;
  min-width: 0;
  flex: 1;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(8px, 1.2vw, 20px);
}

.nav-item {
  position: relative;
}

.nav-trigger,
.nav-link {
  position: relative;
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  gap: 8px;
  padding: 0;
  color: var(--header-muted);
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.01em;
  white-space: nowrap;
  transition: color 180ms ease;
}

.nav-trigger::before,
.nav-links > .nav-link::before {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 1px;
  background: var(--orange);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 260ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.nav-item:hover > .nav-trigger::before,
.nav-item.is-open > .nav-trigger::before,
.nav-item.is-current > .nav-trigger::before,
.nav-links > .nav-link:hover::before,
.nav-links > .nav-link:focus-visible::before,
.nav-links > .nav-link.is-current::before {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-trigger:hover,
.nav-trigger:focus-visible,
.nav-link:hover,
.nav-link:focus-visible,
.nav-item.is-open .nav-trigger,
.nav-item.is-current .nav-trigger,
.nav-links > .nav-link.is-current {
  color: var(--header-fg);
  outline: 0;
}

.nav-trigger > span {
  width: 7px;
  height: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 180ms ease;
}

.nav-item.is-open .nav-trigger > span {
  transform: translateY(2px) rotate(225deg);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-left: 16px;
  border-left: 1px solid var(--header-line);
  transition: border-color 300ms ease;
}

.nav-login {
  color: var(--header-muted);
}

.nav-access,
.nav-cta {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border-radius: 3px;
  font-size: 11px;
  font-weight: 800;
  white-space: nowrap;
}

.nav-access {
  color: var(--header-fg);
  border: 1px solid var(--header-border);
  transition: color 300ms ease, border-color 300ms ease, background 180ms ease;
}

.nav-access:hover,
.nav-access:focus-visible {
  background: var(--header-line);
  outline: 0;
}

.nav-cta {
  color: var(--white);
  background: var(--orange);
  border: 1px solid var(--orange);
  box-shadow: 0 10px 30px rgba(255, 91, 25, 0.25);
  transition: transform 180ms ease, background 180ms ease;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  background: #ff6d32;
  outline: 0;
  transform: translateY(-2px);
}

.nav-cta.is-current {
  box-shadow: 0 0 0 3px rgba(255, 91, 25, 0.2), 0 10px 30px rgba(255, 91, 25, 0.28);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  margin-left: auto;
  padding: 0;
  border: 1px solid var(--header-border);
  border-radius: 4px;
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 17px;
  height: 1px;
  margin: 5px auto;
  background: var(--header-fg);
  transition: transform 180ms ease;
}

.header-progress {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  overflow: hidden;
  border-radius: 0 0 8px 8px;
}

.header-progress i {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--orange), var(--amber), var(--teal));
  transform: scaleX(var(--page-progress, 0));
  transform-origin: left;
  transition: transform 80ms linear;
}

.site-header.nav-open .menu-toggle span:first-child {
  transform: translateY(3px) rotate(45deg);
}

.site-header.nav-open .menu-toggle span:last-child {
  transform: translateY(-3px) rotate(-45deg);
}

.mega-menu {
  position: absolute;
  top: calc(100% + 22px);
  left: -28px;
  display: grid;
  width: min(760px, calc(100vw - 40px));
  grid-template-columns: 1.25fr repeat(3, 1fr);
  gap: 1px;
  padding: 1px;
  visibility: hidden;
  color: var(--white);
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  box-shadow: 0 28px 80px rgba(0, 8, 22, 0.4);
  opacity: 0;
  overflow: hidden;
  clip-path: inset(0 0 100% 0);
  transform: translateY(-8px) scale(0.985);
  transform-origin: top center;
  transition: opacity 220ms ease, transform 300ms cubic-bezier(0.2, 0.75, 0.2, 1), clip-path 320ms cubic-bezier(0.2, 0.75, 0.2, 1), visibility 220ms ease;
}

.industry-menu,
.resources-menu {
  right: -48px;
  left: auto;
}

.nav-item.is-open .mega-menu {
  visibility: visible;
  opacity: 1;
  clip-path: inset(0 0 0 0);
  transform: translateY(0) scale(1);
}

.mega-menu-intro,
.mega-link {
  min-height: 154px;
  background: rgba(5, 24, 47, 0.98);
}

.mega-menu-intro {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
}

.mega-menu-intro small,
.mega-link small {
  color: rgba(255, 255, 255, 0.48);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.mega-menu-intro strong {
  max-width: 210px;
  font-family: var(--display);
  font-size: 20px;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.mega-link {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 15px;
  padding: 14px;
  opacity: 0;
  transform: translateY(-8px);
  transition: background 180ms ease, opacity 240ms ease, transform 300ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.nav-item.is-open .mega-link {
  opacity: 1;
  transform: translateY(0);
}

.nav-item.is-open .mega-link:nth-of-type(2) {
  transition-delay: 45ms;
}

.nav-item.is-open .mega-link:nth-of-type(3) {
  transition-delay: 90ms;
}

.mega-link:hover,
.mega-link:focus-visible {
  background: #0a3156;
  outline: 0;
}

.mega-link strong {
  display: block;
  margin-bottom: 4px;
  font-family: var(--display);
  font-size: 13px;
}

.mega-link small {
  letter-spacing: 0.03em;
  text-transform: none;
}

.mega-thumb {
  position: relative;
  display: block;
  height: 68px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 91, 25, 0.75), transparent 45%),
    linear-gradient(45deg, #0c4164, #0a203e);
}

.mega-thumb::before,
.mega-thumb::after {
  position: absolute;
  content: "";
}

.mega-thumb::before {
  inset: 18px 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.65);
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  transform: skewX(-18deg);
}

.mega-thumb::after {
  top: 50%;
  left: 50%;
  width: 11px;
  height: 11px;
  background: var(--mint);
  border-radius: 50%;
  box-shadow: -28px 0 0 rgba(255, 255, 255, 0.45), 28px 0 0 var(--orange);
  transform: translate(-50%, -50%);
}

.mega-thumb-app,
.mega-thumb-care,
.mega-thumb-expansion {
  background:
    radial-gradient(circle at 70% 30%, rgba(154, 219, 208, 0.82), transparent 18%),
    linear-gradient(125deg, #143d5c, #07182f 70%);
}

.mega-thumb-safety,
.mega-thumb-pilot,
.mega-thumb-quality {
  background:
    linear-gradient(110deg, transparent 30%, rgba(242, 180, 61, 0.65) 30% 43%, transparent 43%),
    linear-gradient(45deg, #09213d, #1c4b63);
}

.hero {
  position: relative;
  display: grid;
  min-height: max(760px, 100svh);
  color: var(--white);
  background: var(--ink);
  overflow: hidden;
}

.hero-media,
.hero-overlay,
.hero-media::after {
  position: absolute;
  inset: 0;
}

.hero-media video,
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-video {
  position: relative;
  z-index: 1;
}

.hero-fallback {
  position: absolute;
  z-index: 0;
  inset: 0;
}

.hero-media::after {
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(2, 17, 35, 0.86) 0%, rgba(2, 17, 35, 0.56) 50%, rgba(2, 17, 35, 0.28) 100%),
    linear-gradient(0deg, rgba(2, 17, 35, 0.88), transparent 50%);
  content: "";
}

.hero-overlay {
  z-index: 3;
  opacity: 0.32;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: linear-gradient(to right, black, transparent 80%);
}

.hero-inner {
  position: relative;
  z-index: 4;
  display: flex;
  width: min(100%, var(--inner));
  min-height: 100%;
  flex-direction: column;
  justify-content: flex-end;
  margin: auto;
  padding: 170px var(--page) 72px;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 22px;
  color: var(--amber);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 1px;
  background: currentColor;
  content: "";
}

.hero h1 {
  max-width: 1050px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(66px, 8.7vw, 132px);
  font-weight: 600;
  line-height: 0.84;
  letter-spacing: -0.075em;
}

.hero h1 span {
  display: block;
}

.hero h1 span:last-child {
  color: rgba(255, 255, 255, 0.72);
}

.hero-subtitle {
  max-width: 560px;
  margin: 32px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(15px, 1.5vw, 20px);
  line-height: 1.6;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.button {
  position: relative;
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 3px;
  font-size: 12px;
  font-weight: 800;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button::after {
  position: absolute;
  right: 18px;
  width: 14px;
  height: 1px;
  background: currentColor;
  content: "";
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.button:hover,
.button:focus-visible {
  padding-right: 46px;
  outline: 0;
  transform: translateY(-2px);
}

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

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

.button-secondary {
  color: var(--white);
  background: rgba(5, 24, 47, 0.18);
  border-color: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(8px);
}

.hero-loop-minimal {
  display: grid;
  width: min(760px, 68vw);
  grid-template-columns: auto 1fr auto 1fr auto 1fr auto;
  align-items: center;
  gap: 12px;
  margin: 72px 0 0 auto;
}

.hero-loop-minimal span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-loop-minimal i {
  position: relative;
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.22);
}

.hero-loop-minimal i::after {
  position: absolute;
  top: 0;
  left: -80%;
  width: 80%;
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--mint), var(--orange));
  content: "";
  animation: signalTravel 3.4s ease-in-out infinite;
}

.hero-loop-minimal i:nth-of-type(2)::after {
  animation-delay: 0.55s;
}

.hero-loop-minimal i:nth-of-type(3)::after {
  animation-delay: 1.1s;
}

.proof-strip {
  color: var(--white);
  background: var(--ink);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.proof-inner {
  display: grid;
  width: min(100%, var(--inner));
  grid-template-columns: repeat(4, 1fr);
  margin: auto;
  padding: 0 var(--page);
}

.proof-inner article {
  display: flex;
  min-height: 96px;
  align-items: center;
  gap: 10px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.proof-inner article:last-child {
  border-right: 0;
  justify-content: flex-end;
}

.proof-inner strong {
  font-family: var(--display);
  font-size: 13px;
}

.proof-inner span {
  color: rgba(255, 255, 255, 0.45);
  font-size: 11px;
}

.section-inner {
  width: min(100%, var(--inner));
  margin: auto;
  padding-right: var(--page);
  padding-left: var(--page);
}

.band,
.product-showcase,
.image-depth-band {
  position: relative;
}

.section-heading h2,
.app-copy h2,
.why-copy h2,
.contact-copy h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(52px, 6vw, 92px);
  font-weight: 600;
  line-height: 0.94;
  letter-spacing: -0.065em;
}

.section-heading > p:last-child,
.why-copy > p,
.contact-copy > p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.product-showcase {
  padding: var(--section-space) 0;
  background:
    radial-gradient(circle at 4% 0%, rgba(255, 91, 25, 0.1), transparent 26%),
    var(--paper);
}

.product-heading {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: 36px;
  margin-bottom: 62px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.product-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: 0;
  color: var(--orange);
}

.product-heading h2 {
  max-width: 780px;
}

.product-heading > p:last-child {
  max-width: 340px;
  margin: 0 0 8px auto;
}

.scene-reveal-grid {
  display: grid;
  min-height: 760px;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 3px;
  background: var(--ink);
}

.scene-reveal-card {
  position: relative;
  min-height: 370px;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
  outline: 0;
}

.scene-reveal-card-large {
  grid-row: 1 / 3;
}

.scene-reveal-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.88;
  transition: transform 800ms cubic-bezier(0.2, 0.75, 0.2, 1), opacity 400ms ease;
}

.scene-reveal-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(3, 19, 38, 0.94) 0%, rgba(3, 19, 38, 0.05) 68%);
  content: "";
}

.scene-reveal-content {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  padding: clamp(24px, 3vw, 46px);
}

.scene-reveal-content > span,
.panel-label,
.plan-label {
  color: var(--amber);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.scene-reveal-content h3 {
  max-width: 540px;
  margin: 9px 0 0;
  font-family: var(--display);
  font-size: clamp(28px, 3.2vw, 54px);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.scene-reveal-card:not(.scene-reveal-card-large) h3 {
  font-size: clamp(24px, 2.3vw, 36px);
}

.scene-reveal-content p,
.scene-tags {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 260ms ease, transform 300ms ease;
}

.scene-reveal-content p {
  max-width: 420px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
}

.scene-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.scene-tags strong {
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 99px;
  font-size: 9px;
}

.scene-reveal-card:hover img,
.scene-reveal-card:focus-visible img {
  opacity: 1;
  transform: scale(1.045);
}

.scene-reveal-card:hover .scene-reveal-content p,
.scene-reveal-card:hover .scene-tags,
.scene-reveal-card:focus-visible .scene-reveal-content p,
.scene-reveal-card:focus-visible .scene-tags {
  opacity: 1;
  transform: translateY(0);
}

.signal-loop-band {
  position: relative;
  color: var(--white);
  background: var(--ink);
}

.signal-loop-visual {
  position: relative;
  height: min(720px, 78svh);
  min-height: 560px;
  overflow: hidden;
}

.signal-loop-visual > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.68;
  transform: scale(1.02);
}

.signal-loop-visual::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 17, 35, 0.84), transparent 64%),
    linear-gradient(0deg, rgba(2, 17, 35, 0.75), transparent 60%);
  content: "";
}

.signal-loop-caption {
  position: absolute;
  z-index: 2;
  bottom: clamp(48px, 7vw, 100px);
  left: max(var(--page), calc((100vw - var(--inner)) / 2 + var(--page)));
}

.signal-loop-caption .eyebrow {
  margin-bottom: 18px;
}

.signal-loop-caption h2 {
  max-width: 760px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(56px, 7vw, 104px);
  font-weight: 600;
  line-height: 0.9;
  letter-spacing: -0.07em;
}

.signal-loop-scan {
  position: absolute;
  z-index: 3;
  top: 0;
  bottom: 0;
  left: -18%;
  width: 18%;
  background: linear-gradient(90deg, transparent, rgba(154, 219, 208, 0.13), transparent);
  mix-blend-mode: screen;
  animation: scanAcross 7s linear infinite;
}

.image-depth-band {
  padding: 108px 0;
  background: var(--white);
}

.image-depth-layout {
  display: grid;
  min-height: 720px;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 1.15fr 0.85fr;
  gap: 14px;
}

.image-depth-frame {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--ink);
}

.image-depth-main {
  grid-column: 1 / 9;
  grid-row: 1 / 3;
}

.image-depth-small,
.image-depth-wide {
  grid-column: 9 / 13;
}

.image-depth-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 900ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.image-depth-frame::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(2, 17, 35, 0.86), transparent 52%);
  content: "";
}

.image-depth-frame figcaption {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  gap: 7px;
  padding: 28px;
  color: var(--white);
}

.image-depth-frame figcaption span {
  color: var(--mint);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.image-depth-frame figcaption strong {
  max-width: 520px;
  font-family: var(--display);
  font-size: clamp(18px, 2vw, 30px);
  line-height: 1.08;
}

.image-depth-frame:hover img {
  transform: scale(1.035);
}

.app-band {
  padding: var(--section-space) 0;
  color: var(--white);
  background:
    radial-gradient(circle at 75% 30%, rgba(33, 166, 161, 0.16), transparent 30%),
    var(--ink);
}

.app-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.45fr);
  align-items: center;
  gap: clamp(48px, 8vw, 128px);
}

.app-copy h2 {
  max-width: 520px;
}

.app-mode-tabs {
  display: grid;
  margin-top: 54px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.app-mode {
  position: relative;
  display: flex;
  min-height: 68px;
  align-items: center;
  justify-content: space-between;
  padding: 0 0 0 38px;
  color: rgba(255, 255, 255, 0.45);
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  cursor: pointer;
  font-family: var(--display);
  font-size: 15px;
  font-weight: 600;
  text-align: left;
  transition: color 200ms ease, padding 200ms ease;
}

.app-mode::before {
  position: absolute;
  left: 0;
  color: var(--orange);
  content: "0" counter(appmode);
  counter-increment: appmode;
  font-family: var(--body);
  font-size: 9px;
  font-weight: 800;
}

.app-mode-tabs {
  counter-reset: appmode;
}

.app-mode::after {
  width: 18px;
  height: 1px;
  background: currentColor;
  content: "";
  opacity: 0;
  transform: translateX(-10px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.app-mode:hover,
.app-mode:focus-visible,
.app-mode.is-active {
  color: var(--white);
  outline: 0;
  padding-left: 46px;
}

.app-mode.is-active::after {
  opacity: 1;
  transform: translateX(0);
}

.app-mode.is-active {
  background-image: linear-gradient(90deg, rgba(255, 91, 25, 0.14), transparent 72%);
  background-repeat: no-repeat;
  animation: appModeSweep 4.4s linear infinite;
}

.app-band:hover .app-mode.is-active,
.app-band:focus-within .app-mode.is-active {
  animation-play-state: paused;
}

.app-visual {
  position: relative;
  display: grid;
  min-height: 650px;
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 56px 56px;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.app-visual::after {
  position: absolute;
  right: 8%;
  bottom: 8%;
  width: 240px;
  height: 240px;
  background: rgba(255, 91, 25, 0.17);
  border-radius: 50%;
  filter: blur(80px);
  content: "";
}

.app-backdrop {
  position: absolute;
  inset: 8% 4%;
  width: 92%;
  height: 84%;
  object-fit: cover;
  opacity: 0.12;
  filter: saturate(0.55);
}

.app-phone-rail {
  position: relative;
  z-index: 2;
  display: flex;
  width: min(94%, 860px);
  align-items: center;
  justify-content: center;
  perspective: 1400px;
}

.app-phone-mockup {
  position: relative;
  width: clamp(150px, 18vw, 222px);
  aspect-ratio: 0.5;
  margin-left: clamp(-42px, -3vw, -22px);
  overflow: hidden;
  background: #071b34;
  border: 7px solid #0b1c32;
  border-radius: 30px;
  box-shadow: 0 32px 70px rgba(0, 0, 0, 0.42);
  opacity: 0.42;
  transform: translateY(28px) rotateY(-12deg) scale(0.9);
  transition: opacity 400ms ease, transform 500ms cubic-bezier(0.2, 0.75, 0.2, 1), filter 400ms ease;
}

.app-phone-mockup:first-child {
  margin-left: 0;
}

.app-phone-mockup:nth-child(2) {
  transform: translateY(-8px) rotateY(-6deg) scale(0.94);
}

.app-phone-mockup:nth-child(3) {
  transform: translateY(12px) rotateY(7deg) scale(0.92);
}

.app-phone-mockup:nth-child(4) {
  transform: translateY(-20px) rotateY(12deg) scale(0.9);
}

.app-phone-mockup.is-active {
  z-index: 4;
  opacity: 1;
  filter: saturate(1.1);
  transform: translateY(-14px) rotateY(0) scale(1.05);
}

.app-screen-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.app-screen-label {
  position: absolute;
  bottom: 14px;
  left: 50%;
  padding: 7px 12px;
  color: var(--white);
  background: rgba(5, 24, 47, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 99px;
  font-size: 9px;
  font-weight: 800;
  transform: translateX(-50%);
  backdrop-filter: blur(8px);
}

.app-visual.is-switching .app-phone-mockup {
  opacity: 0.18;
  transform: translateY(22px) scale(0.9);
}

.workflow-band {
  padding: var(--section-space) 0;
  background:
    linear-gradient(90deg, rgba(255, 91, 25, 0.06), transparent 38%),
    var(--paper);
}

.workflow-band .section-heading,
.usecase-band .section-heading,
.pricing-layout > .section-heading {
  display: grid;
  grid-template-columns: 0.36fr 1fr;
  align-items: end;
  gap: 50px;
  margin-bottom: 58px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.workflow-band .section-heading .eyebrow,
.usecase-band .section-heading .eyebrow,
.pricing-layout > .section-heading .eyebrow {
  margin-bottom: 8px;
}

.interaction-demo {
  border-top: 2px solid var(--ink);
}

.demo-controls {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
}

.demo-step {
  position: relative;
  display: grid;
  min-height: 90px;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 15px;
  padding: 0 24px;
  color: var(--muted);
  background: transparent;
  border: 0;
  border-right: 1px solid var(--line);
  cursor: pointer;
  text-align: left;
  transition: color 180ms ease, background 180ms ease;
}

.demo-step:last-child {
  border-right: 0;
}

.demo-step::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 3px;
  background: var(--orange);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 280ms ease;
}

.demo-step span {
  color: var(--orange);
  font-size: 10px;
  font-weight: 800;
}

.demo-step strong {
  font-family: var(--display);
  font-size: 14px;
}

.demo-step:hover,
.demo-step:focus-visible,
.demo-step.is-active {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.55);
  outline: 0;
}

.demo-step.is-active::after {
  transform: scaleX(1);
}

.demo-stage {
  display: grid;
  grid-template-columns: 0.95fr 1.25fr;
  color: var(--white);
  background: var(--ink);
  transition: opacity 160ms ease, transform 160ms ease;
}

.demo-stage.is-switching {
  opacity: 0.45;
  transform: translateY(8px);
}

.demo-phone,
.demo-intel {
  min-height: 430px;
  padding: clamp(30px, 4.2vw, 64px);
}

.demo-phone {
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.demo-phone-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.48);
  font-size: 10px;
}

.demo-wave {
  display: flex;
  height: 38px;
  align-items: center;
  gap: 5px;
  margin: 55px 0 24px;
}

.demo-wave span {
  width: 5px;
  height: 18px;
  background: var(--orange);
  border-radius: 4px;
  animation: wave 1.4s ease-in-out infinite alternate;
}

.demo-wave span:nth-child(2),
.demo-wave span:nth-child(4) {
  height: 32px;
  animation-delay: 0.18s;
}

.demo-wave span:nth-child(3) {
  height: 24px;
  animation-delay: 0.35s;
}

.demo-phone h3,
.demo-intel h3,
.usecase-detail h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1;
  letter-spacing: -0.05em;
}

.demo-phone p,
.demo-intel p {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  line-height: 1.7;
}

.demo-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.demo-tags span {
  padding: 7px 9px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 9px;
}

.demo-intel {
  position: relative;
  background: var(--ink-2);
}

.demo-intel .panel-label {
  display: block;
  margin: 70px 0 16px;
  color: var(--mint);
}

.demo-progress {
  position: absolute;
  right: 50px;
  bottom: 52px;
  left: 50px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.demo-progress span {
  height: 3px;
  background: rgba(255, 255, 255, 0.18);
}

.demo-progress span.is-active {
  background: var(--orange);
}

.demo-dashboard {
  display: grid;
  grid-column: 1 / 3;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.demo-dashboard > div {
  display: grid;
  min-height: 96px;
  align-content: center;
  gap: 7px;
  padding: 0 30px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.demo-dashboard > div:last-child {
  border-right: 0;
}

.demo-dashboard span {
  color: rgba(255, 255, 255, 0.42);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.demo-dashboard strong {
  font-size: 12px;
}

.usecase-band {
  padding: var(--section-space) 0 96px;
  background: var(--white);
}

.usecase-explorer {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  align-items: stretch;
  gap: 0;
  transition: opacity 180ms ease;
}

.usecase-tabs {
  display: grid;
  grid-column: 1 / 13;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
}

.usecase-tab {
  position: relative;
  display: grid;
  min-height: 96px;
  align-content: center;
  gap: 7px;
  padding: 0 22px;
  color: var(--muted);
  background: transparent;
  border: 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  text-align: left;
}

.usecase-tab:last-child {
  border-right: 0;
}

.usecase-tab::before {
  position: absolute;
  top: -1px;
  right: 0;
  left: 0;
  height: 3px;
  background: var(--orange);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 260ms ease;
}

.usecase-tab span {
  color: var(--teal);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.usecase-tab strong {
  font-family: var(--display);
  font-size: 13px;
}

.usecase-tab:hover,
.usecase-tab:focus-visible,
.usecase-tab.is-active {
  color: var(--ink);
  outline: 0;
}

.usecase-tab.is-active::before {
  transform: scaleX(1);
}

.usecase-visual {
  position: relative;
  grid-column: 1 / 10;
  height: 620px;
  margin: 0;
  overflow: hidden;
  background: var(--ink);
  transition: opacity 160ms ease, transform 160ms ease;
}

.usecase-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.usecase-visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(2, 17, 35, 0.8), transparent 45%);
  content: "";
}

.usecase-visual:hover img {
  transform: scale(1.035);
}

.usecase-visual figcaption {
  position: absolute;
  z-index: 2;
  right: 28px;
  bottom: 28px;
  left: 28px;
  max-width: 480px;
  color: var(--white);
  font-family: var(--display);
  font-size: clamp(18px, 2vw, 27px);
  line-height: 1.2;
}

.image-hotspot {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.88);
  border-radius: 99px;
  font-size: 9px;
  backdrop-filter: blur(8px);
}

.image-hotspot span {
  width: 7px;
  height: 7px;
  background: var(--orange);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(255, 91, 25, 0.15);
}

.hotspot-a {
  top: 24%;
  left: 12%;
}

.hotspot-b {
  right: 10%;
  bottom: 32%;
}

.usecase-detail {
  display: flex;
  grid-column: 10 / 13;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(28px, 3vw, 48px);
  color: var(--white);
  background: var(--ink-2);
  transition: opacity 160ms ease, transform 160ms ease;
}

.usecase-detail .panel-label {
  color: var(--mint);
}

.usecase-detail h3 {
  margin-top: 22px;
}

.usecase-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.usecase-metrics article {
  display: grid;
  gap: 8px;
  padding: 22px 14px 0 0;
}

.usecase-metrics span {
  color: rgba(255, 255, 255, 0.45);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.usecase-metrics strong {
  font-size: 11px;
}

.usecase-visual.is-switching,
.usecase-detail.is-switching {
  opacity: 0.35;
  transform: translateY(8px);
}

.platform-band {
  padding: var(--section-space) 0;
  color: var(--white);
  background: var(--ink);
}

.platform-band .section-heading {
  display: grid;
  grid-template-columns: 0.36fr 1fr;
  align-items: end;
  gap: 50px;
  margin-bottom: 58px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.platform-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(255, 255, 255, 0.18);
}

.platform-card {
  position: relative;
  min-height: 580px;
  overflow: hidden;
  background: var(--ink);
}

.platform-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
  filter: saturate(0.75);
  transition: transform 850ms cubic-bezier(0.2, 0.75, 0.2, 1), opacity 500ms ease, filter 500ms ease;
}

.platform-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(2, 17, 35, 0.92), transparent 58%);
  content: "";
}

.platform-card-copy {
  position: absolute;
  z-index: 2;
  right: 32px;
  bottom: 34px;
  left: 32px;
  transition: transform 360ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.platform-card-copy > span {
  color: var(--mint);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.platform-card-copy h3 {
  margin: 10px 0 0;
  font-family: var(--display);
  font-size: clamp(26px, 2.2vw, 36px);
  line-height: 1;
  letter-spacing: -0.045em;
}

.platform-card-copy p {
  max-width: 320px;
  max-height: 0;
  margin: 0;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  line-height: 1.55;
  opacity: 0;
  transform: translateY(12px);
  transition: max-height 360ms ease, margin 360ms ease, opacity 260ms ease, transform 360ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.platform-card:hover img,
.platform-card:focus-visible img {
  opacity: 0.95;
  filter: saturate(1);
  transform: scale(1.045);
}

.platform-card:hover .platform-card-copy,
.platform-card:focus-visible .platform-card-copy {
  transform: translateY(-8px);
}

.platform-card:hover .platform-card-copy p,
.platform-card:focus-visible .platform-card-copy p {
  max-height: 70px;
  margin-top: 13px;
  opacity: 1;
  transform: translateY(0);
}

.platform-card:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: -2px;
}

.why-band {
  padding: 112px 0;
  background: var(--paper);
}

.why-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.6fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(60px, 9vw, 150px);
}

.why-copy h2 {
  max-width: 560px;
  font-size: clamp(54px, 6vw, 88px);
}

.why-copy > p {
  max-width: 520px;
  margin: 25px 0 0;
}

.why-link,
.plan-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
  color: var(--ink);
  font-size: 11px;
  font-weight: 800;
}

.why-link::after,
.plan-link::after {
  width: 26px;
  height: 1px;
  background: var(--orange);
  content: "";
  transition: width 180ms ease;
}

.why-link:hover::after,
.plan-link:hover::after {
  width: 42px;
}

.partner-logo-wall {
  padding: 0;
}

.partner-logo-wall > p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.partner-logo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.partner-logo {
  display: flex;
  min-height: 124px;
  align-items: center;
  gap: 14px;
  padding: 18px;
  color: #536174;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: color 200ms ease, background 200ms ease;
}

.partner-logo:hover {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.62);
}

.partner-logo i {
  position: relative;
  display: grid;
  width: 36px;
  aspect-ratio: 1;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: var(--display);
  font-size: 11px;
  font-style: normal;
}

.partner-logo:nth-child(2n) i {
  border-radius: 2px 50% 50%;
  transform: rotate(45deg);
}

.partner-logo:nth-child(2n) i::first-letter {
  transform: rotate(-45deg);
}

.partner-logo b {
  font-family: var(--display);
  font-size: 13px;
  letter-spacing: -0.02em;
}

.pricing-band {
  padding: var(--section-space) 0;
  background: var(--white);
}

.pricing-panel {
  display: grid;
  grid-template-columns: 1.05fr repeat(3, 1fr);
  border-top: 2px solid var(--ink);
  border-bottom: 1px solid var(--line);
}

.pricing-note,
.pricing-plan {
  min-height: 450px;
  padding: clamp(26px, 3vw, 44px);
  border-right: 1px solid var(--line);
}

.pricing-note {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--white);
  background: var(--ink);
}

.pricing-note > span {
  color: var(--amber);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.pricing-note strong {
  max-width: 260px;
  font-family: var(--display);
  font-size: clamp(25px, 2.5vw, 38px);
  line-height: 1;
  letter-spacing: -0.045em;
}

.pricing-note p {
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
  line-height: 1.7;
}

.pricing-plan {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--white);
}

.pricing-plan:last-child {
  border-right: 0;
}

.pricing-plan.is-featured {
  background: #fff1e9;
}

.pricing-plan h3 {
  margin: 12px 0 0;
  font-family: var(--display);
  font-size: clamp(30px, 3vw, 46px);
  letter-spacing: -0.05em;
}

.plan-price {
  margin: 5px 0 0;
  color: var(--teal);
  font-size: 13px;
  font-weight: 800;
}

.pricing-plan ul {
  display: grid;
  gap: 13px;
  margin: 55px 0 auto;
  padding: 0;
  list-style: none;
}

.pricing-plan li {
  position: relative;
  padding-left: 16px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.55;
}

.pricing-plan li::before {
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 5px;
  height: 5px;
  background: var(--orange);
  border-radius: 50%;
  content: "";
}

.contact-band {
  position: relative;
  padding: var(--section-space) 0 96px;
  color: var(--white);
  background:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    var(--ink);
  background-size: 72px 72px;
}

.contact-inner {
  width: min(100%, var(--inner));
  margin: auto;
  padding: 0 var(--page);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  align-items: start;
  gap: clamp(60px, 10vw, 150px);
}

.contact-copy h2 {
  max-width: 720px;
}

.contact-copy > p {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.55);
}

.demo-form {
  display: grid;
  gap: 22px;
  padding: clamp(28px, 4vw, 54px);
  color: var(--ink);
  background: var(--paper);
}

.form-switch {
  display: flex;
  gap: 28px;
  min-width: 0;
  margin: 0;
  padding-bottom: 20px;
  padding-inline: 0;
  border-bottom: 1px solid var(--line);
  border-top: 0;
  border-inline: 0;
}

.demo-form .form-switch label {
  position: relative;
  display: block;
  cursor: pointer;
}

.demo-form .form-switch input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.demo-form .form-switch label > span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.demo-form .form-switch input:checked + span,
.demo-form .form-switch input:focus-visible + span {
  color: var(--ink);
}

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

.demo-form label > span {
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.demo-form input,
.demo-form select {
  width: 100%;
  height: 52px;
  padding: 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  outline: 0;
  font-size: 13px;
}

.demo-form input:focus,
.demo-form select:focus {
  border-color: var(--orange);
}

.demo-form .form-consent {
  display: grid;
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 10px;
  cursor: pointer;
}

.demo-form .form-consent input {
  width: 16px;
  height: 16px;
  margin: 2px 0 0;
  accent-color: var(--orange);
}

.demo-form .form-consent > span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 600;
  line-height: 1.55;
  letter-spacing: 0;
  text-transform: none;
}

.form-consent a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.turnstile-slot {
  min-height: 0;
}

.turnstile-slot.is-ready {
  min-height: 65px;
}

.demo-form .button {
  width: 100%;
  margin-top: 5px;
}

.demo-form .button:disabled {
  cursor: wait;
  opacity: 0.58;
}

.form-status {
  margin: 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.5;
}

.form-status a {
  color: var(--ink);
  font-weight: 800;
}

.form-status.is-success {
  color: #08736f;
}

.form-status.is-error {
  color: #a63716;
}

.site-footer {
  color: var(--white);
  background: #031224;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-inner {
  display: grid;
  width: min(100%, var(--inner));
  min-height: 150px;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 40px;
  margin: auto;
  padding: 30px var(--page);
}

.footer-inner nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.footer-inner nav a {
  color: rgba(255, 255, 255, 0.58);
  font-size: 10px;
  font-weight: 700;
}

.footer-inner nav a:hover {
  color: var(--white);
}

.footer-inner > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.4);
  font-size: 10px;
  text-align: right;
}

.legal-page {
  min-height: 100vh;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 5%, rgba(255, 91, 25, 0.1), transparent 28%),
    var(--paper);
}

.legal-header {
  display: flex;
  width: 100%;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  padding: 14px var(--page);
  color: var(--white);
  background: var(--ink);
}

.legal-back {
  color: rgba(255, 255, 255, 0.66);
  font-size: 11px;
  font-weight: 700;
}

.legal-back:hover {
  color: var(--white);
}

.legal-main {
  width: min(calc(100% - 40px), 820px);
  margin: 0 auto;
  padding: clamp(80px, 9vw, 140px) 0;
}

.legal-main h1 {
  max-width: 760px;
  margin: 18px 0 12px;
  font-family: var(--display);
  font-size: clamp(52px, 9vw, 94px);
  line-height: 0.92;
  letter-spacing: -0.06em;
}

.legal-updated {
  margin: 0 0 70px;
  color: var(--muted);
  font-size: 12px;
}

.legal-main section {
  display: grid;
  grid-template-columns: minmax(150px, 0.4fr) 1fr;
  gap: 40px;
  padding: 32px 0;
  border-top: 1px solid var(--line);
}

.legal-main h2 {
  margin: 0;
  font-family: var(--display);
  font-size: 18px;
  line-height: 1.15;
}

.legal-main section p,
.not-found-page .legal-main > p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.not-found-page {
  display: grid;
  min-height: 100vh;
  place-items: center;
  color: var(--white);
  background: var(--ink);
}

.not-found-page .legal-main {
  text-align: center;
}

.not-found-page .legal-main > p {
  color: rgba(255, 255, 255, 0.6);
}

.not-found-page .button {
  margin-top: 30px;
}

.reveal-ready .reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 720ms ease, transform 900ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

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

.reveal-ready .scene-reveal-grid.reveal,
.reveal-ready .image-depth-frame.reveal,
.reveal-ready .platform-card.reveal {
  clip-path: inset(10% 0 10% 0);
  transition:
    opacity 720ms ease,
    transform 900ms cubic-bezier(0.2, 0.75, 0.2, 1),
    clip-path 1000ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.reveal-ready .scene-reveal-grid.reveal.is-visible,
.reveal-ready .image-depth-frame.reveal.is-visible,
.reveal-ready .platform-card.reveal.is-visible {
  clip-path: inset(0 0 0 0);
}

.reveal-ready .image-depth-frame.reveal:not(.is-visible) img,
.reveal-ready .platform-card.reveal:not(.is-visible) img {
  transform: scale(1.08);
}

.reveal-ready .interaction-demo.reveal .demo-step,
.reveal-ready .usecase-explorer.reveal .usecase-tab {
  opacity: 0;
  transform: translateY(12px);
  transition:
    color 180ms ease,
    background 180ms ease,
    opacity 420ms ease,
    transform 560ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.reveal-ready .interaction-demo.reveal.is-visible .demo-step,
.reveal-ready .usecase-explorer.reveal.is-visible .usecase-tab {
  opacity: 1;
  transform: translateY(0);
}

.reveal-ready .interaction-demo.reveal .demo-step:nth-child(2),
.reveal-ready .usecase-explorer.reveal .usecase-tab:nth-child(2) {
  transition-delay: 70ms;
}

.reveal-ready .interaction-demo.reveal .demo-step:nth-child(3),
.reveal-ready .usecase-explorer.reveal .usecase-tab:nth-child(3) {
  transition-delay: 140ms;
}

.reveal-ready .interaction-demo.reveal .demo-step:nth-child(4),
.reveal-ready .usecase-explorer.reveal .usecase-tab:nth-child(4) {
  transition-delay: 210ms;
}

.reveal-ready .usecase-explorer.reveal .usecase-visual,
.reveal-ready .usecase-explorer.reveal .usecase-detail {
  clip-path: inset(0 0 0 100%);
  transition:
    opacity 420ms ease,
    transform 520ms ease,
    clip-path 900ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.reveal-ready .usecase-explorer.reveal.is-visible .usecase-visual,
.reveal-ready .usecase-explorer.reveal.is-visible .usecase-detail {
  clip-path: inset(0 0 0 0);
}

.reveal-ready .usecase-explorer.reveal.is-visible .usecase-detail {
  transition-delay: 110ms;
}

.reveal-ready .section-heading.reveal h2,
.reveal-ready .product-heading.reveal h2,
.reveal-ready .hero-copy.reveal h1 {
  clip-path: inset(0 0 100% 0);
  transform: translateY(24px);
  transition: clip-path 900ms cubic-bezier(0.2, 0.75, 0.2, 1), transform 900ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.reveal-ready .section-heading.reveal.is-visible h2,
.reveal-ready .product-heading.reveal.is-visible h2,
.reveal-ready .hero-copy.reveal.is-visible h1 {
  clip-path: inset(0 0 0 0);
  transform: translateY(0);
}

.reveal-ready .scene-reveal-card:nth-child(2),
.reveal-ready .platform-card:nth-child(2) {
  transition-delay: 100ms;
}

.reveal-ready .scene-reveal-card:nth-child(3),
.reveal-ready .platform-card:nth-child(3) {
  transition-delay: 200ms;
}

@keyframes signalTravel {
  0% { left: -80%; }
  48%, 100% { left: 120%; }
}

@keyframes contextPulse {
  0%, 18% { transform: translateX(-100%); }
  55%, 100% { transform: translateX(100%); }
}

@keyframes appModeSweep {
  from { background-size: 0 100%; }
  to { background-size: 100% 100%; }
}

@keyframes scanAcross {
  0% { left: -18%; }
  55%, 100% { left: 118%; }
}

@keyframes wave {
  from { transform: scaleY(0.55); }
  to { transform: scaleY(1); }
}

@media (min-width: 981px) {
  :root {
    --section-space: clamp(96px, 6vw, 118px);
  }

  .section-inner,
  .contact-inner {
    width: min(100%, 1320px);
  }

  .section-heading h2,
  .app-copy h2,
  .why-copy h2,
  .contact-copy h2 {
    font-size: clamp(60px, 4.4vw, 72px);
    line-height: 0.98;
    letter-spacing: -0.055em;
  }

  .product-heading {
    grid-template-columns: minmax(0, 1.35fr) minmax(250px, 0.65fr);
    gap: clamp(36px, 5vw, 72px);
    margin-bottom: 48px;
  }

  .product-heading h2 {
    max-width: 660px;
  }

  .scene-reveal-grid {
    min-height: 680px;
  }

  .scene-reveal-card {
    min-height: 330px;
  }

  .app-layout {
    grid-template-columns: minmax(440px, 0.9fr) minmax(0, 1.25fr);
    gap: clamp(52px, 5vw, 76px);
    padding-top: 26px;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
  }

  .app-copy h2 {
    max-width: 480px;
  }

  .app-mode-tabs {
    margin-top: 42px;
  }

  .app-mode {
    min-height: 60px;
  }

  .app-visual {
    min-height: 600px;
  }

  .usecase-band .section-heading,
  .pricing-layout > .section-heading {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 16px;
    margin-bottom: 42px;
  }

  .usecase-band .section-heading .eyebrow,
  .pricing-layout > .section-heading .eyebrow {
    margin-bottom: 0;
  }

  .usecase-band .section-heading h2,
  .pricing-layout > .section-heading h2 {
    max-width: 820px;
  }

  .usecase-tab {
    min-height: 80px;
    padding: 0 18px;
  }

  .usecase-visual {
    height: clamp(480px, 32vw, 540px);
  }

  .usecase-detail {
    padding: clamp(28px, 2.5vw, 40px);
  }

  .usecase-detail h3 {
    font-size: clamp(30px, 2.4vw, 40px);
  }

  .why-band {
    padding: var(--section-space) 0;
  }

  .why-layout {
    gap: clamp(56px, 7vw, 104px);
    padding-top: 26px;
    border-top: 1px solid var(--line);
  }

  .why-copy h2 {
    max-width: 500px;
  }

  .pricing-note,
  .pricing-plan {
    min-height: 420px;
  }

  .contact-layout {
    grid-template-columns: minmax(0, 1fr) minmax(440px, 0.82fr);
    gap: clamp(56px, 7vw, 104px);
    padding-top: 26px;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
  }

  .contact-copy h2 {
    max-width: 620px;
  }
}

@media (max-width: 1480px) {
  .header-context {
    display: none;
  }
}

@media (max-width: 1180px) {
  .site-header {
    gap: 20px;
  }

  .nav-links {
    gap: 10px;
  }

  .nav-actions {
    padding-left: 10px;
  }

  .nav-login,
  .nav-access {
    display: none;
  }

  .image-depth-layout {
    min-height: 680px;
  }

  .app-layout {
    grid-template-columns: 0.65fr 1.35fr;
    gap: 50px;
  }

  .app-phone-mockup {
    width: 176px;
  }

  .usecase-visual {
    grid-column: 1 / 9;
  }

  .usecase-detail {
    grid-column: 9 / 13;
  }

  .pricing-panel {
    grid-template-columns: repeat(3, 1fr);
  }

  .pricing-note {
    min-height: auto;
    grid-column: 1 / 4;
    flex-direction: row;
    align-items: end;
    gap: 40px;
  }

  .pricing-note p {
    max-width: 320px;
  }
}

@media (max-width: 980px) {
  html {
    scroll-padding-top: 84px;
  }

  .site-header {
    top: 0;
    left: 0;
    width: 100%;
    min-height: 70px;
    padding: 9px 18px;
    border: 0;
    border-bottom: 1px solid var(--header-border);
    border-radius: 0;
    transform: none;
  }

  .site-header.is-scrolled {
    top: 8px;
    left: 50%;
    width: calc(100% - 24px);
    min-height: 60px;
    padding: 7px 10px 7px 12px;
    border: 1px solid var(--header-border);
    border-radius: 6px;
    transform: translateX(-50%);
  }

  .brand-mark {
    width: 38px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 78px;
    right: 12px;
    left: 12px;
    display: none;
    max-height: calc(100svh - 96px);
    overflow-y: auto;
    padding: 18px;
    color: var(--white);
    background: rgba(4, 22, 42, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 6px;
    box-shadow: 0 28px 70px rgba(0, 8, 22, 0.45);
  }

  .site-header.nav-open .nav-links {
    display: block;
  }

  .nav-item,
  .nav-link {
    width: 100%;
  }

  .nav-trigger,
  .nav-link {
    min-height: 54px;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .mega-menu,
  .industry-menu,
  .resources-menu {
    position: static;
    display: none;
    width: 100%;
    grid-template-columns: 1fr;
    margin: 0 0 12px;
    visibility: visible;
    background: rgba(255, 255, 255, 0.1);
    border: 0;
    box-shadow: none;
    opacity: 1;
    transform: none;
  }

  .nav-item.is-open .mega-menu {
    display: grid;
  }

  .mega-menu-intro,
  .mega-thumb {
    display: none;
  }

  .mega-link {
    min-height: 70px;
    justify-content: center;
    padding: 14px 18px;
  }

  .nav-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 18px;
    padding: 0;
    border: 0;
  }

  .nav-actions .nav-link {
    display: none;
  }

  .nav-actions .nav-access,
  .nav-cta {
    display: flex;
  }

  .hero {
    min-height: max(720px, 100svh);
  }

  .hero-inner {
    padding-top: 130px;
  }

  .hero h1 {
    font-size: clamp(58px, 12vw, 94px);
  }

  .product-heading,
  .workflow-band .section-heading,
  .usecase-band .section-heading,
  .pricing-layout > .section-heading,
  .platform-band .section-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .product-heading > p:last-child {
    margin-left: 0;
  }

  .image-depth-layout {
    min-height: 1060px;
    grid-template-rows: 1.35fr 0.65fr;
  }

  .image-depth-main {
    grid-column: 1 / 13;
    grid-row: 1;
  }

  .image-depth-small {
    grid-column: 1 / 7;
    grid-row: 2;
  }

  .image-depth-wide {
    grid-column: 7 / 13;
    grid-row: 2;
  }

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

  .app-copy {
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    align-items: end;
    gap: 40px;
  }

  .app-copy .eyebrow,
  .app-copy h2 {
    grid-column: 1;
  }

  .app-mode-tabs {
    grid-column: 2;
    grid-row: 1 / 3;
    margin-top: 0;
  }

  .app-visual {
    min-height: 620px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    border-left: 0;
  }

  .usecase-visual {
    grid-column: 1 / 9;
  }

  .usecase-detail {
    grid-column: 9 / 13;
  }

  .platform-card {
    min-height: 500px;
  }

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

  .partner-logo-wall {
    width: 100%;
  }

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

  .footer-inner nav {
    justify-content: flex-end;
  }

  .footer-inner > p {
    grid-column: 1 / 3;
    text-align: left;
  }
}

@media (max-width: 720px) {
  :root {
    --page: 18px;
  }

  .brand-name span {
    letter-spacing: 0.14em;
  }

  .hero-inner {
    justify-content: flex-end;
    padding-bottom: 38px;
  }

  .hero h1 {
    font-size: clamp(50px, 16vw, 76px);
    line-height: 0.88;
  }

  .hero-subtitle {
    max-width: 330px;
    margin-top: 24px;
    font-size: 14px;
  }

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

  .hero-loop-minimal {
    width: 100%;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
    margin-top: 54px;
  }

  .hero-loop-minimal i {
    display: none;
  }

  .hero-loop-minimal span {
    padding-top: 9px;
    border-top: 1px solid rgba(255, 255, 255, 0.24);
    font-size: 7px;
  }

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

  .proof-inner article,
  .proof-inner article:last-child {
    min-height: 72px;
    justify-content: flex-start;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .proof-inner article:nth-child(2) {
    border-right: 0;
  }

  .proof-inner strong {
    font-size: 11px;
  }

  .proof-inner span {
    display: none;
  }

  .product-showcase,
  .image-depth-band,
  .app-band,
  .workflow-band,
  .usecase-band,
  .platform-band,
  .why-band,
  .pricing-band,
  .contact-band {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .product-heading,
  .workflow-band .section-heading,
  .usecase-band .section-heading,
  .pricing-layout > .section-heading,
  .platform-band .section-heading {
    margin-bottom: 44px;
  }

  .section-heading h2,
  .app-copy h2,
  .why-copy h2,
  .contact-copy h2 {
    font-size: clamp(46px, 14vw, 68px);
  }

  .scene-reveal-grid {
    min-height: 0;
    grid-template-columns: 1fr;
    grid-template-rows: none;
    gap: 2px;
  }

  .reveal-ready .scene-reveal-grid.reveal,
  .reveal-ready .scene-reveal-card.reveal {
    opacity: 1;
    clip-path: none;
    transform: none;
  }

  .scene-reveal-card,
  .scene-reveal-card-large {
    min-height: 460px;
    grid-row: auto;
  }

  .scene-reveal-card:not(.scene-reveal-card-large) {
    min-height: 330px;
  }

  .scene-reveal-content p,
  .scene-tags {
    opacity: 1;
    transform: none;
  }

  .signal-loop-visual {
    height: 560px;
    min-height: 0;
  }

  .signal-loop-caption h2 {
    font-size: clamp(50px, 14vw, 72px);
  }

  .image-depth-layout {
    display: grid;
    min-height: 0;
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .image-depth-main,
  .image-depth-small,
  .image-depth-wide {
    min-height: 360px;
    grid-column: auto;
    grid-row: auto;
  }

  .image-depth-main {
    min-height: 520px;
  }

  .app-copy {
    display: block;
  }

  .app-mode-tabs {
    margin-top: 40px;
  }

  .app-mode {
    min-height: 58px;
  }

  .app-visual {
    min-height: 500px;
  }

  .app-phone-rail {
    width: 120%;
    transform: translateX(-8%);
  }

  .app-phone-mockup {
    width: 132px;
    margin-left: -38px;
    border-width: 5px;
    border-radius: 22px;
  }

  .demo-controls {
    grid-template-columns: 1fr 1fr;
  }

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

  .demo-stage {
    grid-template-columns: 1fr;
  }

  .demo-phone,
  .demo-intel {
    min-height: 390px;
  }

  .demo-phone {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }

  .demo-dashboard {
    grid-column: 1;
    grid-template-columns: 1fr;
  }

  .demo-dashboard > div {
    min-height: 72px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }

  .usecase-tabs {
    display: flex;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .usecase-tabs::-webkit-scrollbar {
    display: none;
  }

  .usecase-tab {
    min-width: 170px;
  }

  .usecase-visual,
  .usecase-detail {
    grid-column: 1 / 13;
  }

  .usecase-visual {
    height: 500px;
  }

  .usecase-detail {
    min-height: 300px;
  }

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

  .platform-card {
    min-height: 440px;
  }

  .partner-logo-grid {
    grid-template-columns: 1fr 1fr;
  }

  .partner-logo {
    min-height: 104px;
    padding: 14px;
  }

  .partner-logo b {
    font-size: 11px;
  }

  .pricing-panel {
    grid-template-columns: 1fr;
  }

  .pricing-note {
    min-height: 350px;
    grid-column: auto;
    flex-direction: column;
    align-items: flex-start;
  }

  .pricing-plan {
    min-height: 390px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .contact-actions .button {
    width: 100%;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    align-items: start;
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .footer-inner nav {
    justify-content: flex-start;
  }

  .footer-inner > p {
    grid-column: auto;
  }

  .legal-header {
    min-height: 68px;
  }

  .legal-main {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .legal-main section {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

@media (hover: none) {
  .platform-card-copy p {
    max-height: 70px;
    margin-top: 10px;
    opacity: 1;
    transform: none;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal-ready .reveal,
  .reveal-ready .reveal.is-visible,
  .reveal-ready .section-heading.reveal h2,
  .reveal-ready .product-heading.reveal h2,
  .reveal-ready .hero-copy.reveal h1 {
    opacity: 1;
    clip-path: none;
    transform: none;
  }
}
