:root {
  color-scheme: light;
  --ink: #111827;
  --navy: #17334a;
  --blue: #0066ff;
  --green: #1f9d72;
  --amber: #d88419;
  --red: #d94d56;
  --muted: #5f6b7a;
  --line: #d9e0e8;
  --paper: #f4f6f8;
  --panel: #ffffff;
  --wash: #eaf0f5;
  --shadow: 0 22px 60px rgb(23 51 74 / 14%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
}

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

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

button,
input {
  font: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgb(217 224 232 / 72%);
  background: rgb(244 246 248 / 94%);
  backdrop-filter: blur(18px);
}

.nav-wrap,
.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.nav-wrap {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: max-content;
}

.brand img {
  width: 202px;
  height: auto;
  max-height: 44px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 720;
}

.nav-links a:hover {
  color: var(--navy);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 16px;
  font-size: 14px;
  font-weight: 820;
  white-space: nowrap;
}

.button svg,
.upload-pill svg {
  width: 17px;
  height: 17px;
  stroke-width: 2.4;
}

.button-logo {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  object-fit: contain;
}

.button-logo.hf {
  width: 21px;
  height: 21px;
}

.button.primary {
  border-color: var(--navy);
  background: var(--navy);
  color: #ffffff;
}

.button.secondary {
  background: #ffffff;
  color: var(--navy);
}

.button.disabled {
  border-color: rgb(217 224 232 / 70%);
  background: #eef3f6;
  color: var(--muted);
  cursor: not-allowed;
}

.button.compact {
  min-height: 40px;
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: #0e1926;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: url("hero-inspection.png");
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgb(8 18 30 / 94%) 0%, rgb(8 18 30 / 76%) 46%, rgb(8 18 30 / 32%) 100%),
    linear-gradient(0deg, rgb(8 18 30 / 86%) 0%, rgb(8 18 30 / 8%) 62%);
}

.hero-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 78px 0 46px;
  color: #ffffff;
}

.hero-copy {
  max-width: 820px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 850px;
  margin: 0;
  font-size: 72px;
  line-height: .95;
  letter-spacing: 0;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.hero-tags span {
  border: 1px solid rgb(255 255 255 / 28%);
  border-radius: 8px;
  background: rgb(255 255 255 / 12%);
  padding: 9px 12px;
  color: #ffffff;
  font-size: 15px;
  font-weight: 850;
}

.hero .lede {
  max-width: 710px;
  margin: 24px 0 0;
  color: rgb(255 255 255 / 84%);
  font-size: 21px;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-actions .secondary {
  background: rgb(255 255 255 / 10%);
  color: #ffffff;
  border-color: rgb(255 255 255 / 34%);
}

.demo-dock {
  margin-top: 44px;
  border: 1px solid rgb(255 255 255 / 22%);
  border-radius: 8px;
  background: rgb(10 25 39 / 80%);
  box-shadow: 0 28px 70px rgb(0 0 0 / 26%);
  backdrop-filter: blur(14px);
  overflow: hidden;
}

.demo-topline {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid rgb(255 255 255 / 14%);
  padding: 18px 20px;
}

.demo-topline h2 {
  margin: 0;
  color: #ffffff;
  font-size: 30px;
  line-height: 1;
}

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

.demo-status {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  border: 1px solid rgb(255 255 255 / 18%);
  border-radius: 8px;
  background: rgb(255 255 255 / 8%);
  padding: 0 12px;
  color: rgb(255 255 255 / 78%);
  font-size: 13px;
  font-weight: 850;
}

.demo-status.is-ready {
  border-color: rgb(31 157 114 / 55%);
  background: rgb(31 157 114 / 18%);
  color: #ffffff;
}

.demo-status.is-error {
  border-color: rgb(217 77 86 / 55%);
  background: rgb(217 77 86 / 16%);
  color: #ffffff;
}

.upload-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  border: 1px solid rgb(255 255 255 / 34%);
  border-radius: 8px;
  background: #ffffff;
  padding: 0 16px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 850;
  cursor: pointer;
}

.demo-body {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr);
  gap: 18px;
  padding: 18px;
}

.demo-preview {
  position: relative;
  min-height: 315px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #0b1724;
}

.demo-preview > img {
  width: 100%;
  height: 100%;
  min-height: 315px;
  object-fit: cover;
}

.demo-preview .demo-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.demo-preview figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 4;
  border-radius: 8px;
  background: rgb(11 23 36 / 78%);
  padding: 9px 12px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 760;
}

.measure-line {
  position: absolute;
  display: none;
  z-index: 3;
  pointer-events: none;
}

.demo-preview.has-static-guides .measure-line {
  display: block;
}

.measure-line.horizontal {
  left: 22%;
  top: 53%;
  width: 38%;
  border-top: 3px solid #35d0bd;
  box-shadow: 0 0 0 1px rgb(11 23 36 / 30%);
}

.measure-line.vertical {
  left: 64%;
  top: 22%;
  height: 44%;
  border-left: 3px solid #ffffff;
  box-shadow: 0 0 0 1px rgb(11 23 36 / 24%);
}

.measure-label {
  position: absolute;
  display: none;
  z-index: 4;
  border-radius: 6px;
  background: rgb(255 255 255 / 88%);
  padding: 6px 9px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 850;
}

.demo-preview.has-static-guides .measure-label {
  display: block;
}

.measure-label.one {
  left: 42%;
  top: 45%;
}

.measure-label.two {
  right: 14%;
  top: 27%;
  background: #a7f36b;
}

.demo-side {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 14px;
}

.example-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.example-chip {
  min-height: 42px;
  border: 1px solid rgb(255 255 255 / 18%);
  border-radius: 8px;
  background: rgb(255 255 255 / 8%);
  color: rgb(255 255 255 / 84%);
  font-size: 13px;
  font-weight: 830;
  cursor: pointer;
}

.example-chip.is-active,
.example-chip:hover {
  border-color: rgb(31 157 114 / 90%);
  background: rgb(31 157 114 / 22%);
  color: #ffffff;
}

.result-stack {
  display: grid;
  gap: 10px;
}

.result-stack div {
  border: 1px solid rgb(255 255 255 / 14%);
  border-radius: 8px;
  background: rgb(255 255 255 / 8%);
  padding: 12px;
}

.result-stack span {
  display: block;
  color: rgb(255 255 255 / 58%);
  font-size: 12px;
  font-weight: 760;
  text-transform: uppercase;
}

.result-stack strong {
  display: block;
  margin-top: 5px;
  color: #ffffff;
  font-size: 15px;
  line-height: 1.3;
}

.demo-form {
  display: grid;
  gap: 12px;
}

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

.demo-form label {
  display: grid;
  gap: 6px;
  color: rgb(255 255 255 / 62%);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.demo-form select,
.demo-form input {
  width: 100%;
  min-height: 42px;
  border: 1px solid rgb(255 255 255 / 18%);
  border-radius: 8px;
  background: rgb(255 255 255 / 10%);
  color: #ffffff;
  padding: 0 11px;
  font-size: 14px;
  font-weight: 760;
  text-transform: none;
}

.demo-form select option {
  color: var(--ink);
}

.demo-form input::placeholder {
  color: rgb(255 255 255 / 42%);
}

.endpoint-details {
  border: 1px solid rgb(255 255 255 / 14%);
  border-radius: 8px;
  background: rgb(255 255 255 / 7%);
  padding: 12px;
}

.endpoint-details summary {
  color: #ffffff;
  cursor: pointer;
  font-size: 13px;
  font-weight: 850;
}

.endpoint-details label {
  margin-top: 12px;
}

.endpoint-details p {
  margin: 9px 0 0;
  color: rgb(255 255 255 / 58%);
  font-size: 12px;
  line-height: 1.45;
}

.demo-submit-row {
  display: grid;
  gap: 10px;
}

.demo-submit-row .button[disabled] {
  opacity: .56;
  cursor: not-allowed;
}

.demo-message {
  min-height: 38px;
  border: 1px solid rgb(255 255 255 / 14%);
  border-radius: 8px;
  background: rgb(255 255 255 / 7%);
  padding: 10px 12px;
  color: rgb(255 255 255 / 70%);
  font-size: 13px;
  line-height: 1.35;
}

.demo-message.is-error {
  border-color: rgb(217 77 86 / 55%);
  background: rgb(217 77 86 / 16%);
  color: #ffffff;
}

.demo-message.is-success {
  border-color: rgb(31 157 114 / 55%);
  background: rgb(31 157 114 / 16%);
  color: #ffffff;
}

.atom-list {
  display: grid;
  gap: 10px;
}

.atom-card {
  border: 1px solid rgb(255 255 255 / 14%);
  border-radius: 8px;
  background: rgb(255 255 255 / 7%);
  padding: 12px;
}

.atom-card strong {
  display: block;
  color: #ffffff;
}

.atom-card span {
  display: block;
  margin-top: 6px;
  color: rgb(255 255 255 / 66%);
  font-size: 12px;
  line-height: 1.45;
}

.section {
  padding: 82px 0;
}

.section.alt {
  background: #ffffff;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(280px, .65fr);
  gap: 36px;
  align-items: end;
  margin-bottom: 34px;
}

.section-head.centered {
  display: block;
  max-width: 820px;
  text-align: left;
}

.section-head h2,
.research-copy h2,
.cta-inner h2 {
  margin: 0;
  color: var(--navy);
  font-size: 48px;
  line-height: 1.04;
  letter-spacing: 0;
}

.section-head p,
.card p,
.evidence-card p,
.open-layout p,
.cta-inner p,
.research-copy p {
  color: var(--muted);
  line-height: 1.65;
}

.problem-solution {
  background: #ffffff;
}

.workflow-compare {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 30px;
}

.flow-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  padding: 26px;
}

.flow-card.accent {
  border-color: rgb(31 157 114 / 32%);
  background: linear-gradient(180deg, #ffffff 0%, #eefaf5 100%);
}

.flow-label {
  display: inline-block;
  color: var(--amber);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.flow-card ol {
  display: grid;
  gap: 10px;
  margin: 22px 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.flow-card li {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  color: var(--navy);
  font-weight: 760;
}

.flow-card li::before {
  counter-increment: step;
  content: counter(step);
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--wash);
  color: var(--navy);
  font-size: 13px;
  font-weight: 850;
}

.flow-card.accent li::before {
  background: var(--green);
  color: #ffffff;
}

.flow-card strong {
  display: inline-flex;
  border-radius: 8px;
  background: var(--navy);
  padding: 10px 12px;
  color: #ffffff;
  font-size: 20px;
}

.flow-card.accent strong {
  background: var(--green);
}

.must-have {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  border: 1px solid rgb(31 157 114 / 30%);
  border-radius: 8px;
  background: #f0fbf6;
  margin-top: 18px;
  padding: 18px;
}

.must-have svg {
  width: 30px;
  height: 30px;
  color: var(--green);
}

.must-have p {
  margin: 0;
  color: var(--navy);
  font-size: 18px;
  font-weight: 760;
  line-height: 1.45;
}

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

.card {
  min-height: 230px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  padding: 24px;
}

.card .kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--amber);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.card .kicker svg {
  width: 16px;
  height: 16px;
}

.card h3 {
  margin: 18px 0 0;
  color: var(--navy);
  font-size: 22px;
  line-height: 1.15;
}

.research {
  background: #eef3f6;
}

.research-layout,
.open-layout {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, .7fr);
  gap: 36px;
  align-items: center;
}

.research-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.highlight-panel,
.repo-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  padding: 26px;
  box-shadow: var(--shadow);
}

.highlight-panel h3 {
  margin: 0 0 18px;
  color: var(--navy);
  font-size: 26px;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
  line-height: 1.5;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: var(--green);
}

.check-list li::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 8px;
  width: 4px;
  height: 8px;
  border-right: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  transform: rotate(45deg);
}

.evidence {
  background: #ffffff;
}

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

.evidence-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.evidence-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
}

.evidence-card div {
  padding: 18px;
}

.evidence-card strong {
  display: block;
  color: var(--navy);
  font-size: 19px;
}

.evidence-card p {
  margin-bottom: 0;
  font-size: 14px;
}

.open-source {
  background: var(--navy);
  color: #ffffff;
}

.open-source h2,
.open-source .eyebrow {
  color: #ffffff;
}

.open-layout p {
  color: rgb(255 255 255 / 76%);
  font-size: 17px;
}

.open-actions .secondary {
  background: rgb(255 255 255 / 10%);
  color: #ffffff;
  border-color: rgb(255 255 255 / 28%);
}

.platform-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.platform-logo-card {
  min-height: 104px;
  display: grid;
  align-content: center;
  gap: 12px;
  border: 1px solid rgb(255 255 255 / 18%);
  border-radius: 8px;
  background: #ffffff;
  padding: 18px;
}

.platform-logo-card img {
  width: min(190px, 100%);
  max-height: 44px;
  object-fit: contain;
  object-position: left center;
}

.platform-logo-card span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 820;
}

.repo-panel {
  background: rgb(255 255 255 / 8%);
  border-color: rgb(255 255 255 / 16%);
  box-shadow: none;
}

.repo-title {
  display: flex;
  align-items: center;
  gap: 14px;
}

.repo-title .repo-mark {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
}

.repo-title span {
  display: block;
  color: rgb(255 255 255 / 62%);
  font-size: 13px;
}

.repo-title strong {
  display: block;
  color: #ffffff;
  font-size: 28px;
}

.repo-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 24px;
}

.repo-stats div {
  border: 1px solid rgb(255 255 255 / 16%);
  border-radius: 8px;
  background: rgb(255 255 255 / 8%);
  padding: 16px;
}

.repo-stats strong {
  display: block;
  color: #ffffff;
  font-size: 24px;
  line-height: 1;
}

.repo-stats span,
.repo-note {
  color: rgb(255 255 255 / 62%);
}

.repo-stats span {
  display: block;
  margin-top: 8px;
  font-size: 13px;
}

.repo-note {
  margin: 16px 0 0;
  font-size: 13px;
}

.benchmark {
  background: #ffffff;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

th,
td {
  border-bottom: 1px solid var(--line);
  padding: 16px;
  text-align: left;
  vertical-align: top;
}

th {
  background: #f6f8fb;
  color: var(--navy);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .06em;
  text-transform: uppercase;
}

td {
  color: var(--muted);
  line-height: 1.45;
}

td:first-child {
  color: var(--navy);
  font-weight: 850;
}

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

.winner-row td {
  background: #f0fbf6;
}

.benchmark-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.benchmark-links a {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  padding: 10px 13px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 820;
}

.benchmark-links a:hover {
  border-color: rgb(31 157 114 / 48%);
  color: var(--green);
}

.cta-section {
  border-top: 1px solid var(--line);
  background: #f8fafc;
}

.cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
}

.cta-inner p {
  max-width: 720px;
}

.site-footer {
  background: #0f2435;
  color: rgb(255 255 255 / 78%);
}

.footer-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 64px 0 30px;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(220px, .9fr) minmax(280px, 1.25fr) minmax(150px, .48fr) minmax(220px, .7fr);
  gap: 34px;
  align-items: start;
}

.footer-brand img {
  width: 210px;
  height: auto;
}

.footer-brand p {
  max-width: 290px;
  margin: 22px 0 0;
  font-size: 17px;
  line-height: 1.5;
}

.footer-main h2 {
  margin: 0 0 16px;
  color: #ffffff;
  font-size: 14px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.footer-main p {
  margin: 0 0 10px;
  line-height: 1.6;
}

.footer-mission p {
  max-width: 470px;
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links a,
.footer-company a {
  color: #ffffff;
}

.footer-links a:hover,
.footer-company a:hover {
  color: var(--green);
}

.footer-company strong {
  color: #ffffff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgb(255 255 255 / 16%);
  margin-top: 42px;
  padding-top: 22px;
  color: rgb(255 255 255 / 58%);
  font-size: 13px;
}

.footer-bottom p {
  margin: 0;
}

@media (max-width: 1100px) {
  .nav-links {
    gap: 12px;
  }

  .nav-links a:not(.button) {
    display: none;
  }

  .hero h1 {
    font-size: 60px;
  }

  .demo-body,
  .section-head,
  .research-layout,
  .open-layout,
  .footer-main,
  .cta-inner {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 760px) {
  .nav-wrap,
  .container,
  .hero-inner,
  .footer-inner {
    width: min(100% - 28px, 1180px);
  }

  .brand img {
    width: 154px;
  }

  .hero-inner {
    padding: 48px 0 28px;
  }

  .hero h1 {
    font-size: 42px;
    line-height: 1;
  }

  .hero .lede {
    font-size: 17px;
  }

  .hero-tags span {
    font-size: 13px;
  }

  .demo-dock {
    margin-top: 30px;
  }

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

  .demo-top-actions {
    width: 100%;
    justify-content: stretch;
  }

  .demo-status {
    width: 100%;
    justify-content: center;
  }

  .demo-preview,
  .demo-preview > img {
    min-height: 245px;
  }

  .example-tabs,
  .demo-field-grid,
  .workflow-compare,
  .grid-3,
  .evidence-grid,
  .platform-strip,
  .repo-stats {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 58px 0;
  }

  .section-head h2,
  .research-copy h2,
  .cta-inner h2 {
    font-size: 34px;
  }

  .card,
  .flow-card {
    min-height: auto;
  }

  .must-have {
    align-items: start;
  }

  .footer-inner {
    padding: 38px 0 24px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 420px) {
  .hero h1 {
    font-size: 36px;
  }

  .hero-actions,
  .research-actions,
  .open-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button,
  .upload-pill {
    width: 100%;
  }

  .demo-body {
    padding: 12px;
  }
}
