/*
  Life After The Sale -- Design System
  =====================================
  Honest, plain, slightly rebellious. Editorial, letter-like, anti-guru.
  NOT gold (Adam Cerra), NOT pink/aspiration (Shelby Sapp),
  NOT stage-guru gloss (Dan Lok). Warm paper, near-black ink,
  muted steel primary, clay/rust CTA.

  No CSS framework. No build step. Plain CSS, mobile-first.
  Web fonts: Archivo (display), Newsreader (serif/italic),
  Inter (body -- replaces Geist, which is not on Google Fonts).

  Usage: add the @import line to <head> as a <link> instead for best perf.
  Google Fonts link for <head>:
    <link rel="preconnect" href="https://fonts.googleapis.com">
    <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
    <link href="https://fonts.googleapis.com/css2?family=Archivo:wght@400;600;700;900&family=Inter:wght@400;500;600&family=Newsreader:ital,wght@1,400;1,600&display=swap" rel="stylesheet">

  NOTE: Geist is not available on Google Fonts (it is a Vercel-proprietary
  typeface). Inter is used as the body fallback. It reads as clean and
  professional without drawing attention to itself, which suits the
  letter-like editorial intent.
*/

/* ============================================================
   GOOGLE FONTS IMPORT (fallback if not linked in <head>)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Archivo:wght@400;600;700;900&family=Inter:wght@400;500;600&family=Newsreader:ital,wght@1,400;1,600&display=swap');


/* ============================================================
   CSS CUSTOM PROPERTIES (brand tokens)
   ============================================================ */

:root {

  /* Colors */
  --color-ink:        #161412;
  --color-paper:      #FBF8F3;
  --color-panel:      #F3EEE5;
  --color-slate-900:  #1E2A30;
  --color-slate-700:  #33474F;
  --color-steel:      #3C5A66;
  --color-steel-soft: #D7E0E2;
  --color-clay:       #BC4B2A;
  --color-clay-dark:  #9E3D20;
  --color-clay-soft:  #EBCDBF;
  --color-moss:       #3E6B4F;
  --color-muted:      #6E6A63;
  --color-rule:       #E4DCCF;
  --color-white:      #FFFFFF;

  /* Semantic aliases */
  --bg:               var(--color-paper);
  --bg-panel:         var(--color-panel);
  --text:             var(--color-ink);
  --text-muted:       var(--color-muted);
  --cta:              var(--color-clay);
  --cta-hover:        var(--color-clay-dark);
  --cta-soft:         var(--color-clay-soft);
  --primary:          var(--color-steel);
  --primary-dark:     var(--color-slate-700);
  --rule:             var(--color-rule);

  /* Typography */
  --font-display: "Archivo", system-ui, sans-serif;
  --font-body:    "Inter", "Geist", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-serif:   "Newsreader", Georgia, "Times New Roman", serif;

  /* Radius */
  --radius-base:  12px;
  --radius-large: 20px;
  --radius-pill:  999px;

  /* Spacing scale */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --space-9: 96px;

  /* Layout */
  --maxw:   1040px;
  --narrow:  660px;
  --gutter:  22px;

  /* Shadows */
  --shadow-card: 0 8px 24px -8px rgba(22, 20, 18, 0.12), 0 2px 6px -2px rgba(22, 20, 18, 0.06);
  --shadow-cta:  0 12px 24px -8px rgba(188, 75, 42, 0.35);

  /* Motion */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}


/* ============================================================
   RESET + BASE
   ============================================================ */

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

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

a {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--primary-dark);
}

p {
  margin: 0 0 1.1em;
}

p:last-child {
  margin-bottom: 0;
}

ul, ol {
  margin: 0 0 1.1em;
  padding-left: 1.4em;
}

li {
  margin-bottom: 0.45em;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0 0 0.5em;
  line-height: 1.1;
  font-family: var(--font-display);
  font-weight: 900;
  color: var(--text);
  text-wrap: balance;
}

strong {
  font-weight: 600;
}

/* ============================================================
   TYPE SCALE
   ============================================================ */

/* display -- for above-the-fold hero headline, largest size */
.type-display {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(30px, 5.5vw, 44px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--text);
}

/* h1 -- section headlines */
.type-h1,
h1 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(28px, 5.5vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

/* h2 -- subsection heads */
.type-h2,
h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(22px, 3.8vw, 36px);
  line-height: 1.1;
  letter-spacing: -0.015em;
}

/* h3 -- card titles, step names */
.type-h3,
h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(17px, 2.5vw, 24px);
  line-height: 1.2;
  letter-spacing: -0.01em;
}

/* body -- default, inherited from body */
.type-body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
}

/* body large -- for lead / intro paragraph */
.type-body-lg {
  font-family: var(--font-body);
  font-size: clamp(17px, 2.2vw, 20px);
  line-height: 1.6;
}

/* small -- labels, fine print */
.type-small {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.5;
}

/* serif italic -- for emotional one-liners, pull-quotes */
.type-serif {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(20px, 3vw, 28px);
  line-height: 1.35;
  color: var(--text);
}


/* ============================================================
   LAYOUT
   ============================================================ */

/* Main content wrapper */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* Narrower reading column (editorial prose) */
.container--narrow {
  max-width: var(--narrow);
}

/* Section spacing */
.section {
  padding: var(--space-8) 0;
}

.section--sm {
  padding: var(--space-7) 0;
}

.section--lg {
  padding: var(--space-9) 0;
}

/* Utility */
.text-center { text-align: center; }
.text-left   { text-align: left; }
.text-muted  { color: var(--text-muted); }

/* Stack utility -- vertical rhythm shorthand */
.stack > * + * { margin-top: var(--space-5); }
.stack--sm > * + * { margin-top: var(--space-3); }
.stack--lg > * + * { margin-top: var(--space-7); }


/* ============================================================
   EYEBROW LABEL
   Used above headlines to orient the reader (section label).
   Keep it short. Uppercase. Muted.
   ============================================================ */

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: var(--space-3);
}

/* Eyebrow with a clay accent dot before the text */
.eyebrow--accented::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cta);
  margin-right: 8px;
  vertical-align: middle;
  position: relative;
  top: -1px;
}


/* ============================================================
   DIVIDER / RULE
   ============================================================ */

.divider {
  border: none;
  border-top: 1px solid var(--rule);
  margin: var(--space-7) 0;
}

.divider--sm {
  margin: var(--space-5) 0;
}

/* Short decorative mark -- used under eyebrows or hero headlines */
.rule-mark {
  display: block;
  width: 40px;
  height: 2px;
  background: var(--cta);
  border-radius: 2px;
  margin: var(--space-4) 0;
}

.rule-mark--center {
  margin-left: auto;
  margin-right: auto;
}


/* ============================================================
   BUTTONS
   ============================================================ */

/* Shared base */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  border-radius: var(--radius-pill);
  padding: 14px 28px;
  transition:
    background 0.18s ease,
    color 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    transform 0.1s ease;
  white-space: nowrap;
}

.btn:hover {
  text-decoration: none;
}

.btn:active {
  transform: translateY(1px);
}

/* Primary button -- clay/rust CTA (never gold) */
.btn--primary {
  background: var(--cta);
  color: var(--color-white);
  border-color: var(--cta);
  box-shadow: var(--shadow-cta);
}

.btn--primary:hover {
  background: var(--cta-hover);
  border-color: var(--cta-hover);
  color: var(--color-white);
  box-shadow: 0 14px 28px -8px rgba(188, 75, 42, 0.45);
}

/* Large variant for hero CTAs */
.btn--primary.btn--lg {
  font-size: 18px;
  padding: 18px 40px;
}

/* Secondary button -- steel outline, no fill */
.btn--secondary {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn--secondary:hover {
  background: var(--color-steel-soft);
  color: var(--primary-dark);
  border-color: var(--primary-dark);
}

/* Ghost button -- minimal, for low-emphasis actions */
.btn--ghost {
  background: transparent;
  color: var(--text-muted);
  border-color: var(--rule);
  font-weight: 500;
}

.btn--ghost:hover {
  background: var(--bg-panel);
  color: var(--text);
  border-color: var(--color-rule);
}

/* Full-width (block) variant */
.btn--block {
  display: block;
  width: 100%;
}

/* Button micro note (price, guarantee line below a button) */
.btn-note {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: var(--space-2);
  text-align: center;
}

.guarantee-note {
  font-size: 14px;
  line-height: 1.5;
  color: var(--color-ink);
  text-align: center;
  margin-top: var(--space-3);
}

/* Reduced motion: disable the CTA shadow pulse animation */
@media (prefers-reduced-motion: reduce) {
  .btn {
    transition: none;
  }
}


/* ============================================================
   HERO SECTION
   ============================================================ */

.hero {
  padding: var(--space-8) 0 var(--space-9);
  background: var(--bg);
}

/* Wider text column so the headline wraps to fewer, bigger lines on desktop */
.hero .container--narrow {
  max-width: 860px;
}

.hero__inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

/* Eyebrow callout, bigger and bolder than the headline below it */
.hero__eyebrow {
  display: block;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(24px, 6vw, 46px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--cta);
  margin: 0;
}

/* Centered variant for above-fold callout pages */
.hero--center .hero__inner {
  align-items: center;
  text-align: center;
}

.hero__headline {
  margin: 0;
}

.hero__proof-line {
  font-size: 14px;
  color: var(--text-muted);
  max-width: 54ch;
  margin: 0;
}

.hero__sub {
  max-width: 54ch;
  color: var(--text-muted);
}

.hero--center .hero__sub {
  max-width: 48ch;
  margin-left: auto;
  margin-right: auto;
}

.hero__cta-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  align-items: center;
}

.hero--center .hero__cta-wrap {
  justify-content: center;
}


/* ============================================================
   PANEL / CARD
   Plain, slightly off-white card. No heavy shadows.
   ============================================================ */

.panel {
  background: var(--bg-panel);
  border: 1px solid var(--rule);
  border-radius: var(--radius-base);
  padding: var(--space-6);
}

.panel--white {
  background: var(--color-white);
}

.panel--ink {
  background: var(--color-slate-900);
  color: var(--color-steel-soft);
  border-color: transparent;
}

.panel--ink .type-h1,
.panel--ink .type-h2,
.panel--ink .type-h3,
.panel--ink h1,
.panel--ink h2,
.panel--ink h3 {
  color: var(--color-white);
}

.panel--ink .text-muted {
  color: rgba(215, 224, 226, 0.65);
}

/* Card grid (auto-responsive) */
.card-grid {
  display: grid;
  gap: var(--space-5);
  grid-template-columns: 1fr;
}

@media (min-width: 600px) {
  .card-grid--2 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 720px) {
  .card-grid--3 { grid-template-columns: repeat(3, 1fr); }
}

/* Step card -- for The Client Journey Method steps */
.step-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  background: var(--bg-panel);
  border: 1px solid var(--rule);
  border-radius: var(--radius-base);
  padding: var(--space-5) var(--space-6);
}

.step-card__number {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--cta);
  text-transform: uppercase;
}

.step-card__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  line-height: 1.15;
  color: var(--text);
  margin: 0;
}

.step-card__body {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}


/* ============================================================
   VISUAL MOCKUP (3D playbook render + framework card)
   ============================================================ */

/* Wider text column so the mockup image has more room to render bigger */
.mockup-section .container--narrow {
  max-width: 820px;
}

.mockup {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  background: var(--bg-panel);
  border: 1px solid var(--rule);
  border-radius: var(--radius-large);
  padding: var(--space-6);
}

@media (min-width: 640px) {
  .mockup {
    flex-direction: row;
    align-items: stretch;
  }
}

.mockup__card {
  flex: 1;
  background: var(--color-white);
  border: 1px solid var(--rule);
  border-radius: var(--radius-base);
  padding: var(--space-5);
  box-shadow: var(--shadow-card);
}

.mockup__image-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mockup__image {
  width: 100%;
  max-width: 380px;
  height: auto;
  display: block;
}

.mockup__card-eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cta);
  margin-bottom: var(--space-4);
}

.mockup__card-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.mockup__card-steps li {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  color: var(--text);
  padding: var(--space-3) var(--space-4);
  background: var(--bg-panel);
  border-radius: var(--radius-base);
}

.mockup__caption {
  text-align: center;
  font-size: 14px;
  color: var(--text-muted);
  margin: var(--space-5) 0 0;
}


/* ============================================================
   WHAT'S INCLUDED (deliverables grid)
   ============================================================ */

.included-grid {
  display: grid;
  gap: var(--space-4);
  grid-template-columns: 1fr;
}

@media (min-width: 600px) {
  .included-grid { grid-template-columns: repeat(2, 1fr); }
}

.included-card {
  background: var(--color-white);
  border: 1px solid var(--rule);
  border-radius: var(--radius-base);
  padding: var(--space-5);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.included-card__format {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cta);
}

.included-card__body {
  font-size: 15px;
  color: var(--text);
  line-height: 1.55;
  margin: 0;
}


/* ============================================================
   PRICING CARD
   ============================================================ */

.pricing-card {
  background: var(--color-white);
  border: 2px solid var(--rule);
  border-radius: var(--radius-large);
  padding: var(--space-7) var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.pricing-card--featured {
  border-color: var(--cta);
  box-shadow: var(--shadow-card);
}

.pricing-card__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  color: var(--text);
  margin: 0;
}

.pricing-card__price-row {
  display: flex;
  align-items: baseline;
  gap: var(--space-2);
}

.pricing-card__price {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 48px;
  line-height: 1;
  color: var(--text);
}

.pricing-card__price-currency {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  color: var(--text-muted);
  align-self: flex-start;
  margin-top: 6px;
}

.pricing-card__price-was {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-muted);
  text-decoration: line-through;
}

.pricing-card__billing {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 2px;
}

.pricing-card__features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.pricing-card__features li {
  font-size: 15px;
  line-height: 1.4;
  color: var(--text);
  padding-left: 22px;
  position: relative;
}

.pricing-card__features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cta-soft);
  border: 2px solid var(--cta);
}


/* Proof stat blocks (retention stats, etc.) */
.proof-grid {
  display: grid;
  gap: var(--space-5);
  grid-template-columns: 1fr;
}

@media (min-width: 540px) {
  .proof-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 860px) {
  .proof-grid--3 { grid-template-columns: repeat(3, 1fr); }
}

.proof-stat {
  text-align: center;
  padding: var(--space-5);
}

.proof-stat__number {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(36px, 7vw, 56px);
  line-height: 1;
  color: var(--cta);
  margin-bottom: var(--space-2);
}

.proof-stat__label {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.4;
}

.proof-stat__source {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: var(--space-1);
  opacity: 0.7;
}

/* Short personal stats: bordered cards so the pair reads as one unit */
.proof-stat--card {
  background: var(--bg-panel);
  border: 1px solid var(--rule);
  border-radius: var(--radius-base);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.proof-stat--card .proof-stat__label {
  max-width: 32ch;
  margin-left: auto;
  margin-right: auto;
}

/* Sourced market stats: horizontal rows, number left, caption right */
.proof-rows {
  display: grid;
  gap: var(--space-4);
}

.proof-stat--row {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  text-align: left;
  background: var(--bg-panel);
  border: 1px solid var(--rule);
  border-radius: var(--radius-base);
  padding: var(--space-5) var(--space-6);
}

.proof-stat--row .proof-stat__number {
  flex: 0 0 190px;
  margin-bottom: 0;
  font-size: clamp(34px, 5vw, 46px);
  white-space: nowrap;
}

.proof-stat--row .proof-stat__label {
  font-size: 15px;
  line-height: 1.55;
}

.proof-stat--row .proof-stat__source {
  margin-top: var(--space-2);
}

@media (max-width: 619px) {
  .proof-stat--row {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-3);
  }
  .proof-stat--row .proof-stat__number { flex-basis: auto; }
}


/* ============================================================
   FAQ ACCORDION (CSS-only)
   Uses <details>/<summary> -- no JS required.
   ============================================================ */

.faq {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.faq__item {
  border-top: 1px solid var(--rule);
}

.faq__item:last-child {
  border-bottom: 1px solid var(--rule);
}

.faq__item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-5) 0;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  color: var(--text);
  user-select: none;
  -webkit-user-select: none;
}

/* Remove default triangle in Safari */
.faq__item summary::-webkit-details-marker {
  display: none;
}

/* Plus/minus indicator */
.faq__item summary::after {
  content: "+";
  flex-shrink: 0;
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
  color: var(--text-muted);
  transition: transform 0.2s ease;
}

.faq__item[open] summary::after {
  content: "-";
}

.faq__item summary:hover {
  color: var(--primary);
}

.faq__body {
  padding: 0 0 var(--space-5);
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-muted);
  max-width: 70ch;
}

.faq__body p:last-child {
  margin-bottom: 0;
}


/* ============================================================
   STICKY MOBILE CTA BAR
   Hidden on desktop (640px+). Shows at bottom of viewport.
   Carries the primary CTA for mobile Meta traffic.
   ============================================================ */

.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--color-white);
  border-top: 1px solid var(--rule);
  padding: var(--space-3) var(--gutter);
  padding-bottom: calc(var(--space-3) + env(safe-area-inset-bottom, 0px));
}

@media (max-width: 639px) {
  .mobile-cta-bar {
    display: block;
  }

  /* Prevent content from being hidden under the fixed bar */
  body {
    padding-bottom: 88px;
  }
}

.mobile-cta-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
}

.mobile-cta-bar__text {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.2;
}

.mobile-cta-bar__sub {
  font-size: 11px;
  font-weight: 400;
  color: var(--text-muted);
}

.mobile-cta-bar .btn {
  flex-shrink: 0;
  white-space: nowrap;
}


/* ============================================================
   PULL QUOTE (serif emotional line)
   Use sparingly -- one per page maximum.
   ============================================================ */

.pull-quote {
  border: none;
  padding: var(--space-7) 0;
  text-align: center;
}

.pull-quote__text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(22px, 3.5vw, 32px);
  line-height: 1.4;
  color: var(--text);
  max-width: 34ch;
  margin: 0 auto;
}


/* ============================================================
   THESIS BAND (the core positioning statement)
   ============================================================ */

.thesis-band {
  background: var(--color-slate-900);
  color: var(--color-steel-soft);
  padding: var(--space-8) 0;
}

.thesis-band__text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(20px, 3.5vw, 30px);
  line-height: 1.35;
  color: var(--color-white);
  max-width: 32ch;
  margin: 0;
}

.thesis-band__text .accent {
  color: var(--color-clay-soft);
}


/* ============================================================
   SCROLL REVEAL (JS-triggered via data-reveal)
   Add class "js" to <html> when JS loads.
   ============================================================ */

.js [data-reveal],
.js [data-reveal-group] > * {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.4s var(--ease-out),
    transform 0.4s var(--ease-out);
  will-change: opacity, transform;
}

.js [data-reveal-group] > * {
  transition-delay: calc(var(--reveal-i, 0) * 80ms);
}

[data-reveal].is-visible,
[data-reveal-group].is-visible > * {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .js [data-reveal],
  .js [data-reveal-group] > * {
    opacity: 1;
    transform: none;
    transition: none;
  }
}


/* ============================================================
   UTILITY / MISC
   ============================================================ */

/* Visually hidden (screen-reader accessible) */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Thin horizontal rule inside prose */
.prose-rule {
  border: none;
  border-top: 1px solid var(--rule);
  margin: var(--space-6) 0;
}

/* Micro fine print (under CTAs, legal) */
.fine-print {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Accent text color */
.text-clay { color: var(--cta); }
.text-steel { color: var(--primary); }
.text-moss  { color: var(--color-moss); }

/* Background panels */
.bg-paper  { background: var(--bg); }
.bg-panel  { background: var(--bg-panel); }
.bg-dark   { background: var(--color-slate-900); }
.bg-white  { background: var(--color-white); }

/* Responsive spacing helpers */
@media (max-width: 639px) {
  .section     { padding: var(--space-7) 0; }
  .section--lg { padding: var(--space-8) 0; }
  .panel       { padding: var(--space-5); }
  .pricing-card { padding: var(--space-6) var(--space-5); }
}
