/* ===========================================================
   Lucent — pricing.css
   Page-specific only. Tokens, buttons, bands, prose, nav, and
   footer all come from styles.css and about.css.
   =========================================================== */

/* ---------- Hero ---------- */
/* No scenic photo here — pricing wants clarity, not atmosphere. */
.hero--pricing {
  background-image: none;
  background-color: var(--alpine);
  min-height: 0;
  border-bottom: 1px solid var(--mist);
}

.hero--pricing .hero__inner {
  justify-content: center;
  text-align: center;
  padding-top: clamp(64px, 9vw, 104px);
  padding-bottom: clamp(56px, 7vw, 80px);
}
.hero--pricing .hero__content { max-width: 680px; }
.hero--pricing .hero__divider { margin-left: auto; margin-right: auto; }
.hero--pricing .hero__body {
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  color: var(--midnight);
}

/* ---------- Tier grid ---------- */
.tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

/* The ascent: each card sits a step higher than the last.
   Subtle enough to feel like rising ground, not a broken layout. */
.tier--foothold { margin-top: 48px; }
.tier--ascent   { margin-top: 24px; }
.tier--summit   { margin-top: 0; }

.tier {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--mist);
  border-radius: 18px;
  padding: 38px 32px 32px;
  box-shadow: 0 1px 2px rgba(18, 38, 58, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.tier:hover { transform: translateY(-6px); box-shadow: 0 20px 48px rgba(18, 38, 58, 0.12); }

/* Ascent carries the weight — it's where most projects land. */
.tier--ascent {
  background: var(--midnight);
  border-color: var(--summit);
  color: var(--alpine);
  box-shadow: 0 18px 44px rgba(18, 38, 58, 0.16);
}

.tier__flag {
  position: absolute;
  top: 0;
  left: 32px;
  transform: translateY(-50%);
  background: var(--summit);
  color: var(--midnight);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 2px;
}

/* ---------- Tier head ---------- */
.tier__eyebrow {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--summit);
  margin-bottom: 14px;
}

.tier__name {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 25px;
  line-height: 1.22;
  letter-spacing: -0.005em;
  margin: 0 0 22px;
  min-height: 2.44em; /* keeps prices aligned across the row */
}

.tier__price {
  font-family: var(--serif);
  font-size: 44px;
  line-height: 1;
  font-weight: 500;
  margin: 0 0 8px;
}

.tier--ascent .tier__price { color: var(--summit); }

.tier__timing {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--river);
  margin: 0;
}

/* ---------- Tier body ---------- */
.tier__for {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ridge);
  margin: 24px 0;
  padding-top: 24px;
  border-top: 1px solid var(--mist);
}

.tier--ascent .tier__for {
  color: var(--mist);
  border-top-color: rgba(233, 238, 242, 0.16);
}

.tier__list {
  margin: 0 0 32px;
  flex: 1;
}

.tier__list li {
  position: relative;
  font-size: 15px;
  line-height: 1.5;
  padding: 0 0 12px 24px;
}

.tier__list li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 8px;
  width: 8px;
  height: 8px;
  border-left: 1.5px solid var(--summit);
  border-bottom: 1.5px solid var(--summit);
  transform: rotate(-45deg);
}

.tier__cta {
  justify-content: center;
  width: 100%;
  padding: 15px 24px;
  font-size: 13px;
}

/* Outline button — defined here in case about.css scopes it narrowly */
.tier .btn--outline {
  background: transparent;
  color: var(--midnight);
  border: 1px solid var(--midnight);
  border-radius: 3px;
}
.tier .btn--outline:hover {
  background: var(--midnight);
  color: var(--alpine);
}

/* ---------- Care plan ---------- */
.care {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 56px;
  align-items: center;
}

.care__list {
  margin-top: 26px;
}

.care__list li {
  position: relative;
  font-size: 15px;
  line-height: 1.5;
  color: var(--mist);
  padding: 0 0 12px 24px;
}

.care__list li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 8px;
  width: 8px;
  height: 8px;
  border-left: 1.5px solid var(--summit);
  border-bottom: 1.5px solid var(--summit);
  transform: rotate(-45deg);
}

.care__price {
  border-left: 1px solid rgba(233, 238, 242, 0.16);
  padding-left: 44px;
}

.care__amount {
  font-family: var(--serif);
  font-size: 56px;
  line-height: 1;
  font-weight: 500;
  color: var(--summit);
  margin: 0 0 16px;
}

.care__amount span {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--river);
}

.care__note {
  font-size: 14px;
  line-height: 1.65;
  color: var(--river);
  margin: 0;
}

/* ---------- Fine print ---------- */
.terms {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 48px;
  margin-top: 52px;
}

.term h3 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--midnight);
  margin: 0 0 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--summit);
}

.term p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--ridge);
  margin: 0;
}

/* ---------- Responsive ---------- */
@media (max-width: 1000px) {
  .tiers { grid-template-columns: 1fr; gap: 32px; max-width: 560px; margin: 0 auto; }
  .tier--foothold, .tier--ascent, .tier--summit { margin-top: 0; }
  .tier__name { min-height: 0; }
  .terms { grid-template-columns: repeat(2, 1fr); }
  .care { grid-template-columns: 1fr; gap: 36px; }
  .care__price { border-left: 0; border-top: 1px solid rgba(233,238,242,0.16); padding-left: 0; padding-top: 32px; }
}

@media (max-width: 600px) {
  .terms { grid-template-columns: 1fr; gap: 32px; }
  .tier { padding: 34px 24px 28px; }
  .care__amount { font-size: 46px; }
}