@font-face {
  font-display: swap;
  font-family: Geist;
  font-style: normal;
  font-weight: 400;
  src: url('/assets/Geist-Regular.woff2') format('woff2');
}

@font-face {
  font-display: swap;
  font-family: Geist;
  font-style: normal;
  font-weight: 600 800;
  src: url('/assets/Geist-SemiBold.woff2') format('woff2');
}

:root {
  --bg: #0e0e0a;
  --bg-2: #131310;
  --surface: #1b1b17;
  --surface-2: #24241f;
  --text: #f3f3f3;
  --soft: rgba(255, 255, 255, 0.66);
  --dim: rgba(255, 255, 255, 0.34);
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.16);
  --accent: #abedff;
  --accent-soft: rgba(171, 237, 255, 0.12);
  --warning: #d2a352;
  --bad: #c4715b;
  --ok: #7ba672;
  --max: 1344px;
  --gutter: clamp(20px, 4vw, 40px);
  --section: clamp(72px, 10vw, 128px);
  --blind-count: 22;
  /* Shared film-grain texture for hero, CTA, value-prop card media, etc.
     Single source of truth so the noise tweaks in one place. */
  --noise-svg: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");

  color-scheme: dark;
  font-family:
    Geist,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font:
    400 16px/1.55 Geist,
    ui-sans-serif,
    system-ui,
    sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

img,
svg {
  display: block;
}

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

.wrap--narrow {
  max-width: 760px;
}

.section {
  position: relative;
  padding: var(--section) 0;
}

.section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 18px;
  height: 1px;
  background: currentcolor;
  content: '';
  opacity: 0.48;
}

.section-title {
  max-width: 850px;
  margin: 0;
  color: var(--text);
  font-size: 58px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.05;
}

.section-body {
  max-width: 720px;
  margin: 24px 0 0;
  color: var(--soft);
  font-size: 19px;
  line-height: 1.7;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 999px;
  padding: 0 24px;
  border: 1px solid transparent;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  transition:
    transform 170ms ease,
    opacity 170ms ease,
    border-color 170ms ease,
    background 170ms ease;
}

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

.button--primary {
  background: #ffffff;
  color: #0e0e0a;
}

.button--primary:hover {
  opacity: 0.88;
}

.button--secondary {
  border-color: var(--line-strong);
  color: var(--text);
}

.button--secondary:hover {
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.06);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 650ms cubic-bezier(0.22, 0.68, 0, 1),
    transform 650ms cubic-bezier(0.22, 0.68, 0, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.nav {
  position: fixed;
  z-index: 100;
  top: 18px;
  left: 50%;
  display: grid;
  grid-template-columns: auto auto auto;
  align-items: center;
  gap: 6px;
  width: min(calc(100% - 28px), 840px);
  padding: 6px 6px 6px 18px;
  transform: translateX(-50%);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 999px;
  background: rgba(14, 14, 10, 0.82);
  box-shadow: 0 4px 28px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(22px) saturate(160%);
}

.nav__brand {
  display: flex;
  align-items: center;
}

.nav__brand img {
  width: 136px;
  filter: brightness(0) invert(1);
  opacity: 0.92;
}

.nav__links {
  display: flex;
  justify-content: center;
  gap: 2px;
  min-width: 0;
}

.nav__links a {
  border-radius: 999px;
  padding: 10px 12px;
  color: var(--soft);
  font-size: 13px;
  line-height: 1;
  white-space: nowrap;
}

.nav__links a:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

.nav__cta {
  justify-self: end;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 10px 16px;
  color: var(--text);
  font-size: 13px;
  line-height: 1;
  white-space: nowrap;
}

.hero {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  min-height: 84svh;
  overflow: hidden;
  padding: 108px var(--gutter) 76px;
  background: var(--bg);
}

.hero__glow,
.cta__glow {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(55% 75% at 105% -5%, rgba(111, 197, 211, 0.9) 0%, transparent 42%),
    radial-gradient(80% 100% at 110% -15%, rgba(171, 237, 255, 0.64) 0%, transparent 54%),
    linear-gradient(90deg, #060606 0%, #090a0c 55%, #101214 100%);
}

.hero__blinds,
.cta__blinds {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  pointer-events: none;
}

.blind {
  flex: 1 1 0;
  height: 100%;
  perspective: 4000px;
  transform-style: preserve-3d;
}

.blind__face {
  width: 100%;
  height: 100%;
  border-right: 1px solid rgba(255, 255, 255, 0.03);
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.94) 0%,
    rgba(6, 8, 10, 0.8) 38%,
    rgba(14, 14, 18, 0.44) 72%,
    rgba(255, 255, 255, 0.04) 96%,
    rgba(255, 255, 255, 0.1) 100%
  );
  transform-origin: left center;
  transition: transform 420ms cubic-bezier(0.22, 0.85, 0.25, 1);
  will-change: transform;
}

.hero::after,
.cta::after {
  position: absolute;
  inset: 0;
  z-index: 8;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 34%, var(--bg) 100%);
  content: '';
}

.hero__grain {
  position: absolute;
  inset: 0;
  z-index: 9;
  pointer-events: none;
  opacity: 0.028;
  mix-blend-mode: screen;
  background-image: var(--noise-svg);
}

.hero__inner {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  align-items: center;
  gap: clamp(36px, 6vw, 78px);
  width: min(100%, var(--max));
  margin: 0 auto;
}

.hero__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero__title {
  max-width: 760px;
  margin: 0;
  color: var(--text);
  font-size: 78px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 0.98;
}

.hero__title span {
  display: block;
  color: var(--accent);
}

.hero__body {
  max-width: 560px;
  margin: 26px 0 0;
  color: var(--soft);
  font-size: 19px;
  line-height: 1.66;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-top: 32px;
}

.hero__note {
  margin: 18px 0 0;
  color: var(--dim);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.4;
  text-transform: uppercase;
}

.product-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  background: #0b0b09;
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.74),
    0 0 0 1px rgba(255, 255, 255, 0.03);
}

.product-card__bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.055);
  background: #161614;
}

.product-card__bar span {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.product-card__bar span:first-child {
  background: var(--bad);
}

.product-card__bar span:nth-child(2) {
  background: var(--warning);
}

.product-card__bar span:nth-child(3) {
  background: var(--ok);
}

.product-card__bar strong {
  flex: 1;
  color: rgba(255, 255, 255, 0.38);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0;
  text-align: center;
}

.product-card__body {
  display: grid;
  grid-template-columns: 170px 1fr;
  min-height: 410px;
}

.product-card__rail {
  padding: 16px 0;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  background: #111110;
}

.product-card__rail p {
  margin: 0 14px 12px;
  color: rgba(255, 255, 255, 0.22);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
}

.product-card__rail b {
  display: block;
  padding: 9px 14px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 12px;
  font-weight: 500;
}

.product-card__rail .is-live {
  background: rgba(171, 237, 255, 0.06);
  color: rgba(171, 237, 255, 0.82);
}

.product-card__feed {
  display: flex;
  flex-direction: column;
  gap: 9px;
  padding: 16px;
  background: #0d0d0b;
}

.feed-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.055);
}

.feed-head span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 600;
}

.feed-head em {
  color: rgba(171, 237, 255, 0.54);
  font-size: 11px;
  font-style: normal;
}

.finding {
  border: 1px solid rgba(255, 255, 255, 0.055);
  border-left: 2px solid var(--warning);
  border-radius: 6px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.018);
}

.finding--hot {
  border-left-color: var(--bad);
}

.finding--muted {
  border-left-color: rgba(255, 255, 255, 0.18);
}

.finding small {
  color: rgba(171, 237, 255, 0.55);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
}

.finding p {
  margin: 6px 0;
  color: var(--text);
  font-size: 14px;
  line-height: 1.45;
}

.finding footer {
  color: rgba(255, 255, 255, 0.34);
  font-size: 11px;
  line-height: 1.4;
}

.problem {
  border-top: 1px solid var(--line);
}

.team {
  border-top: 1px solid var(--line);
}

.team__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  align-items: center;
  gap: clamp(40px, 8vw, 92px);
}

.team-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  max-width: 520px;
  margin-top: 32px;
}

.team-list span {
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 11px 12px;
  background: rgba(255, 255, 255, 0.018);
  color: var(--soft);
  font-size: 13px;
}

.constellation {
  position: relative;
}

.constellation svg {
  width: 100%;
  max-width: 540px;
  margin: 0 auto;
  overflow: visible;
}

.orbit {
  fill: none;
  stroke: rgba(171, 237, 255, 0.12);
  stroke-dasharray: 6 10;
}

.edges path {
  fill: none;
  stroke: rgba(171, 237, 255, 0.32);
  stroke-width: 1.5;
  stroke-dasharray: 210;
  stroke-dashoffset: 210;
  transition: stroke-dashoffset 950ms ease;
}

.constellation.is-visible .edges path {
  stroke-dashoffset: 0;
}

.edges path:nth-child(2) {
  transition-delay: 120ms;
}
.edges path:nth-child(3) {
  transition-delay: 240ms;
}
.edges path:nth-child(4) {
  transition-delay: 360ms;
}
.edges path:nth-child(5) {
  transition-delay: 480ms;
}
.edges path:nth-child(6) {
  transition-delay: 600ms;
}

.node {
  opacity: 0;
  transition: opacity 550ms ease;
}

.constellation.is-visible .node {
  opacity: 1;
}

.node circle {
  fill: rgba(171, 237, 255, 0.07);
  stroke: rgba(171, 237, 255, 0.45);
  stroke-width: 1.5;
}

.node--center circle {
  fill: rgba(171, 237, 255, 0.1);
  stroke: rgba(171, 237, 255, 0.7);
  stroke-width: 2;
}

.node text {
  fill: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 600;
  text-anchor: middle;
  dominant-baseline: middle;
}

.node--center text:first-of-type {
  fill: var(--accent);
  font-size: 12px;
}

.node--center text:last-of-type {
  fill: rgba(255, 255, 255, 0.46);
  font-size: 9px;
  letter-spacing: 0;
}

.capabilities {
  border-top: 1px solid var(--line);
  background: #0b0b08;
}

.capability-grid,
.defense-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.capability,
.defense-block {
  min-height: 230px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.032), rgba(255, 255, 255, 0.012));
}

.capability span {
  color: rgba(171, 237, 255, 0.54);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0;
}

.capability h3,
.defense-block h3 {
  margin: 44px 0 12px;
  color: var(--text);
  font-size: 20px;
  font-weight: 650;
  letter-spacing: 0;
  line-height: 1.15;
}

.capability p,
.defense-block p {
  margin: 0;
  color: var(--soft);
  font-size: 14px;
  line-height: 1.58;
}

.chat {
  background: var(--bg);
}

.chat__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(440px, 1.1fr);
  align-items: start;
  gap: clamp(40px, 7vw, 86px);
}

.chat-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 16px;
  background: #0d0d0b;
}

.message {
  max-width: 92%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--soft);
  font-size: 14px;
  line-height: 1.52;
}

.message--user {
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.036);
}

.message--tm {
  align-self: flex-end;
  border-color: rgba(171, 237, 255, 0.16);
  background: rgba(171, 237, 255, 0.064);
  color: var(--text);
}

.message span {
  display: block;
  margin-top: 9px;
  color: rgba(171, 237, 255, 0.55);
  font-size: 11px;
}

.message--alert {
  align-self: flex-end;
  border-color: rgba(196, 113, 91, 0.22);
  background: rgba(196, 113, 91, 0.09);
  color: rgba(244, 176, 158, 0.9);
}

.message--blocked {
  align-self: flex-end;
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.022);
  color: var(--soft);
  font-style: italic;
}

.defensible {
  overflow: hidden;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(42% 64% at 0% 20%, rgba(196, 113, 91, 0.14), transparent 58%), var(--bg);
}

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

.defense-block {
  min-height: 190px;
}

.defense-block h3 {
  margin-top: 0;
}

.value-prop {
  border-top: 1px solid var(--line);
  background: var(--bg);
}

.value-prop__stack {
  display: flex;
  flex-direction: column;
  gap: clamp(24px, 4vw, 44px);
}

.value-prop-card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(28px, 5vw, 64px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: clamp(28px, 4vw, 48px);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.028), rgba(255, 255, 255, 0.008));
}

.value-prop-card--reverse {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
}

.value-prop-card--reverse .value-prop-card__copy {
  order: 2;
}

.value-prop-card--reverse .value-prop-card__media {
  order: 1;
}

.value-prop-card__tag {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.value-prop-card h3 {
  margin: 0 0 16px;
  color: var(--text);
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.12;
}

.value-prop-card__body {
  margin: 0 0 22px;
  color: var(--soft);
  font-size: 16px;
  line-height: 1.62;
}

.value-prop-card__list {
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.value-prop-card__list li {
  position: relative;
  padding-left: 20px;
  color: var(--soft);
  font-size: 14px;
  line-height: 1.55;
}

.value-prop-card__list li::before {
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 8px;
  height: 1px;
  background: var(--accent);
  content: '';
  opacity: 0.78;
}

.value-prop-card__media {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid rgba(171, 237, 255, 0.12);
  border-radius: 12px;
  padding: clamp(20px, 3vw, 36px);
  background:
    radial-gradient(120% 80% at 50% 0%, rgba(171, 237, 255, 0.14), transparent 62%),
    linear-gradient(180deg, rgba(171, 237, 255, 0.04), rgba(14, 14, 10, 0.6));
}

.value-prop-card__media::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.04;
  mix-blend-mode: screen;
  background-image: var(--noise-svg);
  content: '';
}

.value-prop-card__media img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: auto;
  max-width: 520px;
}

.scope {
  border-top: 1px solid var(--line);
  background: var(--bg-2);
}

.scope-ladder {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.scope-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 220px;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 22px 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.028), rgba(255, 255, 255, 0.008));
}

.scope-card + .scope-card::before {
  position: absolute;
  top: 18%;
  bottom: 18%;
  left: -7px;
  width: 1px;
  background: var(--line-strong);
  content: '';
  opacity: 0.7;
}

.scope-card__step {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.scope-card h3 {
  margin: 0 0 12px;
  color: var(--text);
  font-size: 17px;
  font-weight: 650;
  letter-spacing: 0;
  line-height: 1.28;
}

.scope-card p {
  margin: 0;
  color: var(--soft);
  font-size: 14px;
  line-height: 1.55;
}

.scope-card--terminal {
  border-color: rgba(230, 99, 66, 0.4);
  background:
    radial-gradient(80% 110% at 100% 0%, rgba(255, 149, 123, 0.16), transparent 60%),
    linear-gradient(180deg, rgba(230, 99, 66, 0.08), rgba(230, 99, 66, 0.02));
}

.scope-card--terminal .scope-card__step {
  color: #ff957b;
}

/* The connector ::before is created by `.scope-card + .scope-card::before`
   on the SECOND card of each adjacent pair. The Trial step is the last
   card, so its incoming connector belongs to `terminal` itself; match
   the same shape (`X + Y::before`) so specificity ties and source order
   wins. */
.scope-card + .scope-card--terminal::before {
  background: linear-gradient(180deg, transparent, #ff957b, transparent);
  opacity: 0.7;
}

.cta {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 156px var(--gutter) 96px;
  text-align: center;
}

.cta__inner {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  max-width: 660px;
  margin: 0 auto;
}

.cta h2 {
  margin: 0;
  font-size: 66px;
  font-weight: 760;
  letter-spacing: 0;
  line-height: 1.02;
}

.cta p {
  margin: 0;
  color: var(--soft);
  font-size: 18px;
  line-height: 1.65;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(100% - (var(--gutter) * 2), var(--max));
  margin: 0 auto;
  padding: 26px 0 40px;
  border-top: 1px solid var(--line);
  color: var(--dim);
  font-size: 13px;
}

.footer img {
  width: 130px;
  filter: brightness(0) invert(1);
  opacity: 0.44;
}

.footer p {
  margin: 0;
}

.footer div {
  display: flex;
  gap: 16px;
}

.footer a:hover {
  color: var(--text);
}

@media (max-width: 1080px) {
  .hero__title {
    font-size: 60px;
  }

  .section-title {
    font-size: 46px;
  }

  .cta h2 {
    font-size: 52px;
  }

  .hero__inner,
  .team__grid,
  .chat__grid {
    grid-template-columns: 1fr;
  }

  .product-card {
    max-width: 720px;
  }

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

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

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

  .value-prop-card--reverse .value-prop-card__copy {
    order: 1;
  }

  .value-prop-card--reverse .value-prop-card__media {
    order: 2;
  }

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

  .scope-card + .scope-card::before {
    display: none;
  }
}

@media (max-width: 760px) {
  :root {
    --blind-count: 12;
  }

  .hero__title {
    font-size: 44px;
  }

  .hero__body,
  .section-body {
    font-size: 16px;
  }

  .section-title {
    font-size: 32px;
  }

  .cta h2 {
    font-size: 38px;
  }

  .nav {
    grid-template-columns: 1fr auto;
    width: min(calc(100% - 20px), 520px);
    padding-left: 14px;
  }

  .nav__links {
    display: none;
  }

  .nav__brand img {
    width: 128px;
  }

  .hero {
    min-height: auto;
    padding-top: 124px;
  }

  .product-card__body {
    grid-template-columns: 1fr;
  }

  .product-card {
    display: none;
  }

  .product-card__rail {
    display: none;
  }

  .team-list,
  .capability-grid,
  .defense-grid,
  .scope-ladder {
    grid-template-columns: 1fr;
  }

  .value-prop-card {
    padding: 22px;
  }

  .value-prop-card h3 {
    font-size: 22px;
  }

  .chat__grid {
    gap: 28px;
  }

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
