/* =========================================================
   The Disease Reversal Community — Landing Page
   Palette pulled from AdaWellMed brand cover (navy + beige)
   ========================================================= */

:root {
  --navy:       #232a42;
  --navy-deep:  #1b2136;
  --cream:      #f4efe7;
  --cream-2:    #ece3d6;
  --beige:      #d8c4ac;
  --brown:      #a97e57;   /* warm accent / buttons */
  --brown-dk:   #8c6644;
  --ink:        #2a2a2a;
  --ink-soft:   #55524d;
  --pos:        #3f7d4f;   /* green = positive */
  --neg:        #c33a3a;   /* red = negative */
  --line:       rgba(255,255,255,0.07);
  --shadow:     0 18px 50px rgba(27,33,54,0.18);
  --radius:     16px;
  --serif: "Playfair Display", Georgia, serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container { width: min(1120px, 92%); margin-inline: auto; }

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

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  background: var(--brown);
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  text-decoration: none;
  transition: transform .15s ease, background .2s ease, box-shadow .2s ease;
  box-shadow: 0 8px 20px rgba(169,126,87,0.35);
}
.btn:hover { background: var(--brown-dk); transform: translateY(-2px); }
.btn--sm { padding: 0.55rem 1.1rem; font-size: 0.9rem; }
.btn--lg { padding: 1.05rem 2.1rem; font-size: 1.1rem; }
.btn--light { background: var(--cream); color: var(--navy); box-shadow: 0 8px 24px rgba(0,0,0,0.25); }
.btn--light:hover { background: #fff; }
.btn--block { display: block; width: 100%; text-align: center; }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(35,42,66,0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; padding: 0.7rem 0; }
.nav__brand { display: flex; align-items: center; gap: 0.6rem; color: var(--cream); text-decoration: none; font-weight: 600; font-size: 0.98rem; }
.nav__logo { width: 38px; height: 38px; border-radius: 50%; background: #fffef9; padding: 2px; }

/* ---------- Hero ---------- */
.hero {
  background:
    linear-gradient(rgba(27,33,54,0.55), rgba(27,33,54,0.55)),
    repeating-linear-gradient(0deg, transparent, transparent 39px, var(--line) 40px),
    repeating-linear-gradient(90deg, transparent, transparent 39px, var(--line) 40px),
    var(--navy);
  color: var(--cream);
  padding: clamp(2.5rem, 6vw, 5rem) 0;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}
.hero__eyebrow {
  display: inline-block;
  background: var(--cream);
  color: var(--navy);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  margin-bottom: 1.1rem;
}
.hero__title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(2.5rem, 6vw, 4.3rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 1.1rem;
}
.hero__title em { font-style: italic; color: var(--beige); }
.hero__sub { font-size: clamp(1.02rem, 1.6vw, 1.2rem); color: #e6ddce; max-width: 34ch; margin-bottom: 1.8rem; }
.hero__cta { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.6rem; }
.hero__cta-note { font-size: 0.9rem; color: #c9bfae; }
.hero__badges { list-style: none; display: flex; gap: 1.4rem; flex-wrap: wrap; font-size: 0.92rem; color: #d9cfbf; }
.hero__art img { border-radius: var(--radius); box-shadow: var(--shadow); }

/* ---------- Results strip ---------- */
.results { background: var(--navy-deep); color: var(--cream); padding: clamp(2.5rem, 5vw, 3.5rem) 0; text-align: center; }
.results__lead { font-family: var(--serif); font-weight: 500; font-size: clamp(1.5rem, 3vw, 2.1rem); margin-bottom: 2rem; }
.pos { color: #7fc490; }
.neg { color: #e07a7a; }
.results__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.stat {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.8rem 1.2rem;
}
.stat__num { display: block; font-family: var(--serif); font-size: clamp(2.2rem, 4vw, 3rem); font-weight: 700; line-height: 1; margin-bottom: 0.6rem; }
.stat__label { font-size: 0.98rem; color: #d9cfbf; }
.results__disclaimer { margin-top: 1.6rem; font-size: 0.82rem; color: #9a9282; }

/* ---------- Generic section ---------- */
.section { padding: clamp(3rem, 7vw, 5rem) 0; }
.section--cream { background: var(--cream-2); }
.section__title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(1.8rem, 3.6vw, 2.7rem);
  text-align: center;
  color: var(--navy);
  margin-bottom: 0.8rem;
}
.section__title--left { text-align: left; }
.section__intro { text-align: center; max-width: 60ch; margin: 0 auto 2.5rem; color: var(--ink-soft); font-size: 1.08rem; }

/* ---------- Conditions chips ---------- */
.conditions { display: flex; flex-wrap: wrap; gap: 0.8rem; justify-content: center; }
.chip {
  background: #fff;
  border: 1.5px solid var(--beige);
  color: var(--navy);
  font-weight: 600;
  padding: 0.7rem 1.3rem;
  border-radius: 999px;
  font-size: 1rem;
  box-shadow: 0 4px 14px rgba(35,42,66,0.06);
}

/* ---------- Cards ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.card {
  background: #fffefb;
  border: 1px solid #e7ddcd;
  border-radius: var(--radius);
  padding: 1.8rem 1.5rem;
  box-shadow: 0 8px 24px rgba(35,42,66,0.05);
  transition: transform .18s ease, box-shadow .18s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 16px 36px rgba(35,42,66,0.12); }
.card__icon { font-size: 1.9rem; display: block; margin-bottom: 0.7rem; }
.card h3 { font-family: var(--serif); font-weight: 600; font-size: 1.25rem; color: var(--navy); margin-bottom: 0.5rem; }
.card p { color: var(--ink-soft); font-size: 0.98rem; }

/* ---------- Bootcamp ---------- */
.bootcamp { background: var(--navy); color: var(--cream); padding: clamp(3rem, 7vw, 5rem) 0; }
.bootcamp__head { text-align: center; max-width: 64ch; margin: 0 auto 2.6rem; }
.bootcamp__head h2 { font-family: var(--serif); font-weight: 600; font-size: clamp(1.8rem, 3.6vw, 2.7rem); margin: 0.9rem 0 1rem; }
.bootcamp__lead { color: #e0d7c8; font-size: 1.06rem; }
.tag { display: inline-block; font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; padding: 0.35rem 0.85rem; border-radius: 999px; }
.tag--program { background: var(--brown); color: #fff; }

.bootcamp__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.3rem; }
.bc-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  text-align: center;
  padding-bottom: 1.1rem;
  position: relative;
  transition: transform .18s ease, box-shadow .18s ease;
}
.bc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.bc-card img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.bc-card h3 { font-family: var(--serif); font-weight: 600; font-size: 1.2rem; margin-top: 0.9rem; }
.bc-card--live { border-color: #7fc490; box-shadow: 0 0 0 2px rgba(127,196,144,0.35); }
.bc-card__badge {
  position: absolute; top: 0.8rem; left: 0.8rem; z-index: 2;
  background: var(--pos); color: #fff;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.03em;
  padding: 0.3rem 0.7rem; border-radius: 999px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

.bootcamp__cta { text-align: center; margin-top: 2.6rem; }
.bootcamp__cta p { color: #e6ddce; margin-bottom: 1.1rem; font-size: 1.05rem; }

/* ---------- About ---------- */
.about { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(1.6rem, 4vw, 3rem); align-items: center; }
.about__text p { margin-bottom: 1rem; color: var(--ink-soft); font-size: 1.05rem; }
.about__img img { border-radius: var(--radius); box-shadow: var(--shadow); }

/* ---------- Membership tiers ---------- */
.tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; align-items: stretch; }
.tier {
  display: flex; flex-direction: column;
  background: #fffefb;
  border: 1px solid #e7ddcd;
  border-radius: var(--radius);
  padding: 2rem 1.6rem;
  box-shadow: 0 8px 24px rgba(35,42,66,0.05);
}
.tier__name { font-family: var(--serif); font-weight: 600; font-size: 1.5rem; color: var(--navy); }
.tier__price { margin: 0.5rem 0 0.2rem; color: var(--navy); }
.tier__amt { font-family: var(--serif); font-size: 2.6rem; font-weight: 700; line-height: 1; }
.tier__per { font-size: 1rem; color: var(--ink-soft); }
.tier__tag { font-size: 0.92rem; color: var(--brown-dk); font-weight: 600; margin-bottom: 1.2rem; }
.tier__list { list-style: none; margin: 0 0 1.6rem; flex: 1; }
.tier__list li { position: relative; padding-left: 1.7rem; margin-bottom: 0.65rem; color: var(--ink-soft); font-size: 0.97rem; }
.tier__list li::before { content: "✓"; position: absolute; left: 0; top: 0.05rem; color: var(--pos); font-weight: 700; }

/* Featured (Premium) */
.tier--featured {
  background: var(--navy);
  border-color: var(--navy);
  position: relative;
  box-shadow: 0 20px 46px rgba(27,33,54,0.28);
  transform: translateY(-8px);
}
.tier--featured .tier__name,
.tier--featured .tier__price { color: var(--cream); }
.tier--featured .tier__per { color: #c9bfae; }
.tier--featured .tier__tag { color: var(--beige); }
.tier--featured .tier__list li { color: #e0d7c8; }
.tier--featured .tier__list li::before { color: #7fc490; }
.tier__ribbon {
  position: absolute; top: -0.85rem; left: 50%; transform: translateX(-50%);
  background: var(--brown); color: #fff;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 0.35rem 1rem; border-radius: 999px; white-space: nowrap;
  box-shadow: 0 6px 16px rgba(169,126,87,0.4);
}

/* VIP accent */
.tier--vip { border-color: var(--beige); border-width: 1.5px; }
.tier--vip .tier__amt { color: var(--brown-dk); }

.tiers__note { text-align: center; margin-top: 1.8rem; font-size: 0.9rem; color: var(--ink-soft); }

/* ---------- Final CTA ---------- */
.finalcta {
  background:
    repeating-linear-gradient(0deg, transparent, transparent 39px, var(--line) 40px),
    repeating-linear-gradient(90deg, transparent, transparent 39px, var(--line) 40px),
    var(--navy-deep);
  color: var(--cream);
  text-align: center;
  padding: clamp(3.5rem, 8vw, 6rem) 0;
}
.finalcta__inner { max-width: 60ch; margin-inline: auto; }
.finalcta h2 { font-family: var(--serif); font-weight: 600; font-size: clamp(2rem, 4.5vw, 3.2rem); margin-bottom: 1rem; }
.finalcta p { color: #e0d7c8; font-size: 1.1rem; margin-bottom: 1.8rem; }
.finalcta__note { font-size: 0.85rem !important; color: #9a9282 !important; margin-top: 1.4rem; margin-bottom: 0 !important; }

/* ---------- Footer ---------- */
.footer { background: #14192b; color: #c9bfae; padding: 2.6rem 0 1.4rem; }
.footer__inner { display: flex; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; align-items: flex-start; }
.footer__logo { width: 46px; height: 46px; border-radius: 50%; background: #fffef9; padding: 3px; margin-bottom: 0.6rem; }
.footer__brand { font-family: var(--serif); font-size: 1.2rem; color: var(--cream); }
.footer__small { font-size: 0.85rem; }
.footer__links { display: flex; flex-direction: column; gap: 0.6rem; }
.footer__links a { color: #d9cfbf; text-decoration: none; font-size: 0.95rem; }
.footer__links a:hover { color: #fff; text-decoration: underline; }
.footer__legal { border-top: 1px solid rgba(255,255,255,0.08); margin-top: 1.8rem; padding-top: 1.2rem; }
.footer__legal p { font-size: 0.78rem; color: #7d7566; }

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__art { order: -1; }
  .hero__sub { max-width: none; }
  .results__grid { grid-template-columns: 1fr; }
  .cards { grid-template-columns: 1fr; }
  .bootcamp__grid { grid-template-columns: 1fr 1fr; }
  .tiers { grid-template-columns: 1fr; }
  .tier--featured { transform: none; }
  .about { grid-template-columns: 1fr; }
  .about__img { order: -1; }
  .section__title--left { text-align: center; }
}
