/* ==========================================================================
   Consistency Club — site styles
   Hand-written, self-contained (no CDN), built for WCAG 2.1 AA.
   Design tokens up top; reskinning happens here, not in the rules below.
   Brand: dark green #1c301e · medium green #25542a · blush #ffe0e0 ·
          cream #f0ece3 · white / near-black.
   ========================================================================== */

:root {
  /* Colors — every text/background pair meets WCAG AA (4.5:1 body, 3:1 large/UI). */
  --color-bg: #ffffff;
  --color-cream: #f0ece3;
  --color-blush: #ffe0e0;
  --color-green: #25542a;         /* medium green (primary) */
  --color-green-dark: #1c301e;    /* dark green */
  --color-text: #1a1a1a;          /* ~17:1 on white */
  --color-text-muted: #464646;    /* ~9:1 on white */
  --color-on-green: #ffffff;      /* white on green — AA+ */
  --color-on-green-soft: #eef1e9; /* soft cream-white body text on green — ~9:1 */
  --color-star: #8a6a00;          /* deep gold — ~4.6:1 on white/cream */
  --color-border: #d8d2c6;        /* warm border to match cream */
  --color-focus: #0b4bd4;         /* high-visibility focus ring */

  --font-heading: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-script: "Great Vibes", "Playfair Display", cursive;
  --font-body: "Work Sans", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 7.5rem;

  --radius: 12px;
  --radius-lg: 20px;
  --maxwidth: 75rem;
  --shadow: 0 4px 20px rgba(28, 48, 30, 0.06);
  --shadow-hover: 0 12px 30px rgba(28, 48, 30, 0.10);
}

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

html { scroll-behavior: smooth; }

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

h1, h2, h3 {
  font-family: var(--font-heading);
  line-height: 1.2;
  color: var(--color-green-dark);
  margin: 0 0 var(--space-sm);
}
h1 { font-size: clamp(2.5rem, 6vw, 4rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }

p { margin: 0 0 var(--space-sm); max-width: 65ch; }

a { color: var(--color-green); text-underline-offset: 0.15em; }
a:hover { color: var(--color-green-dark); }

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

/* ---------- Accessibility helpers ---------- */
:focus-visible {
  outline: 3px solid var(--color-focus);
  outline-offset: 2px;
  border-radius: 4px;
}

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0);
  white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute;
  left: var(--space-sm);
  top: -100px;
  z-index: 1000;
  background: var(--color-green);
  color: var(--color-on-green);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius);
  text-decoration: none;
  transition: top 0.2s ease;
}
.skip-link:focus { top: var(--space-sm); }

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--maxwidth);
  margin-inline: auto;
  padding-inline: var(--space-md);
}

.section { padding-block: clamp(3.5rem, 8vw, var(--space-xl)); }
.section--cream { background: var(--color-cream); }
.section--blush { background: var(--color-blush); }
.section--white { background: var(--color-bg); }
.section--green { background: var(--color-green); color: var(--color-on-green-soft); }

.section__head { text-align: center; max-width: 46rem; margin: 0 auto var(--space-lg); }
.section__head p { margin-inline: auto; }

/* Script accent word (e.g. "Club", "Questions") */
.script {
  font-family: var(--font-script);
  font-weight: 400;
  color: var(--color-green);
  font-size: 1.4em;
  line-height: 1;
}
.section--green .script { color: #cfe6cf; }
#reviews-heading { color: var(--color-on-green); }
#reviews-heading .script { color: var(--color-cream); }
.section--green .hero__lead { color: var(--color-on-green-soft); }

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(120%) blur(8px);
  border-bottom: 1px solid var(--color-border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  padding-block: 0.75rem;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--color-green-dark);
  text-decoration: none;
}

/* CC monogram — pure CSS, no external image */
.monogram {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--color-green);
  color: var(--color-green);
  border-radius: 50%;
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}
.monogram--sm { width: 2.5rem; height: 2.5rem; font-size: 0.85rem; }
.monogram--lg { width: 6rem; height: 6rem; font-size: 1.6rem; }

.nav__toggle {
  display: none;
  align-items: center;
  gap: 0.4rem;
  background: none;
  border: 2px solid var(--color-border);
  border-radius: var(--radius);
  padding: 0.5rem 0.75rem;
  min-height: 44px;
  font: inherit;
  color: var(--color-text);
  cursor: pointer;
}

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

.nav__link {
  display: flex;
  align-items: center;
  min-height: 44px;               /* WCAG 2.5.5 target size */
  padding: 0.5rem 0.85rem;
  color: var(--color-text);
  text-decoration: none;
  border-radius: var(--radius);
  font-weight: 500;
}
.nav__link:hover { background: var(--color-cream); color: var(--color-green-dark); }
.nav__link[aria-current="page"] {
  color: var(--color-green);
  box-shadow: inset 0 -3px 0 var(--color-green);
}
.nav__cta { margin-left: 0.4rem; }

/* ---------- Buttons ---------- */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.85rem 1.75rem;
  font: inherit;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.2s ease, transform 0.15s ease, color 0.2s ease;
}
.button--primary { background: var(--color-green); color: var(--color-on-green); }
.button--primary:hover { background: var(--color-green-dark); color: var(--color-on-green); }
.button--secondary {
  background: transparent;
  color: var(--color-green);
  border-color: var(--color-green);
}
.button--secondary:hover { background: var(--color-green); color: var(--color-on-green); }
/* On green backgrounds: cream button with green text */
.button--on-green { background: var(--color-cream); color: var(--color-green-dark); }
.button--on-green:hover { background: #ffffff; color: var(--color-green-dark); }
.button:active { transform: scale(0.985); }
.button--block { width: 100%; }
.button__icon { width: 1.1em; height: 1.1em; }

/* ---------- Hero ---------- */
.hero { text-align: center; }
.hero__inner { display: flex; flex-direction: column; align-items: center; }
.hero__est {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.35em;
  font-size: 0.75rem;
  color: var(--color-text-muted);
  margin: var(--space-md) 0 var(--space-xs);
}
.brandmark { margin: 0 0 0.25rem; }
.brandmark__name {
  display: block;
  font-family: var(--font-heading);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--color-green-dark);
  font-size: clamp(1.9rem, 9vw, 5rem);
  line-height: 1;
}
.brandmark__script {
  display: block;
  font-family: var(--font-script);
  font-weight: 400;
  color: var(--color-green);
  font-size: clamp(3rem, 9vw, 5.5rem);
  line-height: 0.9;
  margin-top: 0.02em;
}
.hero__lead {
  font-size: 1.2rem;
  color: var(--color-text-muted);
  max-width: 42rem;
  margin: var(--space-md) auto var(--space-lg);
}
.hero__actions { display: flex; flex-wrap: wrap; gap: var(--space-sm); justify-content: center; }
.about-subhead {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  color: var(--color-green-dark);
  max-width: 40rem;
  margin: 1.75rem auto var(--space-lg);
}

/* ---------- Win / review snippet cards ---------- */
.win-grid {
  display: grid;
  gap: var(--space-md);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 16rem), 1fr));
  margin-top: var(--space-xl);
  width: 100%;
  max-width: 60rem;
}
.snippet {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  text-align: left;
  box-shadow: var(--shadow);
}
.review__stars { color: var(--color-star); letter-spacing: 0.12em; margin-bottom: 0.5rem; }
.snippet__quote { font-style: italic; margin-bottom: 0.75rem; }
.snippet__author { font-weight: 600; color: var(--color-green); margin: 0; }

/* ---------- Member wins showcase (scrolling ticker) ----------
   NOTE: currently unused. The hero wins were moved into the static
   .wins-section list below; these styles are kept for possible reuse. */
.wins-showcase {
  position: relative;
  width: 100%;
  margin-top: var(--space-lg);
  padding-block: var(--space-lg);
  /* Soft green halo painted directly on the element so it fades fully to
     transparent before every edge — no hard cutoff lines. */
  background: radial-gradient(75% 75% at 50% 50%, rgba(37, 84, 42, 0.16), rgba(37, 84, 42, 0) 62%);
}
.wins-showcase__eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--color-green);
  margin: 0 0 var(--space-md);
}
.wins-showcase__eyebrow::before,
.wins-showcase__eyebrow::after {
  content: "";
  width: 2.5rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-green));
  opacity: 0.55;
}
.wins-showcase__eyebrow::after { transform: scaleX(-1); }

.wins-ticker {
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.wins-ticker + .wins-ticker { margin-top: var(--space-sm); }
.wins-ticker__track { display: flex; width: max-content; }
.wins-ticker--rtl .wins-ticker__track { animation: wins-scroll 150s linear infinite; }
.wins-ticker--ltr .wins-ticker__track { animation: wins-scroll 170s linear infinite reverse; }
/* On hover/focus the rows slow to about half speed rather than stopping. */
.wins-showcase:hover .wins-ticker--rtl .wins-ticker__track,
.wins-showcase:focus-within .wins-ticker--rtl .wins-ticker__track { animation-duration: 300s; }
.wins-showcase:hover .wins-ticker--ltr .wins-ticker__track,
.wins-showcase:focus-within .wins-ticker--ltr .wins-ticker__track { animation-duration: 340s; }
.wins-ticker__group { display: flex; margin: 0; padding: 0; list-style: none; }
.wins-ticker__item {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  margin-right: var(--space-sm);
  background: linear-gradient(180deg, #ffffff, #fbf9f3);
  border: 1px solid rgba(37, 84, 42, 0.14);
  border-radius: 999px;
  box-shadow: 0 1px 3px rgba(28, 48, 30, 0.05);
  padding: 0.65rem 1.25rem;
  font-size: 0.95rem;
  color: var(--color-text);
  white-space: nowrap;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.wins-ticker__item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(28, 48, 30, 0.08);
}
.wins-ticker__star { color: #c79a2b; margin-right: 0.5rem; font-size: 0.9em; }
.wins-ticker__author { color: var(--color-green); font-weight: 600; }
.wins-ticker__author::before { content: "·"; margin: 0 0.5rem; color: var(--color-border); }
@keyframes wins-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Member wins section (solid dark green) ---------- */
.wins-section {
  background: var(--color-green-dark);
  padding-block: clamp(6.5rem, 12vw, 9.5rem);
  color: var(--color-on-green-soft);
}
.wins-section__title { text-align: center; color: #ffffff; max-width: 40rem; margin: 0 auto 0.5rem; }
.wins-section .script { color: #cfe6cf; }
.wins-section__sub { text-align: center; color: var(--color-on-green-soft); max-width: 40rem; margin: 0 auto; }
.wins-bubbles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  max-width: 68rem;
  margin: var(--space-lg) auto 0;
  list-style: none;
  padding: 0;
}
@media (max-width: 900px) {
  .wins-bubbles { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .wins-bubbles { grid-template-columns: 1fr; }
}
.win-bubble {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
  text-align: left;
}
.win-bubble__quote { font-style: italic; color: var(--color-text); margin: 0 0 0.85rem; }
.win-bubble__author { font-weight: 600; color: var(--color-green); margin: auto 0 0; }

/* ---------- Reviews grid (wider, balanced columns) ---------- */
.reviews { columns: 1; column-gap: var(--space-md); }
@media (min-width: 52rem) { .reviews { columns: 2; } }
.reviews .snippet { break-inside: avoid; margin-bottom: var(--space-md); }
.snippet__quote--full { font-size: 1.05rem; line-height: 1.6; }

/* ---------- Spotlight scroll-wheel ---------- */
.carousel { position: relative; }
.carousel__track {
  display: flex;
  gap: var(--space-md);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: var(--space-md);
  padding: var(--space-xs) var(--space-xs) var(--space-md);
  margin: 0;
  list-style: none;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--color-green) transparent;
}
.carousel__track::-webkit-scrollbar { height: 8px; }
.carousel__track::-webkit-scrollbar-thumb { background: var(--color-green); border-radius: 999px; }
.carousel__item.spotlight {
  position: relative;
  display: flex;
  flex-direction: column;
  scroll-snap-align: start;
  flex: 0 0 min(85%, 22rem);
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.5rem;
  text-align: left;
}
.carousel__item.spotlight .review__stars { font-size: 0.95rem; margin-bottom: 0.4rem; }
.spotlight__quote {
  font-family: var(--font-body);
  font-style: italic;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--color-green-dark);
  margin: 0 0 var(--space-sm);
  quotes: "\201C" "\201D";
}
.spotlight__quote::before { content: open-quote; color: var(--color-green); margin-right: 0.05em; }
.spotlight__quote::after { content: close-quote; }
.spotlight__author { font-weight: 600; color: var(--color-green); margin: auto 0 0; padding-top: 0.5rem; }

.carousel__controls { display: flex; align-items: center; justify-content: center; gap: var(--space-sm); margin-top: var(--space-xs); }
.carousel__hint { text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.8rem; font-weight: 600; color: var(--color-text-muted); white-space: nowrap; }
@media (max-width: 360px) {
  .carousel__hint { font-size: 0.65rem; letter-spacing: 0.06em; }
}
.carousel__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  border: 2px solid var(--color-green);
  background: var(--color-bg);
  color: var(--color-green);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}
.carousel__btn:hover { background: var(--color-green); color: var(--color-on-green); }
.carousel__btn svg { width: 1.5rem; height: 1.5rem; }

/* ---------- Big pull-quote break ---------- */
.pullquote { text-align: center; max-width: 60rem; margin: 0 auto; }
.pullquote__stars { color: #f4d35e; letter-spacing: 0.18em; font-size: 1.25rem; margin-bottom: var(--space-sm); max-width: none; }
.pullquote__quote {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  line-height: 1.3;
  color: var(--color-on-green);
  margin: 0 0 var(--space-md);
}
.pullquote__author { color: var(--color-on-green-soft); font-weight: 600; font-size: 1.1rem; }

/* ---------- Wins grid (testimonials) ---------- */
.wins-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 18rem), 1fr));
  gap: var(--space-md);
  list-style: none;
  margin: 0;
  padding: 0;
}
.wins-grid--single { max-width: 24rem; margin-inline: auto; }
.win-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  box-shadow: var(--shadow);
}
.win-card--cream { background: var(--color-cream); }
.win-card--blush { background: var(--color-blush); border-color: #f2c9c9; }
.win-card__icon { color: var(--color-green); display: block; margin-bottom: 0.5rem; }
.win-card__icon svg { width: 2rem; height: 2rem; }
.win-card__tag { text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.7rem; font-weight: 600; color: var(--color-text-muted); margin: 0 0 0.25rem; }
.win-card h3 { margin: 0 0 0.5rem; }
.win-card p { margin: 0; color: var(--color-text-muted); }

/* ---------- Centered CTA band ---------- */
.cta-band { text-align: center; }
.cta-band h2 { color: var(--color-on-green); margin-bottom: var(--space-md); }
.cta-band p { margin-inline: auto; }
.cta-band__sub { font-size: clamp(1.1rem, 2vw, 1.35rem); max-width: 40rem; }

/* ---------- Checklist ("agent who…") ---------- */
.checklist {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 22rem), 1fr));
  gap: var(--space-md) var(--space-lg);
  max-width: 60rem;
  margin: 0 auto;
  list-style: none;
  padding: 0;
}
.checklist__item { display: flex; align-items: flex-start; gap: 0.85rem; }
.checklist__item p { margin: 0; font-size: 1.1rem; }
.check {
  flex-shrink: 0;
  width: 2rem; height: 2rem;
  border-radius: 50%;
  background: var(--color-blush);
  color: var(--color-green-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.15rem;
}
.check svg { width: 1.1rem; height: 1.1rem; }

/* ---------- Story (two column) ---------- */
.story { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-lg); align-items: center; }
.story__media { position: relative; }
.story__frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 5;
  background: linear-gradient(135deg, #dfe3d6, #cdd6c4);
}
.story__frame img { width: 100%; height: 100%; object-fit: cover; }
/* Placeholder shown until a real photo is dropped in */
.story__placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  color: var(--color-green-dark);
  padding: var(--space-md);
}
.story__placeholder span { font-weight: 600; }
.story__placeholder small { color: var(--color-text-muted); }
.story__body p { color: var(--color-text-muted); font-size: 1.1rem; }
.story__full {
  color: var(--color-text-muted);
  font-size: 1.1rem;
  max-width: none;
  margin: var(--space-lg) 0 0;
}

/* ---------- Honest list ("not this agent" counter-checklist) ---------- */
.honest-list { list-style: none; padding: 0; margin: var(--space-md) 0 0; display: flex; flex-direction: column; gap: var(--space-md); }
.honest-list__item { display: flex; align-items: flex-start; gap: 0.85rem; }
.honest-list__item p { margin: 0; font-size: 1.1rem; color: var(--color-text-muted); }
.x-mark {
  flex-shrink: 0;
  width: 2rem; height: 2rem;
  border-radius: 50%;
  background: var(--color-green);
  color: var(--color-on-green);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.15rem;
}
.x-mark svg { width: 1.1rem; height: 1.1rem; }

/* ---------- Truth (centered statement) ---------- */
.truth { max-width: 46rem; margin: 0 auto; text-align: center; }
.truth__line { font-size: 1.2rem; line-height: 1.7; color: var(--color-text); margin: 0 0 0.75rem; }
.truth__line:last-child { margin-bottom: 0; }
.truth__line--bold { font-weight: 700; color: var(--color-green-dark); }
.truth__line--spaced { margin-bottom: var(--space-md); }
.truth__line--spaced:last-child { margin-bottom: 0; }
.truth__divider { width: 4rem; height: 2px; background: var(--color-green); opacity: 0.4; margin: var(--space-md) auto; border: 0; }
.truth__subheading { font-size: clamp(1.3rem, 2.6vw, 1.9rem); margin: 0 0 0.75rem; white-space: nowrap; }
@media (max-width: 480px) { .truth__subheading { white-space: normal; } }
.truth__conclusion { font-family: var(--font-heading); font-size: clamp(1.5rem, 3vw, 2rem); color: var(--color-green-dark); }

/* ---------- Features (on green) ---------- */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 20rem), 1fr));
  gap: var(--space-md);
}
.feature {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
}
.feature__icon {
  width: 3rem; height: 3rem;
  border-radius: 50%;
  background: var(--color-cream);
  color: var(--color-green-dark);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: var(--space-sm);
}
.feature__icon svg { width: 1.4rem; height: 1.4rem; }
.feature h3 { color: var(--color-on-green); margin-bottom: 0.35rem; }
.feature__meta { color: #cfe6cf; font-size: 0.9rem; margin-bottom: 0.5rem; font-style: italic; }
.feature p { color: var(--color-on-green-soft); margin: 0; }
.feature p + .feature__list { margin-top: 0.5rem; }
.feature__list { list-style: disc; padding-left: 1.2rem; margin: 0; color: var(--color-on-green-soft); }
.feature__list li { margin-bottom: 0.25rem; }

/* ---------- Pricing ---------- */
.pricing-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  max-width: 40rem;
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 3.5rem);
  text-align: center;
}
.price { margin: var(--space-md) 0; }
.price__label { display: block; text-transform: uppercase; letter-spacing: 0.15em; font-size: 0.85rem; font-weight: 600; color: var(--color-text-muted); margin-bottom: 0.25rem; }
.price__amount { font-family: var(--font-heading); font-weight: 800; font-size: clamp(3.5rem, 10vw, 5.5rem); color: var(--color-green-dark); line-height: 1; }
.price__period { color: var(--color-text-muted); font-size: 1.1rem; }
.value-list { list-style: none; padding: 0; margin: 0 auto var(--space-lg); max-width: 26rem; text-align: left; display: grid; gap: 0.85rem; }
.value-list li { display: flex; align-items: flex-start; gap: 0.6rem; }
.value-list svg { flex-shrink: 0; width: 1.25rem; height: 1.25rem; color: var(--color-green); margin-top: 0.15rem; }
.value-list .value-amt { color: var(--color-text-muted); }
.pricing__total-value { font-size: 1.15rem; color: var(--color-text-muted); margin: 0; }
.pricing__total-value strong { color: var(--color-green-dark); }
.pricing__note { color: var(--color-text-muted); font-size: 0.85rem; margin-top: var(--space-sm); }

/* ---------- Founder blurb ---------- */
.founder__link { display: inline-flex; align-items: center; gap: 0.4rem; font-weight: 600; }
.founder__link:hover { text-decoration: none; }

/* ---------- FAQ ---------- */
.faq { max-width: 50rem; margin: 0 auto; display: grid; gap: var(--space-sm); }
.faq__item {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq__q {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--color-green-dark);
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-sm);
  min-height: 44px;
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q:hover { background: var(--color-cream); }
.faq__q .chev { transition: transform 0.3s ease; flex-shrink: 0; width: 1.25rem; height: 1.25rem; color: var(--color-green); }
.faq__item[open] .faq__q .chev { transform: rotate(180deg); }
.faq__a { padding: 0 1.5rem 1.5rem; color: var(--color-text-muted); }
.faq__a ul { margin: 0.25rem 0 0; padding-left: 1.25rem; }

/* ---------- Footer ---------- */
.site-footer { background: var(--color-green-dark); color: rgba(255, 255, 255, 0.85); padding-block: var(--space-lg); }
.site-footer a { color: #ffffff; text-decoration: underline; text-underline-offset: 0.15em; }
.site-footer a:hover { color: rgba(255, 255, 255, 0.85); }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr; gap: var(--space-lg); }
@media (max-width: 640px) {
  .footer__grid { grid-template-columns: 1fr; }
}
.footer__col { min-width: 0; }
.footer__brand-name { font-family: var(--font-heading); font-size: 1.5rem; color: #ffffff; margin-bottom: 0.5rem; }
.site-footer p { color: rgba(255, 255, 255, 0.8); }
.footer__col h2 { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.6); font-family: var(--font-body); margin-bottom: 0.75rem; }
.footer__col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.5rem; }
.footer__col a { color: rgba(255, 255, 255, 0.85); text-decoration: none; }
.footer__col a:hover { color: #ffffff; text-decoration: underline; }
.footer__bottom { border-top: 1px solid rgba(255, 255, 255, 0.2); margin-top: var(--space-lg); padding-top: var(--space-md); }
.footer__bottom p { margin: 0; font-size: 0.9rem; color: rgba(255, 255, 255, 0.65); }

/* ---------- Scroll-reveal ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 52rem) {
  .story { grid-template-columns: 1fr; }
  .story__media { order: -1; max-width: 26rem; margin-inline: auto; }
}

@media (max-width: 40rem) {
  .nav__toggle { display: inline-flex; }
  .nav { flex-wrap: wrap; }
  .nav__list {
    display: none;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    padding-top: var(--space-xs);
  }
  .nav__list.is-open { display: flex; }
  .nav__cta { margin: 0.4rem 0 0; }
}

/* ---------- Reduced motion (WCAG 2.3.3 / 2.2.2) ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  /* Ticker: stop the animation and let users scroll it by hand instead. */
  .wins-ticker { overflow-x: auto; -webkit-mask-image: none; mask-image: none; }
  .wins-ticker__track { animation: none; width: auto; }
  .wins-ticker__group[aria-hidden="true"] { display: none; }
}
