/* Military Benefits Tracker — mbtracker.app design system */

:root {
  --ink: #0c1018;
  --ink-2: #141a26;
  --ink-3: #1d2534;
  --paper: #ffffff;
  --paper-2: #f5f6f8;
  --paper-3: #eceef2;
  --text: #1a2130;
  --text-soft: #4b5567;
  --text-inverse: #f4f6f9;
  --text-inverse-soft: #b9c1cf;
  --brand: #c9a35c;
  --brand-strong: #a9823d;
  --green: #1f8a55;
  --green-soft: #e4f3ea;
  --line: #dfe3ea;
  --line-inverse: rgba(255, 255, 255, 0.12);
  --radius: 14px;
  --radius-lg: 22px;
  --shadow: 0 1px 2px rgba(12, 16, 24, 0.06), 0 8px 24px rgba(12, 16, 24, 0.08);
  --shadow-lg: 0 2px 6px rgba(12, 16, 24, 0.1), 0 20px 48px rgba(12, 16, 24, 0.18);
  --wrap: 1120px;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.6;
  color: var(--text);
  background: var(--paper);
}

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

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

a:hover {
  color: #14663e;
}

:focus-visible {
  outline: 3px solid var(--brand);
  outline-offset: 2px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ink);
  color: #fff;
  padding: 0.6rem 1rem;
  z-index: 100;
  border-radius: 0 0 8px 0;
}

.skip-link:focus {
  left: 0;
}

.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 20px;
}

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(12, 16, 24, 0.92);
  backdrop-filter: saturate(150%) blur(10px);
  border-bottom: 1px solid var(--line-inverse);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 64px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--text-inverse);
  font-weight: 700;
  font-size: 1.02rem;
  letter-spacing: 0.01em;
}

.brand img {
  width: 36px;
  height: 36px;
  border-radius: 9px;
}

.site-nav {
  margin-left: auto;
}

.site-nav ul {
  display: flex;
  gap: 0.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}

.site-nav a {
  display: block;
  padding: 0.5rem 0.75rem;
  color: var(--text-inverse-soft);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: 8px;
}

.site-nav a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
}

.nav-toggle {
  display: none;
  margin-left: auto;
  background: none;
  border: 1px solid var(--line-inverse);
  border-radius: 10px;
  padding: 0.5rem 0.7rem;
  color: var(--text-inverse);
  font: inherit;
  font-size: 0.9rem;
  cursor: pointer;
}

.header-cta {
  white-space: nowrap;
}

@media (max-width: 860px) {
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--ink);
    border-bottom: 1px solid var(--line-inverse);
    padding: 0.5rem 20px 1rem;
  }

  .site-nav.open {
    display: block;
  }

  .site-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .site-nav a {
    padding: 0.8rem 0.5rem;
    font-size: 1.05rem;
  }

  .header-cta {
    display: none;
  }

  .brand {
    font-size: 0.92rem;
    white-space: nowrap;
  }
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

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

.btn-primary {
  background: #fff;
  color: var(--ink);
  box-shadow: var(--shadow);
}

.btn-primary:hover {
  color: var(--ink);
  box-shadow: var(--shadow-lg);
}

.btn-dark {
  background: var(--ink);
  color: #fff;
  box-shadow: var(--shadow);
}

.btn-dark:hover {
  color: #fff;
  background: var(--ink-3);
}

.btn-outline {
  background: transparent;
  color: var(--text-inverse);
  border-color: rgba(255, 255, 255, 0.35);
}

.btn-outline:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.7);
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
}

.btn .apple-mark {
  width: 18px;
  height: 18px;
  flex: none;
}

/* ---------- Hero ---------- */

.hero {
  background:
    radial-gradient(1100px 520px at 78% -10%, rgba(201, 163, 92, 0.16), transparent 60%),
    radial-gradient(800px 480px at 8% 12%, rgba(31, 138, 85, 0.14), transparent 55%),
    var(--ink);
  color: var(--text-inverse);
  padding: 4.5rem 0 0;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 3rem;
  align-items: center;
}

.hero h1 {
  font-size: clamp(2.1rem, 4.6vw, 3.3rem);
  line-height: 1.12;
  margin: 0 0 1.1rem;
  letter-spacing: -0.02em;
  font-weight: 800;
}

.hero h1 .accent {
  color: var(--brand);
}

.hero .lede {
  font-size: 1.15rem;
  color: var(--text-inverse-soft);
  margin: 0 0 1.6rem;
  max-width: 34rem;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
}

.trust-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0 0 3rem;
}

.trust-chips li {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.87rem;
  font-weight: 600;
  color: var(--text-inverse-soft);
  border: 1px solid var(--line-inverse);
  border-radius: 999px;
  padding: 0.35rem 0.8rem;
  background: rgba(255, 255, 255, 0.04);
}

.trust-chips .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  flex: none;
}

.hero-shots {
  display: flex;
  gap: 1.2rem;
  align-items: flex-end;
  justify-content: center;
}

.hero-shots img {
  width: min(260px, 42vw);
  border-radius: 26px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-shots img:first-child {
  transform: translateY(28px);
}

@media (max-width: 860px) {
  .hero {
    padding-top: 3rem;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.2rem;
  }

  .hero-shots img:first-child {
    transform: none;
  }
}

/* ---------- Sections ---------- */

.section {
  padding: 4.5rem 0;
}

.section-alt {
  background: var(--paper-2);
}

.section-dark {
  background: var(--ink-2);
  color: var(--text-inverse);
}

.section-dark h2,
.section-dark h3 {
  color: #fff;
}

.section-dark p {
  color: var(--text-inverse-soft);
}

.kicker {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-strong);
  margin-bottom: 0.6rem;
}

.section-dark .kicker {
  color: var(--brand);
}

.section h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1.2;
  letter-spacing: -0.015em;
  margin: 0 0 0.7rem;
  font-weight: 800;
}

.section-intro {
  max-width: 44rem;
  color: var(--text-soft);
  margin: 0 0 2.4rem;
}

.section-dark .section-intro {
  color: var(--text-inverse-soft);
}

/* ---------- Cards & grids ---------- */

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

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

@media (max-width: 960px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 640px) {
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }
}

.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem 1.4rem 1.5rem;
  box-shadow: 0 1px 2px rgba(12, 16, 24, 0.04);
}

.card h3 {
  margin: 0 0 0.45rem;
  font-size: 1.08rem;
  font-weight: 750;
}

.card p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.95rem;
}

.card .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 11px;
  background: var(--green-soft);
  color: var(--green);
  font-size: 1.25rem;
  margin-bottom: 0.85rem;
}

/* Feature split rows */

.feature-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
  padding: 3.2rem 0;
  border-top: 1px solid var(--line);
}

.feature-row:first-of-type {
  border-top: 0;
  padding-top: 0;
}

.feature-row.reverse .feature-media {
  order: -1;
}

.feature-row h3 {
  font-size: clamp(1.35rem, 2.4vw, 1.7rem);
  margin: 0 0 0.7rem;
  letter-spacing: -0.01em;
  font-weight: 800;
}

.feature-row p {
  color: var(--text-soft);
}

.feature-row ul {
  padding-left: 0;
  list-style: none;
  margin: 1rem 0 1.3rem;
}

.feature-row ul li {
  position: relative;
  padding-left: 1.7rem;
  margin-bottom: 0.55rem;
  color: var(--text);
}

.feature-row ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.42em;
  width: 0.95em;
  height: 0.95em;
  border-radius: 50%;
  background: var(--green-soft);
  border: 2px solid var(--green);
}

.feature-media {
  display: flex;
  justify-content: center;
}

.feature-media img {
  width: min(300px, 78vw);
  border-radius: 26px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
}

.feature-note {
  font-size: 0.85rem;
  color: var(--text-soft);
  margin-top: 0.9rem;
}

@media (max-width: 860px) {
  .feature-row {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }

  .feature-row.reverse .feature-media {
    order: 0;
  }
}

/* ---------- Screenshot showcase ---------- */

.shots-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
}

.shots-grid figure {
  margin: 0;
}

.shots-grid img {
  border-radius: 22px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%;
}

.shots-grid figcaption {
  margin-top: 0.8rem;
  font-size: 0.9rem;
  color: var(--text-inverse-soft);
  text-align: center;
}

@media (max-width: 960px) {
  .shots-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .shots-grid {
    grid-template-columns: 1fr;
    max-width: 320px;
    margin: 0 auto;
  }
}

/* ---------- Steps ---------- */

.steps {
  list-style: none;
  counter-reset: step;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.2rem;
}

.steps li {
  counter-increment: step;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.3rem 1.2rem;
}

.steps li::before {
  content: counter(step);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--brand);
  font-weight: 800;
  margin-bottom: 0.7rem;
}

.steps h3 {
  font-size: 1rem;
  margin: 0 0 0.35rem;
}

.steps p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-soft);
}

@media (max-width: 960px) {
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .steps {
    grid-template-columns: 1fr;
  }
}

/* ---------- Free vs Pro table ---------- */

.compare-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.compare-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
}

.compare-table th,
.compare-table td {
  padding: 0.85rem 1.1rem;
  text-align: left;
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
}

.compare-table thead th {
  background: var(--ink);
  color: #fff;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
}

.compare-table thead th:nth-child(2),
.compare-table thead th:nth-child(3) {
  text-align: center;
}

.compare-table td:nth-child(2),
.compare-table td:nth-child(3) {
  text-align: center;
  font-weight: 700;
}

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

.yes {
  color: var(--green);
}

.no {
  color: #9aa3b2;
}

.pro-tag {
  display: inline-block;
  background: var(--brand);
  color: var(--ink);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
  vertical-align: middle;
}

/* ---------- Guide cards ---------- */

.guide-card {
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.35rem;
  text-decoration: none;
  color: var(--text);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.guide-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  color: var(--text);
}

.guide-card .cat {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-strong);
  margin-bottom: 0.5rem;
}

.guide-card h3 {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
  line-height: 1.35;
}

.guide-card p {
  margin: 0 0 1rem;
  font-size: 0.92rem;
  color: var(--text-soft);
  flex-grow: 1;
}

.guide-card .more {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--green);
}

/* ---------- FAQ ---------- */

.faq-list {
  max-width: 50rem;
  margin: 0 auto;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  margin-bottom: 0.8rem;
  overflow: hidden;
}

.faq-list summary {
  padding: 1.05rem 1.25rem;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

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

.faq-list summary::after {
  content: "+";
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--brand-strong);
  flex: none;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "\2212";
}

.faq-list .faq-body {
  padding: 0 1.25rem 1.15rem;
  color: var(--text-soft);
  font-size: 0.97rem;
}

.faq-list .faq-body p {
  margin-top: 0;
}

/* ---------- Final CTA ---------- */

.final-cta {
  text-align: center;
  background:
    radial-gradient(900px 420px at 50% -20%, rgba(201, 163, 92, 0.18), transparent 60%),
    var(--ink);
  color: var(--text-inverse);
  padding: 5rem 0;
}

.final-cta h2 {
  color: #fff;
}

.final-cta .app-badge-icon {
  width: 84px;
  height: 84px;
  border-radius: 20px;
  margin: 0 auto 1.4rem;
  box-shadow: var(--shadow-lg);
}

.final-cta p {
  color: var(--text-inverse-soft);
  max-width: 38rem;
  margin: 0 auto 1.8rem;
}

/* ---------- Disclaimer band ---------- */

.disclaimer-band {
  background: var(--paper-3);
  padding: 1.6rem 0;
  font-size: 0.85rem;
  color: var(--text-soft);
}

.disclaimer-band p {
  margin: 0.25rem 0;
  max-width: 60rem;
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--ink);
  color: var(--text-inverse-soft);
  padding: 3.5rem 0 2.5rem;
  font-size: 0.92rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

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

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer li {
  margin-bottom: 0.55rem;
}

.site-footer a {
  color: var(--text-inverse-soft);
  text-decoration: none;
}

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

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: #fff;
  font-weight: 700;
  margin-bottom: 0.9rem;
}

.footer-brand img {
  width: 34px;
  height: 34px;
  border-radius: 8px;
}

.footer-legal {
  border-top: 1px solid var(--line-inverse);
  padding-top: 1.6rem;
  font-size: 0.8rem;
  color: #8b93a3;
}

.footer-legal p {
  margin: 0.35rem 0;
  max-width: 62rem;
}

@media (max-width: 860px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 520px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- Guide article pages ---------- */

.breadcrumbs {
  font-size: 0.85rem;
  color: var(--text-soft);
  margin: 1.6rem 0 0;
}

.breadcrumbs ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  padding: 0;
  margin: 0;
}

.breadcrumbs li + li::before {
  content: "/";
  margin-right: 0.35rem;
  color: #a2aab8;
}

.breadcrumbs a {
  color: var(--text-soft);
}

.article-header {
  padding: 0.6rem 0 2.2rem;
}

.article-header h1 {
  font-size: clamp(1.85rem, 4vw, 2.6rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0.9rem 0 0.8rem;
  font-weight: 800;
}

.article-meta {
  font-size: 0.88rem;
  color: var(--text-soft);
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 3rem;
  padding-bottom: 3.5rem;
}

.article-body {
  max-width: 46rem;
}

.article-body h2 {
  font-size: 1.5rem;
  letter-spacing: -0.01em;
  margin: 2.4rem 0 0.8rem;
  font-weight: 800;
}

.article-body h3 {
  font-size: 1.15rem;
  margin: 1.8rem 0 0.6rem;
  font-weight: 750;
}

.article-body p,
.article-body li {
  color: #2c3547;
}

.article-body img {
  border-radius: 20px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  margin: 1.4rem auto;
  width: min(320px, 100%);
}

.article-body table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.93rem;
  margin: 1.2rem 0;
}

.article-body th,
.article-body td {
  border: 1px solid var(--line);
  padding: 0.6rem 0.8rem;
  text-align: left;
}

.article-body thead th {
  background: var(--paper-2);
}

.callout {
  border-left: 4px solid var(--brand);
  background: #fbf6ec;
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1rem 1.2rem;
  margin: 1.4rem 0;
  font-size: 0.95rem;
}

.callout.green {
  border-left-color: var(--green);
  background: var(--green-soft);
}

.callout p {
  margin: 0.3rem 0;
}

.article-cta {
  background: var(--ink);
  color: var(--text-inverse);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  margin: 2.4rem 0;
  display: flex;
  gap: 1.2rem;
  align-items: center;
  flex-wrap: wrap;
}

.article-cta img {
  width: 62px;
  height: 62px;
  border-radius: 14px;
  border: 0;
  box-shadow: none;
  margin: 0;
}

.article-cta .cta-copy {
  flex: 1 1 240px;
}

.article-cta h3 {
  color: #fff;
  margin: 0 0 0.3rem;
}

.article-cta p {
  color: var(--text-inverse-soft);
  margin: 0;
  font-size: 0.92rem;
}

.article-aside {
  font-size: 0.92rem;
}

.aside-box {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.2rem 1.3rem;
  margin-bottom: 1.4rem;
  background: var(--paper-2);
  position: sticky;
  top: 84px;
}

.aside-box h2 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0 0 0.8rem;
}

.aside-box ol,
.aside-box ul {
  padding-left: 1.1rem;
  margin: 0;
}

.aside-box li {
  margin-bottom: 0.45rem;
}

.sources-list {
  font-size: 0.9rem;
  color: var(--text-soft);
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.2rem;
}

@media (max-width: 960px) {
  .article-layout {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .article-aside {
    order: -1;
  }

  .aside-box {
    position: static;
  }

  .related-grid {
    grid-template-columns: 1fr;
  }
}

.article-disclaimer {
  font-size: 0.83rem;
  color: var(--text-soft);
  border-top: 1px solid var(--line);
  margin-top: 2.6rem;
  padding-top: 1.2rem;
}

/* ---------- Guides hub ---------- */

.hub-header {
  background: var(--ink);
  color: var(--text-inverse);
  padding: 3.2rem 0;
}

.hub-header h1 {
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  margin: 0.8rem 0 0.6rem;
  letter-spacing: -0.02em;
}

.hub-header p {
  color: var(--text-inverse-soft);
  max-width: 42rem;
  margin: 0;
}

.hub-header .breadcrumbs,
.hub-header .breadcrumbs a {
  color: var(--text-inverse-soft);
}

/* ---------- Motion & print ---------- */

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
