:root {
  --bg: #f6f8fb;
  --surface: #ffffff;
  --surface-strong: #eef3f7;
  --ink: #101820;
  --muted: #596774;
  --subtle: #81909d;
  --line: #d8e0e8;
  --line-strong: #bac6d2;
  --accent: #087c70;
  --accent-soft: #dff4f1;
  --accent-strong: #045a52;
  --risk: #b75a1c;
  --risk-soft: #f8eadf;
  --steel: #243241;
  --steel-2: #172330;
  --ok: #087c42;
  --warn: #a86400;
  --shadow: 0 18px 42px rgba(16, 24, 32, 0.08);
  --radius: 8px;
  --max-width: 1240px;
  --font: Inter, "Avenir Next", "Segoe UI", Arial, sans-serif;
  --mono: "SFMono-Regular", "Cascadia Code", "Liberation Mono", Menlo, Consolas, monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font-family: var(--font);
  line-height: 1.55;
  background:
    linear-gradient(180deg, #fbfcfe 0%, var(--bg) 48%, #eef3f7 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(16, 24, 32, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 24, 32, 0.04) 1px, transparent 1px);
  background-size: 4rem 4rem;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.45), transparent 68%);
}

.site-shell {
  position: relative;
  width: min(calc(100% - 2rem), var(--max-width));
  min-width: 0;
  margin: 0 auto;
  padding: 1rem 0 4rem;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4.4rem;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(216, 224, 232, 0.9);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 28px rgba(16, 24, 32, 0.06);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  color: inherit;
  text-decoration: none;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 2.8rem;
  height: 2.8rem;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--steel);
  box-shadow: 0 8px 18px rgba(16, 24, 32, 0.12);
}

.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-copy {
  display: grid;
  gap: 0.05rem;
}

.brand-copy strong,
h1,
h2,
h3 {
  font-family: var(--font);
  letter-spacing: 0;
}

.brand-copy span:last-child {
  color: var(--muted);
  font-size: 0.9rem;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.2rem;
}

.nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.35rem;
  padding: 0 0.8rem;
  border-radius: var(--radius);
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
  transition: background-color 160ms ease, color 160ms ease;
}

.nav a:hover,
.nav a:focus-visible,
.nav a.is-active {
  color: var(--accent-strong);
  background: var(--accent-soft);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 0.28rem;
  padding: 0.55rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.nav-toggle span {
  width: 1.2rem;
  height: 2px;
  border-radius: 999px;
  background: var(--ink);
}

.enterprise-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(24rem, 0.72fr);
  gap: 2rem;
  align-items: center;
  min-height: min(720px, calc(100vh - 8rem));
  margin-top: 1rem;
  padding: clamp(1.6rem, 4vw, 3.5rem);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(135deg, #fdfefe 0%, #eef5f7 52%, #e6edf3 100%);
  box-shadow: var(--shadow);
}

.hero-background {
  position: absolute;
  inset: 0;
  opacity: 0.62;
  pointer-events: none;
}

.mesh-line {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(8, 124, 112, 0.45), transparent);
  transform-origin: center;
}

.mesh-line-a {
  top: 24%;
  right: -8%;
  width: 54%;
  transform: rotate(-18deg);
}

.mesh-line-b {
  right: -4%;
  bottom: 22%;
  width: 48%;
  transform: rotate(14deg);
}

.mesh-node {
  position: absolute;
  display: inline-grid;
  place-items: center;
  width: 5rem;
  height: 5rem;
  border: 1px solid rgba(8, 124, 112, 0.25);
  border-radius: 999px;
  color: var(--accent-strong);
  font-family: var(--mono);
  font-size: 0.78rem;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.82);
}

.mesh-node-host {
  top: 16%;
  right: 28%;
}

.mesh-node-domain {
  right: 10%;
  bottom: 20%;
}

.mesh-node-sdk {
  right: 33%;
  bottom: 11%;
}

.hero-copy-block {
  position: relative;
  min-width: 0;
  max-width: 48rem;
  z-index: 1;
}

.hero-copy,
.hero-panel,
.panel,
.mini-card,
.ownership-card,
.limit-card,
.rail-card,
.audience-card,
.step-card,
.matrix-card,
.boundary-panel,
.protocol-panel,
.command-surface,
.evidence-section {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.hero-copy,
.hero-panel,
.panel {
  min-width: 0;
  padding: 2rem;
}

.eyebrow,
.section-label,
.surface-kicker {
  margin: 0 0 0.75rem;
  color: var(--accent-strong);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  max-width: 13ch;
  font-size: clamp(3rem, 5.1vw, 4.9rem);
  line-height: 0.98;
  font-weight: 800;
  overflow-wrap: anywhere;
}

h2 {
  margin: 0;
  max-width: 18ch;
  font-size: clamp(2rem, 3.5vw, 3.3rem);
  line-height: 1.04;
  font-weight: 800;
}

h3 {
  margin: 0 0 0.6rem;
  font-size: 1.05rem;
  line-height: 1.15;
}

.hero-text,
.section-head p,
.panel p,
.mini-card p,
.ownership-card p,
.limit-card p,
.footer p,
.note,
.evidence-copy p {
  color: var(--muted);
}

.hero-text {
  max-width: 46rem;
  margin: 1.25rem 0 0;
  font-size: 1.12rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.9rem;
  padding: 0 1.05rem;
  border-radius: var(--radius);
  font-size: 0.94rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform 160ms ease, background-color 160ms ease, color 160ms ease;
}

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

.button-primary {
  color: #fff;
  background: var(--accent);
  box-shadow: 0 14px 26px rgba(8, 124, 112, 0.22);
}

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

.command-surface {
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: var(--steel-2);
  color: #f7fbfc;
}

.surface-header {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.surface-header strong {
  display: block;
  margin-top: 0.15rem;
  font-size: 1.2rem;
}

.status-pill {
  align-self: start;
  padding: 0.22rem 0.55rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.status-warn {
  color: #ffcf8a;
  background: rgba(168, 100, 0, 0.18);
}

.status-ok {
  color: #6ee7a6;
}

.status-ok-pill {
  color: #dff8ea;
  background: rgba(8, 124, 66, 0.22);
}

.readiness-table {
  display: grid;
}

.readiness-row {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr auto;
  gap: 0.8rem;
  align-items: center;
  padding: 0.95rem 1.2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.readiness-row span,
.readiness-row em {
  color: rgba(247, 251, 252, 0.78);
  font-size: 0.86rem;
  font-style: normal;
}

.readiness-row strong {
  font-family: var(--mono);
  font-size: 0.82rem;
}

.public-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(30rem, 1fr);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  min-height: min(690px, calc(100vh - 8rem));
  padding: clamp(2rem, 5vw, 4rem) 0;
}

.public-hero-copy {
  min-width: 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  margin: 0 0 1rem;
  padding: 0 0.8rem;
  border: 1px solid rgba(8, 124, 112, 0.22);
  border-radius: 999px;
  color: var(--accent-strong);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--accent-soft);
}

.hero-proof-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem 1rem;
  margin-top: 1.5rem;
}

.hero-proof-list span {
  position: relative;
  padding-left: 1.55rem;
  color: var(--steel);
  font-size: 0.92rem;
  font-weight: 700;
}

.hero-proof-list span::before {
  content: "";
  position: absolute;
  top: 0.35rem;
  left: 0;
  width: 0.7rem;
  height: 0.7rem;
  border: 1px solid var(--accent);
  border-radius: 3px;
  background: #fff;
  box-shadow: inset 0 0 0 2px var(--accent-soft);
}

.product-preview {
  display: grid;
  grid-template-columns: minmax(8.8rem, 0.28fr) minmax(0, 1fr);
  min-width: 0;
  min-height: 32rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 28px 70px rgba(16, 24, 32, 0.14);
}

.preview-sidebar {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1rem;
  color: rgba(255, 255, 255, 0.84);
  background: linear-gradient(180deg, var(--steel-2), #0f1a22);
}

.preview-logo {
  display: inline-grid;
  place-items: center;
  width: 2.3rem;
  height: 2.3rem;
  margin-bottom: 0.5rem;
  border-radius: var(--radius);
  color: #fff;
  font-family: var(--mono);
  font-weight: 800;
  background: rgba(255, 255, 255, 0.1);
}

.preview-sidebar span {
  padding: 0.55rem 0.65rem;
  border-radius: var(--radius);
  font-size: 0.78rem;
  font-weight: 700;
}

.preview-sidebar span:first-of-type {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.preview-sidebar em {
  margin-top: auto;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.75rem;
  font-style: normal;
}

.preview-main {
  display: grid;
  gap: 1rem;
  padding: 1.25rem;
  background: #fbfcfe;
}

.preview-topline,
.preview-content {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  min-width: 0;
}

.preview-topline strong {
  display: block;
  font-size: 1.15rem;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
}

.metric-grid div,
.run-table,
.audit-panel {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.metric-grid div {
  padding: 0.9rem;
}

.metric-grid span,
.run-head,
.audit-panel li {
  color: var(--muted);
  font-size: 0.78rem;
}

.metric-grid strong {
  display: block;
  margin-top: 0.35rem;
  font-size: 1.55rem;
  line-height: 1;
}

.metric-grid em {
  display: block;
  margin-top: 0.4rem;
  font-size: 0.78rem;
  font-style: normal;
}

.status-warn-text {
  color: var(--risk);
}

.preview-content {
  align-items: stretch;
}

.run-table {
  flex: 1 1 auto;
  overflow: hidden;
}

.run-row {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr) auto;
  gap: 0.8rem;
  align-items: center;
  padding: 0.8rem 0.95rem;
  border-bottom: 1px solid var(--line);
  font-size: 0.82rem;
}

.run-row:last-child {
  border-bottom: 0;
}

.run-row span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.risk-high,
.risk-med,
.risk-low {
  padding: 0.18rem 0.45rem;
  border-radius: 999px;
  font-size: 0.72rem;
}

.risk-high {
  color: #b42318;
  background: #fee4df;
}

.risk-med {
  color: #8a4b00;
  background: #fff1d6;
}

.risk-low {
  color: #087c42;
  background: #dff8ea;
}

.audit-panel {
  flex: 0 0 13rem;
  padding: 0.95rem;
}

.audit-panel ol {
  margin: 0.8rem 0 0;
  padding-left: 1.1rem;
}

.audit-panel li {
  margin-top: 0.55rem;
}

.trust-strip {
  display: grid;
  grid-template-columns: 1.8fr repeat(6, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
  box-shadow: var(--shadow);
}

.trust-strip span,
.trust-strip strong {
  display: grid;
  align-items: center;
  min-height: 4.2rem;
  padding: 0.9rem 1rem;
  background: rgba(255, 255, 255, 0.86);
}

.trust-strip span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 1rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
  box-shadow: var(--shadow);
}

.proof-strip div {
  min-width: 0;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.9);
}

.proof-strip span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.proof-strip strong {
  display: block;
  margin-top: 0.25rem;
  color: var(--steel);
  font-family: var(--mono);
  font-size: 0.98rem;
  overflow-wrap: anywhere;
}

.section,
.section-grid {
  margin-top: 2rem;
}

.section-head {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.section-head-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.62fr);
  align-items: end;
}

.section-head-split p:last-child {
  margin: 0;
  max-width: 36rem;
}

.matrix,
.boundary-grid,
.platform-grid,
.ownership-grid,
.card-grid,
.limits-grid,
.audience-grid,
.guide-layout,
.runway {
  display: grid;
  gap: 1rem;
  min-width: 0;
}

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

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

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

.matrix-card,
.boundary-panel,
.protocol-panel,
.mini-card,
.ownership-card,
.limit-card,
.rail-card,
.audience-card,
.step-card,
.developer-cta {
  min-width: 0;
  padding: 1.35rem;
}

.audience-card a {
  display: inline-flex;
  margin-top: 0.75rem;
  color: var(--accent-strong);
  font-weight: 800;
  text-decoration: none;
}

.audience-icon {
  display: inline-grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 1rem;
  border-radius: var(--radius);
  color: var(--accent-strong);
  font-family: var(--mono);
  font-weight: 800;
  background: var(--accent-soft);
}

.audience-icon-warm {
  color: #8a4b00;
  background: #fff1d6;
}

.centered-section-head {
  align-items: center;
  text-align: center;
}

.developer-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.developer-cta p {
  max-width: 48rem;
  color: var(--muted);
}

.matrix-card-dark {
  color: #fff;
  background: var(--steel);
  border-color: rgba(255, 255, 255, 0.12);
}

.matrix-title {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1rem;
}

.language-dot {
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 999px;
  background: var(--accent);
}

.python-dot {
  background: #2f7bd7;
}

.java-dot {
  background: #d26f24;
}

.release-dot {
  background: #6ee7a6;
}

dl {
  display: grid;
  gap: 0.8rem;
  margin: 0;
}

dl div {
  display: grid;
  gap: 0.15rem;
  padding-top: 0.7rem;
  border-top: 1px solid var(--line);
}

.matrix-card-dark dl div {
  border-top-color: rgba(255, 255, 255, 0.14);
}

dt {
  color: var(--subtle);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

dd {
  margin: 0;
  color: var(--muted);
}

.matrix-card-dark dd,
.matrix-card-dark p {
  color: rgba(255, 255, 255, 0.72);
}

code,
pre,
dd,
.protocol-panel span,
.protocol-panel code {
  font-family: var(--mono);
}

code {
  overflow-wrap: anywhere;
}

.band {
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #edf3f6;
}

.boundary-grid {
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.72fr) minmax(0, 1fr);
  align-items: stretch;
}

.protocol-panel {
  display: grid;
  place-items: center;
  gap: 0.8rem;
  text-align: center;
  color: #fff;
  background: var(--steel-2);
}

.protocol-panel span {
  color: #6ee7d8;
  font-size: 0.85rem;
}

.protocol-panel strong {
  font-size: 1.3rem;
}

.protocol-panel code {
  display: block;
  color: rgba(255, 255, 255, 0.76);
  white-space: normal;
}

.check-list,
.bullet-list,
.step-list,
.number-list {
  margin: 0;
  padding-left: 1.15rem;
}

.check-list li,
.bullet-list li,
.step-list li,
.number-list li {
  margin-top: 0.5rem;
}

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

.runway-step {
  min-height: 100%;
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.runway-index {
  display: inline-block;
  margin-bottom: 0.8rem;
  color: var(--accent-strong);
  font-family: var(--mono);
  font-size: 1.35rem;
  font-weight: 800;
}

.evidence-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.55fr);
  gap: 1rem;
  align-items: center;
  padding: 1.5rem;
  background: var(--surface);
}

.evidence-copy h2 {
  max-width: 17ch;
}

.evidence-ledger {
  display: grid;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.evidence-ledger div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 1rem;
  border-bottom: 1px solid var(--line);
  background: #fbfcfe;
}

.evidence-ledger div:last-child {
  border-bottom: 0;
}

.evidence-ledger span {
  color: var(--muted);
}

.evidence-ledger strong {
  font-family: var(--mono);
  font-size: 0.86rem;
}

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

.limit-card {
  border-left: 4px solid var(--risk);
}

.limit-card p {
  margin-bottom: 0;
}

.hero-compact {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(18rem, 0.75fr);
  gap: 1rem;
  align-items: stretch;
  margin-top: 1.5rem;
}

.guide-layout {
  grid-template-columns: minmax(17rem, 0.38fr) minmax(0, 1fr);
  align-items: start;
  margin-top: 1.5rem;
}

.guide-rail {
  position: sticky;
  top: 5.8rem;
  display: grid;
  gap: 1rem;
}

.rail-card-accent {
  background: var(--accent-soft);
}

.rail-list {
  margin: 0;
  padding-left: 1.2rem;
}

.rail-list li {
  margin-top: 0.5rem;
}

.rail-list a {
  color: var(--accent-strong);
  font-weight: 800;
  text-decoration: none;
}

.guide-main {
  display: grid;
  gap: 1rem;
}

.code-block {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: #111c26;
  box-shadow: var(--shadow);
}

.code-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  background: rgba(255, 255, 255, 0.06);
}

.copy-button {
  min-height: 2.2rem;
  padding: 0 0.75rem;
  border: 0;
  border-radius: var(--radius);
  color: #fff;
  font-weight: 800;
  background: var(--accent);
  cursor: pointer;
}

.copy-button.is-copied {
  background: var(--ok);
}

pre {
  margin: 0;
  max-width: 100%;
  overflow-x: auto;
  padding: 1.15rem 1.2rem;
}

pre code {
  color: #eef6f8;
  font-size: 0.9rem;
  line-height: 1.65;
}

.footer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2rem;
  padding: 1.5rem 0 0;
  border-top: 1px solid var(--line);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.footer a {
  color: var(--accent-strong);
  font-weight: 800;
  text-decoration: none;
}

[data-reveal] {
  opacity: 1;
  transform: none;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

  [data-reveal] {
    transition: none;
  }
}

@media (max-width: 1060px) {
  .public-hero,
  .enterprise-hero,
  .hero-compact,
  .section-head-split,
  .matrix,
  .boundary-grid,
  .platform-grid,
  .audience-grid,
  .guide-layout,
  .runway,
  .limits-grid,
  .evidence-section,
  .proof-strip,
  .trust-strip {
    grid-template-columns: 1fr;
  }

  .product-preview {
    grid-template-columns: 1fr;
  }

  .preview-sidebar {
    display: none;
  }

  .guide-rail {
    position: static;
  }

  .public-hero,
  .enterprise-hero {
    min-height: auto;
  }
}

@media (max-width: 760px) {
  .site-shell {
    width: min(calc(100% - 1rem), var(--max-width));
  }

  .topbar {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav {
    display: none;
    width: 100%;
    flex-direction: column;
    padding-top: 0.5rem;
  }

  .nav.is-open {
    display: flex;
  }

  .nav a {
    justify-content: flex-start;
    min-height: 2.8rem;
  }

  .enterprise-hero,
  .public-hero,
  .hero-copy,
  .hero-panel,
  .panel,
  .matrix-card,
  .boundary-panel,
  .protocol-panel,
  .mini-card,
  .ownership-card,
  .limit-card,
  .rail-card,
  .audience-card,
  .step-card,
  .evidence-section,
  .developer-cta {
    padding: 1.2rem;
  }

  .public-hero {
    gap: 1rem;
  }

  .hero-proof-list,
  .metric-grid,
  .preview-content {
    grid-template-columns: 1fr;
  }

  .preview-content,
  .preview-topline,
  .developer-cta {
    flex-direction: column;
  }

  .product-preview {
    min-height: 0;
  }

  .preview-main {
    padding: 1rem;
  }

  .run-row {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }

  .audit-panel {
    flex-basis: auto;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2rem, 10.5vw, 2.6rem);
    line-height: 1;
  }

  .hero-text {
    font-size: 1rem;
  }

  .hero-background {
    display: none;
  }

  .enterprise-hero .command-surface {
    display: none;
  }

  .readiness-row {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }

  .footer {
    flex-direction: column;
  }
}
