/* ═══════════════════════════════════════════════════════
   The Path — page-specific styles.
   Layered on top of shared.css + e4b.css.
   ═══════════════════════════════════════════════════════ */

body.e4b-the-path {
  background:
    linear-gradient(180deg,
      color-mix(in oklab, var(--parchment) 55%, transparent) 0%,
      color-mix(in oklab, var(--parchment) 65%, transparent) 40%,
      color-mix(in oklab, var(--parchment) 80%, transparent) 100%),
    url('/assets/background.webp') center top / cover no-repeat fixed,
    linear-gradient(180deg, var(--dawn-1) 0%, var(--parchment) 30%, var(--parchment) 100%);
}

body.e4b-the-path .offering-card,
body.e4b-the-path .phase-card {
  background-color: color-mix(in oklab, var(--parchment-warm) 96%, transparent);
}

/* ─── Offering cards ─── */
.offering-card {
  background: rgba(250, 248, 245, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(245, 241, 235, 0.6);
  border-radius: 1.5rem;
  padding: 40px 32px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  display: flex;
  flex-direction: column;
  max-width: 780px;
  margin: 0 auto;
}

.offering-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-rise);
}

.offering-eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
}

.offering-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  font-size: 1.5rem;
  margin-bottom: 20px;
  background: color-mix(in oklab, var(--teal) 10%, transparent);
}

.offering-title {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 1.2rem + 1vw, 1.875rem);
  color: var(--indigo);
  margin-bottom: 16px;
  line-height: 1.25;
  font-weight: 500;
}

.offering-body {
  font-family: var(--sans);
  font-size: clamp(0.9375rem, 0.88rem + 0.25vw, 1.0625rem);
  line-height: 1.75;
  color: var(--indigo);
  flex: 1;
}

.offering-body p {
  margin-bottom: 1rem;
}

.offering-body p:last-child {
  margin-bottom: 0;
}

.offering-body em {
  font-family: var(--serif);
  color: var(--teal);
}

.offering-detail {
  font-family: var(--sans);
  font-size: 12px;
  color: var(--indigo-faint);
  margin-top: 16px;
}

/* ─── Pricing ─── */
.founding-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), #C9A430);
  color: var(--indigo);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
}

.price-current {
  font-family: var(--serif);
  font-size: 2.5rem;
  color: var(--indigo);
  font-weight: 700;
  line-height: 1;
}

.price-future {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--indigo-faint);
  text-decoration: line-through;
}

/* ─── Phase cards ─── */
.phase-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 32px;
}
@media (min-width: 760px) {
  .phase-grid { grid-template-columns: repeat(3, 1fr); }
}

.phase-card {
  background: rgba(250, 248, 245, 0.7);
  border: 1px solid var(--rule);
  border-radius: 16px;
  padding: 24px;
  text-align: left;
}

.phase-number {
  font-family: var(--serif);
  font-size: 12px;
  font-weight: 700;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 6px;
}

.phase-name {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 1rem;
  color: var(--indigo);
  margin-bottom: 8px;
}

.phase-desc {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--indigo);
  line-height: 1.6;
}

/* ─── Echoes teaser ─── */
.echoes-teaser {
  margin-top: 32px;
  padding: 20px;
  border-radius: 12px;
  background: color-mix(in oklab, var(--teal) 6%, transparent);
  border: 1px solid color-mix(in oklab, var(--teal) 10%, transparent);
}

.echoes-teaser p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--teal);
  margin: 0;
}
