:root {
  --ink: #061943;
  --navy: #08245b;
  --blue: #1268e8;
  --teal: #079a9b;
  --teal-soft: #e7f8f6;
  --coral: #ff654f;
  --coral-soft: #fff0ec;
  --sky: #eff8ff;
  --paper: #ffffff;
  --soft: #f8fbfe;
  --line: #d8e4f0;
  --muted: #526681;
  --shadow: 0 22px 60px rgba(6, 25, 67, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

img {
  display: block;
  max-width: 100%;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(190px, 1fr) auto minmax(160px, 1fr);
  gap: 24px;
  align-items: center;
  min-height: 74px;
  padding: 12px clamp(22px, 4vw, 54px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  justify-self: start;
  color: var(--ink);
  font-size: 1.45rem;
  font-weight: 800;
}

.brand img {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  box-shadow: 0 8px 22px rgba(6, 25, 67, 0.08);
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 28px;
  font-weight: 700;
}

.nav-links a {
  border-bottom: 2px solid transparent;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a[aria-current="page"] {
  border-color: var(--teal);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown summary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  list-style: none;
  border-bottom: 2px solid transparent;
}

.nav-dropdown summary::-webkit-details-marker {
  display: none;
}

.nav-dropdown summary::after {
  content: "⌄";
  color: var(--muted);
  font-size: 0.8rem;
}

.nav-dropdown[open] summary,
.nav-dropdown summary:hover,
.nav-dropdown summary:focus-visible {
  border-color: var(--teal);
}

.nav-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  z-index: 40;
  display: grid;
  min-width: 190px;
  padding: 8px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 18px 42px rgba(6, 25, 67, 0.14);
  transform: translateX(-50%);
}

.nav-menu a {
  padding: 10px 12px;
  border: 0;
  border-radius: 8px;
}

.nav-menu a:hover,
.nav-menu a:focus-visible,
.nav-menu a[aria-current="page"] {
  background: var(--soft);
  border: 0;
}

.nav-button {
  justify-self: end;
  min-height: 44px;
  padding: 10px 18px;
  color: var(--paper);
  background: var(--blue);
  border-radius: 8px;
  font-weight: 800;
  box-shadow: 0 12px 24px rgba(18, 104, 232, 0.22);
}

.hero {
  display: grid;
  grid-template-columns: minmax(360px, 0.68fr) minmax(700px, 1.32fr);
  gap: clamp(34px, 4vw, 68px);
  align-items: center;
  min-height: min(800px, calc(100vh - 74px));
  padding: clamp(34px, 4.4vw, 58px) clamp(24px, 5vw, 60px) clamp(36px, 4vw, 54px);
  background:
    linear-gradient(90deg, rgba(239, 248, 255, 0.9), rgba(255, 255, 255, 0.92)),
    repeating-linear-gradient(90deg, rgba(8, 36, 91, 0.05) 0 1px, transparent 1px 64px),
    repeating-linear-gradient(0deg, rgba(8, 36, 91, 0.04) 0 1px, transparent 1px 64px);
}

.pill,
.eyebrow {
  display: inline-flex;
  margin: 0 0 20px;
  align-items: center;
  gap: 8px;
  color: var(--teal);
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
}

.pill {
  padding: 8px 14px;
  background: rgba(7, 154, 155, 0.08);
  border: 1px solid rgba(7, 154, 155, 0.22);
  border-radius: 999px;
  text-transform: none;
}

.pill::before {
  content: "✦";
  color: var(--teal);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 680px;
  margin-bottom: 22px;
  color: var(--ink);
  font-size: clamp(3rem, 4.7vw, 5.2rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  color: var(--ink);
  font-size: clamp(2rem, 3.35vw, 3.45rem);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 1.2rem;
  line-height: 1.2;
}

.intro {
  max-width: 620px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: clamp(1.06rem, 1.35vw, 1.24rem);
}

.hero-actions,
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 800;
}

.button.primary {
  color: var(--paper);
  background: var(--blue);
  border-color: var(--blue);
  box-shadow: 0 16px 32px rgba(18, 104, 232, 0.22);
}

.button.secondary {
  color: var(--ink);
  background: var(--paper);
}

.journey-link {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin: 0 clamp(18px, 6vw, 72px) 72px;
  padding: clamp(24px, 4vw, 42px);
  background: linear-gradient(135deg, rgba(239, 248, 255, 0.94), rgba(255, 255, 255, 0.98));
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(6, 25, 67, 0.08);
}

.journey-link h2 {
  max-width: 760px;
  margin: 0 0 12px;
  font-size: clamp(1.6rem, 3.2vw, 2.6rem);
}

.journey-link p:not(.eyebrow) {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(240px, 1.4fr) repeat(4, minmax(120px, 0.5fr));
  gap: clamp(24px, 4vw, 54px);
  padding: 44px clamp(24px, 5vw, 60px);
  border-top: 1px solid var(--line);
}

.footer-brand {
  display: grid;
  grid-template-columns: 54px minmax(0, 360px);
  gap: 18px;
  align-items: center;
}

.footer-brand img {
  width: 54px;
  height: 54px;
  border-radius: 12px;
  box-shadow: 0 12px 24px rgba(6, 25, 67, 0.08);
}

.footer-brand p {
  margin: 0;
  color: var(--ink);
  font-weight: 800;
}

.site-footer nav {
  display: grid;
  align-content: start;
  gap: 8px;
}

.site-footer strong {
  margin-bottom: 4px;
  color: var(--ink);
  font-size: 0.82rem;
}

.site-footer a,
.site-footer span {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.cookie-banner {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto;
  gap: 18px;
  align-items: center;
  width: min(760px, calc(100% - 44px));
  padding: 18px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 22px 60px rgba(6, 25, 67, 0.18);
}

.cookie-banner strong {
  color: var(--ink);
  font-size: 1.02rem;
}

.cookie-banner p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.cookie-actions .button {
  min-height: 44px;
  padding: 0 16px;
  font-size: 0.9rem;
}

.trust-row {
  margin-top: 48px;
  color: var(--ink);
}

.mobile-agent-summary {
  display: none;
}

.trust-row span {
  min-width: 160px;
  padding-left: 30px;
  position: relative;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
}

.trust-row span::before {
  position: absolute;
  left: 0;
  top: 1px;
  content: "✓";
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  color: var(--paper);
  background: var(--teal);
  border-radius: 50%;
  font-size: 0.75rem;
}

.hero-visual {
  position: relative;
  display: grid;
  gap: 0;
  min-width: 0;
  min-height: 560px;
  align-content: start;
  padding: 0;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.agent-workspace::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    radial-gradient(circle at 22% 16%, rgba(18, 104, 232, 0.08), transparent 18%),
    radial-gradient(circle at 88% 62%, rgba(7, 154, 155, 0.08), transparent 22%);
}

.hero-request,
.agent-assignment,
.workspace-lower,
.audit-strip {
  position: relative;
  z-index: 1;
}

.hero-request {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr) minmax(190px, 0.45fr);
  gap: 24px;
  align-items: center;
  padding: clamp(22px, 2.6vw, 30px) clamp(24px, 3.2vw, 42px);
  border-bottom: 1px solid var(--line);
}

.request-icon {
  position: relative;
  display: grid;
  width: 100px;
  height: 104px;
  place-items: center;
  justify-self: center;
  background: linear-gradient(145deg, rgba(239, 248, 255, 0.96), rgba(255, 255, 255, 0.98));
  border: 1px solid rgba(18, 104, 232, 0.2);
  border-radius: 14px;
  box-shadow: 0 18px 36px rgba(6, 25, 67, 0.08);
}

.request-icon span {
  position: relative;
  width: 40px;
  height: 52px;
  border: 3px solid var(--blue);
  border-radius: 5px;
}

.request-icon span::before,
.request-icon span::after {
  position: absolute;
  left: 9px;
  content: "";
  width: 18px;
  height: 3px;
  background: var(--blue);
  border-radius: 999px;
}

.request-icon span::before {
  top: 15px;
}

.request-icon span::after {
  top: 28px;
}

.request-icon b {
  position: absolute;
  top: 9px;
  right: 8px;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  color: var(--paper);
  background: linear-gradient(135deg, var(--blue), #4d7df2);
  border-radius: 50%;
  box-shadow: 0 10px 20px rgba(18, 104, 232, 0.22);
  font-size: 0.82rem;
}

.request-copy span,
.workspace-label,
.work-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.request-copy strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
  font-size: clamp(1.25rem, 1.9vw, 1.6rem);
  line-height: 1.16;
}

.request-copy p {
  max-width: 470px;
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 1rem;
}

.request-copy small,
.work-card small,
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 9px;
  color: var(--ink);
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
}

.request-meta {
  display: grid;
  gap: 24px;
  margin: 0;
  padding-left: 28px;
  border-left: 1px solid var(--line);
}

.request-meta div {
  display: grid;
  gap: 5px;
}

.request-meta dt {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
}

.request-meta dd {
  margin: 0;
  color: var(--ink);
  font-weight: 700;
}

.request-meta dd span {
  display: inline-flex;
  padding: 5px 9px;
  color: #ad6400;
  background: #fff4d8;
  border: 1px solid #ffd789;
  border-radius: 999px;
  font-size: 0.82rem;
}

.agent-assignment {
  padding: 24px clamp(24px, 3.2vw, 42px) 18px;
}

.workspace-label {
  margin-bottom: 16px;
}

.hero-agent-stage {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.hero-agent {
  display: flex;
  gap: 12px;
  align-items: center;
  min-height: 128px;
  padding: 16px;
  text-align: left;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 12px 26px rgba(6, 25, 67, 0.06);
}

.bot-asset {
  display: block;
  width: 100%;
  height: auto;
}

.hero-bot {
  flex: 0 0 auto;
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.hero-agent strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
  font-size: 1.08rem;
}

.hero-agent p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 0.9rem;
}

.status-pill::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
}

.status-pill.complete {
  color: #05766f;
  background: var(--teal-soft);
  border-color: rgba(7, 154, 155, 0.18);
}

.status-pill.complete::before {
  content: "✓";
  display: grid;
  width: 16px;
  height: 16px;
  place-items: center;
  color: var(--paper);
  background: var(--teal);
  font-size: 0.7rem;
}

.status-pill.progress {
  color: var(--blue);
  background: #edf5ff;
  border-color: rgba(18, 104, 232, 0.18);
}

.status-pill.progress::before {
  border: 2px solid var(--blue);
  background: transparent;
}

.status-pill.pending {
  color: var(--muted);
  background: #f3f6fa;
}

.status-pill.pending::before {
  border: 2px solid var(--muted);
  background: transparent;
}

.workspace-lower {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(360px, 1fr);
  gap: 20px;
  align-items: stretch;
  padding: 16px clamp(24px, 3.2vw, 42px) 20px;
}

.work-card {
  padding: 20px 22px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 14px 34px rgba(6, 25, 67, 0.06);
}

.work-card span {
  color: var(--teal);
}

.work-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 1.25rem;
  line-height: 1.16;
}

.work-card p {
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 0.94rem;
}

.output-card small {
  color: #05766f;
  background: var(--teal-soft);
  border-color: rgba(7, 154, 155, 0.18);
}

.hero-control-strip {
  position: relative;
  display: flex;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  align-items: start;
  justify-content: space-between;
  padding: 24px 20px 16px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 14px 34px rgba(6, 25, 67, 0.06);
}

.hero-control-strip::before {
  position: absolute;
  left: 52px;
  right: 52px;
  top: 44px;
  content: "";
  height: 2px;
  background: linear-gradient(90deg, rgba(7, 154, 155, 0.4), rgba(18, 104, 232, 0.4), rgba(216, 228, 240, 0.9));
}

.hero-control-strip span {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(120px, 24%);
  justify-items: center;
  gap: 10px;
  color: var(--ink);
  background: transparent;
  border: 0;
  font-size: 0.86rem;
  font-weight: 900;
  text-align: center;
}

.hero-control-strip span::before {
  content: "4";
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--muted);
  background: #f4f7fb;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-weight: 900;
}

.hero-control-strip span:nth-child(1)::before,
.hero-control-strip span:nth-child(2)::before {
  content: "✓";
  color: var(--paper);
  background: var(--teal);
  border-color: var(--teal);
}

.hero-control-strip span:nth-child(3)::before {
  content: "3";
  color: var(--paper);
  background: var(--blue);
  border-color: var(--blue);
  box-shadow: 0 0 0 6px rgba(18, 104, 232, 0.14);
}

.audit-strip {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  margin: 6px clamp(24px, 3.2vw, 42px) clamp(22px, 2.8vw, 30px);
  padding: 14px 20px;
  background: linear-gradient(135deg, rgba(239, 248, 255, 0.96), rgba(255, 255, 255, 0.98));
  border: 1px solid rgba(18, 104, 232, 0.18);
  border-radius: 14px;
}

.audit-strip > span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--paper);
  background: linear-gradient(135deg, var(--blue), var(--teal));
  border-radius: 50%;
  font-weight: 900;
}

.audit-strip strong {
  color: var(--ink);
}

.audit-strip p {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.audit-strip a {
  color: var(--blue);
  font-weight: 900;
}

.audit-strip a::after {
  content: " →";
}

.scenario {
  padding: clamp(52px, 6vw, 86px) clamp(24px, 5vw, 60px);
  background:
    linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.scenario-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.scenario-header {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.55fr);
  gap: clamp(24px, 4vw, 52px);
  align-items: end;
  margin-bottom: 24px;
}

.scenario h2 {
  max-width: 760px;
  margin-bottom: 0;
  font-size: clamp(2rem, 3.4vw, 3.45rem);
}

.scenario-case {
  padding: 22px 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 18px 42px rgba(6, 25, 67, 0.07);
}

.scenario-case span {
  display: block;
  margin-bottom: 8px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.scenario-case strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 1.18rem;
  line-height: 1.2;
}

.scenario-case p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.scenario-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.scenario-flow article {
  min-height: 160px;
  padding: 20px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 12px;
}

.scenario-flow span {
  display: grid;
  width: 34px;
  height: 34px;
  margin-bottom: 22px;
  place-items: center;
  color: var(--paper);
  background: var(--blue);
  border-radius: 50%;
  font-size: 0.86rem;
  font-weight: 900;
}

.scenario-flow article:nth-child(2) span {
  background: var(--teal);
}

.scenario-flow article:nth-child(3) span {
  background: var(--navy);
}

.scenario-flow article:nth-child(4) span {
  background: var(--coral);
}

.scenario-flow strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
}

.scenario-flow p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.scenario-note {
  max-width: 760px;
  margin: 22px 0 0;
  color: var(--muted);
  font-weight: 700;
}

.scenario-statuses {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.scenario-statuses span {
  display: flex;
  min-height: 50px;
  align-items: center;
  padding: 12px 14px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 800;
}

.section {
  padding: clamp(66px, 8vw, 112px) clamp(24px, 5vw, 60px);
}

.section.light {
  background: var(--paper);
}

.section-heading {
  max-width: 920px;
  margin: 0 auto 36px;
  text-align: center;
}

.section-heading > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.1rem;
}

.platform-cards,
.anatomy-grid,
.capability-flow {
  display: grid;
  width: min(1180px, 100%);
  margin: 0 auto;
  gap: 20px;
}

.platform-cards {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.platform-cards article,
.anatomy-grid article,
.capability-flow article {
  padding: 28px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 14px 34px rgba(6, 25, 67, 0.06);
}

.platform-cards article {
  min-height: 260px;
}

.platform-icon {
  display: grid;
  width: 70px;
  height: 70px;
  margin-bottom: 24px;
  place-items: center;
  color: var(--teal);
  background: var(--teal-soft);
  border-radius: 18px;
  font-size: 2rem;
  font-weight: 900;
}

.workflow-icon {
  color: var(--teal);
  background: var(--teal-soft);
}

.context-icon {
  color: var(--blue);
  background: #eaf3ff;
}

.control-icon {
  color: var(--coral);
  background: var(--coral-soft);
}

.platform-cards p,
.anatomy-grid p,
.governance-panel p {
  color: var(--muted);
}

.platform-cards ul {
  display: grid;
  gap: 9px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.platform-cards li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
  font-size: 0.92rem;
}

.platform-cards li::before {
  position: absolute;
  left: 0;
  top: 0.1em;
  content: "✓";
  display: grid;
  width: 16px;
  height: 16px;
  place-items: center;
  color: var(--paper);
  background: var(--teal);
  border-radius: 50%;
  font-size: 0.62rem;
  font-weight: 900;
}

.platform-cards article:nth-child(2) li::before {
  background: var(--blue);
}

.platform-cards article:nth-child(3) li::before {
  background: var(--coral);
}

.equipped {
  background:
    linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.equipped-board {
  display: grid;
  grid-template-columns: minmax(220px, 0.82fr) minmax(320px, 1.1fr) minmax(220px, 0.82fr);
  grid-template-areas:
    "knowledge core tools"
    "workflow core outputs"
    "ring ring ring";
  gap: 16px;
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: clamp(18px, 3vw, 28px);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.equip-card,
.agent-core,
.governance-ring {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--paper);
  box-shadow: 0 14px 34px rgba(6, 25, 67, 0.06);
}

.equip-card {
  min-height: 160px;
  padding: 22px;
}

.equip-card:nth-child(1) {
  grid-area: knowledge;
}

.equip-card:nth-child(2) {
  grid-area: tools;
}

.equip-card:nth-child(4) {
  grid-area: workflow;
}

.equip-card:nth-child(5) {
  grid-area: outputs;
}

.equip-card span {
  display: grid;
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  place-items: center;
  color: var(--paper);
  background: var(--blue);
  border-radius: 50%;
  font-size: 0.86rem;
  font-weight: 900;
}

.equip-card:nth-child(2) span {
  background: var(--teal);
}

.equip-card:nth-child(4) span {
  background: var(--navy);
}

.equip-card:nth-child(5) span {
  background: var(--coral);
}

.equip-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.agent-core {
  grid-area: core;
  display: grid;
  align-content: center;
  justify-items: center;
  min-height: 340px;
  padding: 28px;
  text-align: center;
  border-color: rgba(18, 104, 232, 0.38);
  box-shadow: 0 20px 50px rgba(18, 104, 232, 0.12);
}

.core-bot {
  width: 96px;
  height: 96px;
  object-fit: contain;
  margin-bottom: 16px;
}

.agent-core > p {
  margin-bottom: 4px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.agent-core h3 {
  margin-bottom: 20px;
  font-size: 1.7rem;
}

.agent-core dl {
  display: grid;
  gap: 10px;
  width: 100%;
  margin: 0;
  text-align: left;
}

.agent-core dl div {
  padding: 13px 14px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 12px;
}

.agent-core dt {
  margin-bottom: 3px;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.agent-core dd {
  margin: 0;
  color: var(--ink);
  font-weight: 800;
}

.governance-ring {
  grid-area: ring;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
}

.governance-ring span {
  display: grid;
  min-height: 56px;
  place-items: center;
  padding: 12px;
  color: var(--ink);
  border-right: 1px solid var(--line);
  font-size: 0.9rem;
  font-weight: 900;
  text-align: center;
}

.governance-ring span:last-child {
  border-right: 0;
}

.anatomy {
  background: var(--sky);
}

.anatomy-copy {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}

.anatomy-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.1rem;
}

.anatomy-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.anatomy-grid article {
  min-height: 230px;
}

.anatomy-grid article:nth-child(1) {
  border-top: 5px solid var(--blue);
}

.anatomy-grid article:nth-child(2) {
  border-top: 5px solid var(--teal);
}

.anatomy-grid article:nth-child(3) {
  border-top: 5px solid #8ebff5;
}

.anatomy-grid article:nth-child(4) {
  border-top: 5px solid var(--coral);
}

.capabilities {
  background:
    linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.capability-flow {
  position: relative;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px 22px;
}

.capability-flow::before {
  position: absolute;
  left: 8%;
  right: 8%;
  top: 50%;
  content: "";
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(18, 104, 232, 0.28), transparent);
  pointer-events: none;
}

.capability-flow article {
  position: relative;
  min-height: 172px;
  padding: 24px 24px 24px 88px;
  overflow: hidden;
}

.capability-flow article::before {
  position: absolute;
  left: 24px;
  top: 24px;
  content: "";
  width: 44px;
  height: 44px;
  background: var(--teal-soft);
  border-radius: 14px;
}

.capability-flow article:nth-child(2)::before,
.capability-flow article:nth-child(5)::before {
  background: #eaf3ff;
}

.capability-flow article:nth-child(3)::before,
.capability-flow article:nth-child(6)::before {
  background: var(--coral-soft);
}

.capability-flow article::after {
  position: absolute;
  left: 38px;
  top: 36px;
  color: var(--teal);
  font-size: 1.2rem;
  font-weight: 900;
}

.capability-flow article:nth-child(1)::after {
  content: "↘";
}

.capability-flow article:nth-child(2)::after {
  content: "◌";
  color: var(--blue);
}

.capability-flow article:nth-child(3)::after {
  content: "⌕";
  color: var(--coral);
}

.capability-flow article:nth-child(4)::after {
  content: "▣";
}

.capability-flow article:nth-child(5)::after {
  content: "✎";
  color: var(--blue);
}

.capability-flow article:nth-child(6)::after {
  content: "→";
  color: var(--coral);
}

.capability-flow span {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 900;
}

.capability-flow h3 {
  margin-bottom: 8px;
}

.capability-flow p {
  margin-bottom: 0;
}

.examples {
  position: relative;
  overflow: hidden;
  scroll-margin-top: 88px;
  background:
    radial-gradient(circle at 14% 58%, rgba(7, 154, 155, 0.1), transparent 22%),
    radial-gradient(circle at 82% 46%, rgba(18, 104, 232, 0.08), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #f2f9ff 100%);
  padding-top: clamp(42px, 5vw, 70px);
  padding-bottom: clamp(44px, 5vw, 70px);
}

.examples-heading {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto 30px;
  text-align: center;
}

.examples-heading h2 {
  margin-bottom: 12px;
  font-size: clamp(2rem, 3.35vw, 3.45rem);
}

.examples-heading h2 span {
  display: block;
  color: transparent;
  background: linear-gradient(90deg, var(--blue), #6d4df2);
  background-clip: text;
}

.examples-heading p {
  max-width: 760px;
  margin: 0 auto;
  color: var(--muted);
  font-size: clamp(0.98rem, 1.25vw, 1.12rem);
}

.examples-heading strong {
  color: #3440d9;
}

.agent-flowline {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  width: min(1180px, 100%);
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(6, 25, 67, 0.08);
}

.flow-agent {
  position: relative;
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 14px;
  align-items: center;
  min-height: 150px;
  padding: 22px;
  border-right: 1px solid var(--line);
}

.flow-agent:last-child {
  border-right: 0;
}

.flow-agent:not(:last-child)::after {
  position: absolute;
  right: -10px;
  top: 50%;
  z-index: 2;
  content: "→";
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  color: var(--blue);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 0.8rem;
  font-weight: 900;
  transform: translateY(-50%);
}

.flow-agent span {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--agent-dark);
  font-size: 0.76rem;
  font-weight: 900;
}

.flow-agent h3 {
  margin-bottom: 6px;
  font-size: 1.05rem;
}

.flow-agent p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.35;
}

.role-tile {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  color: var(--agent-dark);
  background: var(--agent-wash);
  border: 1px solid rgba(216, 228, 240, 0.9);
  border-radius: 14px;
  font-size: 0.78rem;
  font-weight: 900;
  box-shadow: 0 12px 24px rgba(6, 25, 67, 0.06);
}

.tile-bot {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.agent-mini {
  position: relative;
  display: grid;
  width: 64px;
  height: 58px;
  place-items: center;
  background: linear-gradient(180deg, var(--agent-soft), var(--agent-main));
  border-radius: 22px 22px 18px 18px;
  box-shadow: 0 14px 28px rgba(6, 25, 67, 0.1);
}

.agent-mini::before {
  position: absolute;
  left: 50%;
  top: -14px;
  content: "";
  width: 3px;
  height: 17px;
  background: var(--agent-dark);
  border-radius: 999px;
  transform: translateX(-50%);
}

.agent-mini::after {
  position: absolute;
  left: 50%;
  top: -19px;
  content: "";
  width: 10px;
  height: 10px;
  background: var(--agent-dark);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.82);
  transform: translateX(-50%);
}

.bot-face {
  position: relative;
  display: block;
  width: 42px;
  height: 28px;
  background: var(--paper);
  border-radius: 13px;
  box-shadow: inset 0 0 0 1px rgba(6, 25, 67, 0.05), 0 10px 20px rgba(6, 25, 67, 0.08);
}

.bot-face::after {
  position: absolute;
  bottom: 7px;
  left: 50%;
  content: "";
  width: 13px;
  height: 5px;
  border-bottom: 2px solid var(--teal);
  border-radius: 0 0 999px 999px;
  transform: translateX(-50%);
}

.bot-face i {
  position: absolute;
  top: 9px;
  width: 8px;
  height: 5px;
  background: transparent;
  border-top: 3px solid var(--teal);
  border-radius: 999px 999px 0 0;
}

.bot-face i:first-child {
  left: 12px;
}

.bot-face i:nth-child(2) {
  right: 12px;
}

.flow-agent .bot-face i {
  border-color: var(--agent-dark);
}

.flow-agent .bot-face::after {
  border-color: var(--agent-dark);
}

.agent-strategy {
  --agent-main: #0ca8a5;
  --agent-soft: #bff3ee;
  --agent-dark: #087f83;
  --agent-wash: #e2f8f5;
}

.agent-coordination {
  --agent-main: #21b989;
  --agent-soft: #c8f4e6;
  --agent-dark: #08a36c;
  --agent-wash: #e7f9f0;
}

.agent-analysis {
  --agent-main: #1268e8;
  --agent-soft: #9fc8ff;
  --agent-dark: #1268e8;
  --agent-wash: #eaf3ff;
}

.agent-reviewer {
  --agent-main: #7657df;
  --agent-soft: #c9b3ff;
  --agent-dark: #7047d8;
  --agent-wash: #f0eaff;
}

.agent-output {
  --agent-main: #ff745f;
  --agent-soft: #ffd2c7;
  --agent-dark: #ff654f;
  --agent-wash: #fff0ec;
}

.agent-trust-strip {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  width: min(920px, 100%);
  margin: 30px auto 0;
  padding: 10px 18px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 16px 36px rgba(6, 25, 67, 0.08);
}

.agent-trust-strip div {
  display: grid;
  grid-template-columns: 38px 1fr;
  column-gap: 10px;
  align-items: center;
  min-height: 56px;
  padding: 0 18px;
  border-right: 1px solid var(--line);
}

.agent-trust-strip div:last-child {
  border-right: 0;
}

.agent-trust-strip span {
  grid-row: span 2;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--blue);
  background: #eaf3ff;
  border-radius: 50%;
  font-weight: 900;
}

.agent-trust-strip div:nth-child(2) span {
  color: #7047d8;
  background: #f0eaff;
}

.agent-trust-strip div:nth-child(3) span {
  color: var(--teal);
  background: var(--teal-soft);
}

.agent-trust-strip div:nth-child(4) span {
  color: #e84f83;
  background: #ffeaf2;
}

.agent-trust-strip strong {
  color: var(--ink);
  font-size: 0.86rem;
}

.agent-trust-strip p {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.governance {
  background: linear-gradient(90deg, var(--ink), #0c397a);
}

.governance-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(28px, 5vw, 60px);
  align-items: center;
  width: min(1180px, 100%);
  margin: 0 auto;
  color: var(--paper);
}

.governance-panel h2 {
  color: var(--paper);
}

.governance-panel p {
  color: #d8e8ff;
  font-size: 1.1rem;
}

.governance-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.governance-list span {
  min-height: 76px;
  display: flex;
  align-items: center;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  color: var(--paper);
  font-weight: 800;
}

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

  .nav-links {
    display: flex;
    justify-content: flex-start;
  }

  .section-nav-link {
    display: none;
  }

  .hero,
  .scenario-header,
  .governance-panel,
  .hero-request,
  .workspace-lower,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .request-meta {
    padding-left: 0;
    border-left: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .platform-cards,
  .anatomy-grid,
  .capability-flow,
  .scenario-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .scenario-case {
    max-width: 560px;
  }

  .agent-flowline {
    grid-template-columns: 1fr;
  }

  .equipped-board {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-areas:
      "core core"
      "knowledge tools"
      "workflow outputs"
      "ring ring";
  }

  .scenario-statuses,
  .agent-trust-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .agent-trust-strip div:nth-child(2) {
    border-right: 0;
  }

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

@media (max-width: 720px) {
  body {
    overflow-x: hidden;
    background: linear-gradient(180deg, #ffffff 0%, #f6fbff 42%, #ffffff 100%);
  }

  .site-header {
    position: static;
  }

  .nav-button {
    display: none;
  }

  .hero {
    display: block;
    min-height: 0;
    padding: 22px 28px 34px;
    background:
      radial-gradient(circle at 82% 12%, rgba(18, 104, 232, 0.08), transparent 26%),
      linear-gradient(180deg, #ffffff 0%, #f3faff 100%);
  }

  .pill,
  .eyebrow {
    margin-bottom: 14px;
    font-size: 0.78rem;
    letter-spacing: 0;
  }

  h1 {
    max-width: 560px;
    margin-bottom: 18px;
    font-size: clamp(2.25rem, 10.2vw, 3.25rem);
    line-height: 1.06;
  }

  h2 {
    font-size: clamp(2rem, 8.8vw, 3rem);
    line-height: 1.08;
  }

  h3 {
    font-size: 1.12rem;
  }

  .intro {
    margin-bottom: 22px;
    font-size: 1.02rem;
    line-height: 1.48;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 42px;
  }

  .button {
    width: 100%;
    min-height: 56px;
    padding: 13px 18px;
  }

  .hero-actions .button.secondary {
    justify-content: flex-start;
    width: auto;
    min-height: 0;
    padding: 0;
    color: var(--blue);
    background: transparent;
    border: 0;
    border-radius: 0;
    font-weight: 900;
  }

  .hero-actions .button.secondary::after {
    content: "→";
    margin-left: 10px;
    font-size: 1.25rem;
    line-height: 1;
  }

  .trust-row {
    display: none;
  }

  .hero-visual {
    display: none;
  }

  .mobile-agent-summary {
    display: grid;
    gap: 38px;
  }

  .mobile-agent-flow {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
  }

  .mobile-agent-flow::before {
    position: absolute;
    left: 11%;
    right: 11%;
    top: 32px;
    content: "";
    height: 3px;
    background: repeating-linear-gradient(90deg, rgba(18, 104, 232, 0.35) 0 5px, transparent 5px 11px);
  }

  .mobile-agent-flow div {
    position: relative;
    z-index: 1;
    display: grid;
    justify-items: center;
    gap: 10px;
    text-align: center;
  }

  .mobile-agent-flow span {
    display: grid;
    width: 64px;
    height: 64px;
    place-items: center;
    color: #7657df;
    background: #f0eaff;
    border-radius: 50%;
    font-size: 1.55rem;
    font-weight: 900;
    box-shadow: 0 18px 32px rgba(6, 25, 67, 0.08);
  }

  .mobile-agent-flow div:nth-child(2) span {
    color: var(--blue);
    background: #eaf3ff;
  }

  .mobile-agent-flow div:nth-child(3) span {
    color: var(--teal);
    background: var(--teal-soft);
  }

  .mobile-agent-flow div:nth-child(4) span {
    color: #7047d8;
    background: #f0eaff;
  }

  .mobile-agent-flow strong {
    color: var(--ink);
    font-size: 0.88rem;
    font-weight: 900;
  }

  .mobile-governance h2 {
    margin-bottom: 16px;
    font-size: 1.35rem;
    line-height: 1.15;
  }

  .mobile-governance-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .mobile-governance-grid article {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    min-height: 116px;
    padding: 14px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--line);
    border-radius: 10px;
    box-shadow: 0 12px 28px rgba(6, 25, 67, 0.05);
  }

  .mobile-governance-grid article > span {
    display: grid;
    width: 22px;
    height: 22px;
    margin-bottom: 2px;
    place-items: center;
    color: var(--teal);
    background: var(--teal-soft);
    border-radius: 50%;
    font-size: 0.72rem;
    font-weight: 900;
  }

  .mobile-governance-grid h3 {
    margin-bottom: 8px;
    font-size: 0.96rem;
    line-height: 1.2;
  }

  .mobile-governance-grid p {
    margin: 0;
    color: var(--muted);
    font-size: 0.8rem;
    line-height: 1.4;
  }

  .hero-agent-stage,
  .platform-cards,
  .equipped-board,
  .scenario-statuses,
  .agent-flowline,
  .anatomy-grid,
  .capability-flow,
  .scenario-flow,
  .agent-trust-strip,
  .governance-list {
    grid-template-columns: 1fr;
  }

  .hero-request {
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
  }

  .hero-request,
  .agent-assignment,
  .workspace-lower {
    padding-left: 16px;
    padding-right: 16px;
  }

  .request-icon {
    justify-self: start;
    width: 58px;
    height: 62px;
    border-radius: 12px;
  }

  .request-icon span {
    width: 26px;
    height: 34px;
    border-width: 2px;
  }

  .request-icon span::before,
  .request-icon span::after {
    left: 6px;
    width: 12px;
    height: 2px;
  }

  .request-icon span::before {
    top: 10px;
  }

  .request-icon span::after {
    top: 19px;
  }

  .request-icon b {
    top: 5px;
    right: 4px;
    width: 21px;
    height: 21px;
    font-size: 0.68rem;
  }

  .request-copy strong {
    font-size: 1.12rem;
  }

  .request-copy p {
    font-size: 0.93rem;
  }

  .request-copy small,
  .work-card small,
  .status-pill {
    font-size: 0.72rem;
  }

  .request-meta {
    grid-column: 1 / -1;
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 12px;
    background: var(--soft);
    border: 1px solid var(--line);
    border-radius: 12px;
  }

  .hero-agent-stage {
    gap: 12px;
  }

  .hero-agent {
    min-height: auto;
    padding: 14px;
  }

  .hero-agent strong {
    font-size: 1rem;
  }

  .hero-agent p {
    margin-bottom: 8px;
  }

  .hero-bot {
    width: 54px;
    height: 54px;
  }

  .workspace-lower {
    gap: 12px;
    padding-top: 0;
  }

  .work-card {
    padding: 16px;
  }

  .work-card strong {
    font-size: 1.08rem;
  }

  .hero-control-strip {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    padding: 16px;
  }

  .hero-control-strip::before {
    display: none;
  }

  .hero-control-strip span {
    width: 100%;
    min-height: 96px;
    align-content: start;
    justify-items: center;
    padding: 12px 8px;
    background: var(--soft);
    border: 1px solid var(--line);
    border-radius: 12px;
    font-size: 0.78rem;
    text-align: center;
  }

  .audit-strip {
    grid-template-columns: 44px minmax(0, 1fr);
    margin-left: 16px;
    margin-right: 16px;
  }

  .audit-strip a {
    grid-column: 2;
  }

  .section,
  .scenario,
  .examples {
    padding: 46px 28px;
  }

  .section-heading,
  .examples-heading,
  .anatomy-copy {
    margin-bottom: 24px;
    text-align: left;
  }

  .section-heading > p:not(.eyebrow),
  .examples-heading p,
  .anatomy-copy p:not(.eyebrow),
  .governance-panel p {
    font-size: 1rem;
  }

  .capabilities .section-heading h2 {
    font-size: clamp(1.85rem, 8vw, 2.55rem);
  }

  .capabilities .section-heading > p:not(.eyebrow) {
    line-height: 1.45;
  }

  .platform-cards,
  .anatomy-grid,
  .capability-flow {
    gap: 12px;
  }

  .platform-cards article,
  .anatomy-grid article,
  .capability-flow article,
  .scenario-flow article {
    min-height: 0;
    padding: 18px;
    border-radius: 14px;
  }

  .platform-icon {
    width: 54px;
    height: 54px;
    margin-bottom: 16px;
    border-radius: 14px;
    font-size: 1.45rem;
  }

  .platform-cards ul {
    gap: 8px;
    margin-top: 14px;
  }

  .scenario-header {
    margin-bottom: 16px;
  }

  .scenario h2 {
    font-size: clamp(2rem, 8.8vw, 3rem);
  }

  .scenario-case {
    padding: 18px;
    border-radius: 14px;
  }

  .scenario-flow {
    gap: 10px;
  }

  .scenario-flow article {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    column-gap: 12px;
    align-items: start;
  }

  .scenario-flow span {
    margin-bottom: 0;
  }

  .scenario-flow strong,
  .scenario-flow p {
    grid-column: 2;
  }

  .scenario-statuses {
    display: none;
  }

  .equipped-board {
    grid-template-areas:
      "core"
      "knowledge"
      "tools"
      "workflow"
      "outputs"
      "ring";
    gap: 12px;
    padding: 14px;
    border-radius: 18px;
  }

  .agent-core {
    min-height: 0;
    padding: 22px 18px;
  }

  .core-bot {
    width: 74px;
    height: 74px;
  }

  .agent-core h3 {
    margin-bottom: 14px;
    font-size: 1.35rem;
  }

  .equip-card {
    min-height: 0;
    padding: 18px;
  }

  .equip-card span {
    margin-bottom: 12px;
  }

  .governance-ring {
    grid-template-columns: 1fr;
  }

  .governance-ring span {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .governance-ring span:last-child {
    border-bottom: 0;
  }

  .capability-flow::before {
    display: none;
  }

  .capability-flow article {
    padding: 16px 16px 16px 64px;
  }

  .capability-flow article::before {
    left: 16px;
    top: 16px;
    width: 36px;
    height: 36px;
    border-radius: 12px;
  }

  .capability-flow article::after {
    left: 27px;
    top: 24px;
    font-size: 1rem;
  }

  .capability-flow span {
    margin-bottom: 5px;
    font-size: 0.7rem;
  }

  .capability-flow h3 {
    margin-bottom: 6px;
    font-size: 1.03rem;
  }

  .capability-flow p {
    font-size: 0.88rem;
    line-height: 1.38;
  }

  .examples-heading h2 span {
    display: inline;
  }

  .agent-flowline {
    border-radius: 16px;
  }

  .flow-agent {
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 12px;
    min-height: 0;
    padding: 16px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .role-tile {
    width: 48px;
    height: 48px;
    border-radius: 13px;
  }

  .tile-bot {
    width: 52px;
    height: 52px;
  }

  .flow-agent h3 {
    font-size: 1rem;
  }

  .flow-agent:last-child {
    border-bottom: 0;
  }

  .flow-agent:not(:last-child)::after {
    display: none;
  }

  .agent-trust-strip {
    gap: 0;
    padding: 0;
    overflow: hidden;
    border-radius: 16px;
  }

  .agent-trust-strip div,
  .agent-trust-strip div:nth-child(2),
  .agent-trust-strip div:nth-child(-n + 2) {
    min-height: 0;
    padding: 14px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .agent-trust-strip div:last-child {
    border-bottom: 0;
  }

  .governance {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .governance-panel {
    gap: 22px;
  }

  .governance-list {
    gap: 10px;
  }

  .governance-list span {
    min-height: 54px;
    padding: 14px 16px;
  }

  .journey-link {
    grid-template-columns: 1fr;
    margin: 0 28px 42px;
    padding: 22px;
    border-radius: 16px;
  }

  .journey-link h2 {
    font-size: clamp(1.75rem, 8vw, 2.45rem);
  }

  .footer-brand {
    grid-template-columns: 1fr;
  }

  .site-footer {
    padding-left: 18px;
    padding-right: 18px;
  }

  .cookie-banner {
    right: 12px;
    bottom: 12px;
    grid-template-columns: 1fr;
    width: calc(100% - 24px);
  }

  .cookie-actions {
    justify-content: stretch;
  }

  .cookie-actions .button {
    width: 100%;
  }

}
