:root {
  --paper: #f5f1e8;
  --paper-2: #ebe5d8;
  --ink: #1d211f;
  --muted: #6e726e;
  --line: rgba(29, 33, 31, 0.14);
  --teal: #0f8078;
  --teal-2: #dcefed;
  --amber: #c39a43;
  --amber-2: #f1e4c3;
  --white: rgba(255,255,255,0.66);
  --shadow: 0 24px 70px rgba(29, 33, 31, 0.12);
  --radius: 26px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  min-height: 100vh;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(29,33,31,.035) 1px, transparent 1px),
    linear-gradient(0deg, rgba(29,33,31,.035) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.62), transparent 80%);
  z-index: -2;
}
.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(29,33,31,.08) .6px, transparent .6px);
  background-size: 4px 4px;
  opacity: .2;
  z-index: 5;
  mix-blend-mode: multiply;
}
.atlas-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: .55;
  pointer-events: none;
}
.atlas-bg svg { width: 100%; height: 100%; }
.atlas-bg path { fill: none; stroke: rgba(15,128,120,.18); stroke-width: 2; }

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 52px);
  border-bottom: 1px solid var(--line);
  background: rgba(245, 241, 232, 0.86);
  backdrop-filter: blur(18px);
}
.brand { display: flex; align-items: center; gap: 12px; min-width: 230px; }
.brand-mark {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border: 1px solid rgba(29,33,31,.38);
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255,255,255,.58), rgba(15,128,120,.08));
  position: relative;
}
.brand-mark::before, .brand-mark::after {
  content: "";
  position: absolute;
  background: var(--teal);
  border-radius: 999px;
}
.brand-mark::before { width: 6px; height: 6px; left: 10px; top: 12px; }
.brand-mark::after { width: 6px; height: 6px; right: 9px; bottom: 10px; }
.brand-mark span { width: 10px; height: 10px; border-radius: 999px; background: var(--amber); display: block; box-shadow: 0 0 0 8px rgba(195,154,67,.12); }
.brand-mark.small { width: 32px; height: 32px; border-radius: 10px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.08; }
.brand-text strong { letter-spacing: -.02em; font-size: 17px; }
.brand-text small, .demo-brand small { color: var(--muted); font-size: 11px; text-transform: uppercase; letter-spacing: .12em; margin-top: 4px; }
.main-nav { display: flex; align-items: center; gap: 28px; font-size: 14px; color: rgba(29,33,31,.72); }
.main-nav a { position: relative; }
.main-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -6px; height: 1px; background: var(--teal); transition: right .2s ease; }
.main-nav a:hover::after { right: 0; }
.header-cta {
  border: 1px solid var(--ink);
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 13px;
  background: var(--ink);
  color: var(--paper);
}
.section-pad { padding: clamp(64px, 10vw, 122px) clamp(18px, 4vw, 52px); }
.section-pad.compact { padding-top: 46px; }
.hero { padding-top: clamp(56px, 8vw, 100px); }
.hero-grid, .split-section {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(320px, .72fr);
  gap: clamp(34px, 6vw, 78px);
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: .13em;
  font-size: 12px;
  font-weight: 700;
  margin: 0 0 18px;
}
.eyebrow span { width: 26px; height: 1px; background: currentColor; display: inline-block; }
h1, h2, h3, h4, p { margin-top: 0; }
h1 {
  font-size: clamp(44px, 6.4vw, 86px);
  line-height: .94;
  letter-spacing: -.065em;
  max-width: 850px;
  margin-bottom: 24px;
}
h2 {
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1;
  letter-spacing: -.052em;
  margin-bottom: 18px;
}
h3 { font-size: 22px; letter-spacing: -.03em; margin-bottom: 10px; }
p { color: rgba(29,33,31,.72); line-height: 1.65; }
.hero-lede { font-size: clamp(18px, 2vw, 22px); max-width: 720px; color: rgba(29,33,31,.74); }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin: 34px 0 26px; }
.button {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid var(--ink);
  font-weight: 700;
  font-size: 14px;
}
.button.primary { background: var(--ink); color: var(--paper); }
.button.ghost { background: rgba(255,255,255,.36); }
.trust-row { display: flex; gap: 10px; flex-wrap: wrap; }
.trust-row span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 11px;
  color: var(--muted);
  font-size: 13px;
  background: rgba(255,255,255,.26);
}
.system-card, .feature-card, .scenario-card, .cycle-grid article, .pilot-card {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.48);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}
.system-card { padding: 22px; }
.hero-console { min-height: 560px; display: flex; flex-direction: column; justify-content: space-between; position: relative; overflow: hidden; }
.hero-console::before {
  content: ""; position: absolute; inset: 16px; border: 1px solid rgba(15,128,120,.16); border-radius: 20px; pointer-events: none;
}
.card-topline { display: flex; align-items: center; justify-content: space-between; gap: 10px; color: var(--muted); font-size: 13px; margin-bottom: 22px; }
.status-pill {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(29,33,31,.07);
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
}
.status-pill.good { background: var(--teal-2); color: var(--teal); }
.status-pill.amber { background: var(--amber-2); color: #7d5a13; }
.console-title span { color: var(--muted); display: block; margin-bottom: 5px; }
.console-title strong { font-size: 26px; letter-spacing: -.04em; }
.metric-ring {
  --value: 72;
  width: 188px; height: 188px;
  margin: 30px auto;
  border-radius: 50%;
  display: grid; place-items: center;
  background: conic-gradient(var(--teal) calc(var(--value) * 1%), rgba(29,33,31,.1) 0);
  position: relative;
}
.metric-ring::after {
  content: "";
  position: absolute; inset: 13px;
  border-radius: 50%;
  background: var(--paper);
  border: 1px solid var(--line);
}
.metric-ring > div { position: relative; z-index: 1; text-align: center; }
.metric-ring strong { font-size: 34px; letter-spacing: -.05em; display: block; }
.metric-ring span { color: var(--muted); font-size: 12px; text-transform: uppercase; letter-spacing: .11em; }
.metric-ring.large { width: 224px; height: 224px; }
.metric-ring.large strong { font-size: 42px; }
.mini-metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.mini-metrics div {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px;
  background: rgba(255,255,255,.38);
}
.mini-metrics span { color: var(--muted); font-size: 12px; display: block; margin-bottom: 6px; }
.mini-metrics strong { font-size: 17px; }
.system-line {
  margin-top: 20px;
  border-top: 1px solid var(--line);
  padding-top: 16px;
  color: var(--muted);
  font-size: 13px;
  display: flex; align-items: center; gap: 8px;
}
.system-line span { width: 8px; height: 8px; border-radius: 999px; background: var(--teal); box-shadow: 0 0 0 6px rgba(15,128,120,.12); }
.section-heading { max-width: 850px; margin: 0 auto 34px; }
.section-heading.narrow { max-width: 720px; text-align: center; }
.feature-grid { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.feature-card { padding: 24px; min-height: 260px; display: flex; flex-direction: column; }
.feature-index { color: var(--teal); font-weight: 800; margin-bottom: auto; font-size: 13px; letter-spacing: .15em; }
.feature-card p { margin-bottom: 0; font-size: 15px; }

.adaptable {
  padding-top: clamp(30px, 5vw, 72px);
  padding-bottom: clamp(34px, 5vw, 78px);
}
.scenario-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.scenario-card {
  padding: 24px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.scenario-card::after {
  content: "";
  position: absolute;
  right: -38px;
  top: -38px;
  width: 116px;
  height: 116px;
  border-radius: 999px;
  border: 1px solid rgba(15,128,120,.18);
}
.scenario-card span {
  color: var(--teal);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: auto;
}
.scenario-card h3 {
  margin-top: 24px;
  font-size: 23px;
}
.scenario-card p {
  margin-bottom: 0;
  font-size: 15px;
}

.demo-section { background: linear-gradient(180deg, transparent, rgba(235,229,216,.72), transparent); }
.demo-shell {
  max-width: 1240px;
  margin: 0 auto;
  border: 1px solid rgba(29,33,31,.18);
  border-radius: 34px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 292px 1fr;
  min-height: 760px;
  background: rgba(255,255,255,.42);
  box-shadow: var(--shadow);
}
.demo-sidebar {
  border-right: 1px solid var(--line);
  background: rgba(235,229,216,.72);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.demo-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.demo-brand strong { display: block; }
.tab-button, .filter-btn, .inline-action, .toolbar-actions button, .toolbar-actions a, .check-toggle, .small-toggle {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.38);
  color: var(--ink);
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}
.tab-button {
  text-align: left;
  border-radius: 16px;
  padding: 14px 14px;
  font-weight: 700;
}
.tab-button:hover, .filter-btn:hover, .inline-action:hover, .toolbar-actions button:hover, .toolbar-actions a:hover, .check-toggle:hover, .small-toggle:hover { transform: translateY(-1px); border-color: rgba(15,128,120,.44); }
.tab-button.active { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.sidebar-note { margin-top: auto; padding: 16px; border: 1px solid var(--line); border-radius: 18px; background: rgba(255,255,255,.38); }
.sidebar-note p { margin: 8px 0 0; font-size: 13px; line-height: 1.5; }
.status-dot { display: block; width: 9px; height: 9px; background: var(--teal); border-radius: 999px; box-shadow: 0 0 0 7px rgba(15,128,120,.12); }
.demo-main { padding: 26px; min-width: 0; }
.demo-toolbar {
  display: flex; justify-content: space-between; align-items: center; gap: 18px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 20px; margin-bottom: 22px;
}
.demo-toolbar span { display: block; color: var(--muted); font-size: 12px; text-transform: uppercase; letter-spacing: .12em; margin-bottom: 5px; }
.demo-toolbar strong { font-size: clamp(18px, 2vw, 25px); letter-spacing: -.035em; }
.toolbar-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.toolbar-actions button, .toolbar-actions a, .inline-action {
  padding: 10px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}
.toolbar-actions a, .inline-action { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.panel { display: none; animation: reveal .28s ease both; }
.panel.active { display: block; }
@keyframes reveal { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
.panel-grid { display: grid; gap: 16px; }
.overview-grid { grid-template-columns: .92fr 1fr; align-items: stretch; }
.score-card { grid-row: span 2; display: flex; flex-direction: column; justify-content: space-between; }
.score-card p { margin-bottom: 0; }
.check-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.check-toggle {
  width: 100%; display: flex; align-items: center; gap: 10px; padding: 13px 12px; border-radius: 14px; text-align: left;
}
.check-toggle span { width: 18px; height: 18px; border: 1px solid rgba(29,33,31,.34); border-radius: 6px; display: inline-block; flex: 0 0 auto; }
.check-toggle.done { color: rgba(29,33,31,.48); text-decoration: line-through; }
.check-toggle.done span { background: var(--teal); border-color: var(--teal); position: relative; }
.check-toggle.done span::after { content: ""; position: absolute; left: 5px; top: 2px; width: 5px; height: 10px; border: solid var(--paper); border-width: 0 2px 2px 0; transform: rotate(45deg); }
.map-card { min-height: 280px; }
.mini-map {
  position: relative;
  height: 190px;
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  background:
    radial-gradient(circle at 38% 44%, rgba(15,128,120,.12), transparent 22%),
    radial-gradient(circle at 74% 64%, rgba(195,154,67,.14), transparent 20%),
    rgba(255,255,255,.32);
}
.mini-map::before, .mini-map::after { content: ""; position: absolute; inset: 0; background: linear-gradient(135deg, transparent 0 48%, rgba(29,33,31,.12) 49%, transparent 50%); }
.mini-map::after { transform: translateX(110px); opacity: .7; }
.node { position: absolute; width: 15px; height: 15px; border-radius: 999px; z-index: 2; transform: translate(-50%, -50%); }
.node.ready { background: var(--teal); box-shadow: 0 0 0 8px rgba(15,128,120,.14); }
.node.warn { background: var(--amber); box-shadow: 0 0 0 8px rgba(195,154,67,.18); }
.route { position: absolute; height: 1px; background: rgba(15,128,120,.35); transform-origin: left center; z-index: 1; }
.route.r1 { width: 220px; left: 26%; top: 51%; transform: rotate(-12deg); }
.route.r2 { width: 180px; left: 44%; top: 58%; transform: rotate(24deg); }
.map-key { display: flex; gap: 16px; margin-top: 12px; color: var(--muted); font-size: 13px; }
.map-key span { display: inline-flex; gap: 7px; align-items: center; }
.map-key i { width: 9px; height: 9px; border-radius: 999px; display: inline-block; }
.map-key i.ready { background: var(--teal); }
.map-key i.warn { background: var(--amber); }
.panel-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; margin-bottom: 18px; }
.panel-head h3 { margin-bottom: 4px; font-size: 28px; }
.panel-head p { margin-bottom: 0; }
.filter-row { display: flex; flex-wrap: wrap; gap: 8px; justify-content: flex-end; }
.filter-btn { border-radius: 999px; padding: 9px 11px; font-size: 13px; font-weight: 700; }
.filter-btn.active { background: var(--teal); color: white; border-color: var(--teal); }
.partner-list, .lead-grid { display: grid; gap: 12px; }
.partner-card, .lead-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,.38);
  padding: 16px;
}
.partner-card h4, .lead-card h4 { margin: 0 0 5px; font-size: 18px; }
.partner-card p, .lead-card p { margin: 0; font-size: 14px; }
.meta-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; }
.meta-row span { font-size: 12px; border: 1px solid var(--line); border-radius: 999px; padding: 5px 8px; color: var(--muted); background: rgba(255,255,255,.38); }
.partner-action, .lead-action {
  border: 1px solid var(--ink); background: transparent; border-radius: 999px; padding: 9px 11px; cursor: pointer; font-size: 13px; font-weight: 700; white-space: nowrap;
}
.partner-action.ready, .lead-action.done { border-color: var(--teal); background: var(--teal-2); color: var(--teal); }
.timeline { display: grid; gap: 14px; }
.timeline article {
  border: 1px solid var(--line); border-radius: 22px; padding: 20px; background: rgba(255,255,255,.38); position: relative; overflow: hidden;
}
.timeline article::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 5px; background: var(--teal); }
.timeline span { color: var(--teal); font-weight: 800; font-size: 12px; letter-spacing: .16em; text-transform: uppercase; }
.timeline h4 { margin: 8px 0; font-size: 20px; }
.small-toggle { border-radius: 999px; padding: 9px 11px; font-size: 13px; font-weight: 700; }
.small-toggle.done { background: var(--teal-2); color: var(--teal); border-color: var(--teal); }
.report-layout { display: grid; grid-template-columns: 1.1fr .9fr; gap: 16px; }
.report-card { min-height: 360px; }
.report-card h4 { font-size: 24px; margin-bottom: 12px; }
.report-card ul { padding-left: 19px; color: rgba(29,33,31,.72); line-height: 1.8; }
.evidence-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.evidence-list li { display: flex; justify-content: space-between; gap: 12px; border-bottom: 1px solid var(--line); padding-bottom: 10px; }
.evidence-list li:last-child { border-bottom: 0; padding-bottom: 0; }
.evidence-list span { color: var(--muted); }
.split-section { align-items: start; }
.cycle-grid { display: grid; grid-template-columns: 1fr; gap: 14px; }
.cycle-grid article { padding: 24px; box-shadow: none; }
.cycle-grid span { color: var(--teal); font-size: 12px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.cycle-grid h3 { margin-top: 8px; }
.cycle-grid p { margin-bottom: 0; }
.pilot { padding-top: 20px; }
.pilot-card {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 52px);
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: 30px;
  align-items: center;
  background: linear-gradient(135deg, rgba(255,255,255,.6), rgba(15,128,120,.08));
}
.pilot-card .button { justify-self: start; }
.pilot-steps { display: grid; gap: 12px; }
.pilot-steps div { display: grid; grid-template-columns: 48px 1fr; gap: 12px; align-items: center; border: 1px solid var(--line); border-radius: 18px; padding: 14px; background: rgba(255,255,255,.38); }
.pilot-steps strong { color: var(--teal); }
.pilot-steps span { color: rgba(29,33,31,.72); }
.site-footer {
  display: flex; justify-content: space-between; gap: 28px; align-items: flex-start;
  padding: 40px clamp(18px, 4vw, 52px);
  border-top: 1px solid var(--line);
}
.site-footer p { margin: 6px 0 0; max-width: 520px; }
.footer-links { display: flex; gap: 18px; flex-wrap: wrap; color: var(--muted); font-size: 14px; }

@media (max-width: 980px) {
  .main-nav { display: none; }
  .brand { min-width: auto; }
  .hero-grid, .split-section, .pilot-card { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .scenario-grid { grid-template-columns: 1fr; }
  .demo-shell { grid-template-columns: 1fr; }
  .demo-sidebar { border-right: 0; border-bottom: 1px solid var(--line); display: grid; grid-template-columns: 1fr 1fr; }
  .demo-brand, .sidebar-note { grid-column: 1 / -1; }
  .overview-grid, .report-layout { grid-template-columns: 1fr; }
  .score-card { grid-row: auto; }
}
@media (max-width: 680px) {
  .site-header { padding: 14px 16px; }
  .header-cta { display: none; }
  .section-pad { padding-left: 16px; padding-right: 16px; }
  h1 { font-size: 44px; }
  .feature-grid, .demo-sidebar { grid-template-columns: 1fr; }
  .hero-console { min-height: 500px; }
  .mini-metrics { grid-template-columns: 1fr; }
  .demo-main { padding: 18px; }
  .demo-toolbar, .panel-head, .site-footer { flex-direction: column; align-items: flex-start; }
  .partner-card, .lead-card { grid-template-columns: 1fr; }
  .partner-action, .lead-action { justify-self: start; }
  .metric-ring.large { width: 190px; height: 190px; }
}


/* Motion layer: restrained, civic, product-led */
.button { font: inherit; cursor: pointer; }
.button.primary { border: 1px solid var(--ink); }
.live-strip {
  margin-top: 20px;
  max-width: 720px;
  display: flex;
  align-items: center;
  gap: 13px;
  border: 1px solid rgba(15,128,120,.22);
  border-radius: 999px;
  padding: 12px 16px;
  background: rgba(255,255,255,.42);
  overflow: hidden;
}
.live-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--teal);
  box-shadow: 0 0 0 0 rgba(15,128,120,.26);
  animation: pulseDot 2.2s ease-in-out infinite;
  flex: 0 0 auto;
}
.live-copy { display: grid; gap: 2px; min-width: 0; }
.live-copy strong { font-size: 13px; letter-spacing: .02em; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.live-copy small { color: var(--muted); font-size: 12px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.hero-console::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 0 28%, rgba(255,255,255,.28) 44%, transparent 58% 100%);
  transform: translateX(-120%);
  animation: consoleSweep 8s ease-in-out infinite;
}
.hero-ring { animation: ringBreathe 5.5s ease-in-out infinite; }
.activity-feed {
  display: grid;
  gap: 8px;
  margin-top: 18px;
}
.activity-feed div {
  display: grid;
  grid-template-columns: 10px 1fr;
  column-gap: 9px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 10px 11px;
  background: rgba(255,255,255,.34);
  transform-origin: left center;
  animation: feedLift 7.2s ease-in-out infinite;
}
.activity-feed div:nth-child(2) { animation-delay: .7s; }
.activity-feed div:nth-child(3) { animation-delay: 1.4s; }
.activity-feed span {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--teal);
  box-shadow: 0 0 0 6px rgba(15,128,120,.10);
  grid-row: span 2;
}
.activity-feed strong { font-size: 12px; }
.activity-feed small { color: var(--muted); font-size: 11px; margin-top: 2px; }
.flow-rail {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin: -4px 0 22px;
}
.flow-step {
  text-align: left;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 12px 13px;
  background: rgba(255,255,255,.36);
  color: var(--ink);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}
.flow-step::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: var(--progress, 36%);
  background: var(--teal);
  opacity: .72;
}
.flow-step:hover { transform: translateY(-1px); border-color: rgba(15,128,120,.4); }
.flow-step.active { background: rgba(15,128,120,.08); border-color: rgba(15,128,120,.38); }
.flow-step span { color: var(--teal); font-size: 11px; letter-spacing: .14em; font-weight: 800; }
.flow-step strong { display: block; font-size: 14px; margin-top: 4px; }
.flow-step small { display: block; color: var(--muted); font-size: 11px; margin-top: 3px; line-height: 1.35; }
.mini-map .node { animation: mapPulse 3.2s ease-in-out infinite; }
.mini-map .node:nth-child(2) { animation-delay: .4s; }
.mini-map .node:nth-child(3) { animation-delay: .8s; }
.mini-map .node:nth-child(4) { animation-delay: 1.2s; }
.mini-map .node:nth-child(5) { animation-delay: 1.6s; }
.route { animation: routeGlow 4.8s ease-in-out infinite; }
.partner-card, .lead-card, .timeline article, .report-card { transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease; }
.partner-card:hover, .lead-card:hover, .timeline article:hover, .report-card:hover { transform: translateY(-2px); border-color: rgba(15,128,120,.32); box-shadow: 0 16px 38px rgba(29,33,31,.08); }
body.loop-running .hero-console, body.loop-running .demo-shell { border-color: rgba(15,128,120,.38); }
body.loop-running .live-strip { background: rgba(220,239,237,.64); }
@keyframes pulseDot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(15,128,120,.26); opacity: .78; }
  50% { box-shadow: 0 0 0 10px rgba(15,128,120,0); opacity: 1; }
}
@keyframes consoleSweep {
  0%, 70% { transform: translateX(-120%); opacity: 0; }
  80% { opacity: 1; }
  100% { transform: translateX(120%); opacity: 0; }
}
@keyframes ringBreathe {
  0%, 100% { transform: scale(1); filter: none; }
  50% { transform: scale(1.018); filter: drop-shadow(0 10px 26px rgba(15,128,120,.12)); }
}
@keyframes feedLift {
  0%, 100% { transform: translateY(0); opacity: .88; }
  50% { transform: translateY(-2px); opacity: 1; }
}
@keyframes mapPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, -50%) scale(1.16); }
}
@keyframes routeGlow {
  0%, 100% { opacity: .38; }
  50% { opacity: .9; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; }
}
@media (max-width: 980px) {
  .flow-rail { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px) {
  .live-strip { border-radius: 20px; align-items: flex-start; }
  .flow-rail { grid-template-columns: 1fr; }
}

/* v3 outreach / compliance additions */
.scope-note {
  max-width: 720px;
  margin: 18px 0 0;
  padding: 14px 16px;
  border: 1px solid rgba(15,128,120,.22);
  border-left: 4px solid var(--teal);
  border-radius: 18px;
  background: rgba(255,255,255,.38);
  color: rgba(29,33,31,.74);
  font-size: 14px;
}
.scope-note strong { color: var(--ink); }
.section-subnote {
  max-width: 780px;
  margin: -2px 0 0;
  color: var(--muted);
}
.button.email {
  background: rgba(195,154,67,.14);
  border-color: rgba(195,154,67,.46);
  color: var(--ink);
}
.request-demo { padding-top: 24px; }
.request-card {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 52px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .54fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
  border: 1px solid rgba(15,128,120,.20);
  background: linear-gradient(135deg, rgba(255,255,255,.64), rgba(220,239,237,.42));
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}
.request-card h2 { max-width: 740px; }
.request-card p { margin-bottom: 0; }
.request-actions {
  display: grid;
  gap: 12px;
  justify-items: start;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 18px;
  background: rgba(255,255,255,.42);
}
.request-actions .button { width: 100%; }
.request-actions small {
  color: var(--muted);
  line-height: 1.55;
}
.footer-ownership {
  color: var(--teal) !important;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .02em;
}
.legal-page {
  max-width: 980px;
  margin: 0 auto;
}
.legal-card {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.52);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: clamp(24px, 5vw, 50px);
}
.legal-card h1 {
  font-size: clamp(40px, 5vw, 70px);
  margin-bottom: 18px;
}
.legal-card h2 {
  font-size: clamp(26px, 3vw, 38px);
  margin-top: 36px;
}
.legal-card ul {
  margin: 0 0 22px;
  padding-left: 20px;
  color: rgba(29,33,31,.72);
  line-height: 1.65;
}
.legal-card .updated {
  color: var(--muted);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .12em;
}
@media (max-width: 980px) {
  .request-card { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
  .scope-note { font-size: 13px; }
  .request-actions .button { width: auto; }
}
