/* ============================================================
   TrustBoard — lead-magnet landing theme
   White + cream base, black bar/bands, gold accents.
   Self-contained: no Bootstrap needed.
   Used by governance-checklist.php and checklist-thank-you.php
   ============================================================ */

:root {
  --black:      #0a0a0b;
  --black-2:    #121215;
  --black-3:    #1a1a1f;
  --gold:       #c9a227;
  --gold-bright:#e8c766;
  --gold-deep:  #8a6d1a;
  --gold-ink:   #9c7c22;      /* gold that stays legible on light */
  --white:      #ffffff;
  --paper:      #f7f6f2;      /* cream section background */
  --ink:        #14141a;      /* headings */
  --ink-soft:   #4a4a55;      /* body copy */
  --ink-faint:  #6d6d78;      /* labels, meta */
  --line:       #e3e0d6;      /* light hairline */
  --line-gold:  rgba(201, 162, 39, 0.38);
  --text-dark:  #b9b9c0;      /* body copy inside black bands */
  --faint-dark: #83838d;
  --line-soft:  rgba(255, 255, 255, 0.10);
  --radius:     12px;
  --sans:       "Hanken Grotesk", "Segoe UI", Arial, sans-serif;
  --shadow-sm:  0 1px 2px rgba(20, 20, 26, 0.05);
  --shadow-md:  0 14px 34px rgba(20, 20, 26, 0.09);
  --shadow-lg:  0 24px 60px rgba(20, 20, 26, 0.14);
}

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

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  margin: 0;
  font-family: var(--sans);
  background: var(--white);
  color: var(--ink-soft);
  font-size: 1.02rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--sans);
  color: var(--ink);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.14;
  margin: 0 0 0.6rem;
}

h1 { font-size: clamp(1.85rem, 3.4vw, 2.85rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.25rem); }
h3 { font-size: 1.14rem; }

p { margin: 0 0 1rem; }
a { color: var(--gold-ink); text-decoration: none; }
a:hover { color: var(--ink); }
img { max-width: 100%; height: auto; display: block; }
::selection { background: var(--gold); color: var(--black); }

.container { width: 100%; max-width: 1160px; margin: 0 auto; padding: 0 1.25rem; }
.container-narrow { max-width: 820px; }

.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }
.center { text-align: center; }
.lede { font-size: 1.1rem; max-width: 42rem; }
.center .lede { margin-left: auto; margin-right: auto; }

/* ---- Bands ---- */
.band-white { background: var(--white); }
.band-cream { background: var(--paper); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.band-dark  { background: var(--black); color: var(--text-dark); }
.band-dark h1, .band-dark h2, .band-dark h3, .band-dark h4 { color: var(--white); }
.band-dark a { color: var(--gold-bright); }
.band-dark a:hover { color: var(--white); }
.band-dark .kicker { color: var(--gold); }
.band-dark .kicker::before,
.band-dark .kicker::after { background: var(--gold); }
.band-dark .gold-text { color: var(--gold-bright); }
.band-dark .stat span { color: var(--faint-dark); }
.band-dark .stat b { color: var(--white); }

/* ---- Kicker / rules ---- */
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-ink);
  margin-bottom: 0.9rem;
}
.kicker::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--gold-ink);
  display: inline-block;
}
.center .kicker::after {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--gold-ink);
  display: inline-block;
}
.gold-text { color: var(--gold-ink); }
.rule-gold {
  width: 64px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold-bright));
  border: 0;
  margin: 1.1rem 0 1.4rem;
}
.center .rule-gold { margin-left: auto; margin-right: auto; }

/* ---- Top bar ---- */
.lp-bar {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--black);
  border-bottom: 1px solid rgba(201, 162, 39, 0.28);
}
.lp-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 0;
}
.lp-logo { display: flex; align-items: center; gap: 0.7rem; }
.lp-logo img { height: 32px; width: auto; }
.lp-logo .wordmark {
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  font-size: 1.18rem;
  line-height: 1;
}
.lp-logo .wordmark em {
  font-style: normal;
  color: var(--gold);
}
.lp-bar-right { display: flex; align-items: center; gap: 1.3rem; font-size: 0.9rem; }
.lp-bar-right a { color: var(--text-dark); }
.lp-bar-right a:hover { color: var(--gold-bright); }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.2;
  padding: 0.9rem 1.7rem;
  border-radius: 8px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
  text-align: center;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: #1a1405;
  box-shadow: 0 8px 22px rgba(201, 162, 39, 0.32);
}
.btn-gold:hover { color: #1a1405; transform: translateY(-2px); box-shadow: 0 14px 30px rgba(201, 162, 39, 0.42); }
.btn-outline-gold { border-color: var(--gold); color: var(--gold-ink); background: transparent; }
.btn-outline-gold:hover { background: var(--gold); color: #1a1405; }
.band-dark .btn-outline-gold,
.lp-bar .btn-outline-gold { color: var(--gold-bright); }
.band-dark .btn-outline-gold:hover,
.lp-bar .btn-outline-gold:hover { color: #1a1405; }
.btn-dark { background: var(--black); color: var(--white); }
.btn-dark:hover { color: var(--gold-bright); transform: translateY(-2px); }
.btn-block { width: 100%; }
.btn-lg { padding: 1rem 2rem; font-size: 1.04rem; }

/* ---- Hero ---- */
.lp-hero {
  position: relative;
  padding: 2.2rem 0 3.5rem;
  background:
    radial-gradient(900px 460px at 10% -20%, rgba(201, 162, 39, 0.20), transparent 62%),
    radial-gradient(700px 420px at 95% 0%, rgba(201, 162, 39, 0.13), transparent 60%),
    linear-gradient(180deg, #fdfdfb 0%, var(--paper) 100%);
  overflow: hidden;
}
.lp-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold-bright), var(--gold-deep));
  opacity: 0.85;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 3rem;
  align-items: start;
}
.hero-sub { font-size: 1.06rem; max-width: 34rem; margin-bottom: 0; }

/* ---- Value bullets ---- */
.ticks { list-style: none; margin: 1.3rem 0 0; padding: 0; }
.ticks li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 0.7rem;
  color: var(--ink-soft);
  font-size: 0.98rem;
}
.ticks li strong { color: var(--ink); font-weight: 700; }
.ticks li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0.15rem;
  width: 1.3rem;
  height: 1.3rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(201, 162, 39, 0.16);
  border: 1px solid var(--line-gold);
  color: var(--gold-deep);
  font-size: 0.72rem;
  font-weight: 700;
}

/* ---- Trust strip ---- */
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.6rem;
  padding-top: 1.3rem;
  border-top: 1px solid var(--line);
}
.trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink-faint);
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.35rem 0.8rem;
}
.trust-chip i { color: var(--gold-deep); font-size: 0.9rem; }

/* ---- Form card (light, sized to sit above the fold) ---- */
.form-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.25rem 1.5rem 0.95rem;
  box-shadow: var(--shadow-lg);
}
.form-card::before {
  content: "";
  position: absolute;
  inset: -1px -1px auto -1px;
  height: 4px;
  border-radius: 14px 14px 0 0;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold-bright), var(--gold-deep));
}
.form-card h2 { font-size: 1.3rem; margin-bottom: 0.2rem; }
.form-card .form-note { font-size: 0.82rem; color: var(--ink-faint); margin: 0; }
.form-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0.6rem 0 0.9rem;
}
.form-badges span {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-deep);
  background: rgba(201, 162, 39, 0.10);
  border: 1px solid var(--line-gold);
  border-radius: 999px;
  padding: 0.25rem 0.6rem;
}

.field { margin-bottom: 0.75rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; }
.field label {
  display: block;
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 0.28rem;
}
.field input,
.field select {
  width: 100%;
  font-family: var(--sans);
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--white);
  border: 1px solid #d8d4c7;
  border-radius: 7px;
  padding: 0.6rem 0.8rem;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  appearance: none;
}
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%238a6d1a' d='M6 8 0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  padding-right: 2.2rem;
}
.field input::placeholder { color: #a8a49a; }
.field input:focus,
.field select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.20);
}
.consent {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  font-size: 0.8rem;
  color: var(--ink-faint);
  margin: 0.8rem 0 0.85rem;
  line-height: 1.45;
}
.consent input { margin-top: 0.2rem; accent-color: var(--gold-deep); width: 0.95rem; height: 0.95rem; flex: none; }
.form-card .btn { padding: 0.85rem 1.5rem; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.alert {
  border-radius: 8px;
  padding: 0.7rem 0.9rem;
  font-size: 0.88rem;
  margin-bottom: 0.9rem;
  border: 1px solid transparent;
}
.alert-error { background: #fdecec; border-color: #e8b9b9; color: #a02a2a; }

/* ---- Grids & cards ---- */
.grid { display: grid; gap: 1.4rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.7rem 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover {
  border-color: var(--line-gold);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.card p { margin: 0; font-size: 0.95rem; color: var(--ink-soft); }
.card .count {
  display: inline-block;
  margin-top: 0.9rem;
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--gold-ink);
  border-top: 1px solid var(--line);
  padding-top: 0.6rem;
}
.band-dark .card {
  background: var(--black-2);
  border-color: var(--line-soft);
  box-shadow: none;
}
.band-dark .card p { color: var(--text-dark); }

.icon-badge {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(201, 162, 39, 0.12);
  border: 1px solid var(--line-gold);
  color: var(--gold-deep);
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

/* ---- Preview panel ---- */
.preview-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 3.5rem;
  align-items: center;
}
.sheet {
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 5px solid var(--gold);
  border-radius: 10px;
  padding: 1.9rem 1.8rem;
  box-shadow: var(--shadow-lg);
}
.sheet h4 {
  color: var(--ink);
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
}
.sheet ul { list-style: none; margin: 0; padding: 0; }
.sheet li {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  padding: 0.72rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: 0.94rem;
  line-height: 1.45;
}
.sheet li:last-child { border-bottom: 0; }
.sheet li .box {
  flex: none;
  width: 18px;
  height: 18px;
  margin-top: 0.15rem;
  border: 2px solid var(--gold);
  border-radius: 4px;
}
.sheet li.done .box { background: var(--gold); position: relative; }
.sheet li.done .box::after {
  content: "\2713";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
}
.sheet .sheet-foot {
  margin: 1.3rem 0 0;
  font-size: 0.76rem;
  color: #8b8778;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ---- Stats ---- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.stat { border-left: 2px solid var(--gold); padding-left: 1.1rem; }
.stat b {
  display: block;
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.03em;
  line-height: 1.1;
}
.stat span { font-size: 0.87rem; color: var(--ink-faint); }

/* ---- Quote ---- */
.quote {
  border-left: 3px solid var(--gold);
  padding: 0.3rem 0 0.3rem 1.5rem;
  font-size: 1.14rem;
  color: var(--ink);
  font-weight: 500;
  line-height: 1.5;
  margin: 0;
}
.quote cite {
  display: block;
  margin-top: 0.8rem;
  font-size: 0.85rem;
  font-style: normal;
  color: var(--ink-faint);
  letter-spacing: 0.04em;
}
.band-dark .quote { color: var(--white); }
.band-dark .quote cite { color: var(--faint-dark); }

/* ---- FAQ ---- */
.faq { max-width: 780px; margin: 0 auto; }
.faq details {
  border-bottom: 1px solid var(--line);
  padding: 1.1rem 0;
}
.faq summary {
  cursor: pointer;
  list-style: none;
  font-weight: 700;
  color: var(--ink);
  font-size: 1.02rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  color: var(--gold-deep);
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1;
  flex: none;
}
.faq details[open] summary::after { content: "\2013"; }
.faq details p { margin: 0.8rem 0 0; font-size: 0.96rem; color: var(--ink-soft); }

/* ---- CTA band ---- */
.cta-band {
  background:
    radial-gradient(700px 300px at 50% 0%, rgba(201, 162, 39, 0.22), transparent 65%),
    var(--black);
  color: var(--text-dark);
  text-align: center;
}
.cta-band h1, .cta-band h2 { color: var(--white); }
.cta-band .kicker { color: var(--gold); }
.cta-band .kicker::before, .cta-band .kicker::after { background: var(--gold); }
.cta-band .btn-outline-gold { color: var(--gold-bright); }
.cta-band .btn-outline-gold:hover { color: #1a1405; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 1.6rem; }

/* ---- Thank-you specifics ---- */
.ty-wrap { padding: 3.5rem 0 3.5rem; }
.ty-card {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 3rem 2.6rem;
  box-shadow: var(--shadow-lg);
}
.ty-check {
  width: 78px;
  height: 78px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: #1a1405;
  font-size: 2.3rem;
  box-shadow: 0 0 0 10px rgba(201, 162, 39, 0.12), 0 0 0 22px rgba(201, 162, 39, 0.06);
}
.ty-mail {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: var(--ink-faint);
  border: 1px dashed var(--line-gold);
  background: rgba(201, 162, 39, 0.06);
  border-radius: 999px;
  padding: 0.45rem 1rem;
  margin-bottom: 1.5rem;
}
.ty-mail strong { color: var(--gold-ink); font-weight: 700; }
.ty-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 0.5rem; }
.ty-hint { font-size: 0.84rem; color: var(--ink-faint); margin: 1.5rem 0 0; }

.steps { counter-reset: step; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.step { position: relative; padding-top: 3rem; }
.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  top: 0;
  left: 0;
  width: 2.3rem;
  height: 2.3rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--gold);
  color: var(--gold-deep);
  font-weight: 800;
  font-size: 0.94rem;
}
.step h3 { margin-bottom: 0.4rem; }
.step p { font-size: 0.94rem; margin: 0; }

/* ---- Footer ---- */
.lp-footer {
  background: var(--black);
  border-top: 1px solid rgba(201, 162, 39, 0.28);
  padding: 2.2rem 0;
  font-size: 0.86rem;
  color: var(--faint-dark);
}
.lp-footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}
.lp-footer a { color: var(--faint-dark); }
.lp-footer a:hover { color: var(--gold-bright); }
.lp-footer .sep { margin: 0 0.5rem; opacity: 0.4; }

/* ---- Reveal ---- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }

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

/* ---- Responsive ---- */
@media (max-width: 1100px) {
  .hero-grid { gap: 2.2rem; }
  h1 { font-size: clamp(1.8rem, 3.2vw, 2.4rem); }
}
@media (max-width: 992px) {
  .hero-grid, .preview-grid { grid-template-columns: 1fr; gap: 2.2rem; }
  /* Once the hero stacks, the form leads — the pitch reads underneath it. */
  .hero-grid > .form-card { order: -1; }
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; }
  .section { padding: 3.5rem 0; }
  .lp-hero { padding: 2.5rem 0 3rem; }
}
@media (max-width: 640px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .form-card, .ty-card { padding: 1.4rem 1.2rem; }
  .lp-bar-right .hide-sm { display: none; }
  .btn { width: 100%; }
  .lp-bar-right .btn { width: auto; }
  .lp-footer-inner { flex-direction: column; text-align: center; }
}

/* ============================================================
   Toolkit pages — extra components
   (board-evaluation-toolkit.php, toolkit-thank-you.php)
   ============================================================ */

/* ---- Card section label ---- */
.card .num,
.card-top .num {
  display: block;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-ink);
  margin-bottom: 0.55rem;
}
.card-top {
  border-top: 3px solid var(--gold);
  padding-top: 1.1rem;
}
.card-top h3 { margin-bottom: 0.45rem; }
.card-top p { font-size: 0.94rem; color: var(--ink-soft); margin: 0; }

/* ---- Trust strip (value over label, 4-up) ---- */
.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.trust-strip .ts-item { display: flex; flex-direction: column; gap: 0.15rem; }
.trust-strip .ts-val {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-ink);
}
.trust-strip .ts-lbl { font-size: 0.88rem; color: var(--ink-faint); }
.band-dark .trust-strip .ts-val { color: var(--gold-bright); }
.band-dark .trust-strip .ts-lbl { color: var(--faint-dark); }

/* ---- Proof band (oversized stat + argument) ---- */
.proof-grid {
  display: grid;
  grid-template-columns: 0.55fr 1fr;
  gap: 3rem;
  align-items: center;
}
.proof-stat {
  font-size: clamp(3.6rem, 8vw, 5.4rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.95;
  color: var(--white);
}
.proof-stat-lbl {
  margin-top: 0.7rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}
.proof-grid p { font-size: 1.05rem; line-height: 1.7; margin: 0; }
.proof-grid p b { color: var(--white); font-weight: 700; }

/* ---- Two-column argument + callout ---- */
.why-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 3rem;
  align-items: start;
}
.why-grid p { font-size: 1rem; line-height: 1.75; }
.callout {
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 3px solid var(--gold);
  border-radius: 8px;
  padding: 1.6rem;
  box-shadow: var(--shadow-sm);
}
.callout .lbl {
  display: block;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-ink);
  margin-bottom: 0.7rem;
}
.callout p { font-size: 0.95rem; line-height: 1.7; margin: 0; color: var(--ink-soft); }

/* ---- Booking card: pill radios ---- */
.pill-group { margin-bottom: 1.2rem; }
.pill-group .group-label {
  display: block;
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 0.55rem;
}
.pills { display: flex; flex-wrap: wrap; gap: 0.55rem; }
.pills input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
}
.pills label {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid var(--line);
  background: var(--white);
  color: var(--ink-soft);
  border-radius: 999px;
  padding: 0.55rem 1.05rem;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.pills label:hover { border-color: var(--gold); color: var(--ink); }
.pills input:checked + label {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  border-color: var(--gold-deep);
  color: #1a1405;
}
.pills input:focus-visible + label {
  outline: none;
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.28);
}

.divider-or {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin: 1.3rem 0 1rem;
}
.divider-or::before,
.divider-or::after { content: ""; flex: 1; height: 1px; background: var(--line); }
.divider-or span {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

/* ---- "Toolkit sent" strip ---- */
.sent-strip {
  max-width: 560px;
  margin: 2.4rem auto 0;
  padding-top: 1.6rem;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 1.1rem;
  text-align: left;
}
.stamp-badge {
  flex: none;
  width: 64px;
  height: 64px;
  border: 2px dashed var(--gold);
  border-radius: 50%;
  display: grid;
  place-items: center;
  transform: rotate(-6deg);
  color: var(--gold-deep);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}
.sent-strip p { font-size: 0.92rem; line-height: 1.6; margin: 0; color: var(--ink-soft); }
.sent-strip p b { color: var(--ink); font-weight: 700; }
.sent-strip .dl { display: inline-block; margin-top: 0.4rem; font-weight: 700; font-size: 0.9rem; }

/* ---- Outline chips ---- */
.chip-row { display: flex; flex-wrap: wrap; gap: 0.6rem; justify-content: center; }
.chip {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--gold-ink);
  border: 1px solid var(--line-gold);
  background: rgba(201, 162, 39, 0.07);
  border-radius: 999px;
  padding: 0.5rem 1rem;
}
.skip-line { text-align: center; margin: 2.2rem 0 0; font-size: 0.92rem; color: var(--ink-faint); }

/* ---- Toolkit responsive ---- */
@media (max-width: 992px) {
  .proof-grid, .why-grid { grid-template-columns: 1fr; gap: 2rem; }
  .trust-strip { grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }
}
@media (max-width: 640px) {
  .trust-strip { grid-template-columns: 1fr; }
  .sent-strip { flex-direction: column; text-align: center; }
  .pills label { width: 100%; justify-content: center; }
}

/* ---- Secondary resource strip ---- */
.resource-strip {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  max-width: 720px;
  margin: 2.2rem auto 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 3px solid var(--gold);
  border-radius: 10px;
  padding: 1.1rem 1.3rem;
  box-shadow: var(--shadow-sm);
}
.resource-strip .rs-icon {
  flex: none;
  width: 42px;
  height: 42px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  background: rgba(201, 162, 39, 0.12);
  border: 1px solid var(--line-gold);
  color: var(--gold-deep);
  font-size: 1.2rem;
}
.resource-strip .rs-body { flex: 1 1 auto; min-width: 0; }
.resource-strip .rs-kicker {
  display: block;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-ink);
  margin-bottom: 0.15rem;
}
.resource-strip h3 { font-size: 1.02rem; margin: 0 0 0.15rem; }
.resource-strip p { font-size: 0.9rem; margin: 0; color: var(--ink-faint); }
.resource-strip .btn { flex: none; padding: 0.65rem 1.2rem; font-size: 0.9rem; }

@media (max-width: 640px) {
  .resource-strip { flex-direction: column; text-align: center; }
  .resource-strip .btn { width: 100%; }
}

/* ---- Post-submission: "sent to your inbox" line + inline calendar ---- */
.sent-line {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem 0.9rem;
  max-width: 900px;
  margin: 0 auto 1.8rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 4px solid var(--gold);
  border-radius: 10px;
  padding: 0.95rem 1.4rem;
  box-shadow: var(--shadow-sm);
  text-align: center;
  font-size: 1.02rem;
  color: var(--ink-soft);
}
.sent-line .tick {
  flex: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: #1a1405;
  font-size: 0.9rem;
}
.sent-line strong { color: var(--ink); font-weight: 700; }
.sent-line .btn { padding: 0.55rem 1.1rem; font-size: 0.9rem; }
.sent-note {
  text-align: center;
  font-size: 0.86rem;
  color: var(--ink-faint);
  margin: -1.1rem auto 1.8rem;
  max-width: 900px;
}

.book-panel {
  max-width: 900px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.8rem 1.6rem 1.2rem;
  box-shadow: var(--shadow-lg);
  text-align: center;
}
.book-panel .calendly-inline-widget {
  margin-top: 1.2rem;
  border-top: 1px solid var(--line);
  border-radius: 0 0 10px 10px;
  overflow: hidden;
}

@media (max-width: 640px) {
  .sent-line { font-size: 0.95rem; padding: 0.9rem 1rem; }
  .sent-line .btn { width: 100%; }
  .book-panel { padding: 1.4rem 0.9rem 0.9rem; }
}
