/* ============================================================
   Shared styles for the content pages:
   how-it-works.html (Subscription) + about.html
   Builds on style.css and reuses badges / dividers / closing-band
   from solution.css.
   ============================================================ */

.lp {
  width: min(100% - 2 * var(--gutter), var(--content));
  margin-inline: auto;
  padding-block: 10px 76px;
}

/* section scaffolding ---------------------------------------- */
.lp-section { margin-top: 52px; }
.lp-head { max-width: 60ch; }
.lp-head--center { margin-inline: auto; text-align: center; }
.lp-title {
  margin-top: 12px;
  font-size: 26px;
  font-weight: 800;
  line-height: 1.16;
  letter-spacing: -0.02em;
  color: var(--navy-ink);
  text-wrap: balance;
}
.lp-title .accent { color: var(--orange-deep); }
.lp-lead {
  margin-top: 14px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
}
.lp-note {
  margin-top: 16px;
  display: inline-flex;
  gap: 8px;
  border-radius: 14px;
  background: var(--frame-soft);
  padding: 10px 14px;
  font-size: 12.5px;
  font-style: italic;
  line-height: 1.5;
  color: var(--muted);
}

/* ============================================================
   HERO (two-column copy + illustration) — shared
   ============================================================ */
.lp-hero {
  display: grid;
  gap: 30px;
  align-items: center;
  padding: 26px 0 8px;
}
.lp-hero__title {
  margin: 12px 0 0;
  font-size: 32px;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--navy-ink);
  text-wrap: balance;
}
.lp-hero__title .accent { color: var(--orange-deep); }
.lp-hero__lead {
  margin-top: 18px;
  max-width: 54ch;
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--muted);
}
.lp-hero__ctas {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.price-pill {
  margin-top: 20px;
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  border-radius: var(--r-full);
  background: var(--teal-card);
  color: var(--teal-deep);
  padding: 9px 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.price-pill__amt { font-size: 19px; }
.price-pill__per { font-size: 12.5px; opacity: 0.8; font-weight: 600; }

.lp-stage {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-3xl);
  background: linear-gradient(160deg, #eaf3f2 0%, #f3eee6 60%, #fdf3e9 100%);
  box-shadow: var(--shadow-card);
}
.lp-stage--cool {
  background: linear-gradient(160deg, #e8f1f9 0%, #eef3fb 55%, #f4eee7 100%);
}
.lp-stage__art { display: block; width: 100%; height: auto; }

/* gentle ambient float on the hero illustration */
@keyframes hero-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}
.lp-stage { animation: hero-float 7s ease-in-out infinite; }

/* ============================================================
   RHYTHM band + plan card (How It Works)
   ============================================================ */
.rhythm {
  display: grid;
  gap: 26px;
  align-items: center;
  border-radius: var(--r-3xl);
  background: linear-gradient(180deg, #ffffff, #f6f9fc);
  box-shadow: 0 1px 0 rgba(2, 43, 91, 0.05), var(--shadow-card);
  padding: 30px 24px;
}
.plan-card {
  border-radius: var(--r-28);
  background: radial-gradient(circle at 50% 0%, #1c4a7e, var(--navy-deep) 78%);
  color: #fff;
  padding: 26px 24px;
  box-shadow: var(--shadow-float);
}
.plan-card__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.plan-card__label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.7);
}
.plan-card__price { font-size: 30px; font-weight: 800; letter-spacing: -0.02em; }
.plan-card__price span { font-size: 13px; font-weight: 600; opacity: 0.75; }
.plan-card__list {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.plan-card__item {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.92);
}
.plan-card__check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 24px;
  width: 24px;
  flex-shrink: 0;
  border-radius: var(--r-full);
  background: rgba(127, 182, 178, 0.25);
  color: #bfe3df;
}
.plan-card__check svg { height: 14px; width: 14px; }
.plan-card__cta { margin-top: 22px; width: 100%; }

/* ============================================================
   4-STEP JOURNEY
   ============================================================ */
.steps4 {
  margin-top: 24px;
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
}
.step {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-radius: var(--r-2xl);
  background: #fff;
  padding: 22px 20px;
  box-shadow: 0 0 0 1px rgba(2, 43, 91, 0.05), var(--shadow-float);
}
.step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
  border-radius: 13px;
  background: linear-gradient(135deg, var(--teal-card), var(--teal-mist));
  color: var(--teal-deep);
  font-size: 17px;
  font-weight: 800;
}
.step:nth-child(2) .step__num { background: linear-gradient(135deg, var(--orange-soft), var(--orange-mist)); color: var(--orange-deep); }
.step:nth-child(3) .step__num { background: linear-gradient(135deg, var(--blue-soft), #eef4fc); color: var(--blue-deep); }
.step:nth-child(4) .step__num { background: linear-gradient(135deg, var(--violet-soft), #f1edfb); color: var(--violet-deep); }
.step__title {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--navy-ink);
}
.step__text {
  font-size: 13px;
  line-height: 1.6;
  color: var(--muted);
}
.step__eyebrow {
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--teal-deep);
}

/* ============================================================
   CHANNELS — which service, which channel
   ============================================================ */
.channels {
  margin-top: 24px;
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}
.channel-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-radius: var(--r-2xl);
  background: #fff;
  padding: 20px;
  box-shadow: 0 0 0 1px rgba(2, 43, 91, 0.05);
}
.channel-row__text {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--muted);
}

/* ============================================================
   DASHBOARD section
   ============================================================ */
.dash {
  display: grid;
  gap: 28px;
  align-items: center;
}
.dash__list {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.dash__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--navy-ink);
}
.dash__dot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 26px;
  width: 26px;
  flex-shrink: 0;
  border-radius: var(--r-full);
  background: var(--teal-card);
  color: var(--teal-deep);
}
.dash__dot svg { height: 15px; width: 15px; }
.dash__mock {
  border-radius: var(--r-3xl);
  overflow: hidden;
  background: linear-gradient(160deg, #eef4fa, #f6f9fc);
  box-shadow: var(--shadow-card);
}
.dash__mock svg { display: block; width: 100%; height: auto; }

/* ============================================================
   CARE ACTIVITY SCORE
   ============================================================ */
.score {
  display: grid;
  gap: 28px;
  align-items: center;
  border-radius: var(--r-3xl);
  background: linear-gradient(180deg, #ffffff, #f6f9fc);
  box-shadow: 0 1px 0 rgba(2, 43, 91, 0.05), var(--shadow-card);
  padding: 32px 24px;
}
.score__ring {
  position: relative;
  width: 200px;
  height: 200px;
  margin-inline: auto;
}
.score__ring svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.score__track { fill: none; stroke: #e7ecf2; stroke-width: 9; }
.score__bar {
  fill: none;
  stroke: url(#scoreGrad);
  stroke-width: 9;
  stroke-linecap: round;
  /* empty->filled fill is driven by script.js on scroll-into-view */
}
.score__center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.score__num { font-size: 46px; font-weight: 800; letter-spacing: -0.03em; color: var(--navy-ink); line-height: 1; }
.score__cap { margin-top: 4px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--teal-deep); }
.inputs {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.inputs li {
  border-radius: var(--r-full);
  background: var(--frame-soft);
  padding: 7px 13px;
  font-size: 12px;
  font-weight: 600;
  color: var(--navy-ink);
}

/* ============================================================
   MISSION / VISION
   ============================================================ */
.mv {
  margin-top: 24px;
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
}
.mv-card {
  border-radius: var(--r-3xl);
  background: #fff;
  padding: 28px 26px;
  box-shadow: 0 0 0 1px rgba(2, 43, 91, 0.05), var(--shadow-float);
}
.mv-card--vision { background: linear-gradient(160deg, var(--teal-card), #fff 70%); }
.mv-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  width: 52px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--teal-card), var(--teal-mist));
  color: var(--teal-deep);
  margin-bottom: 16px;
}
.mv-card--vision .mv-card__icon { background: linear-gradient(135deg, var(--orange-soft), var(--orange-mist)); color: var(--orange-deep); }
.mv-card__title {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--navy-ink);
}
.mv-card__text {
  margin-top: 10px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--muted);
}

/* ============================================================
   VALUES
   ============================================================ */
.values {
  margin-top: 24px;
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}
.value {
  display: flex;
  gap: 14px;
  border-radius: var(--r-2xl);
  background: #fff;
  padding: 20px;
  box-shadow: 0 0 0 1px rgba(2, 43, 91, 0.05);
}
.value__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  width: 44px;
  flex-shrink: 0;
  border-radius: 13px;
  background: linear-gradient(135deg, var(--teal-card), var(--teal-mist));
  color: var(--teal-deep);
}
.value__icon svg { height: 22px; width: 22px; }
.value:nth-child(2) .value__icon { background: linear-gradient(135deg, var(--orange-soft), var(--orange-mist)); color: var(--orange-deep); }
.value:nth-child(3) .value__icon { background: linear-gradient(135deg, var(--blue-soft), #eef4fc); color: var(--blue-deep); }
.value:nth-child(4) .value__icon { background: linear-gradient(135deg, var(--violet-soft), #f1edfb); color: var(--violet-deep); }
.value:nth-child(5) .value__icon { background: linear-gradient(135deg, var(--teal-card), var(--teal-mist)); color: var(--teal-deep); }
.value__title { font-size: 15px; font-weight: 700; color: var(--navy-ink); }
.value__text { margin-top: 4px; font-size: 13px; line-height: 1.55; color: var(--muted); }

/* placeholder text in the "Who we are" paragraph */
.ph {
  background: var(--orange-soft);
  color: var(--orange-deep);
  border-radius: 6px;
  padding: 0 5px;
  font-weight: 600;
  font-style: normal;
}

/* ============================================================
   MIDDLE GROUND — three-column compare
   ============================================================ */
.middle {
  margin-top: 24px;
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}
.mid-col {
  position: relative;
  border-radius: var(--r-2xl);
  background: #fff;
  padding: 22px 20px;
  box-shadow: 0 0 0 1px rgba(2, 43, 91, 0.05);
  text-align: center;
}
.mid-col--mid {
  background: radial-gradient(circle at 50% 0%, #1c4a7e, var(--navy-deep) 80%);
  color: #fff;
  box-shadow: var(--shadow-card);
}
.mid-col__tag {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
}
.mid-col--mid .mid-col__tag { color: #bfe3df; }
.mid-col__title { margin-top: 8px; font-size: 17px; font-weight: 800; letter-spacing: -0.01em; }
.mid-col__text { margin-top: 8px; font-size: 13px; line-height: 1.55; color: var(--muted); }
.mid-col--mid .mid-col__text { color: rgba(255, 255, 255, 0.85); }
.mid-col__badge {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: var(--r-full);
  background: var(--orange);
  color: #fff;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 4px 12px;
  white-space: nowrap;
  box-shadow: var(--shadow-float);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (min-width: 640px) {
  .lp-title { font-size: 30px; }
  .lp-hero__title { font-size: 38px; }
  .steps4 { grid-template-columns: repeat(2, 1fr); }
  .channels { grid-template-columns: repeat(2, 1fr); }
  .values { grid-template-columns: repeat(2, 1fr); }
  .mv { grid-template-columns: repeat(2, 1fr); }
  .middle { grid-template-columns: repeat(3, 1fr); align-items: stretch; }
}

@media (min-width: 1024px) {
  .lp { padding-bottom: 100px; }
  .lp-hero { grid-template-columns: 1fr 1.04fr; gap: 46px; }
  .lp-hero__title { font-size: 44px; }
  .lp-title { font-size: 32px; }

  .rhythm { grid-template-columns: 1.25fr 1fr; gap: 40px; padding: 40px; }
  .steps4 { grid-template-columns: repeat(4, 1fr); }
  .dash { grid-template-columns: 1fr 1.1fr; gap: 44px; }
  .score { grid-template-columns: 0.8fr 1.2fr; gap: 44px; padding: 40px; }
  .score__ring { width: 230px; height: 230px; }
}

/* ============================================================
   FULL-WIDTH IMAGE CTA BANNER (how-it-works closing)
   ============================================================ */
.cta-banner {
  margin-top: 48px;
  text-align: center;
}
.cta-banner__img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--r-3xl);
  box-shadow: 0 1px 0 rgba(2, 43, 91, 0.05), var(--shadow-card);
}
.cta-banner__ctas {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
