/* Augmented Mind Bootcamp — extends /style.css */

/* ---- Hero adjustments ---- */

.hero--bootcamp {
  padding: 72px 0 40px;
}
.hero--bootcamp h1 {
  font-size: clamp(36px, 6.5vw, 56px);
}
.hero--bootcamp .lede {
  margin-bottom: 16px;
}
.hero--bootcamp .lede--secondary {
  color: var(--ink-muted);
  font-size: clamp(16px, 2vw, 19px);
  margin-bottom: 28px;
}

.eyebrow-link {
  color: var(--accent);
  text-decoration: none;
}
.eyebrow-link:hover { color: var(--accent-hover); text-decoration: underline; }

.hero-cta {
  margin: 28px 0 36px;
  padding: 22px 24px;
  background: var(--paper-alt);
  border: 1px solid var(--rule);
  border-radius: 10px;
}
.price-line {
  margin: 0 0 16px;
  font-size: 16px;
  color: var(--ink);
}

/* ---- Buttons ---- */

.btn {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 8px;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.01em;
  text-decoration: none;
  border: 1px solid transparent;
  transition: background .15s ease, border-color .15s ease, color .15s ease, transform .05s ease;
  cursor: pointer;
}
.btn--primary {
  background: var(--accent);
  color: #fff8ef;
  border-color: var(--accent);
}
.btn--primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  color: #fff8ef;
}
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--rule);
}
.btn--ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.btn--large {
  padding: 14px 28px;
  font-size: 16px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 14px;
  align-items: center;
  margin: 0;
}
.cta-row--center { justify-content: center; }

/* ---- Pain quotes ---- */

.pain-quote {
  margin: 0 0 18px;
  padding: 14px 18px 14px 22px;
  border-left: 3px solid var(--accent);
  background: var(--paper-alt);
  border-radius: 0 8px 8px 0;
}
.section--alt .pain-quote { background: var(--paper); }
.pain-quote p {
  margin: 0;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 18px;
  line-height: 1.55;
  color: var(--ink);
}

/* ---- Weeks list ---- */

.weeks {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  counter-reset: none;
}
.week {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 18px;
  padding: 22px 0;
  border-top: 1px solid var(--rule);
  align-items: baseline;
}
.week:last-child { border-bottom: 1px solid var(--rule); }
.week-meta {
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
}
.week-body h3 {
  margin: 0 0 8px;
  font-family: var(--font-serif);
  font-size: 21px;
  font-weight: 500;
  letter-spacing: -0.01em;
  text-transform: none;
  color: var(--ink);
}
.week-body p {
  margin: 0;
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-muted);
}
@media (max-width: 600px) {
  .week {
    grid-template-columns: 1fr;
    gap: 4px;
  }
  .week-body h3 { font-size: 19px; }
}

/* ---- Bullet/outcome lists ---- */

.outcomes,
.bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}
.outcomes li,
.bullets li {
  padding: 12px 0 12px 22px;
  border-top: 1px solid var(--rule);
  position: relative;
  font-size: 16px;
  line-height: 1.55;
}
.outcomes li:last-child,
.bullets li:last-child {
  border-bottom: 1px solid var(--rule);
}
.outcomes li::before,
.bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 21px;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
}

/* ---- Quotes (testimonials) ---- */

.quote {
  margin: 0 0 16px;
  padding: 0 0 0 22px;
  border-left: 2px solid var(--rule);
}
.quote p {
  margin: 0;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
}

/* ---- Stacked bonuses ---- */

.bonus {
  margin: 0 0 18px;
  padding: 22px 24px 18px;
  border: 1px solid var(--rule);
  border-left: 3px solid var(--accent);
  border-radius: 0 10px 10px 0;
  background: var(--paper-alt);
}
.section--alt .bonus { background: var(--paper); }

.bonus h3 {
  margin: 0 0 10px;
  font-family: var(--font-serif);
  font-size: 21px;
  font-weight: 500;
  letter-spacing: -0.01em;
  text-transform: none;
  color: var(--ink);
}
.bonus p {
  margin: 0 0 10px;
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
}
.bonus-label {
  margin: 0 0 6px !important;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
}
.bonus-value {
  margin: 12px 0 0 !important;
  font-size: 14px !important;
  color: var(--ink-muted) !important;
  font-family: var(--font-mono);
  letter-spacing: .04em;
}
.bonus-value strong { color: var(--accent); }

.bonus--guarantee {
  border-left-color: #2f7d4d;
}
.bonus--guarantee .bonus-label { color: #2f7d4d; }

@media (prefers-color-scheme: dark) {
  .bonus--guarantee { border-left-color: #62c989; }
  .bonus--guarantee .bonus-label { color: #62c989; }
}

.bonus-stack-total {
  margin: 28px 0 36px !important;
  padding: 18px 24px;
  background: var(--paper);
  border: 1px dashed var(--accent);
  border-radius: 8px;
  font-size: 17px;
  text-align: center;
  color: var(--ink);
}
.section--alt .bonus-stack-total { background: var(--paper-alt); }
.bonus-stack-total strong { color: var(--accent); font-weight: 700; }

.dont-need-heading {
  margin-top: 36px !important;
}

/* ---- Pricing card ---- */

.pricing-card {
  border: 1px solid var(--rule);
  border-radius: 12px;
  padding: 28px 28px 24px;
  background: var(--paper-alt);
  margin: 0 0 22px;
}
.section--alt .pricing-card { background: var(--paper); }

.pricing-card__head {
  border-bottom: 1px solid var(--rule);
  padding-bottom: 18px;
  margin-bottom: 18px;
}
.pricing-card__label {
  margin: 0 0 8px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
}
.pricing-card__price {
  margin: 0 0 4px;
  font-family: var(--font-serif);
  font-size: 36px;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.1;
}
.pricing-card__price span {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 400;
  color: var(--ink-muted);
  margin-left: 6px;
}
.pricing-card__alt {
  margin: 0;
  font-size: 14.5px;
  color: var(--ink-muted);
}
.pricing-card__list {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
}
.pricing-card__list li {
  padding: 6px 0 6px 22px;
  position: relative;
  font-size: 15.5px;
  color: var(--ink);
}
.pricing-card__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 6px;
  color: var(--accent);
  font-weight: 700;
}
.pricing-card__note {
  margin: 0 0 18px;
  font-size: 14.5px;
  color: var(--ink-muted);
}
.pricing-club {
  margin: 18px 0 0;
  padding: 18px 22px;
  background: var(--paper-alt);
  border: 1px solid var(--rule);
  border-radius: 10px;
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--ink-muted);
}
.section--alt .pricing-club { background: var(--paper); }
.pricing-club strong { color: var(--ink); }

/* ---- FAQ ---- */

.faq {
  border-top: 1px solid var(--rule);
  padding: 14px 0;
}
.faq:last-of-type { border-bottom: 1px solid var(--rule); }
.faq summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
  padding: 6px 28px 6px 0;
  position: relative;
  list-style: none;
  color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent);
  font-size: 22px;
  line-height: 1;
  transition: transform .15s ease;
}
.faq[open] summary::after {
  content: "−";
}
.faq summary:hover { color: var(--accent); }
.faq p {
  margin: 12px 0 8px;
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--ink);
}

/* ---- Final CTA section ---- */

.section--cta {
  text-align: left;
}
.section--cta .lead {
  font-family: var(--font-serif);
  font-size: 22px;
  letter-spacing: -0.01em;
  margin: 18px 0 28px;
}
.muted--center { text-align: center; }
.section--cta .cta-row { margin-top: 8px; }

.rule {
  border: 0;
  border-top: 1px solid var(--rule);
  margin: 36px 0 24px;
}
.cross-link {
  margin: 0;
  font-size: 15.5px;
  color: var(--ink-muted);
}
.cross-link a { color: var(--ink); }
.cross-link a:hover { color: var(--accent); }

/* ---- Footer link ---- */

.footer a {
  color: var(--ink-muted);
  text-decoration: none;
  border-bottom: 1px dotted var(--rule);
}
.footer a:hover { color: var(--accent); border-bottom-color: var(--accent); }

/* ---- Responsive ---- */

@media (max-width: 520px) {
  .hero--bootcamp { padding: 52px 0 32px; }
  .hero-cta { padding: 18px 18px; }
  .pricing-card { padding: 22px 20px 20px; }
  .pricing-card__price { font-size: 30px; }
}
