/* BuildMatch — distinct visual system (not RenovateMatch navy/gold) */

:root {
  --ink: #121614;
  --ink-soft: #3a433c;
  --muted: #6a746c;
  --line: #d7ddd6;
  --line-soft: #e8ece7;
  --paper: #f3f5f2;
  --white: #ffffff;
  --wash: #e7ece6;
  --accent: #0f5c42;
  --accent-dark: #0a4330;
  --accent-soft: #d8ebe2;
  --signal: #d9642c;
  --signal-dark: #b84e1c;
  --success: #1f6b4a;
  --success-bg: #e5f3ec;
  --shadow-sm: 0 1px 2px rgba(18, 22, 20, 0.06);
  --shadow-md: 0 10px 28px rgba(18, 22, 20, 0.08);
  --shadow-lg: 0 24px 48px rgba(18, 22, 20, 0.12);
  --radius: 6px;
  --radius-lg: 10px;
  --radius-xl: 14px;
  --font-sans: "Manrope", "Segoe UI", system-ui, sans-serif;
  --font-display: "Newsreader", Georgia, "Times New Roman", serif;
  --header-h: 72px;
  --container: 1120px;
  --gutter: clamp(1.25rem, 4vw, 2.25rem);
  --section-gap: clamp(4rem, 8vw, 6.5rem);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --scroll-offset: calc(var(--header-h) + 16px);
}

::selection {
  background: rgba(15, 92, 66, 0.22);
  color: var(--ink);
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

body.has-mobile-cta {
  padding-bottom: 76px;
}

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

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  padding: 0.75rem 1rem;
  background: var(--ink);
  color: var(--white);
  text-decoration: none;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.container {
  width: min(var(--container), 100% - var(--gutter) * 2);
  margin-inline: auto;
}

.section {
  padding-block: var(--section-gap);
}

.section-wash {
  background: var(--white);
  border-block: 1px solid var(--line);
}

.section-label {
  margin: 0 0 0.85rem;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--accent);
}

.section h1,
.section h2,
.hero h1 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.12;
}

.section h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.9rem, 4vw, 2.75rem);
  max-width: 18ch;
}

.section-lead {
  margin: 0;
  max-width: 54ch;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.narrow {
  max-width: 760px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(243, 245, 242, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  border-bottom-color: var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: -0.03em;
  font-size: 1.15rem;
}

.brand span {
  color: var(--accent);
  font-weight: 700;
}

.brand-mark {
  border-radius: 5px;
}

.site-nav {
  display: flex;
  gap: 1.35rem;
}

.site-nav a {
  text-decoration: none;
  color: var(--ink-soft);
  font-weight: 600;
  font-size: 0.94rem;
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 16px;
  height: 1.5px;
  background: var(--ink);
}

.mobile-nav {
  display: none;
  padding: 0.5rem var(--gutter) 1rem;
  border-top: 1px solid var(--line);
  background: var(--white);
}

.mobile-nav a {
  display: block;
  padding: 0.75rem 0;
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid var(--line-soft);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 46px;
  padding: 0.7rem 1.15rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.15s var(--ease), background 0.15s var(--ease), border-color 0.15s var(--ease);
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--accent-dark);
}

.btn-ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--ink);
}

.btn-ghost:hover {
  border-color: var(--ink-soft);
  background: var(--white);
}

.btn-signal {
  background: var(--signal);
  color: var(--white);
}

.btn-signal:hover {
  background: var(--signal-dark);
}

.btn-small {
  min-height: 40px;
  padding: 0.45rem 0.9rem;
  font-size: 0.92rem;
}

.btn-arrow::after {
  content: "→";
}

/* —— Distinct hero: starter-first, not RenovateMatch cinematic split —— */
.bm-hero {
  padding: clamp(2.5rem, 6vw, 4.5rem) 0 clamp(3rem, 7vw, 5rem);
  background:
    radial-gradient(1200px 500px at 10% -10%, rgba(15, 92, 66, 0.08), transparent 60%),
    linear-gradient(180deg, #eef2ec 0%, var(--paper) 70%);
}

.bm-hero-inner {
  display: grid;
  gap: 2.5rem;
}

.bm-hero-copy {
  max-width: 760px;
}

.bm-hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(2.4rem, 6vw, 4rem);
  max-width: 14ch;
}

.bm-hero-lead {
  margin: 0 0 1.5rem;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--ink-soft);
  max-width: 46ch;
}

.starter {
  display: grid;
  gap: 0.75rem;
  padding: 1rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.starter label {
  font-weight: 700;
  font-size: 0.9rem;
}

.starter textarea {
  width: 100%;
  min-height: 96px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.85rem 0.95rem;
  resize: vertical;
  background: var(--paper);
}

.starter-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  align-items: center;
}

.starter-hint {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.bm-proof {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.bm-proof div {
  background: var(--white);
  padding: 1.1rem 1.15rem;
}

.bm-proof strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.bm-proof span {
  color: var(--muted);
  font-size: 0.9rem;
}

.flow-rail {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  margin-top: 2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
}

.flow-step {
  padding: 1.35rem 1.2rem;
  border-right: 1px solid var(--line);
}

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

.flow-step b {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.55rem;
}

.flow-step h3 {
  margin: 0 0 0.45rem;
  font-size: 1.1rem;
}

.flow-step p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.split-paths {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

.path-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.4rem, 3vw, 2rem);
  display: grid;
  gap: 1rem;
  align-content: start;
}

.path-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 500;
}

.path-card ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--ink-soft);
}

.path-card li + li {
  margin-top: 0.35rem;
}

.matrix {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: start;
  margin-top: 1.5rem;
}

.matrix-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.75rem;
}

.matrix-list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 0.75rem;
  align-items: start;
  padding: 0.95rem 1rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.matrix-list i {
  font-style: normal;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-weight: 800;
  font-size: 0.8rem;
}

.category-board {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 1.75rem;
}

.category-col {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem;
}

.category-col h3 {
  margin: 0 0 0.7rem;
  font-size: 0.95rem;
}

.category-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.category-col a {
  display: block;
  text-decoration: none;
  color: var(--ink-soft);
  padding: 0.35rem 0;
  font-weight: 560;
}

.category-col a:hover {
  color: var(--accent);
}

.workspace-preview {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  min-height: 320px;
  margin-top: 1.75rem;
  box-shadow: var(--shadow-md);
}

.workspace-preview aside {
  background: var(--ink);
  color: #dce6df;
  padding: 1.25rem;
}

.workspace-preview aside strong {
  display: block;
  color: #fff;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.workspace-preview aside a {
  display: block;
  text-decoration: none;
  padding: 0.45rem 0;
  color: #a9b8af;
  font-size: 0.92rem;
}

.workspace-preview aside a.active {
  color: #fff;
  font-weight: 700;
}

.workspace-preview main {
  padding: 1.35rem 1.4rem;
}

.workspace-preview .pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0.85rem 0 1.1rem;
}

.pill {
  display: inline-flex;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-size: 0.82rem;
  font-weight: 700;
}

.preview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.preview-tile {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.85rem;
  background: var(--paper);
}

.preview-tile b {
  display: block;
  margin-bottom: 0.25rem;
}

.preview-tile span {
  color: var(--muted);
  font-size: 0.88rem;
}

.cta-band {
  background: var(--ink);
  color: #e8eee9;
  padding: clamp(3rem, 7vw, 4.5rem) 0;
}

.cta-band h2 {
  margin: 0 0 0.6rem;
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  max-width: 16ch;
}

.cta-band p {
  margin: 0 0 1.25rem;
  color: #b7c4bb;
  max-width: 42ch;
}

.cta-band-inner {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  align-items: end;
  flex-wrap: wrap;
}

.cta-band .btn-ghost {
  border-color: rgba(255, 255, 255, 0.28);
  color: #fff;
}

.cta-band .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
}

.site-footer {
  background: #0d100e;
  color: #aeb8b1;
  padding: 3rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 1.5rem;
}

.site-footer .brand {
  color: #fff;
  margin-bottom: 0.75rem;
}

.site-footer h3,
.site-footer h4 {
  margin: 0 0 0.75rem;
  color: #fff;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer a {
  display: block;
  text-decoration: none;
  margin-bottom: 0.45rem;
  color: #aeb8b1;
}

.site-footer a:hover {
  color: #fff;
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.88rem;
}

.mobile-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  display: none;
  padding: 0.75rem 1rem calc(0.75rem + env(safe-area-inset-bottom));
  background: rgba(243, 245, 242, 0.96);
  border-top: 1px solid var(--line);
}

.mobile-cta .btn {
  width: 100%;
}

.form-page,
.app-shell,
.static-page {
  background: var(--paper);
}

.form-shell,
.app-main {
  padding: clamp(1.5rem, 4vw, 2.75rem) 0 4rem;
}

.form-card,
.app-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: clamp(1.2rem, 3vw, 1.7rem);
}

.field {
  display: grid;
  gap: 0.4rem;
}

.field label {
  font-weight: 700;
  font-size: 0.92rem;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.75rem 0.85rem;
  background: var(--white);
}

.form-grid.two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

.muted {
  color: var(--muted);
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1rem;
}

.trust-badges span {
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 999px;
  padding: 0.4rem 0.8rem;
  font-size: 0.88rem;
}

.feature-list {
  margin: 1rem 0 0;
  padding: 1.1rem 1.25rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

@media (max-width: 980px) {
  .site-nav,
  .header-actions .btn-ghost {
    display: none;
  }

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

  .mobile-nav:not([hidden]) {
    display: block;
  }

  .bm-proof,
  .flow-rail,
  .split-paths,
  .matrix,
  .category-board,
  .workspace-preview,
  .footer-grid,
  .form-grid.two,
  .preview-grid {
    grid-template-columns: 1fr;
  }

  .flow-step {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

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

  .mobile-cta {
    display: block;
  }
}

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

  .btn:hover {
    transform: none;
  }
}

/* —— Hero stage: copy + live product visual —— */
.hero-stage {
  position: relative;
  color: #f4f7f4;
  overflow: hidden;
  min-height: min(92vh, 880px);
}

.hero-stage-bg {
  position: absolute;
  inset: 0;
}

.hero-stage-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-stage-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(8, 14, 11, 0.88) 0%, rgba(8, 14, 11, 0.72) 42%, rgba(8, 14, 11, 0.45) 70%, rgba(8, 14, 11, 0.55) 100%),
    linear-gradient(0deg, rgba(8, 14, 11, 0.55) 0%, transparent 40%);
}

.hero-stage-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  padding: clamp(5.5rem, 11vw, 7.5rem) 0 clamp(3rem, 6vw, 4.5rem);
}

.hero-stage-copy h1 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.4rem, 5.4vw, 3.85rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  max-width: 12ch;
  color: #fff;
}

.hero-bleed-lead {
  margin: 0 0 1.6rem;
  font-size: clamp(1.05rem, 2vw, 1.22rem);
  line-height: 1.55;
  max-width: 42ch;
  color: rgba(244, 247, 244, 0.88);
}

.product-stage {
  display: grid;
  gap: 0.65rem;
  color: var(--ink);
}

.ps-pipeline {
  display: grid;
  gap: 0.5rem;
  padding: 0.35rem;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(6px);
}

.ps-arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 1.1rem;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0;
}

.ps-arrow::before {
  content: "";
  width: 2px;
  height: 0.55rem;
  background: rgba(255, 255, 255, 0.35);
  border-radius: 2px;
}

.ps-arrow::after {
  content: "";
  position: absolute;
  margin-top: 0.45rem;
  border: 5px solid transparent;
  border-top-color: rgba(255, 255, 255, 0.45);
}

.ps-card {
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(215, 221, 214, 0.95);
  border-radius: 12px;
  padding: 1rem 1.1rem;
  box-shadow: 0 12px 32px rgba(8, 14, 11, 0.18);
}

.ps-engine {
  border-left: 3px solid var(--accent);
  background: linear-gradient(90deg, rgba(216, 235, 226, 0.45), rgba(255, 255, 255, 0.98));
}

.ps-matched .ps-metric,
.ps-card .ps-metric {
  color: var(--accent-dark);
}

.ps-compare .ps-compare-row span {
  background: var(--accent-soft);
  color: var(--accent-dark);
  border: 1px solid rgba(15, 92, 66, 0.12);
  font-weight: 700;
}

.ps-note {
  font-size: 0.76rem;
  color: rgba(244, 247, 244, 0.65);
  text-align: center;
}

@media (max-width: 960px) {
  .hero-stage {
    min-height: auto;
  }

  .hero-stage-grid {
    padding-top: 5.5rem;
    padding-bottom: 2.5rem;
  }

  .product-stage {
    margin-top: 0.5rem;
  }
}

.ps-steps {
  margin: 0.25rem 0 0;
  padding-left: 1rem;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.ps-steps li + li {
  margin-top: 0.2rem;
}

.ps-engine {
  border-left: 3px solid var(--accent);
}

.ps-card {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(215, 221, 214, 0.9);
  border-radius: var(--radius-lg);
  padding: 0.95rem 1.05rem;
  box-shadow: var(--shadow-md);
}

.ps-kicker {
  margin: 0 0 0.25rem;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 750;
  color: var(--muted);
}

.ps-card h2 {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 500;
}

.ps-card dl {
  margin: 0;
  display: grid;
  gap: 0.35rem;
}

.ps-card dl div {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 0.35rem;
  font-size: 0.92rem;
}

.ps-card dt { color: var(--muted); }
.ps-card dd { margin: 0; }

.ps-flow {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.ps-flow span {
  background: rgba(15, 92, 66, 0.92);
  color: #fff;
  border-radius: 999px;
  padding: 0.35rem 0.7rem;
  font-size: 0.78rem;
  font-weight: 650;
}

.ps-metric {
  margin: 0.15rem 0 0.55rem;
  font-weight: 750;
  font-size: 1.05rem;
}

.ps-matched ul {
  margin: 0;
  padding-left: 1rem;
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.ps-matched li + li { margin-top: 0.25rem; }

.ps-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
}

.ps-compare-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin: 0.35rem 0 0;
}

.ps-compare-row span {
  background: var(--wash);
  border-radius: 4px;
  padding: 0.25rem 0.45rem;
  font-size: 0.75rem;
  font-weight: 650;
}

.ps-note {
  margin: 0.15rem 0 0;
  font-size: 0.78rem;
  color: rgba(244, 247, 244, 0.72);
}

.demo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.75rem;
}

.demo-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.15rem, 2.5vw, 1.5rem);
}

.demo-card h3 {
  margin: 0.35rem 0 0.55rem;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 500;
}

.demo-card p:last-child {
  margin: 0;
  color: var(--ink-soft);
}

@media (max-width: 960px) {
  .hero-stage-grid,
  .ps-split,
  .demo-grid {
    grid-template-columns: 1fr;
  }
}

.section-label.on-dark {
  color: #9fd6bf;
}

.btn-on-dark {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: #fff;
}

.btn-on-dark:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}

.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  padding: 1.1rem 0;
}

.trust-bar-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.75rem;
  text-align: center;
  font-weight: 650;
  font-size: 0.92rem;
  color: var(--ink-soft);
}

.plain-list {
  margin: 1.25rem 0;
  padding-left: 1.15rem;
  color: var(--ink-soft);
}

.plain-list li + li {
  margin-top: 0.4rem;
}

.experience-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.75rem;
}

.experience-panel > div {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.2rem, 3vw, 1.75rem);
}

.experience-panel h3 {
  margin: 0.35rem 0 1rem;
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 500;
}

.eyebrow {
  margin: 0;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--muted);
}

.meta-dl {
  margin: 0;
  display: grid;
  gap: 0.65rem;
}

.meta-dl div {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 0.5rem;
}

.meta-dl dt {
  color: var(--muted);
}

.meta-dl dd {
  margin: 0;
}

.match-stack {
  display: grid;
  gap: 0.65rem;
}

.match-stack article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.85rem 0.95rem;
  background: var(--paper);
}

.match-stack strong {
  display: block;
  margin-bottom: 0.2rem;
}

.match-stack span {
  color: var(--muted);
  font-size: 0.9rem;
}

.tiny {
  font-size: 0.85rem;
  margin-top: 0.85rem;
}

@media (max-width: 900px) {
  .trust-bar-grid,
  .experience-panel {
    grid-template-columns: 1fr;
  }
}

/* Keep legacy class hooks used by older pages from breaking */
.hero,
.hero-cinematic,
.hero-grid,
.audience-grid,
.steps-grid,
.trust-strip,
.product-preview-card {
  /* neutralized RenovateMatch cinematic patterns */
}

.hero-cinematic {
  padding: 3rem 0;
}

.audience-grid,
.steps-grid {
  display: grid;
  gap: 1rem;
}

.audience-card,
.step-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
}
/* v40 20260808T145011Z */
/* stamp 1786200669 */
/* deploy p0-1786200890 */
