:root {
  --bg: #f4f6f4;
  --paper: #ffffff;
  --ink: #17211d;
  --muted: #5d6962;
  --line: #d9e0da;
  --teal: #0f766e;
  --teal-dark: #0d514d;
  --clay: #9a3412;
  --olive: #3f6212;
  --gold: #b7791f;
  --soft-teal: #e6f4f1;
  --soft-clay: #f8ebe4;
  --soft-olive: #edf5e4;
  --shadow: 0 18px 50px rgba(23, 33, 29, .10);
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

main [id] {
  scroll-margin-top: 92px;
}

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.6;
}

a {
  color: var(--teal-dark);
  text-decoration-thickness: .08em;
  text-underline-offset: .18em;
}

a:hover {
  color: var(--clay);
}

.progress {
  position: fixed;
  inset: 0 0 auto 0;
  height: 4px;
  z-index: 20;
  background: transparent;
}

.progress span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--teal);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(217, 224, 218, .8);
  background: rgba(244, 246, 244, .92);
  backdrop-filter: blur(12px);
}

.topbar {
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 14px 22px;
  font-size: .92rem;
}

.topbar a {
  color: var(--muted);
  text-decoration: none;
}

.topbar a:hover,
.topbar a.active {
  color: var(--teal-dark);
}

.topbar .brand {
  margin-right: auto;
  color: var(--ink);
  font-weight: 760;
}

.hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 76vh;
  padding: 54px 22px 32px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--ink);
  color: #ffffff;
  isolation: isolate;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(10, 15, 13, .86) 0%, rgba(10, 15, 13, .62) 42%, rgba(10, 15, 13, .18) 100%),
    linear-gradient(0deg, rgba(10, 15, 13, .72) 0%, rgba(10, 15, 13, .18) 62%);
}

.hero-art {
  position: absolute;
  inset: 0;
  z-index: -2;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 38px;
  align-items: center;
  width: min(1180px, 100%);
  max-width: 1180px;
  margin: 0 auto;
}

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

.eyebrow {
  margin: 0 0 12px;
  color: #f7c873;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  line-height: 1.12;
  letter-spacing: 0;
}

h1 {
  max-width: 860px;
  margin: 0;
  font-size: 4.6rem;
}

h2 {
  margin: 0 0 18px;
  font-size: 2.35rem;
}

h3 {
  margin: 0 0 10px;
  font-size: 1.18rem;
}

.subtitle {
  max-width: 760px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, .88);
  font-size: 1.22rem;
}

.hero-use {
  max-width: 720px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, .82);
  font-size: 1rem;
}

.image-disclosure {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, .82);
  font-size: .9rem;
}

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

.hero-start-cards {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin-top: 24px;
  max-width: 1120px;
}

.hero-start-cards a {
  min-height: 116px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, .26);
  border-radius: 8px;
  color: #fff;
  background: rgba(255, 255, 255, .1);
  text-decoration: none;
}

.hero-start-cards strong,
.hero-start-cards span {
  display: block;
}

.hero-start-cards strong {
  margin-bottom: 7px;
  font-size: .86rem;
}

.hero-start-cards span {
  color: rgba(255, 255, 255, .78);
  font-size: .78rem;
  line-height: 1.35;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 750;
  text-decoration: none;
}

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

.button.secondary {
  background: rgba(255, 255, 255, .1);
  color: #ffffff;
  border-color: rgba(255, 255, 255, .42);
}

.flowchart figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: .92rem;
}

.article-shell {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 32px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 34px 22px 62px;
}

.toc {
  align-self: start;
  position: sticky;
  top: 68px;
}

.toc-box {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.toc-title {
  margin: 0 0 12px;
  font-weight: 800;
}

.toc ol {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  font-size: .92rem;
}

.toc a {
  color: var(--muted);
  text-decoration: none;
}

.toc a.active {
  color: var(--teal-dark);
  font-weight: 760;
}

.article {
  display: grid;
  gap: 22px;
  min-width: 0;
}

.content-section {
  min-width: 0;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 8px 28px rgba(23, 33, 29, .04);
}

#product-details {
  scroll-margin-top: 104px;
}

.content-section p {
  margin: 0 0 16px;
  color: #26322d;
  font-size: 1.03rem;
}

.content-section p:last-child {
  margin-bottom: 0;
}

.meta-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.meta-strip span {
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: .82rem;
  font-weight: 700;
}

.insight {
  margin: 24px 0 0;
  padding: 18px 20px;
  border-left: 5px solid var(--teal);
  border-radius: 8px;
  background: var(--soft-teal);
}

.insight p {
  margin: 0;
}

.quick-picks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.pick-card {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfb;
}

.pick-card:nth-child(2) {
  background: #fff7df;
}

.pick-card:nth-child(3) {
  background: var(--soft-teal);
}

.pick-card:nth-child(4) {
  background: var(--soft-clay);
}

.pick-label {
  display: inline-block;
  margin: 0 0 10px;
  padding: 4px 9px;
  border: 1px solid rgba(15, 118, 110, .28);
  border-radius: 999px;
  color: var(--teal-dark);
  background: rgba(255, 255, 255, .65);
  font-size: .78rem;
  font-weight: 820;
  text-transform: uppercase;
}

.content-section .pick-card p {
  margin-bottom: 10px;
}

.framework-grid,
.profile-grid,
.red-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 22px 0;
}

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

.framework-grid > div,
.profile-grid > div,
.red-grid > div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfb;
}

.red-grid > div:nth-child(1) {
  background: var(--soft-teal);
}

.red-grid > div:nth-child(2) {
  background: var(--soft-clay);
}

.red-grid > div:nth-child(3) {
  background: var(--soft-olive);
}

.red-grid ul,
.references ul {
  margin: 0;
  padding-left: 20px;
}

.red-grid li,
.references li {
  margin: 8px 0;
}

.decision-map {
  margin: 26px 0 4px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfb;
}

.decision-map figcaption {
  margin-bottom: 14px;
  color: var(--muted);
  font-size: .92rem;
}

.decision-head,
.decision-row {
  display: grid;
  grid-template-columns: 1.05fr 1.15fr 1fr 1.1fr;
  gap: 10px;
}

.decision-head {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: .78rem;
  font-weight: 820;
  text-transform: uppercase;
}

.decision-row {
  position: relative;
  margin-bottom: 10px;
}

.decision-row > div {
  min-height: 126px;
  padding: 14px;
  border: 1px solid #c9d5ce;
  border-radius: 8px;
  background: #fff;
}

.decision-row > div:nth-child(2) {
  background: var(--soft-teal);
}

.decision-row > div:nth-child(3) {
  background: var(--soft-clay);
}

.decision-row > div:nth-child(4) {
  background: #fff7df;
}

.decision-row strong,
.decision-row span {
  display: block;
}

.decision-row strong {
  margin-bottom: 6px;
}

.decision-row span {
  color: #31403a;
  font-size: .92rem;
  line-height: 1.42;
}

.flow-row {
  display: grid;
  justify-items: center;
  gap: 12px;
  margin: 12px 0;
}

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

.flow-node {
  display: grid;
  align-items: center;
  min-height: 72px;
  width: 100%;
  padding: 14px;
  border: 1px solid #c9d5ce;
  border-radius: 8px;
  background: #ffffff;
  color: var(--ink);
  text-align: center;
  font-weight: 760;
}

.flow-node.start,
.flow-node.finish {
  max-width: 520px;
  background: var(--soft-teal);
  border-color: #a7d8d1;
}

.flow-node.accent-a {
  background: var(--soft-clay);
}

.flow-node.accent-b {
  background: #fff7df;
}

.flow-node.accent-c {
  background: var(--soft-olive);
}

.table-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin: 20px 0 12px;
}

.table-toolbar label {
  color: var(--muted);
  font-weight: 780;
}

.toolbar-label {
  color: var(--muted);
  font-weight: 820;
}

.table-toolbar input {
  min-width: min(340px, 100%);
  min-height: 42px;
  padding: 8px 12px;
  border: 1px solid #c9d5ce;
  border-radius: 8px;
  color: var(--ink);
  font: inherit;
}

.filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  width: 100%;
}

.filter-chips label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 34px;
  padding: 5px 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font-size: .82rem;
  font-weight: 760;
}

.filter-chips input {
  min-width: 0;
  width: auto;
  min-height: 0;
  margin: 0;
}

.filter-status {
  width: 100%;
  margin: 0;
  color: var(--muted);
  font-size: .88rem;
}

.spec-help {
  margin: 12px 0 16px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfb;
}

.spec-help summary {
  cursor: pointer;
  color: var(--teal-dark);
  font-weight: 820;
}

.source-badge {
  display: inline-flex;
  margin: 0 0 6px;
  padding: 3px 7px;
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 820;
}

.source-badge + a {
  display: block;
}

.source-badge.official {
  background: var(--soft-teal);
  color: var(--teal-dark);
}

.source-badge.fallback {
  background: #fff1d6;
  color: #7a4a0a;
}

.fit-map {
  display: grid;
  gap: 10px;
  margin: 20px 0;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfb;
}

.fit-axis,
.fit-lane {
  display: grid;
  grid-template-columns: 150px .8fr 2fr .9fr;
  gap: 10px;
}

.fit-axis {
  color: var(--muted);
  font-size: .78rem;
  font-weight: 820;
  text-transform: uppercase;
}

.fit-lane-label,
.fit-empty,
.fit-card,
.setup-grid label,
.tool-result,
.rubric-calculator {
  border: 1px solid var(--line);
  border-radius: 8px;
}

.fit-lane-label {
  display: grid;
  place-items: center;
  min-height: 90px;
  padding: 12px;
  background: #eef4f1;
  color: var(--teal-dark);
  font-weight: 820;
  text-align: center;
}

.fit-empty {
  display: grid;
  align-items: center;
  min-height: 90px;
  padding: 12px;
  background: #fff;
  color: var(--muted);
  font-size: .88rem;
}

.fit-card-stack {
  display: grid;
  gap: 8px;
}

.fit-card {
  display: grid;
  gap: 4px;
  padding: 12px;
  background: #ffffff;
}

.fit-card strong {
  color: var(--ink);
}

.fit-card span {
  color: #31403a;
  font-size: .9rem;
}

.fit-card em {
  color: var(--muted);
  font-size: .86rem;
  font-style: normal;
}

.fit-card[hidden],
.fit-map-table tr[hidden] {
  display: none;
}

.setup-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin: 20px 0 14px;
}

.setup-grid label {
  display: grid;
  gap: 6px;
  padding: 12px;
  background: #fbfcfb;
  color: var(--muted);
  font-size: .84rem;
  font-weight: 780;
}

.setup-grid input,
.setup-grid select {
  width: 100%;
  min-height: 42px;
  padding: 8px 10px;
  border: 1px solid #c9d5ce;
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}

.tool-result {
  margin-top: 14px;
  padding: 14px;
  background: #f7f2e8;
  color: #3c3327;
}

.tool-result.pass {
  background: var(--soft-teal);
  color: var(--teal-dark);
}

.tool-result.warn {
  background: #fff7df;
  color: #70470a;
}

.tool-result.risk {
  background: var(--soft-clay);
  color: #7c2f14;
}

.buyer-callout,
.state-grid,
.linear-decision-list,
.utility-section,
.glossary-section {
  margin: 22px 0;
}

.buyer-callout {
  padding: 16px;
  border: 1px solid var(--line);
  border-left: 5px solid var(--teal);
  border-radius: 8px;
  background: #fbfcfb;
}

.parent-note {
  border-left-color: var(--gold);
}

.shop-check {
  border-left-color: var(--olive);
}

.callout-row,
.state-grid,
.glossary-grid,
.linear-decision-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 14px;
}

.callout-row p,
.state-grid div,
.linear-decision-list article,
.glossary-grid details,
.repertoire-fallback details {
  margin: 0;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.state-grid strong,
.state-grid span,
.linear-decision-list h4,
.linear-decision-list dt,
.linear-decision-list dd {
  display: block;
}

.state-grid strong {
  color: var(--teal-dark);
}

.state-grid span {
  margin-top: 6px;
  color: var(--muted);
}

.linear-decision-list h3 {
  grid-column: 1 / -1;
}

.linear-decision-list h4 {
  margin: 0 0 10px;
  color: var(--teal-dark);
}

.linear-decision-list dl,
.tool-result dl {
  display: grid;
  gap: 8px;
  margin: 0;
}

.linear-decision-list dt,
.tool-result dt {
  color: var(--teal-dark);
  font-weight: 820;
}

.linear-decision-list dd,
.tool-result dd {
  margin: -6px 0 4px;
  color: var(--muted);
}

.glossary-grid details,
.repertoire-fallback details {
  align-self: start;
}

.glossary-grid summary,
.repertoire-fallback summary {
  cursor: pointer;
  color: var(--teal-dark);
  font-weight: 820;
}

.glossary-grid p,
.repertoire-fallback p {
  margin: 10px 0 0;
}

.repertoire-fallback {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.compare-result dl {
  margin-top: 12px;
}

.rubric-calculator {
  margin: 22px 0;
  padding: 18px;
  background: #fbfcfb;
}

.rubric-calculator h3 {
  margin-top: 0;
}

.confidence {
  display: inline-flex;
  padding: 3px 7px;
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 820;
}

.confidence.high {
  background: var(--soft-teal);
  color: var(--teal-dark);
}

.confidence.medium {
  background: #fff7df;
  color: #70470a;
}

.confidence.low {
  background: var(--soft-clay);
  color: #7c2f14;
}

.table-wrap {
  min-width: 0;
  max-width: 100%;
  width: 100%;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
}

table {
  width: 100%;
  min-width: 900px;
  border-collapse: collapse;
  background: #ffffff;
}

caption {
  padding: 12px 14px;
  color: var(--muted);
  text-align: left;
  font-weight: 780;
}

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

thead th {
  border-top: 0;
  background: #eef4f1;
  color: var(--ink);
  font-size: .88rem;
  text-transform: uppercase;
}

tbody tr:nth-child(even) td {
  background: #fbfcfb;
}

.table-note {
  margin-top: 12px;
  color: var(--muted);
  font-size: .92rem;
}

.mini-section {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.mini-section:first-of-type {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.two-column-note {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.measurement-guide {
  margin: 8px 0 28px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfb;
}

.measurement-guide figcaption {
  margin-bottom: 14px;
  color: var(--muted);
  font-weight: 780;
}

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

.measure-card {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.measure-card strong,
.measure-card p {
  display: block;
}

.measure-card p {
  margin-top: 8px;
  font-size: .92rem;
}

.measure-line {
  position: relative;
  display: block;
  height: 34px;
  margin-bottom: 10px;
  border-bottom: 3px solid var(--teal);
}

.measure-line::before,
.measure-line::after {
  content: "";
  position: absolute;
  bottom: -8px;
  width: 3px;
  height: 15px;
  background: var(--teal);
}

.measure-line::before {
  left: 0;
}

.measure-line::after {
  right: 0;
}

.measure-line.nut {
  width: 48%;
  border-color: var(--clay);
}

.measure-line.nut::before,
.measure-line.nut::after {
  background: var(--clay);
}

.measure-line.action {
  width: 26%;
  height: 46px;
  border-right: 3px solid var(--olive);
  border-bottom: 0;
}

.measure-line.action::before,
.measure-line.action::after {
  display: none;
}

details {
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

details:first-of-type {
  border-top: 0;
}

summary {
  cursor: pointer;
  font-weight: 820;
}

.two-column-note div {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfb;
}

.checklist {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding-left: 22px;
}

.checklist li {
  padding-left: 4px;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--ink);
  color: #dfe7e2;
  padding: 26px 22px;
  text-align: center;
}

.site-footer p {
  max-width: 900px;
  margin: 0 auto;
}

@media (max-width: 980px) {
  .hero-grid,
  .article-shell {
    grid-template-columns: 1fr;
  }

  .toc {
    position: static;
  }

  .toc-box {
    max-height: none;
  }

  .framework-grid,
  .quick-picks,
  .red-grid,
  .hero-start-cards,
  .measure-row,
  .setup-grid {
    grid-template-columns: 1fr;
  }

  .hero-start-cards {
    max-width: 620px;
  }
}

@media (max-width: 720px) {
  main [id] {
    scroll-margin-top: 124px;
  }

  .topbar {
    flex-wrap: wrap;
    gap: 8px 14px;
    overflow-x: visible;
    padding: 12px 16px;
    white-space: normal;
  }

  .topbar .brand {
    flex-basis: 100%;
    min-width: 0;
  }

  .hero {
    padding: 30px 16px 24px;
    min-height: 0;
  }

  .hero-art {
    object-position: 57% center;
  }

  .article-shell {
    padding: 22px 16px 44px;
  }

  .content-section {
    padding: 24px 18px;
  }

  .table-wrap {
    overflow: visible;
    border: 0;
  }

  table,
  caption,
  tbody,
  tr,
  td {
    display: block;
    width: 100%;
    min-width: 0;
  }

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

  caption {
    padding: 0 0 10px;
  }

  tbody tr {
    margin-bottom: 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    overflow: hidden;
    background: #ffffff;
  }

  tbody tr[hidden] {
    display: none;
  }

  td {
    display: grid;
    grid-template-columns: minmax(88px, .38fr) 1fr;
    gap: 12px;
    padding: 12px;
    border-top: 1px solid var(--line);
  }

  td:first-child {
    border-top: 0;
    background: #eef4f1;
    font-weight: 820;
  }

  tbody tr:nth-child(even) td {
    background: #ffffff;
  }

  tbody tr:nth-child(even) td:first-child {
    background: #eef4f1;
  }

  td::before {
    content: attr(data-label);
    color: var(--muted);
    font-size: .78rem;
    font-weight: 820;
    letter-spacing: 0;
    overflow-wrap: anywhere;
    text-transform: uppercase;
  }

  #product-details {
    scroll-margin-top: 148px;
  }

  #product-details td {
    grid-template-columns: minmax(0, 1fr);
    gap: 6px;
  }

  #product-details td::before {
    display: block;
    max-width: 100%;
    line-height: 1.35;
    white-space: normal;
  }

  .flow-row.split,
  .profile-grid,
  .two-column-note,
  .decision-head,
  .decision-row,
  .fit-axis,
  .fit-lane {
    grid-template-columns: 1fr;
  }

  .decision-head {
    display: none;
  }

  .fit-axis {
    display: none;
  }

  .decision-row > div {
    min-height: auto;
  }

  h1 {
    font-size: 2.35rem;
  }

  h2 {
    font-size: 1.9rem;
  }

  .hero-use,
  .hero-start-cards {
    display: none;
  }

  .hero-actions {
    margin-top: 20px;
  }

}

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

/* Phase 9E dark benchmark hero label. */
.hero :where(.eyebrow,.kicker){color:#ffd2c7!important;background:transparent!important}
