/* Open Hearts — sky blue + candle yellow (aligned with offer palette) */
:root {
  --mist: #F4F8FC;
  --fog: #E3F1F9;
  --paper: #FFFFFF;
  --ink: #142433;
  --mute: #5A6B7A;
  --pine: #1A4A6B;
  --pine-deep: #12384F;
  --leaf: #2E8BC4;
  --leaf-soft: #E3F1F9;
  --sand: #F4F8FC;
  --copper: #FFD200;
  --sky: #7EB8D8;
  --line: rgba(20, 36, 51, 0.1);
  --glow: 0 28px 60px -28px rgba(18, 56, 79, 0.45);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --display: "Fraunces", Georgia, serif;
  --sans: "Manrope", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--sans);
  background: var(--mist);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  background-image:
    radial-gradient(ellipse 80% 50% at 10% -10%, rgba(126, 184, 216, 0.18), transparent 55%),
    radial-gradient(ellipse 60% 40% at 90% 0%, rgba(255, 210, 0, 0.10), transparent 50%);
  background-attachment: fixed;
}

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

a {
  color: inherit;
}

h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.lane {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--leaf);
}

.kicker::before {
  content: "";
  width: 1.4rem;
  height: 1px;
  background: currentColor;
}

.kicker--light {
  color: var(--copper);
}

.lede {
  max-width: 34rem;
  margin-top: 1rem;
  color: var(--mute);
  font-size: 1.1rem;
}

.reveal {
  opacity: 0;
  transform: translateY(1.4rem);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

/* ---------- brand mark ---------- */
.mark {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--display);
  font-size: 1.35rem;
  text-decoration: none;
  letter-spacing: -0.01em;
}

.mark__glyph {
  width: 1.55rem;
  height: 1.55rem;
  border-radius: 50% 50% 50% 8%;
  background:
    radial-gradient(circle at 35% 30%, #FFD200 0%, transparent 45%),
    linear-gradient(145deg, var(--leaf), var(--pine));
  box-shadow: inset 0 0 0 1.5px rgba(255, 255, 255, 0.25);
  transform: rotate(-18deg);
}

.mark--hero {
  color: var(--sand);
  font-size: clamp(2.8rem, 7vw, 4.6rem);
  margin-bottom: 1.1rem;
}

.mark--hero .mark__glyph,
.mark--hero::before {
  display: none;
}

.mark--foot {
  color: var(--sand);
}

/* ---------- buttons ---------- */
.action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.95rem 1.7rem;
  border-radius: 0.7rem;
  background: var(--leaf);
  color: #fff;
  font-weight: 700;
  font-size: 0.98rem;
  text-decoration: none;
  transition: transform 0.2s var(--ease), background 0.2s, box-shadow 0.2s;
  box-shadow: 0 14px 28px -16px rgba(46, 139, 196, 0.45);
}

.action:hover {
  transform: translateY(-2px);
  background: #216E9E;
}

.action--compact {
  padding: 0.7rem 1.15rem;
  font-size: 0.88rem;
}

.action--ghost {
  background: transparent;
  color: var(--sand);
  border: 1px solid rgba(244, 248, 252, 0.4);
  box-shadow: none;
}

.action--ghost:hover {
  background: rgba(244, 248, 252, 0.1);
  border-color: rgba(244, 248, 252, 0.65);
}

.action--on-dark {
  background: var(--copper);
  color: var(--ink);
  box-shadow: 0 18px 36px -18px rgba(0, 0, 0, 0.45);
}

.action--on-dark:hover {
  background: #fff;
}

/* ---------- masthead ---------- */
.mast {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.mast::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--pine) 0%, var(--sky) 40%, var(--copper) 72%, var(--leaf) 100%);
}

.mast__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 4.4rem;
  gap: 1rem;
}

.mast__nav {
  display: flex;
  gap: 1.75rem;
  font-size: 0.92rem;
  font-weight: 550;
}

.mast__nav a {
  text-decoration: none;
  color: var(--mute);
  transition: color 0.2s;
}

.mast__nav a:hover {
  color: var(--pine);
}

/* ---------- hero stage ---------- */
.stage {
  position: relative;
  min-height: min(92vh, 820px);
  display: grid;
  align-items: end;
  padding: 7rem 0 5.5rem;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(18, 56, 79, 0.2), rgba(18, 56, 79, 0.88) 70%),
    radial-gradient(ellipse 80% 60% at 70% 20%, #2E8BC4 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 15% 80%, rgba(255, 210, 0, 0.18) 0%, transparent 50%),
    linear-gradient(135deg, #12384F 0%, #1A4A6B 45%, #163A52 100%);
  color: var(--sand);
}

.stage__veil {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(244, 248, 252, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244, 248, 252, 0.04) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, #000 30%, transparent 95%);
  pointer-events: none;
  animation: gridDrift 28s linear infinite;
}

@keyframes gridDrift {
  from { background-position: 0 0; }
  to { background-position: 72px 72px; }
}

.stage__copy {
  position: relative;
  max-width: 42rem;
  animation: stageIn 1s var(--ease) both;
}

@keyframes stageIn {
  from {
    opacity: 0;
    transform: translateY(1.5rem);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.stage__title {
  font-size: clamp(1.85rem, 3.8vw, 2.75rem);
  max-width: 22ch;
  margin-bottom: 1.25rem;
  font-style: italic;
  color: rgba(244, 248, 252, 0.94);
}

.stage__lead {
  max-width: 34rem;
  font-size: 1.15rem;
  color: rgba(244, 248, 252, 0.8);
  margin-bottom: 2rem;
}

.stage__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

/* ---------- pulse strip ---------- */
.pulse {
  background: var(--pine-deep);
  color: var(--sand);
  padding: 1.75rem 0;
}

.pulse__row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.pulse__item strong {
  display: block;
  font-family: var(--display);
  font-size: 1.55rem;
  font-weight: 400;
  margin-bottom: 0.2rem;
}

.pulse__item span {
  font-size: 0.86rem;
  color: rgba(244, 248, 252, 0.65);
}

/* ---------- rift / pain ---------- */
.rift {
  padding: 6.5rem 0 5rem;
  background: var(--paper);
}

.rift__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3.5rem;
  align-items: start;
}

.rift__intro h2 {
  font-size: clamp(2rem, 3.6vw, 3rem);
  margin-bottom: 1rem;
}

.rift__intro p:last-child {
  color: var(--mute);
  font-size: 1.05rem;
}

.rift__list {
  list-style: none;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.rift__list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--line);
}

.rift__n {
  font-family: var(--display);
  font-size: 1.1rem;
  color: var(--leaf);
  padding-top: 0.15rem;
}

.rift__list h3 {
  font-size: 1.25rem;
  margin-bottom: 0.35rem;
}

.rift__list p {
  color: var(--mute);
  font-size: 0.98rem;
}

.rift__note {
  width: min(1120px, calc(100% - 40px));
  margin: 3rem auto 0;
  text-align: center;
  font-family: var(--display);
  font-size: 1.55rem;
  font-style: italic;
  color: var(--pine);
}

/* ---------- path / method ---------- */
.path {
  padding: 6.5rem 0;
  background:
    linear-gradient(180deg, var(--fog), var(--mist));
}

.path__head {
  max-width: 36rem;
  margin-bottom: 3rem;
}

.path__head h2 {
  font-size: clamp(2rem, 3.6vw, 3rem);
}

.path__rails {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.path__rails article {
  padding: 2rem 1.6rem 2.1rem;
  border-left: 2px solid var(--leaf);
  background: rgba(251, 252, 253, 0.7);
}

.path__rails span {
  display: block;
  font-family: var(--display);
  font-size: 0.95rem;
  color: var(--leaf);
  margin-bottom: 1rem;
  letter-spacing: 0.08em;
}

.path__rails h3 {
  font-size: 1.55rem;
  margin-bottom: 0.75rem;
}

.path__rails p {
  color: var(--mute);
  font-size: 0.98rem;
}

/* ---------- voices ---------- */
.voices {
  padding: 6.5rem 0;
  background: var(--pine);
  color: var(--sand);
}

.voices .kicker {
  color: var(--leaf);
}

.voices__head h2 {
  font-size: clamp(2rem, 3.6vw, 3rem);
}

.voices__stack {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}

.voices figure {
  padding: 1.8rem 1.5rem;
  border: 1px solid rgba(244, 248, 252, 0.16);
  background: rgba(18, 56, 79, 0.35);
}

.voices blockquote {
  font-family: var(--display);
  font-size: 1.28rem;
  line-height: 1.4;
  margin-bottom: 1.4rem;
}

.voices figcaption {
  font-size: 0.86rem;
  color: rgba(244, 248, 252, 0.68);
}

.voices figcaption strong {
  color: var(--sand);
  font-weight: 650;
}

/* ---------- programs ---------- */
.programs {
  padding: 6.5rem 0 5rem;
  background:
    radial-gradient(ellipse 70% 50% at 50% -10%, rgba(46, 139, 196, 0.22), transparent 60%),
    radial-gradient(ellipse 40% 30% at 90% 80%, rgba(255, 210, 0, 0.12), transparent 50%),
    var(--pine-deep);
  color: var(--sand);
}

.programs__head {
  max-width: 36rem;
  margin-bottom: 3rem;
}

.programs__head h2 {
  font-size: clamp(2rem, 3.6vw, 3rem);
}

.programs__head .lede {
  color: rgba(244, 248, 252, 0.7);
}

.plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}

.plan {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 1.85rem 1.5rem 1.6rem;
  border: 1px solid rgba(244, 248, 252, 0.14);
  border-radius: 1rem;
  background: rgba(26, 74, 107, 0.55);
  transition: transform 0.25s var(--ease), border-color 0.25s;
}

.plan:hover {
  transform: translateY(-4px);
  border-color: rgba(244, 248, 252, 0.3);
}

.plan--focus {
  border-color: rgba(46, 139, 196, 0.65);
  background: linear-gradient(165deg, rgba(46, 139, 196, 0.45), rgba(18, 56, 79, 0.95));
  box-shadow: var(--glow);
}

.plan--vip {
  border-color: rgba(255, 210, 0, 0.5);
}

.plan__tag {
  position: absolute;
  top: -0.7rem;
  left: 1.2rem;
  padding: 0.3rem 0.75rem;
  border-radius: 0.4rem;
  background: var(--leaf);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.plan__tag--vip {
  background: var(--copper);
  color: var(--ink);
}

.plan__tier {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(244, 248, 252, 0.52);
  margin-bottom: 0.45rem;
}

.plan__name {
  font-size: 1.45rem;
  margin-bottom: 0.85rem;
}

.plan__price {
  font-family: var(--display);
  font-size: 3rem;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.plan__price sup {
  font-size: 1.1rem;
  margin-right: 0.15rem;
  opacity: 0.7;
}

.plan__once {
  font-size: 0.82rem;
  color: rgba(244, 248, 252, 0.52);
  margin-bottom: 1.2rem;
}

.plan ul {
  list-style: none;
  flex: 1;
  margin-bottom: 1.4rem;
}

.plan li {
  position: relative;
  padding: 0.55rem 0 0.55rem 1.2rem;
  border-bottom: 1px dashed rgba(244, 248, 252, 0.12);
  font-size: 0.9rem;
  color: rgba(244, 248, 252, 0.86);
}

.plan li:last-child {
  border-bottom: none;
}

.plan li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.95rem;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--leaf);
}

.plan__go {
  display: block;
  text-align: center;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 0.95rem 1rem;
  border-radius: 0.65rem;
  border: 1px solid rgba(244, 248, 252, 0.24);
  color: var(--sand);
  transition: background 0.2s, transform 0.2s, border-color 0.2s;
}

.plan__go:hover {
  background: rgba(244, 248, 252, 0.1);
  transform: translateY(-1px);
}

.plan--focus .plan__go,
.plan__go--fill {
  background: var(--leaf);
  border-color: transparent;
  color: #fff;
}

.plan--focus .plan__go:hover,
.plan__go--fill:hover {
  background: #216E9E;
}

.plan__go--vip {
  background: var(--copper);
  border-color: transparent;
  color: var(--ink);
}

.plan__go--vip:hover {
  filter: brightness(1.06);
  background: var(--copper);
}

.programs__trust {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem 2.2rem;
  margin-top: 2.5rem;
  font-size: 0.86rem;
  color: rgba(244, 248, 252, 0.58);
}

.programs__trust li {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.programs__trust li::before {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--leaf);
  opacity: 0.8;
}

/* ---------- pledge ---------- */
.pledge {
  padding: 5rem 0;
  background: var(--sand);
}

.pledge__box {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2.4rem;
  align-items: center;
  padding: 2.8rem 3rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 1.25rem;
  box-shadow: 0 20px 50px -30px rgba(20, 36, 51, 0.2);
}

.pledge__seal {
  width: 8.5rem;
  height: 8.5rem;
  border-radius: 50%;
  display: grid;
  place-content: center;
  text-align: center;
  background: conic-gradient(from 200deg, var(--pine), var(--leaf), var(--copper), var(--pine));
  color: #fff;
  box-shadow: 0 16px 32px -16px rgba(18, 56, 79, 0.55);
}

.pledge__seal strong {
  font-family: var(--display);
  font-size: 2.4rem;
  line-height: 1;
}

.pledge__seal span {
  display: block;
  max-width: 5.5rem;
  margin: 0.2rem auto 0;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.85;
}

.pledge__box h2 {
  font-size: clamp(1.7rem, 2.8vw, 2.3rem);
  margin-bottom: 0.75rem;
}

.pledge__box p {
  color: var(--mute);
  font-size: 1.02rem;
  max-width: 38rem;
}

/* ---------- ask / faq ---------- */
.ask {
  padding: 6rem 0;
  background: var(--paper);
}

.ask__head {
  max-width: 28rem;
  margin-bottom: 2.5rem;
}

.ask__head h2 {
  font-size: clamp(2rem, 3.4vw, 2.8rem);
}

.ask__list {
  max-width: 46rem;
}

.ask details {
  border-bottom: 1px solid var(--line);
}

.ask summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 0.2rem;
  font-weight: 650;
  font-size: 1.02rem;
}

.ask summary::-webkit-details-marker {
  display: none;
}

.ask summary::after {
  content: "";
  width: 0.65rem;
  height: 0.65rem;
  border-right: 1.5px solid var(--pine);
  border-bottom: 1.5px solid var(--pine);
  transform: rotate(45deg);
  transition: transform 0.25s var(--ease);
  flex-shrink: 0;
}

.ask details[open] summary::after {
  transform: rotate(-135deg);
}

.ask__a {
  padding: 0 0.2rem 1.25rem;
  color: var(--mute);
  font-size: 0.98rem;
}

/* ---------- close ---------- */
.close {
  padding: 6rem 0;
  background:
    linear-gradient(160deg, #1F5A82 0%, var(--pine-deep) 100%);
  color: var(--sand);
  text-align: center;
}

.close__inner {
  max-width: 40rem;
}

.close h2 {
  font-size: clamp(2rem, 4vw, 3.1rem);
  margin-bottom: 1rem;
}

.close p {
  color: rgba(244, 248, 252, 0.78);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.close small {
  display: block;
  margin-top: 1.1rem;
  font-size: 0.86rem;
  color: rgba(244, 248, 252, 0.58);
}

/* ---------- footer ---------- */
.foot {
  background: #0A1C2A;
  color: rgba(244, 248, 252, 0.6);
  padding: 3.2rem 0 2.4rem;
  font-size: 0.86rem;
}

.foot__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding-bottom: 1.8rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(244, 248, 252, 0.12);
}

.foot__nav {
  display: flex;
  gap: 1.4rem;
}

.foot__nav a {
  text-decoration: none;
  transition: color 0.2s;
}

.foot__nav a:hover {
  color: var(--sand);
}

.foot__legal {
  max-width: 52rem;
  font-size: 0.76rem;
  line-height: 1.7;
  opacity: 0.8;
}

.foot__copy {
  margin-top: 1.1rem;
  font-size: 0.8rem;
}

/* ---------- payment status ---------- */
.paywall {
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 2.5rem 1.25rem;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 50% at 80% 10%, rgba(46, 139, 196, 0.22), transparent 55%),
    radial-gradient(ellipse 55% 45% at 10% 90%, rgba(255, 210, 0, 0.12), transparent 50%),
    var(--mist);
}

.paywall__panel {
  width: min(100%, 34rem);
  padding: 2.8rem 2.6rem 2.4rem;
  text-align: center;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 1.25rem;
  box-shadow: 0 28px 60px -32px rgba(20, 36, 51, 0.28);
  animation: stageIn 0.55s var(--ease) both;
}

.paywall__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 2rem;
  font-family: var(--display);
  font-size: 1.25rem;
}

.paywall__brand .mark__glyph {
  width: 1.35rem;
  height: 1.35rem;
}

.paywall__icon {
  width: 5.2rem;
  height: 5.2rem;
  margin: 0 auto 1.4rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  padding: 0.7rem;
}

.paywall__icon svg {
  width: 100%;
  height: 100%;
}

.paywall--ok .paywall__icon {
  color: var(--leaf);
  background: var(--leaf-soft);
}

.paywall--no .paywall__icon {
  color: #B45309;
  background: #FFF3B0;
}

.paywall__eyebrow {
  display: block;
  margin-bottom: 0.65rem;
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--leaf);
}

.paywall--no .paywall__eyebrow {
  color: #B45309;
}

.paywall h1 {
  font-size: clamp(2rem, 5vw, 2.7rem);
  margin-bottom: 0.9rem;
}

.paywall__lead {
  font-size: 1.05rem;
  font-weight: 550;
}

.paywall__note {
  max-width: 26rem;
  margin: 0.7rem auto 0;
  color: var(--mute);
  font-size: 0.95rem;
}

.paywall__secure {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.9rem;
  padding-top: 1.3rem;
  border-top: 1px solid var(--line);
  color: rgba(20, 36, 51, 0.5);
  font-size: 0.8rem;
}

/* ---------- empty / 404 ---------- */
.empty {
  min-height: 70vh;
  display: grid;
  place-items: center;
  padding: 4rem 1.5rem;
  text-align: center;
}

.empty h1 {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  margin-bottom: 0.75rem;
}

.empty p {
  color: var(--mute);
  margin-bottom: 1.75rem;
}

/* ---------- responsive ---------- */
@media (max-width: 960px) {
  .mast__nav {
    display: none;
  }

  .pulse__row {
    grid-template-columns: 1fr 1fr;
  }

  .path__rails,
  .voices__stack,
  .plans {
    grid-template-columns: 1fr;
  }

  .rift__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .plans {
    max-width: 26rem;
    margin-inline: auto;
  }

  .pledge__box {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    padding: 2.2rem 1.5rem;
  }

  .stage {
    min-height: auto;
    padding: 6rem 0 4rem;
    align-items: center;
  }
}

@media (max-width: 600px) {
  .lane {
    width: calc(100% - 28px);
  }

  .paywall__panel {
    padding: 2.2rem 1.4rem 1.9rem;
  }

  .pulse__row {
    gap: 1.1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal,
  .stage__copy,
  .paywall__panel,
  .stage__veil {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}
