:root {
  --ink: #07110d;
  --ink-2: #0b1812;
  --ink-3: #10231a;
  --paper: #f0f4eb;
  --paper-2: #e3eadc;
  --paper-3: #cbd5c5;
  --muted: #839087;
  --muted-dark: #4d5d53;
  --line: rgba(227, 234, 220, 0.16);
  --line-dark: rgba(7, 17, 13, 0.14);
  --signal: #c9ff52;
  --signal-dark: #92c526;
  --signal-soft: rgba(201, 255, 82, 0.12);
  --ember: #ff7657;
  --white: #fbfff6;
  --body: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "DM Mono", "SFMono-Regular", Consolas, monospace;
  --shell: min(1380px, calc(100vw - 96px));
  --radius: 4px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

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

::selection {
  background: var(--signal);
  color: var(--ink);
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 1000;
  background: var(--signal);
  color: var(--ink);
  padding: 10px 16px;
  font-weight: 800;
}

.skip-link:focus {
  top: 16px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.preview-ribbon {
  min-height: 34px;
  padding: 7px 48px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--signal);
  color: var(--ink);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.preview-ribbon a {
  margin-left: auto;
  border-bottom: 1px solid currentColor;
}

.site-header {
  width: 100%;
  min-height: 84px;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid var(--line);
  background: rgba(7, 17, 13, .9);
  backdrop-filter: blur(20px);
  position: sticky;
  top: 0;
  z-index: 100;
}

.brand {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -.04em;
}

.brand-mark {
  width: 33px;
  height: 33px;
  fill: none;
  stroke: var(--signal);
  stroke-width: 1.6;
}

.brand-mark circle:first-of-type {
  fill: var(--signal);
  stroke: none;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .04em;
  color: var(--paper-3);
}

.desktop-nav a,
.footer-links a {
  position: relative;
  transition: color .2s ease;
}

.desktop-nav a::after,
.footer-links a::after {
  content: "";
  height: 1px;
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  background: var(--signal);
  transition: right .2s ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible,
.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--white);
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after,
.footer-links a:hover::after,
.footer-links a:focus-visible::after {
  right: 0;
}

.header-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 10px 0 10px 14px;
  border-left: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 11px;
  color: var(--white);
}

.header-cta span {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  background: var(--paper);
  color: var(--ink);
  transition: background .2s ease, transform .2s ease;
}

.header-cta:hover span {
  background: var(--signal);
  transform: translate(2px, -2px);
}

.menu-toggle,
.mobile-nav {
  display: none;
}

.section-shell {
  width: var(--shell);
  margin-inline: auto;
}

.hero {
  min-height: calc(100vh - 118px);
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(520px, 1.1fr);
  align-items: stretch;
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(227, 234, 220, .025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(227, 234, 220, .025) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-copy {
  min-height: 720px;
  padding: clamp(72px, 8vw, 128px) clamp(36px, 6vw, 92px) 54px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-right: 1px solid var(--line);
  position: relative;
  z-index: 1;
}

.status-line,
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.status-line {
  color: var(--paper-3);
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--signal);
  box-shadow: 0 0 0 5px var(--signal-soft);
  animation: status-pulse 2.4s ease-in-out infinite;
}

@keyframes status-pulse {
  50% { box-shadow: 0 0 0 9px transparent; }
}

.hero h1 {
  max-width: 760px;
  margin: 42px 0 32px;
  font-size: clamp(70px, 8.3vw, 142px);
  font-weight: 500;
  line-height: .82;
  letter-spacing: -.08em;
}

h1 em,
h2 em {
  color: var(--signal);
  font-style: normal;
}

.hero-lede {
  max-width: 620px;
  margin: 0;
  color: var(--paper-3);
  font-size: clamp(17px, 1.3vw, 21px);
  line-height: 1.65;
}

.hero-actions {
  margin-top: 42px;
  display: flex;
  align-items: center;
  gap: 30px;
}

.button {
  min-height: 52px;
  padding: 0 21px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  border: 1px solid transparent;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-3px);
}

.button-primary {
  background: var(--signal);
  color: var(--ink);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--white);
}

.button-dark {
  background: var(--ink);
  color: var(--white);
}

.button-large {
  min-height: 62px;
  padding-inline: 28px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid rgba(227, 234, 220, .4);
  padding-bottom: 5px;
  color: var(--paper);
  font-family: var(--mono);
  font-size: 11px;
  transition: border-color .2s ease, color .2s ease;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--signal);
  border-color: var(--signal);
}

.hero-footnote {
  margin-top: auto;
  padding-top: 64px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.hero-footnote span:not(:last-child)::after {
  content: "/";
  margin-left: 22px;
  color: var(--signal-dark);
}

.hero-system {
  min-height: 720px;
  padding: 26px 28px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  background:
    radial-gradient(circle at 50% 48%, rgba(63, 107, 76, .18), transparent 43%),
    #09140f;
  overflow: hidden;
  position: relative;
}

.system-topline,
.system-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .1em;
}

.system-topline {
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.system-clock {
  color: var(--paper-3);
}

.signal-map {
  min-height: 540px;
  position: relative;
  display: grid;
  place-items: center;
}

.signal-map svg {
  width: min(100%, 760px);
  height: auto;
}

.map-grid path {
  fill: none;
  stroke: rgba(227, 234, 220, .055);
  stroke-width: 1;
}

.map-links path {
  fill: none;
  stroke: rgba(201, 255, 82, .25);
  stroke-width: 1.2;
  stroke-dasharray: 5 7;
}

.map-pulses circle {
  fill: var(--signal);
  filter: drop-shadow(0 0 5px var(--signal));
}

.map-node circle:first-child {
  fill: var(--paper);
  stroke: none;
}

.map-node circle:nth-child(2) {
  fill: none;
  stroke: rgba(227, 234, 220, .25);
}

.map-node text,
.map-core text {
  fill: var(--muted);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .12em;
}

.map-node.minor circle {
  fill: var(--signal-dark);
}

.map-core circle {
  fill: none;
  stroke: var(--signal);
}

.map-core circle:nth-child(1) {
  opacity: .25;
  stroke-dasharray: 4 5;
  animation: orbit 18s linear infinite;
  transform-origin: 340px 260px;
}

.map-core circle:nth-child(2) {
  opacity: .75;
}

.map-core circle:nth-child(3) {
  fill: var(--signal);
  stroke: none;
  filter: drop-shadow(0 0 9px var(--signal));
}

.map-core text {
  fill: var(--signal);
  text-anchor: middle;
  font-size: 11px;
}

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

.signal-alert {
  width: 100%;
  min-height: 68px;
  padding: 12px 14px;
  margin-top: 6px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(255, 118, 87, .48);
  background: rgba(13, 25, 19, .92);
  box-shadow: 0 20px 60px rgba(0, 0, 0, .35);
}

.alert-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 118, 87, .12);
  color: var(--ember);
  font-family: var(--mono);
}

.signal-alert span,
.signal-alert strong {
  display: block;
}

.signal-alert div span {
  color: var(--ember);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.signal-alert strong {
  color: var(--paper);
  font-size: 11px;
  font-weight: 600;
}

.signal-alert .alert-time {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 9px;
}

.system-footer {
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.system-footer span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.pulse {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--ember);
}

.pulse-green {
  background: var(--signal);
}

.proof-bar {
  min-height: 150px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
}

.proof-bar > div {
  padding: 32px clamp(22px, 4vw, 64px);
  display: flex;
  align-items: center;
  gap: 18px;
  border-right: 1px solid var(--line-dark);
}

.proof-bar > div:last-child {
  border-right: 0;
}

.proof-bar strong {
  font-size: clamp(34px, 3.8vw, 62px);
  font-weight: 500;
  letter-spacing: -.07em;
}

.proof-bar span {
  max-width: 110px;
  color: var(--muted-dark);
  font-family: var(--mono);
  font-size: 9px;
  line-height: 1.5;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.platform,
.outcomes {
  padding-top: 148px;
  padding-bottom: 150px;
}

.section-intro {
  display: grid;
  grid-template-columns: 1fr 1.2fr .9fr;
  column-gap: 46px;
  align-items: start;
}

.kicker {
  color: var(--signal-dark);
}

.section-intro h2,
.cora-heading h2,
.governance-copy h2,
.compliance-copy h2,
.company-statement h2,
.final-cta-inner h2 {
  margin: 0;
  font-size: clamp(50px, 6vw, 96px);
  font-weight: 500;
  line-height: .95;
  letter-spacing: -.07em;
}

.section-intro p {
  margin: 5px 0 0;
  color: var(--paper-3);
  font-size: 16px;
}

.operating-grid {
  margin-top: 96px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.operating-card {
  min-height: 490px;
  padding: 28px clamp(26px, 3vw, 46px) 36px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--line);
  position: relative;
  transition: background .3s ease;
}

.operating-card:last-child {
  border-right: 0;
}

.operating-card:hover {
  background: rgba(227, 234, 220, .025);
}

.card-featured {
  background: var(--paper);
  color: var(--ink);
}

.card-featured:hover {
  background: var(--white);
}

.card-index {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 9px;
}

.card-symbol {
  width: 110px;
  height: 110px;
  margin: 68px 0 44px;
  position: relative;
}

.card-symbol i {
  display: block;
  position: absolute;
}

.observe-symbol i {
  inset: 50%;
  border: 1px solid var(--signal-dark);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.observe-symbol i:nth-child(1) { width: 20px; height: 20px; background: var(--signal); }
.observe-symbol i:nth-child(2) { width: 60px; height: 60px; opacity: .65; }
.observe-symbol i:nth-child(3) { width: 106px; height: 106px; opacity: .25; }

.reason-symbol i {
  width: 60px;
  height: 60px;
  border: 1px solid var(--ink);
  transform: rotate(45deg);
}

.reason-symbol i:nth-child(1) { left: 5px; top: 5px; }
.reason-symbol i:nth-child(2) { right: 5px; bottom: 5px; background: var(--signal); }
.reason-symbol i:nth-child(3) { width: 12px; height: 12px; top: 49px; left: 49px; background: var(--ink); }

.act-symbol {
  border: 1px solid rgba(201, 255, 82, .5);
}

.act-symbol i:first-child {
  width: 50px;
  height: 1px;
  top: 54px;
  left: 29px;
  background: var(--signal);
}

.act-symbol i:last-child {
  width: 12px;
  height: 12px;
  top: 48px;
  right: 26px;
  border-top: 1px solid var(--signal);
  border-right: 1px solid var(--signal);
  transform: rotate(45deg);
}

.operating-card h3 {
  margin: 0 0 18px;
  font-size: 30px;
  font-weight: 600;
  letter-spacing: -.04em;
}

.operating-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.card-featured p {
  color: var(--muted-dark);
}

.card-caption {
  margin-top: auto;
  padding-top: 38px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.source-cloud {
  padding: 34px 0 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 30px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.source-cloud span:not(:last-child)::after {
  content: "·";
  margin-left: 30px;
  color: var(--signal-dark);
}

.story-section {
  padding: 150px 0;
  background: var(--paper);
  color: var(--ink);
}

.story-intro .kicker {
  color: #587119;
}

.story-intro h2 em {
  color: #587119;
}

.story-intro p {
  color: var(--muted-dark);
}

.story-selector {
  margin-top: 88px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.story-tab {
  min-height: 78px;
  padding: 0 25px;
  display: flex;
  align-items: center;
  gap: 20px;
  border: 0;
  border-right: 1px solid var(--line-dark);
  background: transparent;
  color: var(--muted-dark);
  text-align: left;
  cursor: pointer;
  transition: background .2s ease, color .2s ease;
}

.story-tab:last-child {
  border-right: 0;
}

.story-tab span {
  font-family: var(--mono);
  font-size: 9px;
}

.story-tab.active {
  background: var(--ink);
  color: var(--white);
}

.story-tab.active span {
  color: var(--signal);
}

.story-tab:hover:not(.active),
.story-tab:focus-visible:not(.active) {
  background: var(--paper-2);
  color: var(--ink);
}

.story-board {
  min-height: 600px;
  margin-top: 34px;
  padding: clamp(32px, 5vw, 68px);
  border: 1px solid var(--line-dark);
  background:
    linear-gradient(90deg, transparent 49.95%, rgba(7, 17, 13, .05) 50%, transparent 50.05%),
    var(--white);
}

.story-board-head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 40px;
  padding-bottom: 45px;
  border-bottom: 1px solid var(--line-dark);
}

.story-label {
  color: #587119;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .08em;
}

.story-board h3 {
  max-width: 720px;
  margin: 12px 0 0;
  font-size: clamp(30px, 4vw, 58px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -.055em;
}

.story-outcome {
  color: #587119;
  font-size: clamp(36px, 5vw, 70px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -.07em;
}

.story-timeline {
  margin: 0;
  padding: 54px 0 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  list-style: none;
}

.story-timeline li {
  min-height: 240px;
  padding: 0 25px;
  border-left: 1px solid var(--line-dark);
  position: relative;
}

.story-timeline li::before {
  content: "";
  width: 7px;
  height: 7px;
  position: absolute;
  top: -4px;
  left: -4px;
  border-radius: 50%;
  background: #6f9810;
}

.timeline-time {
  color: #587119;
  font-family: var(--mono);
  font-size: 10px;
}

.story-timeline div {
  margin-top: 72px;
}

.story-timeline strong {
  display: block;
  margin-bottom: 12px;
  font-size: 16px;
}

.story-timeline p {
  margin: 0;
  color: var(--muted-dark);
  font-size: 12px;
}

.story-verdict {
  padding: 26px 0 0;
  display: grid;
  grid-template-columns: 1fr 3fr;
  border-top: 1px solid var(--line-dark);
}

.story-verdict span {
  color: #587119;
  font-family: var(--mono);
  font-size: 9px;
}

.story-verdict p {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
}

.cora-section {
  padding-top: 150px;
  padding-bottom: 160px;
  display: grid;
  grid-template-columns: .8fr .7fr 1.5fr;
  gap: clamp(35px, 5vw, 90px);
  align-items: start;
}

.cora-heading .kicker,
.governance-copy .kicker,
.company-statement .kicker,
.final-cta-inner .kicker {
  margin-bottom: 34px;
}

.cora-heading h2 {
  font-size: clamp(46px, 5.3vw, 82px);
}

.cora-copy {
  padding-top: 54px;
}

.cora-lede {
  margin: 0;
  color: var(--paper-3);
  font-size: 15px;
}

.cora-principles {
  margin-top: 42px;
  display: grid;
}

.cora-principles span {
  padding: 13px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.conversation {
  border: 1px solid rgba(201, 255, 82, .25);
  background: #09140f;
  box-shadow: 0 35px 90px rgba(0, 0, 0, .3);
}

.conversation-chrome {
  min-height: 48px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: .1em;
}

.conversation-chrome span:first-child {
  display: flex;
  align-items: center;
  gap: 8px;
}

.conversation-chrome i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--signal);
}

.message,
.tool-run {
  padding: 28px 30px;
}

.message-role,
.tool-run > span {
  display: block;
  margin-bottom: 12px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: .1em;
}

.operator-message {
  border-bottom: 1px solid var(--line);
}

.operator-message p {
  margin: 0;
  font-size: 17px;
}

.tool-run {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid var(--line);
  background: rgba(201, 255, 82, .035);
}

.tool-run > span {
  margin: 0;
  color: var(--signal);
}

.tool-run code {
  color: var(--paper-3);
  font-family: var(--mono);
  font-size: 10px;
}

.tool-run b {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 400;
}

.cora-message {
  padding-top: 36px;
  padding-bottom: 34px;
}

.cora-message .message-role {
  color: var(--signal);
}

.cora-message p {
  margin: 0 0 20px;
  color: var(--paper-3);
  font-size: 15px;
}

.cora-message strong {
  color: var(--white);
}

.cora-message .message-next {
  color: var(--white);
  font-size: 19px;
  font-weight: 600;
}

.evidence-row {
  margin-top: 32px;
  padding-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 9px 22px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-family: var(--mono);
  font-size: 8px;
  text-transform: uppercase;
}

.governance {
  padding: 150px 0;
  background: var(--ink-3);
  color: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.governance-inner {
  display: grid;
  grid-template-columns: .65fr 1.35fr;
  gap: 80px;
  position: relative;
}

.directive-mark {
  width: 280px;
  height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(201, 255, 82, .55);
  border-radius: 50%;
  position: relative;
  color: var(--signal);
}

.directive-mark::before,
.directive-mark::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(201, 255, 82, .16);
  border-radius: 50%;
}

.directive-mark::before { inset: -42px; }
.directive-mark::after { inset: -86px; }

.directive-mark span {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .18em;
}

.directive-mark strong {
  margin: -5px 0;
  font-size: 92px;
  font-weight: 500;
  letter-spacing: -.08em;
}

.governance-copy .kicker {
  color: var(--signal);
}

.governance-copy h2 em {
  color: var(--signal);
  text-decoration: underline;
  text-decoration-color: var(--signal);
  text-decoration-thickness: 3px;
  text-underline-offset: 9px;
}

.governance-copy > p {
  max-width: 680px;
  margin: 36px 0 0;
  color: var(--paper-3);
  font-size: 18px;
}

.guardrail-grid {
  grid-column: 1 / -1;
  margin-top: 72px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.guardrail {
  min-height: 250px;
  padding: 25px 27px 30px;
  border-right: 1px solid var(--line);
}

.guardrail:last-child {
  border-right: 0;
}

.guardrail > span {
  font-family: var(--mono);
  font-size: 9px;
  color: var(--signal);
}

.guardrail h3 {
  margin: 70px 0 12px;
  font-size: 20px;
}

.guardrail p {
  margin: 0;
  color: var(--paper-3);
  font-size: 12px;
}

.outcomes .section-intro {
  grid-template-columns: 1fr 2.1fr;
}

.outcome-grid {
  margin-top: 90px;
  display: grid;
  grid-template-columns: 1.6fr .8fr .8fr;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.outcome-card {
  min-height: 500px;
  padding: 30px clamp(24px, 3vw, 46px) 36px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--line);
}

.outcome-card:last-child {
  border-right: 0;
}

.outcome-meta {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.outcome-card h3 {
  margin: 80px 0 24px;
  font-size: clamp(23px, 2.5vw, 39px);
  font-weight: 500;
  line-height: 1.16;
  letter-spacing: -.05em;
}

.outcome-card p {
  max-width: 690px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.outcome-stats {
  margin-top: auto;
  padding-top: 40px;
  display: flex;
  gap: 54px;
}

.outcome-stats span {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 8px;
  text-transform: uppercase;
}

.outcome-stats b {
  display: block;
  color: var(--signal);
  font-family: var(--body);
  font-size: clamp(32px, 4vw, 55px);
  font-weight: 500;
  letter-spacing: -.06em;
  text-transform: none;
}

.outcome-stats.stacked {
  display: grid;
  gap: 25px;
}

.outcome-accent {
  background: var(--paper);
  color: var(--ink);
}

.outcome-accent .outcome-meta,
.outcome-accent .outcome-stats span {
  color: var(--muted-dark);
}

.outcome-accent .outcome-stats b {
  color: #6e970f;
}

.outcomes-link {
  margin-top: 38px;
  float: right;
}

.compliance-band {
  padding: 140px 0;
  background: var(--paper);
  color: var(--ink);
}

.compliance-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(60px, 10vw, 160px);
  align-items: center;
}

.compliance-copy .kicker {
  margin-bottom: 34px;
  color: #587119;
}

.compliance-copy h2 em {
  color: #587119;
}

.compliance-copy p {
  max-width: 580px;
  margin: 30px 0 35px;
  color: var(--muted-dark);
}

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

.compliance-list > div {
  min-height: 130px;
  display: grid;
  grid-template-columns: 55px 1fr;
  align-content: center;
  column-gap: 18px;
  border-bottom: 1px solid var(--line-dark);
}

.compliance-list span {
  grid-row: 1 / 3;
  color: #587119;
  font-family: var(--mono);
  font-size: 10px;
}

.compliance-list p {
  margin: 0 0 5px;
  font-size: 18px;
  font-weight: 600;
}

.compliance-list small {
  color: var(--muted-dark);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.company {
  padding-top: 150px;
  padding-bottom: 155px;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: clamp(60px, 10vw, 160px);
}

.company-statement h2 {
  font-size: clamp(50px, 6.4vw, 100px);
}

.company-body {
  padding-top: 52px;
}

.company-body > p {
  margin: 0 0 25px;
  color: var(--paper-3);
  font-size: 16px;
}

.role-row {
  margin-top: 50px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
}

.role-row span {
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-family: var(--mono);
  font-size: 8px;
  text-transform: uppercase;
}

.role-row b {
  margin-right: 8px;
  color: var(--signal);
}

.final-cta-section {
  min-height: 760px;
  padding: 130px 48px;
  display: grid;
  place-items: center;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 50% 50%, rgba(201, 255, 82, .08), transparent 42%),
    #08130e;
  text-align: center;
  overflow: hidden;
  position: relative;
}

.final-orbit {
  width: 590px;
  height: 590px;
  position: absolute;
  left: 50%;
  top: 50%;
  border: 1px solid rgba(201, 255, 82, .1);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.final-orbit i {
  position: absolute;
  border: 1px solid rgba(201, 255, 82, .08);
  border-radius: 50%;
}

.final-orbit i:nth-child(1) { inset: 70px; }
.final-orbit i:nth-child(2) { inset: 150px; }
.final-orbit i:nth-child(3) { width: 8px; height: 8px; left: calc(50% - 4px); top: -4px; background: var(--signal); box-shadow: 0 0 18px var(--signal); animation: orbit-dot 16s linear infinite; transform-origin: 4px 299px; }

@keyframes orbit-dot {
  to { transform: rotate(360deg); }
}

.final-cta-inner {
  max-width: 1120px;
  position: relative;
  z-index: 1;
}

.final-cta-inner h2 {
  font-size: clamp(52px, 7.2vw, 112px);
}

.final-cta-inner p {
  max-width: 660px;
  margin: 34px auto;
  color: var(--paper-3);
  font-size: 17px;
}

.direct-mail {
  width: max-content;
  margin: 30px auto 0;
  display: block;
  border-bottom: 1px solid var(--muted);
  color: var(--muted);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .06em;
}

.site-footer {
  min-height: 190px;
  padding: 44px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: 40px;
  align-items: center;
  border-top: 1px solid var(--line);
  background: #050c09;
}

.site-footer p,
.copyright,
.footer-links {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 8px;
  line-height: 1.8;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.footer-links {
  display: flex;
  gap: 22px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.2, .7, .2, 1);
}

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

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

@media (max-width: 1180px) {
  :root {
    --shell: min(100% - 52px, 1120px);
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
    padding: 0;
    display: grid;
    place-content: center;
    gap: 7px;
    border: 1px solid var(--line);
    background: transparent;
    cursor: pointer;
  }

  .menu-toggle > span:not(.sr-only) {
    width: 19px;
    height: 1px;
    display: block;
    background: var(--paper);
    transition: transform .2s ease;
  }

  .menu-toggle[aria-expanded="true"] > span:nth-child(2) {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] > span:nth-child(3) {
    transform: translateY(-4px) rotate(-45deg);
  }

  .mobile-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    min-height: calc(100vh - 84px);
    z-index: 99;
    padding: 55px 28px;
    display: grid;
    align-content: start;
    background: var(--ink);
  }

  .mobile-nav[hidden] {
    display: none;
  }

  .mobile-nav a {
    padding: 20px 0;
    border-bottom: 1px solid var(--line);
    font-size: 24px;
    font-weight: 600;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .hero-copy {
    min-height: 760px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .hero h1 {
    font-size: clamp(80px, 13vw, 130px);
  }

  .hero-system {
    min-height: 720px;
  }

  .section-intro {
    grid-template-columns: .7fr 1.3fr;
  }

  .section-intro p {
    grid-column: 2;
    margin-top: 30px;
  }

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

  .conversation {
    grid-column: 1 / -1;
  }

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

  .outcome-wide {
    grid-column: 1 / -1;
  }

  .outcome-card:nth-child(2) {
    border-top: 1px solid var(--line);
  }

  .outcome-card:last-child {
    border-top: 1px solid var(--line);
  }
}

@media (max-width: 820px) {
  :root {
    --shell: calc(100% - 36px);
  }

  .preview-ribbon {
    padding-inline: 18px;
  }

  .preview-ribbon span:nth-child(2),
  .preview-ribbon span:nth-child(3) {
    display: none;
  }

  .site-header {
    min-height: 70px;
    padding: 0 18px;
  }

  .mobile-nav {
    min-height: calc(100vh - 70px);
  }

  .hero-copy {
    min-height: 680px;
    padding: 70px 24px 38px;
  }

  .hero h1 {
    margin-top: 35px;
    font-size: clamp(64px, 20vw, 102px);
  }

  .hero-lede {
    font-size: 16px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
  }

  .hero-footnote {
    display: grid;
    gap: 8px;
  }

  .hero-footnote span::after {
    display: none;
  }

  .hero-system {
    min-height: 560px;
    padding: 20px 16px;
  }

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

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

  .proof-bar > div {
    min-height: 120px;
    padding: 24px 20px;
    border-bottom: 1px solid var(--line-dark);
  }

  .proof-bar > div:nth-child(2) {
    border-right: 0;
  }

  .platform,
  .outcomes {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .section-intro,
  .outcomes .section-intro {
    grid-template-columns: 1fr;
    row-gap: 30px;
  }

  .section-intro p {
    grid-column: auto;
    margin-top: 0;
  }

  .section-intro h2,
  .cora-heading h2,
  .governance-copy h2,
  .compliance-copy h2,
  .company-statement h2,
  .final-cta-inner h2 {
    font-size: clamp(46px, 15vw, 76px);
  }

  .operating-grid {
    margin-top: 60px;
    grid-template-columns: 1fr;
  }

  .operating-card {
    min-height: 420px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .operating-card:last-child {
    border-bottom: 0;
  }

  .card-symbol {
    margin: 48px 0 38px;
  }

  .source-cloud {
    justify-content: flex-start;
  }

  .source-cloud span::after {
    display: none;
  }

  .story-section {
    padding: 100px 0;
  }

  .story-selector {
    margin-top: 60px;
    grid-template-columns: 1fr;
  }

  .story-tab {
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .story-board {
    padding: 28px 22px;
    background: var(--white);
  }

  .story-board-head {
    grid-template-columns: 1fr;
  }

  .story-outcome {
    font-size: 48px;
  }

  .story-timeline {
    grid-template-columns: 1fr;
  }

  .story-timeline li {
    min-height: 160px;
    padding-left: 25px;
  }

  .story-timeline div {
    margin-top: 25px;
  }

  .story-verdict {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .cora-section {
    padding-top: 100px;
    padding-bottom: 100px;
    grid-template-columns: 1fr;
  }

  .cora-copy {
    padding-top: 0;
  }

  .conversation {
    grid-column: auto;
  }

  .tool-run {
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .governance {
    padding: 100px 0;
  }

  .governance-inner {
    grid-template-columns: 1fr;
    gap: 100px;
  }

  .directive-mark {
    width: 210px;
    height: 210px;
    margin-inline: auto;
  }

  .directive-mark strong {
    font-size: 65px;
  }

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

  .guardrail:nth-child(2) {
    border-right: 0;
  }

  .guardrail:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }

  .outcome-grid {
    margin-top: 60px;
    grid-template-columns: 1fr;
  }

  .outcome-wide {
    grid-column: auto;
  }

  .outcome-card {
    min-height: 450px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .outcomes-link {
    float: none;
  }

  .compliance-band {
    padding: 100px 0;
  }

  .compliance-grid,
  .company {
    grid-template-columns: 1fr;
  }

  .company {
    padding-top: 100px;
    padding-bottom: 100px;
    gap: 35px;
  }

  .company-body {
    padding-top: 0;
  }

  .final-cta-section {
    min-height: 680px;
    padding: 100px 20px;
  }

  .final-orbit {
    width: 500px;
    height: 500px;
  }

  .site-footer {
    padding: 55px 20px;
    grid-template-columns: 1fr;
    gap: 26px;
  }
}

@media (max-width: 520px) {
  .system-footer span:last-child {
    display: none;
  }

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

  .proof-bar > div,
  .proof-bar > div:nth-child(2) {
    border-right: 0;
  }

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

  .guardrail,
  .guardrail:nth-child(2) {
    min-height: 215px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .guardrail h3 {
    margin-top: 45px;
  }

  .role-row {
    grid-template-columns: 1fr;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

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