:root {
  color-scheme: light;
  --bg: #ffffff;
  --ink: #111827;
  --muted: #5f6878;
  --soft: #f6f7f9;
  --soft-2: #eef1f4;
  --line: #d9dee7;
  --line-strong: #bac3d0;
  --green: #0f766e;
  --green-soft: #e8f5f3;
  --blue: #2563eb;
  --blue-soft: #edf3ff;
  --amber: #a16207;
  --amber-soft: #fff7e6;
  --red: #b42318;
  --red-soft: #fff0ef;
  --dark: #101827;
  --radius: 8px;
  --content: 1180px;
  --shadow: 0 12px 34px rgba(17, 24, 39, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: var(--blue);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

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

code,
pre {
  font-family: "SFMono-Regular", Menlo, Monaco, Consolas, monospace;
}

.shell,
.page {
  max-width: var(--content);
  margin: 0 auto;
  padding: 20px 24px 48px;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
  padding: 14px 0;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand,
.brand-lockup {
  color: var(--ink);
  text-decoration: none;
}

.brand {
  font-size: 0.98rem;
  font-weight: 800;
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 200px;
}

.brand-mark {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  color: var(--green);
  font-weight: 800;
}

.brand-name {
  display: grid;
  gap: 1px;
}

.brand-name strong {
  font-size: 0.98rem;
  line-height: 1.1;
}

.brand-name span {
  color: var(--muted);
  font-size: 0.78rem;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 4px;
}

.nav a {
  padding: 8px 10px;
  border-radius: 6px;
  color: var(--muted);
  font-size: 0.9rem;
  text-decoration: none;
}

.nav a:hover {
  background: var(--soft);
  color: var(--ink);
}

.layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 22px;
  min-width: 0;
}

.main {
  display: grid;
  gap: 18px;
  min-width: 0;
}

.rail {
  position: sticky;
  top: 84px;
  display: grid;
  align-self: start;
  gap: 14px;
  min-width: 0;
}

.hero,
.section,
.panel,
.side-panel,
.mini-card,
.card,
.feature,
.comparison-note,
.faq,
.footer-card,
.code-panel,
.table-panel,
.table-shell,
.decision-card,
.ops-card,
.signal-card,
.metric-card,
.timeline-step,
.transcript-card,
.video-stage,
.terminal-shell,
.callout,
.dark-section,
.legend {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.hero,
.section,
.faq,
.footer-card,
.callout,
.dark-section {
  padding: 22px;
}

.hero {
  box-shadow: var(--shadow);
  min-width: 0;
}

.hero.home-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.72fr);
  gap: 28px;
  min-height: 0;
  align-items: center;
}

.home-hero h1 {
  margin-bottom: 10px;
  font-size: clamp(2.85rem, 5vw, 4.4rem);
  line-height: 0.96;
  overflow-wrap: break-word;
}

.hero-product {
  align-items: stretch;
}

.hero-copy {
  display: grid;
  align-content: start;
  gap: 12px;
  min-width: 0;
}

.hero-explainer {
  display: grid;
  gap: 10px;
  min-width: 0;
  padding-left: 24px;
  border-left: 3px solid var(--green);
}

.hero-explainer-kicker {
  margin-bottom: 0;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-explainer h2 {
  max-width: 13ch;
  margin-bottom: 0;
  font-size: clamp(1.85rem, 3vw, 2.8rem);
}

.hero-explainer p {
  max-width: 48ch;
  margin-bottom: 0;
  color: var(--muted);
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin: 2px 0 0;
  padding: 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 750;
  list-style: none;
}

.hero-facts li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.hero-facts li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--green);
}

.section,
.panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 14px;
  min-width: 0;
}

.hero,
.section,
.panel,
.main,
.layout,
.prompt-copy,
.prompt-bubble,
.install-grid,
.code-panel,
.table-shell,
.mini-card,
.card,
.feature,
.comparison-note,
.decision-card,
.ops-card {
  min-width: 0;
}

.section + .section,
.section + .faq,
.section + .footer-card,
.faq + .footer-card,
.hero + .section {
  margin-top: 18px;
}

.eyebrow,
.kicker {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 18px;
  padding: 5px 9px;
  border: 1px solid #b7ded7;
  border-radius: 6px;
  background: var(--green-soft);
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 12ch;
  margin-bottom: 18px;
  font-size: clamp(3rem, 7vw, 5.7rem);
  line-height: 0.92;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 8px;
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.02rem;
}

.lede {
  max-width: 62ch;
  color: var(--muted);
  font-size: 1.06rem;
}

.lede a,
.prompt-text a {
  color: var(--blue);
  font-weight: 750;
}

.button-row,
.chip-row,
.tab-row,
.tags,
.stats,
.footer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.button-row {
  margin-top: 22px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 14px;
  border: 1px solid var(--ink);
  border-radius: 6px;
  background: var(--ink);
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-weight: 700;
  text-decoration: none;
}

.button.secondary {
  border-color: var(--line-strong);
  background: #fff;
  color: var(--ink);
}

.button.ghost,
.button.subtle {
  border-color: transparent;
  background: var(--soft);
  color: var(--ink);
}

.chip,
.tag,
.pill,
.status,
.terminal-pill {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 26px;
  padding: 5px 8px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: none;
}

.status.green,
.chip.green,
.chip.good {
  border-color: #b7ded7;
  background: var(--green-soft);
  color: var(--green);
}

.status.blue,
.chip.blue {
  border-color: #c9d9ff;
  background: var(--blue-soft);
  color: var(--blue);
}

.status.amber,
.chip.amber,
.chip.warn {
  border-color: #efd99b;
  background: var(--amber-soft);
  color: var(--amber);
}

.status.red {
  border-color: #f4b8b3;
  background: var(--red-soft);
  color: var(--red);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
}

.section-head p {
  max-width: 56ch;
  margin-bottom: 0;
  color: var(--muted);
}

.hero-aside {
  display: grid;
  align-content: start;
  gap: 12px;
  min-width: 0;
}

.hero-prompt {
  display: grid;
  align-content: start;
  gap: 14px;
  min-width: 0;
  padding: 18px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--soft);
}

.hero-prompt h2 {
  margin-bottom: 0;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
}

.score-card {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
}

.score-top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
}

.score-top strong {
  font-size: 2.6rem;
  line-height: 1;
}

.score-top span {
  margin-top: 6px;
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-align: right;
  text-transform: uppercase;
}

.meter {
  height: 7px;
  margin: 14px 0 10px;
  overflow: hidden;
  border-radius: 999px;
  background: var(--soft-2);
}

.meter span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--green);
}

.tiny-note {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.at-glance {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.glance-row {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 12px;
  min-height: 72px;
  padding: 12px;
  border-bottom: 1px solid var(--line);
  align-items: center;
}

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

.glance-row span {
  color: var(--muted);
  font-size: 0.82rem;
}

.glance-row strong {
  font-size: 0.86rem;
}

.prompt-feature {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 16px;
}

.prompt-compact {
  gap: 16px;
}

.prompt-kpi {
  display: grid;
  align-content: space-between;
  min-height: 300px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
}

.prompt-kpi strong {
  display: block;
  font-size: clamp(3rem, 5vw, 3.8rem);
  line-height: 0.95;
  overflow-wrap: anywhere;
}

.prompt-copy {
  display: grid;
  gap: 12px;
}

.prompt-bubble {
  padding: 14px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: #fff;
}

.prompt-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 14px;
  padding: 16px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: #fff;
}

.copy-button {
  white-space: nowrap;
}

.prompt-label {
  margin-bottom: 8px;
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.prompt-text {
  margin: 0;
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 400;
}

.hero-prompt .prompt-text {
  font-size: clamp(1.05rem, 2vw, 1.22rem);
  line-height: 1.45;
}

.prompt-band {
  grid-template-columns: minmax(0, 1fr) 190px;
  align-items: center;
  background: var(--soft);
}

.prompt-band-head {
  grid-column: 1 / -1;
}

.prompt-band h2 {
  margin-bottom: 0;
}

.prompt-copy-card {
  min-width: 0;
  padding: 16px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: #fff;
}

.prompt-band .prompt-text {
  max-width: 78ch;
}

.prompt-band .prompt-text a {
  font-weight: 500;
}

.prompt-action {
  display: grid;
  gap: 8px;
  align-self: center;
}

.flow-stack,
.benefit-stack {
  display: grid;
  gap: 10px;
}

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

.flow-row,
.benefit-row {
  display: grid;
  gap: 12px;
}

.flow-row {
  grid-template-columns: 42px minmax(0, 1fr);
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.flow-row:first-child {
  border-top: 0;
}

.flow-row strong,
.benefit-row h3 {
  display: block;
  margin-bottom: 3px;
}

.flow-row span,
.benefit-row p {
  color: var(--muted);
}

.benefit-row {
  align-content: start;
  min-height: 210px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.flow-num,
.benefit-meta {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--soft);
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.benefit-row p {
  margin-bottom: 0;
  font-size: 0.9rem;
  line-height: 1.48;
}

.foldout {
  min-width: 0;
}

.foldout summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  list-style: none;
}

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

.foldout summary::after {
  content: "+";
  display: grid;
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--muted);
  font-weight: 800;
}

.foldout[open] summary::after {
  content: "-";
}

.foldout summary strong {
  display: block;
  font-size: clamp(1.2rem, 2.4vw, 1.65rem);
  line-height: 1.1;
}

.foldout summary span span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.94rem;
}

.foldout-body {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.prompt-outcomes,
.proof-strip,
.signal-grid,
.tool-grid,
.decision-grid,
.listing-grid,
.card-grid,
.three-col,
.metric-grid,
.timeline-grid,
.transcript-grid,
.ops-grid,
.install-grid,
.two-col,
.matrix-grid {
  display: grid;
  gap: 10px;
}

.prompt-outcomes,
.signal-grid,
.timeline-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.proof-strip {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.tool-grid,
.card-grid,
.three-col,
.metric-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.decision-grid,
.install-grid,
.two-col,
.matrix-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

.transcript-grid,
.ops-grid {
  grid-template-columns: 1.2fr 0.8fr;
}

.prompt-outcome,
.proof-step,
.mini-card,
.card,
.feature,
.comparison-note,
.decision-card,
.ops-card,
.signal-card,
.metric-card,
.timeline-step,
.legend,
.listing-item,
.stat {
  min-height: 92px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.mini-card {
  min-height: 118px;
  padding: 14px;
}

.feature,
.card,
.comparison-note,
.decision-card,
.ops-card {
  padding: 16px;
}

.prompt-outcome strong,
.proof-step strong,
.mini-card strong,
.listing-item strong,
.stat strong,
.signal-card strong,
.metric-card strong {
  display: block;
  margin-bottom: 6px;
  font-size: 0.9rem;
}

.prompt-outcome span,
.proof-step span,
.listing-item span,
.mini-card p,
.card p,
.feature p,
.comparison-note p,
.signal-card span,
.metric-card span,
.timeline-step p {
  color: var(--muted);
  font-size: 0.86rem;
}

.step-num {
  display: inline-grid;
  place-items: center;
  min-width: 23px;
  height: 23px;
  margin-bottom: 13px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.search-box {
  display: flex;
  min-height: 42px;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  overflow: hidden;
}

.search-box input {
  width: 100%;
  min-width: 0;
  border: 0;
  padding: 0 12px;
  color: var(--ink);
  font: inherit;
}

.search-box button {
  border: 0;
  border-left: 1px solid var(--line);
  padding: 0 14px;
  background: var(--soft);
  color: var(--ink);
  font-weight: 800;
}

.tab-row {
  margin-bottom: 10px;
}

.tab {
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 750;
}

.tab.active {
  border-color: #b7ded7;
  background: var(--green-soft);
  color: var(--green);
}

.code-panel,
.terminal-shell,
.video-stage {
  overflow: hidden;
  background: var(--dark);
  color: #edf2ff;
  min-width: 0;
}

.code-top,
.terminal-bar,
.video-topbar {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: #b8c2d6;
  font-size: 0.82rem;
}

.code-top span,
.terminal-bar span,
.video-topbar span {
  min-width: 0;
  overflow-wrap: anywhere;
}

pre {
  margin: 0;
  padding: 16px;
  max-width: 100%;
  overflow-x: auto;
  border-radius: var(--radius);
  background: var(--dark);
  color: #edf2ff;
  font-size: 0.82rem;
  line-height: 1.55;
}

pre code {
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}

.code-panel pre,
.terminal-shell pre {
  border-radius: 0;
}

.terminal-body,
.video-body {
  padding: 16px;
}

.terminal-body pre {
  padding: 0;
  background: transparent;
}

.terminal-meta {
  margin-top: 14px;
}

.terminal-pill {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
  color: #edf2ff;
}

.tool-row {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

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

.tool-row span:first-child {
  font-weight: 700;
}

.tool-row span:last-child {
  color: var(--muted);
  text-align: right;
}

.architecture {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: center;
  min-width: 0;
}

.architecture-visual {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
}

.list-clean {
  margin: 0;
  padding: 0;
  list-style: none;
}

.list-clean li {
  display: grid;
  grid-template-columns: 8px minmax(0, 1fr);
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
}

.list-clean li:last-child {
  border-bottom: 0;
}

.dot {
  width: 8px;
  height: 8px;
  margin-top: 10px;
  border-radius: 4px;
  background: var(--green);
}

.dot.warn {
  background: var(--amber);
}

.side-panel {
  padding: 16px;
}

.side-title {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}

.side-title strong {
  font-size: 0.96rem;
}

.timeline {
  display: grid;
  gap: 10px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 9px;
}

.timeline-mark {
  width: 20px;
  height: 20px;
  border: 1px solid #b7ded7;
  border-radius: 6px;
  background: var(--green-soft);
}

.timeline-item strong {
  display: block;
  font-size: 0.88rem;
}

.timeline-item span {
  color: var(--muted);
  font-size: 0.8rem;
}

table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  margin-top: 0;
  background: #fff;
}

th,
td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
  overflow-wrap: anywhere;
}

th {
  background: var(--soft);
  color: var(--ink);
  font-size: 0.86rem;
}

tr:last-child td {
  border-bottom: 0;
}

.table-shell {
  overflow: auto;
  max-width: 100%;
}

.table-note,
.subtle {
  color: var(--muted);
  font-size: 0.92rem;
}

.dark-section {
  background: var(--dark);
  color: #edf2ff;
  border-color: var(--dark);
}

.dark-section h2,
.dark-section h3,
.dark-section p,
.dark-section li,
.dark-section .subtle {
  color: inherit;
}

.video-body img {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background: #fff;
}

.video-caption {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 12px;
  color: #b8c2d6;
  font-size: 0.84rem;
}

.transcript-card {
  padding: 16px;
}

.transcript-card ol {
  margin: 0;
  padding-left: 20px;
}

.transcript-card li + li {
  margin-top: 10px;
}

.faq-item + .faq-item {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.footer-card {
  margin-bottom: 30px;
}

.footer-meta {
  color: var(--muted);
  font-size: 0.88rem;
}

.site-footer {
  margin-top: 28px;
  padding: 28px 0 8px;
  border-top: 1px solid var(--line);
}

.site-footer-top {
  display: grid;
  grid-template-columns: minmax(240px, 1.4fr) repeat(3, minmax(130px, 1fr));
  gap: 28px;
  align-items: start;
}

.footer-brand-block {
  display: grid;
  gap: 12px;
  min-width: 0;
}

.footer-brand-block p,
.site-footer-bottom p {
  margin-bottom: 0;
  color: var(--muted);
}

.footer-lockup {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  color: var(--ink);
  text-decoration: none;
}

.footer-lockup > span:last-child {
  display: grid;
  gap: 1px;
}

.footer-lockup strong {
  font-size: 0.98rem;
  line-height: 1.1;
}

.footer-lockup span span {
  color: var(--muted);
  font-size: 0.78rem;
}

.footer-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--green-soft);
  color: var(--green);
  font-weight: 800;
}

.footer-column {
  display: grid;
  gap: 7px;
}

.footer-heading {
  margin-bottom: 2px;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-column a,
.footer-social a {
  color: var(--muted);
  font-size: 0.92rem;
  text-decoration: none;
}

.footer-column a:hover,
.footer-social a:hover {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.site-footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

@media (max-width: 980px) {
  .layout,
  .hero.home-hero,
  .prompt-band,
  .prompt-feature,
  .prompt-card,
  .install-grid,
  .architecture,
  .decision-grid,
  .two-col,
  .matrix-grid,
  .transcript-grid,
  .ops-grid {
    grid-template-columns: 1fr;
  }

  .rail {
    position: static;
  }

  .proof-strip,
  .signal-grid,
  .tool-grid,
  .listing-grid,
  .benefit-stack,
  .prompt-outcomes,
  .card-grid,
  .three-col,
  .metric-grid,
  .timeline-grid,
  .site-footer-top {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  h1 {
    max-width: 14ch;
  }

}

@media (max-width: 640px) {
  .shell,
  .page {
    padding: 14px 14px 32px;
  }

  .topbar {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .hero,
  .section,
  .faq,
  .footer-card,
  .dark-section {
    padding: 18px;
  }

  .section-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .proof-strip,
  .signal-grid,
  .tool-grid,
  .listing-grid,
  .benefit-stack,
  .prompt-outcomes,
  .card-grid,
  .three-col,
  .metric-grid,
  .timeline-grid,
  .site-footer-top {
    grid-template-columns: 1fr;
  }

  .glance-row {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .hero-explainer {
    padding-left: 16px;
  }

  .flow-row,
  .benefit-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .hero-prompt {
    padding: 16px;
  }

  .foldout summary {
    align-items: flex-start;
  }
}
