:root {
  --bg: #f7f4ed;
  --surface: #fffdf8;
  --surface-2: #eee8dc;
  --ink: #0b1118;
  --body: #59616b;
  --muted: #8a8174;
  --line: #ded6c8;
  --line-strong: #c9bea9;
  --gold: #b8862f;
  --gold-hover: #9d7126;
  --gold-soft: rgba(184, 134, 47, 0.11);
  --green: #1f7a45;
  --amber: #b26a00;
  --danger: #9f2f2f;
  --dark: #080d12;
  --dark-2: #121922;
  --dark-3: #18212c;
  --radius: 10px;
  --radius-sm: 6px;
  --radius-lg: 16px;
  --max: 1160px;
  --console-shadow: rgba(8, 13, 18, 0.34) 0 32px 70px -34px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'IBM Plex Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background:
    linear-gradient(rgba(11, 17, 24, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 17, 24, 0.026) 1px, transparent 1px),
    var(--bg);
  background-size: 42px 42px, 42px 42px, auto;
  color: var(--ink);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 78% 9%, rgba(184, 134, 47, .11), transparent 28rem);
  z-index: -1;
}

a { color: inherit; text-decoration: none; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(247, 244, 237, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(222, 214, 200, 0.88);
}

.nav {
  max-width: var(--max);
  margin: 0 auto;
  padding: 15px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--gold-hover);
}

.brand-mark {
  width: 34px;
  height: 34px;
  position: relative;
  display: grid;
  place-items: center;
  border-radius: 9px;
  background: linear-gradient(145deg, #d6a13a, var(--gold));
  border: 1px solid rgba(157, 113, 38, .52);
  box-shadow: 0 10px 24px -18px rgba(11, 17, 24, .8), inset 0 1px 0 rgba(255, 244, 210, .42);
  overflow: hidden;
}
.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: var(--dark);
}
.brand-mark::before { width: 18px; height: 2px; bottom: 8px; left: 8px; }
.brand-mark::after { width: 4px; height: 4px; bottom: 7px; right: 7px; }
.brand-mark span {
  position: relative;
  width: 14px;
  height: 18px;
  border-left: 2px solid var(--dark);
  border-right: 2px solid var(--dark);
  transform: skewX(-15deg);
}
.brand-mark span::after {
  content: "";
  position: absolute;
  left: 2px;
  right: 2px;
  top: 9px;
  height: 2px;
  background: var(--dark);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 13px;
  color: #343a42;
  font-weight: 600;
}
.nav-links a { transition: color .18s ease, border-color .18s ease, background .18s ease; }
.nav-links a:hover { color: var(--gold-hover); }
.nav-cta,
.mobile-nav-cta {
  border: 1px solid var(--line-strong);
  background: var(--surface);
  padding: 9px 13px;
  border-radius: 999px;
}
.mobile-nav-cta {
  display: none;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 94px 24px;
}
.section.compact { padding-top: 18px; padding-bottom: 42px; }

.hero {
  display: grid;
  grid-template-columns: minmax(0, .96fr) minmax(440px, 1.04fr);
  gap: 58px;
  align-items: center;
  min-height: 760px;
  padding-top: 72px;
}

.eyebrow {
  color: var(--gold-hover);
  font-family: 'IBM Plex Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12px;
  line-height: 1.35;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin: 0 0 18px;
}
.eyebrow.light { color: #d7b673; }

h1, h2, h3, p { margin-top: 0; }
h1 {
  font-family: 'Newsreader', Georgia, serif;
  font-size: clamp(54px, 7.2vw, 88px);
  line-height: .93;
  letter-spacing: -0.055em;
  font-weight: 600;
  margin-bottom: 25px;
  text-wrap: balance;
}
h2 {
  font-family: 'Newsreader', Georgia, serif;
  font-size: clamp(40px, 4.8vw, 64px);
  line-height: .98;
  letter-spacing: -0.045em;
  font-weight: 600;
  margin-bottom: 20px;
  text-wrap: balance;
}
h3 {
  font-size: 23px;
  line-height: 1.08;
  letter-spacing: -0.02em;
  font-weight: 700;
  margin-bottom: 12px;
}
p {
  color: var(--body);
  line-height: 1.6;
  font-size: 17px;
  margin-bottom: 0;
}
.hero-text {
  color: #4b5560;
  font-size: 20px;
  line-height: 1.52;
  max-width: 660px;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}
.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 17px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  transition: transform .18s ease, background .18s ease, border-color .18s ease, color .18s ease;
}
.button.primary { background: var(--dark); color: var(--surface); border: 1px solid var(--dark); }
.button.primary:hover { background: #1a2028; transform: translateY(-1px); }
.button.secondary { color: var(--ink); border: 1px solid var(--line-strong); background: rgba(255, 253, 248, .78); }
.button.secondary:hover { border-color: var(--gold); background: var(--surface); transform: translateY(-1px); }

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
  max-width: 640px;
}
.hero-proof span,
.logo-row span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 253, 248, .62);
  color: #303841;
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  font-size: 12px;
  font-weight: 700;
}

.workflow-panel {
  position: relative;
  padding: 16px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.025)),
    var(--dark);
  border: 1px solid rgba(255, 253, 248, .13);
  box-shadow: var(--console-shadow);
  overflow: hidden;
}
.workflow-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 253, 248, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 253, 248, .035) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.85), transparent 78%);
}
.workflow-panel > * { position: relative; }
.console-chrome {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 8px 4px 17px;
  color: var(--surface);
}
.console-chrome strong { display: block; font-size: 16px; letter-spacing: -.01em; }
.panel-kicker,
.module-label,
.module-head span {
  display: block;
  color: #998f80;
  font-family: 'IBM Plex Mono', ui-monospace, Menlo, monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
}
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
  border-radius: 999px;
  padding: 6px 9px;
  font-family: 'IBM Plex Mono', ui-monospace, Menlo, monospace;
  font-size: 11px;
  font-weight: 700;
}
.status-pill.gated { color: #ffe6b0; background: rgba(184, 134, 47, .13); border: 1px solid rgba(184, 134, 47, .36); }
.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 0 rgba(184, 134, 47, .5);
  animation: statusPulse 2.4s ease-out infinite;
}

.flow-rail {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 9px;
  padding: 18px 0 16px;
}
.route-line {
  position: absolute;
  top: 38px;
  left: 9%;
  right: 9%;
  height: 1px;
  background: rgba(222, 214, 200, .18);
  overflow: hidden;
}
.route-pulse {
  position: absolute;
  inset: 0 auto 0 0;
  width: 28%;
  background: linear-gradient(90deg, transparent, rgba(184, 134, 47, .95), transparent);
  animation: routeMove 4.8s linear infinite;
}
.flow-step {
  position: relative;
  z-index: 1;
  min-height: 94px;
  padding: 12px 10px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 4px;
  border: 1px solid rgba(255, 253, 248, .11);
  background: rgba(255, 253, 248, .055);
  border-radius: 10px;
}
.flow-step span {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 253, 248, .14);
  background: #101720;
  color: #c8b891;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  font-weight: 700;
}
.flow-step strong { color: var(--surface); font-size: 13px; }
.flow-step small { color: #9ca196; font-family: 'IBM Plex Mono', monospace; font-size: 10px; line-height: 1.2; }
.flow-step.active,
.flow-step.gate { border-color: rgba(184, 134, 47, .36); background: rgba(184, 134, 47, .10); }

.console-grid { display: grid; grid-template-columns: 1fr .88fr; gap: 12px; margin-top: 4px; }
.policy-module,
.approval-module,
.log-stream {
  border: 1px solid rgba(255, 253, 248, .12);
  background: rgba(255, 253, 248, .055);
  border-radius: 12px;
}
.policy-module { padding: 14px; }
.module-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; margin-bottom: 12px; }
.module-head strong { color: var(--surface); font-size: 13px; }
dl { margin: 0; display: grid; gap: 8px; }
dl div { display: grid; grid-template-columns: 1fr auto; gap: 12px; align-items: center; padding-top: 8px; border-top: 1px solid rgba(255, 253, 248, .08); }
dt, dd { margin: 0; font-family: 'IBM Plex Mono', monospace; font-size: 11px; }
dt { color: #c6c0b5; }
dd { color: #ffe2a7; }
.approval-module { padding: 14px; }
.approval-module p { color: #c6c0b5; font-size: 13px; line-height: 1.45; margin-top: 8px; }
.approval-actions { display: flex; gap: 8px; margin-top: 13px; }
.approval-actions span {
  flex: 1;
  min-height: 34px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255,255,255,.075);
  color: var(--surface);
  font-size: 12px;
  font-weight: 700;
}
.approval-actions span:first-child { background: var(--gold); color: #11100d; }
.log-stream { padding: 13px 14px; margin-top: 12px; }
.log-stream p {
  margin: 0;
  color: #ddd8cd;
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  font-size: 11px;
  line-height: 1.95;
  opacity: 0;
  transform: translateY(7px);
  animation: logIn .7s ease forwards;
}
.log-stream p:nth-child(2) { animation-delay: .12s; }
.log-stream p:nth-child(3) { animation-delay: .24s; }
.log-stream p:nth-child(4) { animation-delay: .36s; }
.log-stream span { color: #877d6f; margin-right: 8px; }

.integration-strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.logo-row { display: flex; flex-wrap: wrap; gap: 10px; }
.logo-row span { min-height: 38px; border-radius: 8px; background: rgba(255, 253, 248, .58); }

.scenario-section { padding-top: 74px; }
.scenario-card {
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: 0;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.scenario-story {
  padding: 32px;
  background:
    radial-gradient(circle at 18% 14%, rgba(184, 134, 47, .14), transparent 16rem),
    linear-gradient(145deg, rgba(255,253,248,.96), rgba(238,232,220,.74));
  border-right: 1px solid var(--line);
}
.time-stamp {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--gold-soft);
  color: var(--gold-hover);
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.scenario-story h3 { font-family: 'Newsreader', Georgia, serif; font-size: clamp(30px, 3.1vw, 43px); line-height: 1; letter-spacing: -.045em; }
.scenario-steps {
  list-style: none;
  margin: 0;
  padding: 18px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.scenario-steps li {
  min-height: 150px;
  padding: 20px 20px 20px 22px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255,253,248,.64);
}
.scenario-steps li::before { display: none; }
.scenario-steps strong { display: block; margin-bottom: 9px; color: var(--ink); font-size: 18px; }
.scenario-steps span { display: block; color: var(--body); font-size: 15px; line-height: 1.5; font-weight: 500; }

.section-intro { max-width: 820px; margin-bottom: 30px; }
.section-intro.narrow { max-width: 900px; }
.audience-section { padding-top: 74px; }
.audience-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.audience-grid article { padding: 22px; }
.audience-grid strong { display: block; margin-bottom: 9px; font-size: 18px; color: var(--ink); }
.audience-grid span { display: block; color: var(--body); font-size: 15px; line-height: 1.5; font-weight: 500; }
.leak-map,
.audience-grid article,
.system-card,
.governance-ledger,
.process-cadence article,
.demo-placeholder,
.proof-notes article,
.cta-panel {
  border: 1px solid var(--line);
  background: rgba(255, 253, 248, .72);
  border-radius: var(--radius-lg);
}
.leak-map { padding: 28px; }
.broken-rail {
  list-style: none;
  padding: 0 0 26px;
  margin: 0 0 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  border-bottom: 1px solid var(--line);
}
.broken-rail li {
  position: relative;
  min-height: 76px;
  padding: 14px 14px 14px 40px;
  border: 1px dashed var(--line-strong);
  border-radius: 10px;
  color: #343a42;
  font-weight: 700;
}
.broken-rail li::after {
  content: "→";
  position: absolute;
  right: -16px;
  top: 25px;
  color: var(--muted);
  z-index: 1;
}
.broken-rail li:last-child::after { content: ""; }
.broken-rail span {
  position: absolute;
  top: 19px;
  left: 14px;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  border: 2px solid var(--danger);
  background: rgba(159, 47, 47, .08);
}
.failure-notes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.failure-notes strong { display: block; margin-bottom: 7px; font-size: 18px; }
.failure-notes p { font-size: 15px; }

.systems-section { padding-top: 84px; }
.systems-layout {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}
.system-card {
  padding: 25px;
  transition: border-color .18s ease, transform .18s ease, background .18s ease;
}
.system-card:hover { border-color: var(--gold); transform: translateY(-2px); }
.system-card.flagship { grid-column: span 3; min-height: 350px; display: flex; flex-direction: column; }
.system-card.compact-card { grid-column: span 3; }
.dark-card { background: var(--dark); color: var(--surface); border-color: rgba(184, 134, 47, .35); }
.dark-card p, .dark-card li { color: #c5beb2; }
.card-index,
.process-cadence span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 28px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: var(--gold-soft);
  color: var(--gold-hover);
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  font-size: 12px;
  font-weight: 800;
}
.dark-card .card-index { color: #ffe0a4; border: 1px solid rgba(184,134,47,.35); }
.system-card p { font-size: 16px; }
ul { list-style: none; padding: 0; margin: auto 0 0; display: grid; gap: 8px; }
li { position: relative; padding-left: 18px; color: #38404a; font-size: 14px; line-height: 1.4; font-weight: 700; }
li::before { content: ""; position: absolute; left: 0; top: .55em; width: 7px; height: 7px; border-radius: 50%; background: var(--gold); }

.architecture-section {
  background: linear-gradient(135deg, var(--dark), var(--dark-2));
  color: var(--surface);
  margin-top: 34px;
  border-top: 1px solid rgba(184, 134, 47, .22);
  border-bottom: 1px solid rgba(184, 134, 47, .22);
}
.architecture-inner {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 46px;
  align-items: center;
}
.architecture-copy h2,
.architecture-copy p { color: var(--surface); }
.architecture-copy p:not(.eyebrow) { color: #c5beb2; font-size: 19px; }
.architecture-map {
  min-height: 560px;
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(6, 1fr);
  gap: 14px;
}
.map-rail {
  position: absolute;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(184, 134, 47, .5), transparent);
}
.map-rail-one { top: 31%; }
.map-rail-two { top: 67%; }
.map-rail::after {
  content: "";
  position: absolute;
  left: 0;
  top: -1px;
  width: 18%;
  height: 3px;
  background: var(--gold);
  filter: blur(.4px);
  animation: routeMove 5.8s linear infinite;
}
.node {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 18px;
  border-radius: 12px;
  border: 1px solid rgba(255, 253, 248, .13);
  background: rgba(255, 253, 248, .055);
}
.node span {
  display: block;
  margin-bottom: 8px;
  color: #d6b06b;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  line-height: 1.35;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.node strong { color: var(--surface); font-size: 16px; line-height: 1.25; }
.node.source { grid-column: 1 / 3; grid-row: 1 / 3; }
.node.orchestrator { grid-column: 3 / 5; grid-row: 1 / 3; background: rgba(184, 134, 47, .12); }
.node.memory { grid-column: 5 / 7; grid-row: 1 / 3; }
.node.ai { grid-column: 2 / 4; grid-row: 3 / 5; }
.node.approval { grid-column: 4 / 6; grid-row: 3 / 5; background: rgba(178, 106, 0, .14); }
.node.tools { grid-column: 3 / 7; grid-row: 5 / 7; background: rgba(31, 122, 69, .12); }

.governance-ledger { overflow: hidden; }
.ledger-row {
  display: grid;
  grid-template-columns: .9fr 1.2fr 1.2fr 1fr;
  gap: 1px;
  border-top: 1px solid var(--line);
}
.ledger-row:first-child { border-top: 0; }
.ledger-row span {
  padding: 18px;
  background: rgba(255,253,248,.56);
  color: #37404a;
  font-size: 14px;
  line-height: 1.4;
}
.ledger-head span {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--gold-hover);
  background: var(--surface-2);
}
.process-section { padding-top: 72px; }
.proof-section { padding-top: 74px; }
.proof-layout { display: grid; grid-template-columns: 1.15fr .85fr; gap: 18px; align-items: stretch; }
.demo-placeholder {
  min-height: 390px;
  position: relative;
  overflow: hidden;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    linear-gradient(rgba(255,253,248,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,253,248,.035) 1px, transparent 1px),
    linear-gradient(135deg, var(--dark), var(--dark-2));
  background-size: 32px 32px, 32px 32px, auto;
  color: var(--surface);
  border-color: rgba(184, 134, 47, .32);
}
.demo-placeholder::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255,253,248,.13);
  border-radius: 12px;
  pointer-events: none;
}
.demo-placeholder > * { position: relative; }
.demo-placeholder h3 { color: var(--surface); font-size: clamp(31px, 3.3vw, 48px); max-width: 540px; }
.demo-placeholder p { color: #c5beb2; max-width: 560px; }
.play-mark {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 82px;
  height: 82px;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 0 13px rgba(184,134,47,.13), 0 24px 48px -28px rgba(0,0,0,.75);
}
.play-mark::after {
  content: "";
  position: absolute;
  left: 34px;
  top: 27px;
  border-left: 21px solid #11100d;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
}
.proof-notes { display: grid; gap: 14px; }
.proof-notes article { padding: 22px; }
.proof-notes strong { display: block; margin-bottom: 8px; font-size: 18px; }
.proof-notes p { font-size: 15px; }
.process-cadence { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.process-cadence article { border-radius: 0; border: 0; border-left: 1px solid var(--line); padding: 24px; background: rgba(255,253,248,.5); }
.process-cadence article:first-child { border-left: 0; }
.process-cadence p { font-size: 15px; }

.cta-panel {
  position: relative;
  overflow: hidden;
  text-align: center;
  background: var(--surface);
  margin-top: 28px;
  margin-bottom: 92px;
}
.cta-panel::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
  pointer-events: none;
}
.cta-panel > * { position: relative; }
.cta-panel p { max-width: 760px; margin-left: auto; margin-right: auto; }
.contact-expectations {
  max-width: 850px;
  margin: 28px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.contact-expectations span {
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(247,244,237,.72);
  color: #343a42;
  font-size: 13px;
  line-height: 1.25;
  font-weight: 800;
}
.cta-panel .cta-actions { justify-content: center; }
.footer { border-top: 1px solid var(--line); padding: 30px 24px; text-align: center; background: var(--surface); }
.footer p { font-size: 14px; margin: 0; color: var(--body); }

@keyframes routeMove { from { transform: translateX(-100%); } to { transform: translateX(520%); } }
@keyframes statusPulse { 0% { box-shadow: 0 0 0 0 rgba(184,134,47,.45); } 70% { box-shadow: 0 0 0 8px rgba(184,134,47,0); } 100% { box-shadow: 0 0 0 0 rgba(184,134,47,0); } }
@keyframes logIn { to { opacity: 1; transform: translateY(0); } }

@media (max-width: 1060px) {
  .hero,
  .architecture-inner { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding-top: 74px; }
  .workflow-panel { max-width: 680px; }
  .systems-layout { grid-template-columns: repeat(2, 1fr); }
  .scenario-card,
  .proof-layout { grid-template-columns: 1fr; }
  .scenario-story { border-right: 0; border-bottom: 1px solid var(--line); }
  .system-card.flagship,
  .system-card.compact-card { grid-column: span 1; }
  .failure-notes,
  .audience-grid,
  .process-cadence { grid-template-columns: repeat(2, 1fr); }
  .process-cadence article:nth-child(3) { border-left: 0; border-top: 1px solid var(--line); }
  .process-cadence article:nth-child(4) { border-top: 1px solid var(--line); }
}

@media (max-width: 760px) {
  .nav { padding: 14px 18px; }
  .nav-links { display: none; }
  .mobile-nav-cta { display: inline-flex; }
  .section { padding: 68px 20px; }
  .section.compact { padding-top: 12px; padding-bottom: 30px; }
  h1 { font-size: clamp(45px, 14vw, 62px); }
  h2 { font-size: clamp(34px, 10vw, 46px); }
  .hero { padding-top: 54px; gap: 38px; }
  .hero-text { font-size: 18px; }
  .workflow-panel { border-radius: 14px; padding: 12px; }
  .console-chrome,
  .module-head { align-items: flex-start; flex-direction: column; }
  .flow-rail,
  .console-grid,
  .broken-rail,
  .failure-notes,
  .scenario-steps,
  .audience-grid,
  .systems-layout,
  .contact-expectations,
  .process-cadence { grid-template-columns: 1fr; }
  .route-line { top: 0; bottom: 0; left: 27px; right: auto; width: 1px; height: auto; }
  .route-pulse { width: 1px; height: 22%; animation-name: routeMoveVertical; }
  .flow-step { min-height: 76px; padding-left: 48px; }
  .scenario-story,
  .demo-placeholder { padding: 24px; }
  .demo-placeholder { min-height: 340px; }
  .play-mark { width: 68px; height: 68px; }
  .play-mark::after { left: 29px; top: 22px; border-left-width: 18px; border-top-width: 12px; border-bottom-width: 12px; }
  .contact-expectations span { border-radius: 12px; justify-content: flex-start; }
  .broken-rail li::after { content: "↓"; right: auto; top: auto; bottom: -20px; left: 22px; }
  .architecture-map { min-height: auto; display: grid; grid-template-columns: 1fr; grid-template-rows: none; }
  .map-rail { display: none; }
  .node.source,
  .node.orchestrator,
  .node.memory,
  .node.ai,
  .node.approval,
  .node.tools { grid-column: auto; grid-row: auto; }
  .ledger-row { grid-template-columns: 1fr; }
  .ledger-row span { padding: 14px 16px; }
  .process-cadence article,
  .process-cadence article:nth-child(3) { border-left: 0; border-top: 1px solid var(--line); }
  .process-cadence article:first-child { border-top: 0; }
  .cta-panel { border-radius: 14px; margin-bottom: 68px; }
}

@keyframes routeMoveVertical { from { transform: translateY(-100%); } to { transform: translateY(520%); } }

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