/* 22 PF — Home (warm, human, HR-relevant)
 * Layered on tokens.css.
 */

*, *::before, *::after { box-sizing: border-box; }
html, body {
  margin: 0;
  padding: 0;
  background: var(--bg-main);
  color: var(--ink-primary);
  font-family: var(--font-sans);
  font-size: var(--type-body);
  line-height: 1.65;
  font-weight: 400;
  font-feature-settings: "ss01", "cv11";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; transition: all 150ms ease-out; }
button, input, select { font-family: inherit; }

/* ── App shell (sidebar + main) ───────────────────────────── */
.app-shell {
  display: grid;
  grid-template-columns: var(--sidebar-w) 1fr;
  min-height: 100vh; height: 100dvh; min-height: 100dvh;
}
@media (max-width: 900px) {
  .app-shell { grid-template-columns: 1fr; }
}

/* ── Sidebar (guided, human, with icons) ──────────────────── */
.sidebar {
  position: sticky;
  top: 0;
  align-self: start;
  height: 100vh; height: 100dvh;
  background: var(--bg-soft);
  border-right: 1px solid var(--border-light);
  padding: 28px 18px;
  display: flex;
  flex-direction: column;
  font-size: 14px;
  overflow-y: auto;
}
@media (max-width: 900px) {
  .sidebar { position: static; height: auto; border-right: none; border-bottom: 1px solid var(--border-light); }
}
.sb-brand {
  font-family: var(--font-mono);
  font-size: 14px;
  letter-spacing: 0.12em;
  color: var(--ink-primary);
  margin: 0 0 4px 6px;
  font-weight: 600;
}
.sb-version {
  font-family: var(--font-sans);
  font-size: 12px;
  color: var(--ink-tertiary);
  margin: 0 0 28px 6px;
  line-height: 1.4;
}
.sb-group {
  margin-bottom: 24px;
}
/* <details>-based collapsible group — collapsed by default, open on user click. */
details.sb-group > summary.sb-group-head {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  user-select: none;
  padding-right: 6px;
}
details.sb-group > summary.sb-group-head::-webkit-details-marker { display: none; }
details.sb-group > summary.sb-group-head::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(-45deg);
  transition: transform 160ms ease-out;
  opacity: 0.55;
  margin-left: 8px;
}
details.sb-group[open] > summary.sb-group-head::after {
  transform: rotate(45deg);
}
details.sb-group > summary.sb-group-head:hover {
  color: var(--ink-secondary);
}
.sb-group-head {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-tertiary);
  font-weight: 500;
  margin: 0 0 8px 6px;
}
.sb-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  color: var(--ink-secondary);
  border-radius: 8px;
  font-size: 14px;
  font-family: var(--font-sans);
  line-height: 1.4;
  transition: background 140ms ease-out, color 140ms ease-out;
}
.sb-link svg {
  width: 16px; height: 16px;
  flex-shrink: 0;
  opacity: 0.7;
}
.sb-link:hover {
  color: var(--ink-primary);
  background: var(--bg-active);
}
.sb-link:hover svg { opacity: 1; }
.sb-link.active {
  background: var(--bg-active);
  color: var(--ink-primary);
  font-weight: 500;
}
.sb-link.active svg { opacity: 1; color: var(--green-soft); }
.sb-spacer { flex: 1; }
.sb-foot {
  border-top: 1px solid var(--border-light);
  padding: 12px 6px 0 6px;
  font-family: var(--font-sans);
  font-size: 12px;
  color: var(--ink-tertiary);
  line-height: 1.55;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.sb-foot svg { flex-shrink: 0; margin-top: 2px; color: var(--green-soft); }

/* ── Main content ─────────────────────────────────────────── */
.content { min-width: 0; }

.section {
  width: 100%;
  margin: 0;
  padding: 28px 0;
}
.section > * {
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}
.content > .section:nth-child(even) { background: var(--bg-soft); }

.section-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: end;
  margin-bottom: 22px;
}
.section-head .lede {
  text-align: right;
  max-width: 44ch;
  margin: 0;
  font-size: 15px;
  font-style: italic;
}
.kicker {
  font-family: var(--font-sans);
  font-size: 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green-soft);
  margin: 0 0 10px 0;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: clip;
}
@media (max-width: 1100px) {
  .kicker { font-size: 12px; letter-spacing: 0.14em; }
}
@media (max-width: 720px) {
  .kicker { font-size: 11px; letter-spacing: 0.12em; }
}
.section-title {
  font-family: var(--font-serif);
  font-size: 28px;
  line-height: 1.2;
  font-weight: 500;
  color: var(--ink-primary);
  margin: 0;
  letter-spacing: -0.005em;
}
.lede {
  font-family: var(--font-serif);
  font-size: 17px;
  line-height: 1.55;
  font-style: italic;
  color: var(--ink-secondary);
  max-width: 56ch;
  margin: 0;
}

/* ── Hero (human + system) ────────────────────────────────── */
.hero {
  max-width: 1320px;
  margin: 0 auto;
  padding: 32px var(--pad-x) 28px var(--pad-x);
}
.hero-grid {
  display: grid;
  grid-template-columns: 0.6fr 1.5fr;
  gap: 48px;
  align-items: start;
}
.hero-grid > .hero-right {
  /* Pull image+box up so the image top is flush with the hero title baseline,
     bypassing the small kicker that sits above the title on the left side. */
  margin-top: -32px;
}
@media (max-width: 1100px) {
  .hero-grid { grid-template-columns: 0.85fr 1.4fr; gap: 36px; }
  .hero-grid > .hero-right { margin-top: -24px; }
}
@media (max-width: 900px) {
  .hero-grid > .hero-right { margin-top: 0; }
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
}
.hero-title {
  font-family: var(--font-serif);
  font-size: 58px;
  line-height: 1.15;
  font-weight: 500;
  margin: 0 0 22px 0;
  color: var(--ink-primary);
  letter-spacing: -0.015em;
  text-wrap: balance;
}
.hero-title em {
  font-style: italic;
  color: var(--green-soft);
}
@media (max-width: 1100px) { .hero-title { font-size: 46px; } }
@media (max-width: 700px)  { .hero-title { font-size: 36px; } }
.hero-lede {
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-secondary);
  font-style: normal;
  max-width: 56ch;
  margin: 0 0 18px 0;
}
.cta-link {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-primary);
  border-bottom: 1px solid var(--green-soft);
  padding-bottom: 2px;
  display: inline-block;
}
.cta-link span {
  display: inline-block;
  margin-left: 4px;
  color: var(--green-soft);
  transition: transform 150ms ease-out;
}
.cta-link:hover span { transform: translateX(4px); }

/* ── Subjects strip (icon pills) ──────────────────────────── */
.subjects-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0 0 26px 0;
}
.subjects-strip li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-secondary);
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  padding: 7px 13px;
  border-radius: 999px;
  transition: all 140ms ease-out;
}
.subjects-strip li:hover {
  background: var(--bg-soft);
  border-color: var(--border-mid);
  color: var(--ink-primary);
}
.subjects-strip li svg { width: 14px; height: 14px; opacity: 0.7; }

/* ── Hero illustration container ──────────────────────────── */
.hero-illustration {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-illustration .hero-image {
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: 0;
  border-radius: 12px;
  position: relative;
  z-index: 1;
  /* Slight tonal blend with the page so the white background of the image
     reads as one with the warm cream canvas, not a hard rectangle. */
  mix-blend-mode: multiply;
}

/* ── Hero slideshow (gentle crossfade, no movement) ─────────
   11 slides · 3.5s window each · ~1s crossfade · 38.5s cycle.
   All slides stack absolutely; only opacity animates so there
   is no zoom, pan, or directional motion. */
.hero-slideshow {
  position: relative;
  width: 100%;
  /* Reserve aspect ratio so the area doesn't collapse before
     the first image loads. Tuned to the dominant 4:3 portraits. */
  aspect-ratio: 4 / 3;
  border-radius: 12px;
  overflow: hidden;
}
.hero-slideshow .hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  /* 11 slides × 3.5s = 38.5s. Each slide visible for ~3.5s
     with ~1s fade in / 1s fade out. */
  animation: heroSlideFade 38.5s linear infinite;
  /* Negative delay so slide 1 (i=1) starts already at 2% of
     the keyframe — i.e. fully visible at page load. */
  animation-delay: calc((var(--i) - 1) * 3.5s - 1s);
}
@keyframes heroSlideFade {
  0%   { opacity: 0; }
  2.2% { opacity: 1; }   /* ~1s fade in   */
  7.7% { opacity: 1; }   /* hold ~2.5s    */
  9.9% { opacity: 0; }   /* ~1s fade out  */
  100% { opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  /* Honour the user's motion preference: hold the first slide,
     hide the rest. No flicker, no animation. */
  .hero-slideshow .hero-slide { animation: none; opacity: 0; }
  .hero-slideshow .hero-slide:first-child { opacity: 1; }
}
.hero-illustration .scene {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-illustration .quote-card {
  position: relative;
  margin: -45px auto 0 auto;     /* sits ~2cm lower than before; less of the image is hidden */
  max-width: 90%;
  width: 90%;
  text-align: center;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 14px;
  padding: 28px 36px 30px 36px;
  box-shadow: 0 18px 40px rgba(31, 31, 31, 0.10), 0 2px 6px rgba(31,31,31,0.04);
  font-family: var(--font-serif);
  color: var(--ink-primary);
  z-index: 2;
}
.hero-illustration .quote-card .qc-headline {
  font-family: var(--font-serif);
  font-size: 21px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--ink-primary);
  margin: 0;
  letter-spacing: -0.005em;
}
.hero-illustration .quote-card .qc-italic {
  font-style: italic;
  color: var(--ink-secondary);
  font-size: 34px;
  line-height: 1.4;
  margin-top: 14px;
  font-weight: 400;
  letter-spacing: -0.005em;
}
.hero-illustration .quote-card .quote-mark {
  color: var(--green-soft);
  font-weight: 600;
  margin-right: 4px;
}
@media (max-width: 1100px) {
  .hero-illustration .quote-card { max-width: 92%; width: 92%; margin-top: -28px; }
  .hero-illustration .quote-card .qc-headline { font-size: 18px; }
  .hero-illustration .quote-card .qc-italic { font-size: 26px; }
}
@media (max-width: 900px) {
  .hero-illustration .quote-card { max-width: 96%; width: 96%; margin-top: -18px; }
}
.hero-illustration .quote-card .quote-mark {
  color: var(--green-soft);
  font-size: 18px;
  margin-right: 4px;
  display: inline-block;
  transform: translateY(2px);
}
.hero-illustration .quote-card .qc-italic {
  font-style: italic;
  color: var(--ink-secondary);
  font-size: 14px;
  margin-top: 6px;
}

/* ── Anchor line ──────────────────────────────────────────── */
.anchor-line {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 17px;
  color: var(--ink-secondary);
  margin: 0 0 22px 0;
  max-width: 56ch;
  line-height: 1.5;
}

/* ── Full-width lede paragraph below hero grid ───────────── */
.hero-lede-full {
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-secondary);
  max-width: 100%;
  margin: 28px 0 0 0;
  padding-top: 0;
  border-top: none;
}
@media (max-width: 900px) {
  .hero-lede-full { margin-top: 22px; font-size: 16px; }
}

/* ── What it reads (colored icon circles) ─────────────────── */
.reads-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 900px) { .reads-grid { grid-template-columns: 1fr; } }
.read-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 10px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 160ms ease-out, box-shadow 160ms ease-out;
  box-shadow: 0 1px 0 rgba(0,0,0,0.03);
}
.read-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.04), 0 1px 0 rgba(0,0,0,0.03);
}
.read-card .icon-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.read-card .icon-circle svg { width: 22px; height: 22px; }
.read-card .read-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--ink-tertiary);
  margin: 0;
}
.read-card .read-title {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 500;
  color: var(--ink-primary);
  margin: 0;
  line-height: 1.25;
}
.read-card .read-body {
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-secondary);
  margin: 0;
}
.read-card.green { border-left: 3px solid var(--green-soft); }
.read-card.green .icon-circle { background: var(--green-tint); color: var(--green-soft); }
.read-card.orange { border-left: 3px solid var(--orange-soft); }
.read-card.orange .icon-circle { background: var(--orange-tint); color: var(--orange-soft); }
.read-card.red { border-left: 3px solid var(--red-soft); }
.read-card.red .icon-circle { background: var(--red-tint); color: var(--red-soft); }

/* ── Framework tiles (color-coded family cards) ──────────── */
.families-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 1100px) { .families-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 720px)  { .families-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .families-grid { grid-template-columns: 1fr; } }
.fam {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-top: 3px solid var(--fam, var(--ink-tertiary));
  border-radius: 10px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 160ms ease-out, box-shadow 160ms ease-out;
  box-shadow: 0 1px 0 rgba(0,0,0,0.03);
}
.fam:hover { transform: translateY(-2px); box-shadow: 0 4px 16px rgba(0,0,0,0.04); }
.fam-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
}
.fam-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--fam-tint, var(--bg-soft));
  color: var(--fam, var(--ink-primary));
  flex-shrink: 0;
}
.fam-icon svg { width: 20px; height: 20px; }
.fam-name {
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 500;
  color: var(--ink-primary);
  margin: 0;
  line-height: 1.1;
}
.fam-meta {
  font-family: var(--font-sans);
  font-size: 11px;
  color: var(--ink-tertiary);
  margin: 1px 0 0 0;
  letter-spacing: 0.02em;
}
.fam-desc {
  font-family: var(--font-sans);
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--ink-secondary);
  margin: 0;
}
.fam-factors {
  list-style: none;
  margin: 6px 0 0 0;
  padding: 10px 0 0 0;
  border-top: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.fam-factors li {
  font-family: var(--font-serif);
  font-size: 13.5px;
  color: var(--ink-primary);
  padding-left: 14px;
  position: relative;
  line-height: 1.4;
}
.fam-factors li::before {
  content: "";
  width: 4px; height: 4px;
  background: var(--fam, var(--ink-tertiary));
  border-radius: 50%;
  position: absolute;
  left: 2px;
  top: 8px;
}
.dimensions-note {
  font-family: var(--font-serif);
  font-size: 16px;
  font-style: italic;
  color: var(--ink-secondary);
  text-align: center;
  margin: 28px auto 0 auto;
  max-width: 64ch;
}
.dimensions-note strong { font-weight: 600; color: var(--ink-primary); font-style: normal; }

/* ── 2,916 types block ───────────────────────────────────── */
.types-grid-visual {
  margin: 0 0 18px 0;
  border: 1px solid var(--border-light);
  border-radius: 10px;
  overflow: hidden;
  background: var(--bg-card);
}
.types-grid-visual svg { display: block; height: 80px; }
.types-block {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 32px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 36px;
  align-items: center;
  box-shadow: 0 1px 0 rgba(0,0,0,0.03);
}
@media (max-width: 900px) { .types-block { grid-template-columns: 1fr; padding: 24px; gap: 22px; } }
.types-left .kicker { margin-bottom: 8px; }
.types-left .section-title { margin-bottom: 14px; }
.types-body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-secondary);
  margin: 0;
}
.types-right { display: flex; flex-direction: column; gap: 16px; }
.types-stat {
  text-align: center;
  padding: 24px;
  background: var(--bg-soft);
  border: 1px solid var(--border-light);
  border-radius: 10px;
}
.ts-num {
  font-family: var(--font-serif);
  font-size: 56px;
  font-weight: 500;
  line-height: 1;
  color: var(--green-soft);
  margin: 0;
  letter-spacing: -0.02em;
}
.ts-cap {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-tertiary);
  margin: 8px 0 0 0;
  font-weight: 600;
}
.compare-list {
  list-style: none; margin: 0; padding: 0;
  border: 1px solid var(--border-light);
  border-radius: 10px;
  overflow: hidden;
  background: var(--bg-card);
}
.compare-list li {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 11px 16px;
  border-bottom: 1px solid var(--border-light);
  font-family: var(--font-sans);
  font-size: 14px;
}
.compare-list li:last-child { border-bottom: none; }
.compare-list li.cmp-self { background: var(--green-soft); color: #FFFFFF; }
.compare-list .cmp-name { color: var(--ink-secondary); font-weight: 500; }
.compare-list li.cmp-self .cmp-name { color: #FFFFFF; }
.compare-list .cmp-num {
  font-family: var(--font-mono);
  color: var(--ink-primary);
  font-weight: 500;
}
.compare-list li.cmp-self .cmp-num { color: #FFFFFF; font-weight: 600; }

/* ── Steps (How it works) ────────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (max-width: 900px) { .steps-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .steps-grid { grid-template-columns: 1fr; } }
.step {
  display: flex; flex-direction: column; gap: 8px;
  padding: 18px;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 10px;
  box-shadow: 0 1px 0 rgba(0,0,0,0.03);
}
.step-num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-tertiary);
  letter-spacing: 0.05em;
}
.step-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--green-tint);
  color: var(--green-soft);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 4px;
}
.step-icon svg { width: 18px; height: 18px; }
.step-title {
  font-family: var(--font-serif);
  font-size: 17px;
  line-height: 1.3;
  color: var(--ink-primary);
  margin: 0;
  font-weight: 500;
}
.step-body {
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-secondary);
  margin: 0;
}
.code-pill {
  display: inline-block;
  background: var(--bg-soft);
  border-radius: 999px;
  padding: 5px 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-primary);
  border: 1px solid var(--border-light);
  margin-top: 6px;
  align-self: flex-start;
}

/* ── Audience picker (dropdown + featured vignette) ──────── */
.audience-picker {
  display: flex; flex-direction: column; gap: 6px;
  margin-bottom: 18px; max-width: 420px;
}
.ap-label {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-tertiary);
  font-weight: 600;
}
.ap-select {
  appearance: none; -webkit-appearance: none;
  background: var(--bg-card) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8' fill='%239A948C'%3E%3Cpath d='M1 1l5 5 5-5'/%3E%3C/svg%3E") no-repeat right 14px center;
  background-size: 10px;
  border: 1px solid var(--border-mid);
  border-radius: 10px;
  padding: 11px 38px 11px 14px;
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--ink-primary);
  cursor: pointer;
  transition: border-color 140ms ease-out;
}
.ap-select:hover, .ap-select:focus {
  border-color: var(--green-soft); outline: none;
}
.audience-vignette {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 28px;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 28px;
  min-height: 220px;
  box-shadow: 0 1px 0 rgba(0,0,0,0.03);
}
@media (max-width: 720px) { .audience-vignette { grid-template-columns: 1fr; padding: 20px; } }
.av-tag {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-soft);
  font-weight: 600;
  margin: 0 0 12px 0;
}
.av-quote {
  font-family: var(--font-serif);
  font-size: 22px;
  line-height: 1.3;
  font-style: italic;
  color: var(--ink-primary);
  margin: 0 0 12px 0;
  font-weight: 500;
}
.av-body {
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-secondary);
  margin: 0;
  max-width: 56ch;
}
.av-right { text-align: center; }
.av-right svg { max-width: 200px; }

.what-footnote {
  font-family: var(--font-sans);
  font-size: 12px;
  color: var(--ink-tertiary);
  text-align: center;
  margin: 22px auto 0 auto;
}

/* ── Editions ─────────────────────────────────────────────── */
.editions-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
@media (max-width: 900px) { .editions-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 540px) { .editions-grid { grid-template-columns: repeat(2, 1fr); } }
.edition {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 10px;
  padding: 16px;
  display: flex; flex-direction: column; gap: 8px;
  transition: transform 160ms ease-out, box-shadow 160ms ease-out;
  box-shadow: 0 1px 0 rgba(0,0,0,0.03);
}
.edition:hover { transform: translateY(-2px); box-shadow: 0 4px 16px rgba(0,0,0,0.04); }
.e-icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: var(--bg-soft);
  color: var(--ink-primary);
  display: inline-flex; align-items: center; justify-content: center;
}
.e-icon svg { width: 18px; height: 18px; }
.e-title {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 500;
  color: var(--ink-primary);
  margin: 4px 0 0 0;
}
.e-desc {
  font-family: var(--font-sans);
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--ink-secondary);
  margin: 0;
}

/* ── Samples ──────────────────────────────────────────────── */
.samples-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
@media (max-width: 720px) { .samples-grid { grid-template-columns: 1fr; } }
.sample {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 22px;
  border-top: 3px solid var(--green-soft);
  box-shadow: 0 1px 0 rgba(0,0,0,0.03);
}
.sample.tension { border-top-color: var(--red-soft); }
.sample-fp { display: flex; justify-content: center; padding: 4px 0 8px 0; }
.sample-fp svg { width: 100%; max-width: 160px; height: auto; }
.sample-code {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--ink-tertiary);
  margin: 0 0 6px 0;
}
.sample-name {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
  font-style: italic;
  margin: 0 0 8px 0;
  color: var(--ink-primary);
}
.sample-meta {
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--ink-tertiary);
  margin: 0 0 16px 0;
}
.sample-meta strong { font-weight: 600; color: var(--green-soft); }
.sample.tension .sample-meta strong { color: var(--red-soft); }
.sample-quote {
  font-family: var(--font-serif);
  font-size: 16px;
  font-style: italic;
  line-height: 1.55;
  color: var(--ink-primary);
  margin: 0;
}

/* ── CTA ──────────────────────────────────────────────────── */
.cta-section {
  text-align: center;
  padding: 32px var(--pad-x);
  max-width: 1320px;
  margin: 24px auto 24px auto;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 14px;
  box-shadow: 0 1px 0 rgba(0,0,0,0.03);
}
.cta-section .lede {
  margin: 0 auto 14px auto;
  max-width: 56ch;
  text-align: center;
  font-size: 16px;
}
.cta-row {
  display: flex; gap: 10px;
  justify-content: center; flex-wrap: wrap;
  margin-top: 14px;
}
.btn-primary {
  background: var(--ink-primary);
  color: #FFFFFF;
  padding: 11px 22px;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  border: 1px solid var(--ink-primary);
  transition: background 140ms ease-out;
  cursor: pointer;
  display: inline-block;
}
.btn-primary:hover { background: #000; }
.btn-secondary {
  background: transparent;
  color: var(--ink-primary);
  padding: 11px 22px;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  border: 1px solid var(--border-mid);
  transition: border-color 140ms ease-out;
  cursor: pointer;
  display: inline-block;
}
.btn-secondary:hover { border-color: var(--ink-primary); }

/* ── Content footer ───────────────────────────────────────── */
.content-footer {
  border-top: 1px solid var(--border-light);
  padding: 18px var(--pad-x);
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-tertiary);
  max-width: 1320px;
  margin: 0 auto;
}

/* ── Begin / Edition / Questionnaire shared styles ────────── */
.begin-head { padding: 0; }
.begin-title {
  font-family: var(--font-serif);
  font-size: 40px;
  font-weight: 500;
  line-height: 1.15;
  margin: 0 0 14px 0;
  color: var(--ink-primary);
  letter-spacing: -0.01em;
  text-wrap: balance;
}
.begin-lede {
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-secondary);
  max-width: 64ch;
  margin: 0;
}

/* Sidebar sub-link (nested) */
.sb-link.sb-link-sub { padding-left: 28px; font-size: 13px; }
.sb-link.sb-link-sub-2 { padding-left: 46px; font-size: 13px; }
.sb-link.sb-link-sub svg, .sb-link.sb-link-sub-2 svg {
  width: 8px; height: 8px;
  color: var(--ink-tertiary);
}
.sb-link.active.sb-link-sub svg,
.sb-link.active.sb-link-sub-2 svg { color: var(--green-soft); }

/* ── Edition selector grid (Begin → /start) ──────────────── */
.ed-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (max-width: 1100px) { .ed-grid { grid-template-columns: 1fr; } }
.ed-card {
  display: block;
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-left: 4px solid var(--fam, var(--ink-tertiary));
  border-radius: 12px;
  padding: 22px 28px;
  text-decoration: none;
  transition: transform 160ms ease-out, box-shadow 160ms ease-out, border-color 160ms ease-out;
  box-shadow: 0 1px 0 rgba(0,0,0,0.03);
}
.ed-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(0,0,0,0.05), 0 1px 0 rgba(0,0,0,0.03);
}
.ed-card-icon {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.ed-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--fam, var(--ink-tertiary));
  display: inline-block;
}
.ed-card-name {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 500;
  margin: 4px 0 4px 0;
  color: var(--ink-primary);
  letter-spacing: -0.01em;
}
.ed-card-tag {
  font-family: var(--font-sans);
  font-size: 14px;
  letter-spacing: 0.02em;
  color: var(--fam, var(--ink-secondary));
  margin: 0 0 10px 0;
  font-weight: 500;
}
.ed-card-desc {
  font-family: var(--font-serif);
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-secondary);
  margin: 0 0 12px 0;
}
.ed-card-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-tertiary);
  margin: 0;
  letter-spacing: 0.02em;
}
.ed-card-meta .ed-ready { color: var(--green-soft); font-weight: 600; }
.ed-card-arrow {
  position: absolute;
  top: 22px;
  right: 22px;
  font-family: var(--font-sans);
  font-size: 18px;
  color: var(--ink-tertiary);
  transition: transform 140ms ease-out, color 140ms ease-out;
}
.ed-card:hover .ed-card-arrow {
  color: var(--fam, var(--ink-primary));
  transform: translateX(4px);
}

/* ── Sub-type grid (Edition page) ────────────────────────── */
.st-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 14px;
  margin-top: 12px;
}
.st-card {
  display: block;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-top: 3px solid var(--fam, var(--ink-tertiary));
  border-radius: 12px;
  padding: 20px;
  text-decoration: none;
  transition: transform 160ms ease-out, box-shadow 160ms ease-out;
  box-shadow: 0 1px 0 rgba(0,0,0,0.03);
}
.st-card.ready:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(0,0,0,0.05), 0 1px 0 rgba(0,0,0,0.03);
}
.st-card.pending { opacity: 0.78; cursor: default; }
.st-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.st-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--fam, var(--ink-tertiary));
  display: inline-block;
}
.st-status {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-tertiary);
  font-weight: 600;
}
.st-card.ready .st-status { color: var(--green-soft); }
.st-card-name {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
  margin: 0 0 8px 0;
  color: var(--ink-primary);
}
.st-card-blurb {
  font-family: var(--font-serif);
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink-secondary);
  margin: 0 0 14px 0;
}
.st-card-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-tertiary);
  margin: 0 0 14px 0;
  letter-spacing: 0.02em;
}
.st-card-arrow {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  color: var(--fam, var(--ink-primary));
  display: inline-block;
  transition: transform 140ms ease-out;
}
.st-card-arrow.muted { color: var(--ink-tertiary); }
.st-card.ready:hover .st-card-arrow { transform: translateX(3px); }

/* ── Questionnaire pre-screen ─────────────────────────────── */
.q-pre {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 28px 32px;
  margin-bottom: 18px;
  box-shadow: 0 1px 0 rgba(0,0,0,0.03);
}
.q-pre .kicker { margin-bottom: 14px; }
.prep-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.prep-list li {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 14px;
  align-items: start;
}
.prep-num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-tertiary);
  padding-top: 4px;
  letter-spacing: 0.05em;
}
.prep-body {
  font-family: var(--font-serif);
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink-primary);
}
.q-pre-cta {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.q-pre-cta .btn-primary[disabled] {
  opacity: 0.4;
  cursor: not-allowed;
  background: var(--ink-tertiary);
  border-color: var(--ink-tertiary);
}
.q-pre-note {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-tertiary);
  font-style: italic;
}

/* Questionnaire metadata card */
.q-meta-card {
  background: var(--bg-soft);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 22px 28px;
}
.q-meta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px 28px;
}
@media (max-width: 720px) { .q-meta-grid { grid-template-columns: repeat(2, 1fr); } }
.q-meta-label {
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-tertiary);
  font-weight: 600;
  margin: 0 0 4px 0;
}
.q-meta-val {
  font-family: var(--font-serif);
  font-size: 16px;
  color: var(--ink-primary);
  margin: 0;
  line-height: 1.4;
}

.q-pending {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-left: 4px solid var(--ink-tertiary);
  border-radius: 12px;
  padding: 32px 36px;
  box-shadow: 0 1px 0 rgba(0,0,0,0.03);
}
.q-pending .section-title { margin-top: 6px; }

/* ── Question shell (active questionnaire) ───────────────── */
.q-shell {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 36px 40px 28px 40px;
  box-shadow: 0 1px 0 rgba(0,0,0,0.03);
  transition: opacity 240ms ease-out, transform 240ms ease-out;
}
.q-shell.fade-out-left { opacity: 0; transform: translateX(-16px); }
.q-shell.fade-out-right { opacity: 0; transform: translateX(16px); }
.q-shell-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 22px;
}
.q-progress {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-tertiary);
  letter-spacing: 0.04em;
}
.q-block {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-soft);
  font-weight: 600;
}
.q-prompt {
  font-family: var(--font-serif);
  font-size: 26px;
  line-height: 1.3;
  color: var(--ink-primary);
  margin: 0 0 28px 0;
  font-weight: 500;
  text-wrap: balance;
}
@media (max-width: 720px) {
  .q-prompt { font-size: 21px; }
  .q-shell { padding: 24px 20px 20px 20px; }
}
.q-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 26px;
}
.q-option {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  text-align: left;
  background: var(--bg-soft);
  border: 1px solid var(--border-light);
  border-radius: 10px;
  padding: 14px 18px;
  cursor: pointer;
  font-family: var(--font-serif);
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink-primary);
  transition: background 140ms ease-out, border-color 140ms ease-out, transform 140ms ease-out;
  width: 100%;
}
.q-option:hover {
  background: var(--bg-card);
  border-color: var(--ink-tertiary);
}
.q-option.committed {
  background: var(--green-tint);
  border-color: var(--green-soft);
}
.q-opt-letter {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--ink-tertiary);
  border: 1px solid var(--border-mid);
  background: var(--bg-card);
  border-radius: 4px;
  padding: 3px 7px;
  min-width: 22px;
  text-align: center;
  flex-shrink: 0;
}
.q-option.committed .q-opt-letter {
  background: var(--green-soft);
  color: white;
  border-color: var(--green-soft);
}
.q-opt-text { flex: 1; }
.q-shell-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 14px;
  border-top: 1px solid var(--border-light);
}
.q-shell-hint {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-tertiary);
  letter-spacing: 0.04em;
}
.btn-quiet {
  background: none;
  border: none;
  color: var(--ink-secondary);
  font-family: var(--font-sans);
  font-size: 14px;
  cursor: pointer;
  padding: 6px 10px;
  border-radius: 6px;
  transition: all 140ms ease-out;
}
.btn-quiet:hover:not(:disabled) {
  color: var(--ink-primary);
  background: var(--bg-soft);
}
.btn-quiet:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

/* ── Result view ─────────────────────────────────────────── */
.q-result { display: flex; flex-direction: column; gap: 22px; }
.r-code-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-top: 4px solid var(--green-soft);
  border-radius: 12px;
  padding: 32px 36px;
  text-align: center;
  box-shadow: 0 1px 0 rgba(0,0,0,0.03);
}
.r-code {
  font-family: var(--font-mono);
  font-size: 36px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--ink-primary);
  margin: 0 0 14px 0;
}
@media (max-width: 720px) { .r-code { font-size: 26px; } }
.r-meta {
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--ink-tertiary);
  margin: 0;
  letter-spacing: 0.04em;
}
.r-band { color: var(--green-soft); font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em; }
.r-divider { margin: 0 8px; opacity: 0.5; }
.r-active-h {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 500;
  color: var(--ink-primary);
  margin: 6px 0 4px 0;
}
.r-active {
  list-style: none;
  margin: 0;
  padding: 0;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 1px 0 rgba(0,0,0,0.03);
}
.r-active-item {
  display: grid;
  grid-template-columns: 140px 1fr 60px;
  gap: 14px;
  padding: 12px 22px;
  border-bottom: 1px solid var(--border-light);
  align-items: center;
}
.r-active-item:last-child { border-bottom: none; }
.r-fam {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-tertiary);
  font-weight: 600;
}
.r-beh {
  font-family: var(--font-serif);
  font-size: 17px;
  color: var(--ink-primary);
  font-weight: 500;
}
.r-letter {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 600;
  color: var(--green-soft);
  text-align: right;
  letter-spacing: 0.06em;
}
.r-paywall {
  background: var(--bg-soft);
  border: 1px dashed var(--border-mid);
  border-radius: 12px;
  padding: 26px 32px;
}
.r-paywall-h {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
  margin: 0 0 10px 0;
  color: var(--ink-primary);
}
.r-paywall-body {
  font-family: var(--font-serif);
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-secondary);
  margin: 0 0 16px 0;
  max-width: 64ch;
}


/* === Tier 3 modern CSS (mobile-native polish) === */

/* iOS notch + Dynamic Island handling */
body {
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
}

/* All buttons / links: kill the 300ms tap delay on Android; sharper feel on iOS */
button, a, [role="button"], .btn-primary, .btn-secondary, .btn-quiet,
.sq-option, .hero-cta, .st-card, .q-option, .sb-link {
  touch-action: manipulation;
  -webkit-tap-highlight-color: rgba(31, 58, 104, 0.08);
}

/* Questionnaire scroll container — kill accidental pull-to-refresh during the test */
#quick-root, .q-shell {
  overscroll-behavior-y: contain;
}

/* Fluid type — smooth size scaling across all phone widths (320px) to laptop (1200px) */
.hero-title { font-size: clamp(28px, 5.5vw, 56px); }
.section-title { font-size: clamp(22px, 3.4vw, 32px); }
.r-paywall-h, .read-title { font-size: clamp(18px, 2.6vw, 22px); }

/* Dark mode — auto-applied for iOS night-readers, opt-out via .force-light on html */
@media (prefers-color-scheme: dark) {
  html:not(.force-light) {
    --ink-primary: #e8eaef;
    --ink-muted: #9aa0ac;
    --border-mid: #2a3340;
    --border-light: #1a2230;
    --green-tint: #1a2a22;
    --green-soft: #6ea584;
  }
  html:not(.force-light) body {
    background: #0e1320;
    color: var(--ink-primary);
  }
  html:not(.force-light) .st-card,
  html:not(.force-light) #sq-card,
  html:not(.force-light) .r-code-card {
    background: #161d2c;
    border-color: var(--border-mid);
  }
}

/* Reduce motion if requested (already partly handled, this catches the rest) */
@media (prefers-reduced-motion: reduce) {
  .hero-slide, .sq-option, .st-card {
    animation: none !important;
    transition: none !important;
  }
}

/* === Single-pick state (reverted 2026-05-12 from closest+farthest) === */
.q-option.picked {
  border-color: var(--green-soft, #4a7a5c) !important;
  background: var(--green-tint, #e6f0e8) !important;
}

/* === Closest+Farthest two-pick states (legacy — kept for any in-flight sessions) === */
.q-option.picked-closest {
  border-color: var(--green-soft, #4a7a5c) !important;
  background: var(--green-tint, #e6f0e8) !important;
  position: relative;
}
.q-option.picked-closest::after {
  content: "✓ closest";
  position: absolute;
  top: 8px;
  right: 12px;
  font-size: 0.78em;
  color: var(--green-soft, #4a7a5c);
  font-weight: 600;
  letter-spacing: 0.5px;
}
.q-option.picked-farthest {
  border-color: var(--burgundy-soft, #7B2D26) !important;
  background: #f5e9e7 !important;
  position: relative;
}
.q-option.picked-farthest::after {
  content: "✗ farthest";
  position: absolute;
  top: 8px;
  right: 12px;
  font-size: 0.78em;
  color: var(--burgundy-soft, #7B2D26);
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* === Mobile nav: hamburger drawer (locked 2026-05-12) === */
/* Default (desktop, ≥ 901px): no toggle button visible, sidebar in its normal position. */
.mobile-nav-toggle { display: none; }

@media (max-width: 900px) {
  /* Hide the long sidebar by default on phone */
  .sidebar { display: none; }

  /* Show the hamburger pinned top-right */
  .mobile-nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 12px;
    right: 12px;
    width: 44px;
    height: 44px;
    background: #fff;
    border: 1px solid var(--border-mid, #c8c5bd);
    border-radius: 8px;
    color: var(--ink-primary, #1F3A68);
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    z-index: 1001;
    box-shadow: 0 2px 8px rgba(31, 58, 104, 0.10);
    padding: 0;
  }
  .mobile-nav-toggle:active { transform: scale(0.96); }

  /* When the sidebar is .is-open: full-screen overlay panel */
  .sidebar.is-open {
    display: block;
    position: fixed;
    inset: 0;                                 /* fills viewport */
    z-index: 1000;
    background: #fff;
    border: none;
    height: 100vh;
    height: 100dvh;                          /* dvh for iOS Safari */
    overflow-y: auto;
    padding: 70px 24px 32px;                  /* top-padding clears the close button */
    overscroll-behavior: contain;
  }

  /* Reflow content so the first thing the phone visitor sees is the hero */
  .app-shell { grid-template-columns: 1fr; }
  .content { padding-top: 8px; }
}
