/* ============ Wordmark ============ */
.wordmark {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--ink);
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  white-space: nowrap;
}
.wordmark .red { color: var(--signal-red); }
.wordmark.inverse { color: var(--white); }
.wordmark.inverse .red { color: var(--glow-red); }

/* ============ Header / Nav ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--hairline);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
  gap: 24px;
}
.nav-links {
  display: flex;
  gap: 32px;
  font-size: 15px;
  color: var(--cool-grey);
  font-weight: 500;
}
.nav-links a:hover { color: var(--signal-red); }
.nav-cta { display: flex; gap: 12px; align-items: center; }

@media (max-width: 880px) {
  .nav-links { display: none; }
  .site-header .container { padding-top: 14px; padding-bottom: 14px; }
}

/* ============ Buttons ============ */
.btn {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: var(--r-sm);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease, color 0.18s ease;
  cursor: pointer;
  text-align: center;
  line-height: 1.1;
}
.btn-primary {
  background: var(--signal-red);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--deep-crimson);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}
.btn-secondary {
  background: var(--white);
  color: var(--signal-red);
  border: 1.5px solid var(--signal-red);
}
.btn-secondary:hover { background: var(--signal-red); color: var(--white); }
.btn-tertiary {
  background: transparent;
  color: var(--ink);
  padding: 14px 4px;
  min-height: auto;
}
.btn-tertiary:hover { color: var(--signal-red); }
.btn-pill { border-radius: var(--r-pill); }
.btn-large { padding: 18px 36px; font-size: 18px; min-height: 56px; }
.btn-block { width: 100%; }
.btn-row { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }

/* ============ Hero ============ */
.hero {
  padding: 96px 0 80px;
  text-align: center;
  background:
    radial-gradient(ellipse at top, rgba(176, 33, 26, 0.06) 0%, rgba(255, 255, 255, 0) 60%),
    var(--white);
}
.hero .eyebrow { margin-bottom: 24px; }
.hero h1 {
  font-size: clamp(40px, 6.5vw, 76px);
  margin-bottom: 24px;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}
.hero h1 .underline { color: var(--signal-red); }
.hero .sub {
  font-size: clamp(18px, 2vw, 22px);
  color: var(--cool-grey);
  max-width: 720px;
  margin: 0 auto 36px;
  line-height: 1.5;
}
.hero .btn-row { justify-content: center; }
.hero .trust-row {
  margin-top: 32px;
  display: flex;
  justify-content: center;
  gap: 24px 32px;
  flex-wrap: wrap;
  color: var(--cool-grey);
  font-size: 14px;
}
.hero .trust-row span { display: inline-flex; align-items: center; gap: 8px; }
.hero .trust-row span::before {
  content: "";
  width: 7px; height: 7px;
  background: var(--forest);
  border-radius: 50%;
  flex-shrink: 0;
}
@media (max-width: 640px) {
  .hero { padding: 64px 0 56px; }
  .hero .trust-row { gap: 12px 20px; font-size: 13px; }
}

/* ============ Hero — workshop-specific helpers ============ */
.hero-price-note {
  margin-top: 18px;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--cool-grey);
  letter-spacing: 0.02em;
}

/* ============ "What you get" value note ============ */
.value-note {
  margin-top: 32px;
  text-align: center;
  font-size: 16px;
  color: var(--cool-grey);
  max-width: 720px;
}
.value-note strong { color: var(--ink); }

/* ============ Price card checkout note ============ */
.checkout-note {
  margin-top: 16px;
  font-size: 13px;
  color: var(--cool-grey);
  line-height: 1.5;
}

/* ============ Composite case-study cards ============ */
.case-studies {
  display: grid;
  gap: 32px;
  max-width: 1080px;
  margin: 0 auto;
  text-align: left;
}
.case-study {
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
  padding: 40px;
  display: grid;
  gap: 28px;
}
.case-header {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 20px;
  align-items: start;
}
.case-icon {
  width: 64px;
  height: 64px;
  background: rgba(176, 33, 26, 0.08);
  color: var(--signal-red);
  border-radius: var(--r-md);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.case-icon svg { width: 28px; height: 28px; }
.case-eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--signal-red);
  margin-bottom: 8px;
}
.case-study h3 {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 10px;
}
.case-takeaway {
  font-size: 16px;
  color: var(--cool-grey);
  font-weight: 500;
  line-height: 1.5;
}

.case-body {
  display: grid;
  grid-template-columns: 1fr 48px 1fr;
  gap: 16px;
  align-items: stretch;
}
.case-col {
  padding: 24px;
  border-radius: var(--r-md);
  background: var(--bone);
}
.case-col.before { border-left: 4px solid var(--cool-grey); }
.case-col.after  { border-left: 4px solid var(--forest); }
.case-col-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.case-col.before .case-col-label { color: var(--cool-grey); }
.case-col.after  .case-col-label { color: var(--forest); }
.case-col ul {
  display: grid;
  gap: 10px;
  list-style: none;
  padding-left: 0;
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--ink);
}
.case-col ul li { padding-left: 18px; position: relative; }
.case-col.before ul li::before {
  content: "−";
  position: absolute;
  left: 0;
  top: -2px;
  color: var(--cool-grey);
  font-weight: 700;
  font-size: 18px;
}
.case-col.after ul li::before {
  content: "+";
  position: absolute;
  left: 0;
  top: -2px;
  color: var(--forest);
  font-weight: 700;
  font-size: 18px;
}

.case-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--signal-red);
}
.case-arrow svg { width: 32px; height: 32px; }

.case-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 24px 0;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.case-metric { text-align: center; }
.case-metric .metric-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(28px, 3vw, 36px);
  color: var(--signal-red);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.case-metric .metric-label {
  font-size: 13px;
  color: var(--cool-grey);
  line-height: 1.35;
}

.case-projects {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}
.case-projects-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cool-grey);
  margin-right: 4px;
}
.project-pill {
  font-size: 13px;
  font-weight: 500;
  color: var(--signal-red);
  background: rgba(176, 33, 26, 0.08);
  padding: 6px 12px;
  border-radius: var(--r-pill);
}

@media (max-width: 880px) {
  .case-study { padding: 28px; }
  .case-body { grid-template-columns: 1fr; }
  .case-arrow { transform: rotate(90deg); padding: 8px 0; }
}
@media (max-width: 640px) {
  .case-metrics { grid-template-columns: 1fr; gap: 12px; }
  .case-header { grid-template-columns: 56px 1fr; gap: 14px; }
  .case-icon { width: 56px; height: 56px; }
  .case-icon svg { width: 24px; height: 24px; }
  .case-study h3 { font-size: 20px; }
}

/* ============ Before / After — "Your Monday" two-column ============ */
.before-after-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 1080px;
  margin: 0 auto;
  text-align: left;
}
.before-after-col {
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
  padding: 32px;
}
.before-after-col.before { border-left: 4px solid var(--cool-grey); }
.before-after-col.after  { border-left: 4px solid var(--forest); }
.before-after-col .col-label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.before-after-col.before .col-label { color: var(--cool-grey); }
.before-after-col.after  .col-label { color: var(--forest); }
.before-after-col .col-headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  margin-bottom: 24px;
  line-height: 1.2;
}
.timeline-row {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--hairline);
  font-size: 15px;
  line-height: 1.5;
}
.timeline-row:last-child { border-bottom: none; }
.timeline-row .time {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--signal-red);
  font-weight: 500;
  letter-spacing: 0.02em;
}
.before-after-col.before .timeline-row .time { color: var(--cool-grey); }
.proof-disclaimer {
  margin-top: 28px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-align: center;
  color: var(--cool-grey);
  text-transform: uppercase;
}
@media (max-width: 760px) {
  .before-after-grid { grid-template-columns: 1fr; }
  .before-after-col { padding: 24px; }
  .timeline-row { grid-template-columns: 56px 1fr; gap: 10px; font-size: 14px; }
}

/* ============ "Who it's for / not for" two-column ============ */
.who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
  text-align: left;
}
.who-card {
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
  padding: 32px;
}
.who-card.who-for { border-left: 4px solid var(--forest); }
.who-card.who-not { border-left: 4px solid var(--signal-red); }
.who-card .who-label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.who-card.who-for .who-label { color: var(--forest); }
.who-card.who-not .who-label { color: var(--signal-red); }
.who-card ul {
  display: grid;
  gap: 12px;
  font-size: 16px;
  line-height: 1.5;
  padding-left: 0;
  list-style: none;
}
.who-card.who-for ul li { padding-left: 28px; position: relative; }
.who-card.who-for ul li::before {
  content: "✓";
  position: absolute; left: 0; top: 0;
  color: var(--forest); font-weight: 700; font-size: 18px;
}
.who-card.who-not ul li { padding-left: 28px; position: relative; }
.who-card.who-not ul li::before {
  content: "✗";
  position: absolute; left: 0; top: 0;
  color: var(--signal-red); font-weight: 700; font-size: 18px;
}
@media (max-width: 760px) {
  .who-grid { grid-template-columns: 1fr; }
  .who-card { padding: 24px; }
}

/* ============ Section heading helper ============
   Default: CENTERED to match hero rhythm.
   Add .left modifier for the rare case left-alignment is wanted. */
.section-head {
  margin: 0 auto 48px;
  max-width: 760px;
  text-align: center;
}
.section-head h2 { margin-bottom: 16px; }
.section-head .eyebrow { margin-bottom: 16px; }
.section-head .lede { margin-inline: auto; }
.section-head.center { /* legacy, no-op */ }
.section-head.left { text-align: left; margin-inline: 0; }

/* ============ Pain agitation list ============ */
.pain-list {
  display: grid;
  gap: 16px;
  max-width: 760px;
  margin: 0 auto 32px;
}
.pain-list li {
  background: var(--white);
  border: 1px solid var(--hairline);
  border-left: 4px solid var(--signal-red);
  padding: 20px 24px;
  border-radius: var(--r-md);
  font-size: 18px;
  line-height: 1.5;
  text-align: left;
}
.pain-callout {
  background: var(--ink);
  color: var(--white);
  border-radius: var(--r-lg);
  padding: 32px;
  margin: 32px auto 0;
  max-width: 760px;
  font-size: 19px;
  line-height: 1.55;
  text-align: left;
}
.pain-callout strong { color: var(--glow-red); }

/* ============ Imagine list (promise / outcomes) ============ */
.imagine-list {
  display: grid;
  gap: 0;
  max-width: 820px;
  margin: 0 auto;
  list-style: none;
  padding-left: 0;
  text-align: left;
}
.imagine-list li {
  position: relative;
  padding: 20px 0 20px 40px;
  border-bottom: 1px solid var(--hairline);
  font-size: 18px;
  line-height: 1.55;
}
.imagine-list li:last-child { border-bottom: none; }
.imagine-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  top: 20px;
  font-family: var(--font-display);
  color: var(--signal-red);
  font-weight: 700;
  font-size: 22px;
  line-height: 1.45;
}

/* ============ 4-layer framework diagram ============ */
.framework-flow {
  display: grid;
  grid-template-columns: 1fr 32px 1fr 32px 1fr 32px 1fr;
  gap: 12px;
  align-items: stretch;
  max-width: 1120px;
  margin: 0 auto;
}
.flow-card {
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
  transition: transform 0.2s, box-shadow 0.2s;
}
.flow-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}
.flow-card .flow-num {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--signal-red);
}
.flow-card .flow-icon {
  width: 36px;
  height: 36px;
  color: var(--signal-red);
  margin-bottom: 4px;
}
.flow-card .flow-icon svg { width: 100%; height: 100%; }
.flow-card h4 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0;
}
.flow-card .flow-desc {
  font-size: 14px;
  color: var(--cool-grey);
  line-height: 1.5;
}
.flow-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--signal-red);
}
.flow-arrow svg { width: 20px; height: 20px; }

@media (max-width: 1024px) {
  .framework-flow {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .flow-arrow { display: none; }
}
@media (max-width: 520px) {
  .framework-flow { grid-template-columns: 1fr; }
}

/* ============ Starter Pack — stylized "Project" preview mockup ============ */
.project-mockup {
  max-width: 980px;
  margin: 56px auto 0;
}
.mockup-frame {
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.10);
  text-align: left;
}
.mockup-titlebar {
  background: #f3efe9;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 7px;
  border-bottom: 1px solid var(--hairline);
}
.mockup-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #d8d3cb;
}
.mockup-url {
  margin-left: 16px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--cool-grey);
  letter-spacing: 0.02em;
}
.mockup-body {
  display: grid;
  grid-template-columns: 220px 1fr;
  min-height: 380px;
}
.mockup-sidebar {
  background: var(--bone);
  padding: 24px 16px;
  border-right: 1px solid var(--hairline);
}
.mockup-sidebar-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--cool-grey);
  margin-bottom: 14px;
  text-transform: uppercase;
}
.mockup-list {
  display: grid;
  gap: 4px;
}
.mockup-item {
  font-size: 13px;
  padding: 7px 10px;
  border-radius: 6px;
  color: var(--cool-grey);
  display: flex;
  align-items: center;
  gap: 8px;
}
.mockup-item .item-bullet {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cool-grey);
  flex-shrink: 0;
}
.mockup-item.active {
  background: rgba(176, 33, 26, 0.08);
  color: var(--signal-red);
  font-weight: 600;
}
.mockup-item.active .item-bullet { background: var(--signal-red); }
.mockup-item.more {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--cool-grey);
  margin-top: 8px;
  padding-left: 24px;
}
.mockup-main {
  padding: 28px 28px 24px;
}
.mockup-main h5 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 18px;
}
.mockup-section { margin-bottom: 20px; }
.mockup-section:last-child { margin-bottom: 0; }
.mockup-section-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--cool-grey);
  margin-bottom: 8px;
  text-transform: uppercase;
}
.mockup-quote {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink);
  background: var(--bone);
  padding: 14px 16px;
  border-left: 3px solid var(--signal-red);
  border-radius: 0 6px 6px 0;
  line-height: 1.55;
}
.mockup-files {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.mockup-file {
  font-family: var(--font-mono);
  font-size: 11px;
  background: var(--bone);
  padding: 5px 11px;
  border-radius: var(--r-pill);
  color: var(--ink);
  border: 1px solid var(--hairline);
}
.mockup-prompt {
  font-size: 14px;
  color: var(--ink);
  font-style: italic;
  background: var(--white);
  border: 1px solid var(--hairline);
  padding: 14px 16px;
  border-radius: 8px;
  line-height: 1.5;
}
.mockup-caption {
  margin-top: 24px;
  font-size: 15px;
  color: var(--cool-grey);
  text-align: center;
  line-height: 1.6;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 760px) {
  .mockup-body { grid-template-columns: 1fr; min-height: auto; }
  .mockup-sidebar {
    border-right: none;
    border-bottom: 1px solid var(--hairline);
  }
  .mockup-main { padding: 20px; }
}

/* ============ Card icons (top of method-card) ============ */
.card-icon {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(176, 33, 26, 0.08);
  border-radius: var(--r-md);
  color: var(--signal-red);
  margin-bottom: 20px;
}
.card-icon svg {
  width: 24px;
  height: 24px;
}

/* ============ Big-number stat display (e.g., 96% vs 4%) ============ */
.stat-display {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 32px;
  align-items: center;
  max-width: 760px;
  margin: 0 auto 32px;
  padding: 32px 0;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.stat-block { text-align: center; }
.stat-block .stat-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(72px, 11vw, 128px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  margin-bottom: 8px;
}
.stat-block.muted .stat-num { color: var(--cool-grey); }
.stat-block.accent .stat-num { color: var(--signal-red); }
.stat-block .stat-label {
  font-size: 15px;
  color: var(--cool-grey);
  line-height: 1.4;
}
.stat-divider {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--cool-grey);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
@media (max-width: 640px) {
  .stat-display {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 24px 0;
  }
  .stat-divider { padding: 8px 0; }
}

/* ============ Dark section variant ============ */
section.dark {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.78);
}
section.dark .section-head h2 { color: var(--white); }
section.dark .section-head h2 .accent { color: var(--glow-red); }
section.dark .section-head .lede { color: rgba(255, 255, 255, 0.65); }
section.dark .section-head .eyebrow {
  background: rgba(255, 77, 67, 0.12);
  color: var(--glow-red);
}

/* ============ Tools strip (Built for these tools) ============ */
.tool-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 880px;
  margin: 0 auto;
}
.tool-mark {
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: var(--r-md);
  padding: 28px 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}
.tool-mark:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(255, 77, 67, 0.18);
}
section.dark .tool-mark {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.08);
}
section.dark .tool-mark:hover { background: rgba(255, 255, 255, 0.06); }
section.dark .tool-mark .tool-name { color: var(--white); }
section.dark .tool-mark .tool-role { color: rgba(255, 255, 255, 0.5); }
.tool-mark .tool-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tool-mark .tool-icon svg { width: 100%; height: 100%; }
.tool-mark .tool-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.tool-mark .tool-role {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--cool-grey);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
@media (max-width: 760px) {
  .tool-strip {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

/* ============ Method cards (4-layer) ============ */
.method-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.method-card {
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
  padding: 32px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.method-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.method-card .num {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--signal-red);
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}
.method-card h4 { margin-bottom: 12px; }
.method-card p { font-size: 15px; color: var(--cool-grey); line-height: 1.55; }

/* ============ Curriculum modules ============ */
.modules { display: grid; gap: 16px; text-align: left; }
.module {
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: var(--r-md);
  padding: 24px 28px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: start;
}
.module .tag {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--signal-red);
  background: rgba(176, 33, 26, 0.08);
  padding: 4px 10px;
  border-radius: var(--r-pill);
  letter-spacing: 0.05em;
  white-space: nowrap;
  align-self: start;
  margin-top: 4px;
}
.module h4 { font-size: 20px; margin-bottom: 6px; }
.module p { font-size: 15px; color: var(--cool-grey); line-height: 1.5; }
@media (max-width: 640px) {
  .module { grid-template-columns: 1fr; gap: 12px; padding: 20px; }
}

/* ============ Bonus projects grid ============ */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
  margin-top: 32px;
}
.project-tile {
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: var(--r-md);
  padding: 20px;
  position: relative;
}
.project-tile .ticker {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--signal-red);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.project-tile h5 { font-family: var(--font-display); font-size: 18px; font-weight: 700; margin-bottom: 6px; }
.project-tile p { font-size: 14px; color: var(--cool-grey); line-height: 1.5; }
.project-tile.more {
  background: var(--bone);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--signal-red);
  font-size: 18px;
}

/* ============ Social proof / testimonials ============ */
.proof-note {
  background: var(--bone);
  border-radius: var(--r-lg);
  padding: 32px;
  border-left: 4px solid var(--signal-red);
  max-width: 760px;
  margin: 0 auto;
  text-align: left;
}
.proof-note .label {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--signal-red);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 12px;
}
.proof-note p { font-size: 17px; line-height: 1.6; color: var(--ink); }

/* ============ Pricing ============ */
.pricing-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 720px;
  margin: 0 auto;
}
.price-card {
  background: var(--white);
  border: 2px solid var(--signal-red);
  border-radius: var(--r-lg);
  padding: 40px;
  text-align: center;
  position: relative;
}
.price-card .ribbon {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--signal-red);
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: var(--r-pill);
  white-space: nowrap;
}
.price-card .price-name { font-family: var(--font-display); font-weight: 700; font-size: 22px; margin-bottom: 8px; }
.price-card .price-value {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 64px;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 8px;
}
.price-card .price-value .strike {
  font-size: 24px;
  color: var(--cool-grey);
  text-decoration: line-through;
  font-weight: 600;
  margin-left: 8px;
  vertical-align: middle;
}
.price-card .price-note { color: var(--cool-grey); font-size: 15px; margin-bottom: 28px; }
.price-card ul.includes {
  text-align: left;
  margin: 0 0 32px;
  display: grid;
  gap: 12px;
}
.price-card ul.includes li {
  font-size: 16px;
  padding-left: 28px;
  position: relative;
  line-height: 1.5;
}
.price-card ul.includes li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--forest);
  font-weight: 700;
  font-size: 18px;
}
.upsell {
  background: var(--bone);
  border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
  padding: 28px;
  text-align: center;
  max-width: 720px;
  margin: 24px auto 0;
}
.upsell h4 { font-size: 18px; margin-bottom: 8px; }
.upsell p { font-size: 15px; color: var(--cool-grey); margin-bottom: 16px; }

/* ============ Guarantee badge ============ */
.guarantee {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--bone);
  border-radius: var(--r-lg);
  padding: 28px;
  max-width: 720px;
  margin: 32px auto 0;
  border: 1px solid var(--hairline);
}
.guarantee .seal {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--forest);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 13px;
  text-align: center;
  line-height: 1.05;
  flex-shrink: 0;
  letter-spacing: -0.02em;
}
.guarantee h4 { margin-bottom: 6px; font-size: 18px; }
.guarantee p { font-size: 15px; color: var(--cool-grey); line-height: 1.55; }

/* ============ FAQ ============ */
.faq-list { display: grid; gap: 12px; max-width: 820px; margin: 0 auto; text-align: left; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: var(--r-md);
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 24px 28px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  color: var(--signal-red);
  font-size: 28px;
  font-weight: 400;
  line-height: 1;
  transition: transform 0.2s;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item .answer { padding: 0 28px 24px; color: var(--cool-grey); font-size: 16px; line-height: 1.65; }

/* ============ Final CTA ============ */
.final-cta {
  background: var(--ink);
  color: var(--white);
  text-align: center;
  padding: 96px 0;
}
.final-cta h2 { color: var(--white); margin-bottom: 24px; }
.final-cta h2 .accent { color: var(--glow-red); }
.final-cta p { color: rgba(255, 255, 255, 0.75); max-width: 600px; margin: 0 auto 32px; font-size: 18px; }
.final-cta .btn-primary { background: var(--signal-red); }
.final-cta .btn-primary:hover { background: var(--glow-red); color: var(--ink); }
@media (max-width: 640px) {
  .final-cta { padding: 64px 0; }
}

/* ============ Footer ============ */
.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.55);
  padding: 56px 0 40px;
  font-size: 14px;
  border-top: 1px solid #2a2a2a;
}
.site-footer .footer-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  margin-bottom: 40px;
}
.site-footer .red-bar { width: 40px; height: 3px; background: var(--signal-red); margin-bottom: 16px; }
.site-footer .wordmark { font-size: 22px; margin-bottom: 8px; }
.site-footer .tagline { color: rgba(255, 255, 255, 0.55); font-size: 14px; margin-bottom: 12px; }
.site-footer .domain { font-family: var(--font-mono); font-size: 13px; color: var(--glow-red); }
.site-footer nav { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.site-footer nav h5 { color: var(--white); font-family: var(--font-display); font-size: 14px; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.08em; }
.site-footer nav a { display: block; padding: 6px 0; color: rgba(255, 255, 255, 0.55); }
.site-footer nav a:hover { color: var(--glow-red); }
.site-footer .legal {
  border-top: 1px solid #2a2a2a;
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  justify-content: space-between;
  font-size: 13px;
}
@media (max-width: 760px) {
  .site-footer .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .site-footer nav { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}

/* Anchor scroll-padding so sticky header doesn't clip section headings
   when arriving via Google Ads sitelinks / nav clicks. */
section[id] { scroll-margin-top: 88px; }

/* ============ Sticky mobile CTA ============ */
.sticky-mobile-cta {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: var(--white);
  border-top: 1px solid var(--hairline);
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  z-index: 60;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
}
.sticky-mobile-cta .btn { width: 100%; }
@media (max-width: 760px) {
  .sticky-mobile-cta { display: block; }
  /* Only apply bottom padding when a sticky CTA is actually in the DOM
     (otherwise legal/thank-you/primer pages get phantom whitespace). */
  body:has(.sticky-mobile-cta) { padding-bottom: 84px; }
}

/* ============ Form (primer / generic) ============ */
.form-card {
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
  padding: 32px;
  max-width: 460px;
  margin: 0 auto;
  text-align: left;
  box-shadow: var(--shadow-card);
}
.form-card label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--ink);
}
.form-card input[type="email"],
.form-card input[type="text"] {
  width: 100%;
  padding: 14px 16px;
  font-size: 16px;
  font-family: var(--font-body);
  border: 1.5px solid var(--hairline);
  border-radius: var(--r-sm);
  background: var(--white);
  color: var(--ink);
  margin-bottom: 16px;
  min-height: 48px;
  transition: border-color 0.15s;
}
.form-card input:focus { outline: none; border-color: var(--signal-red); }
.form-card .fine-print { font-size: 12px; color: var(--cool-grey); margin-top: 12px; line-height: 1.5; }

/* ============ 404 / generic centered ============ */
.center-stack {
  min-height: calc(100vh - 200px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 64px 24px;
}
.center-stack .eyebrow { margin-bottom: 24px; }
.center-stack h1 { margin-bottom: 20px; max-width: 720px; }
.center-stack p { max-width: 560px; margin: 0 auto 28px; color: var(--cool-grey); font-size: 19px; }

/* ============ Long-form / legal pages ============ */
.legal-body { padding: 64px 0; }
.legal-body h1 { font-size: clamp(36px, 5vw, 56px); margin-bottom: 12px; }
.legal-body .meta { font-family: var(--font-mono); font-size: 13px; color: var(--cool-grey); margin-bottom: 40px; }
.legal-body h2 { font-size: 24px; margin: 40px 0 12px; }
.legal-body p, .legal-body li { font-size: 17px; color: var(--ink); line-height: 1.7; margin-bottom: 12px; }
.legal-body ul { padding-left: 24px; margin-bottom: 16px; list-style: disc; }
.legal-body a { color: var(--signal-red); text-decoration: underline; }

/* ============ Value stack (v3) ============ */
.value-stack {
  max-width: 880px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.value-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 20px 28px;
  border-bottom: 1px solid var(--hairline);
}
.value-row:last-child { border-bottom: none; }
.value-row .value-item { font-size: 16px; color: var(--ink); line-height: 1.5; }
.value-row .value-price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--cool-grey);
  white-space: nowrap;
}
.value-row.featured { background: rgba(176, 33, 26, 0.04); }
.value-row.featured .value-price { color: var(--signal-red); }
.value-row.total {
  background: var(--bone);
  border-top: 2px solid var(--ink);
}
.value-row.total .value-price { color: var(--cool-grey); font-size: 22px; text-decoration: line-through; }
.value-row.pay { background: var(--ink); }
.value-row.pay .value-item, .value-row.pay .value-price { color: var(--white); font-size: 22px; }
.value-row.pay .value-price { font-size: 28px; color: var(--glow-red); }
@media (max-width: 640px) {
  .value-row { grid-template-columns: 1fr; gap: 8px; padding: 16px 20px; }
  .value-row .value-price { font-size: 16px; }
  .value-row.pay .value-price { font-size: 24px; }
}

/* ============ Host block (v3) ============ */
.host-block {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 56px;
  align-items: start;
  max-width: 1080px;
  margin: 0 auto;
}
.host-photo { position: sticky; top: 32px; }
.host-photo-frame {
  width: 100%;
  aspect-ratio: 4 / 5;
  background: var(--white);
  border: 1px dashed var(--hairline);
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.host-photo-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cool-grey);
  text-align: center;
}
.host-bio p { font-size: 17px; line-height: 1.7; color: var(--ink); margin-bottom: 16px; }
.host-bio strong { color: var(--ink); }
.host-bio em { color: var(--signal-red); font-style: italic; }
.host-bio .pain-list { margin: 8px 0 20px; }
.host-sign {
  margin-top: 24px;
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--ink);
}
.host-title {
  display: block;
  margin-top: 4px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--cool-grey);
  font-weight: 400;
}
.host-links { margin-top: 16px; }
.host-links a {
  color: var(--signal-red);
  text-decoration: underline;
  font-weight: 600;
  font-size: 15px;
}
.host-trust {
  max-width: 1080px;
  margin: 56px auto 0;
  padding-top: 32px;
  border-top: 1px solid var(--hairline);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.host-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.host-trust-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cool-grey);
  margin-right: 4px;
}
.host-trust-pill {
  display: inline-block;
  padding: 6px 14px;
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: var(--r-pill);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  color: var(--ink);
}
@media (max-width: 880px) {
  .host-block { grid-template-columns: 1fr; gap: 32px; }
  .host-photo { position: relative; top: auto; max-width: 280px; margin: 0 auto; }
}

/* ============ Countdown (calldp-style) ============ */
.countdown {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  max-width: 520px;
  margin: 32px auto 24px;
}
.cd-cell {
  background: var(--ink);
  color: var(--white);
  border-radius: var(--r-md);
  padding: 18px 10px 14px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.cd-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(28px, 5vw, 40px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--glow-red);
  font-variant-numeric: tabular-nums;
}
.cd-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}
@media (max-width: 520px) {
  .countdown { gap: 8px; }
  .cd-cell { padding: 14px 6px 10px; }
}

/* ============ Event details + timezone strip ============ */
.event-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 920px;
  margin: 0 auto 40px;
}
.event-col {
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
  padding: 32px;
  box-shadow: var(--shadow-card);
}
.event-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--signal-red);
  margin-bottom: 12px;
}
.event-col h3 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--ink);
}
.event-col p { font-size: 16px; color: var(--ink); line-height: 1.55; margin-bottom: 6px; }
.event-col .event-meta {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--cool-grey);
  margin-top: 10px;
}
.timezone-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  max-width: 920px;
  margin: 0 auto 32px;
}
.tz-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: var(--r-pill);
  padding: 10px 18px;
  box-shadow: var(--shadow-card);
}
.tz-label {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--signal-red);
}
.tz-time {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  color: var(--ink);
}
.event-cta { text-align: center; }
@media (max-width: 720px) {
  .event-grid { grid-template-columns: 1fr; gap: 16px; }
  .event-col { padding: 24px; }
}

/* ============ Arrow list (Pratik-style problem bullets) ============ */
.arrow-list {
  max-width: 760px;
  margin: 24px auto 0;
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.arrow-list li {
  position: relative;
  padding-left: 32px;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
}
.arrow-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--signal-red);
  font-weight: 700;
  font-size: 20px;
}

/* ============ Outcome list (6 numbered items) ============ */
.outcome-list {
  max-width: 920px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.outcome-item {
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
  padding: 28px;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 20px;
  align-items: start;
  box-shadow: var(--shadow-card);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.outcome-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}
.outcome-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 40px;
  line-height: 1;
  color: var(--signal-red);
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
}
.outcome-body h4 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--ink);
}
.outcome-body p { font-size: 15px; line-height: 1.6; color: var(--cool-grey); }
@media (max-width: 760px) {
  .outcome-list { grid-template-columns: 1fr; }
  .outcome-item { padding: 22px; grid-template-columns: 48px 1fr; gap: 14px; }
  .outcome-num { font-size: 32px; }
}

/* ============ Compare table (Old way vs AI workflow way) ============ */
.compare-table {
  max-width: 1080px;
  margin: 0 auto 32px;
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.compare-head, .compare-row {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1.4fr;
}
.compare-head {
  background: var(--ink);
  color: var(--white);
}
.compare-head > div {
  padding: 16px 20px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
}
.compare-row { border-top: 1px solid var(--hairline); }
.compare-row > div { padding: 20px; font-size: 15px; line-height: 1.5; }
.cmp-task { font-family: var(--font-display); font-weight: 700; color: var(--ink); }
.cmp-old { color: var(--cool-grey); background: rgba(85, 85, 85, 0.03); }
.cmp-new { color: var(--ink); background: rgba(31, 122, 58, 0.05); }
.cmp-old .x { color: var(--cool-grey); font-weight: 700; margin-right: 6px; }
.cmp-new .ok { color: var(--forest); font-weight: 700; margin-right: 6px; }
.compare-summary {
  max-width: 760px;
  margin: 32px auto 0;
  text-align: center;
}
.cs-headline {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(20px, 3vw, 26px);
  color: var(--ink);
  padding: 16px 28px;
  background: var(--bone);
  border-radius: var(--r-pill);
}
@media (max-width: 760px) {
  .compare-head, .compare-row { grid-template-columns: 1fr; }
  .compare-head > div:not(:first-child) { display: none; }
  .compare-row > div { padding: 14px 18px; }
  .cmp-task { background: var(--bone); }
}

/* ============ Video block ============ */
.video-block {
  max-width: 880px;
  margin: 0 auto;
}
.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--ink);
  border-radius: var(--r-lg);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-card);
}
.video-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(176, 33, 26, 0.18), transparent 60%);
}
.video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-play {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: var(--signal-red);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 32px rgba(176, 33, 26, 0.4);
  transition: transform 0.15s ease;
}
.video-play svg { width: 38px; height: 38px; margin-left: 4px; }
.video-frame:hover .video-play { transform: scale(1.08); }
.video-tag {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  background: rgba(0, 0, 0, 0.4);
  padding: 6px 12px;
  border-radius: var(--r-sm);
  white-space: nowrap;
}
.video-caption {
  text-align: center;
  margin-top: 20px;
  font-size: 16px;
  color: var(--cool-grey);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* ============ Persona grid (5 buyer types) ============ */
.persona-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  max-width: 1120px;
  margin: 0 auto;
}
.persona-card {
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.persona-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}
.persona-icon {
  font-size: 40px;
  margin-bottom: 12px;
  line-height: 1;
}
.persona-card h4 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--ink);
}
.persona-card p { font-size: 14px; line-height: 1.55; color: var(--cool-grey); }

/* ============ Checklist (what's included) ============ */
.checklist {
  max-width: 760px;
  margin: 0 auto;
  list-style: none;
  padding: 0;
  display: grid;
  gap: 14px;
}
.checklist li {
  position: relative;
  padding: 16px 16px 16px 52px;
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: var(--r-md);
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink);
}
.checklist li::before {
  content: "✓";
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--forest);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
}

/* ============ Bonus stack ============ */
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1120px;
  margin: 0 auto 40px;
}
.bonus-card {
  background: var(--white);
  border: 2px solid var(--ink);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  box-shadow: var(--shadow-card);
}
.bonus-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: var(--white);
  background: var(--ink);
  padding: 6px 12px;
  border-radius: var(--r-sm);
  align-self: flex-start;
}
.bonus-icon { font-size: 40px; line-height: 1; }
.bonus-card h4 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.25;
}
.bonus-card p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--cool-grey);
  flex-grow: 1;
}
.bonus-foot {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--signal-red);
  letter-spacing: 0.05em;
  padding-top: 12px;
  border-top: 1px dashed var(--hairline);
}
.bonus-total {
  max-width: 720px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.bonus-total-row {
  display: flex;
  justify-content: space-between;
  padding: 16px 24px;
  border-bottom: 1px solid var(--hairline);
  font-size: 16px;
  color: var(--ink);
}
.bonus-total-row:last-child { border-bottom: none; }
.bonus-total-row.total { background: var(--bone); border-top: 2px solid var(--ink); }
.bonus-total-row.total span:last-child { text-decoration: line-through; color: var(--cool-grey); }
.bonus-total-row.pay { background: var(--ink); color: var(--white); font-size: 22px; padding: 22px 24px; }
.bonus-total-row.pay span:last-child { color: var(--glow-red); font-size: 28px; }
@media (max-width: 880px) {
  .bonus-grid { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .bonus-total-row.pay { font-size: 18px; }
  .bonus-total-row.pay span:last-child { font-size: 24px; }
}
