/* =========================================================
   Swolemance — site styles
   Palette taken from the Swolemance logo and app UI.
   ========================================================= */

:root {
  --brand:        #c1121f;
  --brand-600:    #a30f1a;
  --brand-700:    #7d1220;
  --maroon:       #5f1f2e;
  --maroon-deep:  #331019;
  --gold:         #c89b3f;
  --cream:        #fbf1dd;

  --ink:          #1b1416;
  --ink-2:        #5d4f53;
  --ink-3:        #857578;

  --bg:           #ffffff;
  --bg-soft:      #fdf6f2;
  --line:         rgba(95, 31, 46, .14);

  --radius-sm: 12px;
  --radius:    20px;
  --radius-lg: 28px;

  --shadow-sm: 0 2px 8px rgba(51, 16, 25, .06);
  --shadow:    0 12px 30px rgba(51, 16, 25, .10);
  --shadow-lg: 0 30px 70px rgba(51, 16, 25, .18);

  --shell: 1180px;
  --header-h: 74px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3 {
  margin: 0 0 .5em;
  line-height: 1.12;
  letter-spacing: -.02em;
  font-weight: 800;
  color: var(--ink);
}

h1 { font-size: clamp(2.35rem, 5.4vw, 4rem); font-weight: 900; }
h2 { font-size: clamp(1.85rem, 3.4vw, 2.7rem); }
h3 { font-size: 1.15rem; letter-spacing: -.01em; }

p { margin: 0 0 1rem; }
a { color: var(--brand); }

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

.shell {
  width: min(100% - 40px, var(--shell));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: 50%;
  top: -60px;
  transform: translateX(-50%);
  z-index: 200;
  background: var(--brand);
  color: #fff;
  padding: 10px 20px;
  border-radius: 0 0 10px 10px;
  font-weight: 700;
  text-decoration: none;
  transition: top .2s ease;
}
.skip-link:focus { top: 0; }

/* ---------- shared bits ---------- */

.kicker {
  margin: 0 0 .55rem;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--brand);
}
.kicker--light { color: var(--gold); }

.section-head {
  max-width: 640px;
  margin: 0 auto clamp(36px, 5vw, 60px);
  text-align: center;
}
.section-sub {
  margin: 0;
  color: var(--ink-2);
  font-size: 1.06rem;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 1rem;
  padding: 7px 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(193, 18, 31, .06);
  color: var(--brand-700);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.hl { color: var(--brand); }

/* ---------- header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .86);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: var(--shadow-sm);
}

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

.brand { display: inline-flex; align-items: center; flex-shrink: 0; }
.brand-logo { width: auto; height: 42px; }

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

.nav-list {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.nav-list a {
  display: block;
  padding: 9px 14px;
  border-radius: 999px;
  color: var(--ink-2);
  font-size: .95rem;
  font-weight: 600;
  text-decoration: none;
  transition: color .2s ease, background-color .2s ease;
}
.nav-list a:hover { color: var(--brand); background: rgba(193, 18, 31, .07); }

.nav-cta {
  margin-left: 8px;
  background: var(--brand) !important;
  color: #fff !important;
  padding: 11px 22px !important;
  box-shadow: 0 8px 20px rgba(193, 18, 31, .25);
}
.nav-cta:hover { background: var(--brand-600) !important; }

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.nav-toggle-bar {
  display: block;
  width: 19px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .25s ease, opacity .2s ease;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- hero ---------- */

.hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(44px, 6vw, 86px) clamp(56px, 7vw, 100px);
  background:
    radial-gradient(1100px 520px at 82% -8%, rgba(193, 18, 31, .10), transparent 62%),
    linear-gradient(180deg, #fff 0%, var(--bg-soft) 100%);
}
.hero-glow {
  position: absolute;
  right: -160px;
  top: -140px;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 155, 63, .30), transparent 68%);
  filter: blur(50px);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: clamp(32px, 5vw, 72px);
}

.hero-copy h1 { margin-bottom: .45em; }

.lede {
  max-width: 34em;
  margin-bottom: 1.9rem;
  color: var(--ink-2);
  font-size: clamp(1.03rem, 1.4vw, 1.16rem);
}

.store-buttons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}
.store-badge {
  display: inline-block;
  border-radius: 10px;
  transition: transform .25s ease, box-shadow .25s ease;
}
.store-badge img { width: 168px; height: auto; }
.store-badge:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.store-buttons--stack { flex-direction: column; align-items: flex-start; gap: 12px; }

.trial-note {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 1.25rem 0 0;
  color: var(--ink-2);
  font-size: .95rem;
}
.trial-note .dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #2e9e4f;
  box-shadow: 0 0 0 4px rgba(46, 158, 79, .16);
}

.press {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 2.2rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--line);
}
.press-label {
  color: var(--ink-3);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.press-link img {
  width: 62px;
  height: auto;
  /* the source PNG is a round mark on an opaque square plate — clip the plate */
  border-radius: 50%;
  opacity: .9;
  transition: opacity .2s ease, transform .2s ease;
}
.press-link:hover img { opacity: 1; transform: translateY(-2px); }

/* phone */
.hero-visual { display: flex; justify-content: center; }

.device {
  position: relative;
  width: min(318px, 76vw);
  padding: 11px;
  border-radius: 46px;
  background: linear-gradient(160deg, #3a3a40, #131316 55%, #26262b);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(0, 0, 0, .35);
  animation: float 6s ease-in-out infinite;
}
.device::before {
  content: "";
  position: absolute;
  inset: -14% -22%;
  z-index: -1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(193, 18, 31, .22), transparent 66%);
  filter: blur(38px);
}
.device img {
  width: 100%;
  aspect-ratio: 907 / 2128;
  object-fit: cover;
  border-radius: 36px;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-14px); }
}

/* ---------- feature bands ---------- */

.bands { padding-block: clamp(56px, 8vw, 110px); }

.band {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  align-items: center;
  gap: clamp(30px, 5vw, 70px);
}
.band + .band { margin-top: clamp(56px, 8vw, 104px); }
.band--reverse .band-media { order: 2; }

.band-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.band-media img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  transition: transform .6s cubic-bezier(.22, .61, .36, 1);
}
.band-media:hover img { transform: scale(1.035); }

.band-copy p { color: var(--ink-2); }

.checks { margin: 1.35rem 0 0; padding: 0; list-style: none; }
.checks li {
  position: relative;
  padding-left: 32px;
  margin-bottom: .6rem;
  color: var(--ink-2);
}
.checks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .42em;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background: rgba(193, 18, 31, .10) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M5 12.5l4.5 4.5L19 7.5' fill='none' stroke='%23c1121f' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 12px no-repeat;
}

/* ---------- showcase / carousel ---------- */

.showcase {
  padding-block: clamp(56px, 8vw, 104px);
  background: linear-gradient(165deg, var(--maroon-deep), #4a1622 55%, var(--brand-700));
  color: #fff;
}
.showcase h2 { color: #fff; }
.showcase .section-sub { color: rgba(255, 255, 255, .74); }

.carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
}

.carousel-track {
  display: flex;
  gap: 24px;
  margin: 0;
  padding: 6px 2px 18px;
  list-style: none;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  /* Smooth scrolling is applied per call in site.js (scrollTo({behavior})).
     Setting it here in CSS wins over the JS option in Chrome and stops
     programmatic scrolling of this container from taking effect at all. */
  scrollbar-width: none;
  -ms-overflow-style: none;
  flex: 1;
}
.carousel-track::-webkit-scrollbar { display: none; }

.slide {
  flex: 0 0 calc((100% - 3 * 24px) / 4);
  scroll-snap-align: center;
}
.slide img {
  width: 100%;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, .14);
  box-shadow: 0 22px 46px rgba(0, 0, 0, .38);
  transition: transform .35s ease;
}
.slide img:hover { transform: translateY(-8px); }

.carousel-btn {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  padding: 0;
  display: grid;
  place-items: center;
  border: none;
  border-radius: 50%;
  background: #fff;
  color: var(--maroon-deep);
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .3);
  transition: background-color .2s ease, color .2s ease, transform .2s ease;
}
.carousel-btn svg { width: 22px; height: 22px; }
.carousel-btn:hover { background: var(--brand); color: #fff; transform: scale(1.06); }

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 26px;
}
.carousel-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, .32);
  cursor: pointer;
  transition: width .25s ease, background-color .25s ease;
}
.carousel-dot[aria-selected="true"] { width: 30px; background: var(--gold); }

/* ---------- why / cards ---------- */

.why {
  padding-block: clamp(56px, 8vw, 110px);
  background: var(--bg-soft);
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(258px, 1fr));
  gap: 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.card {
  padding: 30px 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.card:hover {
  transform: translateY(-6px);
  border-color: rgba(193, 18, 31, .3);
  box-shadow: var(--shadow);
}
.card-icon {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  margin-bottom: 16px;
  border-radius: 14px;
  background: rgba(193, 18, 31, .08);
  font-size: 24px;
  line-height: 1;
}
.card h3 { color: var(--maroon); }
.card p { margin: 0; color: var(--ink-2); font-size: .97rem; }

/* ---------- download ---------- */

.download {
  padding-block: clamp(56px, 8vw, 104px);
  background:
    radial-gradient(760px 380px at 12% 10%, rgba(200, 155, 63, .18), transparent 60%),
    linear-gradient(140deg, var(--brand-700), var(--brand) 70%);
  color: #fff;
}
.download h2 { color: #fff; }
.download .section-sub { color: rgba(255, 255, 255, .86); }

.download-inner {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  align-items: center;
  gap: clamp(30px, 5vw, 64px);
}
.download-copy .section-sub { margin-bottom: 1.9rem; max-width: 34em; }

.qr-card {
  margin: 0;
  padding: 20px;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-lg);
  text-align: center;
  justify-self: center;
  max-width: 260px;
}
.qr-card img { border-radius: 10px; }
.qr-card figcaption {
  margin-top: 12px;
  color: var(--ink-2);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

/* ---------- footer ---------- */

.site-footer {
  padding-top: clamp(48px, 6vw, 76px);
  background: var(--maroon-deep);
  color: rgba(255, 255, 255, .74);
  font-size: .95rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 46px;
}

.footer-brand img {
  width: 190px;
  margin-bottom: 14px;
  filter: brightness(0) invert(1);
  opacity: .95;
}
.footer-brand p { max-width: 26ch; }

.social {
  display: flex;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}
.social a {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .09);
  color: #fff;
  transition: background-color .2s ease, transform .2s ease;
}
.social a:hover { background: var(--brand); transform: translateY(-2px); }
.social svg { width: 20px; height: 20px; }

.footer-col h2 {
  margin-bottom: 14px;
  color: #fff;
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.footer-col ul { margin: 0; padding: 0; list-style: none; }
.footer-col li { margin-bottom: 9px; }
.footer-col a {
  color: rgba(255, 255, 255, .74);
  text-decoration: none;
  transition: color .2s ease;
}
.footer-col a:hover { color: #fff; text-decoration: underline; }
.footer-col .store-badge img { width: 148px; }

.footer-bottom {
  padding: 22px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  text-align: center;
  font-size: .87rem;
}
.footer-bottom p { margin: 0; }

/* =========================================================
   Responsive
   ========================================================= */

@media (max-width: 1080px) {
  .slide { flex-basis: calc((100% - 2 * 24px) / 3); }
}

@media (max-width: 900px) {
  .nav-toggle { display: flex; }

  .primary-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    display: none;
    padding: 12px 20px 20px;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }
  .primary-nav.is-open { display: block; }
  .nav-list { flex-direction: column; align-items: stretch; gap: 2px; }
  .nav-list a { padding: 13px 14px; border-radius: 12px; }
  .nav-cta { margin: 8px 0 0; text-align: center; }

  .hero-inner,
  .download-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-copy .lede,
  .download-copy .section-sub { margin-inline: auto; }
  .hero-visual { order: -1; }
  .store-buttons,
  .press,
  .trial-note { justify-content: center; }
  .press { flex-direction: column; gap: 10px; }
  .store-buttons--stack { align-items: center; }

  .band,
  .band--reverse .band-media { grid-template-columns: 1fr; order: 0; }
  .band { text-align: center; }
  /* centre the list as one block so the check marks stay in a column —
     centring each <li> individually leaves the bullets ragged */
  .checks { display: inline-block; text-align: left; }

  .slide { flex-basis: calc((100% - 24px) / 2); }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    text-align: left;
  }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 620px) {
  body { font-size: 16px; }
  .shell { width: min(100% - 32px, var(--shell)); }

  .slide { flex-basis: min(78%, 300px); }
  .carousel { gap: 8px; }
  .carousel-btn { width: 42px; height: 42px; }

  .store-badge img { width: 152px; }

  .footer-inner { grid-template-columns: 1fr; }
}

/* =========================================================
   Motion / print
   ========================================================= */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .carousel-track { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
}

@media print {
  .site-header, .carousel-btn, .carousel-dots, .hero-glow { display: none !important; }
  body { color: #000; }
}

/* =========================================================
   Interior pages (members, membership, merch, legal, contact)
   ========================================================= */

.page-hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(40px, 6vw, 78px) clamp(32px, 4.5vw, 58px);
  background:
    radial-gradient(900px 420px at 78% -20%, rgba(193, 18, 31, .10), transparent 62%),
    linear-gradient(180deg, #fff 0%, var(--bg-soft) 100%);
  border-bottom: 1px solid var(--line);
  text-align: center;
}
.page-hero h1 { font-size: clamp(2rem, 4.4vw, 3.2rem); margin-bottom: .35em; }
.page-hero .lede { margin: 0 auto; max-width: 46ch; }

.page-body { padding-block: clamp(44px, 6vw, 84px); }

/* readable article column */
.prose {
  max-width: 72ch;
  margin-inline: auto;
  font-size: 1.02rem;
}
.prose > * + * { margin-top: 1.1rem; }
.prose h2 {
  margin-top: 2.4rem;
  font-size: clamp(1.35rem, 2.2vw, 1.7rem);
  scroll-margin-top: calc(var(--header-h) + 20px);
}
.prose h3 {
  margin-top: 1.8rem;
  font-size: 1.08rem;
  color: var(--maroon);
}
.prose p, .prose li { color: var(--ink-2); }
.prose ul, .prose ol { padding-left: 1.25rem; }
.prose li + li { margin-top: .45rem; }
.prose strong { color: var(--ink); }
.prose a { color: var(--brand); text-underline-offset: 3px; }

.prose table {
  width: 100%;
  border-collapse: collapse;
  font-size: .95rem;
}
.table-scroll { overflow-x: auto; }
.prose th, .prose td {
  padding: 11px 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}
.prose th { color: var(--ink); font-weight: 700; white-space: nowrap; }
.prose td { color: var(--ink-2); }

.updated {
  margin: 0;
  color: var(--ink-3);
  font-size: .88rem;
}

/* notices */
.callout {
  margin: 0 0 1.6rem;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--gold);
  border-radius: 12px;
  background: rgba(200, 155, 63, .09);
}
.callout p { margin: 0; color: var(--ink-2); font-size: .95rem; }
.callout p + p { margin-top: .6rem; }
.callout strong { color: var(--maroon); }

.callout--info { border-left-color: var(--brand); background: rgba(193, 18, 31, .05); }

/* table of contents */
.toc {
  margin: 0 0 2rem;
  padding: 20px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--bg-soft);
}
.toc h2 {
  margin: 0 0 .7rem;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.toc ol { margin: 0; padding-left: 1.15rem; columns: 2; column-gap: 30px; }
.toc li { margin: 0 0 .4rem; break-inside: avoid; }
.toc a { color: var(--ink-2); text-decoration: none; }
.toc a:hover { color: var(--brand); text-decoration: underline; }

/* feature / plan / contact tiles */
.tiles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.tile {
  padding: 26px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.tile h3 { margin-bottom: .5rem; color: var(--maroon); }
.tile p { margin: 0; color: var(--ink-2); font-size: .96rem; }
.tile-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 14px;
  border-radius: 13px;
  background: rgba(193, 18, 31, .08);
  font-size: 22px;
  line-height: 1;
}

.plan {
  padding: 30px 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}
.plan--accent { border-color: rgba(193, 18, 31, .35); }
.plan h3 { font-size: 1.3rem; color: var(--ink); }
.plan .plan-note { color: var(--ink-3); font-size: .9rem; }

.btn {
  display: inline-block;
  padding: 13px 26px;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  transition: background-color .2s ease, transform .2s ease;
}
.btn:hover { background: var(--brand-600); transform: translateY(-2px); }
.btn--ghost {
  background: transparent;
  color: var(--brand);
  border: 1px solid rgba(193, 18, 31, .35);
}
.btn--ghost:hover { background: rgba(193, 18, 31, .06); color: var(--brand-600); }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 1.4rem; }

.section-band { margin-top: clamp(40px, 5vw, 68px); }
.section-band > h2 { text-align: center; margin-bottom: 1.6rem; }

@media (max-width: 620px) {
  .toc ol { columns: 1; }
  .prose { font-size: 1rem; }
}
