/* ==========================================================================
   CHAMPION ATHLETE MINDSET — Global Stylesheet
   "Soft Performance" design system. Single custom CSS file, no build step.
   Edit color/type tokens in :root below.
   ========================================================================== */

/* SECTION 1: DESIGN TOKENS ------------------------------------------------- */
:root {
  /* Authority */
  --navy: #14324c;
  --navy-deep: #0e2638;
  /* Warm gold accent (restored) */
  --accent: #c39a4e;
  --accent-light: #e0c074;
  --accent-soft: rgba(195, 154, 78, 0.14);
  --accent-deep: #a87f38;
  /* Backwards-compatible aliases */
  --gold: var(--accent);
  --gold-light: var(--accent-light);
  /* Neutrals — warm, soft, premium */
  --ivory: #fbf9f5;
  --sand: #f0e9dd;
  --stone: #e8e1d4;
  --white: #ffffff;
  --offwhite: #f5f1ea;
  --slate: #5c7592;
  --ink: #16222e;
  --muted: #46535e;
  --muted-light: #c3ccd4;
  --border: #e8e1d5;
  --border-soft: #eee9df;
  /* Shape & depth */
  --radius: 16px;
  --radius-sm: 10px;
  --radius-pill: 999px;
  --shadow: 0 10px 34px rgba(20, 49, 74, 0.07);
  --shadow-lg: 0 26px 60px rgba(20, 49, 74, 0.14);
  --maxw: 1160px;
  --maxw-narrow: 720px;
  --font-head: "Sora", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
}

/* SECTION 2: RESET & BASE -------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--ivory);
  line-height: 1.7;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.012em;
  color: var(--ink);
}
h1 { font-size: clamp(2.2rem, 5.2vw, 3.6rem); }
h2 { font-size: clamp(1.6rem, 3.6vw, 2.5rem); }
h3 { font-size: 1.22rem; font-weight: 600; letter-spacing: -0.01em; }
p { color: var(--muted); }

/* SECTION 3: LAYOUT UTILITIES --------------------------------------------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }
.section-sm { padding: 60px 0; }
.center { text-align: center; }
.maxw-700 { max-width: var(--maxw-narrow); margin-left: auto; margin-right: auto; }
.eyebrow {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 16px;
}
.lead { font-size: 1.14rem; line-height: 1.75; }

/* Soft divider */
.divider { height: 1px; background: var(--border-soft); border: 0; margin: 0; }

/* Background variants */
.bg-navy { background: var(--navy); color: #eef2f6; }
.bg-navy h1, .bg-navy h2, .bg-navy h3, .bg-navy h4 { color: #ffffff; }
.bg-navy p { color: var(--muted-light); }
.bg-navy .eyebrow { color: var(--accent-light); }
.bg-offwhite { background: var(--sand); }
.bg-white { background: var(--ivory); }

/* SECTION 4: BUTTONS ------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head);
  font-weight: 600;
  letter-spacing: 0.005em;
  font-size: 0.98rem;
  padding: 15px 30px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: transform .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
}
.btn:focus-visible { outline: 3px solid var(--accent-light); outline-offset: 3px; }
.btn-gold { background: var(--accent); color: #fff; }
.btn-gold:hover { background: var(--accent-deep); transform: translateY(-2px); }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-deep); transform: translateY(-2px); }
.btn-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,.45); }
.btn-outline:hover { background: rgba(255,255,255,.1); border-color: #fff; }
.btn-outline-navy { background: transparent; color: var(--navy); border-color: var(--border); }
.btn-outline-navy:hover { background: var(--navy); color: #fff; border-color: var(--navy); }
.btn-block { display: flex; width: 100%; justify-content: center; }
.cta-row { display: flex; flex-wrap: wrap; gap: 14px; }
.cta-row.center { justify-content: center; }

/* Tertiary text link with arrow */
.arrow {
  color: var(--accent); font-weight: 600; font-family: var(--font-head);
  display: inline-flex; align-items: center; gap: 6px;
  transition: gap .18s ease;
}
.arrow:hover { gap: 11px; }
.bg-navy .arrow { color: var(--accent-light); }

/* SECTION 5: ANNOUNCEMENT BAR --------------------------------------------- */
.announce {
  background: var(--stone);
  color: var(--navy);
  text-align: center;
  font-size: 0.8rem;
  letter-spacing: 0.03em;
  font-weight: 500;
  padding: 11px 16px;
}
.announce a { color: var(--accent); text-decoration: none; font-weight: 600; border-bottom: 1px solid currentColor; padding-bottom: 1px; }

/* SECTION 6: HEADER (sticky) ---------------------------------------------- */
.header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(20, 50, 76, 0.96);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 16px 24px; max-width: var(--maxw); margin: 0 auto;
}
.logo {
  font-family: var(--font-head); font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; color: #fff; font-size: 1rem; line-height: 1.1;
}
.logo span { color: var(--accent-light); }
.nav { display: flex; align-items: center; gap: 28px; }
.nav a {
  color: var(--muted-light); font-weight: 500; font-size: 0.92rem;
  letter-spacing: 0.01em; transition: color .15s;
}
.nav a:hover, .nav a.active { color: #fff; }
.header-cta { display: inline-block; }
.menu-toggle {
  display: none; background: none; border: 0; cursor: pointer;
  width: 44px; height: 44px; padding: 9px;
}
.menu-toggle span { display: block; height: 2px; background: #fff; margin: 5px 0; transition: .25s; }

/* SECTION 7: HERO --------------------------------------------------------- */
.hero {
  position: relative; color: #fff;
  display: flex; align-items: center;
  min-height: 84vh; padding: 96px 0;
  background-color: var(--navy);
  background-size: cover; background-position: center;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(14,38,56,.58), rgba(11,30,46,.86));
  z-index: 0;
}
.hero .container { position: relative; z-index: 1; }
.hero .eyebrow { color: var(--accent-light); }
.hero h1 { max-width: 16ch; color: #fff; }
.hero p { color: #e7ecf1; font-size: 1.18rem; max-width: 600px; margin-top: 22px; }
.hero .cta-row { margin-top: 36px; }
.hero-compact { min-height: 62vh; }

/* SECTION 8: CARDS & GRIDS ------------------------------------------------ */
.grid { display: grid; gap: 26px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.card {
  background: var(--white); border: 1px solid var(--border-soft);
  border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow);
}
.card h3 { margin-bottom: 10px; }
.card p { font-size: 0.98rem; }
.bg-navy .card { background: rgba(255,255,255,.04); border-color: rgba(255,255,255,.1); }
.bg-navy .card h3 { color: #fff; }
.card-link { display: block; transition: transform .2s, box-shadow .2s, border-color .2s; }
.card-link:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--border); }
/* Refined numbered/line marker (replaces emoji icons) */
.card .icon {
  width: 46px; height: 46px; border-radius: 12px;
  background: var(--accent-soft); color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 700; font-size: 1.05rem;
  letter-spacing: 0.02em; margin-bottom: 18px;
}
.bg-navy .card .icon { background: rgba(212,146,107,.18); color: var(--accent-light); }
.card .arrow { margin-top: 16px; font-size: 0.95rem; }

/* checklist / refined list */
.checklist { display: grid; gap: 12px; }
.checklist li {
  background: var(--white); border: 1px solid var(--border-soft);
  border-radius: var(--radius-sm); padding: 18px 22px;
  display: flex; gap: 16px; align-items: flex-start; font-weight: 500; color: var(--ink);
  font-size: 0.99rem;
}
.bg-navy .checklist li { background: rgba(255,255,255,.04); border-color: rgba(255,255,255,.1); color: #eef2f6; }
.checklist li .mark {
  width: 7px; height: 7px; border-radius: 50%; background: var(--accent);
  flex-shrink: 0; margin-top: 0.62em;
}
.emph {
  font-size: 1.16rem; font-weight: 500; color: var(--ink); line-height: 1.6;
  border-left: 3px solid var(--accent); padding: 4px 0 4px 22px; margin-top: 8px;
}
.bg-navy .emph { color: #fff; }

/* SECTION 9: TWO-COLUMN SPLIT --------------------------------------------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split img { border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.founder-img { width: 100%; height: 100%; max-height: 560px; aspect-ratio: 4 / 5; object-fit: cover; object-position: 50% 16%; display: block; }
.pullquote {
  font-family: var(--font-head); font-size: 1.32rem; font-weight: 500; font-style: italic;
  color: var(--accent-light); line-height: 1.45; margin-top: 26px;
  border-left: 3px solid var(--accent); padding-left: 22px;
}

/* Credential badges */
.badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.badge {
  font-size: 0.85rem; font-weight: 500; color: var(--ink);
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-pill); padding: 9px 16px;
}
.bg-navy .badge { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.14); color: #eef2f6; }

/* SECTION 10: PYRAMID ----------------------------------------------------- */
.pyramid { display: flex; flex-direction: column; align-items: center; gap: 12px; margin: 20px auto; max-width: 540px; }
.pyramid-level {
  color: #fff; font-family: var(--font-head); font-weight: 600;
  letter-spacing: .02em;
  text-align: center; padding: 22px; cursor: pointer;
  border-radius: var(--radius-sm); transition: transform .18s, filter .18s;
}
.pyramid-level:hover, .pyramid-level.active { transform: scale(1.02); filter: brightness(1.08); }
.pyramid-level[data-level="3"] { width: 48%; background: var(--accent); color: #fff; }
.pyramid-level[data-level="2"] { width: 74%; background: var(--slate); }
.pyramid-level[data-level="1"] { width: 100%; background: var(--navy); border: 1px solid rgba(255,255,255,.12); }
.pyramid-desc {
  margin-top: 26px; background: var(--white); color: var(--ink);
  border: 1px solid var(--border-soft); border-radius: var(--radius);
  padding: 26px; box-shadow: var(--shadow); max-width: 560px; margin-left: auto; margin-right: auto;
}

/* SECTION 11: STEPS ------------------------------------------------------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; counter-reset: step; }
.step { padding: 8px; }
.step .num {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--accent-soft); color: var(--accent);
  font-family: var(--font-head); font-weight: 700; font-size: 1.3rem;
  display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
}
.bg-navy .step .num { background: rgba(212,146,107,.18); color: var(--accent-light); }
.bg-navy .step h3 { color: #fff; }

/* SECTION 12: TESTIMONIALS ------------------------------------------------ */
.testimonial { display: flex; flex-direction: column; gap: 16px; }
.testimonial .quote { font-size: 1.08rem; color: var(--ink); font-style: italic; line-height: 1.6; }
.testimonial .who { display: flex; align-items: center; gap: 12px; }
.testimonial .who img, .testimonial .avatar {
  width: 52px; height: 52px; border-radius: 50%; object-fit: cover;
  background: var(--navy); color: var(--accent-light);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 700;
}
.testimonial .name { font-weight: 700; color: var(--ink); font-size: 0.95rem; }
.testimonial .club { font-size: 0.82rem; color: var(--muted); }

/* SECTION 13: FORMS ------------------------------------------------------- */
.form { display: grid; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field label { display: block; font-weight: 500; font-size: 0.88rem; margin-bottom: 7px; color: var(--ink); }
.bg-navy .field label { color: #e7ecf1; }
.field input, .field select, .field textarea {
  width: 100%; padding: 14px 15px; border-radius: var(--radius-sm);
  border: 1px solid var(--border); background: var(--white); color: var(--ink);
  font-family: var(--font-body); font-size: 1rem;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 3px solid var(--accent-light); outline-offset: 1px; border-color: var(--accent);
}
.field .error-msg { color: #b23b2e; font-size: 0.8rem; margin-top: 4px; display: none; }
.field.invalid .error-msg { display: block; }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: #b23b2e; }
.form-success {
  display: none; background: var(--accent-soft); border: 1px solid var(--accent);
  color: var(--ink); padding: 18px; border-radius: var(--radius-sm); font-weight: 500;
}
.bg-navy .form-success { color: #fff; }
.form-success.show { display: block; }
.form-card {
  background: var(--white); border: 1px solid var(--border-soft);
  border-radius: var(--radius); padding: 34px;
  box-shadow: var(--shadow-lg); max-width: 600px; margin: 0 auto;
}
.inline-form { display: flex; gap: 12px; flex-wrap: wrap; max-width: 620px; margin: 26px auto 0; }
.inline-form input { flex: 1 1 180px; padding: 15px; border-radius: var(--radius-sm); border: 1px solid var(--border); font-size: 1rem; }

/* SECTION 14: FAQ ACCORDION ----------------------------------------------- */
.faq { max-width: 760px; margin: 0 auto; display: grid; gap: 12px; }
.faq-item { border: 1px solid var(--border-soft); border-radius: var(--radius-sm); overflow: hidden; background: var(--white); }
.faq-q {
  width: 100%; text-align: left; background: none; border: 0; cursor: pointer;
  padding: 20px 22px; font-family: var(--font-head); font-weight: 600; font-size: 1.04rem;
  color: var(--navy); display: flex; justify-content: space-between; gap: 16px; align-items: center;
}
.faq-q .plus { color: var(--accent); font-size: 1.4rem; transition: transform .2s; flex-shrink: 0; }
.faq-item.open .faq-q .plus { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a p { padding: 0 22px 20px; }

/* SECTION 15: CHIPS / TAGS ------------------------------------------------ */
.chips { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.chip {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-pill);
  padding: 12px 20px; font-weight: 500; color: var(--ink); font-size: 0.92rem;
}
.bg-navy .chip { background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.14); color: #eef2f6; }

/* SECTION 16: STAT BAND --------------------------------------------------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; text-align: center; }
.stat .big { font-family: var(--font-head); font-weight: 700; font-size: 1.55rem; color: var(--accent); }
.bg-navy .stat .big { color: var(--accent-light); }
.stat .small { font-size: 0.9rem; }

/* SECTION 17: CTA BANNER -------------------------------------------------- */
.banner { text-align: center; }
.banner p { max-width: 620px; margin: 18px auto 30px; }
.banner h2 { max-width: 18ch; margin-left: auto; margin-right: auto; }
.bg-gold { background: var(--navy); color: #fff; }
.bg-gold h2 { color: #fff; }
.bg-gold p { color: var(--muted-light); }

/* SECTION 18: BOOK THUMBS ------------------------------------------------- */
.book-row { display: grid; grid-template-columns: repeat(8, 1fr); gap: 10px; margin-top: 22px; }
.book {
  aspect-ratio: 2/3; border-radius: 8px; background: linear-gradient(160deg, var(--navy), var(--slate));
  display: flex; align-items: center; justify-content: center; color: var(--accent-light);
  font-family: var(--font-head); font-weight: 700; font-size: 1.1rem;
  border: 1px solid rgba(255,255,255,.1);
}

/* SECTION 19: BLOG GRID --------------------------------------------------- */
.blog-thumb { aspect-ratio: 16/10; border-radius: var(--radius) var(--radius) 0 0; object-fit: cover; }
.card.blog { padding: 0; overflow: hidden; }
.card.blog .body { padding: 26px; }
.card.blog h3 { font-size: 1.12rem; line-height: 1.3; }
.card.blog .cat { font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); font-weight: 600; }
.card.blog .readtime { font-size: 0.8rem; color: var(--muted); }

/* SECTION 20: ARTICLE LAYOUT --------------------------------------------- */
.article-layout { display: grid; grid-template-columns: 1fr 320px; gap: 56px; align-items: start; }
.article-body { max-width: 720px; }
.article-body p { margin-bottom: 20px; color: var(--ink); line-height: 1.8; }
.sidebar-card { background: var(--sand); border: 1px solid var(--border-soft); border-radius: var(--radius); padding: 26px; position: sticky; top: 100px; }

/* SECTION 21: FOOTER ------------------------------------------------------ */
.footer { background: var(--navy-deep); color: var(--muted-light); padding: 64px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1.6fr; gap: 44px; }
.footer .logo { display: block; margin-bottom: 16px; }
.footer p { color: var(--muted-light); font-size: 0.92rem; max-width: 38ch; }
.footer h4 { color: #fff; text-transform: uppercase; font-size: 0.82rem; letter-spacing: .12em; margin-bottom: 16px; font-weight: 600; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: var(--muted-light); font-size: 0.92rem; }
.footer-links a:hover { color: var(--accent-light); }
.socials { display: flex; gap: 12px; margin-top: 18px; }
.socials a {
  width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,.06);
  display: flex; align-items: center; justify-content: center; color: #fff; font-size: 0.74rem; font-weight: 600;
}
.socials a:hover { background: var(--accent); color: #fff; }
.footer-disclaimer { font-size: 0.78rem; color: #8c98a4; border-top: 1px solid rgba(255,255,255,.08); margin-top: 40px; padding-top: 22px; max-width: 70ch; }
.footer-copy { font-size: 0.82rem; margin-top: 14px; }
.disclaimer-box { font-size: 0.84rem; color: var(--muted); background: var(--sand); border: 1px solid var(--border-soft); border-radius: var(--radius-sm); padding: 22px; line-height: 1.7; }

/* SECTION 22: SCROLL REVEAL ---------------------------------------------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* SECTION 22b: HERO STAT STRIP ------------------------------------------- */
.statstrip { background: var(--navy-deep); color: #fff; }
.statstrip .container { padding-top: 34px; padding-bottom: 34px; }
.statstrip .stats { gap: 20px; }
.statstrip .stat .big { color: var(--accent-light); font-size: 1.9rem; }
.statstrip .stat .small { color: var(--muted-light); font-size: 0.82rem; letter-spacing: .04em; text-transform: uppercase; }

/* SECTION 22c: MEDIA CARDS (image-topped) -------------------------------- */
.media-card {
  background: var(--white); border: 1px solid var(--border-soft);
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow);
  display: flex; flex-direction: column;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.media-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--border); }
.media-card .thumb { aspect-ratio: 4/3; width: 100%; object-fit: cover; display: block; }
.media-card .body { padding: 26px 26px 30px; display: flex; flex-direction: column; flex: 1; }
.media-card h3 { margin-bottom: 10px; }
.media-card p { font-size: 0.97rem; flex: 1; }
.media-card .arrow { margin-top: 16px; }

/* SECTION 22d: FEATURE SPLIT WITH STAT BADGE ----------------------------- */
.media-frame { position: relative; }
.media-frame img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow-lg); display: block; aspect-ratio: 5/4; object-fit: cover; }
.stat-badge {
  position: absolute; left: 22px; bottom: 22px;
  background: var(--navy-deep); color: #fff; border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius-sm); padding: 16px 20px; box-shadow: var(--shadow-lg);
}
.stat-badge .big { font-family: var(--font-head); font-weight: 700; font-size: 1.7rem; color: var(--accent-light); line-height: 1; }
.stat-badge .small { font-size: 0.78rem; color: var(--muted-light); margin-top: 5px; letter-spacing: .03em; }

/* SECTION 22e: PRICING / PROGRAM PLANS ----------------------------------- */
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; align-items: stretch; }
.plan {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius); padding: 34px 30px; display: flex; flex-direction: column;
}
.plan.featured { background: var(--accent); border-color: var(--accent); box-shadow: var(--shadow-lg); }
.plan.featured h3, .plan.featured .price, .plan.featured li, .plan.featured .plan-tag { color: #fff; }
.plan .plan-tag { font-size: 0.7rem; letter-spacing: .16em; text-transform: uppercase; font-weight: 600; color: var(--accent-light); margin-bottom: 12px; }
.plan h3 { color: #fff; font-size: 1.25rem; }
.plan .price { font-family: var(--font-head); font-weight: 700; font-size: 2rem; color: #fff; margin: 14px 0 4px; }
.plan .price span { font-size: 0.9rem; font-weight: 500; color: var(--muted-light); }
.plan .plan-list { display: grid; gap: 11px; margin: 22px 0 28px; flex: 1; }
.plan .plan-list li { display: flex; gap: 11px; font-size: 0.95rem; color: #e7ecf1; align-items: flex-start; }
.plan .plan-list li::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--accent-light); margin-top: 0.55em; flex-shrink: 0; }
.plan.featured .plan-list li::before { background: #fff; }
.plan .btn { margin-top: auto; }

/* SECTION 22f: CTA BAND (image) ------------------------------------------ */
.cta-band {
  position: relative; color: #fff; text-align: center;
  padding: 96px 0; background-color: var(--navy);
  background-size: cover; background-position: center;
}
.cta-band::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(14,38,56,.72), rgba(11,30,46,.9)); }
.cta-band .container { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; max-width: 20ch; margin: 0 auto; }
.cta-band p { color: var(--muted-light); max-width: 600px; margin: 18px auto 30px; }

/* SECTION 22g: PRODUCT CARDS --------------------------------------------- */
.product-card {
  background: var(--white); border: 1px solid var(--border-soft);
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow);
  display: flex; flex-direction: column; transition: transform .2s, box-shadow .2s;
}
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.product-card .cover {
  aspect-ratio: 16/10; display: flex; align-items: center; justify-content: center; padding: 24px;
  background: linear-gradient(150deg, var(--navy), var(--slate));
  color: var(--accent-light); font-family: var(--font-head); font-weight: 700;
  font-size: 1.05rem; text-align: center; line-height: 1.3;
}
.product-card .body { padding: 22px 22px 26px; display: flex; flex-direction: column; flex: 1; }
.product-card .cat { font-size: 0.68rem; letter-spacing: .15em; text-transform: uppercase; color: var(--accent); font-weight: 600; }
.product-card h3 { font-size: 1.05rem; line-height: 1.3; margin: 8px 0; }
.product-card p { font-size: 0.9rem; flex: 1; }
.product-card .price { font-family: var(--font-head); font-weight: 700; color: var(--navy); margin: 12px 0 16px; font-size: 1.15rem; }

/* SECTION 22h: FOOTER NEWSLETTER ----------------------------------------- */
.footer-news input {
  width: 100%; padding: 13px 14px; border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,.16); background: rgba(255,255,255,.05);
  color: #fff; font-family: var(--font-body); font-size: 0.95rem; margin-bottom: 10px;
}
.footer-news input::placeholder { color: #8c98a4; }
.footer-news .btn { width: 100%; justify-content: center; }



/* SECTION 23: RESPONSIVE -------------------------------------------------- */
@media (max-width: 880px) {
  .nav {
    position: fixed; inset: 0 0 0 auto; width: min(82vw, 330px);
    background: var(--navy-deep); flex-direction: column; align-items: flex-start;
    padding: 96px 30px 30px; gap: 24px; transform: translateX(100%); transition: transform .28s ease;
    box-shadow: var(--shadow-lg);
  }
  .nav.open { transform: none; }
  .nav a { font-size: 1.12rem; }
  .header-cta { display: none; }
  .nav .header-cta { display: inline-flex; margin-top: 10px; }
  .menu-toggle { display: block; }
  .menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle.open span:nth-child(2) { opacity: 0; }
  .menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .grid-2, .grid-3, .steps, .stats, .plans { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .statstrip .stat .big { font-size: 1.55rem; }
  .split { grid-template-columns: 1fr; gap: 32px; }
  .split.reverse-mobile > *:first-child { order: 2; }
  .founder-img { max-height: 460px; aspect-ratio: 4 / 5; object-position: 50% 12%; }
  .article-layout { grid-template-columns: 1fr; }
  .sidebar-card { position: static; }
  .book-row { grid-template-columns: repeat(4, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .section { padding: 68px 0; }
  .hero { min-height: 78vh; }
}
