:root {
  --ink: #070a12;
  --ink-soft: #0b1020;
  --surface: #0e1526;
  --surface-raised: #151f36;
  --surface-glass: rgba(21, 31, 54, 0.72);
  --text: #f7f9ff;
  --muted: #b7c2d8;
  --faint: #77849e;
  --blue: #5f83ff;
  --blue-deep: #2f5fff;
  --cyan: #79e6ff;
  --amber: #ffc878;
  --green: #9af0b0;
  --line: rgba(194, 211, 245, 0.13);
  --line-strong: rgba(194, 220, 255, 0.25);
  --display: 'Cabinet Grotesk', 'General Sans', sans-serif;
  --body: 'General Sans', sans-serif;
  --mono: 'DM Mono', ui-monospace, monospace;
  --radius-sm: 16px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --radius-pill: 999px;
  --shell: 1280px;
  --pad: clamp(1.25rem, 4vw, 4rem);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
  scroll-snap-type: none;
}

body {
  background:
    radial-gradient(circle at 72% 8%, rgba(47, 95, 255, 0.12), transparent 30rem),
    var(--ink);
  color: var(--text);
  font: 400 15px/1.6 var(--body);
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
}

body.menu-is-open {
  overflow: hidden;
}

button,
input {
  font: inherit;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
}

p,
h1,
h2,
h3,
ul,
ol {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--display);
  letter-spacing: -0.02em;
  line-height: 1.04;
}

h2 {
  font-size: clamp(2.1rem, 4vw, 3.5rem);
  margin-bottom: 0;
  max-width: 13ch;
  text-wrap: balance;
}

h3 {
  text-wrap: balance;
}

::selection {
  background: var(--cyan);
  color: #06102d;
}

.system-field {
  height: 100vh;
  left: 0;
  overflow: hidden;
  pointer-events: none;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: -1;
}

.system-field::before,
.system-field::after {
  border: 1px solid rgba(121, 230, 255, 0.08);
  border-radius: 50%;
  content: '';
  height: 46rem;
  position: absolute;
  width: 46rem;
}

.system-field::before {
  right: -22rem;
  top: 4rem;
}

.system-field::after {
  bottom: -34rem;
  left: -14rem;
}

.shell {
  margin: 0 auto;
  max-width: var(--shell);
  padding-left: var(--pad);
  padding-right: var(--pad);
  width: 100%;
}

.eyebrow,
.lane-eyebrow,
.project-meta,
.featured-insight > span,
.insight-list a > span {
  color: var(--cyan);
  font: 500 0.68rem/1.2 var(--mono);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow {
  align-items: center;
  display: flex;
  gap: 0.65rem;
  margin-bottom: 1.25rem;
}

.eyebrow::before {
  background: currentColor;
  border-radius: 50%;
  box-shadow: 0 0 14px currentColor;
  content: '';
  flex: 0 0 0.4rem;
  height: 0.4rem;
}

.section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: calc(100svh - 5rem);
  padding-bottom: clamp(4.25rem, 8vw, 7rem);
  padding-top: clamp(4.25rem, 8vw, 7rem);
  scroll-margin-top: 5rem;
}

main {
  background: #05070d;
}

main > section {
  --scene-light: 1;
  --scene-opacity: 1;
  --scene-parallax: 0px;
  --scene-progress: 1;
  --scene-saturation: 1;
  --scene-scale: 1;
  --scene-shift: 0px;
  --scene-turn: 0deg;
  position: relative;
  transform-origin: center;
}

.js [data-scene] {
  filter: brightness(var(--scene-light)) saturate(var(--scene-saturation));
  opacity: var(--scene-opacity);
  transform: translate3d(0, var(--scene-shift), 0) scale(var(--scene-scale));
}

.js [data-scene]::after {
  background: linear-gradient(90deg, transparent, rgba(121, 230, 255, 0.38), rgba(255, 200, 120, 0.22), transparent);
  bottom: 0;
  content: '';
  height: 1px;
  left: var(--pad);
  opacity: var(--scene-progress);
  pointer-events: none;
  position: absolute;
  right: var(--pad);
  transform: scaleX(var(--scene-progress));
  transform-origin: center;
}

.js [data-scene].is-active {
  will-change: filter, opacity, transform;
  z-index: 1;
}

.js .hero[data-scene] .visual-shell,
.js .insights-section[data-scene] .insight-orbit,
.js .contact[data-scene] .contact-arc {
  transform: translate3d(0, var(--scene-parallax), 0) rotate(var(--scene-turn));
}

.story-stage {
  width: 100%;
}

.story-signal {
  display: none;
}

.section-header {
  align-items: end;
  display: grid;
  gap: 3rem;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.58fr);
  margin-bottom: clamp(2.3rem, 4.5vw, 4rem);
}

.section-intro {
  color: var(--muted);
  font-size: clamp(0.96rem, 1.3vw, 1.05rem);
  margin: 0;
  max-width: 34rem;
}

.site-header {
  border-bottom: 1px solid transparent;
  position: sticky;
  top: 0;
  transition: background 240ms ease, border-color 240ms ease;
  z-index: 50;
}

.site-header.is-scrolled,
.site-header.menu-open {
  backdrop-filter: blur(18px);
  background: rgba(7, 10, 18, 0.82);
  border-color: var(--line);
}

.nav {
  align-items: center;
  display: flex;
  gap: 2rem;
  justify-content: space-between;
  min-height: 5rem;
  position: relative;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
}

.brand img {
  display: block;
  height: auto;
  width: 9.8rem;
}

.nav-links {
  align-items: center;
  display: flex;
  gap: clamp(1.2rem, 2.6vw, 2.35rem);
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: var(--muted);
  display: inline-flex;
  font-size: 0.83rem;
  min-height: 44px;
  align-items: center;
  position: relative;
  text-decoration: none;
  transition: color 160ms ease;
}

.nav-links a:not(.nav-cta)::after {
  background: var(--cyan);
  border-radius: 50%;
  bottom: 0.4rem;
  content: '';
  height: 2px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 200ms var(--ease);
  width: 100%;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--text);
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  background: rgba(95, 131, 255, 0.13);
  border: 1px solid rgba(121, 230, 255, 0.25);
  border-radius: var(--radius-pill);
  color: var(--text) !important;
  gap: 0.6rem;
  padding: 0.1rem 1.05rem;
}

.nav-toggle {
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--text);
  cursor: pointer;
  display: none;
  height: 44px;
  justify-content: center;
  padding: 0;
  position: relative;
  width: 44px;
  z-index: 2;
}

.nav-toggle i {
  background: currentColor;
  height: 1px;
  left: 12px;
  position: absolute;
  transition: transform 220ms var(--ease), top 220ms var(--ease);
  width: 18px;
}

.nav-toggle i:first-of-type { top: 17px; }
.nav-toggle i:last-of-type { top: 24px; }
.nav-toggle[aria-expanded='true'] i:first-of-type { top: 21px; transform: rotate(45deg); }
.nav-toggle[aria-expanded='true'] i:last-of-type { top: 21px; transform: rotate(-45deg); }

.hero {
  min-height: calc(100svh - 5rem);
  padding-bottom: clamp(2.75rem, 5vw, 4.5rem);
  padding-top: clamp(4.5rem, 8vw, 7rem);
}

.hero-grid {
  align-items: center;
  display: grid;
  gap: clamp(3rem, 6vw, 6rem);
  grid-template-columns: minmax(0, 7fr) minmax(22rem, 5fr);
}

.hero-content {
  max-width: 47rem;
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: clamp(3.1rem, 6.2vw, 5.4rem);
  line-height: 0.98;
  margin: 0;
  max-width: 11ch;
  text-wrap: balance;
}

.hero h1 em {
  background: linear-gradient(105deg, var(--cyan), #b7bcff 54%, var(--amber));
  background-clip: text;
  color: transparent;
  font-style: normal;
}

.hero-copy {
  color: var(--muted);
  font-size: clamp(0.98rem, 1.4vw, 1.12rem);
  margin: 1.75rem 0 2rem;
  max-width: 38rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.button {
  align-items: center;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-pill);
  display: inline-flex;
  font-weight: 600;
  gap: 0.9rem;
  justify-content: center;
  min-height: 52px;
  padding: 0.75rem 1.3rem;
  text-decoration: none;
  transition: transform 180ms var(--ease), box-shadow 180ms ease, background 180ms ease;
}

.button b {
  font: 500 1rem var(--body);
  transition: transform 180ms var(--ease);
}

.button-primary {
  background: var(--text);
  border-color: var(--text);
  color: var(--ink);
  box-shadow: 0 12px 36px rgba(121, 230, 255, 0.12);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button:hover b,
.button:focus-visible b {
  transform: translate(2px, -2px);
}

.hero-status {
  align-items: center;
  color: var(--faint);
  display: flex;
  font-size: 0.82rem;
  gap: 0.6rem;
  margin: 1.4rem 0 0;
}

.hero-status > span {
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(154, 240, 176, 0.09);
  height: 0.45rem;
  width: 0.45rem;
}

.hero-visual {
  display: grid;
  min-height: 31rem;
  place-items: center;
  position: relative;
}

.visual-shell {
  aspect-ratio: 1;
  background:
    radial-gradient(circle at 52% 48%, rgba(95, 131, 255, 0.2), transparent 24%),
    radial-gradient(circle at 70% 22%, rgba(121, 230, 255, 0.1), transparent 25%),
    rgba(14, 21, 38, 0.54);
  border: 1px solid var(--line);
  border-radius: 46% 54% 57% 43% / 44% 40% 60% 56%;
  box-shadow: inset 0 0 80px rgba(95, 131, 255, 0.08), var(--shadow);
  max-width: 31rem;
  position: relative;
  width: 100%;
}

.visual-shell::before {
  background: radial-gradient(circle, rgba(121, 230, 255, 0.12) 1px, transparent 1.5px);
  background-size: 22px 22px;
  border-radius: inherit;
  content: '';
  inset: 8%;
  mask-image: radial-gradient(circle, #000, transparent 76%);
  opacity: 0.5;
  position: absolute;
}

.orbit {
  border: 1px solid rgba(121, 230, 255, 0.25);
  border-radius: 50%;
  position: absolute;
}

.orbit::after {
  background: var(--cyan);
  border-radius: 50%;
  box-shadow: 0 0 16px var(--cyan);
  content: '';
  height: 7px;
  left: 12%;
  position: absolute;
  top: 16%;
  width: 7px;
}

.orbit-outer {
  border-bottom-color: transparent;
  height: 76%;
  inset: 12%;
  width: 76%;
  animation: orbit-spin 18s linear infinite;
}

.orbit-inner {
  border-left-color: transparent;
  border-right-color: rgba(255, 200, 120, 0.36);
  height: 52%;
  inset: 24%;
  width: 52%;
  animation: orbit-spin-reverse 14s linear infinite;
}

.orbit-inner::after {
  background: var(--amber);
  box-shadow: 0 0 16px var(--amber);
  left: auto;
  right: 5%;
  top: 68%;
}

.vector {
  background: linear-gradient(90deg, transparent, rgba(95, 131, 255, 0.85), var(--cyan));
  clip-path: polygon(8% 0, 100% 0, 88% 100%, 0 100%);
  height: 0.7rem;
  position: absolute;
  transform: rotate(-36deg);
}

.vector-main {
  right: 8%;
  top: 34%;
  width: 64%;
}

.vector-small {
  bottom: 27%;
  left: 17%;
  opacity: 0.52;
  width: 34%;
}

.signal-node {
  background: var(--surface);
  border: 2px solid var(--blue);
  border-radius: 50%;
  box-shadow: 0 0 0 8px rgba(95, 131, 255, 0.08);
  height: 16px;
  position: absolute;
  width: 16px;
}

.node-one { left: 15%; top: 40%; }
.node-two { right: 17%; top: 25%; }
.node-three { bottom: 16%; right: 34%; }
.node-human {
  background: var(--amber);
  border-color: var(--amber);
  bottom: 28%;
  box-shadow: 0 0 0 9px rgba(255, 200, 120, 0.1), 0 0 20px rgba(255, 200, 120, 0.34);
  left: 20%;
}

.visual-core {
  align-items: center;
  background: rgba(7, 10, 18, 0.83);
  border: 1px solid rgba(121, 230, 255, 0.25);
  border-radius: 50%;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.34);
  display: flex;
  flex-direction: column;
  height: 8.5rem;
  justify-content: center;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 8.5rem;
}

.visual-core b {
  font: 800 2.2rem/1 var(--display);
}

.visual-core small {
  color: var(--muted);
  font: 500 0.59rem/1.3 var(--mono);
  letter-spacing: 0.08em;
  margin-top: 0.45rem;
  text-align: center;
  text-transform: uppercase;
}

.visual-card {
  align-items: center;
  backdrop-filter: blur(14px);
  background: rgba(14, 21, 38, 0.8);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-pill);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.28);
  color: var(--muted);
  display: flex;
  font-size: 0.73rem;
  gap: 0.5rem;
  padding: 0.65rem 0.85rem;
  position: absolute;
  white-space: nowrap;
}

.visual-card span {
  background: var(--blue);
  border-radius: 50%;
  height: 0.4rem;
  width: 0.4rem;
}

.visual-card-input { left: -5%; top: 17%; }
.visual-card-output { bottom: 10%; right: -8%; }
.visual-card-output span { background: var(--amber); }

.ecosystem {
  align-items: center;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 2rem;
  grid-template-columns: auto 1fr;
  margin-top: clamp(4rem, 8vw, 7rem);
  padding-top: 1.4rem;
}

.ecosystem > p {
  color: var(--faint);
  font: 500 0.66rem var(--mono);
  letter-spacing: 0.12em;
  margin: 0;
  text-transform: uppercase;
}

.ecosystem-rail {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.ecosystem-rail span,
.capability-copy li,
.project-details li {
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  color: var(--muted);
  font-size: 0.74rem;
  padding: 0.38rem 0.7rem;
}

.capability-lanes {
  display: grid;
  grid-template-columns: 1fr;
}

.capability-lane {
  align-items: center;
  background: linear-gradient(90deg, transparent, rgba(95, 131, 255, 0));
  border-top: 1px solid var(--line);
  display: grid;
  gap: clamp(1.5rem, 3vw, 2.75rem);
  grid-template-columns: 6rem minmax(0, 1fr);
  min-height: 11rem;
  overflow: hidden;
  padding: clamp(1.75rem, 4vw, 3rem) clamp(0rem, 2vw, 1.5rem);
  position: relative;
  transition: background 220ms ease, padding 220ms var(--ease);
}

.capability-lane:last-child {
  border-bottom: 1px solid var(--line);
}

.capability-lane::after {
  border: 1px solid rgba(121, 230, 255, 0.12);
  border-radius: 50%;
  content: '';
  height: 12rem;
  position: absolute;
  right: -5rem;
  top: 50%;
  transform: translateY(-50%);
  width: 12rem;
}

.capability-lane:hover {
  background: linear-gradient(90deg, rgba(95, 131, 255, 0.08), rgba(121, 230, 255, 0.02), transparent);
  padding-left: clamp(0.75rem, 2vw, 1.5rem);
}

.capability-mark {
  align-items: center;
  border: 1px solid rgba(121, 230, 255, 0.23);
  border-radius: 50%;
  display: flex;
  height: 4rem;
  justify-content: center;
  position: relative;
  width: 4rem;
}

.capability-mark::before {
  border: 1px solid rgba(95, 131, 255, 0.3);
  border-bottom-color: transparent;
  border-radius: 50%;
  content: '';
  inset: 0.35rem;
  position: absolute;
  transform: rotate(35deg);
}

.capability-mark span {
  color: var(--cyan);
  font: 500 0.65rem var(--mono);
}

.capability-mark i {
  background: var(--amber);
  border-radius: 50%;
  bottom: 0.3rem;
  height: 0.4rem;
  position: absolute;
  right: 0.35rem;
  width: 0.4rem;
}

.capability-copy {
  align-self: center;
  display: grid;
  gap: 0.75rem 2rem;
  grid-template-columns: minmax(15rem, 0.85fr) minmax(18rem, 1.15fr);
}

.lane-eyebrow {
  color: var(--amber);
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.capability-copy h3 {
  font-size: clamp(1.45rem, 2.3vw, 2.05rem);
  margin: 0;
}

.capability-copy > p:not(.lane-eyebrow) {
  color: var(--muted);
  margin: 0;
  max-width: 38ch;
}

.capability-copy ul,
.project-details ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.capability-copy ul {
  grid-column: 2;
}

.approach-section {
  position: relative;
}

.approach-section::before {
  background:
    radial-gradient(circle at 8% 24%, rgba(255, 200, 120, 0.08), transparent 24rem),
    linear-gradient(135deg, rgba(14, 21, 38, 0.95), rgba(8, 13, 25, 0.8));
  border: 1px solid var(--line);
  border-left: 0;
  border-radius: 0 6rem 6rem 0;
  content: '';
  inset: 0 3% 0 0;
  position: absolute;
  z-index: -1;
}

.approach-layout {
  align-items: start;
  display: grid;
  gap: clamp(4rem, 8vw, 8rem);
  grid-template-columns: minmax(0, 0.78fr) minmax(28rem, 1.22fr);
}

.approach-copy {
  padding-top: 1rem;
}

.approach-copy h2 {
  max-width: 10ch;
}

.approach-copy > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
  margin: 1.5rem 0 2rem;
  max-width: 32rem;
}

.approach-note {
  align-items: flex-start;
  background: rgba(255, 200, 120, 0.06);
  border: 1px solid rgba(255, 200, 120, 0.15);
  border-radius: var(--radius-md) var(--radius-md) var(--radius-sm) var(--radius-md);
  display: flex;
  gap: 0.8rem;
  max-width: 28rem;
  padding: 1rem;
}

.approach-note span {
  background: var(--amber);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(255, 200, 120, 0.08);
  flex: 0 0 0.5rem;
  height: 0.5rem;
  margin-top: 0.45rem;
}

.approach-note p {
  color: var(--muted);
  font-size: 0.86rem;
  margin: 0;
}

.approach-note b {
  color: var(--text);
}

.approach-path {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
}

.approach-path::before {
  border-radius: 50%;
  border-right: 1px solid rgba(121, 230, 255, 0.35);
  content: '';
  left: -3rem;
  position: absolute;
  top: 1.5rem;
  bottom: 1.5rem;
  width: 8.5rem;
}

.approach-path li {
  align-items: start;
  display: grid;
  gap: 1.4rem;
  grid-template-columns: 4rem 1fr;
  padding: 1.15rem 0;
  position: relative;
}

.approach-path li:nth-child(2),
.approach-path li:nth-child(4) { transform: translateX(1.75rem); }
.approach-path li:nth-child(3) { transform: translateX(3.5rem); }

.step-number {
  align-items: center;
  background: var(--ink-soft);
  border: 1px solid rgba(121, 230, 255, 0.25);
  border-radius: 50%;
  color: var(--cyan);
  display: flex;
  font: 500 0.65rem var(--mono);
  height: 4rem;
  justify-content: center;
  position: relative;
  width: 4rem;
  z-index: 1;
}

.approach-path li:last-child .step-number {
  border-color: rgba(255, 200, 120, 0.4);
  color: var(--amber);
}

.approach-path h3 {
  font-size: clamp(1.15rem, 1.8vw, 1.5rem);
  margin: 0 0 0.45rem;
}

.approach-path p {
  color: var(--muted);
  margin: 0;
  max-width: 39rem;
}

.project-list {
  display: grid;
  gap: 1.5rem;
}

.project-story {
  background: linear-gradient(145deg, rgba(21, 31, 54, 0.9), rgba(11, 16, 32, 0.95));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg) var(--radius-lg) var(--radius-lg) var(--radius-sm);
  display: grid;
  gap: 0;
  grid-template-columns: minmax(20rem, 0.82fr) minmax(0, 1.18fr);
  min-height: 31rem;
  overflow: hidden;
}

.project-story:nth-child(even) {
  border-radius: var(--radius-lg) var(--radius-sm) var(--radius-lg) var(--radius-lg);
  grid-template-columns: minmax(0, 1.18fr) minmax(20rem, 0.82fr);
}

.project-story:nth-child(even) .project-visual {
  order: 2;
}

.project-visual {
  background:
    radial-gradient(circle at 30% 30%, rgba(121, 230, 255, 0.12), transparent 15rem),
    linear-gradient(135deg, rgba(95, 131, 255, 0.13), rgba(7, 10, 18, 0.48));
  border-right: 1px solid var(--line);
  min-height: 24rem;
  overflow: hidden;
  position: relative;
}

.project-story:nth-child(even) .project-visual {
  border-left: 1px solid var(--line);
  border-right: 0;
}

.project-visual > p {
  color: var(--cyan);
  font: 500 0.68rem var(--mono);
  left: 1.5rem;
  letter-spacing: 0.12em;
  position: absolute;
  text-transform: uppercase;
  top: 1.5rem;
}

.project-visual::before,
.project-visual::after {
  border: 1px solid rgba(121, 230, 255, 0.18);
  border-radius: 50%;
  content: '';
  height: 22rem;
  position: absolute;
  right: -5rem;
  top: 4rem;
  width: 22rem;
}

.project-visual::after {
  border-color: rgba(255, 200, 120, 0.13);
  height: 14rem;
  right: -1rem;
  top: 8rem;
  width: 14rem;
}

.system-route {
  align-items: center;
  display: flex;
  justify-content: space-between;
  left: 12%;
  position: absolute;
  right: 12%;
  top: 50%;
}

.system-route::before {
  background: linear-gradient(90deg, var(--blue), var(--cyan), var(--amber));
  content: '';
  height: 2px;
  left: 0;
  opacity: 0.6;
  position: absolute;
  right: 0;
  transform: rotate(-7deg);
}

.system-route span {
  background: var(--surface);
  border: 2px solid var(--blue);
  border-radius: 50%;
  box-shadow: 0 0 0 8px rgba(95, 131, 255, 0.08);
  height: 18px;
  position: relative;
  width: 18px;
  z-index: 1;
}

.system-route span:nth-child(3) { border-color: var(--cyan); }
.system-route span:last-child { background: var(--amber); border-color: var(--amber); }

.route-label {
  color: var(--faint);
  font: 500 0.6rem var(--mono);
  position: absolute;
  text-transform: uppercase;
  top: calc(50% + 2.5rem);
}

.route-start { left: 10%; }
.route-middle { left: 43%; }
.route-end { right: 9%; }

.project-copy {
  align-self: center;
  padding: clamp(2rem, 5vw, 4.5rem);
}

.project-meta {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.project-meta em {
  background: rgba(255, 200, 120, 0.08);
  border: 1px solid rgba(255, 200, 120, 0.2);
  border-radius: var(--radius-pill);
  color: var(--amber);
  font-style: normal;
  padding: 0.35rem 0.6rem;
}

.project-copy > h3 {
  font-size: clamp(1.7rem, 3vw, 2.8rem);
  margin-bottom: 1rem;
  max-width: 14ch;
}

.project-copy > p {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 1.8rem;
  max-width: 42rem;
}

.project-copy details {
  border-top: 1px solid var(--line);
}

.project-copy summary {
  align-items: center;
  cursor: pointer;
  display: flex;
  font-weight: 600;
  justify-content: space-between;
  min-height: 54px;
  padding: 0.8rem 0;
}

.project-copy summary::marker {
  content: '';
}

.project-copy summary span {
  align-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  display: flex;
  height: 1.8rem;
  justify-content: center;
  transition: transform 180ms var(--ease);
  width: 1.8rem;
}

.project-copy details[open] summary span {
  transform: rotate(45deg);
}

.project-details {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: 1fr 1fr;
  padding: 0.5rem 0 1.5rem;
}

.project-details b {
  color: var(--faint);
  display: block;
  font: 500 0.62rem var(--mono);
  letter-spacing: 0.1em;
  margin-bottom: 0.55rem;
  text-transform: uppercase;
}

.project-details p {
  color: var(--muted);
  font-size: 0.85rem;
  margin: 0;
}

.insights-section {
  position: relative;
}

.insights-section::before {
  background: linear-gradient(180deg, rgba(14, 21, 38, 0.32), rgba(14, 21, 38, 0.7));
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  content: '';
  inset: 0;
  position: absolute;
  z-index: -1;
}

.insights-layout {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: minmax(0, 1.25fr) minmax(18rem, 0.75fr);
}

.featured-insight {
  background:
    radial-gradient(circle at 84% 10%, rgba(121, 230, 255, 0.12), transparent 18rem),
    var(--surface-raised);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg) var(--radius-lg) var(--radius-sm) var(--radius-lg);
  min-height: 31rem;
  overflow: hidden;
  padding: clamp(2rem, 5vw, 4rem);
  position: relative;
}

.featured-insight h3 {
  font-size: clamp(2.1rem, 4vw, 3.5rem);
  margin: 1.6rem 0 1.2rem;
  max-width: 11ch;
}

.featured-insight > p {
  color: var(--muted);
  max-width: 36rem;
}

.featured-insight > a,
.community-panel > a {
  align-items: center;
  display: inline-flex;
  font-weight: 600;
  gap: 0.55rem;
  margin-top: 1.4rem;
  min-height: 44px;
  text-decoration: none;
}

.featured-insight > a {
  color: var(--cyan);
}

.insight-orbit {
  border: 1px solid rgba(121, 230, 255, 0.18);
  border-radius: 50%;
  bottom: -9rem;
  height: 24rem;
  position: absolute;
  right: -5rem;
  width: 24rem;
}

.insight-orbit::before,
.insight-orbit::after {
  border: 1px solid rgba(95, 131, 255, 0.18);
  border-radius: 50%;
  content: '';
  inset: 3rem;
  position: absolute;
}

.insight-orbit::after {
  border-color: rgba(255, 200, 120, 0.2);
  inset: 7rem;
}

.insight-orbit i {
  background: var(--cyan);
  border-radius: 50%;
  box-shadow: 0 0 14px currentColor;
  height: 7px;
  left: 7%;
  position: absolute;
  top: 42%;
  width: 7px;
}

.insight-orbit i:nth-child(2) { background: var(--blue); left: 37%; top: 15%; }
.insight-orbit i:nth-child(3) { background: var(--amber); left: 58%; top: 48%; }

.insight-list {
  display: flex;
  flex-direction: column;
}

.insight-list a {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 0.75rem;
  grid-template-columns: 1fr auto;
  min-height: 11rem;
  padding: 1.7rem 0;
  position: relative;
  text-decoration: none;
}

.insight-list a:last-child {
  border-bottom: 1px solid var(--line);
}

.insight-list a > span {
  grid-column: 1 / -1;
}

.insight-list h3 {
  font-size: clamp(1.45rem, 2.5vw, 2rem);
  margin: 0;
  max-width: 16ch;
}

.insight-list a > b {
  align-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  display: flex;
  height: 2.5rem;
  justify-content: center;
  transition: background 160ms ease, color 160ms ease, transform 160ms var(--ease);
  width: 2.5rem;
}

.insight-list a:hover > b,
.insight-list a:focus-visible > b {
  background: var(--cyan);
  color: var(--ink);
  transform: translate(2px, -2px);
}

.community-panel {
  background:
    radial-gradient(circle at 0 100%, rgba(255, 200, 120, 0.1), transparent 20rem),
    rgba(255, 200, 120, 0.045);
  border: 1px solid rgba(255, 200, 120, 0.16);
  border-radius: var(--radius-sm) var(--radius-lg) var(--radius-lg) var(--radius-lg);
  grid-column: 1 / -1;
  margin-top: 1rem;
  padding: clamp(2rem, 5vw, 4rem);
}

.community-panel .eyebrow {
  color: var(--amber);
}

.community-panel h3 {
  font-size: clamp(1.7rem, 3vw, 2.55rem);
  margin-bottom: 0.9rem;
  max-width: 16ch;
}

.community-panel > p:not(.eyebrow) {
  color: var(--muted);
  max-width: 42rem;
}

.community-panel > a {
  color: var(--amber);
}

.contact {
  padding-bottom: clamp(6rem, 12vw, 10rem);
}

.contact-panel {
  align-items: center;
  background:
    radial-gradient(circle at 90% 0, rgba(121, 230, 255, 0.18), transparent 25rem),
    radial-gradient(circle at 10% 100%, rgba(255, 200, 120, 0.1), transparent 22rem),
    linear-gradient(135deg, #162141, #0d1427);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg) var(--radius-lg) var(--radius-sm) var(--radius-lg);
  box-shadow: var(--shadow);
  display: grid;
  gap: clamp(2rem, 6vw, 6rem);
  grid-template-columns: minmax(0, 0.9fr) minmax(23rem, 1.1fr);
  overflow: hidden;
  padding: clamp(2rem, 6vw, 5.5rem);
  position: relative;
}

.contact-copy {
  position: relative;
  z-index: 1;
}

.contact-copy h2 {
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  max-width: 10ch;
}

.contact-copy > p:not(.eyebrow) {
  color: var(--muted);
  margin: 1.4rem 0 0;
  max-width: 31rem;
}

.conversation {
  display: flex;
  gap: 0.65rem;
  position: relative;
  z-index: 1;
}

.field {
  background: rgba(7, 10, 18, 0.62);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-pill);
  color: var(--text);
  flex: 1;
  min-height: 54px;
  min-width: 0;
  outline: 0;
  padding: 0.85rem 1.15rem;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.field::placeholder {
  color: var(--faint);
}

.field:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 4px rgba(121, 230, 255, 0.1);
}

.submit {
  align-items: center;
  background: var(--cyan);
  border: 1px solid var(--cyan);
  border-radius: var(--radius-pill);
  color: #071028;
  cursor: pointer;
  display: flex;
  font-weight: 600;
  gap: 0.6rem;
  justify-content: center;
  min-height: 54px;
  padding: 0.8rem 1.2rem;
  transition: transform 160ms var(--ease), box-shadow 160ms ease;
}

.submit:hover,
.submit:focus-visible {
  box-shadow: 0 10px 30px rgba(121, 230, 255, 0.18);
  transform: translateY(-2px);
}

.submit:disabled {
  cursor: wait;
  opacity: 0.65;
}

.form-note {
  color: var(--muted);
  font-size: 0.78rem;
  margin: 0.75rem 0 0 1rem;
  min-height: 1.3rem;
  position: relative;
  z-index: 1;
}

.form-note.success { color: var(--green); }
.form-note.error { color: #ffb0b0; }

.contact-arc {
  border: 1px solid rgba(121, 230, 255, 0.14);
  border-radius: 50%;
  height: 28rem;
  position: absolute;
  right: -12rem;
  top: -14rem;
  width: 28rem;
}

.contact-arc::after {
  border: 1px solid rgba(255, 200, 120, 0.16);
  border-radius: 50%;
  content: '';
  inset: 4rem;
  position: absolute;
}

.footer {
  align-items: end;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 2rem;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  padding-bottom: 2.5rem;
  padding-top: 2.5rem;
}

.footer-brand > p,
.footer-contact > p {
  color: var(--faint);
  font-size: 0.78rem;
  margin: 0.85rem 0 0;
}

.footer-links {
  display: grid;
  gap: 0.4rem 1rem;
  grid-template-columns: 1fr 1fr;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links a,
.footer-contact a {
  color: var(--muted);
  display: inline-flex;
  font-size: 0.84rem;
  min-height: 44px;
  text-decoration: none;
}

.footer-contact {
  justify-self: end;
  text-align: right;
}

.sr-only {
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 4px;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 420ms ease, transform 420ms var(--ease);
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes orbit-spin {
  to { transform: rotate(360deg); }
}

@keyframes orbit-spin-reverse {
  to { transform: rotate(-360deg); }
}

@media (min-width: 901px) {
  .story-signal {
    display: block;
    height: 58vh;
    pointer-events: none;
    position: fixed;
    right: clamp(0.75rem, 2vw, 2rem);
    top: 22vh;
    width: 1rem;
    z-index: 20;
  }

  .story-signal span {
    background: linear-gradient(180deg, rgba(121, 230, 255, 0.08), rgba(121, 230, 255, 0.42), rgba(255, 200, 120, 0.15));
    bottom: 0;
    left: 50%;
    position: absolute;
    top: 0;
    transform: translateX(-50%);
    width: 1px;
  }

  .story-signal i {
    background: var(--cyan);
    border: 3px solid rgba(7, 10, 18, 0.88);
    border-radius: 50%;
    box-shadow: 0 0 0 5px rgba(121, 230, 255, 0.1), 0 0 20px rgba(121, 230, 255, 0.7);
    height: 0.72rem;
    left: 50%;
    position: absolute;
    top: var(--page-progress, 0%);
    transform: translate(-50%, -50%);
    width: 0.72rem;
  }

  .story-signal b {
    background: rgba(121, 230, 255, 0.38);
    border: 2px solid var(--ink);
    border-radius: 50%;
    height: 0.42rem;
    left: 50%;
    position: absolute;
    transform: translate(-50%, -50%);
    width: 0.42rem;
  }

  .story-signal b:nth-of-type(1) { top: 0; }
  .story-signal b:nth-of-type(2) { top: 20%; }
  .story-signal b:nth-of-type(3) { top: 40%; }
  .story-signal b:nth-of-type(4) { top: 60%; }
  .story-signal b:nth-of-type(5) { top: 80%; }
  .story-signal b:nth-of-type(6) { top: 100%; }

  .story-signal b.is-past {
    background: var(--blue);
  }

  .story-signal b.is-active {
    background: var(--amber);
    box-shadow: 0 0 14px rgba(255, 200, 120, 0.72);
    height: 0.62rem;
    width: 0.62rem;
  }

  [data-story] {
    display: block;
    min-height: var(--story-length);
    padding-bottom: 0;
    padding-top: 0;
  }

  .hero[data-story] { --story-length: 160svh; }
  #capabilities[data-story] { --story-length: 240svh; }
  #approach[data-story] { --story-length: 250svh; }
  #work[data-story] { --story-length: 185svh; }
  #insights[data-story] { --story-length: 185svh; }
  #contact[data-story] { --story-length: 125svh; }

  [data-story] > .story-stage {
    align-items: stretch;
    display: flex;
    flex-direction: column;
    height: calc(100svh - 5rem);
    justify-content: safe center;
    padding-bottom: clamp(1.5rem, 4vh, 3rem);
    padding-top: clamp(1.5rem, 4vh, 3rem);
    position: sticky;
    top: 5rem;
  }

  .story-stage-hero .hero-content h1 {
    font-size: clamp(2.6rem, min(6.2vw, 7svh), 5.4rem);
    max-width: 14ch;
  }

  .story-stage-hero .hero-copy {
    margin-bottom: clamp(1.25rem, 3svh, 2rem);
    margin-top: clamp(1rem, 2.6svh, 1.75rem);
  }

  .story-stage-hero .hero-status {
    margin-top: clamp(1rem, 2.4svh, 1.4rem);
  }

  .story-stage-hero .ecosystem {
    margin-top: clamp(1.25rem, 4svh, 4rem);
  }

  [data-story] > .story-stage::before {
    color: var(--faint);
    font: 500 0.68rem/1 var(--mono);
    letter-spacing: 0.16em;
    position: absolute;
    right: 0;
    text-transform: uppercase;
    top: clamp(1rem, 2.5vh, 2rem);
  }

  .story-stage-hero::before { content: '01 / Signal'; }
  .story-stage-capabilities::before { content: '02 / Shape'; }
  .story-stage-approach::before { content: '03 / Govern'; right: var(--pad); }
  .story-stage-work::before { content: '04 / Prove'; }
  .story-stage-insights::before { content: '05 / Share'; right: var(--pad); }
  .story-stage-contact::before { content: '06 / Begin'; }

  .js [data-story] {
    filter: none;
    opacity: 1;
    transform: none;
  }

  .js [data-story] > .story-stage {
    filter: brightness(var(--scene-light)) saturate(var(--scene-saturation));
    opacity: var(--scene-opacity);
  }

  .js [data-story] [data-story-item] {
    opacity: var(--item-opacity, 1);
    scale: var(--item-scale, 1);
    transition: opacity 180ms linear, scale 180ms linear, translate 180ms linear;
    translate: 0 var(--item-shift, 0px);
  }

  .story-stage-capabilities .section-header,
  .story-stage-work .section-header {
    margin-bottom: clamp(1rem, 2.5vh, 2rem);
  }

  .story-stage-capabilities .capability-lanes,
  .story-stage-work .project-list {
    min-height: clamp(23rem, 54vh, 31rem);
    position: relative;
  }

  .story-stage-capabilities .capability-lane,
  .story-stage-work .project-story {
    height: 100%;
    inset: 0;
    position: absolute;
  }

  .story-stage-capabilities .capability-lane {
    background: linear-gradient(110deg, rgba(11, 16, 32, 0.98), rgba(21, 31, 54, 0.94));
    border: 1px solid var(--line);
    border-radius: var(--radius-lg) var(--radius-lg) var(--radius-sm) var(--radius-lg);
    min-height: 0;
    padding: clamp(1.75rem, 4vw, 3.5rem);
  }

  .story-stage-capabilities .capability-lane::after {
    opacity: var(--item-progress, 1);
  }

  .story-stage-capabilities .capability-lane:not(.is-current),
  .story-stage-work .project-story:not(.is-current) {
    pointer-events: none;
  }

  .story-stage-capabilities .capability-lane.is-current,
  .story-stage-work .project-story.is-current {
    z-index: 2;
  }

  .story-stage-work .project-story {
    min-height: 0;
  }

  .story-stage-work .project-visual {
    min-height: 0;
  }

  .story-stage-work .project-copy {
    padding: clamp(1.5rem, 3vw, 2.5rem);
  }

  .story-stage-approach .approach-path li.is-current .step-number {
    background: rgba(47, 95, 255, 0.2);
    border-color: var(--cyan);
    box-shadow: 0 0 0 7px rgba(121, 230, 255, 0.06), 0 0 30px rgba(47, 95, 255, 0.18);
    color: var(--text);
  }

  .story-stage-insights [data-story-item].is-current {
    filter: drop-shadow(0 20px 35px rgba(0, 0, 0, 0.24));
  }
}

@media (min-width: 901px) and (max-height: 649px) {
  .story-signal {
    display: none;
  }

  [data-story] {
    min-height: auto;
  }

  .section[data-story],
  .hero[data-story] {
    padding-bottom: clamp(4.25rem, 8vw, 7rem);
    padding-top: clamp(4.25rem, 8vw, 7rem);
  }

  [data-story] > .story-stage {
    display: block;
    height: auto;
    padding: 0;
    position: relative;
    top: auto;
  }

  .story-stage-capabilities .capability-lanes,
  .story-stage-work .project-list {
    min-height: 0;
  }

  .story-stage-capabilities .capability-lane,
  .story-stage-work .project-story {
    height: auto;
    inset: auto;
    opacity: 1;
    position: relative;
    scale: 1;
    translate: none;
  }

  .js [data-story] [data-story-item] {
    opacity: 1;
    scale: 1;
    translate: none;
  }
}

@media (max-width: 1050px) {
  .hero-grid {
    gap: 3rem;
    grid-template-columns: minmax(0, 1.05fr) minmax(20rem, 0.95fr);
  }

  .hero h1 {
    font-size: clamp(3rem, 6.8vw, 4.8rem);
  }

  .hero-visual {
    min-height: 26rem;
  }

  .visual-card-input { left: 0; }
  .visual-card-output { right: -1%; }

  .approach-layout {
    gap: 4rem;
    grid-template-columns: minmax(0, 0.82fr) minmax(24rem, 1.18fr);
  }

  .project-story,
  .project-story:nth-child(even) {
    grid-template-columns: minmax(17rem, 0.82fr) minmax(0, 1.18fr);
  }
}

@media (max-width: 860px) {
  .section-header {
    gap: 1.4rem;
    grid-template-columns: 1fr;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-content {
    max-width: 50rem;
  }

  .hero h1 {
    max-width: 12ch;
  }

  .hero-visual {
    min-height: auto;
  }

  .visual-shell {
    max-width: 33rem;
  }

  .capability-lane {
    min-height: 17rem;
  }

  .approach-layout {
    grid-template-columns: 1fr;
  }

  .approach-copy h2 {
    max-width: 13ch;
  }

  .project-story,
  .project-story:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .project-story:nth-child(even) .project-visual {
    border-bottom: 1px solid var(--line);
    border-left: 0;
    order: 0;
  }

  .project-visual {
    border-bottom: 1px solid var(--line);
    border-right: 0;
    min-height: 22rem;
  }

  .insights-layout {
    grid-template-columns: 1fr;
  }

  .contact-panel {
    grid-template-columns: 1fr;
  }

  .contact-copy h2 {
    max-width: 12ch;
  }

  .footer {
    grid-template-columns: 1fr 1fr;
  }

  .footer-contact {
    grid-column: 1 / -1;
    justify-self: start;
    text-align: left;
  }
}

@media (max-width: 760px) {
  .nav-toggle {
    display: flex;
  }

  .primary-nav {
    left: 0;
    position: absolute;
    right: 0;
    top: calc(100% - 1px);
  }

  .nav-links {
    align-items: stretch;
    background: rgba(10, 15, 29, 0.97);
    border: 1px solid var(--line);
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    gap: 0;
    opacity: 0;
    padding: 0.65rem;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms var(--ease), visibility 180ms ease;
    visibility: hidden;
  }

  .site-header.menu-open .nav-links {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
  }

  .nav-links a {
    font-size: 1rem;
    justify-content: space-between;
    min-height: 52px;
    padding: 0 0.85rem;
    width: 100%;
  }

  .nav-links a:not(.nav-cta)::after {
    display: none;
  }

  .nav-cta {
    margin-top: 0.4rem;
  }

  .hero {
    padding-top: 3.5rem;
  }

  .hero h1 {
    font-size: clamp(3.2rem, 14vw, 5rem);
  }

  .ecosystem {
    align-items: start;
    grid-template-columns: 1fr;
  }

  .ecosystem-rail {
    flex-wrap: nowrap;
    margin-left: calc(var(--pad) * -1);
    margin-right: calc(var(--pad) * -1);
    overflow-x: auto;
    padding: 0 var(--pad) 0.6rem;
    scrollbar-width: none;
  }

  .ecosystem-rail::-webkit-scrollbar {
    display: none;
  }

  .ecosystem-rail span {
    flex: 0 0 auto;
  }

  .capability-lanes {
    grid-template-columns: 1fr;
    padding-bottom: 0;
  }

  .capability-copy {
    grid-template-columns: 1fr;
  }

  .capability-copy ul { grid-column: auto; }

  .approach-section::before {
    border-radius: 0 3rem 3rem 0;
    right: 1rem;
  }

  .approach-path::before {
    background: linear-gradient(var(--cyan), var(--blue), var(--amber));
    border: 0;
    border-radius: 0;
    left: 2rem;
    width: 1px;
  }

  .approach-path li:nth-child(2),
  .approach-path li:nth-child(3),
  .approach-path li:nth-child(4) {
    transform: none;
  }

  .featured-insight {
    min-height: 28rem;
  }

  .conversation {
    flex-direction: column;
  }

  .form-note {
    margin-left: 0;
  }
}

@media (max-width: 560px) {
  .section {
    padding-bottom: 4.5rem;
    padding-top: 4.5rem;
  }

  .brand img {
    width: 8.6rem;
  }

  .hero h1 {
    font-size: clamp(2.75rem, 12vw, 3.65rem);
  }

  .hero-actions,
  .hero-actions .button {
    width: 100%;
  }

  .hero-visual {
    margin-left: -0.25rem;
    margin-right: -0.25rem;
  }

  .visual-card {
    font-size: 0.65rem;
  }

  .visual-card-input { left: -1%; top: 11%; }
  .visual-card-output { bottom: 4%; right: -1%; }

  .capability-lane {
    gap: 1.25rem;
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .approach-path::before {
    background: linear-gradient(var(--cyan), var(--blue), var(--amber));
    border: 0;
    border-radius: 0;
    left: 1.5rem;
    width: 1px;
  }

  .approach-path li {
    gap: 1rem;
    grid-template-columns: 3rem 1fr;
  }

  .step-number {
    height: 3rem;
    width: 3rem;
  }

  .project-visual {
    min-height: 18rem;
  }

  .route-label {
    display: none;
  }

  .project-copy {
    padding: 1.5rem;
  }

  .project-details {
    grid-template-columns: 1fr;
  }

  .featured-insight,
  .community-panel,
  .contact-panel {
    padding: 1.5rem;
  }

  .featured-insight h3 {
    font-size: clamp(2rem, 9vw, 3.1rem);
  }

  .insight-orbit {
    opacity: 0.58;
  }

  .footer {
    grid-template-columns: 1fr;
  }

  .footer-contact {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .story-signal {
    display: none;
  }

  [data-story] {
    min-height: auto;
  }

  .section[data-story],
  .hero[data-story] {
    padding-bottom: clamp(4.25rem, 8vw, 7rem);
    padding-top: clamp(4.25rem, 8vw, 7rem);
  }

  [data-story] > .story-stage {
    display: block;
    height: auto;
    padding: 0;
    position: relative;
    top: auto;
  }

  .story-stage-capabilities .capability-lanes,
  .story-stage-work .project-list {
    min-height: 0;
  }

  .story-stage-capabilities .capability-lane,
  .story-stage-work .project-story {
    height: auto;
    inset: auto;
    position: relative;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .js [data-reveal] {
    opacity: 1;
    transform: none;
  }

  .js [data-scene],
  .js [data-scene]::after,
  .js .hero[data-scene] .visual-shell,
  .js .insights-section[data-scene] .insight-orbit,
  .js .contact[data-scene] .contact-arc {
    filter: none;
    opacity: 1;
    transform: none;
  }

  .js [data-story] [data-story-item] {
    filter: none;
    opacity: 1;
    scale: 1;
    translate: none;
  }
}
