/* ===================================================================
   Lifestyle Business Blueprint — clean document-style landing page
   MI palette: Navy #002D6A · Pastel Yellow #FFE187 · Pastel Orange #FFB765
   =================================================================== */

:root {
  --navy: #002d6a;
  --navy-deep: #001f4a;
  --yellow: #ffe187;
  --orange: #ffb765;
  --ink: #1c2433;
  --muted: #5b6577;
  --line: #e6e8ee;
  --bg: #ffffff;
  --bg-soft: #f6f7f9;
  --green: #2f8a4e;
  --maxw: 720px;
  --wide: 1080px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--ink);
  background: var(--bg);
  font-size: 19px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.site-header .brand img { height: 30px; display: block; }

/* ---------- Layout ---------- */
.section,
.hero {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 56px 24px;
}
.hero { padding-top: 44px; }

.band { padding: 64px 24px; }
.band > * {
  max-width: var(--maxw);
  margin-left: auto;
  margin-right: auto;
}
.band-light { background: var(--bg-soft); border-block: 1px solid var(--line); }
.band-navy { background: var(--navy); color: #fff; }

/* ---------- Typography ---------- */
h1 {
  font-size: 2.6rem;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin-bottom: 18px;
}
.h1-sub { font-size: 1.5rem; font-weight: 600; color: var(--ink); }

h2 {
  font-size: 1.85rem;
  line-height: 1.25;
  font-weight: 800;
  letter-spacing: -0.015em;
  color: var(--navy);
  margin-bottom: 18px;
}
h3 { font-size: 1.25rem; font-weight: 700; color: var(--navy); margin-bottom: 12px; }
p { margin-bottom: 16px; }
.center { text-align: center; }

.kicker {
  font-size: 1.45rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--navy);
  background: linear-gradient(transparent 62%, var(--yellow) 62%);
  display: inline;
  padding: 2px 0;
  margin-bottom: 24px;
}

/* ---------- Hero ---------- */
.hero-img {
  width: 100%;
  border-radius: 16px;
  margin-bottom: 30px;
  display: block;
}

.tick-list { list-style: none; margin: 4px 0 18px; }
.tick-list li { position: relative; padding-left: 30px; margin-bottom: 8px; }
.tick-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 16px;
  height: 16px;
  background: var(--orange);
  border-radius: 50%;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  background: var(--navy);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  border-radius: 999px;
  text-align: center;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 22px rgba(0, 45, 106, 0.25); }
.btn-sm { padding: 9px 20px; font-size: 0.92rem; }
.btn-lg { padding: 17px 34px; font-size: 1.05rem; }
.btn-yellow { background: var(--yellow); color: var(--navy); }
.btn-yellow:hover { box-shadow: 0 8px 22px rgba(0, 0, 0, 0.25); }

.cta-row { margin: 28px 0 8px; }
.cta-row.center { text-align: center; }
.cta-note { display: block; margin-top: 12px; font-size: 0.95rem; color: var(--muted); }

/* ---------- Bands / titles ---------- */
.band-title { text-align: center; margin-bottom: 28px; }
.band-foot { text-align: center; margin-top: 24px; color: var(--muted); font-size: 0.98rem; }
.band-intro { font-size: 1.05rem; }
.band-navy .band-title { color: #fff; }
.band-navy .band-intro { color: rgba(255, 255, 255, 0.92); text-align: center; }

/* ---------- Proof strip ---------- */
.proof-strip { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.proof-line {
  background: #fff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--orange);
  border-radius: 10px;
  padding: 14px 18px;
}
.proof-line strong { display: block; color: var(--navy); font-size: 1.02rem; margin-bottom: 2px; }
.proof-line span { font-size: 0.95rem; line-height: 1.5; color: var(--muted); }

/* ---------- Who is this for ---------- */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 24px 0; }
.col-card { border-radius: 14px; padding: 24px; border: 1px solid var(--line); }
.col-card h3 { margin-bottom: 14px; }
.col-card ul { list-style: none; }
.col-card li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 12px;
  font-size: 0.98rem;
  line-height: 1.55;
}
.col-no { background: #fbf3f1; }
.col-no li::before { content: "\2715"; position: absolute; left: 0; color: #c0563f; font-weight: 700; }
.col-yes { background: #eef6ef; }
.col-yes li::before { content: "\2713"; position: absolute; left: 0; color: var(--green); font-weight: 700; }

.resonate {
  text-align: center;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
  margin-top: 28px;
}

/* ---------- Origin story ---------- */
.story-text { margin-bottom: 8px; }
.pull {
  font-size: 1.2rem;
  font-weight: 700;
  font-style: italic;
  color: var(--navy);
  border-left: 4px solid var(--yellow);
  padding-left: 18px;
  margin: 20px 0;
}
.diagram-figure {
  margin: 32px 0;
  text-align: center;
}
.diagram-figure img {
  width: 100%;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #fbfaf7;
}
.diagram-figure figcaption {
  font-size: 0.92rem;
  color: var(--muted);
  margin-top: 12px;
}
.big-statement {
  font-size: 1.55rem;
  font-weight: 700;
  line-height: 1.5;
  color: var(--navy);
  text-align: center;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 44px 40px;
  margin-top: 36px;
  margin-bottom: 0;
}

/* tighten the gap into "The plan is simple" */
.section-plan { padding-top: 16px; }

/* ---------- Phases ---------- */
.phase {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 30px 28px;
  margin-bottom: 24px;
}
.phase-tag {
  display: inline-block;
  background: var(--yellow);
  color: var(--navy);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.phase h3 { font-size: 1.4rem; margin-bottom: 14px; }
.block-label { font-weight: 700; color: var(--navy); margin-top: 20px; margin-bottom: 12px; }
.point-list { list-style: none; margin-bottom: 8px; }
.point-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
  font-size: 0.98rem;
  line-height: 1.6;
}
.point-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 9px;
  height: 9px;
  background: var(--orange);
  border-radius: 50%;
}
.phase-end {
  background: var(--bg-soft);
  border-radius: 10px;
  padding: 16px 18px;
  margin-top: 16px;
  margin-bottom: 0;
  font-size: 0.98rem;
}
.ps-note {
  background: #fff7e6;
  border: 1px solid var(--yellow);
  border-radius: 12px;
  padding: 18px 20px;
  font-size: 0.98rem;
}

/* ---------- Card grids (testimonials) ---------- */
.card-grid { display: grid; gap: 16px; }
.card-grid img {
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--line);
  display: block;
}
.card-grid-12 { grid-template-columns: repeat(4, 1fr); }
.band .card-grid { max-width: 900px; }

/* ---------- Get list ---------- */
.get-list { list-style: none; margin: 14px 0 18px; }
.get-list li { position: relative; padding-left: 32px; margin-bottom: 14px; }
.get-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 4px;
  width: 22px;
  height: 22px;
  background: var(--navy);
  color: #fff;
  border-radius: 50%;
  font-size: 0.78rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---------- Scarcity ---------- */
.scarcity-box {
  background: var(--navy);
  color: #fff;
  border-radius: 16px;
  padding: 32px 28px;
  text-align: center;
  margin-top: 22px;
}
.scarcity-box p { margin-bottom: 14px; }
.scarcity-line { font-size: 1.15rem; }
.scarcity-line strong { color: var(--yellow); }
.scarcity-box .btn { margin-top: 10px; background: var(--yellow); color: var(--navy); }

/* ---------- Guarantee ---------- */
.guarantee-box {
  background: linear-gradient(160deg, #fff7e6, #fff);
  border: 2px solid var(--yellow);
  border-radius: 18px;
  padding: 34px 30px;
  margin-bottom: 24px;
}
.guarantee-box h2 { margin-bottom: 16px; }
.guarantee-box ul { margin: 0 0 16px 22px; }
.guarantee-box li { margin-bottom: 8px; }
.guarantee-close { font-weight: 700; color: var(--navy); font-size: 1.1rem; margin-bottom: 0; }

/* ---------- Tier comparison table ---------- */
.table-wrap { overflow-x: auto; margin: 26px auto; -webkit-overflow-scrolling: touch; }
.tier-table {
  width: 100%;
  min-width: 640px;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  font-size: 0.95rem;
  color: var(--ink);
}
.tier-table thead th {
  background: var(--navy-deep);
  color: #fff;
  font-weight: 700;
  padding: 16px 14px;
  text-align: center;
  font-size: 0.95rem;
}
.tier-table thead th:first-child { text-align: left; }
.tier-table tbody td {
  padding: 13px 14px;
  border-top: 1px solid var(--line);
  text-align: center;
  vertical-align: middle;
}
.tier-table tbody td:first-child {
  text-align: left;
  font-weight: 600;
  color: var(--navy);
}
.tier-table tbody tr:nth-child(even) td { background: var(--bg-soft); }
.tier-table .yes {
  color: var(--green);
  font-weight: 800;
  font-size: 1.15rem;
}
.tier-table .no::after { content: "\00B7"; color: #c2c8d2; font-size: 1.3rem; }
.tier-table .txt { font-weight: 700; color: var(--navy); }

/* ---------- Steps / CTA section ---------- */
.section-cta h2 { margin-bottom: 10px; }
.cta-lead { color: var(--muted); margin-bottom: 34px; }
.steps { list-style: none; counter-reset: step; margin: 8px 0 24px; }
.steps li {
  position: relative;
  padding-left: 56px;
  margin-bottom: 18px;
  min-height: 40px;
  display: flex;
  align-items: center;
}
.steps li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  height: 40px;
  background: var(--navy);
  color: #fff;
  border-radius: 50%;
  font-weight: 800;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.signoff { margin-top: 30px; font-size: 1.05rem; }
.signoff-role { color: var(--muted); font-size: 0.95rem; }

/* ---------- FAQ ---------- */
.faq { margin-top: 24px; }
.faq details {
  border: 1px solid var(--line);
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
  background: #fff;
}
.faq summary {
  cursor: pointer;
  padding: 18px 50px 18px 22px;
  font-weight: 700;
  color: var(--navy);
  list-style: none;
  position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--orange);
  transition: transform 0.2s ease;
}
.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq details[open] summary { background: var(--bg-soft); }
.faq-body { padding: 4px 22px 20px; }
.faq-body p { font-size: 0.98rem; margin-bottom: 12px; }
.faq-body p:last-child { margin-bottom: 0; }

/* ---------- Sample list ---------- */
.sample-list { list-style: none; margin: 22px 0; }
.sample-list li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 12px;
  font-size: 0.98rem;
}
.sample-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 12px;
  height: 12px;
  background: var(--yellow);
  border: 2px solid var(--orange);
  border-radius: 50%;
}

/* ---------- Video grid ---------- */
.video-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 24px; }
.video {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: hidden;
  background: #000;
}
.video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* ---------- Final CTA ---------- */
.final-cta {
  background: var(--navy);
  color: #fff;
  text-align: center;
  padding: 72px 24px;
}
.final-cta h2 { color: #fff; }
.final-cta p { max-width: 520px; margin-left: auto; margin-right: auto; }
.final-cta .btn { margin: 14px 0 8px; }
.final-note { font-size: 0.9rem; color: rgba(255, 255, 255, 0.65); }

/* ---------- Footer ---------- */
.site-footer { text-align: center; padding: 40px 24px; border-top: 1px solid var(--line); }
.site-footer img { height: 26px; margin-bottom: 12px; opacity: 0.8; }
.site-footer p { font-size: 0.85rem; color: var(--muted); margin: 0; }

/* ---------- Responsive ---------- */
@media (max-width: 720px) {
  body { font-size: 18px; }
  h1 { font-size: 2rem; }
  .h1-sub { font-size: 1.2rem; }
  h2 { font-size: 1.5rem; }
  .kicker { font-size: 1.2rem; }
  .section, .hero { padding: 44px 20px; }
  .band { padding: 48px 20px; }
  .proof-strip { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; }
  .video-grid { grid-template-columns: 1fr; }
  .card-grid-12 { grid-template-columns: repeat(2, 1fr); }
  .big-statement { font-size: 1.25rem; padding: 32px 24px; }
  .phase { padding: 24px 20px; }
  .guarantee-box { padding: 26px 22px; }
}
