/* ==========================================================================
   Roots & Rivers — shared stylesheet (v2)
   Brand: root-brown #5C3D2E · river-teal #1B6B6D · gold #C49A3C · cream #FBF7F0
   ========================================================================== */

:root {
  --root: #5C3D2E;
  --root-soft: #7A5A48;
  --river: #1B6B6D;
  --river-deep: #145557;
  --gold: #C49A3C;
  --bg: #FBF7F0;
  --surface: #FFFFFF;
  --surface-alt: #F5EDE0;
  --border: #E8DFD2;
  --ink: #33302B;
  --muted: #5F5044;
  --shadow-sm: 0 1px 3px rgba(92, 61, 46, 0.08);
  --shadow-md: 0 4px 16px rgba(92, 61, 46, 0.10);
  --shadow-lg: 0 10px 32px rgba(92, 61, 46, 0.14);
  --radius: 12px;
  --radius-lg: 18px;
  --font-serif: Georgia, "Iowan Old Style", "Palatino Linotype", Palatino, "Times New Roman", serif;
  --font-sans: "Seravek", "Gill Sans Nova", Ubuntu, Calibri, "DejaVu Sans", "Segoe UI", Helvetica, Arial, sans-serif;
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 1rem;
  --space-4: 1.5rem;
  --space-5: 2rem;
  --space-6: 3rem;
  --space-7: 4.5rem;
  --space-8: 6rem;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { max-width: 100%; }

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  color: var(--root);
  line-height: 1.25;
  margin: 0 0 var(--space-3);
}

h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.25rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }

p { margin: 0 0 var(--space-3); }

a { color: var(--river); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--river-deep); }

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

::selection { background: rgba(196, 154, 60, 0.3); }

.container {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 var(--space-4);
}

.container--narrow { max-width: 46rem; }

.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--river);
  font-weight: 600;
  margin-bottom: var(--space-2);
  display: block;
}

.lede {
  font-size: 1.1875rem;
  color: var(--muted);
}

/* --------------------------------------------------------------------------
   Skip link
   -------------------------------------------------------------------------- */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--river);
  color: #fff;
  padding: 0.75rem 1.25rem;
  z-index: 200;
  border-radius: 0 0 var(--radius) 0;
}
.skip-link:focus { left: 0; color: #fff; }

/* --------------------------------------------------------------------------
   Header / navigation
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 247, 240, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  min-height: 4.25rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--root);
}

.brand__mark { width: 2.4rem; height: 2.4rem; flex: none; }

.brand__name {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.brand__tagline {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.site-nav { display: flex; align-items: center; gap: var(--space-4); }

.site-nav__list {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav__link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--root);
  text-decoration: none;
  padding: 0.4rem 0.1rem;
  border-bottom: 2px solid transparent;
  transition: color 200ms ease, border-color 200ms ease;
  white-space: nowrap;
}

.site-nav > .btn { white-space: nowrap; }

.site-nav__link:hover { color: var(--river); }

.site-nav__link[aria-current="page"] {
  color: var(--river);
  border-bottom-color: var(--gold);
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.55rem;
  cursor: pointer;
  color: var(--root);
  min-width: 44px;
  min-height: 44px;
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.2;
  padding: 0.85rem 1.6rem;
  min-height: 48px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 200ms ease, color 200ms ease, box-shadow 200ms ease, transform 200ms ease;
}

.btn--primary {
  background: var(--river);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn--primary:hover {
  background: var(--river-deep);
  color: #fff;
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

.btn--ghost {
  background: transparent;
  color: var(--river);
  border-color: var(--river);
}
.btn--ghost:hover { background: rgba(27, 107, 109, 0.08); color: var(--river-deep); }

.btn--lg { font-size: 1.1rem; padding: 1rem 2rem; }

.btn__note {
  display: block;
  margin-top: var(--space-2);
  font-size: 0.875rem;
  color: var(--muted);
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */
.hero {
  padding: var(--space-7) 0 var(--space-6);
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 60rem 30rem at 85% 10%, rgba(27, 107, 109, 0.06), transparent 60%),
    radial-gradient(ellipse 50rem 26rem at 10% 90%, rgba(92, 61, 46, 0.05), transparent 60%);
}

.hero__inner {
  max-width: 50rem;
  position: relative;
  z-index: 1;
}

.hero h1 { margin-bottom: var(--space-4); }

.hero__sub {
  font-size: 1.25rem;
  color: var(--muted);
  max-width: 40rem;
  margin-bottom: var(--space-5);
}

.hero__credit {
  font-size: 0.9375rem;
  color: var(--muted);
  margin-top: var(--space-4);
}

.hero__rivers {
  position: absolute;
  right: -4rem;
  top: 20%;
  width: 34rem;
  opacity: 0.55;
  pointer-events: none;
}

/* --------------------------------------------------------------------------
   Sections
   -------------------------------------------------------------------------- */
.section { padding: var(--space-7) 0; }
.section--alt { background: var(--surface-alt); }
.section--tight { padding: var(--space-6) 0; }

.section-head { max-width: 44rem; margin-bottom: var(--space-6); }

/* --------------------------------------------------------------------------
   Brand-motif section divider (two converging waters + gold meeting point)
   -------------------------------------------------------------------------- */
.divider {
  display: flex;
  justify-content: center;
  padding: var(--space-2) 0;
}

.divider svg { width: 9rem; height: auto; opacity: 0.8; }

/* --------------------------------------------------------------------------
   Utility spacing / alignment (replaces inline styles)
   -------------------------------------------------------------------------- */
.mt-block { margin-top: var(--space-5); padding: 0; }
.center-block { text-align: center; padding: var(--space-4) 0; }
.cta-band__link { color: rgba(255, 255, 255, 0.85); }
.cta-band__link:hover { color: #fff; }

/* --------------------------------------------------------------------------
   Reassurance note (soft aside for anxious readers)
   -------------------------------------------------------------------------- */
.note-soft {
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: var(--space-4);
  font-size: 0.9875rem;
  color: var(--muted);
  margin: var(--space-4) 0;
}

/* --------------------------------------------------------------------------
   Phase jump links (scannable overview on method page)
   -------------------------------------------------------------------------- */
.jump-nav {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  list-style: none;
  padding: 0;
  margin: var(--space-4) 0 0;
}

.jump-nav a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.5rem 1.1rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--river);
  text-decoration: none;
  min-height: 44px;
  transition: border-color 200ms ease, box-shadow 200ms ease;
}

.jump-nav a:hover { border-color: var(--river); box-shadow: var(--shadow-sm); }

/* --------------------------------------------------------------------------
   FAQ (details/summary)
   -------------------------------------------------------------------------- */
.faq { display: grid; gap: var(--space-3); }

.faq details {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0;
  box-shadow: var(--shadow-sm);
}

.faq summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--root);
  padding: var(--space-4);
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  min-height: 44px;
}

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

.faq summary::after {
  content: "";
  flex: none;
  width: 0.7rem;
  height: 0.7rem;
  border-right: 2px solid var(--river);
  border-bottom: 2px solid var(--river);
  transform: rotate(45deg);
  transition: transform 200ms ease;
}

.faq details[open] summary::after { transform: rotate(-135deg); }

.faq details > div { padding: 0 var(--space-4) var(--space-4); color: var(--muted); }

/* --------------------------------------------------------------------------
   Pull quote
   -------------------------------------------------------------------------- */
.pullquote {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 2.6vw, 1.6rem);
  font-style: italic;
  color: var(--root);
  line-height: 1.55;
  border-left: 3px solid var(--gold);
  padding-left: var(--space-4);
  margin: var(--space-5) 0;
}

.pullquote cite {
  display: block;
  font-family: var(--font-sans);
  font-style: normal;
  font-size: 0.9375rem;
  color: var(--muted);
  margin-top: var(--space-3);
}

/* --------------------------------------------------------------------------
   Cards / grids
   -------------------------------------------------------------------------- */
.grid {
  display: grid;
  gap: var(--space-4);
}

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

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  box-shadow: var(--shadow-sm);
}

.card h3 { margin-top: var(--space-3); }

.card__icon {
  width: 3rem;
  height: 3rem;
  border-radius: 12px;
  background: var(--surface-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--river);
}

.card__phase {
  font-size: 0.8125rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
}

.card--link { text-decoration: none; color: inherit; display: block; transition: box-shadow 200ms ease, transform 200ms ease; }
.card--link:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); color: inherit; }

.card__more { color: var(--river); font-weight: 600; font-size: 0.95rem; }

/* --------------------------------------------------------------------------
   Stats
   -------------------------------------------------------------------------- */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
  margin: var(--space-5) 0;
}

.stat {
  text-align: center;
  padding: var(--space-4);
  border-top: 2px solid var(--gold);
  background: var(--surface);
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: var(--shadow-sm);
}

.stat__number {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  color: var(--river);
  line-height: 1.1;
  display: block;
}

.stat__label { font-size: 0.9375rem; color: var(--muted); }

/* --------------------------------------------------------------------------
   Checklist / crosslist
   -------------------------------------------------------------------------- */
.checklist, .crosslist {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-4);
  display: grid;
  gap: var(--space-3);
}

.checklist li, .crosslist li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.checklist li svg, .crosslist li svg {
  flex: none;
  width: 1.4rem;
  height: 1.4rem;
  margin-top: 0.2rem;
}

.checklist li svg { color: var(--river); }
.crosslist li svg { color: var(--root-soft); }

/* --------------------------------------------------------------------------
   Testimonials
   -------------------------------------------------------------------------- */
.testimonial {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin: 0;
}

.testimonial p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.0625rem;
  color: var(--ink);
  margin: 0;
}

.testimonial cite {
  font-style: normal;
  font-size: 0.9rem;
  color: var(--muted);
}

.testimonial__mark { color: var(--gold); width: 2rem; height: 2rem; }

/* --------------------------------------------------------------------------
   Phase blocks (method page)
   -------------------------------------------------------------------------- */
.phase {
  display: grid;
  grid-template-columns: 4.5rem 1fr;
  gap: var(--space-4);
  padding: var(--space-6) 0;
  border-top: 1px solid var(--border);
}

.phase__number {
  font-family: var(--font-serif);
  font-size: 2.6rem;
  color: var(--gold);
  line-height: 1;
}

.phase__tools {
  font-size: 0.9375rem;
  color: var(--river);
  font-weight: 600;
  margin-bottom: var(--space-3);
}

.phase h4 { font-size: 1.15rem; margin-top: var(--space-4); }

/* --------------------------------------------------------------------------
   CTA band
   -------------------------------------------------------------------------- */
.cta-band {
  background: var(--river);
  color: #fff;
  padding: var(--space-7) 0;
  text-align: center;
}

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

.cta-band p {
  color: rgba(255, 255, 255, 0.88);
  max-width: 38rem;
  margin: 0 auto var(--space-5);
}

.cta-band .btn--primary {
  background: #fff;
  color: var(--river-deep);
}
.cta-band .btn--primary:hover { background: var(--surface-alt); color: var(--river-deep); }

.cta-band .btn__note { color: rgba(255, 255, 255, 0.75); }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--root);
  color: rgba(255, 255, 255, 0.85);
  padding: var(--space-6) 0 var(--space-5);
  font-size: 0.9375rem;
}

.site-footer a { color: #fff; }
.site-footer a:hover { color: var(--gold); }

.site-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--space-6);
  margin-bottom: var(--space-5);
}

.site-footer h3 {
  color: #fff;
  font-size: 1.05rem;
  margin-bottom: var(--space-3);
}

.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.5rem; }

.site-footer__disclaimer {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding-top: var(--space-4);
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   Reveal animation (progressive enhancement: hidden only when html.js
   is set by the inline head script, so content is never lost without JS)
   -------------------------------------------------------------------------- */
.js .reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 400ms ease-out, transform 400ms ease-out;
}
.js .reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .reveal { opacity: 1; transform: none; transition: none; }
  .btn, .card--link { transition: none; }
}

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 900px) {
  .grid--3 { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; }
  .site-footer__grid { grid-template-columns: 1fr; gap: var(--space-4); }
  .hero__rivers { display: none; }
}

@media (max-width: 1120px) {
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    display: none;
    padding: var(--space-4);
  }

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

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

  .site-nav__link {
    display: block;
    padding: 0.85rem 0.5rem;
    border-bottom: 1px solid var(--border);
    min-height: 44px;
  }

  .site-nav .btn { width: 100%; margin-top: var(--space-3); }
}

@media (max-width: 760px) {
  .grid--2 { grid-template-columns: 1fr; }
  .phase { grid-template-columns: 1fr; gap: var(--space-2); }
  .section, .hero, .cta-band { padding-top: var(--space-6); padding-bottom: var(--space-6); }
}

/* About — portrait & story */
.about-hero__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: var(--space-6);
  align-items: center;
  position: relative;
  z-index: 1;
}
.portrait {
  margin: 0;
  max-width: 23rem;
  justify-self: end;
}
.portrait img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.portrait figcaption {
  margin-top: var(--space-2);
  font-size: 0.9375rem;
  color: var(--muted);
  text-align: center;
}
.note-aside {
  border-left: 3px solid #C49A3C;
  background: rgba(196, 154, 60, 0.08);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: var(--space-3) var(--space-4);
  margin-top: var(--space-4);
}
.note-aside p { margin: 0; }

@media (max-width: 900px) {
  .about-hero__grid { grid-template-columns: 1fr; }
  .portrait { justify-self: start; max-width: 19rem; }
}

/* --------------------------------------------------------------------------
   v3 conversion funnel additions
   -------------------------------------------------------------------------- */
.hero--conversion {
  padding-top: var(--space-6);
}

.conversion-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(17rem, 0.75fr);
  gap: var(--space-6);
  align-items: center;
}

.hero-actions,
.cta-actions,
.result-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  align-items: center;
  margin-bottom: var(--space-2);
}

.hero-process {
  background: var(--surface);
  border: 1px solid var(--border);
  border-top: 4px solid var(--gold);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: var(--space-5);
  display: grid;
  gap: var(--space-4);
  align-self: stretch;
}

.hero-process__eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--river);
  font-weight: 700;
}

.hero-process div {
  display: grid;
  gap: 0.35rem;
  padding-top: var(--space-3);
  border-top: 1px solid var(--border);
}

.hero-process div:first-of-type {
  padding-top: 0;
  border-top: 0;
}

.hero-process strong {
  font-family: var(--font-serif);
  font-size: 1.55rem;
  font-weight: 400;
  line-height: 1.2;
  color: var(--root);
}

.hero-process span {
  color: var(--muted);
}

.signal-card {
  border-top: 3px solid var(--gold);
  background: var(--surface);
  padding: var(--space-5);
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: var(--shadow-sm);
}

.assessment-band {
  background: var(--root);
  color: rgba(255, 255, 255, 0.88);
  padding: var(--space-6) 0;
}

.assessment-band h2,
.assessment-band .eyebrow {
  color: #fff;
}

.assessment-band__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(18rem, 0.8fr);
  gap: var(--space-5);
  align-items: center;
}

.assessment-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
}

.assessment-card ol {
  margin: 0 0 var(--space-4);
  padding-left: 1.25rem;
}

.assessment-card .btn--primary {
  background: #fff;
  color: var(--river-deep);
}

.about-strip {
  display: grid;
  grid-template-columns: minmax(14rem, 0.65fr) minmax(0, 1.35fr);
  gap: var(--space-6);
  align-items: center;
}

.trust-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-top: 4px solid var(--gold);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: var(--space-5);
  display: grid;
  gap: var(--space-3);
  color: var(--muted);
}

.trust-panel__kicker {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--river);
  font-weight: 700;
}

.trust-panel strong {
  display: block;
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 1.35rem;
  line-height: 1.25;
  color: var(--root);
}

.book-authority {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(16rem, 0.75fr);
  gap: var(--space-6);
  align-items: center;
}

.book-card {
  position: relative;
  min-height: 24rem;
  background:
    linear-gradient(145deg, rgba(92, 61, 46, 0.96), rgba(27, 107, 109, 0.92));
  border: 1px solid rgba(196, 154, 60, 0.45);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  color: rgba(255, 255, 255, 0.86);
  padding: var(--space-5);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}

.book-card::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 1rem;
  width: 1px;
  background: rgba(255, 255, 255, 0.22);
}

.book-card__label,
.book-card__meta {
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
}

.book-card h3 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 2.7rem);
  margin: var(--space-4) 0 var(--space-3);
}

.book-card p {
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.82);
}

.credential-list {
  margin: 0 0 var(--space-4);
  padding-left: 1.15rem;
  color: var(--muted);
}

.btn--light-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.72);
  background: transparent;
}

.btn--light-ghost:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.hero--assessment .note-soft {
  max-width: 40rem;
}

.quiz {
  max-width: 52rem;
  margin: 0 auto;
}

.quiz__question {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  margin: 0 0 var(--space-4);
  box-shadow: var(--shadow-sm);
}

.quiz__question legend {
  font-family: var(--font-serif);
  color: var(--root);
  font-size: 1.35rem;
  padding: 0 var(--space-2);
}

.quiz__question label {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 0.85rem 0;
  border-top: 1px solid var(--border);
  cursor: pointer;
}

.quiz__question label:first-of-type {
  border-top: 0;
}

.quiz__question input {
  width: 1.1rem;
  height: 1.1rem;
  margin-top: 0.3rem;
  accent-color: var(--river);
  flex: none;
}

.quiz__actions {
  text-align: center;
  margin-top: var(--space-5);
}

.quiz-result {
  max-width: 52rem;
  margin: var(--space-6) auto 0;
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  box-shadow: var(--shadow-md);
}

.quiz-result[hidden] {
  display: none;
}

@media (max-width: 900px) {
  .conversion-hero,
  .assessment-band__grid,
  .about-strip,
  .book-authority {
    grid-template-columns: 1fr;
  }

  .hero-process {
    justify-self: start;
    width: 100%;
  }
}

@media (max-width: 560px) {
  .hero-actions .btn,
  .cta-actions .btn,
  .result-actions .btn {
    width: 100%;
  }

  .quiz__question {
    padding: var(--space-4);
  }
}
