:root {
  --ink: #111217;
  --ink-2: #292c33;
  --muted: #6c727c;
  --quiet: #9aa0a9;
  --paper: #fff;
  --wash: #faf8f6;
  --line: rgba(17, 18, 23, 0.12);
  --line-strong: rgba(17, 18, 23, 0.22);
  --orange: #e94b25;
  --coral: #f06b3e;
  --pink: #c51f62;
  --plum: #6c265e;
  --teal: #087f8c;
  --green: #6d8f31;
  --radius: 8px;
  --max: 1200px;
  --shadow: 0 28px 90px rgba(17, 18, 23, 0.10);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    Arial, sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(17, 18, 23, 0.045) 1px, transparent 1px),
    linear-gradient(rgba(17, 18, 23, 0.035) 1px, transparent 1px),
    #fff;
  background-size: 96px 96px;
  mask-image: linear-gradient(180deg, black, transparent 76%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 1) 58%),
    linear-gradient(135deg, rgba(233, 75, 37, 0.055), transparent 32%),
    linear-gradient(245deg, rgba(8, 127, 140, 0.045), transparent 34%);
}

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

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

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

h1,
h2,
h3 {
  color: var(--ink);
  font-weight: 820;
  letter-spacing: 0;
  line-height: 1;
}

h2 {
  font-size: clamp(2.25rem, 4vw, 4.9rem);
}

h3 {
  font-size: clamp(1.05rem, 1.35vw, 1.35rem);
}

p {
  color: var(--muted);
  font-size: 1rem;
}

button {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 50;
  width: min(var(--max), calc(100% - 2rem));
  min-height: 58px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 0.35rem;
  border: 1px solid rgba(17, 18, 23, 0.10);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 20px 60px rgba(17, 18, 23, 0.08);
  backdrop-filter: blur(20px);
  transform: translateX(-50%);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
  min-width: 0;
  padding-left: 0.25rem;
}

.brand img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  filter: drop-shadow(0 10px 24px rgba(197, 31, 98, 0.18));
}

.brand span {
  display: grid;
  line-height: 0.95;
}

.brand strong {
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 820;
}

.brand small {
  margin-top: 0.18rem;
  color: var(--orange);
  font-size: 0.74rem;
  font-weight: 820;
}

.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 0.18rem;
}

.site-nav a,
.header-cta,
.button,
.cta-strip a,
.question-lab button {
  transition:
    transform 160ms ease,
    background 160ms ease,
    border-color 160ms ease,
    color 160ms ease,
    box-shadow 160ms ease;
}

.site-nav a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.92rem;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 780;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  background: var(--ink);
  color: #fff;
}

.header-cta {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 1.1rem;
  border-radius: 999px;
  background: var(--ink);
  color: white;
  font-weight: 820;
  box-shadow: 0 18px 36px rgba(17, 18, 23, 0.16);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 99px;
  background: currentColor;
}

.section-pad {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(5rem, 9vw, 9rem) 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--pink);
  font-size: 0.72rem;
  font-weight: 880;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 0.54rem;
  height: 0.54rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--orange), var(--pink));
  box-shadow: 0 0 0 6px rgba(197, 31, 98, 0.08);
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 1.12rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 850;
  text-align: center;
}

.button.primary {
  background: linear-gradient(135deg, var(--orange), var(--pink));
  color: white;
  box-shadow: 0 20px 44px rgba(197, 31, 98, 0.22);
}

.button.secondary {
  border-color: var(--line);
  background: #fff;
  color: var(--ink);
}

.button:hover,
.header-cta:hover,
.cta-strip a:hover {
  transform: translateY(-2px);
}

.hero {
  position: relative;
  width: 100%;
  min-height: 94vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 6.4rem 1rem 3rem;
  background: #fff;
  isolation: isolate;
}

.hero-with-image {
  min-height: 96vh;
  padding-top: clamp(6.8rem, 9vh, 8.2rem);
  padding-bottom: clamp(4.8rem, 8vh, 7rem);
  background: #f6f8f8;
}

.hero-with-image::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82) 0%, rgba(255, 255, 255, 0.34) 34%, rgba(255, 255, 255, 0.52) 68%, #ffffff 100%),
    radial-gradient(circle at 50% 44%, rgba(255, 255, 255, 0.10), rgba(255, 255, 255, 0.82) 72%);
  pointer-events: none;
}

.hero-image {
  position: absolute;
  inset: 0;
  z-index: -4;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.05) contrast(1.02);
  transform: scale(1.012);
}

.hero-with-image .hero-field {
  opacity: 0.56;
  mix-blend-mode: multiply;
}

.hero-field {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.hero-field::before,
.hero-field::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(86vw, 980px);
  aspect-ratio: 1;
  border: 1px solid rgba(17, 18, 23, 0.08);
  border-radius: 50%;
  transform: translate(-50%, -52%);
}

.hero-field::after {
  width: min(66vw, 720px);
  border-color: rgba(197, 31, 98, 0.12);
  transform: translate(-50%, -52%) rotate(18deg);
}

.hero-field span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(100vw, 1140px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(17, 18, 23, 0.12), transparent);
  transform-origin: center;
}

.hero-field span:nth-child(1) {
  transform: translate(-50%, -50%) rotate(0deg);
}

.hero-field span:nth-child(2) {
  transform: translate(-50%, -50%) rotate(45deg);
}

.hero-field span:nth-child(3) {
  transform: translate(-50%, -50%) rotate(90deg);
}

.hero-field span:nth-child(4) {
  transform: translate(-50%, -50%) rotate(135deg);
}

.hero-art {
  width: min(100%, 980px);
  display: grid;
  justify-items: center;
  text-align: center;
}

.core-visual {
  position: relative;
  width: min(62vh, 52vw, 520px);
  min-width: 320px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  isolation: isolate;
}

.hero-core {
  width: min(48vh, 46vw, 500px);
}

.hero-with-image .hero-core {
  width: min(28vh, 24vw, 260px);
  min-width: 178px;
}

.core-logo {
  position: relative;
  z-index: 3;
  width: 72%;
  height: 72%;
  object-fit: contain;
  border-radius: 50%;
  filter: drop-shadow(0 36px 90px rgba(197, 31, 98, 0.20));
  animation: coreBreath 4.8s ease-in-out infinite;
}

.hero-with-image .core-logo {
  filter: drop-shadow(0 28px 72px rgba(197, 31, 98, 0.30));
}

.core-canvas {
  position: absolute;
  inset: -2%;
  z-index: 4;
  width: 104%;
  height: 104%;
  mix-blend-mode: multiply;
  opacity: 0.96;
}

.core-rings {
  position: absolute;
  inset: 3%;
  z-index: 1;
  border-radius: 50%;
  border: 1px solid rgba(197, 31, 98, 0.16);
  box-shadow:
    inset 0 0 0 24px rgba(233, 75, 37, 0.026),
    0 32px 100px rgba(17, 18, 23, 0.08);
  animation: slowSpin 18s linear infinite;
}

.core-rings::before,
.core-rings::after {
  content: "";
  position: absolute;
  border-radius: inherit;
}

.core-rings::before {
  inset: 9%;
  border: 1px solid rgba(233, 75, 37, 0.14);
  border-left-color: transparent;
  border-bottom-color: transparent;
  animation: slowSpin 13s linear reverse infinite;
}

.core-rings::after {
  inset: 20%;
  border: 1px solid rgba(8, 127, 140, 0.18);
  border-top-color: transparent;
  border-right-color: transparent;
  animation: slowSpin 21s linear infinite;
}

.orbit-dot {
  position: absolute;
  z-index: 5;
  width: 0.72rem;
  height: 0.72rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--orange), var(--pink));
  box-shadow: 0 0 22px rgba(197, 31, 98, 0.44);
}

.dot-a {
  top: 15%;
  left: 48%;
  animation: dotOrbit 8s linear infinite;
}

.dot-b {
  top: 51%;
  right: 13%;
  background: linear-gradient(135deg, var(--teal), var(--green));
  animation: dotOrbit 10s linear reverse infinite;
}

.dot-c {
  left: 18%;
  bottom: 24%;
  animation: dotOrbit 12s linear infinite;
}

.scan-line {
  position: absolute;
  inset: 8%;
  z-index: 6;
  border-radius: 50%;
  overflow: hidden;
  pointer-events: none;
}

.scan-line::before {
  content: "";
  position: absolute;
  inset: -14%;
  background: linear-gradient(112deg, transparent 30%, rgba(255, 255, 255, 0.92), transparent 64%);
  transform: translateX(-125%) rotate(8deg);
  animation: scan 5.4s ease-in-out infinite;
}

.hero-wordmark {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.25em;
  margin-top: clamp(0.7rem, 1.8vh, 1.2rem);
  color: var(--ink);
  font-size: clamp(3.4rem, 7vw, 7.4rem);
  line-height: 0.84;
  letter-spacing: 0;
}

.hero-with-image .hero-wordmark {
  margin-top: clamp(0.45rem, 1.2vh, 0.8rem);
  font-size: 5.25rem;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.86);
}

.hero-wordmark .thin {
  color: rgba(17, 18, 23, 0.58);
  font-weight: 260;
}

.hero-wordmark .core {
  color: var(--orange);
  font-weight: 420;
}

.hero-wordmark .num {
  color: var(--pink);
  font-weight: 850;
}

.hero-signal {
  margin-top: clamp(1rem, 2vh, 1.5rem);
  max-width: 940px;
  color: var(--ink);
  font-size: clamp(1.55rem, 3vw, 3.05rem);
  font-weight: 850;
  line-height: 1.02;
}

.hero-with-image .hero-signal {
  max-width: 850px;
  font-size: 4.35rem;
  line-height: 0.96;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.74);
}

.hero-kicker {
  margin-top: clamp(0.9rem, 2vh, 1.25rem);
  color: var(--pink);
  font-size: 0.78rem;
  font-weight: 880;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-with-image .hero-kicker {
  margin-top: clamp(0.75rem, 1.5vh, 1rem);
}

.hero-subcopy {
  max-width: 760px;
  margin-top: 0.75rem;
  color: var(--muted);
  font-size: clamp(1rem, 1.3vw, 1.18rem);
  font-weight: 650;
}

.hero-with-image .hero-subcopy {
  max-width: 650px;
  color: rgba(45, 48, 56, 0.82);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.72);
}

.hero-actions-main {
  justify-content: center;
  margin-top: clamp(1.1rem, 2.4vh, 1.7rem);
}

.cta-strip {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.2rem;
  align-items: center;
  width: min(var(--max), calc(100% - 2rem));
  margin: -2.4rem auto 0;
  padding: 1.1rem 1.2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.cta-strip p {
  color: var(--muted);
  font-weight: 720;
}

.cta-strip strong {
  display: block;
  margin-top: 0.16rem;
  color: var(--ink);
  font-size: 1.08rem;
}

.cta-strip nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.cta-strip a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.95rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 850;
}

.cta-strip a:first-child {
  border-color: transparent;
  background: var(--ink);
  color: #fff;
}

.section-head {
  display: grid;
  gap: 1rem;
  max-width: 920px;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

.section-head.narrow {
  max-width: 780px;
}

.section-head p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(1rem, 1.3vw, 1.17rem);
}

.has-reveal [data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 620ms ease,
    transform 620ms ease;
}

.has-reveal [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.level {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(480px, 1.12fr);
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: center;
}

.level-copy {
  display: grid;
  gap: 1.2rem;
}

.level-copy h2 {
  max-width: 760px;
}

.level-copy p:not(.eyebrow) {
  max-width: 660px;
  color: var(--ink-2);
  font-size: clamp(1rem, 1.35vw, 1.18rem);
}

.level-orbit {
  position: relative;
  min-height: 620px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(17, 18, 23, 0.045) 1px, transparent 1px),
    linear-gradient(rgba(17, 18, 23, 0.035) 1px, transparent 1px),
    linear-gradient(135deg, rgba(233, 75, 37, 0.05), transparent 42%),
    linear-gradient(315deg, rgba(8, 127, 140, 0.055), transparent 48%),
    #fff;
  background-size:
    44px 44px,
    44px 44px,
    auto,
    auto,
    auto;
}

.level-orbit::before,
.level-orbit::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  border: 1px dashed rgba(17, 18, 23, 0.16);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.level-orbit::before {
  width: min(72%, 430px);
  aspect-ratio: 1;
  animation: mapRingSpin 34s linear infinite;
}

.level-orbit::after {
  width: min(48%, 290px);
  aspect-ratio: 1;
  border-color: rgba(8, 127, 140, 0.18);
  animation: mapRingSpin 24s linear reverse infinite;
}

.level-core-node {
  position: relative;
  z-index: 3;
  width: 188px;
  height: 188px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 0.45rem;
  border-radius: 50%;
  background: #111217;
  color: #fff;
  text-align: center;
  box-shadow: 0 28px 80px rgba(17, 18, 23, 0.18);
}

.level-core-node span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
  font-weight: 850;
}

.level-core-node strong {
  max-width: 130px;
  font-size: 1.08rem;
  line-height: 1.05;
}

.level-orbit article {
  position: absolute;
  z-index: 4;
  width: min(238px, 36%);
  min-height: 148px;
  display: grid;
  gap: 0.55rem;
  align-content: start;
  padding: 1rem;
  border: 1px solid rgba(17, 18, 23, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 22px 70px rgba(17, 18, 23, 0.08);
  backdrop-filter: blur(12px);
  animation: levelFloat 7s ease-in-out infinite;
  animation-delay: calc(var(--i) * -0.75s);
}

.level-orbit article:nth-of-type(1) {
  top: 7%;
  left: 50%;
  transform: translateX(-50%);
}

.level-orbit article:nth-of-type(2) {
  top: 40%;
  right: 5%;
}

.level-orbit article:nth-of-type(3) {
  bottom: 7%;
  left: 50%;
  transform: translateX(-50%);
}

.level-orbit article:nth-of-type(4) {
  top: 40%;
  left: 5%;
}

.level-orbit article span,
.shift-grid span,
.time-grid span {
  color: var(--pink);
  font-size: 0.75rem;
  font-weight: 880;
}

.level-orbit article h3,
.shift-grid h3 {
  line-height: 1.08;
}

.level-orbit article p,
.shift-grid p,
.time-grid p {
  font-size: 0.92rem;
}

.level-orbit article.is-active {
  border-color: rgba(233, 75, 37, 0.34);
  box-shadow: 0 24px 80px rgba(233, 75, 37, 0.14);
}

.shifts {
  padding-top: 0;
}

.shift-grid,
.time-grid {
  display: grid;
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

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

.shift-grid article {
  min-height: 220px;
  display: grid;
  align-content: space-between;
  gap: 1rem;
  padding: clamp(1.1rem, 2vw, 1.45rem);
  background: rgba(255, 255, 255, 0.94);
}

.shift-grid article:nth-child(even) span,
.time-grid article:nth-child(2) span {
  color: var(--teal);
}

.capability-grid,
.use-case-grid,
.differentiator-grid,
.metrics-grid {
  display: grid;
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

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

.use-case-grid,
.metrics-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.capability-grid article,
.use-case-grid article,
.differentiator-grid article,
.metrics-grid article {
  min-height: 190px;
  display: grid;
  align-content: space-between;
  gap: 1rem;
  padding: clamp(1.05rem, 2vw, 1.45rem);
  background: rgba(255, 255, 255, 0.94);
}

.capability-grid span,
.differentiator-grid span {
  color: var(--pink);
  font-size: clamp(1.02rem, 1.3vw, 1.22rem);
  font-weight: 850;
  line-height: 1.08;
}

.use-case-grid h3,
.metrics-grid h3 {
  font-size: clamp(1.16rem, 1.55vw, 1.55rem);
  line-height: 1.08;
}

.capability-grid p,
.use-case-grid p,
.differentiator-grid p,
.metrics-grid p {
  font-size: 0.94rem;
}

.differentiators,
.use-cases {
  border-top: 1px solid var(--line);
}

.recognition {
  padding-top: clamp(5rem, 8vw, 8rem);
}

.recognition-grid,
.pillar-layout,
.client-grid,
.article-grid,
.related-grid {
  display: grid;
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.recognition-grid,
.pillar-layout {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.recognition-grid article,
.pillar-layout article,
.client-grid article,
.article-card,
.timeline article,
.micro-grid article,
.related-grid a {
  background: rgba(255, 255, 255, 0.92);
}

.recognition-grid article,
.pillar-layout article {
  min-height: 260px;
  display: grid;
  align-content: space-between;
  gap: 1.4rem;
  padding: clamp(1.2rem, 2vw, 1.7rem);
}

.recognition-grid span,
.pillar-layout span,
.timeline span {
  color: var(--pink);
  font-size: 0.78rem;
  font-weight: 880;
}

.recognition-grid h3,
.pillar-layout h3,
.micro-grid h3,
.client-grid h3,
.article-card h2,
.article-card h3 {
  line-height: 1.08;
}

.pillars,
.clients {
  width: 100%;
  max-width: none;
  padding-right: max(1rem, calc((100% - var(--max)) / 2));
  padding-left: max(1rem, calc((100% - var(--max)) / 2));
  background:
    linear-gradient(180deg, #fff, rgba(250, 248, 246, 0.86) 48%, #fff),
    repeating-linear-gradient(90deg, transparent 0 95px, rgba(17, 18, 23, 0.035) 96px);
}

.pillar-layout article:nth-child(2) span,
.client-grid span,
.article-card span,
.related-grid span {
  color: var(--teal);
}

.pillar-layout article:nth-child(3) span {
  color: var(--green);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.timeline article {
  min-height: 250px;
  display: grid;
  align-content: start;
  gap: 1rem;
  padding: 1.25rem;
  position: relative;
}

.timeline article::after {
  content: "";
  position: absolute;
  left: 1.25rem;
  right: 1.25rem;
  bottom: 1rem;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), var(--pink), var(--teal));
  transform-origin: left;
  transform: scaleX(0.35);
}

.timeline p,
.micro-grid p,
.client-grid p,
.article-card p {
  font-size: 0.94rem;
}

.software-band {
  width: 100%;
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  padding-right: max(1rem, calc((100% - var(--max)) / 2));
  padding-left: max(1rem, calc((100% - var(--max)) / 2));
  background: #111217;
  color: white;
}

.software-copy {
  display: grid;
  gap: 1.3rem;
}

.software-copy h2 {
  color: #fff;
}

.software-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1rem, 1.3vw, 1.17rem);
}

.hero-actions,
.software-actions,
.footer-actions,
.contact-panel {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  align-items: center;
}

.software-copy .button.secondary,
.contact-panel .button.secondary {
  border-color: rgba(255, 255, 255, 0.20);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.system-map {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 42px 42px;
}

.system-map::before,
.system-map::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  border-radius: 50%;
  border: 1px dashed rgba(255, 255, 255, 0.18);
  transform: translate(-50%, -50%);
}

.system-map::before {
  width: 76%;
  aspect-ratio: 1;
  animation: mapRingSpin 30s linear infinite;
}

.system-map::after {
  width: 48%;
  aspect-ratio: 1;
  border-color: rgba(240, 107, 62, 0.28);
  animation: mapRingSpin 22s linear reverse infinite;
}

.system-map strong {
  position: relative;
  z-index: 3;
  width: 178px;
  height: 178px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--pink));
  color: white;
  font-size: 1.28rem;
  box-shadow: 0 28px 70px rgba(197, 31, 98, 0.32);
}

.system-map span {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  min-width: 90px;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.65rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.10);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.82rem;
  font-weight: 820;
  backdrop-filter: blur(8px);
  transform:
    translate(-50%, -50%)
    rotate(calc(var(--i) * 30deg))
    translateY(-218px)
    rotate(calc(var(--i) * -30deg));
  animation: modulePulse 6.4s ease-in-out infinite;
  animation-delay: calc(var(--i) * -0.38s);
}

.time-quality {
  width: 100%;
  max-width: none;
  padding-right: max(1rem, calc((100% - var(--max)) / 2));
  padding-left: max(1rem, calc((100% - var(--max)) / 2));
  background:
    linear-gradient(180deg, #fff, rgba(250, 248, 246, 0.92) 52%, #fff),
    repeating-linear-gradient(90deg, transparent 0 95px, rgba(17, 18, 23, 0.035) 96px);
}

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

.time-grid article {
  position: relative;
  min-height: 220px;
  display: grid;
  align-content: end;
  gap: 1rem;
  overflow: hidden;
  padding: clamp(1.2rem, 2.2vw, 1.8rem);
  background: #fff;
}

.time-grid article::before {
  content: "";
  position: absolute;
  left: 1rem;
  right: 1rem;
  top: 1rem;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--pink), var(--teal), var(--green));
  transform-origin: left;
  animation: signalSweep 4.8s ease-in-out infinite;
  animation-delay: calc(var(--i) * -0.7s);
}

.question-section,
.innovation {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1.18fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.question-lab {
  position: relative;
  min-height: 330px;
  display: grid;
  align-content: center;
  gap: 1.5rem;
  padding: clamp(1.4rem, 3vw, 2.4rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(233, 75, 37, 0.055), transparent 46%),
    linear-gradient(315deg, rgba(8, 127, 140, 0.045), transparent 50%),
    #fff;
  box-shadow: var(--shadow);
}

.question-lab::before {
  content: "";
  position: absolute;
  inset: 1rem;
  border: 1px solid rgba(17, 18, 23, 0.06);
  border-radius: 6px;
  pointer-events: none;
}

.question-lab p {
  color: var(--ink);
  font-size: clamp(1.5rem, 3vw, 2.75rem);
  font-weight: 850;
  line-height: 1.05;
}

.question-lab p.is-changing {
  animation: questionSwap 420ms ease;
}

.question-lab button {
  justify-self: start;
  min-height: 44px;
  padding: 0 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--ink);
  color: white;
  cursor: pointer;
  font-weight: 850;
}

.micro-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.micro-grid article {
  min-height: 188px;
  padding: 1.12rem;
}

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

.client-grid a {
  min-height: 245px;
  display: grid;
  align-content: space-between;
  gap: 0.9rem;
  padding: 1.2rem;
}

.innovation-copy {
  display: grid;
  gap: 1.1rem;
}

.innovation-copy p {
  color: var(--ink-2);
  font-size: clamp(1rem, 1.3vw, 1.18rem);
}

.innovation-copy .button {
  justify-self: start;
}

.blog-preview,
.related-posts {
  border-top: 1px solid var(--line);
}

.article-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  border: 0;
  background: transparent;
}

.article-card {
  min-height: 270px;
  border: 1px solid var(--line);
}

.article-card:hover,
.related-grid a:hover,
.client-grid a:hover {
  position: relative;
  z-index: 2;
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.article-card a {
  min-height: inherit;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 0.8rem;
  padding: 1.16rem;
}

.article-card h2,
.article-card h3 {
  font-size: clamp(1.25rem, 1.7vw, 1.75rem);
}

.article-card small {
  color: var(--quiet);
  font-weight: 820;
}

.center-action {
  display: flex;
  justify-content: center;
  margin-top: 2.2rem;
}

.final-cta {
  width: 100%;
  max-width: none;
  padding-right: max(1rem, calc((100% - var(--max)) / 2));
  padding-left: max(1rem, calc((100% - var(--max)) / 2));
  padding-bottom: clamp(5rem, 8vw, 8rem);
  background: #111217;
  color: white;
}

.final-card {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 2rem;
  align-items: center;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: white;
  box-shadow: none;
}

.final-card h2 {
  max-width: 880px;
  color: #fff;
}

.final-card p:not(.eyebrow) {
  max-width: 780px;
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.72);
}

.contact-panel {
  display: grid;
}

.site-footer {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--line);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: end;
}

.footer-main h2 {
  max-width: 840px;
  margin-top: 0.8rem;
  font-size: clamp(2rem, 4vw, 4rem);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 2rem;
  border: 1px solid var(--line);
  background: var(--line);
}

.footer-grid div {
  min-height: 92px;
  display: grid;
  align-content: center;
  gap: 0.35rem;
  padding: 1rem;
  background: #fff;
}

.footer-grid span {
  color: var(--quiet);
  font-size: 0.78rem;
  font-weight: 820;
}

.footer-grid a {
  font-weight: 850;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.4rem;
  color: var(--quiet);
}

.footer-bottom p {
  font-size: 0.88rem;
}

.blog-hero {
  min-height: 76vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  padding-top: 8rem;
}

.blog-hero h1,
.post-header h1 {
  max-width: 980px;
  margin-top: 0.8rem;
  font-size: clamp(3rem, 7vw, 6.7rem);
}

.blog-hero p:not(.eyebrow),
.post-header > p:not(.eyebrow) {
  max-width: 820px;
  margin-top: 1.1rem;
  color: var(--ink-2);
  font-size: clamp(1rem, 1.35vw, 1.22rem);
}

.blog-core {
  width: min(360px, 80vw);
}

.all-articles {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.post {
  padding-top: 8rem;
}

.post-header {
  max-width: 980px;
  display: grid;
  gap: 1rem;
  margin-bottom: 3rem;
}

.back-link {
  width: max-content;
  color: var(--teal);
  font-weight: 850;
}

.post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  color: var(--quiet);
  font-size: 0.92rem;
  font-weight: 800;
}

.post-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.post-body {
  max-width: 760px;
}

.post-body .post-intro {
  color: var(--ink);
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  font-weight: 720;
  line-height: 1.3;
}

.post-body section {
  margin-top: 2.7rem;
}

.post-body h2 {
  margin-bottom: 0.9rem;
  font-size: clamp(2rem, 3vw, 3rem);
}

.post-body p {
  margin-top: 1rem;
  color: var(--ink-2);
  font-size: 1.08rem;
}

.post-aside {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 1rem;
  order: 2;
}

.post-core {
  width: 280px;
  justify-self: center;
}

.aside-cta {
  display: grid;
  gap: 0.8rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 18px 58px rgba(17, 18, 23, 0.08);
}

.aside-cta h2 {
  font-size: 1.35rem;
}

.aside-cta p {
  font-size: 0.92rem;
}

.post-faq details {
  border-top: 1px solid var(--line);
  padding: 1rem 0;
}

.post-faq details:last-child {
  border-bottom: 1px solid var(--line);
}

.post-faq summary {
  cursor: pointer;
  color: var(--ink);
  font-weight: 850;
}

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

.related-grid a {
  min-height: 132px;
  display: grid;
  gap: 0.7rem;
  padding: 1rem;
}

@keyframes slowSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes coreBreath {
  0%,
  100% {
    transform: scale(0.99) rotate(-0.7deg);
  }
  50% {
    transform: scale(1.024) rotate(0.7deg);
  }
}

@keyframes dotOrbit {
  to {
    transform: rotate(360deg) translateX(1.2rem) rotate(-360deg);
  }
}

@keyframes levelFloat {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -8px;
  }
}

@keyframes mapRingSpin {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes modulePulse {
  0%,
  100% {
    box-shadow: 0 0 0 rgba(255, 255, 255, 0);
    opacity: 0.92;
  }
  50% {
    box-shadow: 0 18px 42px rgba(233, 75, 37, 0.12);
    opacity: 1;
  }
}

@keyframes signalSweep {
  0%,
  100% {
    transform: scaleX(0.22);
  }
  50% {
    transform: scaleX(1);
  }
}

@keyframes scan {
  0%,
  40% {
    opacity: 0;
    transform: translateX(-125%) rotate(8deg);
  }
  52% {
    opacity: 0.72;
  }
  76%,
  100% {
    opacity: 0;
    transform: translateX(125%) rotate(8deg);
  }
}

@keyframes questionSwap {
  0% {
    opacity: 0;
    transform: translateY(12px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1120px) {
  .hero-with-image .hero-wordmark {
    font-size: 4.15rem;
  }

  .hero-with-image .hero-signal {
    max-width: 760px;
    font-size: 3.35rem;
  }

  .recognition-grid,
  .pillar-layout,
  .shift-grid,
  .capability-grid,
  .use-case-grid,
  .differentiator-grid,
  .metrics-grid,
  .timeline,
  .time-grid,
  .micro-grid,
  .client-grid,
  .article-grid,
  .all-articles,
  .related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .software-band,
  .level,
  .question-section,
  .innovation,
  .blog-hero,
  .post-layout {
    grid-template-columns: 1fr;
  }

  .level-orbit {
    min-height: 560px;
  }

  .post-aside {
    position: static;
    order: -1;
    grid-template-columns: 240px 1fr;
    align-items: center;
  }

  .footer-main,
  .final-card {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 840px) {
  .site-header {
    top: 10px;
    grid-template-columns: auto 1fr auto;
    width: calc(100% - 1rem);
  }

  .site-header::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 1.45rem;
    z-index: 3;
    width: 20px;
    height: 14px;
    border-top: 2px solid var(--ink);
    border-bottom: 2px solid var(--ink);
    background: linear-gradient(var(--ink), var(--ink)) center / 20px 2px no-repeat;
    pointer-events: none;
    transform: translateY(-50%);
  }

  .nav-toggle {
    position: absolute;
    top: 50%;
    right: 0.35rem;
    z-index: 2;
    display: block;
    grid-column: 3;
    justify-self: end;
    transform: translateY(-50%);
  }

  .site-nav {
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    display: none;
    padding: 0.65rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    justify-content: flex-start;
    border-radius: var(--radius);
  }

  .header-cta {
    display: none;
  }

  .hero {
    min-height: 92vh;
    padding-top: 6.4rem;
  }

  .hero-with-image {
    min-height: 92vh;
    padding-bottom: 4.2rem;
  }

  .hero-with-image::before {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.90) 0%, rgba(255, 255, 255, 0.50) 34%, rgba(255, 255, 255, 0.76) 72%, #ffffff 100%),
      radial-gradient(circle at 50% 36%, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.86) 78%);
  }

  .hero-with-image .hero-core {
    width: min(38vw, 220px);
    min-width: 150px;
  }

  .hero-wordmark {
    display: grid;
    gap: 0.02em;
    max-width: 100%;
    font-size: clamp(3rem, 13vw, 5.4rem);
    line-height: 0.86;
  }

  .hero-with-image .hero-wordmark {
    font-size: 3.35rem;
  }

  .hero-signal {
    max-width: 320px;
  }

  .hero-with-image .hero-signal {
    max-width: 360px;
    font-size: 2.6rem;
  }

  .hero-with-image .hero-kicker,
  .hero-with-image .hero-subcopy {
    max-width: 340px;
  }

  .hero-kicker,
  .hero-subcopy {
    max-width: 330px;
    padding: 0 0.25rem;
    overflow-wrap: anywhere;
  }

  .cta-strip {
    grid-template-columns: 1fr;
    margin-top: 0;
  }

  .cta-strip nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .recognition-grid,
  .pillar-layout,
  .shift-grid,
  .capability-grid,
  .use-case-grid,
  .differentiator-grid,
  .metrics-grid,
  .timeline,
  .time-grid,
  .micro-grid,
  .client-grid,
  .article-grid,
  .all-articles,
  .related-grid {
    grid-template-columns: 1fr;
  }

  .system-map {
    min-height: 440px;
  }

  .level-orbit {
    min-height: auto;
    display: grid;
    gap: 1px;
    padding: 1px;
    background: var(--line);
  }

  .level-orbit::before,
  .level-orbit::after {
    display: none;
  }

  .level-core-node,
  .level-orbit article,
  .level-orbit article:nth-of-type(1),
  .level-orbit article:nth-of-type(2),
  .level-orbit article:nth-of-type(3),
  .level-orbit article:nth-of-type(4) {
    position: relative;
    inset: auto;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: auto;
    min-height: 0;
    border-radius: 0;
    transform: none;
  }

  .level-core-node {
    width: 100%;
    height: auto;
    min-height: 132px;
    border-radius: var(--radius) var(--radius) 0 0;
  }

  .level-orbit article {
    box-shadow: none;
    animation: none;
  }

  .system-map span {
    min-width: 76px;
    min-height: 34px;
    font-size: 0.72rem;
    transform:
      translate(-50%, -50%)
      rotate(calc(var(--i) * 30deg))
      translateY(-172px)
      rotate(calc(var(--i) * -30deg));
  }

  .system-map strong {
    width: 138px;
    height: 138px;
    font-size: 1rem;
  }

  .post-aside {
    grid-template-columns: 1fr;
  }

  .post-core {
    width: 220px;
  }
}

@media (max-width: 560px) {
  .brand span {
    display: none;
  }

  .section-pad,
  .site-footer,
  .cta-strip {
    width: calc(100% - 1.25rem);
  }

  .core-visual,
  .hero-core {
    width: min(84vw, 360px);
    min-width: 0;
  }

  .cta-strip nav {
    grid-template-columns: 1fr;
  }

  .button,
  .contact-panel .button {
    width: 100%;
  }

  .hero-actions-main {
    width: 100%;
    max-width: 330px;
    display: grid;
  }

  .hero-wordmark {
    font-size: 3rem;
  }

  .hero-with-image .hero-wordmark {
    font-size: 2.75rem;
  }

  .hero-signal {
    max-width: 310px;
  }

  .hero-with-image .hero-signal {
    max-width: 330px;
    font-size: 2.1rem;
  }

  .hero-with-image .hero-kicker,
  .hero-with-image .hero-subcopy {
    max-width: 310px;
  }

  .hero-kicker,
  .hero-subcopy {
    max-width: 300px;
  }

  .software-band,
  .pillars,
  .clients,
  .time-quality {
    padding-right: 0.625rem;
    padding-left: 0.625rem;
  }

  .system-map {
    min-height: 360px;
  }

  .system-map span {
    transform:
      translate(-50%, -50%)
      rotate(calc(var(--i) * 30deg))
      translateY(-138px)
      rotate(calc(var(--i) * -30deg));
  }

  .question-lab {
    min-height: 280px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    display: grid;
  }
}

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