/* ==========================================================================
   Accorda Advisory LLC. accordaadvisory.tech
   Brand system per BUILD-SPEC S11. Hand-written, no framework, no build step.
   ========================================================================== */

/* --- Self-hosted fonts -----------------------------------------------------
   Drop the woff2 files into /fonts/ with these exact names.
   Until they exist the fallback stacks below render correctly, so the site
   is never blocked on the font files.
   -------------------------------------------------------------------------- */
@font-face {
  font-family: "Playfair Display";
  src: url("fonts/playfair-display-500.woff2") format("woff2");
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: "Playfair Display";
  src: url("fonts/playfair-display-600.woff2") format("woff2");
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: "Lato";
  src: url("fonts/lato-400.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Lato";
  src: url("fonts/lato-400-italic.woff2") format("woff2");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Lato";
  src: url("fonts/lato-700.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("fonts/montserrat-600.woff2") format("woff2");
  font-weight: 600;
  font-display: swap;
}

/* --- Tokens --------------------------------------------------------------- */
:root {
  --near-black:    #111111;
  --dark-green:    #183526;
  --dark-teal:     #173535;
  --cream:         #F4EDE0;
  --gold:          #B8923A;
  --white:         #FFFFFF;
  --warm-divider:  #CCBBA0;
  --green-divider: #2A5040;
  --mid-gray:      #666666;
  --light-gray:    #999999;

  --serif:  "Playfair Display", Georgia, "Times New Roman", serif;
  --label:  "Montserrat", "Segoe UI", Helvetica, Arial, sans-serif;
  --body:   "Lato", "Segoe UI", Helvetica, Arial, sans-serif;

  --measure: 68ch;
  --gutter: 1.5rem;
  --section-y: 5.5rem;
}

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

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--near-black);
  font-family: var(--body);
  font-size: 1.0625rem;
  line-height: 1.7;
  overflow-x: hidden;
}

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

/* --- Skip link ------------------------------------------------------------ */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--near-black);
  color: var(--white);
  padding: 0.75rem 1.25rem;
  z-index: 100;
}
.skip-link:focus { left: 0; }

/* --- Focus visibility (accessibility, not decoration) --------------------- */
a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

/* --- Layout --------------------------------------------------------------- */
.wrap {
  width: 100%;
  max-width: 74rem;
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.measure { max-width: var(--measure); }

section { padding: var(--section-y) 0; }

/* Full-bleed alternating bands */
.band-cream { background: var(--cream); color: var(--near-black); }
.band-dark  { background: var(--near-black); color: var(--white); }
.band-green { background: var(--dark-green); color: var(--white); }
.band-teal  { background: var(--dark-teal);  color: var(--white); }

.band-dark a, .band-green a, .band-teal a { color: var(--white); }
.band-dark p, .band-green p, .band-teal p { color: rgba(255, 255, 255, 0.92); }

/* --- Typography ----------------------------------------------------------- */
h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.18;
  margin: 0 0 1rem;
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.25rem, 6vw, 3.75rem);
  letter-spacing: -0.015em;
}

h2 {
  font-size: clamp(1.6rem, 3.6vw, 2.4rem);
  margin-top: 0;
}

h3 {
  font-size: clamp(1.15rem, 2vw, 1.4rem);
}

p { margin: 0 0 1.25rem; max-width: var(--measure); }

.lede {
  font-size: clamp(1.15rem, 2.2vw, 1.4rem);
  line-height: 1.6;
}

.eyebrow {
  font-family: var(--label);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mid-gray);
  margin: 0 0 0.9rem;
}
.band-dark .eyebrow,
.band-green .eyebrow,
.band-teal .eyebrow { color: var(--gold); }

/* Gold is display-scale and rules only. It fails AA on cream at body size. */
.display-gold {
  color: var(--gold);
  font-family: var(--serif);
  font-size: clamp(1.75rem, 4vw, 2.6rem);
  line-height: 1.25;
}

.note {
  font-family: var(--body);
  font-style: italic;
  color: var(--mid-gray);
  font-size: 0.95rem;
}
.band-dark .note,
.band-green .note,
.band-teal .note { color: rgba(255, 255, 255, 0.72); }

a { color: var(--near-black); text-underline-offset: 0.2em; }
a:hover { text-decoration-thickness: 2px; }

/* --- Rules ---------------------------------------------------------------- */
.rule {
  border: 0;
  border-top: 2px solid var(--warm-divider);
  margin: 2.5rem 0;
  max-width: 5rem;
}
.band-dark .rule,
.band-teal .rule { border-top-color: var(--gold); }
.band-green .rule { border-top-color: var(--green-divider); }

/* --- Header --------------------------------------------------------------- */
.site-header {
  background: var(--near-black);
  color: var(--white);
  padding: 1.15rem 0;
}
.site-header .wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand {
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 0.01em;
}
.brand span { color: var(--gold); }

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-family: var(--label);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.site-nav a { color: rgba(255, 255, 255, 0.85); text-decoration: none; }
.site-nav a:hover,
.site-nav a[aria-current="page"] { color: var(--gold); }

/* --- Hero ----------------------------------------------------------------- */
.hero {
  background: var(--near-black);
  color: var(--white);
  padding: clamp(3.5rem, 9vw, 6.5rem) 0 clamp(3.5rem, 8vw, 5.5rem);
}
.hero h1 { color: var(--white); }
.hero .lede { color: rgba(255, 255, 255, 0.9); }

/* --- H1 subtitle --------------------------------------------------------- */
.h1sub {
  display: block;
  margin-top: 0.55rem;
  font-family: var(--serif);
  font-size: clamp(1.05rem, 2.2vw, 1.6rem);
  font-weight: 500;
  line-height: 1.25;
  color: rgba(255, 255, 255, 0.82);
  max-width: 26ch;
}
.hero .h1sub { color: rgba(255, 255, 255, 0.82); }

/* --- Values list ---------------------------------------------------------- */
.values {
  list-style: none; margin: 0.9rem 0 1.4rem; padding: 0;
  display: flex; flex-wrap: wrap; gap: 0.5rem 0.6rem; max-width: var(--measure);
}
.values li {
  font-weight: 700; font-size: 1.02rem;
  padding: 0.32rem 0.8rem;
  border: 1px solid var(--warm-divider);
  background: rgba(184, 146, 58, 0.07);
}
.band-dark .values li, .band-green .values li, .band-teal .values li {
  border-color: rgba(255,255,255,0.28); background: rgba(255,255,255,0.06);
}
.eg { max-width: var(--measure); }
.eg .tag {
  display: inline-block; margin-right: 0.55rem;
  font-family: var(--label); font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--gold); vertical-align: 0.12em;
}
.band-dark .eg .tag, .band-green .eg .tag, .band-teal .eg .tag { color: var(--gold); }

/* --- Stat list ------------------------------------------------------------ */
.stats { list-style: none; margin: 0.75rem 0 0; padding: 0; max-width: var(--measure); }
.stats li {
  border-left: 3px solid var(--gold);
  padding: 0.15rem 0 0.15rem 1.1rem;
  margin-bottom: 1.15rem;
  font-size: 1rem;
  line-height: 1.55;
}
.stats li:last-child { margin-bottom: 0; }
.stats b { display: block; font-size: 1.06rem; margin-bottom: 0.15rem; }
.stats .fig { font-weight: 700; font-size: 1.12em; white-space: nowrap; }
.stats .src { color: var(--mid-gray); font-size: 0.86rem; }
.stats .so {
  display: block; margin-top: 0.3rem;
  font-style: italic; color: var(--mid-gray); font-size: 0.94rem;
}
.band-dark .stats .src, .band-green .stats .src, .band-teal .stats .src,
.band-dark .stats .so,  .band-green .stats .so,  .band-teal .stats .so { color: rgba(255,255,255,0.72); }

/* --- Gold lead-in for bullets -------------------------------------------- */
b.gold { color: var(--gold); font-weight: 700; }
.band-dark b.gold, .band-green b.gold, .band-teal b.gold { color: var(--gold); }

/* --- How this gets handled ------------------------------------------------ */
.how-move {
  border-left: 4px solid var(--green-divider);
  background: rgba(42, 80, 64, 0.045);
  padding: 1rem 1.25rem 1rem 1.5rem;
  margin: 1.75rem 0 0;
  max-width: var(--measure);
}
.how-move .lbl {
  display: block;
  font-family: var(--label);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--green-divider);
  margin-bottom: 0.4rem;
}
.how-move p { font-size: 0.98rem; line-height: 1.6; margin-bottom: 0.55rem; }
.how-move .steps { counter-reset: s; list-style: none; margin: 0.2rem 0 0.9rem; padding: 0; }
.how-move .steps li {
  counter-increment: s;
  position: relative;
  padding-left: 2.1rem;
  font-size: 0.98rem;
  line-height: 1.55;
  margin-bottom: 0.5rem;
}
.how-move .steps li::before {
  content: counter(s);
  position: absolute; left: 0; top: 0.05rem;
  width: 1.45rem; height: 1.45rem; border-radius: 50%;
  background: var(--green-divider); color: var(--white);
  font-family: var(--label); font-size: 0.76rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.band-dark .how-move .steps li::before,
.band-green .how-move .steps li::before,
.band-teal .how-move .steps li::before { background: var(--gold); color: var(--near-black); }
.how-move p:last-child { margin-bottom: 0; }
.band-dark .how-move,
.band-green .how-move,
.band-teal .how-move { border-left-color: var(--gold); background: rgba(255,255,255,0.05); }
.band-dark .how-move .lbl,
.band-green .how-move .lbl,
.band-teal .how-move .lbl { color: var(--gold); }

/* --- Anchor statement block ----------------------------------------------- */
.anchor-statement {
  border-left: 4px solid var(--gold);
  padding: 0.35rem 0 0.35rem 1.75rem;
  margin: 2rem 0 0;
}
.anchor-statement p {
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  line-height: 1.65;
  margin-bottom: 0;
}

/* --- Bio layout ----------------------------------------------------------- */
.bio-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 2.5rem;
  align-items: start;
}
@media (min-width: 56rem) {
  .bio-grid { grid-template-columns: 1fr 20rem; gap: 3.5rem; }
}
.bio-portrait figure { margin: 0; }
.bio-portrait img {
  width: 100%;
  border-radius: 2px;
}
.bio-portrait figcaption {
  font-family: var(--label);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid-gray);
  margin-top: 0.85rem;
  line-height: 1.5;
}

/* --- Definition list ------------------------------------------------------ */
.definitions {
  margin: 0;
  max-width: var(--measure);
}
.definitions dt {
  font-family: var(--label);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--near-black);
  margin-top: 2rem;
}
.definitions dt:first-child { margin-top: 0; }
.definitions dd {
  margin: 0.5rem 0 0;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--warm-divider);
}
.band-dark .definitions dt,
.band-green .definitions dt,
.band-teal .definitions dt { color: var(--gold); }
.band-dark .definitions dd,
.band-green .definitions dd,
.band-teal .definitions dd { border-bottom-color: var(--green-divider); }

/* --- Visually hidden (available to screen readers) ------------------------- */
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* --- PACE pillar table ---------------------------------------------------- */
.pillars {
  width: 100%;
  min-width: 34rem;
  border-collapse: collapse;
  margin: 2.5rem 0 0;
  text-align: left;
}
.pillars th,
.pillars td {
  padding: 1.1rem 1.25rem 1.1rem 0;
  border-bottom: 1px solid var(--warm-divider);
  vertical-align: top;
}
.pillars thead th {
  font-family: var(--label);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mid-gray);
  border-bottom: 2px solid var(--near-black);
  padding-bottom: 0.7rem;
}
.pillars tbody th {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.15rem;
  white-space: nowrap;
  padding-right: 2rem;
}
.pillars td { font-size: 0.97rem; }
.pillars td em { color: var(--mid-gray); }
.pillar-letter {
  font-family: var(--label);
  font-weight: 600;
  color: var(--gold);
  margin-right: 0.5rem;
}

/* --- Twelve domains ------------------------------------------------------- */
.domain-pillar {
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2.4vw, 1.55rem);
  margin: 3rem 0 0.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--near-black);
  max-width: 52rem;
}
.band-dark .domain-pillar,
.band-green .domain-pillar,
.band-teal .domain-pillar { border-bottom-color: var(--gold); }

.domains {
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 52rem;
}
.domains li {
  display: grid;
  grid-template-columns: 2.75rem minmax(0, 1fr);
  gap: 0 1rem;
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--warm-divider);
}
@media (min-width: 46rem) {
  .domains li { grid-template-columns: 2.75rem minmax(0, 17rem) minmax(0, 1fr); }
}
.domain-no {
  font-family: var(--label);
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--gold);
  padding-top: 0.2rem;
  font-variant-numeric: tabular-nums;
}
.domain-name {
  font-weight: 700;
  font-size: 0.98rem;
}
.domain-say {
  grid-column: 2 / -1;
  color: var(--mid-gray);
  font-style: italic;
  font-size: 0.95rem;
  margin-top: 0.3rem;
}
@media (min-width: 46rem) {
  .domain-say { grid-column: 3; margin-top: 0; }
}

/* --- FAQ ------------------------------------------------------------------ */
.faq { max-width: var(--measure); }
.faq h3 {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  margin-top: 2.5rem;
}
.faq h3:first-of-type { margin-top: 0; }

/* --- Stat block ----------------------------------------------------------- */
.stat-list { list-style: none; margin: 0; padding: 0; }
.stat-list li {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--warm-divider);
  max-width: var(--measure);
}
.stat-list li:first-child { padding-top: 0; }
.stat-figure {
  font-family: var(--label);
  font-weight: 600;
  font-size: clamp(1.6rem, 3.4vw, 2.1rem);
  color: var(--near-black);
  display: block;
  line-height: 1.2;
}
.stat-source {
  font-family: var(--body);
  font-style: italic;
  font-size: 0.9rem;
  color: var(--mid-gray);
  display: block;
  margin-top: 0.5rem;
}

/* --- CTA band ------------------------------------------------------------- */
.cta-pair {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}
.btn {
  display: inline-block;
  font-family: var(--label);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  padding: 1.05rem 1.9rem;
  text-decoration: none;
  border: 2px solid var(--white);
  transition: background-color 0.15s ease, color 0.15s ease;
}
.btn-primary {
  background: var(--white);
  color: var(--near-black);
}
.btn-primary:hover { background: var(--gold); border-color: var(--gold); color: var(--near-black); }
.btn-secondary {
  background: transparent;
  color: var(--white);
}
.btn-secondary:hover { background: var(--white); color: var(--near-black); }

/* --- Footer --------------------------------------------------------------- */
.site-footer {
  background: var(--near-black);
  color: rgba(255, 255, 255, 0.8);
  padding: 3.5rem 0 2.5rem;
  font-size: 0.95rem;
}
.site-footer a { color: var(--white); }
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 2rem;
}
@media (min-width: 44rem) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; gap: 3rem; }
}
.footer-grid h2 {
  font-family: var(--label);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.footer-list { list-style: none; margin: 0; padding: 0; }
.footer-list li { margin-bottom: 0.6rem; }
.legal {
  margin-top: 3rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.62);
}
.legal p { max-width: none; margin: 0; }

/* --- Print ---------------------------------------------------------------- */
@media print {
  .site-header, .site-footer, .cta-pair { display: none; }
  body { background: #fff; color: #000; }
}

/* --- Capability list ------------------------------------------------------ */
.capabilities {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  max-width: var(--measure);
}
.capabilities li {
  position: relative;
  padding: 0.7rem 0 0.7rem 1.75rem;
  border-bottom: 1px solid var(--warm-divider);
}
.capabilities li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.35rem;
  width: 0.6rem;
  height: 2px;
  background: var(--gold);
}
.band-dark .capabilities li,
.band-green .capabilities li,
.band-teal .capabilities li { border-bottom-color: var(--green-divider); }

/* --- Lane router ---------------------------------------------------------- */
.lanes {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
@media (min-width: 52rem) {
  .lanes { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 2rem; }
}
.lane {
  border: 1px solid var(--green-divider);
  border-top: 3px solid var(--gold);
  padding: 2rem 1.75rem 1.5rem;
}
.lane h3 {
  margin-top: 0;
  font-size: clamp(1.25rem, 2.4vw, 1.5rem);
}
.lane p { max-width: none; }
.lane-what {
  font-style: italic;
  color: rgba(255, 255, 255, 0.72) !important;
  padding-top: 1rem;
  border-top: 1px solid var(--green-divider);
}
.lane-link {
  font-family: var(--label);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--gold) !important;
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
}
.lane-link:hover { color: var(--white) !important; border-bottom-color: var(--white); }


/* --- Five stages ladder --------------------------------------------------- */
.ladder { list-style: none; margin: 2.5rem 0 0; padding: 0; max-width: 52rem; }
.ladder-step {
  display: grid;
  grid-template-columns: 2.75rem minmax(0, 1fr);
  gap: 0 1rem;
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--warm-divider);
}
.band-dark .ladder-step,
.band-green .ladder-step,
.band-teal .ladder-step { border-bottom-color: var(--green-divider); }
.ladder-num {
  font-family: var(--label);
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--gold);
  padding-top: 0.55rem;
  font-variant-numeric: tabular-nums;
}
.ladder-track {
  grid-column: 2;
  height: 5px;
  border-radius: 3px;
  background: var(--warm-divider);
  margin-bottom: 0.85rem;
  overflow: hidden;
}
.band-dark .ladder-track,
.band-green .ladder-track,
.band-teal .ladder-track { background: var(--green-divider); }
.ladder-fill { display: block; height: 100%; background: var(--gold); border-radius: 3px; }
.ladder-name { grid-column: 2; font-weight: 700; font-size: 1rem; display: block; }
.ladder-desc {
  grid-column: 2;
  display: block;
  margin-top: 0.35rem;
  font-size: 0.95rem;
  color: var(--mid-gray);
}
.band-dark .ladder-desc,
.band-green .ladder-desc,
.band-teal .ladder-desc { color: rgba(255, 255, 255, 0.75); }
.ladder-step.is-gap .ladder-name { color: var(--gold); }
.ladder-flag {
  grid-column: 2;
  display: inline-block;
  margin-top: 0.6rem;
  font-family: var(--label);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--near-black);
  background: var(--gold);
  padding: 0.3rem 0.7rem;
  border-radius: 2px;
}

/* --- Twelve-sentence self-check ------------------------------------------- */
.checkset {
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 52rem;
}
.checkset li {
  border-bottom: 1px solid var(--warm-divider);
}
.checkset label {
  display: grid;
  grid-template-columns: 1.5rem minmax(0, 1fr);
  gap: 0 1rem;
  align-items: start;
  padding: 1.15rem 0.5rem 1.15rem 0.25rem;
  cursor: pointer;
}
.checkset label:hover,
.checkset input:focus-visible + .check-body {
  background: rgba(184, 146, 58, 0.07);
}
.checkset input {
  width: 1.15rem;
  height: 1.15rem;
  margin: 0.15rem 0 0;
  accent-color: var(--gold);
  cursor: pointer;
}
.check-said {
  display: block;
  font-size: 1.05rem;
  font-style: italic;
}
.check-meta {
  display: block;
  font-family: var(--label);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 0.45rem;
}
.band-dark .check-meta { color: var(--gold); }
.band-dark .checkset li { border-bottom-color: var(--green-divider); }

.result {
  max-width: 52rem;
  margin-top: 2.5rem;
  padding: 1.75rem;
  border: 2px solid var(--gold);
  background: var(--white);
}
.result[hidden] { display: none !important; }
.result h3 {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.6vw, 1.7rem);
  margin: 0 0 0.85rem;
}
.result p { margin: 0 0 1rem; }
.result p:last-child { margin-bottom: 0; }
.result-tally {
  font-family: var(--label);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--mid-gray);
  margin: 1.25rem 0 0;
}
.checkset-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  margin-top: 2rem;
}
.btn-quiet {
  background: none;
  border: 1px solid var(--warm-divider);
  font-family: var(--label);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 0.7rem 1.2rem;
  cursor: pointer;
  color: inherit;
}
.btn-quiet:hover { border-color: var(--gold); }

/* --- MailerLite embed ------------------------------------------------------
   COLOURS ARE NOT SET HERE. MailerLite injects an inline <style> scoped by
   element id (#mlb2-NNNNNNNN ... button) carrying !important, which outranks
   any class-based rule in this file. Trying to win that fight needs a
   hardcoded form id that breaks the moment the form is rebuilt.

   The button, input and form background are therefore set inside MailerLite:
   Forms > Website - AI adoption notes > Edit design.
     Button background  #B8923A   font #111111   radius 0
     Form background    #183526   (matches .band-green so it blends)
   The form's own heading and description blocks were deleted there too,
   because the surrounding <section> already supplies both.

   Only layout lives here, which MailerLite does not fight over.
   -------------------------------------------------------------------------- */
.ml-embedded {
  max-width: 34rem;
  margin-top: 2rem;
}
