/* Reel Checkpoint — section-scoped styles */
@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&display=swap');

:root {
  --porcelain: #f3f5f1;
  --porcelain-deep: #e8ece4;
  --forest: #1f6b45;
  --forest-deep: #154f32;
  --forest-soft: #d8ebe0;
  --orange: #e07030;
  --orange-deep: #c45a1c;
  --ink: #1a221c;
  --ink-soft: #3d4a40;
  --muted: #5c6b60;
  --white: #ffffff;
  --line: #c5d0c4;
  --radius: 1.25rem;
  --radius-sm: 0.85rem;
  --radius-pill: 999px;
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 3rem;
  --space-8: 4.5rem;
  --rail: 15.5rem;
  --content: 46rem;
  --wide: 68rem;
  --font: "Libre Baskerville", Georgia, "Times New Roman", serif;
  --shadow-one: 0 10px 28px rgba(31, 107, 69, 0.12);
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--ink);
  background:
    linear-gradient(180deg, #f7f9f5 0%, var(--porcelain) 42%, #eef3ea 100%);
  min-height: 100vh;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--orange); text-decoration: none; }
a:hover { text-decoration: underline; }
a.link-chevron::after {
  content: " ›";
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
}
p { margin: 0 0 var(--space-4); max-width: 70ch; }
h1, h2, h3, h4 {
  margin: 0 0 var(--space-4);
  line-height: 1.2;
  font-weight: 700;
  color: var(--ink);
}
ul { padding-left: 1.2rem; }
strong { font-weight: 700; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* —— age-notice —— */
.age-notice {
  position: sticky;
  top: 0;
  z-index: 60;
  background: var(--forest);
  color: var(--white);
  font-size: 0.82rem;
  line-height: 1.4;
  padding: 0.55rem var(--space-4);
  text-align: center;
}
.age-notice a {
  color: #ffe0c8;
  text-decoration: underline;
}
.age-notice a::after { content: " ›"; }

/* —— layout shell with left rail —— */
.shell {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 100vh;
}

.site-main {
  min-width: 0;
  padding-bottom: var(--space-8);
}

.wrap {
  width: min(100% - 2rem, var(--wide));
  margin-inline: auto;
}
.wrap--narrow {
  width: min(100% - 2rem, var(--content));
}

/* —— nav-rail —— */
.nav-rail {
  background: var(--white);
  border-bottom: 2px solid var(--forest);
  padding: var(--space-3) var(--space-4);
  position: sticky;
  top: 2.1rem;
  z-index: 50;
}
.nav-rail__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  width: min(100%, var(--wide));
  margin-inline: auto;
}
.nav-rail__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
  font-size: 1.05rem;
}
.nav-rail__brand:hover { text-decoration: none; color: var(--forest); }
.nav-rail__brand img {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  border: 2px solid var(--forest);
}
.nav-rail__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.75rem;
  min-height: 2.75rem;
  border: 2px solid var(--forest);
  border-radius: var(--radius-sm);
  background: var(--porcelain);
  color: var(--forest);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}
.nav-rail__menu {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background: var(--white);
  border-bottom: 2px solid var(--forest);
  padding: var(--space-4);
  box-shadow: var(--shadow-one);
}
.nav-rail__menu.is-open { display: block; }
.nav-rail__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.35rem;
}
.nav-rail__list a {
  display: block;
  color: var(--ink);
  padding: 0.55rem 0.75rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  border: 2px solid transparent;
}
.nav-rail__list a:hover,
.nav-rail__list a[aria-current="page"] {
  border-color: var(--orange);
  color: var(--orange-deep);
  background: #fff4ec;
}
.nav-rail__list a::after { content: none; }

@media (min-width: 960px) {
  .shell {
    grid-template-columns: var(--rail) 1fr;
  }
  .nav-rail {
    position: sticky;
    top: 0;
    height: 100vh;
    border-bottom: none;
    border-right: 2px solid var(--forest);
    padding: var(--space-6) var(--space-4);
    overflow-y: auto;
  }
  .nav-rail__inner {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: var(--space-6);
  }
  .nav-rail__brand {
    flex-direction: column;
    text-align: center;
    font-size: 1.15rem;
  }
  .nav-rail__brand img {
    width: 3.5rem;
    height: 3.5rem;
  }
  .nav-rail__toggle { display: none; }
  .nav-rail__menu {
    display: block !important;
    position: static;
    border: none;
    padding: 0;
    box-shadow: none;
  }
  .nav-rail__list a {
    font-size: 0.95rem;
  }
  body { padding-top: 0; }
  .age-notice { position: relative; }
}

/* —— buttons —— */
.btn-split {
  display: inline-flex;
  align-items: stretch;
  border-radius: var(--radius-pill);
  overflow: hidden;
  border: 2px solid var(--orange);
  text-decoration: none;
  color: var(--white);
  font-weight: 700;
  font-size: 0.92rem;
  line-height: 1.2;
  background: var(--orange);
}
.btn-split:hover {
  text-decoration: none;
  background: var(--orange-deep);
  border-color: var(--orange-deep);
  color: var(--white);
}
.btn-split__label {
  padding: 0.8rem 1.1rem;
}
.btn-split__chev {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.85rem;
  border-left: 2px solid rgba(255,255,255,0.35);
  background: rgba(0,0,0,0.08);
  font-size: 1.15rem;
}
.btn-split--ghost {
  background: transparent;
  color: var(--orange-deep);
}
.btn-split--ghost:hover {
  background: #fff4ec;
  color: var(--orange-deep);
}
.btn-split--ghost .btn-split__chev {
  border-left-color: var(--orange);
  background: transparent;
}

/* —— badges —— */
.badge {
  display: inline-block;
  padding: 0.22rem 0.65rem;
  border: 2px solid var(--orange);
  border-radius: var(--radius-pill);
  color: var(--orange-deep);
  background: transparent;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.3;
  white-space: nowrap;
}
.badge--forest {
  border-color: var(--forest);
  color: var(--forest-deep);
}
.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

/* —— dashed divider —— */
.dash-rule {
  border: none;
  border-top: 2px dashed var(--line);
  margin: var(--space-7) 0;
}

/* —— reveal motion —— */
.reveal {
  opacity: 0;
  transform: translateY(1.25rem);
  transition: opacity 0.55s ease, transform 0.55s ease;
  clip-path: inset(8% 0 0 0);
}
.reveal.is-in {
  opacity: 1;
  transform: none;
  clip-path: inset(0 0 0 0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    clip-path: none;
    transition: none;
  }
  html { scroll-behavior: auto; }
}

/* —— hero —— */
.hero {
  position: relative;
  padding: var(--space-7) 0 var(--space-6);
  overflow: hidden;
  border-bottom-left-radius: 3rem;
  border-bottom-right-radius: 3rem;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(243,245,241,0.88) 0%, rgba(243,245,241,0.78) 55%, rgba(243,245,241,0.95) 100%),
    url("/assets/hero-bg.jpg") center / cover no-repeat;
  z-index: 0;
}
.hero__blob {
  position: absolute;
  width: 18rem;
  height: 18rem;
  border-radius: 60% 40% 55% 45%;
  background: rgba(224, 112, 48, 0.16);
  right: -4rem;
  top: 2rem;
  z-index: 1;
  pointer-events: none;
}
.hero__inner {
  position: relative;
  z-index: 2;
  width: min(100% - 2rem, var(--content));
  margin-inline: auto;
}
.hero__kicker {
  display: inline-block;
  margin-bottom: var(--space-3);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--forest);
  font-weight: 700;
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: var(--space-4);
  max-width: 18ch;
}
.hero__lead {
  font-size: 1.12rem;
  color: var(--ink-soft);
  max-width: 42ch;
}
.hero__notices {
  margin-top: var(--space-5);
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.hero__meta {
  margin-top: var(--space-4);
  font-size: 0.9rem;
  color: var(--muted);
}

/* —— credibility —— */
.cred {
  padding: var(--space-5) 0;
}
.cred__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
}
.cred__item {
  background: var(--white);
  border: 2px solid var(--forest);
  border-radius: var(--radius);
  padding: var(--space-4);
  text-align: center;
}
.cred__num {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--orange);
  line-height: 1.1;
}
.cred__label {
  font-size: 0.85rem;
  color: var(--muted);
}
@media (max-width: 640px) {
  .cred__grid { grid-template-columns: 1fr; }
}

/* —— showcase band —— */
.showcase {
  padding: var(--space-6) 0;
}
.showcase__band {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.9), rgba(255,255,255,0.92)),
    url("/assets/section-bg.jpg") center / cover no-repeat;
  border: 2px solid var(--forest);
  border-radius: 2rem;
  padding: var(--space-5) var(--space-4);
  position: relative;
  overflow: hidden;
}
.showcase__band::before {
  content: "";
  position: absolute;
  left: -2rem;
  bottom: -3rem;
  width: 12rem;
  height: 12rem;
  border-radius: 45% 55% 50% 50%;
  background: rgba(31, 107, 69, 0.1);
  pointer-events: none;
}
.showcase__head {
  position: relative;
  margin-bottom: var(--space-5);
}
.showcase__head h2 {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
}
.showcase__aff {
  margin: var(--space-4) 0 0;
  font-size: 0.9rem;
  color: var(--muted);
  max-width: 65ch;
}

/* compact comparison table with featured row */
.table-wrap {
  overflow-x: auto;
  position: relative;
}
.op-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  min-width: 640px;
  font-size: 0.92rem;
}
.op-table th,
.op-table td {
  padding: 0.85rem 0.75rem;
  text-align: left;
  border-bottom: 2px dashed var(--line);
  vertical-align: middle;
}
.op-table th {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--forest-deep);
  background: var(--forest-soft);
}
.op-table th:first-child { border-radius: var(--radius-sm) 0 0 0; }
.op-table th:last-child { border-radius: 0 var(--radius-sm) 0 0; }
.op-table__featured {
  background: linear-gradient(90deg, #fff4ec, #ffffff);
}
.op-table__featured td {
  border-bottom: 2px solid var(--orange);
  padding-top: 1.15rem;
  padding-bottom: 1.15rem;
}
.op-table__brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
}
.op-table__brand img {
  width: 2.5rem;
  height: 2.5rem;
  object-fit: contain;
  background: var(--white);
  border: 2px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0.2rem;
}
.verdict {
  display: inline-block;
  padding: 0.3rem 0.7rem;
  background: var(--orange);
  color: var(--white);
  border-radius: var(--radius-sm);
  font-weight: 700;
  border: 2px solid var(--orange-deep);
  font-size: 0.85rem;
}
.verdict--strong { background: var(--forest); border-color: var(--forest-deep); }
.verdict--solid { background: var(--orange); }
.verdict--capable { background: #c98a3e; border-color: #a86e28; }
.verdict--lively { background: #d45a3a; border-color: #b04328; }
.verdict--focused { background: #3a7d62; border-color: #2a5f4a; }
.verdict--fresh { background: #e8913a; border-color: #c47422; }

/* —— operator rows (bordered rows) —— */
.ops {
  padding: var(--space-6) 0;
}
.ops__list {
  display: grid;
  gap: var(--space-4);
}
.op-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
  background: var(--white);
  border: 2px solid var(--forest);
  border-radius: var(--radius);
  overflow: hidden;
}
.op-row__header {
  background: var(--orange);
  color: var(--white);
  padding: 0.65rem 1.1rem;
  font-weight: 700;
  font-size: 0.95rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-3);
}
.op-row__body {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
  padding: 0 var(--space-4) var(--space-4);
  align-items: center;
}
.op-row__main {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
}
.op-row__logo {
  flex: 0 0 4.5rem;
  width: 4.5rem;
  height: 4.5rem;
  object-fit: contain;
  background: var(--porcelain);
  border: 2px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0.35rem;
}
.op-row__logo-fallback {
  flex: 0 0 4.5rem;
  width: 4.5rem;
  height: 4.5rem;
  display: none;
  align-items: center;
  justify-content: center;
  background: var(--forest-soft);
  border: 2px solid var(--forest);
  border-radius: var(--radius-sm);
  font-weight: 700;
  color: var(--forest-deep);
  font-size: 0.75rem;
  text-align: center;
  padding: 0.25rem;
}
.op-row__text h3 {
  margin-bottom: 0.35rem;
  font-size: 1.25rem;
}
.op-row__text p {
  font-size: 0.98rem;
  color: var(--ink-soft);
  margin-bottom: var(--space-3);
}
.op-row__action {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-3);
  padding-top: var(--space-2);
  border-top: 2px dashed var(--line);
}
.op-row__note {
  font-size: 0.75rem;
  color: var(--muted);
  margin: 0;
}
.op-row__offer {
  font-size: 0.9rem;
  color: var(--ink-soft);
  margin: 0;
}
@media (min-width: 800px) {
  .op-row__body {
    grid-template-columns: 1fr auto;
    padding: 0 var(--space-5) var(--space-5);
  }
  .op-row__action {
    border-top: none;
    border-left: 2px dashed var(--line);
    padding: 0 0 0 var(--space-5);
    min-width: 14rem;
    align-items: stretch;
  }
}

/* —— scorecards —— */
.scorecards {
  padding: var(--space-6) 0;
}
.scorecards__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
}
@media (min-width: 720px) {
  .scorecards__grid { grid-template-columns: 1fr 1fr; }
}
.scorecard {
  background: var(--white);
  border: 2px solid var(--forest);
  border-radius: var(--radius);
  overflow: hidden;
}
.scorecard__top {
  background: var(--orange);
  color: var(--white);
  padding: 0.7rem 1rem;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  gap: var(--space-3);
}
.scorecard__body {
  padding: var(--space-4);
}
.scorecard__stats {
  display: grid;
  gap: 0.45rem;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.92rem;
}
.scorecard__stats li {
  display: flex;
  justify-content: space-between;
  gap: var(--space-3);
  border-bottom: 2px dashed var(--line);
  padding-bottom: 0.35rem;
}
.scorecard__stats span:last-child {
  font-weight: 700;
  color: var(--forest-deep);
  font-variant-numeric: tabular-nums;
  text-align: right;
}

/* —— split content with sidebar —— */
.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
  padding: var(--space-6) 0;
}
@media (min-width: 900px) {
  .split {
    grid-template-columns: minmax(0, 1fr) 16.5rem;
    align-items: start;
  }
}
.side-card {
  background: var(--forest-soft);
  border: 2px solid var(--forest);
  border-radius: var(--radius);
  padding: var(--space-4);
  position: sticky;
  top: 5rem;
}
.side-card h3 {
  font-size: 1.1rem;
  color: var(--forest-deep);
}
.side-card p,
.side-card li {
  font-size: 0.92rem;
  color: var(--ink-soft);
}
.side-card img {
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-3);
  border: 2px solid var(--forest);
}

/* —— method —— */
.method {
  padding: var(--space-6) 0;
}
.method__panel {
  background: var(--white);
  border: 2px solid var(--forest);
  border-radius: 2rem;
  padding: var(--space-5);
}
.method__panel h2 { font-size: 1.7rem; }
.method__figure {
  margin: var(--space-5) 0 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid var(--line);
}
.method__figure img { width: 100%; }

/* —— faq prose —— */
.faq {
  padding: var(--space-6) 0;
}
.faq__block {
  background: var(--white);
  border: 2px solid var(--forest);
  border-radius: var(--radius);
  padding: var(--space-5);
  margin-bottom: var(--space-4);
}
.faq__block h3 {
  font-size: 1.25rem;
  color: var(--forest-deep);
}

/* —— figure —— */
.figure {
  margin: var(--space-5) 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid var(--forest);
}
.figure img { width: 100%; }
.figure figcaption {
  padding: 0.65rem 1rem;
  font-size: 0.85rem;
  color: var(--muted);
  background: var(--porcelain-deep);
}

/* —— page hero compact —— */
.page-hero {
  padding: var(--space-6) 0 var(--space-4);
}
.page-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  max-width: 18ch;
}
.page-hero__lead {
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.prose {
  padding-bottom: var(--space-6);
}
.prose h2 {
  font-size: 1.45rem;
  margin-top: var(--space-6);
}
.prose h3 {
  font-size: 1.15rem;
  margin-top: var(--space-5);
}

/* —— cookie banner —— */
.cookie {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 80;
  background: var(--white);
  border: 2px solid var(--forest);
  border-radius: var(--radius);
  padding: var(--space-4);
  display: none;
  gap: var(--space-3);
  align-items: flex-start;
  box-shadow: var(--shadow-one);
  max-width: 36rem;
  margin-inline: auto;
}
.cookie.is-visible { display: grid; }
.cookie p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--ink-soft);
}
.cookie__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* —— footer two-deck —— */
.site-footer {
  background: var(--white);
  border-top: 2px solid var(--forest);
  margin-top: var(--space-6);
}
.footer-brand {
  background: var(--forest);
  color: var(--white);
  padding: var(--space-4);
  text-align: center;
}
.footer-brand__inner {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  font-size: 1.1rem;
}
.footer-brand img {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.5);
}
.footer-deck {
  padding: var(--space-6) 0;
}
.footer-deck__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-5);
}
@media (min-width: 800px) {
  .footer-deck__grid { grid-template-columns: repeat(4, 1fr); }
}
.footer-deck h3 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--forest-deep);
  margin-bottom: var(--space-3);
}
.footer-deck ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-deck li { margin-bottom: 0.4rem; }
.footer-deck a {
  color: var(--ink-soft);
  font-size: 0.92rem;
}
.footer-deck a::after {
  content: " ›";
  color: var(--orange);
}
.footer-safety {
  background: var(--forest-soft);
  border-top: 2px dashed var(--forest);
  padding: var(--space-5) 0;
}
.footer-safety h3 {
  font-size: 1rem;
  color: var(--forest-deep);
  margin-bottom: var(--space-3);
}
.footer-safety__logos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-3);
}
@media (min-width: 700px) {
  .footer-safety__logos { grid-template-columns: repeat(4, 1fr); }
}
.footer-safety__logos a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 4.5rem;
  background: var(--white);
  border: 2px solid var(--forest);
  border-radius: var(--radius);
  padding: 0.6rem;
  text-decoration: none;
}
.footer-safety__logos a:hover {
  border-color: var(--orange);
}
.footer-safety__logos img {
  max-height: 2.4rem;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}
.footer-legal {
  padding: var(--space-4) 0 var(--space-6);
  font-size: 0.85rem;
  color: var(--muted);
}
.footer-legal p { max-width: none; }

/* —— form —— */
.form {
  display: grid;
  gap: var(--space-4);
  max-width: 32rem;
}
.form label {
  display: grid;
  gap: 0.35rem;
  font-weight: 700;
  font-size: 0.95rem;
}
.form input,
.form textarea,
.form select {
  font: inherit;
  padding: 0.75rem 0.9rem;
  border: 2px solid var(--forest);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--ink);
}
.form input:focus,
.form textarea:focus {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
}
.form__note {
  font-size: 0.88rem;
  color: var(--muted);
  font-weight: 400;
}

/* —— utility —— */
.muted { color: var(--muted); }
.center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.section-label {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--forest);
  font-weight: 700;
  margin-bottom: var(--space-2);
}
.disclaimer {
  font-size: 0.88rem;
  color: var(--muted);
  background: var(--porcelain-deep);
  border: 2px dashed var(--line);
  border-radius: var(--radius);
  padding: var(--space-4);
}
.tick { color: var(--forest); font-weight: 700; }
.cross { color: var(--orange-deep); font-weight: 700; }

.letter-flow {
  width: min(100% - 2rem, var(--content));
  margin-inline: auto;
}
.wide-band {
  width: min(100% - 2rem, var(--wide));
  margin-inline: auto;
}
