@import url("https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@500;600&family=Manrope:wght@400;500;600;700;800&family=Sora:wght@500;600;700;800&display=swap");

:root {
  --bg: #F7FBF9;
  --surface: #FFFFFF;
  --surface-2: #ECF6F2;
  --ink: #34353A;
  --ink-2: #5C6168;
  --muted: #8A9298;
  --line: rgba(89, 204, 196, .20);
  --line-2: rgba(89, 204, 196, .34);
  --accent: #59CCC4;
  --accent-strong: #0F4F34;
  --accent-ink: #20242A;
  --accent-soft: #E4F8F5;
  --accent-line: rgba(89, 204, 196, .28);
  --accent-glow: rgba(89, 204, 196, .35);
  --danger: #B42318;
  --trust: #94D95A;
  --radius: 10px;
  --shadow: 0 24px 60px rgba(89, 204, 196, .16);
  --font: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --display: "Sora", "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  font-feature-settings: "ss01" 1, "cv05" 1;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
p, h1, h2, h3 { margin: 0; }
.container { width: min(100% - 64px, 1320px); margin: 0 auto; }
.narrow { width: min(100% - 64px, 900px); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 251, 249, .82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-wrap {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  color: var(--ink);
  font-weight: 600;
}
.brand img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}
.brand span {
  font-size: .86rem;
  line-height: 1;
  letter-spacing: .32em;
  text-transform: uppercase;
}
.brand em { color: var(--accent); font-style: normal; }
.nav-toggle { display: none; }
.nav-toggle-button {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  cursor: pointer;
}
.nav-toggle-button span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--ink);
}
.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  column-gap: clamp(22px, 2vw, 32px);
  margin-left: auto;
  color: var(--ink-2);
  font-size: .86rem;
  font-weight: 500;
}
.site-nav > .nav-group,
.site-nav > a {
  flex: 0 0 auto;
}
.site-nav a,
.site-nav button {
  font: inherit;
  color: inherit;
  transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease;
}
.site-nav button {
  appearance: none;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.site-nav a:hover,
.site-nav button:hover { color: var(--accent-strong); }
.site-nav a[aria-current="page"] { color: var(--accent); }
.nav-group { position: relative; padding: 28px 0; }
.has-menu > a,
.has-menu > button {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.has-menu > a::after,
.has-menu > button::after {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  opacity: .58;
  transition: transform .2s ease;
}
.has-menu:hover > a::after,
.has-menu:hover > button::after,
.has-menu:focus-within > a::after,
.has-menu:focus-within > button::after {
  transform: translateY(1px) rotate(225deg);
}
.nav-menu {
  display: none;
  position: absolute;
  left: -10px;
  top: 70px;
  z-index: 20;
  min-width: 232px;
  padding: 8px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 18px 42px rgba(14, 16, 21, .10);
}
.nav-menu-wide {
  left: 50%;
  min-width: 292px;
  transform: translateX(-50%);
}
.nav-group:hover .nav-menu,
.nav-group:focus-within .nav-menu { display: grid; gap: 2px; }
.nav-menu a { padding: 10px 12px; border-radius: 8px; }
.nav-menu a:hover { background: var(--surface-2); }
.nav-cta {
  padding: 10px 18px;
  border-radius: 8px;
  color: var(--accent-ink) !important;
  background: var(--accent);
  border: 1px solid transparent;
}
.nav-cta:hover {
  background: var(--accent-strong);
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(15, 79, 52, .18);
}

.home-hero {
  padding: 48px 0 28px;
  text-align: center;
  background: var(--bg);
}
.home-hero-inner { max-width: 1320px; }
.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--ink-2);
  font-size: .78rem;
  box-shadow: 0 1px 2px rgba(0,0,0,.03);
}
.chip-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
  flex: 0 0 auto;
}
.gradient-ink {
  max-width: 1040px;
  margin: 0 auto;
  color: var(--ink);
  font-family: var(--display);
  font-size: 76px;
  line-height: 1.02;
  font-weight: 600;
}
.gradient-ink span { color: var(--accent); }
.lead {
  max-width: 760px;
  margin: 26px auto 0;
  color: var(--ink-2);
  font-size: 1.18rem;
  line-height: 1.58;
}
.actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 32px;
}
.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 8px;
  border: 1px solid transparent;
  background: var(--accent);
  color: var(--accent-ink);
  font-size: .9rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.button:hover {
  background: var(--accent-strong);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(15, 79, 52, .18);
}
.button-secondary {
  background: var(--surface);
  color: var(--ink);
  border-color: var(--line-2);
  box-shadow: none;
}
.button-secondary:hover {
  background: var(--surface-2);
  border-color: var(--accent-strong);
  color: var(--accent-strong);
}

.home-animation-section {
  padding: 0 0 48px;
  background: var(--bg);
}
.home-animation-section .container {
  width: min(100% - 80px, 1240px);
}
.hero-animation-frame {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: var(--surface);
  padding: 7px;
  border: 1px solid var(--line-2);
  box-shadow: 0 30px 64px -32px rgba(14,16,21,.18), 0 10px 24px rgba(14,16,21,.05);
}
.hero-viz-grid {
  position: relative;
  min-height: 548px;
  padding: 16px 18px 72px;
  border-radius: 13px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 220px minmax(340px, 1fr) 220px;
  gap: 15px;
  background-color: var(--bg);
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px),
    radial-gradient(circle at 50% 50%, transparent 0, transparent 42%, rgba(247,251,249,.72) 74%, var(--bg) 100%);
  background-size: 48px 48px, 48px 48px, 100% 100%;
}
.viz-label {
  margin-bottom: 7px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: .54rem;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: .14em;
}
.surface-column .viz-label { text-align: right; }
.viz-column {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 7px;
}
.viz-card {
  min-height: 64px;
  display: grid;
  align-items: center;
  grid-template-columns: 29px minmax(0, 1fr) auto;
  gap: 9px;
  padding: 8px 10px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 9px;
  box-shadow: 0 1px 2px rgba(0,0,0,.04);
  transition: background .24s ease, border-color .24s ease, box-shadow .24s ease, transform .24s ease;
}
.viz-card.active {
  background: var(--surface-2);
  border-color: var(--accent);
  box-shadow: 0 8px 18px rgba(89,204,196,.22);
  transform: translateY(-1px);
}
.viz-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--surface-2);
  color: var(--ink);
  font-family: var(--mono);
  font-size: .52rem;
  font-weight: 700;
}
.viz-icon svg {
  width: 17px;
  height: 17px;
  display: block;
  color: currentColor;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.viz-icon svg .fill {
  fill: currentColor;
  stroke: none;
}
.active .viz-icon {
  background: var(--accent);
  color: var(--ink);
}
.viz-card strong {
  display: block;
  color: var(--ink);
  font-size: .76rem;
  line-height: 1.15;
  font-weight: 700;
}
.viz-card small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: .54rem;
  line-height: 1.25;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.viz-agent i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--muted);
}
.viz-agent.active i {
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent);
  animation: pulse 1.8s ease-in-out infinite;
}
[data-step="feedback"] .viz-agent[data-agent="feedback"],
[data-step="feedback"] .viz-agent[data-agent="radix"] {
  border-color: var(--accent);
  background: var(--surface-2);
}
[data-step="feedback"] .viz-agent[data-agent="feedback"] {
  box-shadow: 0 8px 18px rgba(89,204,196,.18);
}
[data-step="feedback"] .viz-agent[data-agent="radix"] {
  box-shadow: 0 0 0 1px rgba(89,204,196,.18), 0 10px 22px rgba(89,204,196,.24);
}
.feedback-loop {
  position: absolute;
  right: -14px;
  top: 41px;
  bottom: 20px;
  width: 18px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
}
[data-step="feedback"] .feedback-loop {
  opacity: 1;
}
.feedback-loop::before {
  content: "";
  position: absolute;
  top: 7px;
  bottom: 7px;
  left: 9px;
  border-left: 1px dashed rgba(89,204,196,.78);
}
.feedback-loop::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 5px;
  width: 7px;
  height: 7px;
  border-top: 1px solid var(--accent);
  border-left: 1px solid var(--accent);
  transform: rotate(45deg);
}
.feedback-loop span {
  position: absolute;
  left: 5px;
  bottom: 9px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent);
  animation: feedbackPacket 1.35s cubic-bezier(.25,.7,.25,1) infinite;
}
.feedback-loop span::after {
  content: "learning";
  position: absolute;
  top: -5px;
  right: 13px;
  padding: 2px 5px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--accent-line);
  color: var(--accent);
  font-family: var(--mono);
  font-size: .42rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  white-space: nowrap;
  transform: translateX(2px);
}
.viz-graph {
  position: relative;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
.viz-graph svg {
  width: 100%;
  height: 380px;
  min-height: 0;
  flex: 0 0 auto;
  margin-top: 8px;
}
.graph-edge {
  opacity: 0;
  stroke: rgba(89,204,196,.28);
  stroke-width: .42;
  transition: opacity .42s ease, stroke .24s ease, stroke-width .24s ease;
}
.graph-edge.visible { opacity: .58; }
.graph-edge.active {
  opacity: .95;
  stroke: var(--accent);
  stroke-width: .9;
  stroke-dasharray: 4 5;
  animation: flow 1.25s linear infinite;
}
.graph-node {
  opacity: 0;
  transition: opacity .42s ease, transform .48s ease;
}
.graph-node.visible { opacity: 1; }
.node-ring {
  opacity: 0;
  fill: none;
  stroke: var(--trust);
  stroke-width: .42;
}
.node-body {
  fill: var(--surface);
  stroke: var(--accent);
  stroke-width: .55;
}
.node-dot { fill: var(--accent); }
.graph-node.core {
  opacity: 1;
}
.graph-node.core .node-body {
  r: 8.4;
  fill: var(--surface);
  filter: drop-shadow(0 10px 18px rgba(0,0,0,.12));
}
.graph-node.core .core-logo {
  opacity: .96;
}
.graph-node.draft .node-body {
  fill: rgba(89,204,196,.18);
  stroke: var(--accent);
  animation: nodePop .8s ease-in-out infinite;
}
.graph-node.verifying .node-body {
  fill: rgba(89,204,196,.16);
  stroke: var(--accent);
  animation: verifyBlink .9s ease-in-out infinite;
}
.graph-node.stable .node-body {
  fill: #EEF8F4;
}
.graph-node.seeded .node-ring {
  opacity: .72;
}
.graph-node.incoming.seeded .node-ring {
  animation: seedRing 1.5s ease-in-out infinite;
}
.graph-node.seeded .node-dot { fill: var(--trust); }
.flow-status {
  position: absolute;
  left: 50%;
  bottom: 8px;
  transform: translateX(-50%);
  width: min(100%, 560px);
  display: grid;
  grid-template-columns: auto minmax(118px, auto) minmax(0, 1fr);
  align-items: start;
  gap: 7px 10px;
  padding: 9px 14px;
  border-radius: 14px;
  background: var(--surface);
  border: 1px solid var(--line-2);
  color: var(--ink);
  box-shadow: 0 4px 12px rgba(0,0,0,.06);
  white-space: normal;
}
.flow-status strong {
  color: var(--accent);
  font-family: var(--mono);
  font-size: .56rem;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.flow-status small {
  min-width: 0;
  overflow: visible;
  color: var(--ink-2);
  font-size: .62rem;
  line-height: 1.35;
  text-overflow: clip;
}
.surface-card {
  min-height: 74px;
  grid-template-columns: 29px minmax(0, 1fr) auto;
  position: relative;
}
.surface-card b {
  color: var(--ink);
  font-family: var(--mono);
  font-size: .66rem;
}
.surface-bar {
  grid-column: 1 / -1;
  height: 5px;
  overflow: hidden;
  border-radius: 999px;
  background: var(--surface);
}
.surface-bar i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent);
  transition: width 1.3s cubic-bezier(.2,.7,.2,1);
}
.hero-viz-footer {
  position: absolute;
  left: 7px;
  right: 7px;
  bottom: 7px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 16px;
  background: rgba(247,251,249,.72);
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--line);
  border-radius: 0 0 16px 16px;
  color: var(--ink-2);
  font-family: var(--mono);
  font-size: .56rem;
}
.hero-viz-footer strong {
  color: var(--ink);
  font-weight: 700;
}

.logo-marquee-section {
  padding: 34px 0 44px;
  overflow: hidden;
  background: var(--bg);
}
.logo-marquee-section .eyebrow {
  margin-bottom: 20px;
  text-align: center;
  color: var(--muted);
}
.logo-marquee-mask {
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.logo-marquee-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: clamp(40px, 7vw, 88px);
  animation: logoDrift 34s linear infinite;
}
.logo-pill {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink-2);
  font-family: var(--display);
  font-size: clamp(1.08rem, 2vw, 1.5rem);
  font-weight: 650;
  line-height: 1;
  white-space: nowrap;
  opacity: .64;
}
.logo-pill::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent);
  opacity: .68;
}

.hero {
  position: relative;
  min-height: 640px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--bg);
}
.hero-bg { display: none; }
.hero-inner { position: relative; z-index: 1; text-align: center; padding: 100px 0 80px; }
.eyebrow {
  margin-bottom: 16px;
  color: var(--accent);
  font-family: var(--mono);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
}
h1 {
  max-width: 980px;
  margin: 0 auto;
  color: var(--ink);
  font-family: var(--display);
  font-size: 64px;
  line-height: 1.04;
  font-weight: 700;
}
h1 span { color: var(--accent); }
.page-hero {
  padding: 132px 0 72px;
  background: linear-gradient(180deg, var(--bg), var(--surface));
  border-bottom: 1px solid var(--line);
  text-align: center;
}
.page-hero h1 {
  font-family: var(--display);
  font-size: 64px;
  line-height: 1.06;
  font-weight: 700;
}

.section {
  position: relative;
  overflow: hidden;
  padding: 112px 0;
  border-top: 1px solid var(--line);
}
.section:not(.muted-section):not(.dark-section) {
  background:
    radial-gradient(ellipse 760px 360px at 100% 0%, rgba(89,204,196,.10), transparent 68%),
    var(--bg);
}
.muted-section {
  background:
    linear-gradient(180deg, rgba(236,246,242,.92), rgba(247,251,249,.72)),
    var(--surface-2);
  border-block: 1px solid var(--line);
}
.dark-section {
  background:
    radial-gradient(ellipse 760px 420px at 12% 0%, rgba(255,255,255,.42), transparent 66%),
    radial-gradient(ellipse 560px 360px at 92% 18%, rgba(255,255,255,.28), transparent 64%),
    linear-gradient(135deg, #59CCC4 0%, #6EDBD4 58%, #E4F8F5 100%);
  color: var(--ink);
}
.dark-section .eyebrow { color: rgba(52,53,58,.62); }
.dark-section .section-head p,
.dark-section .card p,
.dark-section .stat-card p { color: rgba(52,53,58,.72); }
.dark-section .card-meta { color: var(--ink) !important; }
.dark-section .card,
.dark-section .stat-card {
  background: rgba(255,255,255,.62);
  border-color: rgba(255,255,255,.54);
  box-shadow: 0 22px 58px rgba(52,53,58,.10);
  backdrop-filter: blur(10px);
}
.section-head {
  max-width: 1120px;
  margin: 0 auto 52px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, .72fr);
  gap: 18px 48px;
  align-items: end;
  text-align: left;
}
.section-head .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: 0;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.section-head .eyebrow::after {
  content: "";
  width: 46px;
  height: 1px;
  background: linear-gradient(90deg, var(--accent), transparent);
}
.dark-section .section-head .eyebrow::after {
  background: linear-gradient(90deg, rgba(52,53,58,.30), transparent);
}
.section-head h2 {
  max-width: 780px;
  color: inherit;
  font-family: var(--display);
  font-size: 54px;
  line-height: 1.06;
  font-weight: 700;
}
.section-head h2:last-child {
  grid-column: 1 / -1;
  max-width: 940px;
}
.section-head p {
  margin: 0;
  color: var(--ink-2);
  font-size: 1.05rem;
  line-height: 1.68;
}
.card-grid { display: grid; gap: 18px; }
.cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.card, .stat-card, .form-card {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,255,255,.84)),
    var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px;
  box-shadow: 0 1px 2px rgba(14,16,21,.04), 0 18px 48px rgba(89,204,196,.14);
  transition: border-color .3s ease, transform .3s ease, box-shadow .3s ease;
}
.card::before,
.stat-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), rgba(148,217,90,.65), transparent);
  opacity: .72;
}
.card:hover, .stat-card:hover {
  border-color: var(--accent-line);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.resource-card {
  display: block;
  min-height: 100%;
}
.card-top {
  min-height: 36px;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.card-icon {
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(89,204,196,.34);
  border-radius: 10px;
  color: var(--accent);
  background:
    radial-gradient(circle at 35% 28%, rgba(89,204,196,.24), transparent 46%),
    rgba(228,248,245,.72);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.72), 0 8px 22px rgba(89,204,196,.16);
}
.card-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform .28s ease;
}
.card:hover .card-icon svg,
.stat-card:hover .card-icon svg {
  transform: translateY(-1px) scale(1.06);
}
.dark-section .card-icon {
  color: var(--ink);
  border-color: rgba(89,204,196,.36);
  background: rgba(228,248,245,.72);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.64);
}
.card h3, .stat-card h3 {
  margin-bottom: 10px;
  color: inherit;
  font-family: var(--display);
  font-size: 1.22rem;
  line-height: 1.22;
  font-weight: 650;
}
.card p, .stat-card p {
  color: var(--ink-2);
  line-height: 1.68;
}
.founder-card {
  display: flex;
  flex-direction: column;
}
.founder-card .linkedin-link {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  padding: 10px 13px;
  border: 1px solid rgba(10,102,194,.20);
  border-radius: 999px;
  color: #0A66C2;
  background: rgba(10,102,194,.07);
  font-weight: 750;
  line-height: 1;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.founder-card .linkedin-link:hover {
  transform: translateY(-1px);
  border-color: rgba(10,102,194,.36);
  background: rgba(10,102,194,.12);
}
.linkedin-mark {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.linkedin-mark svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  stroke: none;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}
.pricing-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  gap: 18px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255,255,255,.92), rgba(247,251,249,.78)),
    var(--surface);
  box-shadow: 0 18px 48px rgba(89,204,196,.12);
}
.pricing-card.featured {
  border-color: var(--accent);
  box-shadow: 0 26px 70px rgba(89,204,196,.24);
  transform: translateY(-6px);
}
.pricing-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.pricing-card-head span {
  padding: 6px 9px;
  border: 1px solid var(--accent-line);
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-strong);
  font-family: var(--mono);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  white-space: nowrap;
}
.pricing-card h3 {
  color: var(--ink);
  font-family: var(--display);
  font-size: 1.55rem;
  line-height: 1.14;
}
.pricing-card > p {
  color: var(--ink-2);
  line-height: 1.62;
}
.pricing-price {
  display: grid;
  gap: 4px;
  margin-top: auto;
}
.pricing-price strong {
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(2.1rem, 4vw, 3.25rem);
  line-height: 1;
  font-weight: 700;
}
.pricing-price small {
  color: var(--muted);
  font-family: var(--mono);
  font-size: .72rem;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.pricing-card .button {
  width: 100%;
}
.pricing-list {
  display: grid;
  gap: 11px;
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
}
.pricing-list li {
  position: relative;
  padding-left: 24px;
  color: var(--ink-2);
  line-height: 1.55;
}
.pricing-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .48em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px rgba(89,204,196,.45);
}
.pricing-note {
  max-width: 760px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.6;
  text-align: center;
}
.faq-list {
  max-width: 920px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.78);
  box-shadow: 0 10px 28px rgba(89,204,196,.10);
}
.faq-item summary {
  cursor: pointer;
  padding: 20px 22px;
  color: var(--ink);
  font-family: var(--display);
  font-size: 1.04rem;
  font-weight: 650;
}
.faq-item p {
  padding: 0 22px 22px;
  color: var(--ink-2);
  line-height: 1.68;
}
.card-meta {
  margin: 0 !important;
  color: var(--accent) !important;
  font-family: var(--mono);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .10em;
  text-transform: uppercase;
}
.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.stat-card strong {
  display: block;
  margin: 20px 0 18px;
  color: inherit;
  font-family: var(--display);
  font-size: 52px;
  line-height: 1;
  font-weight: 700;
}
.stat-icon {
  width: 40px;
  height: 40px;
}
.stat-icon svg {
  width: 19px;
  height: 19px;
}
.process-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255,255,255,.86), rgba(255,255,255,.62)),
    var(--surface);
  box-shadow: 0 18px 48px rgba(89,204,196,.14);
}
.process-step {
  position: relative;
  min-height: 238px;
  padding: 24px 18px;
  border-right: 1px solid var(--line);
}
.process-step:last-child { border-right: 0; }
.process-step::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  top: 74px;
  height: 1px;
  background: linear-gradient(90deg, var(--accent), transparent);
  opacity: .72;
}
.process-index,
.agent-number,
.module-index {
  display: block;
  color: var(--accent);
  font-family: var(--mono);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .10em;
}
.process-step .card-icon {
  margin: 16px 0 22px;
}
.process-step h3,
.agent-loop-core h3,
.module-row h3 {
  margin: 0 0 10px;
  font-family: var(--display);
  font-size: 1.18rem;
  line-height: 1.2;
  font-weight: 650;
}
.process-step p,
.module-row p {
  color: var(--ink-2);
  line-height: 1.62;
}
.agent-loop {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 24px;
  align-items: stretch;
}
.agent-loop-core {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 24% 20%, rgba(89,204,196,.22), transparent 30%),
    linear-gradient(145deg, rgba(255,255,255,.88), rgba(228,248,245,.72));
  box-shadow: var(--shadow);
}
.agent-loop-core::after {
  content: "";
  position: absolute;
  right: -18px;
  bottom: -44px;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(89,204,196,.26);
  border-radius: 50%;
  box-shadow: inset 0 0 0 28px rgba(89,204,196,.06), inset 0 0 0 62px rgba(89,204,196,.10);
  opacity: .84;
  pointer-events: none;
  transition: border-color .3s ease, box-shadow .3s ease, opacity .3s ease;
}
.agent-loop-core:hover::after {
  border-color: rgba(89,204,196,.72);
  box-shadow:
    inset 0 0 0 28px rgba(89,204,196,.18),
    inset 0 0 0 62px rgba(89,204,196,.28),
    0 0 54px rgba(89,204,196,.24);
  opacity: 1;
}
.agent-loop-core img {
  width: 54px;
  height: 54px;
  margin-bottom: 28px;
}
.agent-loop-core .eyebrow {
  margin-bottom: 12px;
}
.agent-loop-core h3 {
  max-width: 420px;
  font-size: 2rem;
  line-height: 1.12;
}
.agent-loop-core span {
  position: relative;
  z-index: 1;
  display: block;
  max-width: 420px;
  margin-top: 18px;
  color: var(--ink-2);
  line-height: 1.62;
}
.agent-loop-list {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.72);
  box-shadow: 0 18px 48px rgba(89,204,196,.12);
}
.agent-row {
  display: grid;
  grid-template-columns: 44px 42px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding: 17px 20px;
  border-bottom: 1px solid var(--line);
  transition: background .24s ease, transform .24s ease;
}
.agent-row:last-child { border-bottom: 0; }
.agent-row:hover {
  background: rgba(228,248,245,.72);
  transform: translateX(3px);
}
.agent-row strong {
  display: block;
  color: var(--ink);
  font-family: var(--display);
  font-size: 1rem;
  line-height: 1.2;
}
.agent-row small {
  display: block;
  margin-top: 5px;
  color: var(--ink-2);
  line-height: 1.5;
}
.module-ledger {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.7);
  box-shadow: 0 18px 48px rgba(89,204,196,.14);
}
.module-row {
  display: grid;
  grid-template-columns: 64px 44px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 24px 28px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(255,255,255,.78), rgba(236,246,242,.44));
}
.module-row:nth-child(even) {
  background: linear-gradient(90deg, rgba(236,246,242,.58), rgba(255,255,255,.78));
}
.module-row:last-child { border-bottom: 0; }
.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-block: 1px solid var(--line);
}
.proof-item {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 18px;
  padding: 30px 30px 30px 0;
  border-right: 1px solid var(--line);
  transition: color .24s ease, transform .24s ease;
}
.proof-item + .proof-item {
  padding-left: 30px;
}
.proof-item:last-child {
  border-right: 0;
}
.proof-item:hover {
  color: var(--accent-strong);
  transform: translateY(-2px);
}
.proof-index {
  color: var(--accent);
  font-family: var(--mono);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .10em;
}
.proof-item small {
  display: block;
  margin-bottom: 10px;
  color: var(--accent);
  font-family: var(--mono);
  font-size: .68rem;
  font-style: normal;
  font-weight: 600;
  letter-spacing: .10em;
  text-transform: uppercase;
}
.proof-item strong {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  font-family: var(--display);
  font-size: 1.12rem;
  line-height: 1.2;
}
.proof-item em {
  display: block;
  color: var(--ink-2);
  font-style: normal;
  line-height: 1.62;
}
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(44px, 5vw, 76px);
  align-items: center;
}
.split h2 {
  max-width: 680px;
  font-family: var(--display);
  font-size: 54px;
  line-height: 1.07;
  font-weight: 700;
}
.split > div > p {
  margin-top: 18px;
  color: var(--ink-2);
  font-size: 1.05rem;
  line-height: 1.7;
}
.media-panel {
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255,255,255,.58), rgba(236,246,242,.78)),
    var(--surface-2);
  box-shadow: var(--shadow);
}
.media-panel img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
}
.check-list {
  display: grid;
  gap: 10px;
  margin-top: 26px;
}
.check-list p {
  position: relative;
  padding: 12px 14px 12px 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.58);
  color: var(--ink) !important;
  font-weight: 600;
}
.check-list p::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 50%;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
  transform: translateY(-50%);
}
.cta-band {
  position: relative;
  overflow: hidden;
  padding: 120px 0;
  background:
    radial-gradient(ellipse 760px 420px at 50% -10%, rgba(255,255,255,.52), transparent 70%),
    linear-gradient(135deg, #59CCC4 0%, #6EDBD4 58%, #E4F8F5 100%);
  color: var(--ink);
  text-align: center;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  border-top: 1px solid rgba(255,255,255,.16);
  background:
    linear-gradient(90deg, transparent, rgba(255,255,255,.10), transparent),
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 100% 100%, 48px 48px, 48px 48px;
}
.cta-band .container { position: relative; }
.cta-band h2 {
  max-width: 900px;
  margin: 0 auto;
  font-family: var(--display);
  font-size: 72px;
  line-height: 1.02;
  font-weight: 700;
}
.cta-band p {
  max-width: 680px;
  margin: 20px auto 0;
  color: rgba(52,53,58,.74);
  font-size: 1.08rem;
  line-height: 1.65;
}
.cta-band .button {
  background: var(--surface);
  color: var(--ink);
  box-shadow: 0 10px 24px rgba(52,53,58,.12);
}
.cta-band .button:hover {
  background: var(--accent-strong);
  color: #fff;
}
.cta-band .button-secondary {
  background: transparent;
  color: var(--ink);
  border-color: rgba(52,53,58,.24);
}
.cta-band .button-secondary:hover {
  background: var(--accent-strong);
  border-color: var(--accent-strong);
  color: #fff;
}
.workflow-animation-section {
  background:
    linear-gradient(180deg, rgba(247,251,249,.96), rgba(255,255,255,.86)),
    var(--bg);
}
.workflow-animation {
  max-width: 1120px;
  margin: 0 auto;
  padding: clamp(14px, 2vw, 22px);
  border: 1px solid var(--line);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.9), rgba(236,246,242,.52)),
    var(--surface);
  box-shadow: 0 24px 62px rgba(89,204,196,.14);
}
.anim-grid {
  display: grid;
  gap: 14px;
}
.anim-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.adjudicator-grid {
  grid-template-columns: .9fr 1.1fr .72fr;
}
.anim-panel {
  position: relative;
  min-height: 250px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.72)),
    var(--surface);
  box-shadow: 0 10px 28px rgba(89,204,196,.08);
}
.anim-kicker {
  position: relative;
  z-index: 2;
  margin: 16px 18px 0;
  color: var(--accent-strong);
  font-family: var(--mono);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.anim-chip,
.resource-card-mini,
.fact-chip,
.pipeline-step,
.cluster-card,
.keyword-group span,
.brief-row,
.review-check,
.decision-pill,
.related-node,
.metric-chip,
.recommendation-chip {
  border: 1px solid var(--line-2);
  border-radius: 8px;
  background: var(--surface);
  color: var(--ink);
  box-shadow: 0 8px 18px rgba(89,204,196,.10);
}
.cms-orchestrator-stage {
  min-height: 410px;
  padding: 28px;
}
.cms-input-stack,
.cms-output-stack {
  position: absolute;
  top: 56px;
  bottom: 44px;
  width: min(26%, 250px);
  display: grid;
  align-content: center;
  gap: 10px;
  z-index: 3;
}
.cms-input-stack { left: 26px; }
.cms-output-stack { right: 26px; }
.cms-input-stack .anim-kicker,
.cms-output-stack .anim-kicker {
  margin: 0 0 4px;
}
.cms-input-stack span,
.cms-output-stack span,
.cms-agent-chip {
  display: block;
  padding: 10px 12px;
  border: 1px solid var(--line-2);
  border-radius: 9px;
  background: var(--surface);
  color: var(--ink-2);
  font-weight: 800;
  box-shadow: 0 8px 18px rgba(89,204,196,.10);
}
.cms-input-stack span {
  animation: resourceFlow 6.8s ease-in-out infinite;
}
.cms-input-stack span:nth-child(3) { animation-delay: .12s; }
.cms-input-stack span:nth-child(4) { animation-delay: .24s; }
.cms-input-stack span:nth-child(5) { animation-delay: .36s; }
.cms-output-stack span {
  animation: recommendationReveal 6.8s ease-in-out infinite;
}
.cms-output-stack span:nth-child(3) { animation-delay: .16s; }
.cms-output-stack span:nth-child(4) { animation-delay: .32s; }
.cms-output-stack span:nth-child(5) { animation-delay: .48s; }
.cms-hub {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 5;
  width: 150px;
  height: 150px;
  display: grid;
  place-items: center;
  align-content: center;
  border: 1px solid var(--accent);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 35%, rgba(255,255,255,.9), rgba(228,248,245,.82)),
    var(--accent-soft);
  box-shadow: 0 0 0 14px rgba(89,204,196,.08), 0 18px 42px rgba(89,204,196,.18);
  transform: translate(-50%, -50%);
  animation: corePulse 6.8s ease-in-out infinite;
}
.cms-hub span,
.cms-hub small {
  display: block;
  text-align: center;
}
.cms-hub span {
  color: var(--ink);
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 800;
}
.cms-hub small {
  margin-top: 5px;
  color: var(--accent-strong);
  font-family: var(--mono);
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.cms-orchestrator-lines {
  position: absolute;
  inset: 42px 24px 28px;
  z-index: 1;
  width: calc(100% - 48px);
  height: calc(100% - 70px);
}
.cms-orchestrator-lines path {
  fill: none;
  stroke: var(--accent);
  stroke-width: 1.35;
  stroke-linecap: round;
  stroke-dasharray: 230;
  animation: drawPath 6.8s ease-in-out infinite;
}
.cms-agent-ring {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
}
.cms-agent-chip {
  position: absolute;
  min-width: 112px;
  padding: 8px 10px;
  color: var(--accent-strong);
  font-size: .78rem;
  text-align: center;
  animation: pipelineActive 6.8s ease-in-out infinite;
  animation-delay: calc(var(--i) * .16s);
}
.cms-agent-1 { left: 40%; top: 58px; }
.cms-agent-2 { right: 32%; top: 96px; }
.cms-agent-3 { right: 31%; top: 174px; }
.cms-agent-4 { left: 39%; bottom: 58px; }
.cms-agent-5 { left: 31%; top: 174px; }
.cms-agent-6 { left: 31%; top: 96px; }
.raw-line,
.page-title-line,
.title-line {
  height: 8px;
  border-radius: 999px;
  background: rgba(89,204,196,.18);
}
.raw-line {
  width: 76%;
  margin: 18px 18px 0;
  animation: rawScan 4.8s ease-in-out infinite;
}
.raw-line-wide { width: 88%; }
.raw-line-short { width: 48%; }
.anim-raw-doc::after,
.published-pages::after {
  content: "";
  position: absolute;
  inset: 54px 18px 18px;
  border: 1px dashed rgba(89,204,196,.22);
  border-radius: 10px;
  pointer-events: none;
}
.anim-block-stack {
  display: flex;
  flex-direction: column;
  gap: 9px;
  padding: 54px 18px 18px;
}
.block-chip {
  display: block;
  padding: 10px 12px;
  color: var(--ink);
  font-weight: 700;
  animation: blockApprove 6s ease-in-out infinite;
  animation-delay: calc(var(--i) * .18s);
}
.anim-page-layout {
  padding: 54px 18px 18px;
}
.page-title-line {
  width: 70%;
  margin-bottom: 18px;
  background: var(--accent);
  animation: pagePulse 6s ease-in-out infinite;
}
.page-content-grid {
  display: grid;
  grid-template-columns: 1fr .72fr;
  gap: 10px;
}
.page-content-grid span,
.page-side-stack i,
.published-pages span {
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(236,246,242,.86);
}
.page-content-grid span:first-child {
  grid-row: span 2;
  min-height: 98px;
}
.page-side-stack {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}
.resource-stack {
  display: grid;
  align-content: center;
  gap: 10px;
  padding: 54px 18px 18px;
}
.resource-card-mini {
  display: block;
  padding: 12px 14px;
  font-family: var(--mono);
  font-size: .78rem;
  font-weight: 700;
  animation: resourceFlow 5.8s ease-in-out infinite;
  animation-delay: calc(var(--i) * .24s);
}
.knowledge-core {
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 10px;
  padding: 58px 18px 20px;
}
.core-orbit {
  position: relative;
  width: 86px;
  height: 86px;
  margin-bottom: 4px;
  border: 1px solid var(--accent);
  border-radius: 50%;
  background: rgba(228,248,245,.72);
  animation: corePulse 5.8s ease-in-out infinite;
}
.core-orbit span {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
}
.core-orbit span:nth-child(1) { left: 50%; top: -5px; transform: translateX(-50%); }
.core-orbit span:nth-child(2) { right: 8px; bottom: 10px; }
.core-orbit span:nth-child(3) { left: 8px; bottom: 10px; }
.fact-chip {
  display: block;
  width: min(100%, 190px);
  padding: 8px 10px;
  color: var(--ink-2);
  font-size: .82rem;
  font-weight: 700;
  text-align: center;
  animation: factExtract 5.8s ease-in-out infinite;
  animation-delay: calc(var(--i) * .2s);
}
.knowledge-graph-mini {
  padding: 54px 12px 10px;
}
.knowledge-graph-mini svg {
  width: 100%;
  height: 174px;
}
.link-map-stage {
  min-height: 390px;
  padding: 26px;
}
.page-scan-card {
  position: absolute;
  left: 26px;
  top: 42px;
  bottom: 42px;
  width: min(42%, 330px);
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  box-shadow: 0 12px 30px rgba(89,204,196,.10);
}
.scan-line {
  height: 8px;
  width: 72%;
  margin: 20px 18px 0;
  border-radius: 999px;
  background: rgba(89,204,196,.16);
  animation: rawScan 5.8s ease-in-out infinite;
}
.scan-wide { width: 86%; }
.term-highlight {
  position: absolute;
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 5px 9px;
  border: 1px solid var(--accent);
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-strong);
  font-size: .76rem;
  font-weight: 800;
  animation: factExtract 5.8s ease-in-out infinite;
  animation-delay: calc(var(--i) * .2s);
}
.term-1 { left: 18px; top: 126px; }
.term-2 { right: 22px; top: 164px; }
.term-3 { left: 28px; bottom: 82px; }
.term-4 { right: 18px; bottom: 42px; }
.internal-link-lines {
  position: absolute;
  inset: 48px 28px 34px;
  width: calc(100% - 56px);
  height: calc(100% - 82px);
}
.internal-link-lines path {
  fill: none;
  stroke: var(--accent);
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-dasharray: 220;
  animation: drawPath 5.8s ease-in-out infinite;
}
.related-page-stack {
  position: absolute;
  right: 26px;
  top: 52px;
  bottom: 52px;
  width: min(36%, 310px);
  display: grid;
  align-content: center;
  gap: 10px;
}
.related-page-stack .anim-kicker {
  margin: 0 0 4px;
}
.related-page-card {
  display: block;
  padding: 12px 14px;
  border: 1px solid var(--line-2);
  border-radius: 9px;
  background: var(--surface);
  color: var(--ink-2);
  font-weight: 800;
  box-shadow: 0 8px 18px rgba(89,204,196,.10);
  animation: clusterResolve 5.8s ease-in-out infinite;
  animation-delay: calc(var(--i) * .18s);
}
.connected-map-label {
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  color: var(--accent-strong);
  font-family: var(--mono);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.graph-link {
  fill: none;
  stroke: var(--accent);
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-dasharray: 140;
  animation: drawPath 5.8s ease-in-out infinite;
}
.graph-link.delay-a { animation-delay: .28s; }
.graph-link.delay-b { animation-delay: .48s; }
.graph-node-main {
  fill: var(--surface);
  stroke: var(--accent-strong);
  stroke-width: 1.4;
  animation: nodeGlow 5.8s ease-in-out infinite;
}
.graph-node-small {
  fill: var(--accent);
  stroke: var(--surface);
  stroke-width: 2;
}
.radix-stage {
  min-height: 370px;
  padding: 26px;
}
.subject-card {
  width: min(100%, 260px);
  padding: 16px 18px;
  border: 1px solid var(--line-2);
  border-radius: 12px;
  background: var(--surface);
  color: var(--ink);
  font-weight: 800;
  box-shadow: 0 10px 28px rgba(89,204,196,.12);
  animation: subjectPulse 7s ease-in-out infinite;
}
.subject-card span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: .68rem;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.pipeline-steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  margin-top: 26px;
}
.pipeline-step {
  min-height: 58px;
  display: grid;
  place-items: center;
  padding: 8px;
  color: var(--ink-2);
  font-size: .78rem;
  font-weight: 800;
  text-align: center;
  animation: pipelineActive 7s ease-in-out infinite;
  animation-delay: calc(var(--i) * .24s);
}
.keyword-field {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 26px;
}
.keyword-field span {
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(236,246,242,.82);
  color: var(--ink-2);
  font-size: .78rem;
  font-weight: 700;
  animation: keywordSort 7s ease-in-out infinite;
}
.keyword-field span:nth-child(2n) {
  animation-delay: .18s;
}
.cluster-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 26px;
}
.cluster-card {
  padding: 18px 14px;
  animation: clusterResolve 7s ease-in-out infinite;
  animation-delay: calc(var(--i) * .2s);
}
.cluster-card strong,
.cluster-card small {
  display: block;
}
.cluster-card small {
  margin-top: 6px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: .66rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.keyword-group,
.title-builder,
.brief-card {
  display: grid;
  align-content: center;
  gap: 10px;
  padding: 54px 18px 18px;
}
.keyword-group span {
  padding: 10px 12px;
  color: var(--ink-2);
  font-size: .84rem;
  font-weight: 800;
  animation: keywordCollapse 6.4s ease-in-out infinite;
}
.title-builder strong {
  display: block;
  padding: 18px;
  border: 1px solid var(--line-2);
  border-radius: 10px;
  background: var(--surface);
  font-family: var(--display);
  font-size: 1.1rem;
  line-height: 1.25;
  animation: titleForm 6.4s ease-in-out infinite;
}
.title-line {
  width: 82%;
  margin-top: 8px;
}
.title-line.short {
  width: 52%;
}
.brief-row {
  display: block;
  padding: 8px 10px;
  color: var(--ink-2);
  font-weight: 800;
  animation: briefReveal 6.4s ease-in-out infinite;
  animation-delay: calc(var(--i) * .14s);
}
.review-plan,
.review-checks,
.decision-panel {
  display: grid;
  align-content: center;
  gap: 12px;
  padding: 54px 18px 18px;
}
.review-plan strong {
  display: block;
  margin-bottom: 8px;
  font-family: var(--display);
  font-size: 1.1rem;
}
.soft-flag {
  width: fit-content;
  padding: 7px 10px;
  border: 1px solid rgba(180,35,24,.24);
  border-radius: 999px;
  background: rgba(180,35,24,.07);
  color: var(--danger);
  font-size: .76rem;
  font-weight: 800;
  animation: flagIssue 6.2s ease-in-out infinite;
}
.review-check {
  position: relative;
  display: grid;
  min-height: 42px;
  align-items: center;
  padding: 8px 12px 8px 38px;
  color: var(--ink-2);
  font-weight: 800;
  animation: checkRun 6.2s ease-in-out infinite;
  animation-delay: calc(var(--i) * .22s);
}
.review-check::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 50%;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1px solid var(--accent);
  background: rgba(89,204,196,.14);
  transform: translateY(-50%);
}
.decision-panel {
  grid-template-columns: 1fr;
}
.decision-pill {
  padding: 12px 14px;
  font-weight: 900;
  text-align: center;
  animation: decisionGlow 6.2s ease-in-out infinite;
}
.decision-pill.revise {
  border-color: rgba(180,35,24,.24);
  color: var(--danger);
  animation-delay: .28s;
}
.decision-pill.approve { color: var(--accent-strong); }
.seed-distribution-grid {
  grid-template-columns: .9fr 1fr .95fr;
}
.forum-panel,
.seed-page-panel,
.social-panel {
  display: grid;
  align-content: center;
  gap: 10px;
  padding: 54px 18px 18px;
}
.forum-question,
.page-section-match,
.answer-draft,
.social-card,
.review-queue {
  display: block;
  border: 1px solid var(--line-2);
  border-radius: 9px;
  background: var(--surface);
  color: var(--ink-2);
  font-weight: 800;
  box-shadow: 0 8px 18px rgba(89,204,196,.10);
}
.forum-question,
.page-section-match,
.answer-draft,
.review-queue {
  padding: 10px 12px;
}
.forum-question {
  animation: resourceFlow 6.4s ease-in-out infinite;
  animation-delay: calc(var(--i) * .24s);
}
.page-section-match {
  border-color: var(--accent);
  background: var(--accent-soft);
  color: var(--accent-strong);
  animation: pagePulse 6.4s ease-in-out infinite;
}
.seed-page-panel strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
  font-family: var(--display);
  font-size: 1.1rem;
}
.answer-draft {
  border-color: var(--accent);
  background: var(--accent-soft);
  color: var(--ink);
  animation: recommendationReveal 6.4s ease-in-out infinite;
}
.answer-draft.delay-a {
  animation-delay: .28s;
}
.social-card {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  padding: 10px;
  animation: metricFlow 6.4s ease-in-out infinite;
  animation-delay: calc(var(--i) * .24s);
}
.social-card i {
  display: block;
  width: 52px;
  height: 44px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(89,204,196,.28), rgba(148,217,90,.22)),
    var(--surface-2);
}
.social-card strong,
.social-card small {
  display: block;
}
.social-card small {
  margin-top: 3px;
  color: var(--muted);
  font-size: .7rem;
  line-height: 1.25;
}
.review-queue {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--accent-ink);
  text-align: center;
  animation: radixReturn 6.4s ease-in-out infinite;
}
.seed-stage {
  min-height: 380px;
  padding: 24px;
}
.published-node {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 4;
  width: 176px;
  padding: 18px 16px;
  border: 1px solid var(--accent);
  border-radius: 12px;
  background: var(--surface);
  color: var(--ink);
  font-weight: 900;
  text-align: center;
  box-shadow: 0 14px 32px rgba(89,204,196,.16);
  transform: translate(-50%, -50%);
  animation: publishedJoin 6.8s ease-in-out infinite;
}
.seed-lines {
  position: absolute;
  inset: 54px 28px 28px;
  width: calc(100% - 56px);
  height: calc(100% - 82px);
}
.seed-lines path {
  fill: none;
  stroke: var(--accent);
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-dasharray: 210;
  animation: drawPath 6.8s ease-in-out infinite;
}
.topical-ring {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 302px;
  height: 210px;
  border: 1px dashed rgba(15,79,52,.26);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: ringSettle 6.8s ease-in-out infinite;
}
.related-node {
  position: absolute;
  z-index: 3;
  min-width: 112px;
  padding: 10px 12px;
  color: var(--ink-2);
  font-size: .82rem;
  font-weight: 800;
  text-align: center;
  animation: nodeJoin 6.8s ease-in-out infinite;
  animation-delay: calc(var(--i) * .18s);
}
.node-1 { left: 12%; top: 18%; }
.node-2 { left: 8%; top: 48%; }
.node-3 { left: 14%; bottom: 16%; }
.node-4 { right: 12%; top: 18%; }
.node-5 { right: 10%; bottom: 23%; }
.cluster-label {
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  color: var(--accent-strong);
  font-family: var(--mono);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.published-pages,
.signal-panel,
.recommendation-panel {
  display: grid;
  align-content: center;
  gap: 10px;
  padding: 54px 18px 18px;
}
.published-pages span {
  display: block;
  min-height: 46px;
  animation: pageSignal 6.6s ease-in-out infinite;
}
.published-pages span:nth-child(3) { animation-delay: .16s; }
.published-pages span:nth-child(4) { animation-delay: .32s; }
.metric-chip,
.recommendation-chip {
  display: block;
  padding: 10px 12px;
  color: var(--ink-2);
  font-weight: 800;
  animation: metricFlow 6.6s ease-in-out infinite;
  animation-delay: calc(var(--i) * .18s);
}
.recommendation-chip {
  animation-name: recommendationReveal;
}
.recommendation-panel strong {
  display: block;
  margin-top: 4px;
  padding: 12px;
  border-radius: 10px;
  background: var(--accent);
  color: var(--accent-ink);
  text-align: center;
  animation: radixReturn 6.6s ease-in-out infinite;
}
.article {
  max-width: 860px;
}
.article section + section {
  margin-top: 42px;
  padding-top: 42px;
  border-top: 1px solid var(--line);
}
.article h2 {
  margin-bottom: 14px;
  font-family: var(--display);
  font-size: 2rem;
  line-height: 1.18;
}
.article p {
  color: var(--ink-2);
  line-height: 1.75;
  font-size: 1.03rem;
}
.article p + p { margin-top: 14px; }
.apply-layout {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 24px;
  align-items: start;
}
.form-card { display: grid; gap: 18px; }
.lead-copy h2 {
  margin: 10px 0 18px;
  font-family: var(--display);
  font-size: clamp(2.1rem, 4vw, 4rem);
  line-height: 1.05;
}
.lead-copy > p:not(.eyebrow) {
  color: var(--ink-2);
  font-size: 1.06rem;
  line-height: 1.68;
}
.lead-popup-card {
  display: grid;
  align-content: start;
  gap: 14px;
}
.lead-popup-card .button {
  width: fit-content;
  margin-top: 8px;
}
.lead-modal {
  width: min(100% - 32px, 640px);
  max-height: min(860px, calc(100vh - 48px));
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  background: transparent;
  color: var(--ink);
  overflow: visible;
}
.lead-modal::backdrop {
  background: rgba(14,16,21,.48);
  backdrop-filter: blur(5px);
}
.lead-modal-panel {
  position: relative;
}
.lead-modal .form-card {
  max-height: min(820px, calc(100vh - 56px));
  overflow: auto;
  background: var(--surface);
}
.lead-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--ink);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}
.form-card h3 {
  margin: 8px 0 8px;
  font-family: var(--display);
  font-size: 1.5rem;
  line-height: 1.15;
}
.form-card > div > p:last-child {
  color: var(--ink-2);
  line-height: 1.62;
}
.form-status {
  min-height: 1.4em;
  color: var(--ink-2);
  font-size: .9rem;
  font-weight: 700;
}
.form-status[data-state="success"] { color: var(--accent-strong); }
.form-status[data-state="error"] { color: var(--danger); }
label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 700;
}
.lead-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
input, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 15px;
  color: var(--ink);
  background: var(--surface);
  font: inherit;
}
textarea { resize: vertical; }
.site-footer {
  padding-top: 56px;
  background:
    linear-gradient(180deg, var(--surface), rgba(236,246,242,.84));
  border-top: 1px solid var(--line);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-grid h3 {
  margin-bottom: 14px;
  color: var(--ink);
  font-family: var(--mono);
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.footer-grid a, .footer-grid p {
  display: block;
  margin-bottom: 9px;
  color: var(--ink-2);
  font-size: .86rem;
  line-height: 1.55;
}
.footer-brand span {
  font-size: 1.25rem;
  letter-spacing: 0;
  text-transform: none;
}
.footer-brand p {
  max-width: 330px;
  margin-top: 16px;
}
.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}
.social-row a {
  color: var(--ink);
  font-weight: 700;
}
.footer-bottom {
  margin-top: 40px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  font-size: .82rem;
}
.footer-bottom a { margin-left: 18px; font-weight: 600; }
.reveal {
  opacity: 1;
  transform: none;
  animation: none;
}
.delay-1 { animation-delay: .1s; }
.delay-2 { animation-delay: .2s; }
.delay-3 { animation-delay: .3s; }
.delay-4 { animation-delay: .5s; }

@keyframes rawScan {
  0%, 100% { opacity: .58; transform: scaleX(.86); transform-origin: left; }
  44%, 72% { opacity: 1; transform: scaleX(1); }
}
@keyframes blockApprove {
  0%, 18% { border-color: var(--line); background: var(--surface); transform: translateX(-8px); opacity: .72; }
  38%, 78% { border-color: var(--accent); background: var(--accent-soft); transform: translateX(0); opacity: 1; }
  100% { border-color: var(--line); background: var(--surface); transform: translateX(-8px); opacity: .72; }
}
@keyframes pagePulse {
  0%, 25% { opacity: .42; transform: scaleX(.72); transform-origin: left; }
  52%, 82% { opacity: 1; transform: scaleX(1); }
  100% { opacity: .42; transform: scaleX(.72); transform-origin: left; }
}
@keyframes resourceFlow {
  0%, 20% { opacity: .68; transform: translateX(-10px); }
  42%, 78% { opacity: 1; transform: translateX(0); border-color: var(--accent); }
  100% { opacity: .68; transform: translateX(-10px); }
}
@keyframes corePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(89,204,196,.16); transform: scale(.96); }
  48%, 78% { box-shadow: 0 0 0 12px rgba(89,204,196,.10); transform: scale(1); }
}
@keyframes factExtract {
  0%, 24% { opacity: .42; transform: translateY(8px); }
  46%, 80% { opacity: 1; transform: translateY(0); border-color: var(--accent); color: var(--ink); }
  100% { opacity: .42; transform: translateY(8px); }
}
@keyframes drawPath {
  0%, 20% { stroke-dashoffset: 210; opacity: .28; }
  50%, 82% { stroke-dashoffset: 0; opacity: .92; }
  100% { stroke-dashoffset: 210; opacity: .28; }
}
@keyframes nodeGlow {
  0%, 32%, 100% { fill: var(--surface); }
  52%, 82% { fill: var(--accent-soft); }
}
@keyframes subjectPulse {
  0%, 100% { border-color: var(--line-2); transform: translateY(0); }
  12%, 34% { border-color: var(--accent); transform: translateY(-2px); }
}
@keyframes pipelineActive {
  0%, 20% { background: var(--surface); color: var(--ink-2); transform: translateY(0); }
  34%, 58% { background: var(--accent-soft); color: var(--ink); border-color: var(--accent); transform: translateY(-2px); }
  100% { background: var(--surface); color: var(--ink-2); transform: translateY(0); }
}
@keyframes keywordSort {
  0%, 24% { opacity: .52; transform: translateY(0); }
  44%, 72% { opacity: 1; transform: translateY(-4px); border-color: var(--accent-line); }
  100% { opacity: .52; transform: translateY(0); }
}
@keyframes clusterResolve {
  0%, 36% { opacity: .56; transform: translateY(10px); }
  58%, 86% { opacity: 1; transform: translateY(0); border-color: var(--accent); background: var(--accent-soft); }
  100% { opacity: .56; transform: translateY(10px); }
}
@keyframes keywordCollapse {
  0%, 22% { transform: translateX(-8px); opacity: .68; }
  42%, 76% { transform: translateX(0); opacity: 1; border-color: var(--accent); }
  100% { transform: translateX(-8px); opacity: .68; }
}
@keyframes titleForm {
  0%, 30% { opacity: .58; transform: scale(.96); }
  48%, 84% { opacity: 1; transform: scale(1); border-color: var(--accent); background: var(--accent-soft); }
  100% { opacity: .58; transform: scale(.96); }
}
@keyframes briefReveal {
  0%, 30% { opacity: .42; transform: translateY(8px); }
  50%, 84% { opacity: 1; transform: translateY(0); border-color: var(--accent); }
  100% { opacity: .42; transform: translateY(8px); }
}
@keyframes flagIssue {
  0%, 40%, 100% { opacity: .48; transform: translateY(4px); }
  56%, 74% { opacity: 1; transform: translateY(0); }
}
@keyframes checkRun {
  0%, 22% { opacity: .56; transform: translateX(-8px); }
  42%, 76% { opacity: 1; transform: translateX(0); border-color: var(--accent); background: var(--accent-soft); color: var(--ink); }
  100% { opacity: .56; transform: translateX(-8px); }
}
@keyframes decisionGlow {
  0%, 46%, 100% { background: var(--surface); transform: translateY(0); }
  62%, 82% { background: var(--accent-soft); border-color: var(--accent); transform: translateY(-2px); }
}
@keyframes publishedJoin {
  0%, 100% { box-shadow: 0 14px 32px rgba(89,204,196,.12); }
  48%, 82% { box-shadow: 0 0 0 10px rgba(148,217,90,.16), 0 18px 36px rgba(89,204,196,.18); }
}
@keyframes ringSettle {
  0%, 32% { opacity: .22; transform: translate(-50%, -50%) scale(.9); }
  56%, 86% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
  100% { opacity: .22; transform: translate(-50%, -50%) scale(.9); }
}
@keyframes nodeJoin {
  0%, 24% { opacity: .42; transform: scale(.94); }
  52%, 86% { opacity: 1; transform: scale(1); border-color: var(--accent); }
  100% { opacity: .42; transform: scale(.94); }
}
@keyframes pageSignal {
  0%, 100% { opacity: .58; transform: translateX(0); }
  36%, 72% { opacity: 1; transform: translateX(6px); border-color: var(--accent); }
}
@keyframes metricFlow {
  0%, 26% { opacity: .52; transform: translateY(8px); }
  48%, 82% { opacity: 1; transform: translateY(0); border-color: var(--accent); background: var(--accent-soft); }
  100% { opacity: .52; transform: translateY(8px); }
}
@keyframes recommendationReveal {
  0%, 36% { opacity: .38; transform: translateX(10px); }
  58%, 86% { opacity: 1; transform: translateX(0); border-color: var(--accent); }
  100% { opacity: .38; transform: translateX(10px); }
}
@keyframes radixReturn {
  0%, 58% { opacity: .66; transform: translateY(6px); }
  72%, 90% { opacity: 1; transform: translateY(0); }
  100% { opacity: .66; transform: translateY(6px); }
}
@keyframes revealUp {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .45; transform: scale(.84); }
}
@keyframes nodePop {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.18); opacity: .85; }
}
@keyframes verifyBlink {
  0%, 100% { opacity: 1; transform: scale(1); }
  25% { opacity: .42; transform: scale(.96); }
  50% { opacity: 1; transform: scale(1.04); }
  75% { opacity: .48; transform: scale(.98); }
}
@keyframes seedRing {
  0% { opacity: .76; transform: scale(.96); }
  70% { opacity: .22; transform: scale(1.14); }
  100% { opacity: 0; transform: scale(1.18); }
}
@keyframes flow {
  from { stroke-dashoffset: 0; }
  to { stroke-dashoffset: -28; }
}
@keyframes feedbackPacket {
  0% { bottom: 9px; opacity: 0; transform: scale(.7); }
  14% { opacity: 1; transform: scale(1); }
  78% { opacity: 1; }
  100% { bottom: calc(100% - 10px); opacity: 0; transform: scale(.85); }
}
@keyframes logoDrift {
  from { transform: translateX(0); }
  to { transform: translateX(-33.333%); }
}

@media (prefers-reduced-motion: reduce) {
  .logo-marquee-track { animation: none; }
  .workflow-animation *,
  .workflow-animation *::before,
  .workflow-animation *::after {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .published-node { transform: translate(-50%, -50%) !important; }
  .topical-ring { transform: translate(-50%, -50%) !important; }
  .cluster-label { transform: translateX(-50%) !important; }
  .graph-link,
  .seed-lines path {
    stroke-dashoffset: 0 !important;
  }
}

@media (max-width: 1100px) {
  .home-animation-section .container { width: min(100% - 40px, 1040px); }
  .site-nav { column-gap: 16px; }
  .hero-viz-grid { grid-template-columns: 1fr; }
  .viz-column { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .viz-label { grid-column: 1 / -1; }
  .surface-column .viz-label { text-align: left; }
  .viz-graph svg { height: 310px; min-height: 0; }
  .process-flow { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .process-step:nth-child(2n) { border-right: 0; }
  .process-step:nth-child(n + 3) { border-top: 1px solid var(--line); }
  .agent-loop { grid-template-columns: 1fr; }
  .anim-grid-3,
  .adjudicator-grid,
  .seed-distribution-grid { grid-template-columns: 1fr; }
  .anim-panel { min-height: 220px; }
  .link-map-stage { min-height: 560px; }
  .cms-orchestrator-stage { min-height: 760px; }
  .cms-input-stack,
  .cms-output-stack {
    left: 20px;
    right: 20px;
    width: auto;
    bottom: auto;
  }
  .cms-input-stack { top: 28px; }
  .cms-output-stack { top: auto; bottom: 28px; }
  .cms-hub { top: 50%; }
  .cms-orchestrator-lines { display: none; }
  .cms-agent-1 { left: 10%; top: 320px; }
  .cms-agent-2 { right: 10%; top: 320px; }
  .cms-agent-3 { right: 8%; top: 390px; }
  .cms-agent-4 { right: 10%; top: 462px; bottom: auto; }
  .cms-agent-5 { left: 8%; top: 462px; }
  .cms-agent-6 { left: 10%; top: 390px; }
  .page-scan-card {
    left: 20px;
    right: 20px;
    top: 34px;
    bottom: auto;
    width: auto;
    height: 270px;
  }
  .related-page-stack {
    left: 20px;
    right: 20px;
    top: 330px;
    bottom: 46px;
    width: auto;
  }
  .internal-link-lines { display: none; }
  .cols-4, .stat-grid, .footer-grid, .pricing-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pricing-card.featured { transform: none; }
}
@media (max-width: 760px) {
  .container, .narrow { width: min(100% - 28px, 1320px); }
  .nav-wrap {
    min-height: auto;
    padding: 14px 0;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
  }
  .nav-toggle-button { display: inline-flex; }
  .site-nav {
    display: none;
    grid-column: 1 / -1;
    width: 100%;
    margin-left: 0;
    padding-top: 14px;
    gap: 6px;
    justify-content: stretch;
  }
  .nav-toggle:checked ~ .site-nav { display: grid; }
  .nav-group { padding: 0; }
  .site-nav a:not(.nav-cta),
  .site-nav button {
    width: 100%;
    padding: 8px 0;
    text-align: left;
  }
  .has-menu > a,
  .has-menu > button {
    justify-content: space-between;
  }
  .nav-menu,
  .nav-menu-wide {
    position: static;
    display: grid !important;
    min-width: 0;
    padding: 0 0 8px 12px;
    border: 0;
    border-left: 1px solid var(--line);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    transform: none;
  }
  .nav-menu a { padding: 7px 10px; }
  .nav-cta {
    width: fit-content;
    margin-top: 4px;
  }
  .home-hero { padding-top: 42px; }
  .gradient-ink, h1, .page-hero h1 {
    font-size: 42px;
    line-height: 1.12;
  }
  .lead { font-size: 1rem; }
  .home-animation-section { padding: 0 0 48px; }
  .home-animation-section .container { width: min(100% - 28px, 1320px); }
  .logo-marquee-section { padding: 28px 0 34px; }
  .logo-marquee-track { gap: 34px; }
  .hero-animation-frame { padding-bottom: 8px; }
  .hero-viz-grid {
    min-height: 0;
    max-height: none;
    padding: 12px;
    overflow: hidden;
  }
  .agent-column, .surface-column { display: none; }
  .viz-column { grid-template-columns: 1fr; }
  .viz-graph svg { height: 265px; min-height: 0; }
  .flow-status {
    position: static;
    transform: none;
    width: 100%;
    grid-template-columns: auto 1fr;
    border-radius: 12px;
    white-space: normal;
  }
  .flow-status small { grid-column: 1 / -1; }
  .hero-viz-footer {
    position: static;
    flex-direction: column;
    align-items: flex-start;
    border-radius: 0 0 12px 12px;
    gap: 8px;
  }
  .section, .cta-band { padding: 64px 0; }
  .workflow-animation { padding: 10px; }
  .pipeline-steps,
  .cluster-row { grid-template-columns: 1fr; }
  .keyword-field { gap: 7px; }
  .seed-stage { min-height: 500px; }
  .seed-lines,
  .topical-ring { display: none; }
  .published-node {
    top: 52%;
    width: 150px;
    font-size: .86rem;
  }
  .related-node {
    min-width: 92px;
    max-width: 118px;
    font-size: .74rem;
  }
  .node-1 { left: 7%; top: 20%; }
  .node-2 { left: 5%; top: 44%; }
  .node-3 { left: 9%; bottom: 18%; }
  .node-4 { right: 6%; top: 22%; }
  .node-5 { right: 5%; bottom: 22%; }
  .link-map-stage { min-height: 620px; padding: 12px; }
  .cms-orchestrator-stage { min-height: 820px; padding: 12px; }
  .cms-input-stack,
  .cms-output-stack {
    left: 12px;
    right: 12px;
  }
  .cms-input-stack { top: 18px; }
  .cms-output-stack { bottom: 18px; }
  .cms-hub {
    width: 124px;
    height: 124px;
  }
  .cms-hub span { font-size: 1.05rem; }
  .cms-agent-chip {
    min-width: 96px;
    max-width: 112px;
    font-size: .68rem;
  }
  .cms-agent-1 { left: 6%; top: 330px; }
  .cms-agent-2 { right: 6%; top: 330px; }
  .cms-agent-3 { right: 4%; top: 398px; }
  .cms-agent-4 { right: 6%; top: 466px; bottom: auto; }
  .cms-agent-5 { left: 4%; top: 466px; }
  .cms-agent-6 { left: 6%; top: 398px; }
  .page-scan-card {
    left: 12px;
    right: 12px;
    top: 18px;
    height: 282px;
  }
  .related-page-stack {
    left: 12px;
    right: 12px;
    top: 328px;
    bottom: 58px;
  }
  .term-highlight { font-size: .68rem; }
  .connected-map-label {
    bottom: 22px;
    width: 100%;
    text-align: center;
  }
  .social-card {
    grid-template-columns: 44px minmax(0, 1fr);
  }
  .social-card i {
    width: 44px;
    height: 38px;
  }
  .section-head {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 34px;
  }
  .section-head .eyebrow,
  .section-head h2,
  .section-head h2:last-child,
  .section-head p {
    grid-column: 1;
  }
  .section-head h2, .split h2, .cta-band h2 { font-size: 36px; line-height: 1.12; }
  .card, .stat-card, .form-card { padding: 24px; }
  .stat-card strong { font-size: 42px; }
  .process-flow { grid-template-columns: 1fr; }
  .process-step,
  .process-step:nth-child(2n) {
    min-height: 0;
    border-right: 0;
    border-top: 1px solid var(--line);
  }
  .process-step:first-child { border-top: 0; }
  .process-step::after { top: 72px; }
  .agent-loop-core { padding: 28px; }
  .agent-row {
    grid-template-columns: 34px 38px minmax(0, 1fr);
    gap: 12px;
    padding: 16px;
  }
  .module-row {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 12px;
    padding: 20px;
  }
  .module-row .card-icon { grid-column: 1; }
  .module-row > div { grid-column: 1 / -1; }
  .proof-strip { grid-template-columns: 1fr; }
  .proof-item,
  .proof-item + .proof-item {
    padding: 22px 0;
    border-right: 0;
    border-top: 1px solid var(--line);
  }
  .proof-item:first-child { border-top: 0; }
  .cols-2, .cols-3, .cols-4, .stat-grid, .footer-grid, .split, .apply-layout, .pricing-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .footer-bottom a { margin: 0 16px 0 0; }
}