@font-face {
  font-family: "Libre Caslon Text";
  src: url("fonts/caslon-latin.woff2") format("woff2");
  font-weight: 400 700;
  font-display: swap;
}

/* ==========================================================================
   WellWorth Royalties — landing + product styles
   No external deps; system fonts; works via file://
   Audience 45+: large type, high contrast, generous tap targets.
   Optimized for Facebook mobile traffic (80%+ of paid social).
   ========================================================================== */

:root {
  --navy: #26493A;
  --navy-mid: #2F5847;
  --navy-dark: #1E352A;
  --navy-deep: #16261E;
  --accent: #B6862C;
  --accent-soft: #E3C77F;
  --accent-dark: #8C6519;
  --accent-wash: #FAF6EA;
  --ink: #26241E;
  --ink-soft: #57534A;
  --ink-mute: #767162;
  --paper: #ffffff;
  --paper-alt: #F4EFE1;
  --paper-warm: #FAF7EE;
  --line: #DAD3BF;
  --line-soft: #EAE5D4;
  --error: #b3261e;
  --success: #1a6b40;
  --success-wash: #e8f5ee;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow-card: 0 4px 24px rgba(22, 38, 30, 0.08);
  --shadow-form: 0 16px 48px rgba(13, 23, 18, 0.28);
  --shadow-lift: 0 8px 28px rgba(22, 38, 30, 0.12);
  --header-h: 58px;
  --sticky-cta-h: 72px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 18px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* Room for sticky mobile CTA on landing */
  padding-bottom: 0;
}

body.has-sticky-cta {
  padding-bottom: var(--sticky-cta-h);
}

.btn, label, .step-num, .header-tag,
.eyebrow, .trust-item, .badge, .stat-label,
.nav-link, .pill, .form-trust, .section-kicker {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

h1, h2, h3, h4 {
  font-family: "Libre Caslon Text", Georgia, serif;
}

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

a {
  color: var(--accent-dark);
}

a:hover {
  color: var(--navy);
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.container-narrow {
  max-width: 720px;
}

.center {
  text-align: center;
}

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

/* --------------------------------- header -------------------------------- */

.site-header {
  background: var(--navy-deep);
  color: #fff;
  padding: 12px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.brand img {
  height: 34px;
  width: auto;
}

.brand:hover {
  color: #fff;
}

.brand-accent {
  color: var(--accent-soft);
}

.header-tag {
  font-size: 13px;
  color: #BEB9A5;
  letter-spacing: 0.2px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-link {
  font-size: 14px;
  color: #CFCAB5;
  text-decoration: none;
  font-weight: 500;
}

.nav-link:hover {
  color: #fff;
}

.btn-header {
  font-size: 14px;
  padding: 9px 16px;
  border-radius: 8px;
}

/* ---------------------------------- hero ---------------------------------- */

.hero {
  background:
    radial-gradient(ellipse 80% 60% at 10% 0%, rgba(196, 138, 34, 0.12) 0%, transparent 55%),
    linear-gradient(165deg, var(--navy-mid) 0%, var(--navy) 45%, var(--navy-dark) 100%);
  color: #fff;
  padding: 48px 0 56px;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  opacity: 0.5;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.12fr 1fr;
  gap: 40px;
  align-items: start;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 650;
  text-transform: uppercase;
  letter-spacing: 1.1px;
  color: var(--accent-soft);
  margin-bottom: 16px;
  background: rgba(240, 194, 122, 0.1);
  border: 1px solid rgba(240, 194, 122, 0.28);
  padding: 7px 12px;
  border-radius: 999px;
}

.hero h1 {
  font-size: clamp(30px, 4.2vw, 44px);
  line-height: 1.14;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  font-weight: 700;
  font-family: "Libre Caslon Text", Georgia, serif;
}

.hero h1 em {
  color: var(--accent-soft);
  font-style: normal;
  position: relative;
}

.hero-sub {
  font-size: 19px;
  color: #DCD7C2;
  margin-bottom: 22px;
  max-width: 34em;
}

.hero-points {
  list-style: none;
  margin-bottom: 26px;
}

.hero-points li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 12px;
  color: #E0DBC8;
  font-size: 17px;
}

.hero-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(240, 194, 122, 0.18);
  border: 1.5px solid var(--accent-soft);
  box-sizing: border-box;
}

.hero-points li::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 9px;
  width: 7px;
  height: 4px;
  border-left: 2px solid var(--accent-soft);
  border-bottom: 2px solid var(--accent-soft);
  transform: rotate(-45deg);
}

.hero-points strong {
  color: #fff;
  font-weight: 650;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 20px;
  margin-bottom: 10px;
}

.hero-note {
  font-size: 14.5px;
  color: #A8A390;
  margin-top: 10px;
}

.hero-note strong {
  color: #CFCAB5;
  font-weight: 600;
}

/* -------------------------------- trust bar ------------------------------- */

.trust-bar {
  background: var(--paper);
  border-bottom: 1px solid var(--line-soft);
  padding: 18px 0;
  box-shadow: 0 2px 12px rgba(22, 38, 30, 0.04);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px 20px;
}

.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  min-width: 0;
}

.trust-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--accent-wash);
  color: var(--accent-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
}

.trust-item strong {
  display: block;
  font-size: 14.5px;
  color: var(--navy);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 2px;
}

.trust-item span {
  display: block;
  font-size: 13px;
  color: var(--ink-mute);
  line-height: 1.35;
  font-family: Georgia, "Times New Roman", serif;
}

/* -------------------------------- buttons -------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  font-weight: 700;
  font-size: 17px;
  padding: 14px 26px;
  transition: background-color 0.15s ease, transform 0.1s ease, box-shadow 0.15s ease;
  line-height: 1.25;
  -webkit-tap-highlight-color: transparent;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 2px 0 var(--accent-dark), 0 6px 16px rgba(154, 106, 20, 0.25);
}

.btn-primary:hover {
  background: var(--accent-dark);
  color: #fff;
}

.btn-light {
  background: #fff;
  color: var(--navy);
  box-shadow: 0 2px 0 #D6CFBA, 0 6px 16px rgba(0, 0, 0, 0.12);
}

.btn-light:hover {
  background: #F1EBDA;
  color: var(--navy);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.45);
  box-shadow: none;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: #fff;
}

.btn-lg {
  font-size: 18.5px;
  padding: 16px 32px;
}

.btn-block {
  display: flex;
  width: 100%;
}

/* -------------------------------- lead form ------------------------------- */

.form-card {
  background: var(--paper);
  color: var(--ink);
  border-radius: 14px;
  box-shadow: var(--shadow-form);
  padding: 28px 26px 26px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.form-card-head {
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line-soft);
}

.form-card h2 {
  font-size: 24px;
  margin-bottom: 6px;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.form-intro {
  color: var(--ink-soft);
  font-size: 15.5px;
  margin: 0;
}

.form-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--success);
  background: var(--success-wash);
  border: 1px solid #c5e4d2;
  padding: 5px 10px;
  border-radius: 999px;
}

.form-section-label {
  font-size: 12.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--ink-mute);
  margin: 6px 0 12px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.field {
  margin-bottom: 14px;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

label {
  display: block;
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 5px;
  color: var(--ink);
}

.req {
  color: var(--error);
}

.opt-label {
  font-weight: 500;
  color: var(--ink-mute);
  font-size: 13.5px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
select,
textarea {
  width: 100%;
  font-size: 16px; /* 16px prevents iOS zoom on focus */
  font-family: inherit;
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--ink);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  -webkit-appearance: none;
  appearance: none;
}

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='%234a5a6a' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

input[type="file"] {
  width: 100%;
  font-size: 14.5px;
  padding: 10px 0;
  color: var(--ink-soft);
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(196, 138, 34, 0.22);
}

input.invalid,
select.invalid {
  border-color: var(--error);
  background: #fdf4f3;
}

.field-hint {
  font-size: 13.5px;
  color: var(--ink-mute);
  margin-top: 5px;
  line-height: 1.4;
}

.error-msg {
  display: none;
  font-size: 13.5px;
  color: var(--error);
  margin-top: 5px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.error-msg.visible {
  display: block;
}

.field-consent {
  margin-top: 14px;
  margin-bottom: 16px;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 400;
  font-size: 14.5px;
  cursor: pointer;
  color: var(--ink-soft);
  line-height: 1.45;
}

.checkbox-label input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--accent);
}

.form-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 13px;
  color: var(--ink-mute);
  margin-top: 12px;
  text-align: center;
}

.form-fine-print {
  font-size: 12.5px;
  color: var(--ink-mute);
  text-align: center;
  margin-top: 10px;
  line-height: 1.45;
}

/* -------------------------------- sections -------------------------------- */

.section {
  padding: 64px 0;
}

.section-alt {
  background: var(--paper-alt);
}

.section-warm {
  background: var(--paper-warm);
}

.section-kicker {
  display: block;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--accent-dark);
  margin-bottom: 10px;
}

.section-title {
  font-size: clamp(26px, 3.5vw, 34px);
  text-align: center;
  margin-bottom: 12px;
  color: var(--navy);
  letter-spacing: -0.02em;
  font-family: "Libre Caslon Text", Georgia, serif;
  font-weight: 750;
  line-height: 1.2;
}

.section-lede {
  text-align: center;
  color: var(--ink-soft);
  max-width: 560px;
  margin: 0 auto 36px;
  font-size: 17.5px;
}

/* who it's for */

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.audience-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 22px;
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.15s ease, border-color 0.15s ease;
}

.audience-card:hover {
  box-shadow: var(--shadow-lift);
  border-color: #CFC8B2;
}

.audience-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--navy);
  color: var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 14px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.audience-card h3 {
  font-size: 18.5px;
  margin-bottom: 8px;
  color: var(--navy);
  line-height: 1.3;
}

.audience-card p {
  color: var(--ink-soft);
  font-size: 15.5px;
  margin: 0;
}

/* example value */

.example-panel {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 28px;
  align-items: stretch;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.example-story {
  padding: 32px 30px;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: #fff;
}

.example-story h3 {
  font-size: 22px;
  margin-bottom: 12px;
  line-height: 1.3;
  color: #fff;
}

.example-story p {
  color: #CFCAB5;
  font-size: 16px;
  margin-bottom: 18px;
}

.example-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pill {
  font-size: 12.5px;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #EAE5D2;
  padding: 6px 11px;
  border-radius: 999px;
}

.example-math {
  padding: 32px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}

.math-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line-soft);
}

.math-row:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
}

.math-row.math-highlight {
  background: var(--accent-wash);
  border: 1px solid #e6cba0;
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  margin-top: 4px;
}

.math-label {
  font-size: 15px;
  color: var(--ink-soft);
}

.math-value {
  font-size: 20px;
  font-weight: 750;
  color: var(--navy);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  white-space: nowrap;
}

.math-highlight .math-value {
  color: var(--accent-dark);
  font-size: 24px;
}

.math-highlight .math-label {
  color: var(--ink);
  font-weight: 600;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 14.5px;
}

.example-disclaimer {
  font-size: 13px;
  color: var(--ink-mute);
  margin-top: 4px;
  line-height: 1.45;
}

/* steps */

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  counter-reset: step;
}

.step {
  text-align: left;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 22px;
  box-shadow: var(--shadow-card);
  position: relative;
}

.step-num {
  width: 44px;
  height: 44px;
  line-height: 44px;
  margin-bottom: 14px;
  border-radius: 12px;
  background: var(--navy);
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
}

.step h3 {
  font-size: 18.5px;
  margin-bottom: 8px;
  color: var(--navy);
}

.step p {
  color: var(--ink-soft);
  font-size: 15.5px;
  margin: 0;
}

/* benefits */

.benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.benefit {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 24px 22px;
  box-shadow: var(--shadow-card);
}

.section-alt .benefit {
  background: var(--paper);
}

.benefit-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--accent-wash);
  color: var(--accent-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.benefit h3 {
  font-size: 18.5px;
  margin-bottom: 8px;
  color: var(--navy);
  line-height: 1.3;
}

.benefit p {
  color: var(--ink-soft);
  font-size: 15.5px;
  margin: 0;
}

/* data strip */

.data-strip {
  background: var(--navy-dark);
  color: #fff;
  padding: 40px 0;
}

.data-strip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: center;
}

.data-stat strong {
  display: block;
  font-size: 32px;
  font-weight: 750;
  color: var(--accent-soft);
  letter-spacing: -0.02em;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  margin-bottom: 6px;
  line-height: 1.1;
}

.data-stat span {
  display: block;
  font-size: 15px;
  color: #BEB9A5;
  line-height: 1.4;
}

/* faq */

.faq-item {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  margin-bottom: 10px;
  padding: 0 20px;
  box-shadow: 0 1px 3px rgba(22, 38, 30, 0.04);
}

.faq-item[open] {
  border-color: #CFC8B2;
  box-shadow: var(--shadow-card);
}

.faq-item summary {
  cursor: pointer;
  font-weight: 650;
  font-size: 17px;
  padding: 16px 0;
  font-family: "Libre Caslon Text", Georgia, serif;
  color: var(--navy);
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

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

.faq-item summary::after {
  content: "+";
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--paper-alt);
  color: var(--navy);
  font-size: 18px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "\2212";
}

.faq-item p {
  padding: 0 0 18px;
  color: var(--ink-soft);
  font-size: 16px;
}

/* cta band */

.cta-band {
  background:
    radial-gradient(ellipse 70% 80% at 90% 50%, rgba(196, 138, 34, 0.15) 0%, transparent 50%),
    linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: #fff;
}

.cta-band h2 {
  font-size: clamp(24px, 3.2vw, 30px);
  margin-bottom: 10px;
  font-family: "Libre Caslon Text", Georgia, serif;
  letter-spacing: -0.02em;
}

.cta-band p {
  color: #CFCAB5;
  margin-bottom: 22px;
  font-size: 17.5px;
}

/* sticky mobile CTA */

.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom, 0px));
  box-shadow: 0 -4px 20px rgba(22, 38, 30, 0.1);
}

.sticky-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  max-width: 1100px;
  margin: 0 auto;
}

.sticky-cta-copy {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.3;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.sticky-cta-copy strong {
  display: block;
  color: var(--navy);
  font-size: 15px;
}

.sticky-cta .btn {
  flex-shrink: 0;
  padding: 12px 18px;
  font-size: 15.5px;
}

/* --------------------------------- footer --------------------------------- */

.site-footer {
  background: var(--navy-deep);
  color: #8fa3b5;
  padding: 36px 0 40px;
  font-size: 14px;
}

.footer-disclaimer {
  max-width: 920px;
  margin-bottom: 18px;
  line-height: 1.7;
}

.footer-disclaimer strong {
  color: #CFCAB5;
}

.footer-meta {
  color: #5d7285;
  font-size: 13px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  align-items: center;
}

.footer-meta a {
  color: #8fa3b5;
  text-decoration: none;
}

.footer-meta a:hover {
  color: #CFCAB5;
  text-decoration: underline;
}

/* ------------------------------- thanks page ------------------------------ */

.thanks-wrap {
  max-width: 680px;
  margin: 0 auto;
  padding: 56px 20px 72px;
  text-align: center;
}

.thanks-check {
  width: 72px;
  height: 72px;
  line-height: 72px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--success-wash);
  color: var(--success);
  font-size: 34px;
  font-weight: 700;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  border: 2px solid #c5e4d2;
}

.thanks-wrap h1 {
  font-size: clamp(28px, 4vw, 34px);
  margin-bottom: 12px;
  color: var(--navy);
  font-family: "Libre Caslon Text", Georgia, serif;
  letter-spacing: -0.02em;
}

.thanks-lede {
  font-size: 18.5px;
  color: var(--ink-soft);
  margin-bottom: 32px;
}

.next-steps {
  text-align: left;
  background: var(--paper-alt);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 28px;
  margin-bottom: 28px;
  box-shadow: var(--shadow-card);
}

.next-steps h2 {
  font-size: 20px;
  margin-bottom: 14px;
  color: var(--navy);
  font-family: "Libre Caslon Text", Georgia, serif;
}

.next-steps ol {
  padding-left: 22px;
}

.next-steps li {
  margin-bottom: 12px;
  color: var(--ink-soft);
}

.next-steps li strong {
  color: var(--ink);
}

.thanks-cta {
  margin-bottom: 12px;
}

.thanks-note {
  font-size: 15px;
  color: var(--ink-soft);
}

.thanks-note a {
  color: var(--accent-dark);
}

/* ------------------------------- responsive ------------------------------- */

@media (max-width: 920px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .trust-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .audience-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .example-panel {
    grid-template-columns: 1fr;
  }

  .data-strip-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .benefits {
    grid-template-columns: 1fr;
  }

  .header-tag {
    display: none;
  }
}

@media (max-width: 640px) {
  body.has-sticky-cta {
    padding-bottom: calc(var(--sticky-cta-h) + env(safe-area-inset-bottom, 0px));
  }

  .sticky-cta {
    display: block;
  }

  .hero {
    padding: 32px 0 40px;
  }

  .hero-sub {
    font-size: 17.5px;
  }

  .hero-points li {
    font-size: 16px;
  }

  .field-row {
    grid-template-columns: 1fr;
  }

  .form-card {
    padding: 22px 18px 20px;
  }

  .section {
    padding: 48px 0;
  }

  .example-story,
  .example-math {
    padding: 24px 20px;
  }

  .btn-header {
    display: none;
  }

  .trust-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .trust-item {
    align-items: center;
  }
}

/* Prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .btn {
    transition: none;
  }
}
