span[id^="stat-"] {
  scroll-margin-top: 232px;
}
/* Hero content inner container: wraps content with no padding */
.hero-content-inner {
  padding: 0;
  margin: 0;
  border-radius: var(--radius);
}
/* Make hero section full-bleed background */
.home-band--hero {
}
/* Make hero section full-bleed background */
.home-band--hero {
}
/* ── Reset & base ────────────────────────────────────────────────── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --accent:       #0B6B66;
  --accent-rgb:   11,107,102;
  --accent-light: rgba(11,107,102,0.08);
  --text:         #1a1a1a;
  --text-muted:   #444444;
  --text-faint:   #888;
  --border:       rgba(0,0,0,0.08);
  --border-mid:   rgba(0,0,0,0.12);
  --bg:           #fff;
  --bg-subtle:    #f7f7f6;
  --radius:       8px;
  --max-width:    1080px;
  --font:         'DM Sans', system-ui, -apple-system, sans-serif;
}

html { font-size: 16px; }

body {
  font-family: var(--font);
  line-height: 1.7;
  color: var(--text);
  background: var(--bg-subtle);
  -webkit-font-smoothing: antialiased;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* ── Typography ──────────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.25;
  color: var(--text);
  letter-spacing: -0.01em;
}
h1 { font-size: 2rem;    margin: 1.75rem 0 0.6rem; }
h2 { font-size: 1.3rem;  margin: 1.5rem 0 0.5rem; }
h3 { font-size: 1.05rem; margin: 1.25rem 0 0.4rem; }

p  { margin: 0 0 1.1rem; color: var(--text); }

a  { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 3px; }

ul, ol { margin: 0.5rem 0 1.1rem 1.5rem; }
li { margin: 0.4rem 0; }
strong { font-weight: 600; }

/* ── Layout ──────────────────────────────────────────────────────── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.nav-toggle { display: none; } /* hidden on desktop */

/* ── Header & Nav ────────────────────────────────────────────────── */
.site-header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.site-footer { background: var(--bg); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.site-mark {
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.04em;
  color: var(--accent);
  text-decoration: none;
  text-transform: uppercase;
  padding: 0.3rem 0.5rem;
  border-radius: 6px;
  margin-left: -0.5rem;
  transition: background 0.15s;
  flex-shrink: 0;
  white-space: nowrap;
  line-height: 1.3;
}

.site-mark:hover {
  background: var(--bg-subtle);
  text-decoration: none;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  min-width: 0;
}

.site-nav a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  padding: 0.35rem 0.7rem;
  border-radius: 6px;
  transition: color 0.15s, background 0.15s;
}

.site-nav a:hover {
  color: var(--text);
  background: var(--bg-subtle);
  text-decoration: none;
}

.site-nav .nav-cta {
  color: var(--accent);
  border: 1px solid var(--accent);
  font-weight: 600;
  margin-left: 0.4rem;
}

.site-nav .nav-cta:hover {
  background: var(--accent);
  color: #fff;
}

/* ── Banner ──────────────────────────────────────────────────────── */
.site-banner {
  height: clamp(160px, 25vw, 340px);
  background-size: cover;
  background-position: center;
  border-bottom: 1px solid var(--border);
}
@media (max-width: 768px) {
  .site-banner {
    background-size: 250%;
    background-position: center center;
  }

  .nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    border-radius: 6px;
    transition: background 0.15s;
  }
  .nav-toggle:hover { background: var(--bg-subtle); }
  .nav-toggle span {
    display: block;
    height: 2px;
    width: 100%;
    background: var(--text);
    border-radius: 2px;
    transition: transform 0.2s, opacity 0.2s;
  }
  .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .site-nav { display: none; }
  .site-nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--border);
    padding: 0.75rem 1.5rem 1rem;
    gap: 0.25rem;
    z-index: 99;
  }
  .site-nav.open a { padding: 0.55rem 0.5rem; font-size: 0.95rem; }
  .site-nav.open .nav-cta {
    margin-left: 0;
    margin-top: 0.5rem;
    text-align: center;
    padding: 0.55rem;
  }
}

/* ── Main ────────────────────────────────────────────────────────── */
.site-main { padding: 1.5rem 0 3rem; background: var(--bg); flex: 1; } /* default for inner pages *//* ── Footer ──────────────────────────────────────────────────────── */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 1.25rem 0;
  font-size: 0.83rem;
  color: var(--text-faint);
  text-align: center;
}

/* ── Homepage ────────────────────────────────────────────────────── */
.home > h1:first-child { margin-top: 0; }

/* Explore links in _index.md — style the list items as cards */
.home ul {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.home li {
  margin: 0;
}

.home ul a {
  display: block;
  padding: 0.8rem 1rem;
  border: 1px solid var(--border-mid);
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--text);
  text-decoration: none;
  transition: border-color 0.15s, box-shadow 0.15s, transform 0.15s;
}

.home ul a:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 12px rgba(var(--accent-rgb), 0.1);
  transform: translateY(-2px);
  color: var(--accent);
  text-decoration: none;
}

/* ── Homepage bands (full-bleed sections) ────────────────────────── */
.site-main--home { padding: 0; } /* homepage only — inner pages keep 3rem 0 5rem */

.home-band { padding: 0.75rem 0; background: var(--bg); }

.home-band--hero {
  padding-top: 0;
}

.home-band--hero .container {
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 4rem;
  align-items: center;
}

.hero-prose { min-width: 0; }

.hero-stats {
  border-left: 2px solid var(--border-mid);
  padding-left: 2rem;
}

.stat-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.stat-item {}

.stat-value {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--accent);
  line-height: 0.9;
  display: block;
}

.stat-value a {
  color: inherit;
  text-decoration: none;
  display: inline-block;
  transition: transform 0.15s ease;
}

.stat-value a:hover {
  transform: scale(1.08);
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.1;
  margin-top: 0.15rem;
  display: block;
}

.stat-source {
  display: inline;
  font-size: 0.7rem;
  margin-left: 0.35rem;
  white-space: nowrap;
}

.stat-source::before {
  content: "·";
  margin-right: 0.35rem;
  color: var(--text-faint);
}

.stat-source a {
  color: var(--text-faint);
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.stat-source a:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.stat-ref {
  font-size: 0.6rem;
  color: var(--accent);
  vertical-align: super;
  margin-left: 1px;
  font-weight: 400;
}

.stat-legend {
  margin: 0.85rem 0 0;
  font-size: 0.55rem;
  text-align: right;
  opacity: 0.25;
}

.stat-legend a {
  color: var(--text-faint);
  text-decoration: none;
}

.stat-legend a:hover {
  color: var(--accent);
}

.stat-legend li {
  font-size: 0.65rem;
  color: var(--text-faint);
  counter-increment: legend-counter;
}

.stat-legend li::before {
  content: counter(legend-counter) ". ";
  color: var(--accent);
}

.stat-legend a {
  color: var(--text-faint);
  text-decoration: none;
}

.stat-legend a:hover {
  color: var(--accent);
}

@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .hero-stats { border-left: none; padding-left: 0; border-top: 2px solid var(--border-mid); padding-top: 1.5rem; }
  .stat-list { flex-direction: row; flex-wrap: wrap; gap: 1.25rem; }
}

.home-band--hero h2 {
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 2rem;
  line-height: 1.3;
  color: var(--text);
}

.home-band--hero p {
  font-size: 0.95rem;
  color: var(--text);
  margin: 0 0 0.75rem;
  line-height: 1.75;
}

.home-band--hero p:last-child { margin-bottom: 0; }

/* ── Section label ───────────────────────────────────────────────── */
.home-section-label,
.recent-work-heading {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.85rem;
}

/* ── Explore cards ───────────────────────────────────────────────── */
.explore-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.65rem;
  padding: 0;
  margin: 0;
}

.explore-card {
  display: block;
  width: 100%;
  padding: 0.9rem 1.5rem;
  border: none;
  border-radius: var(--radius);
  text-decoration: none;
  background: var(--bg);
  transition: border-color 0.15s, box-shadow 0.15s, transform 0.15s;
}

.explore-card:hover {
  background: var(--bg-subtle);
  box-shadow: 0 4px 12px rgba(var(--accent-rgb), 0.12);
  transform: translateY(-2px);
  text-decoration: none;
}

.explore-card-title {
  display: block;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--accent);
  margin-bottom: 0.3rem;
}

.explore-card-desc {
  display: block;
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.7;
}

/* ── Focus items ─────────────────────────────────────────────────── */
.focus-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  padding-left: 0;
  padding-right: 0;
}

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

.focus-item {
  padding: 1.1rem 1.25rem;
  border-left: 3px solid var(--accent);
  background: linear-gradient(180deg, var(--bg-subtle) 80%, rgba(11,107,102,0.04) 100%);
  border-radius: 0 var(--radius) var(--radius) 0;
  transition: background 0.15s, border-color 0.15s, transform 0.15s, box-shadow 0.15s;
}

.focus-item:hover {
  background: var(--bg-subtle);
  box-shadow: none;
  transform: none;
}
  background: var(--bg-subtle);

.focus-item:hover .focus-item-title {
  color: var(--accent);
}

.focus-item-title {
  display: block;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: 0.4rem;
}

.focus-item p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.7;
}

/* ── Recent Work (homepage) ──────────────────────────────────────── */
.carousel-wrapper {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.carousel-wrapper .recent-work { flex: 1; min-width: 0; }

.recent-work-heading { margin-bottom: 0.85rem; }

.carousel-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 1px solid var(--border-mid);
  border-radius: 6px;
  background: var(--bg);
  color: var(--text-muted);
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s, background 0.15s;
}

.carousel-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-light);
}

.carousel-btn:disabled {
  opacity: 0.3;
  cursor: default;
  pointer-events: none;
}

.recent-work {
  display: flex;
  gap: 0.85rem;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 2px;
}

.recent-work::-webkit-scrollbar { display: none; }

.recent-work .update-summary {
  flex: 0 0 calc(33.333% - 0.57rem);
  min-width: 240px;
  scroll-snap-align: start;
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  padding: 1rem 1.1rem;
  border-radius: var(--radius);
  transition: border-color 0.15s, box-shadow 0.15s, transform 0.15s;
  display: flex;
  flex-direction: column;
}

@media (max-width: 640px) {
  .recent-work .update-summary { flex: 0 0 85%; }
}

.recent-work .update-summary:hover {
  border-color: rgba(var(--accent-rgb), 0.3);
  box-shadow: 0 4px 14px rgba(var(--accent-rgb), 0.08);
  transform: translateY(-2px);
}

.recent-work .update-summary h3 {
  margin: 0 0 0.3rem;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.45;
}

.recent-work .update-summary h3 a {
  color: var(--text);
  text-decoration: none;
}

.recent-work .update-summary h3 a:hover {
  color: var(--accent);
  text-decoration: none;
}

.recent-work .update-summary time {
  display: block;
  font-size: 0.75rem;
  color: var(--text-faint);
  font-weight: 500;
  margin-bottom: 0.4rem;
}

.recent-work .update-summary p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.7;
}

.recent-work .pub-meta {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.35rem !important;
}

.recent-work .pub-doi {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
}

.recent-work .pub-doi:hover {
  text-decoration: underline;
}

.recent-work-footer {
  display: flex;
  justify-content: flex-end;
  gap: 1.5rem;
  margin-top: 0.65rem;
}

.recent-work-footer a {
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--accent);
}

.recent-work-footer a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ── Updates list page ───────────────────────────────────────────── */
.updates-heading {
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}

.updates-list {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.update-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.15s;
}

.update-item:hover { border-color: var(--border-mid); }
.update-item[open]  { border-color: var(--accent); }

.update-summary-row {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 1rem 1.25rem;
  cursor: pointer;
  list-style: none;
  background: var(--bg);
  -webkit-user-select: none;
  user-select: none;
  transition: background 0.15s;
}

.update-item[open] .update-summary-row {
  background: var(--accent-light);
  border-bottom: 1px solid rgba(var(--accent-rgb), 0.1);
}

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

.update-title-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1.5rem;
}

.update-title {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
}

.update-item[open] .update-title { color: var(--accent); }

.update-title-row time {
  font-size: 0.76rem;
  color: var(--text-faint);
  white-space: nowrap;
  flex-shrink: 0;
  font-weight: 500;
}

.update-teaser {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.7;
}

.update-body {
  padding: 1.25rem 1.5rem 1.5rem;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
}

.update-body h2 {
  font-size: 1rem;
  margin: 1.5rem 0 0.4rem;
}

.update-body h2:first-child { margin-top: 0; }
.update-body p  { margin-bottom: 0.85rem; }
.update-body ul,
.update-body ol { margin: 0.4rem 0 0.85rem 1.4rem; }

.update-source { margin-top: 1.25rem; font-size: 0.84rem; }

/* ── Individual update page ──────────────────────────────────────── */
.update-single h1  { margin-top: 0; margin-bottom: 0.3rem; }

.update-date {
  display: block;
  font-size: 0.83rem;
  color: var(--text-faint);
  font-weight: 500;
  margin-bottom: 1rem;
}

.update-single-summary {
  font-size: 0.98rem;
  color: var(--text);
  border-left: 3px solid var(--accent);
  padding-left: 1rem;
  margin-bottom: 2rem;
  line-height: 1.65;
}

.update-single-body { margin-top: 0.5rem; }
.back-link { margin-top: 2.5rem; font-size: 0.88rem; }

/* ── Inner pages (About, Contact, etc.) ─────────────────────────── */
.inner-page { max-width: 720px; }

.inner-page-heading {
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.3;
  margin: 0 0 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}

.inner-page-body h2 {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.3;
  margin: 2rem 0 0.65rem;
  color: var(--text);
}

.inner-page-body h2:first-child { margin-top: 0; }

.inner-page-body p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text);
  margin: 0 0 0.85rem;
}

.inner-page-body strong { font-weight: 600; color: var(--text); }

.inner-page-body ul,
.inner-page-body ol {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text);
  margin: 0.25rem 0 0.85rem 1.4rem;
}

.inner-page-body li { margin: 0.3rem 0; }

/* About — editorial feel: teal section headings */
.inner-page-body--about h2 {
  color: var(--accent);
}

/* Research — systematic/methodical feel */
.inner-page-body--research h2 {
  color: var(--accent);
}

/* Research domain stacked layout — typographic only */
.research-domains {
  margin: 1.5rem 0 2rem;
  padding-left: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.research-domain-label {
  font-weight: 700;
  color: var(--text);
  font-size: 1rem;
}

.research-domain p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text);
}

/* Research styled lists — muted, subordinate */
.inner-page-body--research ul {
  list-style: none;
  margin: 0.75rem 0 1rem;
  padding-left: 1.5rem;
}

.inner-page-body--research ul li {
  font-size: 0.9rem;
  color: rgba(11,107,102,0.9);
  font-style: italic;
  line-height: 1.7;
  padding: 0.2rem 0;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.5rem;
}

.inner-page-body--research ul li::before {
  content: "–";
  color: rgba(11,107,102,0.45);
  font-style: normal;
}

/* Analytical approach list — subtle tinted block */
.research-approach {
  background: var(--bg-subtle);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin: 0.75rem 0 1rem;
}

.research-approach ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.research-approach ul li {
  font-size: 0.95rem;
  color: var(--text);
  font-style: normal;
  line-height: 1.7;
  padding: 0.2rem 0;
}

.research-approach ul li::before {
  content: "·";
  margin-right: 0.5rem;
  color: var(--text-muted);
}

.research-questions {
  background: var(--bg-subtle);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin: 0.75rem 0 1rem;
  margin-left: 1.5rem;
}

.research-questions ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.research-approach-plain {
  padding-left: 1.5rem;
}

.research-approach-plain ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.inner-page-body--research .research-approach-plain ul li {
  font-size: 0.95rem;
  color: var(--text);
  font-style: normal;
  line-height: 1.7;
  padding: 0.2rem 0;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.5rem;
}

.inner-page-body--research .research-approach-plain ul li::before {
  content: "·";
  color: var(--text-muted);
  font-style: normal;
}

/* About page domain grid */
.about-domain-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin: 0.5rem 0 1.5rem;
}

.about-domain-item {
  border-left: 3px solid var(--accent);
  padding: 0.85rem 1rem;
  background: var(--bg-subtle);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.about-domain-title {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text);
  margin-bottom: 0.4rem;
}

.about-domain-item p {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0;
}

@media (max-width: 640px) {
  .about-domain-grid { grid-template-columns: 1fr; }
}

/* ── Work-in-progress placeholder ───────────────────────────────── */
.wip-page {
  text-align: center;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
}
.wip-icon { font-size: 2.25rem; display: block; margin-bottom: 1rem; }
.wip-page h1 { margin: 0 0 0.5rem; }

.wip-label {
  display: inline-block;
  background: var(--accent-light);
  color: var(--accent);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  margin-bottom: 1.25rem;
}

.wip-message {
  max-width: 400px;
  margin: 0 auto 2rem;
  color: var(--text-muted);
  font-size: 0.93rem;
  line-height: 1.65;
}

.wip-back { font-size: 0.9rem; font-weight: 600; color: var(--accent); }
.wip-back:hover { text-decoration: underline; }

/* ── Code ────────────────────────────────────────────────────────── */
code {
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
  font-family: 'SF Mono', 'Fira Code', monospace;
  font-size: 0.87em;
}

pre {
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  padding: 1.1rem 1.25rem;
  overflow-x: auto;
  border-radius: var(--radius);
  margin: 1rem 0;
}

.hero-micro-desc {
  font-size: 0.95rem;
  color: var(--text-faint);
  font-style: italic;
  margin-top: 0.5rem;
  display: block;
  background: var(--bg-subtle);
  border-radius: var(--radius);
  padding: 0.5rem 1rem;
}

.home-band--hero .container {
  background: var(--bg-subtle);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
}
