:root {
  --bg: #f4efe8;
  --bg-deep: #efe7dc;
  --panel: rgba(255, 252, 247, 0.7);
  --panel-strong: #fbf8f3;
  --ink: #151310;
  --muted: #6b6459;
  --line: rgba(21, 19, 16, 0.16);
  --line-soft: rgba(21, 19, 16, 0.08);
  --accent: #c15d41;
  --accent-strong: #9f4128;
  --accent-soft: rgba(193, 93, 65, 0.12);
  --shadow: 0 18px 40px rgba(40, 29, 17, 0.05);
  --radius: 1.5rem;
  --max-width: 1240px;
  --gutter: clamp(1.25rem, 3vw, 2.8rem);
  --font-headline: "Manrope", "Space Grotesk", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Space Grotesk", system-ui, sans-serif;
  background: linear-gradient(180deg, #f8f4ed 0%, var(--bg) 52%, var(--bg-deep) 100%);
  color: var(--ink);
  line-height: 1.65;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(var(--max-width), calc(100% - (2 * var(--gutter))));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(248, 244, 237, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line-soft);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  align-items: center;
  padding: 0.9rem 0;
}

.brand-block {
  display: block;
}

.brand {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}

.brand-meta,
.header-note,
.site-nav a,
.eyebrow,
.panel-label,
.figure-topline,
.eyebrow-rule,
.smallprint,
.footer-label,
.stat-label,
.kicker,
.meta-note {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

.header-note {
  display: none;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: flex-end;
  align-items: center;
}

.site-nav a {
  padding: 0.25rem 0;
  border-bottom: 1px solid transparent;
  transition: border-color 180ms ease, color 180ms ease;
}

.site-nav .button {
  width: auto;
  padding: 0.75rem 1rem;
  min-height: 2.65rem;
  border-bottom: 0;
  color: #f9f5ef;
}

.site-nav .button:hover,
.site-nav .button.active,
.site-nav .button:focus-visible,
.site-nav .button[aria-current="page"] {
  color: #f9f5ef;
  background: var(--ink);
  border-color: var(--ink);
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--ink);
  border-color: var(--ink);
}

.page-hero {
  padding: 1.4rem 0 4.6rem;
}

.landing-hero {
  --hero-frame: calc((100vw - min(var(--max-width), calc(100vw - (2 * var(--gutter))))) / 2);
  display: grid;
  grid-template-columns: minmax(0, 24rem) minmax(0, 1fr);
  column-gap: 0;
  align-items: center;
  padding-top: 2.1rem;
}

.landing-copy {
  display: grid;
  gap: 1.1rem;
  grid-column: 1;
}

.landing-title {
  max-width: 22rem;
  margin: 0;
  font-family: var(--font-headline);
  font-size: clamp(3rem, 5.8vw, 4.9rem);
  font-weight: 700;
  line-height: 0.94;
  letter-spacing: -0.055em;
}

.landing-subtitle {
  max-width: 34rem;
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
}

.intelligence-stage {
  position: relative;
  display: grid;
  justify-items: end;
  grid-column: 2;
  margin-top: 0;
  justify-self: center;
  transform: translateX(calc(var(--hero-frame) / 2));
  width: min(100%, 18rem);
}

.scrub-ruler {
  width: 100%;
  display: flex;
  justify-content: center;
}

.scrub-window {
  width: 8.2rem;
  overflow: hidden;
  padding: 0.15rem 0 0.1rem;
}

.scrub-track {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  width: max-content;
  transition: transform 560ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.scrub-tick {
  flex: none;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 2rem;
}

.scrub-tick::before {
  content: "";
  width: 1px;
  height: 0.92rem;
  border-radius: 999px;
  background: rgba(21, 19, 16, 0.3);
  transition:
    height 560ms cubic-bezier(0.22, 1, 0.36, 1),
    width 560ms cubic-bezier(0.22, 1, 0.36, 1),
    background-color 560ms ease,
    opacity 560ms ease;
}

.scrub-tick.is-active::before {
  width: 2px;
  height: 2rem;
  background: var(--ink);
}

.scrub-info {
  position: relative;
  width: 100%;
  min-height: 5rem;
  margin-top: 1.55rem;
  text-align: center;
}

.scrub-copy {
  position: absolute;
  inset: 0;
  width: 100%;
  display: grid;
  gap: 0.4rem;
  justify-items: center;
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 300ms ease,
    transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.scrub-copy.is-active {
  opacity: 1;
  transform: translateY(0);
}

.graph-time {
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.scrub-copy strong {
  font-size: 1rem;
  line-height: 1.2;
}

.scrub-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.text-link {
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.text-link:hover {
  color: var(--ink);
}

.split-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.16fr);
  gap: clamp(1.8rem, 3vw, 3rem);
  align-items: start;
  border-top: 1px solid var(--line);
  box-shadow: none;
}

.hero-visual,
.hero-copy {
  padding: clamp(1.5rem, 2.2vw, 2.25rem) 0;
}

.hero-visual {
  border-right: 1px solid var(--line);
  padding-right: clamp(1.5rem, 3vw, 2.8rem);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 2.3rem;
}

.hero-topline,
.visual-topline,
.mini-topline {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: baseline;
}

.display {
  margin: 1.35rem 0 0.9rem;
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: clamp(2.7rem, 5.2vw, 4.85rem);
  line-height: 0.95;
  letter-spacing: -0.055em;
}

.display em {
  display: block;
  font-style: normal;
  font-weight: 700;
}

.lead {
  max-width: 31rem;
  margin: 0;
  font-size: 1rem;
  color: var(--muted);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.7rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.05rem;
  padding: 0.9rem 1.2rem;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: #f9f5ef;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

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

.button.secondary {
  background: transparent;
  color: var(--ink);
}

.button.secondary:hover {
  background: var(--ink);
  color: #f9f5ef;
}

.metric-grid,
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.metric-card,
.stat-card {
  padding: 1.1rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.36);
}

.metric-value,
.stat-value {
  display: block;
  margin-top: 0.35rem;
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.pull-quote {
  max-width: 30rem;
  padding-left: 1rem;
  border-left: 1px solid var(--line);
  color: var(--muted);
  font-family: var(--font-headline);
  font-style: normal;
  font-weight: 600;
  font-size: 1.02rem;
}

.visual-frame {
  margin-top: 1.4rem;
  padding: 1rem;
  border: 1px solid var(--line);
  background: var(--panel-strong);
}

.visual-window {
  position: relative;
  min-height: 33rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(circle at 20% 12%, rgba(145, 170, 171, 0.22), transparent 24%),
    radial-gradient(circle at 80% 18%, rgba(89, 104, 111, 0.24), transparent 20%),
    linear-gradient(180deg, #243136 0%, #334046 30%, #474640 62%, #2a2724 100%);
}

.visual-window::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px) 0 0 / 100% 15%,
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px) 0 0 / 11% 100%;
  opacity: 0.3;
}

.scene-road {
  position: absolute;
  inset: auto 22% -16% 22%;
  height: 74%;
  background: linear-gradient(180deg, rgba(225, 202, 161, 0.02), rgba(22, 19, 15, 0.65));
  clip-path: polygon(34% 0%, 66% 0%, 100% 100%, 0% 100%);
  filter: blur(0.2rem);
}

.scene-road::before {
  content: "";
  position: absolute;
  left: calc(50% - 1px);
  top: 18%;
  width: 2px;
  height: 56%;
  background: linear-gradient(180deg, rgba(255, 238, 192, 0), rgba(255, 238, 192, 0.55), rgba(255, 238, 192, 0));
}

.scene-tree {
  position: absolute;
  width: 32%;
  height: 68%;
  top: -6%;
  background:
    radial-gradient(circle at 54% 28%, rgba(53, 88, 66, 0.92) 0%, rgba(53, 88, 66, 0.88) 15%, rgba(53, 88, 66, 0) 58%),
    radial-gradient(circle at 42% 54%, rgba(41, 72, 51, 0.9) 0%, rgba(41, 72, 51, 0) 54%);
  filter: blur(0.2rem);
}

.scene-tree.left {
  left: -2%;
}

.scene-tree.right {
  right: -2%;
  transform: scaleX(-1);
}

.detector {
  position: absolute;
  padding: 0.35rem 0.55rem;
  border: 1px solid rgba(255, 242, 235, 0.65);
  background: rgba(193, 93, 65, 0.14);
  color: #fff6f0;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.detector.person {
  left: 58%;
  top: 54%;
  width: 9rem;
  height: 10rem;
}

.detector.vehicle {
  left: 44%;
  top: 58%;
  width: 15rem;
  height: 8rem;
}

.detector.package {
  left: 67%;
  top: 69%;
  width: 5rem;
  height: 4rem;
}

.signal-pill {
  position: absolute;
  padding: 0.45rem 0.65rem;
  background: rgba(8, 10, 11, 0.46);
  color: rgba(255, 249, 242, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.signal-pill.top-left {
  top: 1rem;
  left: 1rem;
}

.signal-pill.top-right {
  top: 1rem;
  right: 1rem;
}

.signal-pill.bottom-left {
  bottom: 1rem;
  left: 1rem;
}

.caption-bar {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.85rem;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.section {
  padding: 5rem 0;
  border-top: 0;
}

.story-band {
  --hero-frame: calc((100vw - min(var(--max-width), calc(100vw - (2 * var(--gutter))))) / 2);
  display: grid;
  grid-template-columns: minmax(0, 24rem) minmax(0, 1fr);
  column-gap: 0;
  align-items: stretch;
}

.story-copy {
  display: grid;
  align-content: center;
  gap: 1.1rem;
  grid-column: 1;
  justify-self: start;
  min-height: 18rem;
  max-width: 24rem;
}

.story-title {
  max-width: 22rem;
  margin: 0;
  font-family: var(--font-headline);
  font-size: clamp(3rem, 5.6vw, 4.75rem);
  line-height: 0.94;
  letter-spacing: -0.055em;
}

.story-body {
  max-width: 21rem;
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
}

.story-visual {
  display: grid;
  align-content: center;
  grid-column: 2;
  justify-self: center;
  min-height: 18rem;
  transform: translateX(calc(var(--hero-frame) / 2));
  width: min(100%, 20rem);
}

.story-band.is-reversed {
  grid-template-columns: minmax(0, 1fr) minmax(0, 24rem);
}

.story-band.is-reversed .story-copy {
  grid-column: 2;
  grid-row: 1;
  justify-self: end;
  justify-items: start;
  text-align: left;
}

.story-band.is-reversed .story-visual {
  grid-column: 1;
  grid-row: 1;
  justify-self: center;
  transform: translateX(calc(var(--hero-frame) / -2));
}

.privacy-visual,
.translation-visual,
.query-visual {
  position: relative;
  width: 100%;
  min-height: 15rem;
}

.privacy-boundary,
.privacy-field,
.privacy-core,
.privacy-node,
.translation-frame,
.translation-beam,
.translation-event,
.query-line,
.query-result {
  position: absolute;
}

.privacy-boundary {
  inset: 1.6rem 3rem;
  border: 1px solid var(--line);
  border-radius: 2.75rem;
}

.privacy-field {
  inset: 2.7rem 4.15rem;
  border-radius: 2.2rem;
  background:
    radial-gradient(circle at center, rgba(21, 19, 16, 0.08), transparent 62%),
    radial-gradient(circle at center, rgba(193, 93, 65, 0.1), transparent 72%);
  animation: privacyPulse 4.4s ease-in-out infinite;
}

.privacy-core {
  top: 50%;
  left: 50%;
  width: 3rem;
  height: 3rem;
  border: 1px solid rgba(21, 19, 16, 0.18);
  background: rgba(21, 19, 16, 0.06);
  transform: translate(-50%, -50%) rotate(8deg);
}

.privacy-node {
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 999px;
  background: rgba(21, 19, 16, 0.22);
}

.privacy-node.one {
  top: 3.95rem;
  left: 6.3rem;
  animation: privacyDriftOne 4.2s ease-in-out infinite;
}

.privacy-node.two {
  right: 6.5rem;
  top: 5.1rem;
  animation: privacyDriftTwo 4.8s ease-in-out infinite;
}

.privacy-node.three {
  bottom: 3.9rem;
  left: 8.3rem;
  animation: privacyDriftThree 4.6s ease-in-out infinite;
}

.translation-frame {
  left: 1rem;
  width: 4rem;
  border: 1px solid rgba(21, 19, 16, 0.12);
  background: rgba(255, 255, 255, 0.22);
}

.translation-frame.one {
  top: 3rem;
  height: 5.2rem;
}

.translation-frame.two {
  top: 4.2rem;
  left: 2rem;
  height: 5.2rem;
}

.translation-frame.three {
  top: 5.4rem;
  left: 3rem;
  height: 5.2rem;
}

.translation-beam {
  top: 50%;
  left: 7.3rem;
  width: 7rem;
  height: 1px;
  background: rgba(21, 19, 16, 0.14);
  overflow: hidden;
}

.translation-beam::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 -20%;
  width: 42%;
  background: linear-gradient(90deg, transparent, rgba(21, 19, 16, 0.4), transparent);
  animation: beamFlow 3.6s ease-in-out infinite;
}

.translation-event {
  right: 1rem;
  height: 0.7rem;
  border-radius: 999px;
  background: rgba(21, 19, 16, 0.14);
}

.translation-event.one {
  top: 3.7rem;
  width: 4.6rem;
  animation: eventPulse 3.6s ease-in-out infinite;
}

.translation-event.two {
  top: 5.6rem;
  width: 6.2rem;
  animation: eventPulse 3.6s ease-in-out 0.2s infinite;
}

.translation-event.three {
  top: 7.5rem;
  width: 5.2rem;
  animation: eventPulse 3.6s ease-in-out 0.4s infinite;
}

.query-line {
  inset: 3.4rem 0 auto;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(21, 19, 16, 0.12);
  text-align: left;
}

.query-phrase {
  display: inline-block;
  max-width: 16rem;
  font-size: 0.9rem;
  line-height: 1.4;
  color: var(--ink);
}

.query-results {
  position: absolute;
  inset: auto 0 1.45rem;
  min-height: 5.85rem;
}

.query-loading,
.query-answer {
  position: absolute;
  inset: 0;
}

.query-loading {
  display: grid;
  align-content: start;
  gap: 0.9rem;
  animation: queryLoadingLoop 5.8s ease-in-out infinite;
}

.query-answer {
  display: grid;
  align-content: start;
  gap: 0.55rem;
  opacity: 0;
  transform: translateY(0.55rem);
  animation: queryAnswerLoop 5.8s ease-in-out infinite;
}

.query-answer-kicker,
.query-answer-title,
.query-answer-body {
  margin: 0;
}

.query-answer-kicker {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(21, 19, 16, 0.42);
}

.query-answer-title {
  font-size: 0.94rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--ink);
}

.query-answer-body {
  max-width: 14.6rem;
  font-size: 0.84rem;
  line-height: 1.45;
  color: var(--muted);
}

.query-result {
  position: relative;
  height: 0.74rem;
  border-radius: 999px;
  background: rgba(21, 19, 16, 0.1);
  overflow: hidden;
}

.query-result::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 -35%;
  width: 35%;
  background: linear-gradient(90deg, transparent, rgba(21, 19, 16, 0.28), transparent);
  animation: searchSweep 3.8s ease-in-out infinite;
}

.query-result.one {
  width: 14rem;
}

.query-result.two {
  width: 11.5rem;
}

.query-result.two::after {
  animation-delay: 0.18s;
}

.query-result.three {
  width: 13rem;
}

.query-result.three::after {
  animation-delay: 0.36s;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 2.4rem;
  align-items: end;
  margin-bottom: 3rem;
}

.eyebrow-rule {
  display: flex;
  align-items: center;
  gap: 0;
}

.eyebrow-rule::before {
  display: none;
}

.section-title {
  margin: 0;
  font-size: clamp(1.9rem, 3.2vw, 3rem);
  line-height: 1;
  letter-spacing: -0.035em;
}

.section-title.serif {
  font-family: var(--font-headline);
  font-weight: 700;
}

.section-copy {
  max-width: 42rem;
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.process-grid,
.feature-grid,
.use-case-grid,
.principles-grid,
.pricing-grid,
.spec-grid,
.benefit-grid,
.quotes-grid,
.panel-grid {
  display: grid;
  gap: 1.85rem;
}

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

.feature-grid,
.panel-grid,
.pricing-grid,
.spec-grid,
.use-case-grid,
.principles-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.process-card,
.panel,
.use-case-card,
.quote-card,
.feature-card {
  display: grid;
  gap: 1rem;
}

.figure-topline {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--line);
}

.figure-visual {
  position: relative;
  min-height: 17rem;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.36), rgba(255, 255, 255, 0.08));
}

.figure-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(193, 93, 65, 0.26) 1px, transparent 1px) 0 0 / 10px 10px;
  opacity: 0.14;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.85), transparent 90%);
}

.connect-hub,
.connect-node,
.insight-bar,
.slab,
.graph-node {
  position: absolute;
  background:
    linear-gradient(180deg, rgba(193, 93, 65, 0.92) 0%, rgba(193, 93, 65, 0.3) 100%),
    radial-gradient(circle, rgba(255, 255, 255, 0.3) 1px, transparent 1px) 0 0 / 9px 9px;
  border: 1px solid rgba(159, 65, 40, 0.45);
}

.connect-hub {
  width: 8.25rem;
  height: 8.25rem;
  top: 46%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(9deg);
}

.connect-node {
  width: 3.5rem;
  height: 3.5rem;
}

.connect-node.one {
  top: 32%;
  left: 10%;
}

.connect-node.two {
  top: 58%;
  left: 18%;
}

.connect-node.three {
  top: 18%;
  right: 16%;
}

.connect-node.four {
  bottom: 10%;
  right: 8%;
}

.connect-node.five {
  bottom: 5%;
  left: 42%;
}

.connect-line {
  position: absolute;
  border-top: 1px dashed rgba(21, 19, 16, 0.28);
  transform-origin: left center;
}

.connect-line.one {
  width: 9rem;
  left: 22%;
  top: 48%;
  transform: rotate(10deg);
}

.connect-line.two {
  width: 8rem;
  left: 31%;
  top: 60%;
  transform: rotate(-28deg);
}

.connect-line.three {
  width: 10rem;
  left: 56%;
  top: 31%;
  transform: rotate(-54deg);
}

.connect-line.four {
  width: 10rem;
  left: 57%;
  top: 54%;
  transform: rotate(15deg);
}

.slab {
  width: 9rem;
  height: 12rem;
  left: 50%;
  top: 50%;
  transform-origin: center;
}

.slab.one {
  transform: translate(-50%, -50%) rotate(-18deg) skewY(8deg);
}

.slab.two {
  transform: translate(-44%, -46%) rotate(-10deg) skewY(5deg);
}

.slab.three {
  transform: translate(-38%, -42%) rotate(-2deg) skewY(2deg);
}

.insight-bar {
  width: 4.7rem;
  bottom: 16%;
}

.insight-bar.one {
  height: 9rem;
  left: 14%;
}

.insight-bar.two {
  height: 13rem;
  left: 40%;
}

.insight-bar.three {
  height: 8rem;
  left: 66%;
}

.process-card h3,
.feature-card h3,
.use-case-card h3,
.panel h3,
.quote-card h3 {
  margin: 0;
  font-size: 1.22rem;
  line-height: 1.16;
}

.process-card p,
.feature-card p,
.use-case-card p,
.panel p,
.quote-card p,
.small-copy {
  margin: 0;
  color: var(--muted);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 2.4rem;
  align-items: start;
}

.terminal-panel,
.panel,
.quote-card,
.timeline-panel,
.contact-card,
.pricing-card,
.spec-card {
  padding: 1.6rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.26);
}

.terminal-panel {
  background:
    radial-gradient(circle at top right, rgba(193, 93, 65, 0.12), transparent 28%),
    linear-gradient(180deg, #111111 0%, #171616 100%);
  color: rgba(251, 247, 241, 0.92);
  border-color: rgba(255, 255, 255, 0.12);
}

.terminal-meta,
.terminal-result-meta {
  color: rgba(255, 247, 238, 0.5);
}

.query-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin: 1rem 0 1.25rem;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
}

.query-text {
  font-size: 1rem;
}

.query-tag {
  padding: 0.3rem 0.5rem;
  background: rgba(193, 93, 65, 0.14);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.result-stack,
.timeline-list,
.check-list,
.spec-list,
.footer-links,
.sales-list {
  display: grid;
  gap: 0.85rem;
}

.result-card,
.timeline-item,
.sales-item,
.quote-line,
.list-row,
.inventory-row {
  display: grid;
  gap: 0.4rem;
}

.result-card {
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
}

.result-title {
  font-size: 0.98rem;
  font-weight: 600;
}

.benefit-card,
.principle-card {
  padding: 1.45rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.2);
}

.benefit-card strong,
.principle-card strong {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 1.05rem;
}

.cta-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: center;
  padding: 2.2rem 0;
  border: 0;
  background: transparent;
}

.cta-band h2 {
  margin: 0 0 0.4rem;
  font-size: clamp(1.7rem, 2.6vw, 2.4rem);
  line-height: 1.02;
}

.cta-band p {
  margin: 0;
  max-width: 38rem;
  color: var(--muted);
}

.panel h3,
.pricing-card h3,
.spec-card h3,
.contact-card h3 {
  margin: 0 0 0.6rem;
}

.panel .panel-label,
.pricing-card .panel-label,
.spec-card .panel-label,
.contact-card .panel-label {
  display: block;
  margin-bottom: 0.8rem;
}

.feature-list,
.check-list,
.spec-list,
.footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-list li,
.check-list li,
.spec-list li,
.footer-links a {
  padding-top: 0.8rem;
  border-top: 1px solid var(--line-soft);
  color: var(--muted);
}

.graph-layout,
.timeline-layout,
.contact-layout,
.dealers-layout,
.about-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
}

.graph-visual {
  position: relative;
  min-height: 25rem;
  overflow: hidden;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.52), rgba(255, 255, 255, 0.16));
}

.graph-node {
  padding: 0.85rem 1rem;
  width: 9rem;
  height: auto;
  color: var(--ink);
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background:
    linear-gradient(180deg, rgba(193, 93, 65, 0.18), rgba(193, 93, 65, 0.04)),
    #fff8f3;
}

.graph-node.one {
  top: 16%;
  left: 16%;
}

.graph-node.two {
  top: 18%;
  right: 16%;
}

.graph-node.three {
  bottom: 18%;
  left: 20%;
}

.graph-node.four {
  bottom: 14%;
  right: 18%;
}

.graph-core {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12rem;
  height: 12rem;
  transform: translate(-50%, -50%) rotate(8deg);
  border: 1px solid rgba(159, 65, 40, 0.4);
  background:
    linear-gradient(180deg, rgba(193, 93, 65, 0.32), rgba(193, 93, 65, 0.06)),
    rgba(255, 255, 255, 0.72);
}

.graph-core::before {
  content: "Event Graph";
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  font-size: 1rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.graph-link {
  position: absolute;
  border-top: 1px dashed rgba(21, 19, 16, 0.3);
  transform-origin: left center;
}

.graph-link.one {
  width: 9.5rem;
  top: 33%;
  left: 30%;
  transform: rotate(16deg);
}

.graph-link.two {
  width: 9rem;
  top: 33%;
  left: 54%;
  transform: rotate(-20deg);
}

.graph-link.three {
  width: 9rem;
  top: 63%;
  left: 32%;
  transform: rotate(-16deg);
}

.graph-link.four {
  width: 8.6rem;
  top: 62%;
  left: 54%;
  transform: rotate(20deg);
}

.timeline-list {
  margin-top: 1rem;
}

.timeline-item {
  padding-bottom: 0.9rem;
  border-bottom: 1px solid var(--line-soft);
}

.timeline-time {
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.summary-block {
  padding: 1.2rem;
  border: 1px solid var(--line);
  background: rgba(193, 93, 65, 0.05);
}

.summary-block p {
  margin: 0;
  color: var(--ink);
}

.flow-list {
  display: grid;
  gap: 1rem;
}

.flow-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding: 1rem 0;
  border-top: 1px solid var(--line-soft);
}

.flow-step:first-child {
  border-top: 0;
  padding-top: 0;
}

.flow-number {
  font-family: var(--font-headline);
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1;
}

.pricing-table {
  display: grid;
  border: 1px solid var(--line);
}

.pricing-row,
.inventory-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr auto;
  gap: 1rem;
  padding: 1rem 1.2rem;
  border-top: 1px solid var(--line-soft);
  align-items: center;
}

.pricing-row:first-child,
.inventory-row:first-child {
  border-top: 0;
}

.pricing-row strong,
.inventory-row strong {
  font-size: 1rem;
}

.inventory {
  border-top: 1px solid var(--line);
  margin-top: 1.5rem;
}

.inventory-title {
  margin: 1.1rem 0 0.9rem;
}

.spec-card {
  display: grid;
  gap: 0.65rem;
}

.spec-card p {
  margin: 0;
  color: var(--muted);
}

.principle-card p {
  margin: 0;
  color: var(--muted);
}

.quote-card {
  gap: 0.85rem;
}

.quote-line {
  padding-top: 0.8rem;
  border-top: 1px solid var(--line-soft);
}

.quote-line:first-of-type {
  padding-top: 0;
  border-top: 0;
}

.contact-layout {
  align-items: start;
}

.contact-card p,
.contact-card li {
  color: var(--muted);
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.form-field {
  display: grid;
  gap: 0;
}

.form-field.full {
  grid-column: 1 / -1;
}

.form-field > .field-label,
.form-field label {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.58);
  color: var(--ink);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: 2px solid rgba(193, 93, 65, 0.3);
  outline-offset: 0;
  border-color: rgba(159, 65, 40, 0.42);
}

.form-field textarea {
  min-height: 11rem;
  resize: vertical;
}

.site-footer {
  padding: 2rem 0 4rem;
  border-top: 1px solid var(--line-soft);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.7fr 0.9fr;
  gap: 2rem;
}

.footer-grid p {
  margin: 0.65rem 0 0;
  color: var(--muted);
}

.footer-links a {
  display: block;
}

.page-intro {
  padding-bottom: 1rem;
}

.product-poster,
.demo-shell {
  --hero-frame: calc((100vw - min(var(--max-width), calc(100vw - (2 * var(--gutter))))) / 2);
  display: grid;
  grid-template-columns: minmax(0, 24rem) minmax(0, 1fr);
  column-gap: 0;
  align-items: center;
  padding-top: 2.1rem;
}

.product-poster-copy,
.demo-copy {
  display: grid;
  gap: 1.1rem;
  grid-column: 1;
  max-width: 24rem;
}

.product-poster-title {
  max-width: 22rem;
  margin: 0;
  font-family: var(--font-headline);
  font-size: clamp(3rem, 5.6vw, 4.75rem);
  line-height: 0.94;
  letter-spacing: -0.055em;
}

.product-poster-body {
  max-width: 23rem;
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
}

.product-poster-visual,
.demo-form-shell {
  grid-column: 2;
  justify-self: center;
  width: min(100%, 22rem);
}

.product-poster-visual {
  transform: translateX(calc(var(--hero-frame) / 2));
}

.record-sheet {
  display: grid;
  gap: 0;
  padding: 0.1rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.record-sheet-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0 0 0.9rem;
  color: var(--muted);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.record-line {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: baseline;
  padding: 0.92rem 0;
  border-top: 1px solid var(--line-soft);
  opacity: 0.54;
}

.record-line span {
  color: var(--muted);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.record-line strong {
  font-size: 1rem;
  line-height: 1.2;
}

.record-line.is-active {
  opacity: 1;
  animation: recordPulse 4.6s ease-in-out infinite;
}

.record-summary {
  margin: 0;
  padding: 1rem 0 0;
  border-top: 1px solid var(--line-soft);
  color: var(--muted);
}

.product-ledger-head {
  display: grid;
  gap: 0.9rem;
  max-width: 38rem;
}

.product-section-title {
  max-width: 23rem;
  margin: 0;
  font-family: var(--font-headline);
  font-size: clamp(2.35rem, 4.4vw, 3.9rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.product-section-body {
  max-width: 32rem;
  margin: 0;
  color: var(--muted);
}

.proof-band {
  --hero-frame: calc((100vw - min(var(--max-width), calc(100vw - (2 * var(--gutter))))) / 2);
  display: grid;
  grid-template-columns: minmax(0, 26rem) minmax(0, 1fr);
  column-gap: 0;
  align-items: center;
}

.proof-copy {
  display: grid;
  gap: 1rem;
  grid-column: 1;
  max-width: 26rem;
}

.proof-title {
  max-width: 21rem;
  margin: 0;
  font-family: var(--font-headline);
  font-size: clamp(2.25rem, 4vw, 3.55rem);
  line-height: 0.96;
  letter-spacing: -0.048em;
}

.proof-body {
  max-width: 22rem;
  margin: 0;
  color: var(--muted);
}

.proof-points {
  display: grid;
  gap: 0;
}

.proof-row {
  display: grid;
  gap: 0.25rem;
  padding: 0.92rem 0 0;
  border-top: 1px solid var(--line-soft);
}

.proof-row strong {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.proof-row span {
  color: var(--muted);
}

.proof-excerpt {
  max-width: 22rem;
  margin: 0.1rem 0 0;
  padding-top: 0.95rem;
  border-top: 1px solid var(--line-soft);
  color: var(--ink);
}

.proof-visual {
  grid-column: 2;
  justify-self: center;
  transform: translateX(calc(var(--hero-frame) / 2));
  width: min(100%, 34rem);
}

.proof-band.is-reversed {
  grid-template-columns: minmax(0, 1fr) minmax(0, 26rem);
}

.proof-band.is-reversed .proof-copy {
  grid-column: 2;
  grid-row: 1;
  justify-self: end;
}

.proof-band.is-reversed .proof-visual {
  grid-column: 1;
  grid-row: 1;
  transform: translateX(calc(var(--hero-frame) / -2));
}

.example-carousel {
  width: 100%;
}

.example-carousel-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 100%;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: #fff;
  box-shadow: var(--shadow);
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.example-carousel-track::-webkit-scrollbar {
  display: none;
}

.example-slide {
  margin: 0;
  scroll-snap-align: start;
}

.example-slide img {
  display: block;
  width: 100%;
  height: auto;
}

.example-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.8rem;
}

.example-dot {
  width: 0.45rem;
  height: 0.45rem;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(21, 19, 16, 0.22);
  cursor: pointer;
  transition: transform 180ms ease, background-color 180ms ease, opacity 180ms ease;
}

.example-dot:hover,
.example-dot:focus-visible {
  background: rgba(21, 19, 16, 0.45);
  outline: none;
}

.example-dot.is-active {
  background: var(--ink);
  transform: scale(1.3);
}

.evidence-band {
  display: grid;
  gap: 2rem;
}

.output-list {
  display: grid;
  border-top: 1px solid var(--line);
}

.output-row {
  display: grid;
  grid-template-columns: minmax(0, 11rem) minmax(0, 1fr);
  gap: 1.6rem;
  padding: 1.05rem 0;
  border-bottom: 1px solid var(--line-soft);
  align-items: start;
}

.output-row strong {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.output-row p {
  max-width: 34rem;
  margin: 0;
  color: var(--muted);
}

.integration-map {
  display: grid;
  gap: 0.85rem;
  align-content: center;
  width: min(100%, 22rem);
}

.integration-node {
  padding: 1rem 1.1rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.34);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: center;
}

.integration-node.is-core {
  background: var(--panel-strong);
  box-shadow: var(--shadow);
  animation: integrationPulse 4.8s ease-in-out infinite;
}

.integration-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  color: var(--muted);
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.integration-link::before,
.integration-link::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}

.demo-shell {
  position: relative;
  isolation: isolate;
  align-items: start;
}

.demo-copy {
  gap: 1.25rem;
}

.demo-brief {
  display: grid;
  gap: 0;
  margin-top: 0.1rem;
}

.demo-brief-row {
  display: grid;
  gap: 0.25rem;
  padding-top: 0.92rem;
  border-top: 1px solid var(--line-soft);
}

.demo-brief-row strong {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.demo-brief-row p {
  margin: 0;
  color: var(--muted);
}

.demo-form-shell {
  position: relative;
  z-index: 2;
  margin-top: calc(2.2rem + 100px);
  margin-left: calc(var(--hero-frame) / 2);
  width: min(100%, 31rem);
}

.demo-form {
  padding-top: 0;
}

.demo-form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.demo-form .form-field {
  cursor: text;
  gap: 0;
}

.demo-form .form-field > .field-label,
.demo-form .form-field label {
  display: block;
  padding-top: 0.55rem;
  font-size: 0.68rem;
}

.demo-form .form-field input,
.demo-form .form-field select,
.demo-form .form-field textarea {
  padding: 0.25rem 0 0.8rem;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
}

.demo-form .form-field select {
  cursor: default;
}

.demo-form .form-field input:focus,
.demo-form .form-field select:focus,
.demo-form .form-field textarea:focus {
  outline: 0;
  border-color: rgba(159, 65, 40, 0.55);
}

.demo-form .form-field textarea {
  min-height: 7.2rem;
}

.demo-form-note {
  max-width: 24rem;
  margin: 0;
  color: var(--muted);
}

.demo-form-status {
  min-height: 1.4rem;
  margin: 0;
  color: var(--muted);
}

.demo-form-status.is-success {
  color: rgba(52, 85, 61, 0.95);
}

.demo-form-status.is-error {
  color: rgba(159, 65, 40, 0.95);
}

.demo-support {
  display: grid;
  border-top: 1px solid var(--line);
}

.demo-support-row {
  display: grid;
  grid-template-columns: minmax(0, 14rem) minmax(0, 1fr);
  gap: 2rem;
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--line-soft);
  align-items: start;
}

.demo-support-row strong {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.demo-support-row p {
  max-width: 33rem;
  margin: 0;
  color: var(--muted);
}

.page-intro .display {
  margin-top: 1rem;
  margin-bottom: 0.7rem;
  font-size: clamp(2.3rem, 4.8vw, 4.2rem);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.72fr);
  gap: 2.4rem;
  align-items: end;
  padding: 1.2rem 0 0;
  border-top: 1px solid var(--line);
}

.intro-note {
  justify-self: end;
  max-width: 20rem;
  padding-left: 1rem;
  border-left: 1px solid var(--line);
  color: var(--muted);
}

.hero-summary-card {
  display: grid;
  gap: 0.75rem;
  padding: 1.45rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.24);
}

.hero-summary-card h3 {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.1;
}

.hero-summary-card p {
  margin: 0;
  color: var(--muted);
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1rem;
}

.badge {
  padding: 0.42rem 0.7rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.24);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-board {
  display: grid;
  gap: 1.4rem;
  margin-top: 1.4rem;
  padding: 1.35rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.18);
}

.hero-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}

.hero-flow-item {
  display: grid;
  gap: 0.45rem;
  align-content: start;
  padding-right: 1rem;
  border-right: 1px solid var(--line-soft);
}

.hero-flow-item:last-child {
  border-right: 0;
  padding-right: 0;
}

.hero-flow-label,
.hero-event-time {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero-flow-item strong {
  font-size: 1.02rem;
  line-height: 1.2;
}

.hero-flow-item p,
.hero-note,
.hero-event-copy {
  margin: 0;
  color: var(--muted);
}

.hero-mini-panel {
  display: grid;
  gap: 0.7rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line-soft);
}

.hero-event-list {
  display: grid;
}

.hero-event-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding: 0.8rem 0;
  border-top: 1px solid var(--line-soft);
}

.hero-event-row:first-child {
  border-top: 0;
  padding-top: 0.2rem;
}

.statement-list {
  display: grid;
  gap: 0.9rem;
  max-width: 34rem;
  margin-top: 0.4rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
}

.statement {
  display: grid;
  grid-template-columns: 10rem 1fr;
  gap: 1rem;
  align-items: start;
}

.statement p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.35;
}

.hero-note {
  max-width: 32rem;
  margin: 0;
  padding-top: 1rem;
  border-top: 1px solid var(--line-soft);
  font-family: var(--font-headline);
  font-size: 1rem;
  font-style: normal;
  font-weight: 600;
}

@keyframes privacyPulse {
  0%,
  100% {
    transform: scale(0.96);
    opacity: 0.72;
  }

  50% {
    transform: scale(1.03);
    opacity: 1;
  }
}

@keyframes recordPulse {
  0%,
  100% {
    transform: translateX(0);
    opacity: 1;
  }

  50% {
    transform: translateX(0.18rem);
    opacity: 0.82;
  }
}

@keyframes proofFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-0.4rem);
  }
}

@keyframes integrationPulse {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.015);
  }
}

@keyframes privacyDriftOne {
  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(0.3rem, -0.25rem);
  }
}

@keyframes privacyDriftTwo {
  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(-0.35rem, 0.2rem);
  }
}

@keyframes privacyDriftThree {
  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(0.2rem, 0.28rem);
  }
}

@keyframes beamFlow {
  0% {
    transform: translateX(0);
    opacity: 0;
  }

  20%,
  70% {
    opacity: 1;
  }

  100% {
    transform: translateX(290%);
    opacity: 0;
  }
}

@keyframes eventPulse {
  0%,
  100% {
    background: rgba(21, 19, 16, 0.14);
  }

  45%,
  65% {
    background: rgba(21, 19, 16, 0.32);
  }
}

@keyframes queryLoadingLoop {
  0%,
  42% {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }

  52%,
  88% {
    opacity: 0;
    filter: blur(0.28rem);
    transform: translateY(-0.35rem);
  }

  100% {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}

@keyframes queryAnswerLoop {
  0%,
  42% {
    opacity: 0;
    filter: blur(0.42rem);
    transform: translateY(0.55rem);
  }

  54%,
  84% {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    filter: blur(0.28rem);
    transform: translateY(-0.2rem);
  }
}

@keyframes searchSweep {
  0% {
    transform: translateX(0);
    opacity: 0;
  }

  20%,
  70% {
    opacity: 1;
  }

  100% {
    transform: translateX(420%);
    opacity: 0;
  }
}

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

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.split-hero,
.section,
.page-intro,
.contact-layout,
.process-card,
.panel,
.use-case-card,
.pricing-card,
.spec-card,
.principle-card {
  animation: rise 700ms ease both;
}

.process-card:nth-child(2),
.panel:nth-child(2),
.use-case-card:nth-child(2),
.pricing-card:nth-child(2),
.spec-card:nth-child(2) {
  animation-delay: 90ms;
}

.process-card:nth-child(3),
.panel:nth-child(3),
.use-case-card:nth-child(3),
.pricing-card:nth-child(3),
.spec-card:nth-child(3) {
  animation-delay: 180ms;
}

@media (max-width: 1180px) {
  .header-inner,
  .product-poster,
  .proof-band,
  .demo-shell,
  .story-band,
  .split-hero,
  .section-head,
  .split-section,
  .graph-layout,
  .timeline-layout,
  .contact-layout,
  .dealers-layout,
  .about-layout,
  .intro-grid,
  .cta-band,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .site-nav {
    justify-content: flex-start;
  }

  .landing-title {
    max-width: 22rem;
  }

  .hero-visual {
    order: 2;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding-right: 0;
  }

  .hero-copy {
    order: 1;
  }

  .process-grid,
  .benefit-grid,
  .quotes-grid,
  .feature-grid,
  .panel-grid,
  .pricing-grid,
  .spec-grid,
  .use-case-grid,
  .principles-grid,
  .metric-grid,
  .stats-grid,
  .hero-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .intro-note {
    justify-self: start;
  }

  .statement {
    grid-template-columns: 1fr;
    gap: 0.3rem;
  }

  .story-band {
    gap: 2rem;
  }

  .product-poster-visual,
  .proof-visual,
  .demo-form-shell {
    grid-column: auto;
    justify-self: start;
    transform: none;
  }

  .proof-band.is-reversed .proof-copy,
  .proof-band.is-reversed .proof-visual {
    grid-column: auto;
    grid-row: auto;
  }

  .proof-band.is-reversed .proof-copy {
    justify-self: start;
  }

  .demo-support-row {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .story-copy,
  .story-visual,
  .story-band.is-reversed .story-copy,
  .story-band.is-reversed .story-visual {
    grid-column: auto;
    min-height: 0;
  }

  .story-band.is-reversed .story-copy {
    justify-self: start;
    justify-items: start;
    text-align: left;
    transform: none;
  }

  .story-visual {
    justify-self: start;
    transform: none;
  }
}

@media (max-width: 760px) {
  .page-hero,
  .section {
    padding: 3rem 0;
  }

  .landing-hero {
    display: block;
  }

  .product-poster,
  .demo-shell {
    display: block;
  }

  .landing-copy,
  .intelligence-stage {
    grid-column: auto;
    grid-row: auto;
  }

  .story-copy,
  .story-visual,
  .story-band.is-reversed .story-copy,
  .story-band.is-reversed .story-visual {
    grid-column: auto;
  }

  .story-copy {
    gap: 0.8rem;
  }

  .story-title {
    max-width: 18rem;
    font-size: clamp(2.35rem, 12vw, 3.8rem);
  }

  .story-body {
    max-width: 19rem;
    font-size: 0.98rem;
  }

  .landing-title {
    max-width: 20rem;
    font-size: clamp(2.35rem, 12vw, 3.8rem);
  }

  .product-poster-title {
    max-width: 18rem;
    font-size: clamp(2.35rem, 12vw, 3.8rem);
  }

  .product-poster-body {
    max-width: 20rem;
    font-size: 0.98rem;
  }

  .landing-subtitle {
    max-width: 20rem;
    font-size: 0.98rem;
  }

  .intelligence-stage {
    margin-top: 2.2rem;
    justify-items: start;
    transform: none;
  }

  .scrub-ruler {
    justify-content: flex-start;
  }

  .scrub-window {
    width: min(100%, 7.6rem);
  }

  .scrub-info {
    min-height: 5rem;
    max-width: 16rem;
    margin-top: 1.35rem;
    text-align: center;
  }

  .story-visual {
    width: min(100%, 17rem);
    justify-self: start;
  }

  .product-poster-visual,
  .proof-visual,
  .demo-form-shell {
    width: min(100%, 18rem);
    margin-top: 2rem;
  }

  .proof-title,
  .product-section-title {
    max-width: 18rem;
    font-size: clamp(2.05rem, 10.6vw, 3.15rem);
  }

  .proof-body,
  .proof-excerpt,
  .product-section-body {
    max-width: 19rem;
    font-size: 0.98rem;
  }

  .example-dots {
    gap: 0.45rem;
    margin-top: 0.7rem;
  }

  .example-dot {
    width: 0.42rem;
    height: 0.42rem;
  }

  .record-line,
  .output-row {
    grid-template-columns: 1fr;
    gap: 0.3rem;
  }

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

  .demo-form-note {
    max-width: none;
  }

  .privacy-visual,
  .translation-visual,
  .query-visual {
    min-height: 12.5rem;
  }

  .privacy-boundary {
    inset: 1.2rem 2.2rem;
  }

  .privacy-field {
    inset: 2.2rem 3.2rem;
  }

  .privacy-node.one {
    left: 4.8rem;
  }

  .privacy-node.two {
    right: 5rem;
  }

  .privacy-node.three {
    left: 6.6rem;
    bottom: 3.1rem;
  }

  .translation-frame {
    width: 3.3rem;
  }

  .translation-beam {
    left: 5.9rem;
    width: 5.6rem;
  }

  .translation-event {
    right: 0;
  }

  .query-line {
    inset: 2.8rem 0 auto;
  }

  .query-phrase {
    max-width: 14rem;
    font-size: 0.84rem;
  }

  .query-results {
    bottom: 1.2rem;
    min-height: 5.1rem;
  }

  .query-result.one {
    width: 12.4rem;
  }

  .query-result.two {
    width: 10.2rem;
  }

  .query-result.three {
    width: 11.2rem;
  }

  .query-answer-body {
    max-width: 12.8rem;
    font-size: 0.8rem;
  }

  .scrub-copy {
    max-width: 100%;
  }

  .display {
    font-size: clamp(2.7rem, 15vw, 4.6rem);
  }

  .process-grid,
  .benefit-grid,
  .quotes-grid,
  .feature-grid,
  .panel-grid,
  .pricing-grid,
  .spec-grid,
  .use-case-grid,
  .principles-grid,
  .metric-grid,
  .stats-grid,
  .form-grid,
  .hero-flow {
    grid-template-columns: 1fr;
  }

  .figure-visual,
  .graph-visual,
  .visual-window {
    min-height: 17rem;
  }

  .pricing-row,
  .inventory-row {
    grid-template-columns: 1fr;
  }

  .cta-row {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .hero-board {
    padding: 1rem;
  }

  .hero-flow-item {
    padding-right: 0;
    padding-bottom: 0.8rem;
    border-right: 0;
    border-bottom: 1px solid var(--line-soft);
  }

  .hero-flow-item:last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }

  .hero-event-row {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .query-loading {
    display: none;
  }

  .query-answer {
    opacity: 1;
    filter: none;
    transform: none;
  }
}
