.nav-link[aria-current="page"] { text-decoration: underline; text-underline-offset: 9px; }

/* Shared layout and interactions, followed by the 2026 monochrome brand layer. */
:root {
  --ink: #111111;
  --ink-2: #242424;
  --paper: #f5f5f3;
  --white: #ffffff;
  --line: rgba(17, 17, 17, 0.14);
  --line-light: rgba(255, 255, 255, 0.18);
  --muted: #626262;
  --orange: #111111;
  --amber: #ababab;
  --teal: #505050;
  --mint: #dddddd;
  --page: clamp(20px, 4.6vw, 76px);
  --section-space: clamp(112px, 7vw, 132px);
  --inner: 1440px;
  --display: Arial, Helvetica, sans-serif;
  --body: Arial, Helvetica, 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;
  }
}

/* Editorial product layout: visible content and a single user-controlled preview. */
.product-scene-grid.scene-reveal-grid { min-height: 0; grid-template-columns: repeat(3, minmax(0, 1fr)); grid-template-rows: auto; gap: 28px; background: transparent; }
.product-scene-grid .scene-reveal-card { min-height: 0; grid-row: auto; color: #111; background: transparent; border-radius: 0; }
.product-scene-grid .scene-reveal-card::after { display: none; }
.product-scene-grid .scene-reveal-card img { display: block; height: auto; aspect-ratio: 4 / 3; opacity: 1; object-fit: cover; border-radius: 3px; }
.product-scene-grid .scene-reveal-card:hover img { transform: none; }
.product-scene-grid .scene-reveal-content { position: static; padding: 26px 0 0; }
.product-scene-grid .scene-reveal-content > span { color: #626262; font-weight: 500; }
.product-scene-grid .scene-reveal-content h3 { margin-top: 14px; font-size: clamp(24px, 2.2vw, 32px); line-height: 1.15; }
.product-scene-grid .scene-reveal-content p, .product-scene-grid .scene-tags { color: #626262; opacity: 1; transform: none; }
.product-scene-grid .scene-reveal-content p { min-height: 44px; line-height: 1.7; font-size: 14px; }
.product-scene-grid .scene-tags strong { color: #626262; border-color: #d5d5d1; font-weight: 400; }
#mobile-app { color: #111; background: #ececea; }
#mobile-app .app-layout { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); border: 0; padding-top: 0; gap: 80px; }
#mobile-app .eyebrow { color: #626262; }
.app-intro { max-width: 400px; margin-top: 26px; color: #626262; font-size: 15px; line-height: 1.8; }
#mobile-app .app-mode-tabs { grid-template-columns: repeat(4, minmax(0, 1fr)); margin-top: 34px; border: 1px solid #ccc; border-radius: 8px; padding: 4px; gap: 2px; }
#mobile-app .app-mode { min-height: 46px; padding: 0 8px; justify-content: center; border: 0; border-radius: 5px; color: #555; font-size: 12px; font-weight: 400; }
#mobile-app .app-mode::before, #mobile-app .app-mode::after { display: none; }
#mobile-app .app-mode.is-active { color: #fff; background: #111; animation: none; }
#mobile-app .app-mode:focus-visible { outline: 2px solid #111; outline-offset: 2px; }
.app-workflow-detail { min-height: 76px; margin-top: 24px; max-width: 410px; color: #444; font-size: 15px; line-height: 1.7; }
.app-concept-note { display: block; margin-top: 22px; font-size: 10px; color: #686868; letter-spacing: .04em; }
#mobile-app .app-visual { min-height: 640px; border: 1px solid #d8d8d4; border-radius: 4px; background: #e2e2de; }
#mobile-app .app-phone-rail { width: 100%; perspective: none; transform: none; padding: 32px; }
#mobile-app .app-phone-mockup { display: none; width: 268px; max-width: 100%; margin: 0; transform: none; opacity: 1; filter: none; border: 6px solid #202020; border-radius: 30px; box-shadow: 0 20px 35px #00000015; }
#mobile-app .app-phone-mockup.is-active { display: block; }
#mobile-app .app-phone-mockup[hidden] { display: none; }
#mobile-app .app-visual.is-switching .app-phone-mockup { opacity: .35; transform: none; }
#mobile-app .app-screen-image { filter: none; }
#mobile-app .app-screen-label { display: none; }
.pilot-steps { margin: 32px 0; padding: 0; list-style: none; counter-reset: pilot; }
.pilot-steps li { position: relative; padding: 18px 0 18px 40px; border-top: 1px solid #d5d5d1; counter-increment: pilot; }
.pilot-steps li::before { content: '0' counter(pilot); position: absolute; left: 0; top: 20px; color: #686868; font-size: 10px; }
.pilot-steps strong { display: block; font-size: 15px; font-weight: 400; }
.pilot-steps span { display: block; margin-top: 8px; color: #626262; font-size: 13px; line-height: 1.6; }
.pilot-editorial { margin: 0; }
.pilot-editorial img { display: block; width: 100%; height: auto; aspect-ratio: 4 / 5; object-fit: cover; object-position: 62% center; border-radius: 3px; }
.pilot-editorial figcaption { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; padding-top: 16px; color: #626262; font-size: 10px; }
@media (max-width: 980px) {
  .product-scene-grid.scene-reveal-grid { gap: 18px; }
  #mobile-app .app-layout { grid-template-columns: 1fr 1fr; gap: 32px; }
  #mobile-app .app-copy { display: block; }
  #mobile-app .app-visual { min-height: 580px; }
}
@media (max-width: 700px) {
  .product-scene-grid.scene-reveal-grid { grid-template-columns: 1fr; gap: 42px; }
  .product-scene-grid .scene-reveal-content p { min-height: 0; }
  #mobile-app .app-layout { grid-template-columns: 1fr; gap: 32px; }
  #mobile-app .app-visual { min-height: 570px; }
  #mobile-app .app-phone-rail { padding: 26px; }
  .pilot-editorial img { aspect-ratio: 4 / 3; }
}

/* Homepage ice-blue accents: pale fills, dark labels and readable text links. */
.home-page ::selection { color: var(--accent-ink); background: var(--accent); }
.home-page .header-progress i,
.home-page .nav-trigger::before,
.home-page .nav-links > .nav-link::before { background: var(--accent); }
.home-page .nav-cta,
.home-page .nav-cta.is-current,
.home-page .button-primary,
.home-page .hero .button-primary,
.home-page #mobile-app .app-mode.is-active {
  color: var(--accent-ink);
  background: var(--accent);
  border-color: var(--accent);
}
.home-page .nav-cta:hover,
.home-page .nav-cta:focus-visible,
.home-page .button-primary:not(:disabled):hover,
.home-page .hero .button-primary:hover { color: var(--accent-ink); background: var(--accent-hover); border-color: var(--accent-hover); }
.home-page .nav-item.is-current > .nav-trigger,
.home-page .nav-links > .nav-link.is-current { color: var(--accent-text); }
.home-page .mega-link:hover,
.home-page .mega-link:focus-visible { background: var(--accent-soft); }
.home-page .hero .eyebrow { color: var(--accent-on-dark); }
.home-page .hero .eyebrow::before { display: block; width: 24px; height: 2px; background: var(--accent-on-dark); }
.home-page .hero-brand-visual figcaption span { color: var(--accent-on-dark); }
.home-page .product-scene-grid .scene-reveal-content > span { color: var(--accent-text); }
.home-page #mobile-app .app-mode:not(.is-active):hover { color: var(--accent-text); background: var(--accent-soft); }
.home-page .usecase-tab.is-active { color: var(--accent-text); background: var(--accent-soft); }
.home-page .usecase-tab.is-active span { color: var(--accent-text); }
.home-page .usecase-tab::before { background: var(--accent); }
.home-page .usecase-tab:not(.is-active):hover { background: #f5f7fc; }
.home-page .pilot-steps li::before,
.home-page .why-link,
.home-page .plan-link { color: var(--accent-text); }
.home-page .why-link::after,
.home-page .plan-link::after { background: currentColor; }
.home-page .why-link:hover,
.home-page .plan-link:hover { color: var(--accent-ink); }
.home-page .pricing-plan.is-featured { box-shadow: inset 0 3px 0 var(--accent); }
.home-page .pricing-plan.is-featured .plan-label { color: var(--accent-text); }
/* Keep the form submission as the colored primary action in the contact section. */
.home-page .contact-actions .button-primary { color: #111; background: #fff; border-color: #fff; }
.home-page .contact-actions .button-primary:hover { color: #111; background: #e5e5e5; border-color: #e5e5e5; }
.home-page .demo-form .form-switch input:checked + span { color: var(--accent-text); }
.home-page .demo-form input { accent-color: var(--accent-text); }
.home-page .demo-form input:focus-visible,
.home-page .demo-form select:focus-visible { border-color: var(--accent-focus); }
.home-page :is(a, button, input, select):focus-visible,
.home-page #mobile-app .app-mode:focus-visible { outline: 2px solid var(--accent-focus); outline-offset: 4px; }
.home-page .hero :is(a, button):focus-visible,
.home-page .contact-actions a:focus-visible,
.home-page .site-footer a:focus-visible { outline-color: var(--accent-on-dark); }
.home-page .demo-form .form-switch input:focus-visible + span { outline: 2px solid var(--accent-focus); outline-offset: 6px; }

/* Homepage art direction: film-led, asymmetric typography with a quiet brand signature. */
.home-page .site-header:not(.is-scrolled):not(.nav-open) {
  --header-bg: transparent;
  --header-border: rgba(255, 255, 255, .18);
  --header-fg: #fff;
  --header-muted: #ddd;
  --header-line: rgba(255, 255, 255, .2);
  background: transparent;
  backdrop-filter: none;
}
.home-page .site-header:not(.is-scrolled):not(.nav-open) .brand-logo { filter: invert(1); }
.home-page .site-header:not(.is-scrolled):not(.nav-open) :is(.nav-trigger, .nav-link) { color: #fff; }
.home-page .site-header:not(.is-scrolled):not(.nav-open) :is(.nav-trigger, .nav-link, .brand, .menu-toggle):focus-visible { outline-color: var(--accent-on-dark); }
.home-page .hero-media::after {
  background: linear-gradient(90deg, rgba(5, 10, 16, .82), rgba(5, 10, 16, .2) 85%),
    linear-gradient(0deg, rgba(5, 10, 16, .88), transparent 65%, rgba(5, 10, 16, .5));
}
.home-page .hero-inner {
  display: flex; justify-content: center; align-items: stretch;
  width: min(100%, 1600px); gap: 0; padding: 170px var(--page) 120px;
}
.home-page .hero-copy { max-width: none; width: 100%; }
.home-page .hero .eyebrow { margin-bottom: 30px; }
.home-page .hero h1 {
  max-width: 1100px; font-size: clamp(84px, min(9.1vw, 15svh), 152px);
  line-height: .96; letter-spacing: -.065em; font-weight: 400;
}
.home-page .hero h1 span:last-child { color: var(--accent-on-dark); }
.home-page .hero-summary {
  display: flex; align-items: center; justify-content: space-between; gap: 48px;
  width: min(100%, 1050px); margin-top: 44px; padding-top: 26px;
  border-top: 1px solid #ffffff38;
}
.home-page .hero-subtitle { max-width: 440px; margin: 0; font-size: 16px; line-height: 1.75; }
.home-page .hero-actions { margin: 0; flex-shrink: 0; gap: 12px; }
.home-page .hero .button { min-height: 52px; padding-inline: 25px; font-size: 13px; }
.home-page .hero-brand-visual {
  position: absolute; right: var(--page); top: 43%; width: 220px; gap: 20px;
  justify-items: end; text-align: right;
}
.home-page .hero-brand-visual img { width: 170px; opacity: .92; }
.home-page .hero-brand-visual figcaption { font-size: 11px; line-height: 1.8; text-align: right; }
.home-page .hero-brand-visual figcaption span { display: block; margin-left: 0; }
.home-page .hero-discover {
  position: absolute; bottom: 30px; left: var(--page); display: inline-flex;
  align-items: center; gap: 25px; color: #ddd; font-size: 11px;
}
.home-page .hero-discover span { font-size: 20px; color: var(--accent-on-dark); transition: transform 200ms ease; }
.home-page .hero-discover:hover span { transform: translateY(3px); }
.home-page .product-showcase { background: #fafaf9; }
.home-page .product-heading h2 { font-size: clamp(46px, 5.4vw, 80px); }
.home-page .product-scene-grid { align-items: start; }
.home-page .product-scene-grid .scene-reveal-content { padding-top: 22px; }
.home-page .product-scene-grid .scene-step { display: flex; align-items: center; gap: 18px; font-size: 11px; }
.home-page .scene-step b { color: #7b9abe; font-size: 46px; letter-spacing: -.06em; line-height: 1; font-weight: 400; }
.home-page #mobile-app .app-visual { background: #e1e9f2; border-color: #d4dfe9; }
@media (min-width: 1101px) {
  .home-page .product-scene-grid .scene-reveal-card:nth-child(2) { margin-top: 54px; }
  .home-page .product-scene-grid .scene-reveal-card:nth-child(3) { margin-top: 108px; }
}
@media (max-width: 1100px) {
  .home-page .hero-brand-visual { width: 160px; top: 40%; }
  .home-page .hero-brand-visual img { width: 120px; }
  .home-page .hero-summary { gap: 30px; }
  .home-page .hero-actions { flex-direction: column; }
}
@media (max-width: 700px) {
  .home-page .hero-inner { padding: 136px 24px 98px; }
  .home-page .hero h1 { font-size: clamp(48px, 12.5vw, 82px); line-height: 1; letter-spacing: -.065em; }
  .home-page .hero .eyebrow { font-size: 9px; margin-bottom: 26px; }
  .home-page .hero-summary { display: block; margin-top: 28px; padding-top: 22px; }
  .home-page .hero-subtitle { max-width: 430px; font-size: 14px; }
  .home-page .hero-actions { flex-direction: row; margin-top: 24px; gap: 10px; }
  .home-page .hero .button { min-height: 48px; font-size: 12px; padding-inline: 20px; }
  .home-page .hero-brand-visual { position: static; width: 100%; display: flex; align-items: center; justify-content: flex-end; gap: 18px; margin-top: 35px; }
  .home-page .hero-brand-visual img { width: 62px; }
  .home-page .hero-brand-visual figcaption { font-size: 10px; text-align: left; }
  .home-page .hero-discover { bottom: 30px; left: 24px; gap: 15px; font-size: 10px; }
  .home-page .hero-video-toggle { font-size: 10px; bottom: 25px; right: 24px; }
  .home-page .scene-step b { font-size: 36px; }
}

/* Secondary website pages share the homepage's ice-blue identity. */
:is(.team-page, .legal-page) ::selection { background: var(--accent); color: var(--accent-ink); }
:is(.team-page, .legal-page) :is(a, button):focus-visible { outline: 2px solid var(--accent-focus); outline-offset: 5px; }
:is(.team-page, .legal-page) .button-primary,
.team-page .nav-cta { color: var(--accent-ink); background: var(--accent); border-color: var(--accent); }
:is(.team-page, .legal-page) .button-primary:hover,
.team-page .nav-cta:hover { color: var(--accent-ink); background: var(--accent-hover); border-color: var(--accent-hover); }
.team-page .header-progress i,
.team-page .nav-trigger::before,
.team-page .nav-links > .nav-link::before { background: var(--accent); }
.team-page .mega-link:hover { background: var(--accent-soft); }
.team-page .nav-link[aria-current="page"] { text-decoration-color: var(--accent); text-decoration-thickness: 2px; }
.team-page .nav-link[aria-current="page"]::before { display: none; }
.team-page .site-footer a:focus-visible { outline-color: var(--accent); }
.team-page .site-header:not(.is-scrolled):not(.nav-open) {
  --header-bg: transparent; --header-border: #ffffff26; --header-fg: #fff;
  --header-muted: #ddd; --header-line: #ffffff26;
  background: transparent; backdrop-filter: none;
}
.team-page .site-header:not(.is-scrolled):not(.nav-open) .brand-logo { filter: invert(1); }
.team-page .site-header:not(.is-scrolled):not(.nav-open) :is(.nav-trigger, .nav-link) { color: #fff; }
.team-page .site-header:not(.is-scrolled):not(.nav-open) :is(a, button):focus-visible { outline-color: var(--accent); }
.legal-page:not(.not-found-page) { background: #fafaf9; }
.legal-page .legal-header { min-height: 96px; background: #fafaf9; border-bottom: 1px solid #dde2e8; color: #111; }
.legal-page .legal-back { font-weight: 400; font-size: 12px; color: var(--accent-text); }
.legal-page .legal-back:hover { color: #111; }
.legal-page .legal-main { width: min(calc(100% - 48px), 960px); padding-block: 85px; }
.legal-page .legal-main > .eyebrow { color: var(--accent-text); }
.legal-page .legal-main h1 { font-size: clamp(50px, 7vw, 92px); line-height: 1; font-weight: 400; }
.legal-page .legal-updated { margin-block: 24px 36px; }
.legal-tabs { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 48px; }
.legal-tabs a { padding: 12px 18px; border-radius: 999px; color: #526073; font-size: 13px; }
.legal-tabs a[aria-current="page"] { background: var(--accent); color: var(--accent-ink); }
.legal-tabs a:hover { background: var(--accent-soft); color: var(--accent-ink); }
.legal-page .legal-main section { grid-template-columns: minmax(160px, .7fr) minmax(0, 1.5fr); gap: 48px; padding-block: 34px; }
.legal-page .legal-main h2 { font-weight: 400; font-size: 21px; line-height: 1.35; }
.legal-page .legal-main section p { font-size: 16px; line-height: 1.8; margin: 0; }
.legal-page.not-found-page { display: flex; flex-direction: column; min-height: 100svh; background: #10151c; color: #fff; }
.not-found-page .legal-header { background: transparent; border-color: #ffffff26; }
.not-found-page .legal-header .brand-logo { filter: invert(1); }
.not-found-page .legal-back { color: var(--accent); }
.not-found-page .legal-back:hover { color: #fff; }
.not-found-page .legal-main { margin: auto; text-align: left; }
.not-found-page .legal-main h1 { font-size: clamp(64px, 9vw, 120px); }
.not-found-page .legal-main h1 span,
.not-found-page .legal-main > .eyebrow { color: var(--accent); }
.not-found-page :is(a, button):focus-visible { outline-color: var(--accent); }
@media (max-width: 760px) {
  .legal-page .legal-header { min-height: 78px; padding-inline: 24px; gap: 20px; }
  .legal-page .legal-header .brand-logo { width: 132px; }
  .legal-page .legal-main { padding-block: 56px; }
  .legal-page .legal-main section { grid-template-columns: 1fr; gap: 16px; }
}

/* Korppi brand: quiet typography, generous space, black and white. */
.brand-logo { width: 156px; height: auto; flex-shrink: 0; }
.site-header,
.site-header.is-light,
.site-header.is-scrolled,
.site-header.is-light.is-scrolled,
.site-header.nav-open {
  --header-bg: rgba(250, 250, 248, .97);
  --header-border: #dededb;
  --header-fg: #111;
  --header-muted: #666;
  --header-line: #ddd;
  min-height: 96px;
  padding: 18px var(--page);
  box-shadow: none;
  backdrop-filter: blur(18px);
}
.site-header.is-scrolled { min-height: 76px; border-radius: 16px; }
.site-header .header-context, .nav-access { display: none; }
.header-progress { display: block; height: 3px; background: #11111112; }
.header-progress i { background: #111; }
.site-header .brand { margin-right: auto; }
.nav-links { gap: 22px; }
.nav-trigger, .nav-link { font-size: 12px; font-weight: 400; }
.nav-actions { gap: 20px; }
.nav-cta, .nav-cta.is-current {
  box-shadow: none;
  color: #fff; background: #111; border: 1px solid #111;
  border-radius: 999px; padding: 13px 23px; font-weight: 500;
}
.nav-cta:hover, .nav-cta:focus-visible { color: #fff; background: #363636; }
.mega-menu { color: #111; background: #fafaf8; border-color: #ddd; box-shadow: 0 20px 40px #00000012; }
.mega-menu-intro small, .mega-link small { color: #666; }
.mega-menu-intro, .mega-link { background: #fafaf8; }
.mega-thumb { display: none; }
.mega-link { justify-content: center; }
.mega-menu-intro strong { font-weight: 400; }
@media (min-width: 981px) {
  .nav-item { position: static; }
  .mega-menu, .industry-menu, .resources-menu { top: calc(100% + 8px); right: 24px; left: auto; }
}
.mega-link:hover, .mega-link:focus-visible { background: #ececea; }
.mega-thumb { filter: var(--brand-photo-filter); }
.hero { min-height: max(760px, 100svh); color: #fff; background: #111; }
.hero-media { background: #111; }
.hero-media video { filter: grayscale(1); }
.hero-media::after { background: rgba(0, 0, 0, .58); }
.hero .eyebrow { color: #ccc; }
.hero .button-primary { color: #111; background: #fff; border-color: #fff; }
.hero .button-primary:hover { background: #e5e5e5; }
.hero-video-toggle {
  position: absolute; z-index: 5; right: var(--page); bottom: 20px;
  padding: 9px 14px; border: 1px solid #ffffff80; border-radius: 999px;
  color: #fff; background: #1119; font: inherit; font-size: 11px; cursor: pointer;
}
.hero-video-toggle:hover { background: #111; }
.hero-inner {
  display: grid; grid-template-columns: 1.05fr 1fr; align-items: center;
  gap: 50px; min-height: max(760px, 100svh); padding: 162px var(--page) 74px;
}
.hero-copy { max-width: 620px; }
.eyebrow { color: #686868; font-size: 10px; font-weight: 500; letter-spacing: .15em; }
.eyebrow::before { display: none; }
.hero h1 { font-size: clamp(54px, 5.6vw, 86px); font-weight: 400; line-height: 1.02; letter-spacing: -.055em; }
.hero h1 span:last-child { color: #fff; }
.hero-subtitle { max-width: 370px; margin-top: 26px; color: #e0e0e0; font-size: 15px; line-height: 1.8; }
.hero-actions { gap: 14px; margin-top: 30px; }
.button { min-height: 46px; padding: 0 24px; border-radius: 999px; font-size: 12px; font-weight: 500; }
.button-primary { color: #fff; background: #111; border-color: #111; }
.button-primary:hover { background: #353535; border-color: #353535; }
.hero .button-secondary { color: #fff; background: transparent; border-color: #ffffff80; backdrop-filter: none; }
.button:focus-visible, a:focus-visible, button:focus-visible { outline: 2px solid currentColor; outline-offset: 5px; }
.hero-brand-visual { margin: 0; display: grid; justify-items: center; align-self: center; gap: 24px; }
.hero-brand-visual img { width: min(100%, 300px); height: auto; filter: invert(1); opacity: .82; }
.hero-brand-visual figcaption { color: #ddd; font-size: 10px; letter-spacing: .03em; text-align: center; }
.hero-brand-visual figcaption span { margin-left: 7px; }
.proof-strip { background: #101111; }
.proof-inner { gap: 32px; padding-block: 40px; }
.proof-inner article, .proof-inner article:last-child { min-height: 76px; align-items: flex-start; justify-content: center; flex-direction: column; gap: 10px; padding-right: 20px; }
.proof-inner strong { font-size: 15px; font-weight: 400; }
.proof-inner span { color: #ababab; font-size: 12px; line-height: 1.5; }
.section-heading h2, .app-copy h2, .why-copy h2, .contact-copy h2 {
  font-size: clamp(40px, 4.5vw, 66px); line-height: 1.06; font-weight: 400; letter-spacing: -.045em;
}
.section-heading > p:last-child, .why-copy > p, .contact-copy > p { font-size: 15px; }
.product-showcase, .why-band { background: #f5f5f3; }
.product-showcase { padding-block: 110px; }
.product-heading { margin-bottom: 52px; }
.scene-reveal-card img, .usecase-visual img, .image-depth-frame img, .pilot-editorial img { filter: var(--brand-photo-filter); }
.app-backdrop { filter: none; }
.scene-reveal-card, .image-depth-frame { border-radius: 4px; }
.scene-reveal-card::after, .image-depth-frame::after, .usecase-visual::after { background: rgba(0, 0, 0, .28); }
.scene-reveal-content h3 { font-weight: 400; letter-spacing: -.025em; }
.scene-reveal-content > span, .scene-tags strong { color: #eee; }
.app-band { background: #111; }
.app-band .eyebrow, .contact-band .eyebrow, .pricing-note > span { color: #aaa; }
.app-mode::before { color: #aaa; }
.app-mode.is-active { background: #242424; animation: none; }
.app-visual { background: transparent; border-color: #333; }
.app-visual::after { display: none; }
.app-backdrop { display: none; }
.app-phone-mockup, .app-phone-mockup.is-active { background: #171717; border-color: #444; box-shadow: none; }
.app-screen-label { color: #eee; background: #222; border-color: #555; }
.usecase-band, .pricing-band { background: #fff; }
.usecase-tab:hover, .usecase-tab:focus-visible, .usecase-tab.is-active { color: #111; background: #ededeb; }
.usecase-detail { background: #eee; color: #111; }
.usecase-detail .panel-label { color: #666; }
.usecase-metrics { border-color: #ccc; }
.usecase-metrics span { color: #626262; }
.hotspot-dot { background: #fff; border-color: #aaa; box-shadow: none; }
.pricing-plan.is-featured { background: #f0f0ee; }
.pricing-note { background: #151515; }
.pricing-note strong { font-weight: 400; line-height: 1.15; }
.pricing-note p { color: #aaa; }
.pricing-plan h3 { font-weight: 400; }
.plan-price { color: #626262; }
.contact-band { background: #111; }
.contact-copy > p { color: #aaa; }
.contact-actions .button-primary { color: #111; background: #fff; border-color: #fff; }
.contact-actions .button-secondary { background: transparent; border-color: #777; }
.demo-form { background: #f5f5f3; border-radius: 8px; }
.demo-form label > span { font-size: 10px; font-weight: 500; }
.demo-form .form-switch input:checked + span { text-decoration: underline; text-underline-offset: 7px; }
.site-footer { background: #0b0b0b; }
.site-footer .brand-logo { filter: invert(1); }
.footer-inner { grid-template-columns: auto 1fr; }
.footer-inner > p { grid-column: 1 / -1; text-align: left; color: #999; }
.footer-inner nav { justify-content: flex-end; }
.footer-inner nav a { font-size: 12px; color: #aaa; font-weight: 400; }
.legal-header .brand-logo { width: 156px; }

@media (min-width: 1600px) {
  .site-header { padding-inline: max(var(--page), calc((100vw - 1290px) / 2)); }
}
@media (max-width: 1100px) {
  .site-header .nav-links { gap: 12px; }
  .nav-actions { gap: 12px; }
  .hero-inner { gap: 32px; }
}
@media (max-width: 900px) {
  .site-header, .site-header.is-scrolled { min-height: 78px; padding: 12px 24px; }
  .brand-logo { width: 136px; }
  .site-header.nav-open .nav-links { background: #fafaf8; color: #111; }
  .site-header.nav-open .nav-trigger, .site-header.nav-open .nav-link { color: #111; }
  .hero, .hero-inner { min-height: max(720px, 100svh); }
  .hero-inner { padding-top: 130px; padding-bottom: 64px; }
  .hero h1 { font-size: 58px; }
  .proof-inner { gap: 24px; }
  .proof-inner article { border: 0; }
}
@media (max-width: 980px) {
  .site-header.nav-open .nav-links { color: #111; background: #fafaf8; border-color: #ddd; box-shadow: 0 16px 40px #00000014; }
  .nav-actions .nav-login { display: flex; justify-content: center; }
  .nav-actions .nav-access { display: none; }
}
@media (max-width: 600px) {
  .site-header, .site-header.is-scrolled { padding-inline: 20px; }
  .hero-inner { grid-template-columns: 1fr; padding: 124px 24px 72px; gap: 42px; }
  .hero h1 { font-size: clamp(50px, 12vw, 66px); }
  .hero-subtitle { font-size: 14px; max-width: 340px; margin-top: 22px; }
  .hero-brand-visual img { width: 180px; }
  .hero-brand-visual { gap: 20px; }
  .hero-brand-visual figcaption { font-size: 9px; }
  .proof-inner { grid-template-columns: 1fr 1fr; gap: 22px; padding: 30px 24px; }
  .proof-inner article { min-height: 70px; padding: 0; }
  .proof-inner strong { font-size: 14px; }
  .proof-inner span { display: block; font-size: 11px; }
  .product-showcase { padding-block: 72px; }
  .section-heading h2, .app-copy h2, .why-copy h2, .contact-copy h2 { font-size: 42px; }
  .usecase-band .section-heading, .pricing-layout > .section-heading { grid-template-columns: 1fr; gap: 18px; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-inner nav { justify-content: flex-start; }
  .app-phone-rail { width: 100%; transform: none; }
}
