@import "tailwindcss";

:root {
  --ink: #090a0b;
  --ink-soft: #0f1112;
  --ink-raised: #151719;
  --paper: #f1eee7;
  --paper-soft: #e8e4dc;
  --paper-deep: #dcd7cd;
  --white: #ffffff;
  --orange: #eb7420;
  --orange-bright: #ff9449;
  --orange-soft: #ffc28e;
  --sage: #93a89d;
  --green: #6ea982;
  --muted-dark: #898683;
  --line-dark: rgba(255, 255, 255, 0.12);
  --line-dark-soft: rgba(255, 255, 255, 0.075);
  --line-paper: rgba(9, 10, 11, 0.14);
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
  --page: min(1440px, calc(100vw - 8vw));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--paper);
  font-family:
    var(--font-geist-sans), "Hiragino Kaku Gothic ProN", "Hiragino Sans",
    "Yu Gothic", "YuGothic", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

main {
  overflow: clip;
}

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

button,
a,
summary {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

::selection {
  background: var(--orange);
  color: var(--white);
}

:focus-visible {
  outline: 2px solid var(--orange-bright);
  outline-offset: 4px;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 14px;
  left: 50%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  width: min(1180px, calc(100vw - 32px));
  min-height: 56px;
  padding: 6px 7px 6px 20px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  background: rgba(12, 13, 14, 0.78);
  box-shadow:
    0 18px 50px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px) saturate(130%);
  transform: translateX(-50%);
}

.wordmark {
  width: max-content;
  font-size: 23px;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.wordmark span {
  color: var(--orange);
}

.site-header nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
}

.site-header nav a {
  position: relative;
  min-height: 40px;
  padding: 0 15px;
  overflow: hidden;
  border-radius: 999px;
  color: rgba(241, 238, 231, 0.58);
  font-size: 11px;
  font-weight: 460;
  line-height: 40px;
  transition:
    color 180ms var(--ease-out),
    background-color 180ms var(--ease-out);
}

.header-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: var(--paper);
  color: var(--ink);
  font-size: 11px;
  font-weight: 500;
  transition:
    color 180ms var(--ease-out),
    background-color 180ms var(--ease-out),
    transform 140ms var(--ease-out);
}

.header-cta span {
  color: var(--orange);
}

.header-cta:active,
.button:active,
.system-tabs button:active,
.stepper-track button:active {
  transform: scale(0.97);
}

.hero {
  position: relative;
  min-height: max(880px, 100svh);
  padding: clamp(120px, 13vh, 150px) 4vw 96px;
  overflow: hidden;
  background:
    radial-gradient(circle at 77% 37%, rgba(235, 116, 32, 0.095), transparent 27%),
    radial-gradient(circle at 50% 120%, rgba(105, 120, 111, 0.08), transparent 42%),
    var(--ink);
}

.hero-grid,
.cta-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.36;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.042) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.042) 1px, transparent 1px);
  background-size: 74px 74px;
  mask-image: linear-gradient(to bottom, black, transparent 88%);
}

.hero-grid::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  content: "";
  background: rgba(255, 255, 255, 0.12);
}

.hero-glow {
  position: absolute;
  top: 21%;
  right: 18%;
  width: 28vw;
  height: 28vw;
  border: 1px solid rgba(235, 116, 32, 0.12);
  border-radius: 50%;
  pointer-events: none;
  filter: blur(1px);
  box-shadow:
    0 0 120px rgba(235, 116, 32, 0.04),
    inset 0 0 120px rgba(235, 116, 32, 0.025);
}

.hero-copy {
  position: relative;
  z-index: 5;
  width: 56%;
  max-width: 900px;
}

.eyebrow,
.kicker,
.mono-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 28px;
  color: var(--orange-bright);
  font-family: var(--font-geist-mono), monospace;
  font-size: 10px;
  font-weight: 460;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 5px rgba(235, 116, 32, 0.12);
  animation: signal 2.2s ease-out infinite;
}

@keyframes signal {
  0%,
  100% {
    box-shadow: 0 0 0 3px rgba(235, 116, 32, 0.1);
  }

  50% {
    box-shadow: 0 0 0 9px rgba(235, 116, 32, 0.01);
  }
}

.hero h1 {
  margin: 0;
  max-width: 980px;
  font-size: clamp(2.9rem, 5.2vw, 4.1rem);
  font-weight: 460;
  letter-spacing: -0.02em;
  line-height: 1.14;
}

.hero h1 span,
.final-cta h2 span {
  color: var(--orange);
}

.hero-lead {
  max-width: 670px;
  margin: 38px 0 0;
  color: rgba(241, 238, 231, 0.69);
  font-size: clamp(15px, 1.22vw, 18px);
  line-height: 1.95;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 38px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 44px;
  min-height: 56px;
  padding: 0 21px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 460;
  transition:
    transform 140ms var(--ease-out),
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.button-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 10px 30px rgba(235, 116, 32, 0.16);
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.025);
}

.availability {
  max-width: 610px;
  margin: 19px 0 0;
  color: rgba(241, 238, 231, 0.4);
  font-size: 10px;
  line-height: 1.7;
}

.availability span {
  margin-right: 7px;
  color: var(--orange);
  font-size: 7px;
}

.hero-visual {
  position: absolute;
  z-index: 2;
  top: 104px;
  right: 2.2vw;
  bottom: 150px;
  width: min(50vw, 820px);
  min-width: 540px;
}

.sphere-shell {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 610px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.025), transparent 35%),
    rgba(8, 9, 10, 0.44);
  box-shadow:
    0 40px 100px rgba(0, 0, 0, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(8px);
}

.sphere-shell::before,
.sphere-shell::after {
  position: absolute;
  z-index: 2;
  width: 54px;
  height: 54px;
  content: "";
  pointer-events: none;
}

.sphere-shell::before {
  top: 16px;
  right: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  border-right: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 0 12px 0 0;
}

.sphere-shell::after {
  bottom: 16px;
  left: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  border-left: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 0 0 0 12px;
}

.sphere-topline,
.sphere-caption {
  position: absolute;
  z-index: 3;
  left: 25px;
  right: 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-geist-mono), monospace;
  font-size: 9px;
  letter-spacing: 0.1em;
}

.sphere-topline {
  top: 22px;
  color: rgba(241, 238, 231, 0.35);
}

.sphere-topline span:first-child {
  color: var(--paper);
}

.sphere-topline i {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--orange);
}

.sphere-shell canvas {
  width: 100%;
  height: 100%;
  cursor: grab;
  touch-action: none;
}

.sphere-shell canvas:active {
  cursor: grabbing;
}

.sphere-shell canvas:focus-visible {
  outline: 1px solid var(--orange);
  outline-offset: -5px;
}

.sphere-caption {
  bottom: 22px;
  align-items: flex-end;
}

.sphere-caption div {
  display: grid;
  gap: 4px;
}

.sphere-caption small {
  color: rgba(241, 238, 231, 0.32);
  font-size: 8px;
}

.sphere-caption strong {
  color: var(--paper);
  font-family: var(--font-geist-sans), sans-serif;
  font-size: 19px;
  letter-spacing: -0.015em;
}

.sphere-caption > span {
  color: var(--orange-bright);
}

.sphere-hint {
  position: absolute;
  z-index: 3;
  top: 50%;
  right: 16px;
  margin: 0;
  color: rgba(241, 238, 231, 0.24);
  font-family: var(--font-geist-mono), monospace;
  font-size: 8px;
  letter-spacing: 0.1em;
  writing-mode: vertical-rl;
}

.hero-signal-card {
  position: absolute;
  z-index: 6;
  display: grid;
  gap: 4px;
  min-width: 150px;
  padding: 13px 15px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 13px;
  background: rgba(15, 17, 18, 0.84);
  box-shadow: 0 14px 45px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(14px);
}

.hero-signal-card small {
  color: var(--orange-bright);
  font-family: var(--font-geist-mono), monospace;
  font-size: 7px;
  letter-spacing: 0.1em;
}

.hero-signal-card strong {
  font-size: 11px;
  font-weight: 460;
}

.hero-signal-card span {
  color: rgba(241, 238, 231, 0.38);
  font-family: var(--font-geist-mono), monospace;
  font-size: 7px;
}

.signal-card-a {
  top: 25%;
  left: -15px;
}

.signal-card-b {
  top: 48%;
  right: -7px;
}

.signal-card-c {
  right: 9%;
  bottom: 14%;
}

.hero-foot {
  position: absolute;
  z-index: 7;
  right: 4vw;
  bottom: 28px;
  left: 4vw;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.hero-foot div {
  display: grid;
  gap: 7px;
  padding: 17px 18px 0 0;
}

.hero-foot div + div {
  padding-left: 18px;
  border-left: 1px solid rgba(255, 255, 255, 0.13);
}

.hero-foot small {
  color: rgba(241, 238, 231, 0.34);
  font-family: var(--font-geist-mono), monospace;
  font-size: 8px;
  letter-spacing: 0.1em;
}

.hero-foot strong {
  font-size: 12px;
  font-weight: 420;
}

.promise-rail {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 92px;
  padding: 20px 3vw;
  overflow: hidden;
  background: var(--orange);
  color: var(--white);
}

.promise-rail span {
  margin-right: 9px;
  font-family: var(--font-geist-mono), monospace;
  font-size: 8px;
  letter-spacing: 0.1em;
  opacity: 0.64;
}

.promise-rail b {
  font-size: clamp(13px, 1.35vw, 18px);
  font-weight: 460;
  white-space: nowrap;
}

.promise-rail i {
  margin: 0 clamp(12px, 2.6vw, 40px);
  font-size: 18px;
  font-style: normal;
  opacity: 0.42;
}

.section {
  padding: clamp(56px, 5vw, 80px) 4vw;
}

.section-heading {
  max-width: 980px;
}

.section-heading .kicker,
.ontology-detail-head .kicker,
.comparison-intro .kicker,
.workforce-sticky .kicker,
.faq-heading .kicker,
.final-cta .kicker {
  margin-bottom: 24px;
}

.section h2,
.final-cta h2 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 460;
  letter-spacing: -0.02em;
  line-height: 1.14;
}

.section-heading > p:last-child,
.system-heading > p:last-child,
.leaders-heading > p:last-child,
.faq-heading > p:last-child,
.final-cta > p {
  max-width: 790px;
  margin: 30px 0 0;
  color: #625f59;
  font-size: clamp(14px, 1.2vw, 17px);
  line-height: 2;
}

.split-heading {
  display: grid;
  grid-template-columns: 1.35fr 0.75fr;
  gap: 7vw;
  max-width: none;
}

.split-heading > p {
  align-self: end;
  margin-bottom: 5px;
}

.product-definition-section {
  background: var(--paper);
  color: var(--ink);
}

.product-definition-band {
  display: grid;
  grid-template-columns: 0.32fr 0.58fr 1.1fr;
  gap: 3vw;
  align-items: center;
  margin-top: 76px;
  padding: 28px 32px;
  border-radius: 18px;
  background:
    radial-gradient(circle at 84% 50%, rgba(235, 116, 32, 0.17), transparent 28%),
    var(--ink);
  color: var(--paper);
}

.product-definition-band > span,
.product-definition-band > strong {
  font-family: var(--font-geist-mono), monospace;
  font-size: 9px;
  letter-spacing: 0.1em;
}

.product-definition-band > span {
  color: rgba(241, 238, 231, 0.4);
}

.product-definition-band > strong {
  color: var(--orange-bright);
}

.product-definition-band p {
  margin: 0;
  color: rgba(241, 238, 231, 0.7);
  font-size: clamp(14px, 1.2vw, 17px);
  line-height: 1.8;
}

.product-definition-band p b {
  color: var(--paper);
  font-weight: 460;
}

.product-layer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 14px;
  border: 1px solid var(--line-paper);
  background: var(--line-paper);
}

.product-layer-grid article {
  min-height: 390px;
  padding: clamp(26px, 3.2vw, 46px);
  background: var(--paper);
}

.product-layer-grid article > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-layer-grid article > div span {
  color: var(--orange);
  font-family: var(--font-geist-mono), monospace;
  font-size: 9px;
}

.product-layer-grid article > div small {
  color: #8b877f;
  font-family: var(--font-geist-mono), monospace;
  font-size: 7px;
  letter-spacing: 0.09em;
}

.product-layer-grid h3 {
  margin: 88px 0 19px;
  font-size: clamp(22px, 2vw, 30px);
  letter-spacing: -0.02em;
}

.product-layer-grid p {
  margin: 0;
  color: #66625c;
  font-size: 12px;
  line-height: 1.9;
}

.product-layer-grid article > b {
  display: block;
  margin-top: 30px;
  padding-top: 18px;
  border-top: 1px solid var(--line-paper);
  color: #7b4e31;
  font-family: var(--font-geist-mono), monospace;
  font-size: 8px;
  font-weight: 460;
  line-height: 1.7;
}

.problem-section {
  background: var(--paper);
  color: var(--ink);
}

.friction-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 76px;
}

.spotlight-card {
  --spotlight-x: 50%;
  --spotlight-y: 50%;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.spotlight-card::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(
    420px circle at var(--spotlight-x) var(--spotlight-y),
    rgba(235, 116, 32, 0.13),
    transparent 70%
  );
  transition: opacity 220ms ease;
}

.friction-card {
  min-height: 430px;
  padding: clamp(28px, 3.2vw, 46px);
  border: 1px solid var(--line-paper);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.15);
}

.card-index,
.usecase-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.card-index span {
  color: var(--orange);
  font-family: var(--font-geist-mono), monospace;
  font-size: 10px;
}

.card-index small,
.usecase-top > span {
  color: #8b877f;
  font-family: var(--font-geist-mono), monospace;
  font-size: 8px;
  letter-spacing: 0.1em;
}

.friction-card h3 {
  max-width: 370px;
  margin: 86px 0 20px;
  font-size: clamp(22px, 2vw, 31px);
  letter-spacing: -0.02em;
  line-height: 1.32;
}

.friction-card > p {
  margin: 0;
  color: #68645e;
  font-size: 13px;
  line-height: 1.9;
}

.friction-signal {
  display: flex;
  align-items: center;
  gap: 9px;
  width: max-content;
  margin-top: 38px;
  padding: 8px 11px;
  border: 1px solid rgba(235, 116, 32, 0.25);
  border-radius: 999px;
  color: #7d4c2d;
  font-family: var(--font-geist-mono), monospace;
  font-size: 8px;
  letter-spacing: 0.06em;
}

.friction-signal i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--orange);
}

.difference-statement {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 7vw;
  align-items: start;
  margin-top: 110px;
  padding-top: 42px;
  border-top: 1px solid var(--line-paper);
}

.difference-statement p {
  margin: 5px 0 0;
  color: #77736c;
  font-family: var(--font-geist-mono), monospace;
  font-size: 10px;
  line-height: 1.7;
}

.difference-statement strong {
  font-size: clamp(1.8rem, 3.5vw, 2.75rem);
  font-weight: 420;
  letter-spacing: -0.02em;
  line-height: 1.23;
}

.system-section {
  background:
    radial-gradient(circle at 78% 35%, rgba(235, 116, 32, 0.08), transparent 25%),
    var(--ink);
}

.system-heading > p:last-child {
  color: rgba(241, 238, 231, 0.56);
}

.system-explorer {
  margin-top: 75px;
  border: 1px solid var(--line-dark);
  border-radius: 28px;
  overflow: hidden;
  background: var(--ink-soft);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.25);
}

.system-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 7px;
  border-bottom: 1px solid var(--line-dark);
  background: rgba(255, 255, 255, 0.02);
}

.system-tabs button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 54px;
  border: 0;
  border-radius: 18px;
  background: transparent;
  color: rgba(241, 238, 231, 0.42);
  cursor: pointer;
  font-size: 12px;
  font-weight: 460;
  transition:
    color 180ms ease,
    background-color 180ms ease,
    transform 140ms var(--ease-out);
}

.system-tabs button span {
  font-family: var(--font-geist-mono), monospace;
  font-size: 8px;
  letter-spacing: 0.08em;
}

.system-tabs button[aria-selected="true"] {
  background: var(--paper);
  color: var(--ink);
}

.system-tabs button[aria-selected="true"] span {
  color: var(--orange);
}

.system-panel {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  min-height: 650px;
  animation: panel-enter 240ms var(--ease-out);
}

@keyframes panel-enter {
  from {
    opacity: 0;
    transform: translateY(7px);
  }

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

.system-panel-copy {
  padding: clamp(34px, 4.5vw, 66px);
  border-right: 1px solid var(--line-dark);
}

.system-panel-copy h3 {
  max-width: 520px;
  margin: 0;
  font-size: clamp(2rem, 3.1vw, 2.75rem);
  letter-spacing: -0.02em;
  line-height: 1.14;
}

.system-panel-copy > p:not(.mono-label) {
  margin: 28px 0 0;
  color: rgba(241, 238, 231, 0.56);
  font-size: 13px;
  line-height: 1.95;
}

.system-panel-copy dl {
  display: grid;
  margin: 48px 0 0;
}

.system-panel-copy dl div {
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 20px;
  padding: 16px 0;
  border-top: 1px solid var(--line-dark);
}

.system-panel-copy dt {
  color: var(--orange-bright);
  font-size: 11px;
  font-weight: 460;
}

.system-panel-copy dd {
  margin: 0;
  color: rgba(241, 238, 231, 0.62);
  font-size: 11px;
  line-height: 1.7;
}

.system-panel-visual {
  display: grid;
  min-width: 0;
  padding: clamp(24px, 4vw, 58px);
  background:
    linear-gradient(rgba(255, 255, 255, 0.027) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.027) 1px, transparent 1px);
  background-size: 52px 52px;
}

.business-visual,
.work-visual,
.trace-visual {
  position: relative;
  width: 100%;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: 20px;
  background: rgba(8, 9, 10, 0.76);
}

.graph-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.ring-a {
  width: 360px;
  height: 360px;
}

.ring-b {
  width: 230px;
  height: 230px;
  border-style: dashed;
}

.graph-node {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  min-width: 70px;
  min-height: 34px;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: #17191b;
  color: rgba(241, 238, 231, 0.76);
  font-size: 10px;
}

.graph-core {
  top: 50%;
  left: 50%;
  min-width: 92px;
  min-height: 92px;
  border-color: var(--orange);
  background: rgba(235, 116, 32, 0.12);
  color: var(--paper);
  font-size: 15px;
  font-weight: 460;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 48px rgba(235, 116, 32, 0.12);
}

.node-client {
  top: 16%;
  left: 18%;
}

.node-person {
  top: 20%;
  right: 15%;
}

.node-project {
  right: 10%;
  bottom: 22%;
}

.node-metric {
  bottom: 13%;
  left: 25%;
}

.node-rule {
  top: 47%;
  left: 7%;
  border-color: rgba(235, 116, 32, 0.42);
  color: var(--orange-bright);
}

.graph-line {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 270px;
  height: 1px;
  background: linear-gradient(90deg, rgba(235, 116, 32, 0.6), rgba(255, 255, 255, 0.08));
  transform-origin: left center;
}

.line-a {
  transform: rotate(-133deg);
}

.line-b {
  transform: rotate(-41deg);
}

.line-c {
  transform: rotate(34deg);
}

.business-visual > p {
  position: absolute;
  right: 20px;
  bottom: 16px;
  margin: 0;
  color: rgba(241, 238, 231, 0.3);
  font-family: var(--font-geist-mono), monospace;
  font-size: 7px;
  letter-spacing: 0.1em;
}

.work-contract-head,
.trace-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 54px;
  padding: 0 18px;
  border-bottom: 1px solid var(--line-dark);
  color: rgba(241, 238, 231, 0.42);
  font-family: var(--font-geist-mono), monospace;
  font-size: 8px;
  letter-spacing: 0.08em;
}

.work-contract-head b {
  color: var(--green);
  font-weight: 460;
}

.work-dag {
  position: relative;
  min-height: 400px;
}

.dag-node {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 9px;
  min-width: 94px;
  min-height: 40px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: #151719;
  color: rgba(241, 238, 231, 0.75);
  font-size: 10px;
}

.dag-node i {
  color: rgba(241, 238, 231, 0.28);
  font-family: var(--font-geist-mono), monospace;
  font-size: 7px;
  font-style: normal;
}

.dag-1 {
  top: 42%;
  left: 5%;
  border-color: var(--orange);
}

.dag-2 {
  top: 17%;
  left: 25%;
}

.dag-3 {
  right: 30%;
  bottom: 17%;
}

.dag-4 {
  top: 17%;
  right: 30%;
}

.dag-5 {
  top: 17%;
  right: 6%;
}

.dag-6 {
  right: 6%;
  bottom: 17%;
}

.dag-7 {
  top: 42%;
  right: 6%;
  border-color: var(--green);
}

.dag-path {
  position: absolute;
  z-index: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.18);
  transform-origin: left center;
}

.path-1 {
  top: 47%;
  left: 20%;
  width: 135px;
  transform: rotate(-35deg);
}

.path-2 {
  top: 47%;
  left: 20%;
  width: 145px;
  transform: rotate(34deg);
}

.path-3 {
  top: 22%;
  left: 42%;
  width: 145px;
}

.path-4 {
  right: 17%;
  bottom: 22%;
  width: 150px;
}

.path-5 {
  top: 22%;
  right: 18%;
  width: 100px;
}

.path-6 {
  right: 17%;
  bottom: 22%;
  width: 96px;
  transform: rotate(-90deg);
}

.work-contract-foot {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  min-height: 64px;
  border-top: 1px solid var(--line-dark);
}

.work-contract-foot span {
  display: grid;
  place-items: center;
  color: rgba(241, 238, 231, 0.36);
  font-family: var(--font-geist-mono), monospace;
  font-size: 7px;
  letter-spacing: 0.08em;
}

.work-contract-foot span + span {
  border-left: 1px solid var(--line-dark);
}

.trace-head b {
  color: var(--orange-bright);
}

.trace-table {
  padding: 22px;
}

.trace-table > div {
  display: grid;
  grid-template-columns: 70px 72px 1fr 48px;
  gap: 12px;
  align-items: center;
  min-height: 58px;
  border-bottom: 1px solid var(--line-dark);
}

.trace-table time,
.trace-table small {
  color: rgba(241, 238, 231, 0.35);
  font-family: var(--font-geist-mono), monospace;
  font-size: 8px;
}

.trace-table span {
  color: rgba(241, 238, 231, 0.72);
  font-size: 10px;
}

.trace-table i {
  padding: 5px 6px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-family: var(--font-geist-mono), monospace;
  font-size: 6px;
  font-style: normal;
  text-align: center;
}

.trace-table .pass {
  color: var(--green);
}

.trace-table .wait {
  color: var(--orange-bright);
}

.trace-proof {
  position: absolute;
  right: 20px;
  bottom: 20px;
  left: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 62px;
  padding: 0 17px;
  border: 1px solid rgba(110, 169, 130, 0.25);
  border-radius: 10px;
  background: rgba(110, 169, 130, 0.07);
}

.trace-proof span {
  color: var(--green);
  font-family: var(--font-geist-mono), monospace;
  font-size: 7px;
  letter-spacing: 0.08em;
}

.trace-proof strong {
  font-size: 11px;
}

.system-footnote {
  max-width: 910px;
  margin: 23px 0 0 auto;
  color: rgba(241, 238, 231, 0.35);
  font-size: 10px;
  line-height: 1.8;
  text-align: right;
}

.ontology-detail-section {
  background: var(--paper);
  color: var(--ink);
}

.ontology-detail-head {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 8vw;
}

.ontology-definition {
  align-self: end;
  padding: 26px 0 5px;
  border-top: 1px solid var(--line-paper);
}

.ontology-definition span,
.projection-note > span,
.measurement-strip > span {
  color: var(--orange);
  font-family: var(--font-geist-mono), monospace;
  font-size: 8px;
  font-weight: 460;
  letter-spacing: 0.1em;
}

.ontology-definition p {
  margin: 18px 0 0;
  color: #615e58;
  font-size: 14px;
  line-height: 2;
}

.dimension-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 82px;
  border: 1px solid var(--line-paper);
  background: var(--line-paper);
}

.dimension-grid article {
  min-height: 380px;
  padding: clamp(24px, 3vw, 40px);
  background: var(--paper);
}

.dimension-grid article > span {
  color: var(--orange);
  font-family: var(--font-geist-mono), monospace;
  font-size: 9px;
}

.dimension-grid article > small {
  float: right;
  color: #918d85;
  font-family: var(--font-geist-mono), monospace;
  font-size: 7px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dimension-grid h3 {
  margin: 96px 0 18px;
  font-size: clamp(20px, 1.8vw, 27px);
  letter-spacing: -0.02em;
}

.dimension-grid p {
  margin: 0;
  color: #6b6760;
  font-size: 12px;
  line-height: 1.85;
}

.dimension-grid .dimension-wide {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 45px 0.65fr 0.55fr 1.3fr;
  gap: 3vw;
  align-items: center;
  min-height: auto;
}

.dimension-grid .dimension-wide > small {
  float: none;
}

.dimension-grid .dimension-wide h3 {
  margin: 0;
}

.customer-lens {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  margin-top: 110px;
  border: 1px solid var(--line-paper);
  border-radius: 26px;
  overflow: hidden;
  background: var(--paper-soft);
}

.lens-copy {
  padding: clamp(34px, 5vw, 72px);
  border-right: 1px solid var(--line-paper);
}

.lens-copy h3 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 2.75rem);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.lens-copy > p:not(.mono-label) {
  margin: 26px 0 0;
  color: #66625c;
  font-size: 13px;
  line-height: 1.95;
}

.lens-copy ul {
  display: grid;
  gap: 0;
  margin: 36px 0 0;
  padding: 0;
  list-style: none;
}

.lens-copy li {
  padding: 13px 0 13px 18px;
  border-top: 1px solid var(--line-paper);
  color: #56534e;
  font-size: 11px;
}

.lens-copy li::before {
  margin-left: -18px;
  margin-right: 10px;
  content: "↗";
  color: var(--orange);
}

.lens-map {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  background:
    linear-gradient(rgba(9, 10, 11, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(9, 10, 11, 0.05) 1px, transparent 1px),
    var(--paper-soft);
  background-size: 54px 54px;
}

.lens-center,
.lens-object {
  position: absolute;
  z-index: 3;
  display: grid;
  gap: 5px;
  min-width: 145px;
  padding: 17px 19px;
  border: 1px solid rgba(9, 10, 11, 0.18);
  border-radius: 13px;
  background: rgba(241, 238, 231, 0.94);
  box-shadow: 0 16px 40px rgba(9, 10, 11, 0.07);
}

.lens-center {
  top: 50%;
  left: 50%;
  min-width: 185px;
  padding: 23px;
  border-color: var(--orange);
  transform: translate(-50%, -50%);
}

.lens-center small,
.lens-object small {
  color: #8b877f;
  font-family: var(--font-geist-mono), monospace;
  font-size: 7px;
  letter-spacing: 0.08em;
}

.lens-center strong {
  font-size: 22px;
  letter-spacing: -0.015em;
}

.lens-object strong {
  font-size: 14px;
}

.lens-person {
  top: 12%;
  left: 10%;
}

.lens-role {
  top: 13%;
  right: 9%;
}

.lens-account {
  bottom: 13%;
  left: 8%;
}

.lens-project {
  right: 8%;
  bottom: 13%;
}

.lens-platform {
  top: 48%;
  right: 4%;
}

.lens-edge {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  width: 270px;
  height: 1px;
  background: linear-gradient(90deg, var(--orange), rgba(9, 10, 11, 0.13));
  transform-origin: left center;
}

.edge-person {
  transform: rotate(-141deg);
}

.edge-role {
  transform: rotate(-42deg);
}

.edge-account {
  transform: rotate(143deg);
}

.edge-project {
  transform: rotate(38deg);
}

.edge-platform {
  transform: rotate(0deg);
}

.projection-note {
  display: grid;
  grid-template-columns: 0.35fr 1.65fr;
  gap: 6vw;
  margin-top: 36px;
  padding: 28px 0;
  border-top: 1px solid var(--line-paper);
  border-bottom: 1px solid var(--line-paper);
}

.projection-note p {
  margin: 0;
  color: #6b6760;
  font-size: 12px;
  line-height: 1.9;
}

.projection-note strong {
  color: var(--ink);
  font-weight: 460;
}

.execution-section {
  background: var(--paper-deep);
  color: var(--ink);
}

.execution-stepper {
  margin-top: 76px;
  border: 1px solid var(--line-paper);
  border-radius: 26px;
  overflow: hidden;
  background: var(--paper);
  box-shadow: 0 28px 75px rgba(9, 10, 11, 0.08);
}

.stepper-track {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  padding: 8px;
  border-bottom: 1px solid var(--line-paper);
}

.stepper-track button {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px;
  align-items: center;
  min-height: 58px;
  padding: 0 13px;
  border: 0;
  border-radius: 15px;
  background: transparent;
  color: #77736c;
  cursor: pointer;
  text-align: left;
  transition:
    color 180ms ease,
    background-color 180ms ease,
    transform 140ms var(--ease-out);
}

.stepper-track button span {
  font-family: var(--font-geist-mono), monospace;
  font-size: 8px;
}

.stepper-track button b {
  font-size: 10px;
  font-weight: 460;
}

.stepper-track button i {
  position: absolute;
  top: 50%;
  right: -6px;
  z-index: 2;
  width: 12px;
  height: 1px;
  background: var(--line-paper);
}

.stepper-track button[aria-selected="true"] {
  background: var(--ink);
  color: var(--paper);
}

.stepper-track button[aria-selected="true"] span {
  color: var(--orange-bright);
}

.stepper-panel {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  min-height: 460px;
  animation: panel-enter 220ms var(--ease-out);
}

.stepper-main {
  padding: clamp(38px, 5vw, 74px);
  border-right: 1px solid var(--line-paper);
}

.stepper-main h3 {
  max-width: 700px;
  margin: 0;
  font-size: clamp(2rem, 3.4vw, 2.75rem);
  letter-spacing: -0.02em;
  line-height: 1.14;
}

.stepper-main > p:not(.mono-label) {
  max-width: 680px;
  margin: 28px 0 0;
  color: #66625c;
  font-size: 13px;
  line-height: 1.95;
}

.stepper-data {
  display: grid;
  grid-template-rows: 1.2fr 0.9fr 0.9fr;
}

.stepper-data > div {
  padding: clamp(26px, 3vw, 42px);
}

.stepper-data > div + div {
  border-top: 1px solid var(--line-paper);
}

.stepper-data small {
  color: var(--orange);
  font-family: var(--font-geist-mono), monospace;
  font-size: 8px;
  font-weight: 460;
  letter-spacing: 0.1em;
}

.stepper-data ul {
  display: grid;
  gap: 9px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.stepper-data li {
  color: #625f59;
  font-size: 11px;
}

.stepper-data li::before {
  margin-right: 9px;
  content: "·";
  color: var(--orange);
}

.stepper-data strong {
  display: block;
  margin-top: 18px;
  font-size: 14px;
  letter-spacing: -0.015em;
}

.execution-proof {
  margin-top: 72px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 25px;
  overflow: hidden;
  background: var(--ink);
  color: var(--paper);
  box-shadow: 0 36px 85px rgba(9, 10, 11, 0.16);
}

.proof-top {
  display: grid;
  grid-template-columns: 0.8fr 1.6fr 0.8fr;
  align-items: center;
  min-height: 58px;
  padding: 0 22px;
  border-bottom: 1px solid var(--line-dark);
  color: rgba(241, 238, 231, 0.36);
  font-family: var(--font-geist-mono), monospace;
  font-size: 8px;
  letter-spacing: 0.08em;
}

.proof-top span:last-child {
  justify-self: end;
}

.proof-state {
  color: var(--paper);
}

.proof-state i {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--orange);
}

.proof-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.65fr 1.25fr;
  min-height: 430px;
}

.proof-grid > div {
  padding: clamp(28px, 3.7vw, 52px);
}

.proof-grid > div + div {
  border-left: 1px solid var(--line-dark);
}

.proof-grid small {
  color: rgba(241, 238, 231, 0.34);
  font-family: var(--font-geist-mono), monospace;
  font-size: 8px;
  letter-spacing: 0.1em;
}

.proof-grid strong {
  display: block;
  margin-top: 22px;
  font-size: clamp(20px, 1.8vw, 27px);
  letter-spacing: -0.02em;
}

.proof-context dl {
  display: grid;
  margin: 36px 0 0;
}

.proof-context dl div {
  display: grid;
  grid-template-columns: 60px 1fr;
  padding: 12px 0;
  border-top: 1px solid var(--line-dark);
}

.proof-context dt,
.proof-context dd {
  color: rgba(241, 238, 231, 0.5);
  font-size: 10px;
}

.proof-context dt {
  color: var(--orange-bright);
}

.proof-context dd {
  margin: 0;
}

.proof-agent {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.proof-orb {
  display: grid;
  place-items: center;
  width: 78px;
  height: 78px;
  margin-top: 28px;
  border: 1px solid var(--orange);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(235, 116, 32, 0.16), transparent 68%);
  color: var(--orange-bright);
  font-size: 28px;
  box-shadow: 0 0 44px rgba(235, 116, 32, 0.1);
}

.proof-agent strong {
  margin-top: 15px;
}

.proof-agent span,
.proof-agent p {
  color: rgba(241, 238, 231, 0.34);
  font-family: var(--font-geist-mono), monospace;
  font-size: 7px;
  letter-spacing: 0.07em;
}

.proof-agent p {
  margin: 18px 0 0;
  padding: 7px 9px;
  border: 1px solid rgba(110, 169, 130, 0.3);
  border-radius: 999px;
  color: var(--green);
}

.proof-results ul {
  display: grid;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.proof-results li {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  padding: 12px 0;
  border-top: 1px solid var(--line-dark);
  color: rgba(241, 238, 231, 0.56);
  font-size: 10px;
}

.proof-results li b {
  color: var(--green);
  font-family: var(--font-geist-mono), monospace;
  font-size: 7px;
}

.proof-results button {
  width: 100%;
  min-height: 48px;
  margin-top: 26px;
  border: 0;
  border-radius: 999px;
  background: var(--orange);
  color: var(--white);
  cursor: default;
  font-size: 11px;
  font-weight: 460;
}

.comparison-section {
  background: var(--paper);
  color: var(--ink);
}

.comparison-intro {
  max-width: 1000px;
}

.comparison-table {
  margin-top: 80px;
  border-top: 1px solid var(--line-paper);
}

.comparison-row {
  display: grid;
  grid-template-columns: 0.35fr 0.825fr 0.825fr;
  min-height: 86px;
  border-bottom: 1px solid var(--line-paper);
}

.comparison-row > * {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 18px 26px;
}

.comparison-row > * + * {
  border-left: 1px solid var(--line-paper);
}

.comparison-row > span {
  color: var(--orange);
  font-family: var(--font-geist-mono), monospace;
  font-size: 9px;
  letter-spacing: 0.08em;
}

.comparison-row p {
  color: #77736c;
  font-size: 12px;
  line-height: 1.7;
}

.comparison-row p:last-child {
  color: var(--ink);
  font-weight: 420;
}

.comparison-head {
  min-height: 64px;
  background: var(--ink);
  color: var(--paper);
}

.comparison-head strong {
  font-size: 11px;
  letter-spacing: 0.02em;
}

.comparison-head strong:last-child {
  color: var(--orange-bright);
}

.usecase-section {
  background: var(--ink-soft);
}

.usecase-section-first {
  position: relative;
}

.usecase-section-first::before {
  position: absolute;
  top: 0;
  right: 4vw;
  left: 4vw;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.16), transparent);
}

.usecase-section .split-heading > p {
  color: rgba(241, 238, 231, 0.54);
}

.usecase-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 78px;
}

.usecase-card {
  min-height: 400px;
  padding: clamp(25px, 2.8vw, 40px);
  border: 1px solid var(--line-dark);
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.035), transparent 46%),
    var(--ink-raised);
}

.usecase-card.case-wide {
  grid-column: span 2;
}

.mini-status {
  padding: 6px 9px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-family: var(--font-geist-mono), monospace;
  font-size: 7px;
  font-weight: 460;
}

.mini-status.live,
.status-pill.live {
  color: var(--green);
}

.mini-status.early,
.status-pill.early {
  color: var(--orange-bright);
}

.mini-status.build,
.status-pill.build {
  color: #96928a;
}

.mini-status.example {
  color: var(--orange-bright);
}

.usecase-card h3 {
  max-width: 440px;
  margin: 82px 0 20px;
  font-size: clamp(23px, 2.1vw, 32px);
  letter-spacing: -0.02em;
}

.usecase-card > p {
  max-width: 540px;
  margin: 0;
  color: rgba(241, 238, 231, 0.52);
  font-size: 12px;
  line-height: 1.9;
}

.usecase-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.usecase-card li {
  padding: 7px 10px;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  color: rgba(241, 238, 231, 0.5);
  font-size: 8px;
}

.capability-promise {
  display: grid;
  grid-template-columns: 0.42fr 1.58fr;
  gap: 6vw;
  align-items: start;
  margin-top: 62px;
  padding: 32px 0;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.capability-promise span {
  color: var(--orange-bright);
  font-family: var(--font-geist-mono), monospace;
  font-size: 8px;
  font-weight: 460;
  letter-spacing: 0.1em;
}

.capability-promise p {
  max-width: 900px;
  margin: 0;
  color: rgba(241, 238, 231, 0.7);
  font-size: clamp(16px, 1.55vw, 22px);
  font-weight: 540;
  letter-spacing: -0.015em;
  line-height: 1.75;
}

.capability-promise p strong {
  display: block;
  margin-top: 9px;
  color: var(--paper);
  font-weight: 460;
}

.tailored-section {
  background: var(--paper-soft);
  color: var(--ink);
}

.tailored-heading > p:last-child {
  max-width: 780px;
}

.workforce-example-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 78px;
}

.workforce-example-grid > article {
  min-height: 690px;
  padding: clamp(28px, 3.6vw, 50px);
  border: 1px solid var(--line-paper);
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.36), transparent 48%),
    var(--paper-soft);
}

.workforce-example-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.workforce-example-top span {
  color: var(--orange);
  font-family: var(--font-geist-mono), monospace;
  font-size: 9px;
}

.workforce-example-top small {
  color: #77736c;
  font-size: 9px;
}

.workforce-example-grid h3 {
  max-width: 480px;
  margin: 68px 0 30px;
  font-size: clamp(24px, 2.3vw, 35px);
  letter-spacing: -0.02em;
  line-height: 1.26;
}

.example-roster {
  padding: 22px 0;
  border-top: 1px solid var(--line-paper);
  border-bottom: 1px solid var(--line-paper);
}

.example-roster > small {
  color: #8b877f;
  font-family: var(--font-geist-mono), monospace;
  font-size: 7px;
  letter-spacing: 0.09em;
}

.example-roster ul {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 15px 0 0;
  padding: 0;
  list-style: none;
}

.example-roster li {
  padding: 8px 10px;
  border: 1px solid rgba(235, 116, 32, 0.3);
  border-radius: 999px;
  color: #71472e;
  font-size: 9px;
}

.workforce-example-grid dl {
  display: grid;
  margin: 24px 0 0;
}

.workforce-example-grid dl > div {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 16px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line-paper);
}

.workforce-example-grid dt {
  color: var(--orange);
  font-size: 9px;
  font-weight: 460;
}

.workforce-example-grid dd {
  margin: 0;
  color: #66625c;
  font-size: 10px;
  line-height: 1.75;
}

.tailored-note {
  display: grid;
  grid-template-columns: 0.42fr 1.58fr;
  gap: 6vw;
  align-items: start;
  margin-top: 58px;
  padding: 30px 0;
  border-top: 1px solid var(--line-paper);
  border-bottom: 1px solid var(--line-paper);
}

.tailored-note span {
  color: var(--orange);
  font-family: var(--font-geist-mono), monospace;
  font-size: 8px;
  font-weight: 460;
  letter-spacing: 0.1em;
}

.tailored-note p {
  max-width: 900px;
  margin: 0;
  color: #5f5b55;
  font-size: clamp(15px, 1.45vw, 20px);
  line-height: 1.8;
}

.tailored-note p strong {
  color: var(--ink);
  font-weight: 460;
}

.audience-section {
  background: var(--paper-soft);
  color: var(--ink);
}

.audience-heading > p:last-child {
  max-width: 790px;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  margin-top: 78px;
  border: 1px solid var(--line-paper);
  background: var(--line-paper);
}

.audience-grid article {
  min-height: 480px;
  padding: clamp(30px, 4vw, 56px);
  background: var(--paper-soft);
}

.audience-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.audience-meta span,
.audience-grid > article > b {
  color: var(--orange);
  font-family: var(--font-geist-mono), monospace;
  font-size: 9px;
}

.audience-meta small {
  color: #8b877f;
  font-family: var(--font-geist-mono), monospace;
  font-size: 7px;
  letter-spacing: 0.09em;
}

.audience-grid > article > b {
  display: block;
  width: max-content;
  margin-top: 48px;
  padding: 7px 10px;
  border: 1px solid rgba(235, 116, 32, 0.34);
  border-radius: 999px;
  font-weight: 460;
}

.audience-grid h3 {
  max-width: 520px;
  margin: 24px 0 18px;
  font-size: clamp(23px, 2.25vw, 34px);
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.audience-grid > article > p {
  max-width: 560px;
  margin: 0;
  color: #67635d;
  font-size: 12px;
  line-height: 1.9;
}

.audience-receives {
  margin-top: 38px;
  padding-top: 20px;
  border-top: 1px solid var(--line-paper);
}

.audience-receives > small {
  color: #8b877f;
  font-size: 9px;
}

.audience-receives ul {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.audience-receives li {
  padding: 7px 10px;
  border: 1px solid var(--line-paper);
  border-radius: 999px;
  color: #5f5b55;
  font-size: 8px;
}

.workforce-section {
  display: grid;
  grid-template-columns: 0.76fr 1.24fr;
  gap: 8vw;
  background: var(--ink);
}

.workforce-sticky {
  position: sticky;
  top: 120px;
  align-self: start;
}

.workforce-sticky > p:not(.kicker) {
  max-width: 590px;
  margin: 30px 0 0;
  color: rgba(241, 238, 231, 0.54);
  font-size: 14px;
  line-height: 2;
}

.human-ai-contract {
  display: grid;
  margin-top: 48px;
  border-top: 1px solid var(--line-dark);
}

.human-ai-contract > div {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 20px;
  align-items: center;
  min-height: 75px;
  border-bottom: 1px solid var(--line-dark);
}

.human-ai-contract span {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  color: var(--orange-bright);
  font-size: 10px;
  font-weight: 500;
}

.human-ai-contract p {
  margin: 0;
  color: rgba(241, 238, 231, 0.58);
  font-size: 11px;
}

.agent-list {
  border-top: 1px solid var(--line-dark);
}

.agent-list article {
  display: grid;
  grid-template-columns: 30px 48px 0.8fr 1.2fr;
  gap: 18px;
  align-items: center;
  min-height: 102px;
  border-bottom: 1px solid var(--line-dark);
}

.agent-list article > span {
  color: rgba(241, 238, 231, 0.25);
  font-family: var(--font-geist-mono), monospace;
  font-size: 8px;
}

.agent-avatar {
  display: grid;
  place-items: center;
  width: 43px;
  height: 43px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  color: var(--orange-bright);
  font-size: 13px;
}

.agent-list article > div:nth-child(3) {
  display: grid;
  gap: 4px;
}

.agent-list strong {
  font-size: 14px;
}

.agent-list small {
  color: rgba(241, 238, 231, 0.34);
  font-family: var(--font-geist-mono), monospace;
  font-size: 7px;
  letter-spacing: 0.05em;
}

.agent-list p {
  margin: 0;
  color: rgba(241, 238, 231, 0.5);
  font-size: 11px;
}

.employee-blueprint-list .agent-avatar {
  border-radius: 12px;
}

.leaders-section {
  background: var(--paper-soft);
  color: var(--ink);
}

.leaders-heading > p:last-child {
  max-width: 760px;
}

.leader-outcomes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  margin-top: 82px;
  border: 1px solid var(--line-paper);
  background: var(--line-paper);
}

.leader-outcomes article {
  min-height: 315px;
  padding: clamp(28px, 4vw, 56px);
  background: var(--paper-soft);
}

.leader-outcomes span,
.trust-grid article > span,
.rollout-track article > div span {
  color: var(--orange);
  font-family: var(--font-geist-mono), monospace;
  font-size: 9px;
}

.leader-outcomes h3,
.trust-grid h3 {
  margin: 76px 0 19px;
  font-size: clamp(21px, 2vw, 30px);
  letter-spacing: -0.02em;
}

.leader-outcomes p,
.trust-grid p {
  max-width: 560px;
  margin: 0;
  color: #6a665f;
  font-size: 12px;
  line-height: 1.9;
}

.measurement-strip {
  display: grid;
  grid-template-columns: 0.35fr 1.65fr;
  gap: 5vw;
  align-items: center;
  margin-top: 78px;
  padding: 32px 0;
  border-top: 1px solid var(--line-paper);
  border-bottom: 1px solid var(--line-paper);
}

.measurement-strip > div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.measurement-strip b {
  padding: 9px 13px;
  border: 1px solid var(--line-paper);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 420;
}

.rollout-section {
  background: var(--paper);
  color: var(--ink);
}

.rollout-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 78px;
  border: 1px solid var(--line-paper);
  background: var(--line-paper);
}

.rollout-track article {
  position: relative;
  min-height: 390px;
  padding: clamp(26px, 3.2vw, 44px);
  background: var(--paper);
}

.rollout-track article::after {
  position: absolute;
  top: 42px;
  right: -8px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 16px;
  height: 16px;
  content: "→";
  background: var(--paper);
  color: #9a968e;
  font-size: 12px;
}

.rollout-track article:last-child::after {
  display: none;
}

.rollout-track article > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.rollout-track article > div small {
  color: #898683;
  font-family: var(--font-geist-mono), monospace;
  font-size: 7px;
  letter-spacing: 0.09em;
}

.rollout-track h3 {
  margin: 98px 0 20px;
  font-size: 21px;
  letter-spacing: -0.02em;
  line-height: 1.35;
}

.rollout-track p {
  margin: 0;
  color: #6b6760;
  font-size: 12px;
  line-height: 1.9;
}

.rollout-note {
  display: grid;
  grid-template-columns: 0.35fr 1.65fr;
  gap: 5vw;
  margin-top: 35px;
  padding: 29px 0;
  border-top: 1px solid var(--line-paper);
  border-bottom: 1px solid var(--line-paper);
}

.rollout-note strong {
  color: var(--orange);
  font-family: var(--font-geist-mono), monospace;
  font-size: 9px;
}

.rollout-note p {
  margin: 0;
  color: #66625c;
  font-size: 12px;
  line-height: 1.9;
}

.status-section {
  background: var(--paper-deep);
  color: var(--ink);
}

.status-groups {
  display: grid;
  margin-top: 78px;
  border-top: 1px solid var(--line-paper);
}

.status-groups article {
  display: grid;
  grid-template-columns: 0.36fr 0.78fr 1.2fr;
  gap: 4vw;
  padding: 42px 0;
  border-bottom: 1px solid var(--line-paper);
}

.status-meta {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.status-pill {
  width: max-content;
  padding: 7px 10px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-family: var(--font-geist-mono), monospace;
  font-size: 8px;
  font-weight: 460;
}

.status-meta > span {
  color: #8b877f;
  font-family: var(--font-geist-mono), monospace;
  font-size: 7px;
  letter-spacing: 0.09em;
}

.status-copy h3 {
  margin: 0;
  font-size: clamp(21px, 1.9vw, 29px);
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.status-copy p {
  margin: 18px 0 0;
  color: #6b6760;
  font-size: 11px;
  line-height: 1.85;
}

.status-groups ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.status-groups li {
  padding: 12px 0 12px 17px;
  border-top: 1px solid var(--line-paper);
  color: #5e5a54;
  font-size: 11px;
}

.status-groups li::before {
  margin-left: -17px;
  margin-right: 9px;
  content: "·";
  color: var(--orange);
}

.status-note {
  max-width: 900px;
  margin: 24px 0 0 auto;
  color: #78746d;
  font-size: 9px;
  line-height: 1.8;
  text-align: right;
}

.trust-section {
  background: var(--ink);
}

.trust-section .split-heading > p {
  color: rgba(241, 238, 231, 0.54);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 80px;
  border: 1px solid var(--line-dark);
  background: var(--line-dark);
}

.trust-grid article {
  min-height: 330px;
  padding: clamp(28px, 3.5vw, 48px);
  background: var(--ink);
}

.trust-grid h3 {
  color: var(--paper);
}

.trust-grid p {
  color: rgba(241, 238, 231, 0.49);
}

.faq-section {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 9vw;
  background: var(--paper);
  color: var(--ink);
}

.faq-heading {
  position: sticky;
  top: 120px;
  align-self: start;
}

.faq-heading h2 {
  font-size: clamp(2rem, 4.7vw, 2.75rem);
}

.faq-heading > p:last-child {
  color: #6a665f;
}

.faq-list {
  border-top: 1px solid var(--line-paper);
}

.faq-list details {
  border-bottom: 1px solid var(--line-paper);
}

.faq-list summary {
  display: grid;
  grid-template-columns: 42px 1fr 28px;
  gap: 14px;
  align-items: center;
  min-height: 100px;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  color: var(--orange);
  font-family: var(--font-geist-mono), monospace;
  font-size: 8px;
}

.faq-list summary strong {
  font-size: 15px;
  font-weight: 460;
  letter-spacing: -0.015em;
}

.faq-list summary i {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 1px solid var(--line-paper);
  border-radius: 50%;
  color: var(--orange);
  font-size: 15px;
  font-style: normal;
  transition: transform 180ms var(--ease-out);
}

.faq-list details[open] summary i {
  transform: rotate(45deg);
}

.faq-list details > p {
  margin: -12px 42px 0 56px;
  padding: 0 0 34px;
  color: #66625c;
  font-size: 13px;
  line-height: 1.95;
}

.final-cta {
  position: relative;
  min-height: 790px;
  padding: clamp(110px, 12vw, 180px) 4vw;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 46%, rgba(235, 116, 32, 0.1), transparent 25%),
    var(--ink-soft);
}

.final-cta .cta-grid {
  opacity: 0.2;
}

.final-cta > *:not(.cta-grid, .cta-orbit) {
  position: relative;
  z-index: 3;
}

.final-cta h2 {
  max-width: 1120px;
}

.final-cta > p:not(.kicker) {
  max-width: 740px;
  color: rgba(241, 238, 231, 0.55);
}

.cta-orbit {
  position: absolute;
  top: 50%;
  right: -5vw;
  width: min(52vw, 720px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transform: translateY(-50%);
}

.cta-orbit::before,
.cta-orbit::after {
  position: absolute;
  top: 50%;
  left: 50%;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.cta-orbit::before {
  width: 68%;
  height: 68%;
}

.cta-orbit::after {
  width: 38%;
  height: 38%;
  border-color: rgba(235, 116, 32, 0.24);
}

.cta-orbit i {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 24px rgba(235, 116, 32, 0.45);
}

.cta-orbit i:nth-child(1) {
  top: 8%;
  left: 48%;
}

.cta-orbit i:nth-child(2) {
  top: 48%;
  right: -5px;
}

.cta-orbit i:nth-child(3) {
  right: 25%;
  bottom: 9%;
}

.cta-orbit i:nth-child(4) {
  top: 54%;
  left: 15%;
}

.cta-expectations {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(780px, 100%);
  margin-top: 42px;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.cta-expectations > div {
  display: grid;
  gap: 9px;
  padding: 20px 20px 20px 0;
}

.cta-expectations > div + div {
  padding-left: 20px;
  border-left: 1px solid var(--line-dark);
}

.cta-expectations span {
  color: var(--orange-bright);
  font-family: var(--font-geist-mono), monospace;
  font-size: 8px;
}

.cta-expectations b {
  font-size: 11px;
  font-weight: 420;
}

.cta-button {
  margin-top: 40px;
}

.final-cta > small {
  display: block;
  margin-top: 18px;
  color: rgba(241, 238, 231, 0.34);
  font-size: 9px;
}

footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 6vw;
  align-items: end;
  min-height: 190px;
  padding: 40px 4vw;
  border-top: 1px solid var(--line-dark);
  background: var(--ink);
}

footer > div:first-child {
  display: grid;
  gap: 12px;
}

.footer-mark {
  font-size: 28px;
}

footer p {
  margin: 0;
  color: rgba(241, 238, 231, 0.32);
  font-family: var(--font-geist-mono), monospace;
  font-size: 8px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  color: rgba(241, 238, 231, 0.48);
  font-size: 10px;
}

footer > span {
  color: rgba(241, 238, 231, 0.28);
  font-size: 9px;
}

.reveal-ready [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 540ms var(--ease-out),
    transform 540ms var(--ease-out);
}

.reveal-ready [data-reveal][data-visible="true"] {
  opacity: 1;
  transform: translateY(0);
}

@media (hover: hover) and (pointer: fine) {
  .site-header nav a:hover {
    background: rgba(255, 255, 255, 0.075);
    color: var(--paper);
  }

  .header-cta:hover {
    background: var(--orange);
    color: var(--white);
  }

  .header-cta:hover span {
    color: var(--white);
  }

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

  .button-primary:hover {
    background: #fa8130;
  }

  .button-ghost:hover {
    border-color: rgba(255, 255, 255, 0.48);
    background: rgba(255, 255, 255, 0.055);
  }

  .spotlight-card:hover::before,
  .spotlight-card:focus-within::before {
    opacity: 1;
  }

  .system-tabs button:hover:not([aria-selected="true"]),
  .stepper-track button:hover:not([aria-selected="true"]) {
    background: rgba(255, 255, 255, 0.055);
    color: var(--paper);
  }

  .stepper-track button:hover:not([aria-selected="true"]) {
    background: rgba(9, 10, 11, 0.055);
    color: var(--ink);
  }

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

@media (max-width: 1180px) {
  .site-header nav {
    gap: 0;
  }

  .site-header nav a {
    padding: 0 10px;
  }

  .hero-copy {
    width: 58%;
  }

  .hero-visual {
    right: -8vw;
  }

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

  .friction-card {
    min-height: 320px;
  }

  .friction-card h3 {
    margin-top: 58px;
  }

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

  .product-layer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-header nav {
    display: none;
  }

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

  .hero-copy {
    width: 100%;
    max-width: 860px;
  }

  .hero-visual {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    min-width: 0;
    height: 670px;
    margin-top: 70px;
  }

  .hero-foot {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    margin-top: 50px;
  }

  .split-heading,
  .ontology-detail-head,
  .faq-section {
    grid-template-columns: 1fr;
    gap: 45px;
  }

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

  .workforce-example-grid {
    grid-template-columns: 1fr;
  }

  .workforce-example-grid > article {
    min-height: auto;
  }

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

  .system-panel-copy {
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .customer-lens {
    grid-template-columns: 1fr;
  }

  .lens-copy {
    border-right: 0;
    border-bottom: 1px solid var(--line-paper);
  }

  .stepper-track {
    grid-template-columns: 1fr;
  }

  .stepper-track button {
    grid-template-columns: 36px 1fr;
  }

  .stepper-track button i {
    display: none;
  }

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

  .stepper-main {
    border-right: 0;
    border-bottom: 1px solid var(--line-paper);
  }

  .proof-grid {
    grid-template-columns: 1fr 0.7fr;
  }

  .proof-results {
    grid-column: 1 / -1;
    border-top: 1px solid var(--line-dark);
    border-left: 0 !important;
  }

  .workforce-section {
    grid-template-columns: 1fr;
  }

  .workforce-sticky,
  .faq-heading {
    position: static;
  }

  .rollout-track {
    grid-template-columns: repeat(2, 1fr);
  }

  .rollout-track article:nth-child(2)::after {
    display: none;
  }

  .status-groups article {
    grid-template-columns: 0.42fr 1.58fr;
  }

  .status-groups ul {
    grid-column: 1 / -1;
  }
}

@media (max-width: 780px) {
  :root {
    --page: calc(100vw - 36px);
  }

  .site-header {
    top: 9px;
    width: calc(100vw - 18px);
    min-height: 52px;
    padding-left: 16px;
  }

  .wordmark {
    font-size: 21px;
  }

  .header-cta {
    min-height: 38px;
    gap: 12px;
    padding: 0 14px;
  }

  .hero {
    padding: 118px 18px 40px;
  }

  .hero-grid {
    background-size: 44px 44px;
  }

  .hero-grid::before {
    display: none;
  }

  .eyebrow,
  .kicker,
  .mono-label {
    margin-bottom: 19px;
    font-size: 8px;
  }

  .hero h1 {
    font-size: clamp(2rem, 14vw, 2.75rem);
    line-height: 1.14;
  }

  .hero-lead {
    margin-top: 28px;
    font-size: 14px;
    line-height: 1.9;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
    min-height: 54px;
  }

  .availability {
    font-size: 9px;
  }

  .hero-visual {
    height: 570px;
    margin-top: 52px;
  }

  .sphere-shell {
    min-height: 570px;
    border-radius: 21px;
  }

  .sphere-topline {
    right: 18px;
    left: 18px;
  }

  .sphere-topline span:last-child {
    display: none;
  }

  .hero-signal-card {
    min-width: 130px;
    padding: 11px 12px;
  }

  .signal-card-a {
    top: 24%;
    left: -5px;
  }

  .signal-card-b {
    top: 50%;
    right: -4px;
  }

  .signal-card-c {
    right: 5%;
    bottom: 12%;
  }

  .hero-foot {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-foot div:nth-child(3) {
    padding-left: 0;
    border-top: 1px solid var(--line-dark);
    border-left: 0;
  }

  .hero-foot div:nth-child(4) {
    border-top: 1px solid var(--line-dark);
  }

  .promise-rail {
    justify-content: flex-start;
    min-height: 76px;
    padding: 17px 18px;
    overflow-x: auto;
  }

  .promise-rail span {
    display: none;
  }

  .promise-rail b {
    font-size: 12px;
  }

  .section {
    padding: 92px 18px;
  }

  .section h2,
  .final-cta h2 {
    font-size: clamp(2rem, 12.4vw, 2.75rem);
  }

  .section-heading > p:last-child,
  .system-heading > p:last-child,
  .leaders-heading > p:last-child,
  .faq-heading > p:last-child,
  .final-cta > p {
    margin-top: 24px;
    font-size: 13px;
  }

  .product-definition-band {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 52px;
    padding: 26px;
  }

  .product-definition-band p {
    margin-top: 12px;
  }

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

  .product-layer-grid article {
    min-height: 330px;
  }

  .product-layer-grid h3 {
    margin-top: 68px;
  }

  .friction-grid {
    margin-top: 52px;
  }

  .friction-card {
    min-height: 350px;
    border-radius: 18px;
  }

  .friction-card h3 {
    margin-top: 58px;
  }

  .difference-statement,
  .projection-note,
  .measurement-strip,
  .rollout-note {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 70px;
  }

  .system-explorer {
    margin-top: 52px;
    border-radius: 20px;
  }

  .system-tabs {
    grid-template-columns: 1fr;
  }

  .system-tabs button {
    justify-content: flex-start;
    min-height: 48px;
    padding: 0 16px;
  }

  .system-panel {
    min-height: auto;
  }

  .system-panel-copy,
  .system-panel-visual {
    padding: 28px;
  }

  .system-panel-copy h3 {
    font-size: 2.35rem;
  }

  .business-visual,
  .work-visual,
  .trace-visual {
    min-height: 440px;
  }

  .ring-a {
    width: 270px;
    height: 270px;
  }

  .ring-b {
    width: 170px;
    height: 170px;
  }

  .graph-line {
    width: 190px;
  }

  .graph-node {
    min-width: 58px;
    padding: 0 10px;
    font-size: 9px;
  }

  .node-client {
    left: 7%;
  }

  .node-person {
    right: 7%;
  }

  .node-metric {
    left: 16%;
  }

  .dag-node {
    min-width: 72px;
    padding: 0 9px;
    font-size: 8px;
  }

  .dag-node i {
    display: none;
  }

  .dag-1 {
    left: 3%;
  }

  .dag-2 {
    left: 28%;
  }

  .dag-3,
  .dag-4 {
    right: 28%;
  }

  .dag-5,
  .dag-6,
  .dag-7 {
    right: 3%;
  }

  .trace-table {
    padding: 14px;
  }

  .trace-table > div {
    grid-template-columns: 52px 1fr 42px;
  }

  .trace-table small {
    display: none;
  }

  .trace-proof {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
  }

  .system-footnote {
    text-align: left;
  }

  .ontology-detail-head {
    gap: 42px;
  }

  .dimension-grid {
    grid-template-columns: 1fr;
    margin-top: 54px;
  }

  .dimension-grid article {
    min-height: 300px;
  }

  .dimension-grid h3 {
    margin-top: 64px;
  }

  .dimension-grid .dimension-wide {
    grid-column: auto;
    display: block;
  }

  .dimension-grid .dimension-wide > small {
    float: right;
  }

  .dimension-grid .dimension-wide h3 {
    margin: 64px 0 18px;
  }

  .customer-lens {
    margin-top: 70px;
    border-radius: 20px;
  }

  .lens-map {
    min-height: 560px;
  }

  .lens-center,
  .lens-object {
    min-width: 116px;
    padding: 13px;
  }

  .lens-center {
    min-width: 145px;
  }

  .lens-object strong {
    font-size: 11px;
  }

  .lens-edge {
    width: 190px;
  }

  .execution-stepper {
    margin-top: 52px;
    border-radius: 20px;
  }

  .stepper-main,
  .stepper-data > div {
    padding: 28px;
  }

  .stepper-main h3 {
    font-size: 2.35rem;
  }

  .proof-top {
    grid-template-columns: 1fr auto;
  }

  .proof-top span:nth-child(2) {
    display: none;
  }

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

  .proof-grid > div + div {
    border-top: 1px solid var(--line-dark);
    border-left: 0;
  }

  .proof-results {
    grid-column: auto;
  }

  .comparison-table {
    overflow-x: auto;
  }

  .comparison-row {
    grid-template-columns: 88px 250px 280px;
    min-width: 618px;
  }

  .comparison-row > * {
    padding: 16px 18px;
  }

  .usecase-grid {
    grid-template-columns: 1fr;
    margin-top: 52px;
  }

  .capability-promise {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 44px;
  }

  .workforce-example-grid {
    margin-top: 52px;
  }

  .workforce-example-grid > article {
    min-height: 620px;
    border-radius: 18px;
  }

  .workforce-example-grid h3 {
    margin-top: 54px;
  }

  .tailored-note {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 44px;
  }

  .audience-grid {
    margin-top: 52px;
  }

  .audience-grid article {
    min-height: 400px;
  }

  .usecase-card,
  .usecase-card.case-wide {
    grid-column: auto;
    min-height: 360px;
  }

  .usecase-card h3 {
    margin-top: 62px;
  }

  .workforce-section {
    gap: 64px;
  }

  .agent-list article {
    grid-template-columns: 24px 44px 1fr;
    gap: 12px;
    padding: 14px 0;
  }

  .agent-list article > p {
    grid-column: 3;
  }

  .leader-outcomes,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .leader-outcomes article,
  .trust-grid article {
    min-height: 290px;
  }

  .rollout-track {
    grid-template-columns: 1fr;
  }

  .rollout-track article {
    min-height: 330px;
  }

  .rollout-track article::after,
  .rollout-track article:nth-child(2)::after {
    display: none;
  }

  .rollout-track h3 {
    margin-top: 70px;
  }

  .status-groups article {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .status-meta {
    flex-direction: row;
    align-items: center;
  }

  .status-groups ul {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .status-note {
    text-align: left;
  }

  .faq-list summary {
    min-height: 88px;
  }

  .faq-list details > p {
    margin-right: 0;
  }

  .final-cta {
    min-height: 850px;
    padding: 105px 18px;
  }

  .cta-orbit {
    top: auto;
    right: -45vw;
    bottom: -12vw;
    width: 120vw;
    opacity: 0.65;
    transform: none;
  }

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

  .cta-expectations > div + div {
    padding-left: 0;
    border-top: 1px solid var(--line-dark);
    border-left: 0;
  }

  footer {
    grid-template-columns: 1fr;
    align-items: start;
    min-height: 300px;
    padding: 45px 18px;
  }
}

/* 2026 visual system: soft depth, natural Japanese hierarchy, purposeful motion */
:root {
  --ink: #222222;
  --ink-soft: #2a2826;
  --ink-raised: #302e2d;
  --paper: #f5f2ec;
  --paper-soft: #eeeae2;
  --paper-deep: #e7e1d7;
  --orange: #e96d28;
  --orange-bright: #ff9455;
  --orange-soft: #ffc29d;
  --green: #86b497;
  --line-dark: rgba(255, 255, 255, 0.08);
  --line-paper: rgba(11, 12, 14, 0.09);
}

body {
  background: var(--ink);
}

.site-header {
  min-height: 60px;
  padding: 8px 8px 8px 22px;
  border: 0;
  background: rgba(16, 18, 20, 0.72);
  box-shadow:
    0 18px 70px rgba(0, 0, 0, 0.28),
    inset 0 1px rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(28px) saturate(150%);
}

.site-header nav a {
  color: rgba(245, 242, 236, 0.58);
  font-size: 12px;
}

.header-cta {
  min-height: 44px;
  padding: 0 18px;
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.18);
}

.hero {
  min-height: max(900px, 100svh);
  padding-top: clamp(154px, 17vh, 196px);
  background:
    radial-gradient(circle at 82% 28%, rgba(233, 109, 40, 0.16), transparent 22%),
    radial-gradient(circle at 67% 62%, rgba(120, 151, 137, 0.09), transparent 28%),
    radial-gradient(circle at 10% 95%, rgba(233, 109, 40, 0.07), transparent 34%),
    #222222;
}

.hero-grid,
.cta-grid {
  opacity: 0.32;
  background-image: radial-gradient(rgba(255, 255, 255, 0.18) 0.65px, transparent 0.65px);
  background-size: 19px 19px;
  mask-image: radial-gradient(circle at 73% 42%, black 0, transparent 60%);
}

.hero-grid::before {
  display: none;
}

.hero-glow {
  top: 12%;
  right: 8%;
  width: 42vw;
  height: 42vw;
  border: 0;
  opacity: 0.55;
  filter: blur(70px);
  background: rgba(233, 109, 40, 0.08);
  box-shadow: none;
}

.hero-copy {
  width: 58%;
  max-width: 910px;
}

.eyebrow,
.kicker,
.mono-label {
  width: max-content;
  margin-bottom: 24px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(233, 109, 40, 0.1);
  color: var(--orange-bright);
  font-family: var(--font-geist-sans), sans-serif;
  font-size: 11px;
  font-weight: 460;
  letter-spacing: 0.02em;
  text-transform: none;
}

.product-definition-section .kicker,
.problem-section .kicker,
.rollout-section .kicker,
.ontology-detail-section .kicker,
.comparison-section .kicker,
.tailored-section .kicker,
.leaders-section .kicker,
.status-section .kicker,
.faq-section .kicker,
.execution-section .kicker {
  background: rgba(233, 109, 40, 0.09);
  color: #a44719;
}

.hero h1 {
  display: grid;
  max-width: 950px;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.14;
}

.hero h1 .hero-subject {
  display: block;
  margin-bottom: 18px;
  color: rgba(245, 242, 236, 0.66);
  font-size: clamp(1.65rem, 2.35vw, 2.65rem);
  font-weight: 540;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.hero h1 .hero-statement {
  display: block;
  color: var(--paper);
  font-size: clamp(2rem, 7.25vw, 2.75rem);
}

.hero h1 .hero-statement::first-letter {
  color: var(--orange-bright);
}

.hero-lead {
  max-width: 650px;
  margin-top: 34px;
  color: rgba(245, 242, 236, 0.7);
  font-size: clamp(15px, 1.18vw, 18px);
  line-height: 2;
}

.button {
  min-height: 58px;
  border: 0;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.16);
}

.button-ghost {
  background: rgba(255, 255, 255, 0.07);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.08);
}

.hero-visual {
  top: 94px;
  right: -1vw;
  bottom: 120px;
  width: min(50vw, 830px);
}

.sphere-shell {
  min-height: 640px;
  overflow: visible;
  border: 0;
  border-radius: 46% 54% 49% 51% / 43% 46% 54% 57%;
  background:
    radial-gradient(circle at 48% 42%, rgba(233, 109, 40, 0.1), transparent 32%),
    radial-gradient(circle at 52% 56%, rgba(255, 255, 255, 0.035), transparent 58%);
  box-shadow:
    0 50px 140px rgba(0, 0, 0, 0.36),
    inset 0 0 90px rgba(255, 255, 255, 0.025);
}

.sphere-shell::before,
.sphere-shell::after {
  display: none;
}

.sphere-topline,
.sphere-caption {
  right: 12%;
  left: 12%;
}

.sphere-topline {
  top: 7%;
}

.sphere-caption {
  bottom: 7%;
}

.sphere-hint {
  right: 7%;
}

.hero-signal-card {
  gap: 5px;
  min-width: 172px;
  padding: 15px 17px;
  border: 0;
  border-radius: 22px;
  background: rgba(28, 30, 33, 0.72);
  box-shadow:
    0 22px 60px rgba(0, 0, 0, 0.32),
    inset 0 1px rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(24px) saturate(150%);
}

.hero-signal-card small,
.hero-signal-card span {
  font-family: var(--font-geist-sans), sans-serif;
  letter-spacing: 0;
}

.hero-signal-card small {
  font-size: 9px;
}

.hero-signal-card strong {
  font-size: 13px;
}

.hero-signal-card span {
  font-size: 9px;
}

.signal-card-a {
  left: 1%;
}

.signal-card-b {
  right: 1%;
}

.hero-foot {
  right: 4vw;
  bottom: 24px;
  left: 4vw;
  gap: 8px;
  padding: 8px;
  border: 0;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.045);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.06);
}

.hero-foot div {
  padding: 14px 17px;
  border-radius: 17px;
}

.hero-foot div + div {
  padding-left: 17px;
  border: 0;
}

.hero-foot small {
  color: var(--orange-bright);
}

.promise-rail {
  position: relative;
  z-index: 8;
  width: min(1180px, calc(100vw - 8vw));
  min-height: 84px;
  margin: -42px auto -42px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 78% 18%, rgba(255, 255, 255, 0.22), transparent 23%),
    linear-gradient(115deg, #d9561b, #f18442);
  box-shadow: 0 26px 70px rgba(138, 54, 18, 0.28);
}

.section {
  padding: clamp(112px, 10vw, 168px) 4vw;
}

.section h2,
.final-cta h2 {
  font-size: clamp(2rem, 4.2vw, 2.75rem);
  font-weight: 460;
  letter-spacing: -0.02em;
  line-height: 1.14;
}

.product-definition-section h2,
.system-section h2,
.final-cta h2 {
  font-size: clamp(2rem, 4.8vw, 2.75rem);
}

.section-heading > p:last-child,
.system-heading > p:last-child,
.leaders-heading > p:last-child,
.faq-heading > p:last-child,
.final-cta > p {
  margin-top: 26px;
  font-size: clamp(14px, 1.14vw, 17px);
  line-height: 2.05;
}

.product-definition-section {
  padding-top: clamp(150px, 13vw, 210px);
}

.product-definition-band {
  gap: 30px;
  margin-top: 68px;
  padding: 32px 38px;
  border: 0;
  border-radius: 30px;
  background:
    radial-gradient(circle at 86% 25%, rgba(233, 109, 40, 0.24), transparent 30%),
    #131518;
  box-shadow: 0 26px 70px rgba(22, 17, 13, 0.14);
}

.product-layer-grid,
.dimension-grid,
.audience-grid,
.leader-outcomes,
.rollout-track,
.trust-grid {
  gap: 18px;
  border: 0;
  background: transparent;
}

.product-layer-grid {
  margin-top: 18px;
}

.product-layer-grid article,
.dimension-grid article,
.audience-grid article,
.leader-outcomes article,
.rollout-track article {
  border: 0;
  border-radius: 30px;
  background:
    radial-gradient(circle at 95% 4%, rgba(233, 109, 40, 0.08), transparent 28%),
    rgba(255, 255, 255, 0.62);
  box-shadow:
    0 22px 55px rgba(39, 31, 23, 0.07),
    inset 0 1px rgba(255, 255, 255, 0.88);
}

.product-layer-grid article {
  min-height: 370px;
}

.product-layer-grid h3,
.friction-card h3,
.usecase-card h3,
.dimension-grid h3,
.workforce-example-grid h3,
.leader-outcomes h3,
.trust-grid h3,
.rollout-track h3 {
  margin-top: 64px;
}

.product-layer-grid article > b,
.example-roster,
.workforce-example-grid dl > div,
.audience-receives,
.human-ai-contract,
.agent-list,
.measurement-strip,
.tailored-note,
.capability-promise,
.rollout-note,
.status-groups,
.faq-list {
  border: 0;
}

.product-layer-grid article > b {
  padding-top: 0;
}

.friction-grid {
  gap: 18px;
  margin-top: 68px;
}

.friction-card {
  min-height: 400px;
  border: 0;
  border-radius: 32px;
  background:
    radial-gradient(circle at var(--spotlight-x) var(--spotlight-y), rgba(233, 109, 40, 0.12), transparent 34%),
    rgba(255, 255, 255, 0.58);
  box-shadow:
    0 22px 60px rgba(41, 32, 25, 0.07),
    inset 0 1px rgba(255, 255, 255, 0.9);
}

.spotlight-card::before {
  display: none;
}

.friction-signal,
.mini-status,
.status-pill,
.usecase-card li,
.example-roster li,
.audience-grid > article > b,
.audience-receives li,
.measurement-strip b,
.trace-table i {
  border: 0;
  background: rgba(233, 109, 40, 0.1);
}

.difference-statement,
.projection-note,
.tailored-note,
.capability-promise,
.rollout-note,
.measurement-strip {
  padding: 30px 34px;
  border: 0;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.48);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.75);
}

.difference-statement {
  margin-top: 72px;
}

.system-section {
  background:
    radial-gradient(circle at 85% 18%, rgba(233, 109, 40, 0.11), transparent 27%),
    radial-gradient(circle at 10% 86%, rgba(122, 154, 139, 0.07), transparent 31%),
    #0d0f11;
}

.system-explorer {
  margin-top: 68px;
  padding: 12px;
  border: 0;
  border-radius: 40px;
  background: rgba(255, 255, 255, 0.035);
  box-shadow:
    0 46px 120px rgba(0, 0, 0, 0.3),
    inset 0 1px rgba(255, 255, 255, 0.07);
}

.system-tabs {
  gap: 8px;
  padding: 4px;
  border: 0;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.24);
}

.system-tabs button {
  min-height: 58px;
  border-radius: 999px;
}

.system-tabs button[aria-selected="true"] {
  background: #f7f3ed;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
}

.system-panel {
  grid-template-columns: 0.8fr 1.2fr;
  gap: 12px;
  min-height: 630px;
  margin-top: 12px;
}

.system-panel-copy,
.system-panel-visual {
  border: 0;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.032);
}

.system-panel-copy h3 {
  font-size: clamp(2rem, 2.8vw, 2.75rem);
}

.system-panel-copy dl {
  gap: 8px;
  margin-top: 38px;
}

.system-panel-copy dl div {
  padding: 15px 16px;
  border: 0;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.035);
}

.system-panel-visual {
  background:
    radial-gradient(circle at 50% 50%, rgba(233, 109, 40, 0.09), transparent 36%),
    rgba(255, 255, 255, 0.026);
}

.business-visual,
.work-visual,
.trace-visual {
  border: 0;
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 46%, rgba(255, 255, 255, 0.045), transparent 52%),
    rgba(4, 5, 6, 0.42);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.06);
}

.graph-node,
.dag-node {
  border: 0;
  border-radius: 999px;
  background: rgba(31, 34, 37, 0.88);
  box-shadow:
    0 12px 28px rgba(0, 0, 0, 0.24),
    inset 0 1px rgba(255, 255, 255, 0.08);
}

.graph-core {
  border: 0;
  background: radial-gradient(circle, rgba(233, 109, 40, 0.36), rgba(233, 109, 40, 0.1));
  box-shadow: 0 0 70px rgba(233, 109, 40, 0.2);
}

.graph-ring {
  border-color: rgba(255, 255, 255, 0.075);
}

.graph-line,
.dag-path {
  opacity: 0.62;
  filter: blur(0.35px);
}

.work-contract-head,
.trace-head,
.work-contract-foot {
  border: 0;
}

.work-contract-head,
.trace-head {
  margin: 12px;
  padding: 0 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.035);
}

.work-contract-foot {
  right: 12px;
  bottom: 12px;
  left: 12px;
  gap: 6px;
}

.work-contract-foot span {
  border: 0 !important;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.035);
}

.trace-table {
  display: grid;
  gap: 7px;
}

.trace-table > div {
  min-height: 52px;
  padding: 0 12px;
  border: 0;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.032);
}

.trace-table i {
  padding: 6px 8px;
  font-size: 7px;
}

.trace-proof {
  border: 0;
  border-radius: 18px;
  background: rgba(134, 180, 151, 0.1);
  box-shadow: inset 0 1px rgba(134, 180, 151, 0.16);
}

.dimension-grid {
  margin-top: 68px;
}

.dimension-grid article {
  min-height: 350px;
}

.dimension-grid article > small {
  text-transform: none;
}

.dimension-grid .dimension-wide {
  grid-template-columns: 45px 0.7fr 0.65fr 1.2fr;
}

.ontology-definition {
  padding: 28px 30px;
  border: 0;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.5);
}

.customer-lens {
  gap: 14px;
  margin-top: 84px;
  border: 0;
  border-radius: 36px;
  overflow: visible;
  background: transparent;
}

.lens-copy,
.lens-map {
  border: 0;
  border-radius: 32px;
  background-color: rgba(255, 255, 255, 0.48);
  box-shadow:
    0 24px 65px rgba(40, 31, 23, 0.07),
    inset 0 1px rgba(255, 255, 255, 0.8);
}

.lens-map {
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 50%, rgba(233, 109, 40, 0.13), transparent 34%),
    radial-gradient(circle at 18% 16%, rgba(255, 255, 255, 0.7), transparent 30%),
    #e9e4db;
}

.lens-center,
.lens-object {
  border: 0;
  border-radius: 20px;
  background: rgba(249, 247, 242, 0.86);
  box-shadow:
    0 18px 46px rgba(38, 28, 19, 0.12),
    inset 0 1px #fff;
  backdrop-filter: blur(12px);
}

.lens-center {
  background: #181a1d;
  color: var(--paper);
  box-shadow: 0 24px 70px rgba(72, 34, 14, 0.2);
}

.lens-center small {
  color: var(--orange-bright);
}

.lens-edge {
  height: 2px;
  opacity: 0.35;
  filter: blur(1px);
}

.projection-note {
  margin-top: 24px;
}

.execution-stepper {
  margin-top: 68px;
  padding: 12px;
  border: 0;
  border-radius: 38px;
  overflow: visible;
  background: rgba(255, 255, 255, 0.48);
  box-shadow: 0 30px 80px rgba(37, 27, 18, 0.09);
}

.stepper-track {
  gap: 7px;
  padding: 4px;
  border: 0;
  border-radius: 24px;
  background: rgba(11, 12, 14, 0.05);
}

.stepper-track button {
  min-height: 64px;
  border-radius: 19px;
}

.stepper-track button i {
  display: none;
}

.stepper-track button[aria-selected="true"] {
  background: var(--ink);
  box-shadow: 0 14px 30px rgba(11, 12, 14, 0.18);
}

.stepper-panel {
  gap: 12px;
  min-height: 440px;
  margin-top: 12px;
}

.stepper-main,
.stepper-data {
  border: 0;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.56);
}

.stepper-main h3 {
  font-size: clamp(2rem, 3vw, 2.75rem);
}

.stepper-data {
  gap: 8px;
  padding: 8px;
}

.stepper-data > div {
  border: 0 !important;
  border-radius: 19px;
  background: rgba(11, 12, 14, 0.035);
}

.execution-proof {
  margin-top: 56px;
  border: 0;
  border-radius: 36px;
  box-shadow: 0 38px 100px rgba(22, 16, 11, 0.18);
}

.proof-top,
.proof-grid > div + div,
.proof-context dl div,
.proof-results li {
  border-color: rgba(255, 255, 255, 0.065);
}

.proof-grid {
  gap: 1px;
}

.proof-grid > div {
  background: rgba(255, 255, 255, 0.018);
}

.proof-orb {
  border: 0;
  background: radial-gradient(circle at 35% 30%, #ffad76, #e66725 55%, rgba(233, 109, 40, 0.12) 70%);
  color: white;
  box-shadow: 0 18px 55px rgba(233, 109, 40, 0.25);
}

.comparison-table {
  display: grid;
  gap: 8px;
  margin-top: 68px;
  padding: 10px;
  border: 0;
  border-radius: 32px;
  background: rgba(11, 12, 14, 0.055);
}

.comparison-row {
  min-height: 82px;
  border: 0;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.62);
}

.comparison-row > * + * {
  border: 0;
}

.comparison-head {
  background: var(--ink);
}

.usecase-section {
  background:
    radial-gradient(circle at 12% 18%, rgba(233, 109, 40, 0.08), transparent 27%),
    #2a2826;
}

.usecase-section-first::before {
  display: none;
}

.usecase-grid {
  gap: 18px;
  margin-top: 68px;
}

.usecase-card {
  min-height: 390px;
  border: 0;
  border-radius: 32px;
  background:
    radial-gradient(circle at var(--spotlight-x) var(--spotlight-y), rgba(233, 109, 40, 0.13), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), transparent 52%),
    #191b1f;
  box-shadow:
    0 28px 64px rgba(0, 0, 0, 0.2),
    inset 0 1px rgba(255, 255, 255, 0.075);
}

.usecase-card li {
  background: rgba(255, 255, 255, 0.06);
}

.capability-promise {
  background: rgba(255, 255, 255, 0.045);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.07);
}

.workforce-example-grid {
  gap: 18px;
  margin-top: 68px;
}

.workforce-example-grid > article {
  min-height: 650px;
  border: 0;
  border-radius: 34px;
  background:
    radial-gradient(circle at 92% 4%, rgba(233, 109, 40, 0.11), transparent 25%),
    rgba(255, 255, 255, 0.48);
  box-shadow:
    0 25px 65px rgba(40, 30, 21, 0.08),
    inset 0 1px rgba(255, 255, 255, 0.85);
}

.example-roster {
  padding: 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.5);
}

.workforce-example-grid dl {
  gap: 7px;
}

.workforce-example-grid dl > div {
  padding: 15px 17px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.38);
}

.tailored-note {
  background: rgba(255, 255, 255, 0.5);
}

.audience-grid article {
  min-height: 450px;
}

.workforce-section {
  gap: 7vw;
  background:
    radial-gradient(circle at 8% 22%, rgba(233, 109, 40, 0.09), transparent 24%),
    var(--ink);
}

.human-ai-contract {
  gap: 8px;
  margin-top: 40px;
}

.human-ai-contract > div {
  min-height: 68px;
  padding: 0 15px;
  border: 0;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.045);
}

.human-ai-contract span,
.agent-avatar {
  border: 0;
  background: rgba(233, 109, 40, 0.12);
}

.agent-list {
  display: grid;
  gap: 10px;
}

.agent-list article {
  min-height: 100px;
  padding: 14px 18px;
  border: 0;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.055);
}

.employee-blueprint-list .agent-avatar {
  border-radius: 50%;
}

.leader-outcomes {
  margin-top: 68px;
}

.leader-outcomes article {
  min-height: 300px;
}

.measurement-strip {
  margin-top: 54px;
}

.rollout-track {
  margin-top: 68px;
}

.rollout-track article {
  min-height: 360px;
}

.rollout-track article::after {
  display: none;
}

.rollout-track article > div span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(233, 109, 40, 0.11);
}

.rollout-note {
  margin-top: 22px;
}

.status-groups {
  gap: 14px;
  margin-top: 68px;
}

.status-groups article {
  padding: 34px;
  border: 0;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.5);
  box-shadow:
    0 22px 55px rgba(39, 31, 23, 0.065),
    inset 0 1px rgba(255, 255, 255, 0.82);
}

.status-groups li {
  border-color: rgba(11, 12, 14, 0.07);
}

.status-pill.live {
  background: rgba(134, 180, 151, 0.15);
}

.status-pill.build {
  background: rgba(11, 12, 14, 0.06);
}

.trust-section {
  background:
    radial-gradient(circle at 82% 28%, rgba(233, 109, 40, 0.09), transparent 27%),
    #0d0f11;
}

.trust-grid {
  margin-top: 68px;
}

.trust-grid article {
  min-height: 310px;
  border: 0;
  border-radius: 30px;
  background:
    radial-gradient(circle at 92% 5%, rgba(233, 109, 40, 0.1), transparent 26%),
    rgba(255, 255, 255, 0.038);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.065);
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  border: 0;
  border-radius: 22px;
  background: rgba(11, 12, 14, 0.045);
  overflow: hidden;
}

.faq-list summary {
  min-height: 92px;
  padding: 0 22px;
}

.faq-list summary i {
  border: 0;
  background: rgba(233, 109, 40, 0.1);
}

.faq-list details > p {
  margin-left: 78px;
  padding-right: 26px;
}

.final-cta {
  min-height: 760px;
  background:
    radial-gradient(circle at 78% 44%, rgba(233, 109, 40, 0.2), transparent 22%),
    radial-gradient(circle at 88% 70%, rgba(122, 154, 139, 0.08), transparent 26%),
    #2a2826;
}

.final-cta .cta-grid {
  opacity: 0.22;
}

.cta-orbit {
  border: 0;
  background: radial-gradient(circle, rgba(233, 109, 40, 0.08), transparent 60%);
  filter: drop-shadow(0 0 70px rgba(233, 109, 40, 0.08));
}

.cta-orbit::before,
.cta-orbit::after {
  border-color: rgba(255, 255, 255, 0.06);
}

.cta-expectations {
  gap: 8px;
  padding: 8px;
  border: 0;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.045);
}

.cta-expectations > div {
  padding: 17px;
  border: 0 !important;
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.025);
}

footer {
  border: 0;
  background: #222222;
}

footer p {
  text-transform: none;
}

.reveal-ready [data-reveal] {
  opacity: 0;
  filter: blur(8px);
  transform: translateY(18px) scale(0.985);
  transition:
    opacity 620ms var(--ease-out),
    filter 620ms var(--ease-out),
    transform 620ms var(--ease-out);
}

.reveal-ready [data-reveal][data-visible="true"] {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0) scale(1);
}

@media (hover: hover) and (pointer: fine) {
  .product-layer-grid article,
  .friction-card,
  .usecase-card,
  .workforce-example-grid > article,
  .dimension-grid article,
  .leader-outcomes article,
  .rollout-track article,
  .trust-grid article,
  .status-groups article,
  .agent-list article {
    transition:
      transform 240ms var(--ease-out),
      box-shadow 240ms var(--ease-out);
  }

  .product-layer-grid article:hover,
  .friction-card:hover,
  .usecase-card:hover,
  .workforce-example-grid > article:hover,
  .dimension-grid article:hover,
  .leader-outcomes article:hover,
  .rollout-track article:hover,
  .trust-grid article:hover,
  .status-groups article:hover,
  .agent-list article:hover {
    transform: translateY(-4px);
  }
}

@media (max-width: 1180px) {
  .hero-copy {
    width: 61%;
  }

  .hero-visual {
    right: -10vw;
  }

  .product-layer-grid,
  .dimension-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 980px) {
  .hero {
    padding-bottom: 112px;
  }

  .hero-copy {
    width: 100%;
  }

  .hero-visual {
    right: auto;
    height: 680px;
  }

  .sphere-shell {
    min-height: 640px;
  }

  .hero-foot {
    margin-top: 26px;
  }

  .promise-rail {
    width: calc(100vw - 48px);
  }

  .system-panel,
  .stepper-panel {
    grid-template-columns: 1fr;
  }

  .system-panel-copy,
  .system-panel-visual,
  .stepper-main,
  .stepper-data {
    border: 0;
  }

  .rollout-track {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 780px) {
  .site-header {
    padding-left: 17px;
  }

  .hero {
    padding: 122px 18px 100px;
  }

  .hero h1 .hero-subject {
    margin-bottom: 13px;
    font-size: clamp(1.35rem, 6.3vw, 2rem);
  }

  .hero h1 .hero-statement {
    font-size: clamp(2rem, 16vw, 2.75rem);
    line-height: 1.14;
  }

  .hero-visual {
    height: 560px;
    margin-top: 46px;
  }

  .sphere-shell {
    min-height: 540px;
  }

  .hero-signal-card {
    min-width: 142px;
    padding: 12px 13px;
    border-radius: 18px;
  }

  .hero-signal-card strong {
    font-size: 11px;
  }

  .hero-signal-card span {
    font-size: 8px;
  }

  .hero-foot {
    gap: 6px;
    border-radius: 20px;
  }

  .hero-foot div {
    padding: 13px;
  }

  .hero-foot div:nth-child(3),
  .hero-foot div:nth-child(4) {
    border: 0;
  }

  .promise-rail {
    width: calc(100vw - 36px);
    margin-top: -40px;
    margin-bottom: -40px;
    border-radius: 24px;
  }

  .section {
    padding: 100px 18px;
  }

  .product-definition-section {
    padding-top: 135px;
  }

  .section h2,
  .final-cta h2,
  .product-definition-section h2,
  .system-section h2 {
    font-size: clamp(2rem, 11.4vw, 2.75rem);
  }

  .eyebrow,
  .kicker,
  .mono-label {
    margin-bottom: 18px;
    padding: 7px 10px;
    font-size: 9px;
  }

  .product-definition-band,
  .difference-statement,
  .projection-note,
  .tailored-note,
  .capability-promise,
  .rollout-note,
  .measurement-strip {
    padding: 25px;
    border-radius: 24px;
  }

  .product-layer-grid,
  .dimension-grid,
  .usecase-grid,
  .workforce-example-grid,
  .leader-outcomes,
  .rollout-track,
  .trust-grid {
    grid-template-columns: 1fr;
    gap: 13px;
  }

  .product-layer-grid article,
  .friction-card,
  .usecase-card,
  .workforce-example-grid > article,
  .dimension-grid article,
  .leader-outcomes article,
  .rollout-track article,
  .trust-grid article,
  .status-groups article {
    border-radius: 26px;
  }

  .system-explorer,
  .execution-stepper {
    margin-top: 50px;
    padding: 8px;
    border-radius: 28px;
  }

  .system-tabs {
    grid-template-columns: 1fr;
    border-radius: 22px;
  }

  .system-tabs button {
    justify-content: flex-start;
    min-height: 48px;
    border-radius: 17px;
  }

  .system-panel-copy,
  .system-panel-visual,
  .stepper-main,
  .stepper-data {
    padding: 26px;
    border-radius: 22px;
  }

  .system-panel-visual {
    padding: 14px;
  }

  .business-visual,
  .work-visual,
  .trace-visual {
    min-height: 450px;
    border-radius: 22px;
  }

  .customer-lens {
    gap: 12px;
  }

  .lens-copy,
  .lens-map {
    border-radius: 26px;
  }

  .stepper-track {
    border-radius: 21px;
  }

  .execution-proof {
    border-radius: 28px;
  }

  .comparison-table {
    border-radius: 26px;
  }

  .comparison-row {
    border-radius: 18px;
  }

  .faq-list details {
    border-radius: 19px;
  }

  .faq-list summary {
    padding: 0 16px;
  }

  .faq-list details > p {
    margin-left: 58px;
    padding-right: 18px;
  }

  .final-cta {
    min-height: 820px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal-ready [data-reveal] {
    opacity: 1;
    filter: none;
    transform: none;
  }
}

/* 実際の画面（構想ではないことを見せる） */
.live-screens-section {
  display: grid;
  gap: 32px;
}

.live-screen {
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
}

.live-screen img {
  display: block;
  width: 100%;
  height: auto;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.live-screen figcaption {
  padding: 20px 24px 24px;
  font-size: 14px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.62);
}

.live-screen figcaption b {
  display: block;
  margin-bottom: 6px;
  font-size: 16px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.94);
}

@media (max-width: 720px) {
  .live-screen figcaption {
    padding: 16px 18px 20px;
    font-size: 13px;
  }
}
