@import url("https://fonts.googleapis.com/css2?family=Josefin+Slab:wght@500;600;700&family=Outfit:wght@300;400;500;600;700&display=swap");

:root {
  --ink: #121414;
  --muted-ink: #56615c;
  --line: #d8ded8;
  --paper: #f6f4ee;
  --white: #fffdf8;
  --company-dark: #08282d;
  --company-surface: #102f33;
  --deep-green: #1f5247;
  --leaf: #38735e;
  --blue-green: #1b788e;
  --signal: #ff7759;
  --amber: #dba959;
  --shadow: 0 28px 90px rgba(21, 42, 36, 0.16);
  --radius: 8px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@view-transition {
  navigation: auto;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Outfit", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
  overflow-x: hidden;
}

::view-transition-old(root),
::view-transition-new(root) {
  animation-duration: 320ms;
  animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
  mix-blend-mode: normal;
}

::view-transition-old(root) {
  animation-name: page-out;
}

::view-transition-new(root) {
  animation-name: page-in;
}

@keyframes page-out {
  to {
    opacity: 0;
    transform: translateY(-8px) scale(0.995);
  }
}

@keyframes page-in {
  from {
    opacity: 0;
    transform: translateY(10px) scale(1.005);
  }
}

body.is-transitioning .site-header,
body.is-transitioning main {
  transition:
    opacity 180ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 180ms cubic-bezier(0.22, 1, 0.36, 1);
}

body.content-is-leaving .site-header,
body.content-is-leaving main {
  opacity: 0;
  transform: translateY(-8px) scale(0.995);
}

body.content-is-entering .site-header,
body.content-is-entering main {
  opacity: 0;
  transform: translateY(10px) scale(1.005);
}

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

  ::view-transition-old(root),
  ::view-transition-new(root) {
    animation-duration: 1ms;
  }

  body.is-transitioning .site-header,
  body.is-transitioning main {
    transition-duration: 1ms;
  }
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  min-height: 72px;
  padding: 16px clamp(20px, 4vw, 56px);
  border-bottom: 1px solid rgba(31, 82, 71, 0.14);
  background: rgba(246, 244, 238, 0.84);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  width: 152px;
  align-items: center;
}

.brand img {
  width: 152px;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 4px;
  border: 1px solid rgba(31, 82, 71, 0.18);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.76);
}

.nav-links a {
  padding: 9px 18px;
  border-radius: 999px;
  color: #26342f;
  font-size: 14px;
  font-weight: 500;
}

.nav-links a:hover,
.nav-links a.is-active {
  background: rgba(31, 82, 71, 0.08);
}

.nav-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
}

.nav-login {
  padding: 9px 18px;
  border: 1px solid rgba(31, 82, 71, 0.25);
  border-radius: 999px;
  color: var(--deep-green);
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
}

.nav-login:hover {
  background: rgba(31, 82, 71, 0.06);
}

.nav-cta {
  justify-self: end;
  min-width: 132px;
  padding: 11px 18px;
  border: 1px solid rgba(31, 82, 71, 0.35);
  border-radius: 999px;
  background: var(--deep-green);
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  text-align: center;
}

.hero {
  position: relative;
  min-height: min(860px, max(760px, calc(100svh - 96px)));
  overflow: hidden;
  padding: clamp(36px, 6vw, 78px) clamp(20px, 4vw, 56px) 30px;
  border-bottom: 1px solid rgba(31, 82, 71, 0.14);
  background:
    linear-gradient(120deg, rgba(255, 253, 248, 0.98) 0%, rgba(246, 244, 238, 0.9) 43%, rgba(233, 246, 241, 0.72) 100%),
    radial-gradient(circle at 85% 26%, rgba(255, 119, 89, 0.12), transparent 30%),
    linear-gradient(180deg, rgba(255, 253, 248, 0) 70%, rgba(31, 82, 71, 0.08));
}

.hero-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(31, 82, 71, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31, 82, 71, 0.06) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.9), transparent 78%);
}

.hero-copy {
  position: relative;
  z-index: 4;
  width: min(700px, 100%);
  padding-top: clamp(8px, 5vw, 58px);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--deep-green);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 22px;
  font-family: "Josefin Slab", Georgia, serif;
  font-size: clamp(54px, 6.8vw, 104px);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: 0;
  text-wrap: balance;
}

h1 span {
  display: block;
}

.hero-subhead {
  width: min(560px, 100%);
  margin-bottom: 24px;
  color: #384842;
  font-size: clamp(18px, 1.45vw, 21px);
  font-weight: 400;
  line-height: 1.42;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 650;
}

.button.primary {
  background: var(--deep-green);
  color: var(--white);
}

.button.primary.light {
  background: var(--white);
  color: var(--company-dark);
}

.button.secondary {
  border: 1px solid rgba(31, 82, 71, 0.22);
  background: rgba(255, 253, 248, 0.72);
  color: var(--ink);
}

.flow-link {
  gap: 8px;
}

.button-icon {
  position: relative;
  display: inline-grid;
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  border: 1px solid rgba(31, 82, 71, 0.28);
  border-radius: 50%;
  color: var(--deep-green);
  place-items: center;
}

.button-icon::before {
  width: 6px;
  height: 6px;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
  content: "";
  transform: translateX(-1px) rotate(45deg);
}

.button.secondary.dark {
  border-color: rgba(255, 253, 248, 0.22);
  background: rgba(255, 253, 248, 0.06);
  color: var(--white);
}

.hero-stage {
  position: absolute;
  right: clamp(20px, 5vw, 74px);
  bottom: clamp(84px, 10vh, 132px);
  z-index: 3;
  width: min(44vw, 650px);
  aspect-ratio: 622 / 402;
  overflow: hidden;
  border: 1px solid rgba(31, 82, 71, 0.26);
  border-radius: var(--radius);
  background: #202127;
  box-shadow: var(--shadow);
}

.hero-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(56, 115, 94, 0.18), transparent 45%),
    linear-gradient(0deg, rgba(18, 20, 20, 0.18), transparent 42%);
}

.product-page .hero {
  min-height: auto;
  padding-top: clamp(22px, 3.2vw, 44px);
  padding-bottom: 24px;
}

.product-page .hero-copy {
  width: min(1180px, 100%);
  padding-top: clamp(0px, 1.8vw, 22px);
}

.product-page .hero-copy h1 {
  max-width: 900px;
  margin-bottom: 20px;
  font-size: clamp(50px, 6.2vw, 92px);
  line-height: 1.04;
}

.product-page .hero-copy h1 span {
  display: inline;
}

.product-page .hero-subhead {
  width: min(680px, 100%);
  font-size: clamp(17px, 1.35vw, 21px);
}

.hero-stage.hero-demo-stage {
  position: relative;
  right: auto;
  bottom: auto;
  width: min(1220px, 100%);
  min-height: 0;
  aspect-ratio: 16 / 8.35;
  margin-top: clamp(28px, 3.6vw, 42px);
  margin-inline: auto;
  border: 0;
  background: transparent;
}

.hero-stage.hero-demo-stage::before {
  display: none;
}

.hero-demo-frame {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: inherit;
}

.section {
  padding: clamp(72px, 9vw, 132px) clamp(20px, 4vw, 56px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(180px, 0.36fr) minmax(0, 0.64fr);
  gap: clamp(28px, 6vw, 88px);
  margin-bottom: clamp(36px, 5vw, 64px);
  align-items: start;
}

.section-heading.compact {
  margin-bottom: 32px;
}

.section-heading h2,
.about-section h2 {
  margin: 0;
  font-family: "Outfit", ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(32px, 3.7vw, 52px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: 0;
}

.research-section {
  padding-bottom: clamp(280px, 25vw, 390px);
  background: var(--white);
}

.research-panel {
  --active-point: 50%;
  position: relative;
  width: min(1280px, calc(100vw - 112px));
  margin-inline: auto;
  padding: clamp(30px, 4.2vw, 58px);
  overflow: visible;
  border: 1px solid rgba(255, 253, 248, 0.13);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 52% -10%, rgba(54, 121, 98, 0.28), transparent 35%),
    radial-gradient(circle at 100% 12%, rgba(27, 120, 142, 0.14), transparent 28%),
    linear-gradient(145deg, #0e2826 0%, #10201d 58%, #17241f 100%);
  box-shadow:
    0 28px 70px rgba(11, 29, 26, 0.28),
    inset 0 1px 0 rgba(255, 253, 248, 0.08);
  color: var(--white);
}

.research-panel[data-active-output="evidence"] {
  --active-point: 16.666%;
}

.research-panel[data-active-output="forecast"] {
  --active-point: 50%;
}

.research-panel[data-active-output="action"] {
  --active-point: 83.333%;
}

.research-panel::before {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background-image:
    linear-gradient(rgba(255, 253, 248, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 253, 248, 0.035) 1px, transparent 1px);
  background-size: 32px 32px;
  content: "";
  opacity: 0.58;
  pointer-events: none;
}

.research-panel > * {
  position: relative;
  z-index: 1;
}

.research-panel-header {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(280px, 0.45fr);
  gap: clamp(28px, 5vw, 90px);
  align-items: start;
}

.research-panel-header p {
  margin: 0;
  color: rgba(255, 253, 248, 0.72);
  font-size: clamp(16px, 1.25vw, 19px);
  line-height: 1.45;
}

.research-panel-header div > p {
  margin-bottom: 20px;
  color: rgba(255, 253, 248, 0.72);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.1;
  text-transform: uppercase;
}

.research-panel-header h3 {
  max-width: 640px;
  margin: 0;
  color: var(--white);
  font-family: "Outfit", ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(30px, 3vw, 44px);
  font-weight: 650;
  line-height: 1.04;
  letter-spacing: 0;
}

.research-output {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: clamp(32px, 4vw, 48px);
}

.research-output .output-tile {
  position: relative;
  display: flex;
  min-height: 355px;
  flex-direction: column;
  gap: 20px;
  justify-content: space-between;
  padding: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 253, 248, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.075), rgba(255, 253, 248, 0.025)),
    rgba(255, 253, 248, 0.035);
  color: var(--white);
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition:
    border-color 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.research-output .output-tile::before {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(135deg, rgba(58, 183, 132, 0.18), transparent 34%),
    linear-gradient(rgba(255, 253, 248, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 253, 248, 0.05) 1px, transparent 1px);
  background-size: auto, 26px 26px, 26px 26px;
  content: "";
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.research-output .output-tile:hover,
.research-output .output-tile:focus-visible,
.research-output .output-tile.is-active {
  border-color: rgba(92, 212, 155, 0.78);
  background-color: rgba(255, 253, 248, 0.025);
  box-shadow:
    0 0 0 1px rgba(92, 212, 155, 0.1),
    0 22px 44px rgba(2, 17, 14, 0.22);
  transform: translateY(-3px);
}

.research-output .output-tile:hover::before,
.research-output .output-tile:focus-visible::before,
.research-output .output-tile.is-active::before {
  opacity: 1;
}

.research-output .output-tile:focus-visible {
  outline: 2px solid rgba(255, 253, 248, 0.6);
  outline-offset: 3px;
}

.tile-topline,
.tile-table,
.tile-chart,
.tile-routes,
.tile-action {
  position: relative;
  z-index: 1;
}

.tile-topline {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
}

.tile-topline span {
  min-width: 0;
}

.tile-topline em {
  padding: 5px 8px;
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.11);
  color: rgba(255, 253, 248, 0.74);
  font-size: 11px;
  font-style: normal;
  font-weight: 700;
  white-space: nowrap;
}

.tile-icon {
  position: relative;
  display: grid;
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  border: 1px solid rgba(92, 212, 155, 0.2);
  border-radius: 8px;
  background: rgba(92, 212, 155, 0.12);
  place-items: center;
}

.tile-icon::before,
.tile-icon::after {
  position: absolute;
  content: "";
}

.grid-icon::before {
  width: 18px;
  height: 18px;
  background-image:
    linear-gradient(rgba(92, 212, 155, 0.85) 1px, transparent 1px),
    linear-gradient(90deg, rgba(92, 212, 155, 0.85) 1px, transparent 1px);
  background-size: 6px 6px;
}

.trend-icon::before {
  width: 19px;
  height: 14px;
  border-bottom: 2px solid rgba(92, 212, 155, 0.85);
  border-left: 2px solid rgba(92, 212, 155, 0.85);
  transform: skewY(-22deg);
}

.trend-icon::after {
  right: 8px;
  top: 9px;
  width: 6px;
  height: 6px;
  border-top: 2px solid rgba(92, 212, 155, 0.85);
  border-right: 2px solid rgba(92, 212, 155, 0.85);
  transform: rotate(12deg);
}

.target-icon::before {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(92, 212, 155, 0.85);
  border-radius: 50%;
}

.target-icon::after {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(92, 212, 155, 0.9);
}

.tile-table {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) 0.45fr 0.8fr;
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 253, 248, 0.12);
  border-radius: var(--radius);
}

.tile-table span,
.tile-table strong {
  min-width: 0;
  padding: 10px 12px;
  border-bottom: 1px solid rgba(255, 253, 248, 0.08);
  color: rgba(255, 253, 248, 0.82);
  font-size: 12px;
  line-height: 1.18;
}

.tile-table span:nth-child(-n + 3) {
  color: rgba(255, 253, 248, 0.58);
  font-size: 10px;
  font-weight: 700;
}

.tile-table strong {
  color: #5cd49b;
  font-weight: 750;
}

.tile-chart {
  padding: 16px;
  border: 1px solid rgba(255, 253, 248, 0.12);
  border-radius: var(--radius);
  background: rgba(6, 20, 18, 0.18);
}

.chart-caption {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 253, 248, 0.86);
  font-size: 13px;
  font-weight: 700;
}

.tile-chart svg,
.component-chart svg {
  width: 100%;
  height: auto;
  overflow: visible;
}

.chart-grid,
.component-grid {
  fill: none;
  stroke: rgba(255, 253, 248, 0.12);
  stroke-width: 1;
}

.chart-bars,
.component-bars {
  fill: none;
  stroke: rgba(255, 253, 248, 0.34);
  stroke-width: 8;
}

.chart-interval,
.component-interval {
  fill: rgba(255, 253, 248, 0.42);
  stroke: rgba(255, 253, 248, 0.72);
  stroke-width: 1;
}

.chart-interval-boundary,
.chart-interval-whiskers path,
.component-interval-boundary,
.component-interval-whiskers path {
  fill: none;
  stroke: rgba(255, 253, 248, 0.82);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.chart-now-line,
.component-now-line {
  stroke: rgba(255, 253, 248, 0.58);
  stroke-dasharray: 3 5;
  stroke-linecap: round;
  stroke-width: 1.4;
}

.chart-now-label,
.component-now-label {
  fill: rgba(255, 253, 248, 0.68);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.chart-line,
.component-line {
  fill: none;
  stroke: rgba(255, 253, 248, 0.94);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
}

.chart-dots circle,
.component-chart circle {
  fill: #10201d;
  stroke: rgba(255, 253, 248, 0.94);
  stroke-width: 2;
}

.tile-routes {
  display: grid;
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 253, 248, 0.12);
  border-radius: var(--radius);
}

.tile-routes span {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr) 58px;
  gap: 10px;
  align-items: center;
  min-width: 0;
  padding: 11px 12px;
  border-bottom: 1px solid rgba(255, 253, 248, 0.08);
  color: rgba(255, 253, 248, 0.86);
  font-size: 12px;
  font-weight: 650;
}

.tile-routes b {
  color: rgba(255, 253, 248, 0.54);
  font-weight: 650;
}

.tile-routes i,
.component-scorecard i {
  display: block;
  height: 4px;
  border-radius: 999px;
  background:
    linear-gradient(90deg, var(--blue-green), var(--signal)) 0 0 / var(--score) 100% no-repeat,
    rgba(255, 253, 248, 0.1);
}

.tile-action {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 34px;
  gap: 12px;
  align-items: center;
  min-height: 54px;
  padding: 10px 10px 10px 16px;
  border: 1px solid rgba(255, 253, 248, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.055);
  color: rgba(255, 253, 248, 0.9);
  font-size: 13px;
  font-weight: 700;
}

.tile-action b {
  position: relative;
  display: block;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 253, 248, 0.12);
}

.tile-action b::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  content: "";
  transform: translate(-62%, -50%) rotate(45deg);
}

.tile-action b::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 2px;
  background: currentColor;
  content: "";
  transform: translate(-56%, -50%);
}

.module-connector {
  position: absolute;
  top: 100%;
  left: var(--active-point);
  width: 1px;
  height: 56px;
  margin-left: 0;
  background: repeating-linear-gradient(
    to bottom,
    rgba(92, 212, 155, 0.8) 0 7px,
    transparent 7px 12px
  );
  transition: left 200ms ease;
}

.module-connector::before {
  position: absolute;
  top: -5px;
  left: -4px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #5cd49b;
  content: "";
}

.module-live-card {
  position: absolute;
  top: calc(100% + 56px);
  left: var(--active-point);
  width: min(560px, 100%);
  margin-top: 0;
  margin-inline: auto;
  border: 1px solid rgba(18, 20, 20, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.96);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.24);
  color: var(--ink);
  transform: translateX(-50%);
  transition: left 200ms ease;
}

.module-component {
  padding: 16px;
}

.module-component[hidden] {
  display: none;
}

.component-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: -16px -16px 14px;
  padding: 10px 14px;
  border-bottom: 1px solid rgba(18, 20, 20, 0.1);
}

.component-header span {
  color: #626b66;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.component-close {
  position: relative;
  display: block;
  width: 22px;
  height: 22px;
  border: 0;
  border-radius: 50%;
  background: #eff1ee;
  color: #7a817e;
}

.component-close::before,
.component-close::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 9px;
  height: 1.5px;
  background: currentColor;
  content: "";
}

.component-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.component-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.module-component h4 {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 750;
}

.component-table {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 64px 62px;
  overflow: hidden;
  border: 1px solid #e2e5e0;
  border-radius: 8px;
}

.component-table > * {
  padding: 11px 12px;
  border-bottom: 1px solid #e2e5e0;
  color: #151818;
  font-size: 13px;
  line-height: 1.15;
}

.component-table > span {
  color: #6b716f;
  font-size: 11px;
  font-weight: 750;
}

.component-table b {
  color: #32a450;
}

.component-table em {
  justify-self: start;
  padding: 4px 9px;
  align-self: center;
  border-radius: 999px;
  background: #dcecff;
  color: #2f64d8;
  font-style: normal;
  font-weight: 750;
}

.component-chart {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 164px;
  gap: 14px;
}

.component-chart > div,
.component-chart ul {
  margin: 0;
  padding: 14px;
  border: 1px solid #e2e5e0;
  border-radius: 8px;
}

.component-chart strong {
  display: block;
  margin-bottom: 6px;
  font-size: 13px;
}

.component-chart ul {
  display: grid;
  gap: 8px;
  padding: 10px;
  list-style: none;
}

.component-chart li {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 9px 10px;
  border-radius: 6px;
  background: #f5f6f3;
  color: #343a38;
  font-size: 11px;
  font-weight: 700;
}

.component-chart li span {
  color: #858c88;
  font-weight: 650;
}

.component-grid {
  stroke: rgba(18, 20, 20, 0.08);
}

.component-bars {
  stroke: rgba(18, 20, 20, 0.12);
  stroke-width: 12;
}

.component-interval {
  fill: rgba(113, 113, 122, 0.34);
  stroke: rgba(82, 82, 91, 0.52);
}

.component-interval-boundary,
.component-interval-whiskers path {
  stroke: rgba(82, 82, 91, 0.64);
}

.component-now-line {
  stroke: rgba(113, 113, 122, 0.38);
}

.component-now-label {
  fill: #68716d;
}

.component-line {
  stroke: #111414;
}

.component-chart circle {
  fill: var(--white);
  stroke: #111414;
}

.component-scorecard {
  display: grid;
  gap: 12px;
  padding: 14px;
  border: 1px solid #e2e5e0;
  border-radius: 8px;
}

.component-scorecard span {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px 16px;
  align-items: center;
}

.component-scorecard strong {
  font-size: 14px;
}

.component-scorecard em {
  padding: 4px 9px;
  border-radius: 999px;
  background: #e5eeea;
  color: var(--deep-green);
  font-style: normal;
  font-weight: 800;
}

.component-scorecard i {
  grid-column: 1 / -1;
  height: 9px;
  background:
    linear-gradient(90deg, var(--blue-green), var(--deep-green)) 0 0 / var(--score) 100% no-repeat,
    #e5e9e5;
}

.pillars-section {
  background: var(--paper);
}

.pillars-section .section-heading {
  display: block;
  max-width: 1120px;
  margin-inline: auto;
  margin-bottom: clamp(56px, 7vw, 86px);
  text-align: center;
}

.pillars-section .eyebrow {
  margin-bottom: 28px;
  color: var(--ink);
}

.pillars-section h2 {
  max-width: 940px;
  margin-inline: auto;
  font-size: clamp(38px, 4.3vw, 64px);
  line-height: 1.06;
}

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1280px;
  margin-inline: auto;
  background: transparent;
}

.pillar-card {
  position: relative;
  min-width: 0;
  padding: 0 clamp(28px, 5vw, 64px);
  text-align: left;
}

.pillar-card + .pillar-card::before {
  position: absolute;
  top: 8px;
  bottom: 8px;
  left: 0;
  width: 1px;
  content: "";
  background: rgba(18, 20, 20, 0.18);
}

.pillar-visual {
  display: grid;
  height: clamp(210px, 19vw, 300px);
  margin-bottom: clamp(28px, 4vw, 46px);
  place-items: center;
}

.pillar-visual img {
  width: auto;
  max-width: min(100%, 330px);
  height: 100%;
  object-fit: contain;
}

.pillar-card h3 {
  margin-bottom: 24px;
  font-family: "Outfit", ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(26px, 2.3vw, 36px);
  font-weight: 600;
  line-height: 1.08;
}

.pillar-card p {
  margin: 0;
  color: #48564f;
  font-size: 17px;
  line-height: 1.5;
}

.about-section {
  display: grid;
  grid-template-columns: clamp(280px, 26vw, 380px) minmax(0, 1fr) minmax(260px, 0.55fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
  border-top: 1px solid rgba(31, 82, 71, 0.14);
  background: #15221e;
  color: var(--white);
}

.about-section .eyebrow {
  color: #9cc6b8;
}

.about-section p:last-child {
  margin: 0;
  color: rgba(255, 253, 248, 0.72);
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.46;
}

.about-section > * {
  min-width: 0;
}

.about-mark {
  display: grid;
  width: clamp(330px, 28vw, 430px);
  height: clamp(330px, 28vw, 430px);
  place-items: center;
  overflow: visible;
  justify-self: start;
  transform: translateX(-28px);
}

.about-mark img {
  width: 100%;
  opacity: 0.9;
}

.company-page {
  background: var(--company-dark);
  color: var(--white);
}

.company-header {
  border-bottom-color: rgba(255, 253, 248, 0.12);
  background: rgba(8, 40, 45, 0.82);
}

.company-brand img {
  mix-blend-mode: normal;
}

.company-header .nav-links {
  border-color: rgba(255, 253, 248, 0.18);
  background: rgba(255, 253, 248, 0.08);
}

.company-header .nav-links a {
  color: rgba(255, 253, 248, 0.82);
}

.company-header .nav-links a:hover,
.company-header .nav-links a.is-active {
  background: rgba(255, 253, 248, 0.13);
  color: var(--white);
}

.company-header .nav-cta {
  border-color: rgba(255, 253, 248, 0.24);
  background: var(--white);
  color: var(--company-dark);
}

.company-hero {
  position: relative;
  display: grid;
  min-height: min(780px, calc(100svh - 72px));
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.68fr);
  gap: clamp(28px, 4.5vw, 64px);
  align-items: center;
  overflow: hidden;
  padding: clamp(56px, 7vw, 98px) clamp(20px, 4vw, 56px);
  border-bottom: 1px solid rgba(255, 253, 248, 0.12);
  background:
    radial-gradient(circle at 78% 26%, rgba(27, 120, 142, 0.22), transparent 32%),
    linear-gradient(120deg, #08282d 0%, #0b302f 52%, #11231f 100%);
}

.company-hero-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 253, 248, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 253, 248, 0.055) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.78), transparent 82%);
}

.company-hero-copy,
.company-hero-mark {
  position: relative;
  z-index: 2;
  min-width: 0;
}

.company-hero .eyebrow,
.story-timeline .eyebrow,
.research-roots .eyebrow,
.team-section .eyebrow,
.closing-cta .eyebrow {
  color: #9cc6b8;
}

.company-hero h1 {
  max-width: 760px;
  margin-bottom: 26px;
  font-family: "Josefin Slab", Georgia, serif;
  font-size: clamp(50px, 5.4vw, 84px);
  font-weight: 600;
  line-height: 0.98;
}

.company-hero-copy > p:not(.eyebrow) {
  width: min(620px, 100%);
  margin-bottom: 28px;
  color: rgba(255, 253, 248, 0.78);
  font-size: clamp(18px, 1.45vw, 22px);
  line-height: 1.42;
}

.company-hero-mark {
  display: grid;
  place-items: center;
  min-width: 0;
}

.company-hero-mark img {
  width: min(44vw, 560px);
  max-width: 100%;
  opacity: 0.82;
}

.mission-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-bottom: 1px solid rgba(255, 253, 248, 0.12);
  background: #102f33;
}

.mission-strip > div {
  min-height: 230px;
  padding: clamp(28px, 4vw, 54px);
  border-right: 1px solid rgba(255, 253, 248, 0.12);
}

.mission-strip > div:last-child {
  border-right: 0;
}

.mission-strip span {
  display: block;
  margin-bottom: 22px;
  font-family: "Outfit", ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(30px, 3.2vw, 52px);
  font-weight: 500;
  line-height: 1;
}

.mission-strip p {
  max-width: 32ch;
  margin: 0;
  color: rgba(255, 253, 248, 0.72);
  font-size: 18px;
  line-height: 1.45;
}

.company-story {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1.08fr);
  gap: clamp(32px, 5vw, 78px);
  align-items: center;
  background: var(--paper);
  color: var(--ink);
}

.company-story h2,
.story-timeline h2,
.research-roots h2,
.team-section h2,
.company-facts h2,
.closing-cta h2 {
  margin: 0;
  font-family: "Outfit", ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(34px, 4.1vw, 60px);
  font-weight: 500;
  line-height: 1.06;
}

.company-story-copy,
.story-timeline .section-heading,
.research-roots .section-heading,
.team-section .section-heading,
.company-facts > div {
  min-width: 0;
}

.company-story-copy h2 {
  margin-bottom: clamp(28px, 3.5vw, 46px);
}

.company-story-copy > p:not(.eyebrow) {
  margin: 0;
  max-width: 58ch;
  color: #48564f;
  font-size: 19px;
  line-height: 1.5;
}

.company-story-copy > p:not(.eyebrow) + p {
  margin-top: 24px;
}

.workflow-figure {
  min-width: 0;
}

.workflow-figure img {
  width: 100%;
  border: 1px solid rgba(31, 82, 71, 0.14);
  border-radius: var(--radius);
  box-shadow: 0 24px 72px rgba(21, 42, 36, 0.14);
}

.story-timeline,
.research-roots,
.team-section {
  background: var(--company-dark);
  color: var(--white);
}

.story-timeline {
  border-top: 1px solid rgba(255, 253, 248, 0.12);
  border-bottom: 1px solid rgba(255, 253, 248, 0.12);
}

.research-roots {
  border-top: 1px solid rgba(255, 253, 248, 0.12);
}

.story-timeline .section-heading,
.research-roots .section-heading,
.team-section .section-heading {
  display: block;
  max-width: 1060px;
}

.timeline-grid,
.roots-grid {
  display: grid;
  border-top: 1px solid rgba(255, 253, 248, 0.15);
}

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

.roots-grid {
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 253, 248, 0.15);
}

.timeline-grid article,
.roots-grid article {
  min-height: 320px;
  padding: clamp(28px, 4vw, 50px);
  border-right: 1px solid rgba(255, 253, 248, 0.15);
}

.timeline-grid article:last-child,
.roots-grid article:last-child {
  border-right: 0;
}

.timeline-grid span,
.roots-grid span {
  display: block;
  margin-bottom: 70px;
  color: #82c7d8;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.timeline-grid .story-sourced-item span {
  margin-bottom: 24px;
}

.roots-grid h3,
.timeline-grid h3,
.team-grid h3 {
  margin-bottom: 16px;
  font-family: "Outfit", ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(24px, 2.3vw, 34px);
  font-weight: 600;
  line-height: 1.08;
}

.team-grid h3 a {
  color: inherit;
  text-decoration: none;
}

.team-grid h3 a:hover,
.team-grid h3 a:focus-visible {
  color: #82c7d8;
}

.story-source-link {
  display: flex;
  width: fit-content;
  align-items: center;
  min-height: 26px;
  margin: 0 0 22px;
  padding: 0 11px;
  border: 1px solid rgba(130, 199, 216, 0.62);
  border-radius: 999px;
  background: rgba(130, 199, 216, 0.1);
  color: #82c7d8;
  font-family: "Outfit", ui-sans-serif, system-ui, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease;
}

.story-source-link:hover,
.story-source-link:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(130, 199, 216, 0.95);
  background: rgba(130, 199, 216, 0.2);
}

.roots-grid p,
.timeline-grid p,
.team-grid p {
  margin: 0;
  color: rgba(255, 253, 248, 0.7);
  font-size: 17px;
  line-height: 1.5;
}

.team-section {
  padding-top: clamp(36px, 5vw, 72px);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.team-grid article {
  display: grid;
  min-height: 0;
  align-content: start;
  padding: clamp(28px, 3vw, 42px);
  border: 1px solid rgba(255, 253, 248, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 253, 248, 0.095), rgba(255, 253, 248, 0.028)),
    rgba(16, 47, 51, 0.78);
}

.team-photo {
  position: relative;
  width: clamp(132px, 14vw, 176px);
  aspect-ratio: 1;
  margin-bottom: 32px;
  overflow: hidden;
  border: 1px solid rgba(255, 253, 248, 0.2);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(156, 198, 184, 0.22), rgba(8, 40, 45, 0.72)),
    rgba(255, 253, 248, 0.08);
  box-shadow: inset 0 0 0 1px rgba(255, 253, 248, 0.04);
}

.team-photo::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(145deg, rgba(31, 82, 71, 0.16), transparent 52%),
    rgba(31, 82, 71, 0.08);
  content: "";
  mix-blend-mode: multiply;
  pointer-events: none;
}

.team-photo img {
  width: 100%;
  height: 100%;
  filter: grayscale(0.18) saturate(0.86) contrast(1.05);
  object-fit: cover;
  object-position: center;
}

.team-grid .team-title {
  margin-bottom: 16px;
  color: #82c7d8;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.team-cred {
  max-width: 34ch;
  color: rgba(255, 253, 248, 0.84);
  font-size: clamp(17px, 1.35vw, 20px);
  font-weight: 500;
  line-height: 1.42;
}

.team-domain {
  margin-top: 24px;
  color: #9cc6b8;
  font-size: 14px;
  font-weight: 750;
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-transform: uppercase;
}

.company-facts {
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(380px, 0.72fr);
  gap: clamp(32px, 6vw, 96px);
  align-items: start;
  background: var(--white);
  color: var(--ink);
}

.company-facts h2 {
  max-width: 640px;
  font-size: clamp(34px, 3.8vw, 52px);
  line-height: 1.08;
}

.company-facts dl {
  margin: 0;
  border-top: 1px solid var(--line);
}

.company-facts dl div {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr);
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.company-facts dt {
  color: var(--muted-ink);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.company-facts dd {
  margin: 0;
  color: #2f3d38;
  font-size: 20px;
  line-height: 1.35;
}

.company-facts a {
  color: var(--deep-green);
}

.closing-cta {
  display: grid;
  justify-items: center;
  padding: clamp(86px, 10vw, 150px) clamp(20px, 4vw, 56px);
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(27, 120, 142, 0.26), transparent 36%),
    var(--company-dark);
  color: var(--white);
}

.closing-cta h2 {
  max-width: 920px;
  margin-bottom: 32px;
}

@media (max-width: 980px) {
  .hero {
    min-height: auto;
    padding-bottom: 28px;
  }

  .hero-copy {
    max-width: calc(100vw - 32px);
    width: 100%;
    padding-top: 20px;
  }

  .hero-stage {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    max-width: calc(100vw - 32px);
    margin-top: 42px;
  }

  .section-heading,
  .research-panel,
  .pillars,
  .about-section {
    grid-template-columns: 1fr;
  }

  .research-panel {
    width: calc(100vw - 48px);
    padding: 28px;
  }

  .research-section {
    padding-bottom: clamp(72px, 9vw, 132px);
  }

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

  .research-output {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .research-output .output-tile {
    display: grid;
    grid-template-areas:
      "top preview action";
    grid-template-columns: clamp(200px, 30vw, 230px) minmax(0, 1fr) 52px;
    gap: 14px;
    align-items: center;
    min-height: 0;
    padding: 14px;
  }

  .tile-topline {
    grid-area: top;
    grid-template-columns: auto minmax(0, 1fr);
    align-self: start;
  }

  .tile-topline em {
    grid-column: 2;
    justify-self: start;
  }

  .tile-table,
  .tile-chart,
  .tile-routes {
    grid-area: preview;
    align-self: stretch;
  }

  .tile-action {
    grid-area: action;
    display: flex;
    width: 52px;
    height: 52px;
    min-height: 0;
    padding: 0;
    gap: 0;
    align-items: center;
    justify-content: center;
    justify-self: end;
    align-self: center;
    border-radius: 50%;
    font-size: 0;
  }

  .tile-action b {
    flex: 0 0 auto;
  }

  .tile-chart {
    display: grid;
    align-content: center;
    padding: 14px;
  }

  .tile-chart svg {
    height: 132px;
  }

  .tile-routes span {
    padding-block: 9px;
  }

  .tile-table span,
  .tile-table strong {
    padding-block: 9px;
  }

  .module-connector {
    display: none;
  }

  .module-live-card {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    margin-top: 22px;
    transform: none;
  }

  .component-chart {
    grid-template-columns: 1fr;
  }

  .pillars {
    width: min(760px, 100%);
    max-width: 760px;
  }

  .pillar-card {
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr);
    gap: 12px 34px;
    align-items: center;
    min-height: auto;
    padding: 38px 0;
  }

  .pillar-card + .pillar-card::before {
    top: 0;
    right: 0;
    bottom: auto;
    left: 0;
    width: auto;
    height: 1px;
  }

  .pillar-visual {
    grid-row: 1 / 3;
    width: 180px;
    height: 180px;
    margin: 0;
    overflow: hidden;
    justify-self: center;
  }

  .pillar-visual img {
    width: 100%;
    max-width: 100%;
    height: 100%;
  }

  .pillar-card h3,
  .pillar-card p {
    grid-column: 2;
  }

  .pillar-card h3 {
    margin-bottom: 0;
    align-self: end;
  }

  .pillar-card p {
    max-width: 36ch;
    align-self: start;
  }

  .company-hero,
  .company-story,
  .company-facts {
    grid-template-columns: 1fr;
  }

  .company-hero {
    min-height: auto;
  }

  .company-hero-mark {
    justify-items: start;
  }

  .company-hero-mark img {
    width: min(78vw, 480px);
  }

  .mission-strip,
  .timeline-grid,
  .roots-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .mission-strip > div,
  .timeline-grid article,
  .roots-grid article {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 253, 248, 0.12);
  }

  .mission-strip > div:last-child,
  .timeline-grid article:last-child,
  .roots-grid article:last-child {
    border-bottom: 0;
  }

  .timeline-grid span,
  .roots-grid span,
  .team-photo {
    margin-bottom: 42px;
  }

  .team-grid article {
    min-height: auto;
  }
}

@media (max-width: 640px) {
  body,
  main,
  .site-header,
  .hero,
  .section,
  .company-hero,
  .mission-strip,
  .closing-cta {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .site-header {
    min-height: 64px;
    gap: 12px;
    padding: 12px 16px;
  }

  .brand,
  .brand img {
    width: 126px;
  }

  .nav-actions {
    display: none;
  }

  .nav-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-column: 1 / -1;
    width: min(330px, calc(100vw - 32px));
    max-width: calc(100vw - 32px);
    gap: 4px;
    justify-self: center;
  }

  .nav-links a {
    min-width: 0;
    padding-inline: 10px;
    font-size: 13px;
    text-align: center;
  }

  .hero {
    padding-inline: 16px;
  }

  .hero-copy {
    width: calc(100vw - 32px);
    max-width: calc(100vw - 32px);
  }

  .hero-subhead {
    width: min(100%, 32ch);
    max-width: 32ch;
    font-size: 16.5px;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(46px, 12.6vw, 52px);
    line-height: 0.96;
    overflow-wrap: break-word;
  }

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

  .hero-stage {
    width: calc(100vw - 32px);
    aspect-ratio: 1 / 0.84;
  }

  .section {
    padding-inline: 16px;
  }

  .section-heading,
  .research-panel,
  .pillars,
  .mission-strip,
  .timeline-grid,
  .roots-grid,
  .team-grid,
  .company-facts dl {
    width: calc(100vw - 32px);
    max-width: calc(100vw - 32px);
    min-width: 0;
  }

  .pillar-card {
    display: block;
    padding: 22px;
  }

  .research-panel {
    padding: 18px;
  }

  .research-panel-header h3 {
    font-size: 28px;
  }

  .research-output .output-tile {
    grid-template-areas:
      "top action"
      "preview preview";
    grid-template-columns: minmax(0, 1fr) 42px;
    gap: 12px;
    align-items: start;
    padding: 14px;
  }

  .tile-chart {
    padding: 12px;
  }

  .tile-chart svg {
    height: 104px;
  }

  .tile-routes span {
    min-height: 34px;
    padding: 8px 10px;
  }

  .tile-action {
    width: 42px;
    height: 42px;
    align-self: center;
  }

  .tile-action b {
    width: 30px;
    height: 30px;
  }

  .tile-topline {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .tile-topline em {
    grid-column: 2;
    justify-self: start;
  }

  .tile-table {
    grid-template-columns: minmax(0, 1fr) 56px;
  }

  .tile-table span:nth-child(3),
  .tile-table span:nth-child(6),
  .tile-table span:nth-child(9),
  .tile-table span:nth-child(12) {
    display: none;
  }

  .tile-routes span {
    grid-template-columns: 20px minmax(0, 1fr);
  }

  .tile-routes i {
    grid-column: 2;
    width: 76px;
  }

  .module-component {
    padding: 12px;
  }

  .component-header {
    margin: -12px -12px 12px;
  }

  .pillar-card {
    padding: 36px 8px;
  }

  .pillar-visual {
    display: grid;
    width: 100%;
    height: auto;
    margin-bottom: 42px;
    overflow: hidden;
  }

  .pillar-visual img {
    width: auto;
    max-width: 82vw;
    height: 158px;
  }

  .pillar-card h3 {
    max-width: 16ch;
    font-size: 28px;
  }

  .pillar-card p,
  .section-heading h2 {
    width: 100%;
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .pillar-card p {
    max-width: 32ch;
  }

  .about-mark {
    width: min(72vw, 260px);
    height: min(72vw, 260px);
    transform: none;
  }

  .about-mark img {
    width: 100%;
  }

  .section-heading h2,
  .about-section h2 {
    max-width: 100%;
    font-size: 27px;
    line-height: 1.12;
    overflow-wrap: break-word;
  }

  .pillars-section .section-heading {
    margin-bottom: 34px;
    text-align: left;
  }

  .pillars-section h2 {
    font-size: 31px;
    line-height: 1.08;
  }

  .about-section p:last-child {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .research-section .section-heading h2,
  .about-section h2 {
    max-width: 18ch;
  }

  .about-section p:last-child {
    max-width: 32ch;
  }

  .company-hero {
    padding: 44px 16px 52px;
  }

  .company-hero h1 {
    width: min(100%, 13ch);
    max-width: 13ch;
    font-size: 40px;
    line-height: 1;
    overflow-wrap: anywhere;
  }

  .company-hero-copy,
  .company-story-copy,
  .story-timeline .section-heading,
  .research-roots .section-heading,
  .team-section .section-heading,
  .company-facts > div {
    width: calc(100vw - 32px);
    max-width: calc(100vw - 32px);
    min-width: 0;
  }

  .company-hero-copy > p:not(.eyebrow),
  .company-story-copy > p:not(.eyebrow) {
    max-width: 31ch;
    font-size: 16.5px;
    overflow-wrap: anywhere;
  }

  .mission-strip p,
  .timeline-grid p,
  .roots-grid p,
  .team-grid p {
    max-width: 31ch;
    overflow-wrap: anywhere;
  }

  .company-hero-mark img {
    width: min(88vw, 330px);
  }

  .mission-strip > div {
    padding: 36px 16px;
  }

  .mission-strip span {
    font-size: 40px;
  }

  .company-story h2,
  .story-timeline h2,
  .research-roots h2,
  .team-section h2,
  .company-facts h2,
  .closing-cta h2 {
    width: min(100%, 13ch);
    max-width: 13ch;
    font-size: 32px;
    line-height: 1.08;
    overflow-wrap: anywhere;
  }

  .team-section h2,
  .company-facts h2 {
    width: min(100%, 16ch);
    max-width: 16ch;
  }

  .closing-cta h2 {
    width: min(100%, 12ch);
    max-width: 12ch;
  }

  .workflow-figure {
    width: calc(100vw - 32px);
    max-width: calc(100vw - 32px);
    overflow: hidden;
  }

  .workflow-figure img {
    width: 100%;
    max-width: 100%;
  }

  .roots-grid article,
  .timeline-grid article,
  .team-grid article {
    padding: 28px 20px;
  }

  .company-facts dl div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .company-facts dd {
    font-size: 18px;
    overflow-wrap: anywhere;
  }
}

@media (max-width: 980px) {
  .hero-stage.hero-demo-stage {
    width: 100%;
    max-width: calc(100vw - 64px);
    height: clamp(500px, 68vw, 580px);
    margin-top: 32px;
    aspect-ratio: auto;
  }
}

@media (max-width: 760px) {
  .hero-stage.hero-demo-stage {
    max-width: calc(100vw - 32px);
    height: clamp(520px, 80vw, 590px);
    aspect-ratio: auto;
  }
}

@media (max-width: 640px) {
  .hero-actions {
    width: calc(100vw - 32px);
    max-width: calc(100vw - 32px);
  }

  .product-page .hero-copy h1 span {
    display: block;
  }

  .product-page .hero-copy h1 {
    margin-bottom: 18px;
    font-size: clamp(40px, 11vw, 46px);
    line-height: 1.04;
  }

  .product-page .hero-subhead {
    width: min(100%, 31ch);
    max-width: 31ch;
    margin-bottom: 22px;
  }

  .hero-stage.hero-demo-stage {
    width: calc(100vw - 32px);
    height: clamp(560px, 150vw, 650px);
    margin-top: 28px;
    aspect-ratio: auto;
  }
}

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