:root {
  --pearl: #f8f5ec;
  --pearl-bright: #fffdf7;
  --pearl-deep: #eee7d6;
  --ink: #18241f;
  --ink-soft: #4f5a53;
  --navy: #071724;
  --navy-soft: #0d2940;
  --navy-glow: #153f5d;
  --gold: #ba8a2d;
  --gold-deep: #8d641d;
  --gold-light: #f0d58a;
  --gold-pale: #fff2c7;
  --aqua: #8ccfd0;
  --rose: #efd5c9;
  --line: rgba(141, 100, 29, .22);
  --header-height: 68px;
  --page-pad: clamp(24px, 5vw, 84px);
  --section-pad: clamp(88px, 11vw, 176px);
  --content-max: 1240px;
  --copy-max: 680px;
  --serif: Georgia, 'Times New Roman', serif;
  --sans: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 16px);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--pearl);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  letter-spacing: -.015em;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible,
input:focus-visible {
  outline: 3px solid var(--gold-light);
  outline-offset: 4px;
}

h1,
h2,
h3,
p,
blockquote {
  margin-top: 0;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  left: 18px;
  top: 14px;
  z-index: 1000;
  padding: 12px 18px;
  color: #fff;
  background: var(--navy);
  border-radius: 999px;
  transform: translateY(-150%);
  transition: transform .2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.page-pad {
  padding-left: var(--page-pad);
  padding-right: var(--page-pad);
}

.section-pad {
  padding: var(--section-pad) var(--page-pad);
}

.copy-column {
  max-width: var(--copy-max);
}

.eyebrow {
  margin-bottom: 22px;
  color: var(--gold-deep);
  font-size: 11px;
  font-weight: 750;
  line-height: 1.2;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.eyebrow-light {
  color: var(--gold-light);
}

.lead {
  font-family: var(--serif);
  font-size: clamp(23px, 2.2vw, 34px);
  line-height: 1.35;
  letter-spacing: -.025em;
}

.closing-line {
  margin-top: 42px;
  color: var(--gold-deep);
  font-family: var(--serif);
  font-size: 24px;
  font-style: italic;
}

.closing-line.light {
  color: var(--gold-light);
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 680;
  line-height: 1.1;
  letter-spacing: -.01em;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform .25s ease, background-color .25s ease, color .25s ease, box-shadow .25s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-gold {
  color: #251c0a;
  background: linear-gradient(135deg, #ffe9a8, #c59636 72%, #f8d77b);
  box-shadow: 0 14px 30px rgba(141, 100, 29, .2), inset 0 1px 0 rgba(255, 255, 255, .75);
}

.button-gold:hover {
  box-shadow: 0 18px 38px rgba(141, 100, 29, .28), inset 0 1px 0 rgba(255, 255, 255, .75);
}

.button-dark {
  color: #fff;
  background: var(--navy);
}

.button-outline-light {
  color: #fff;
  border-color: rgba(255, 255, 255, .48);
  background: transparent;
}

.button-outline-light:hover {
  color: var(--navy);
  background: #fff;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--gold-deep);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
}

.text-link span {
  transition: transform .25s ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  display: grid;
  min-height: var(--header-height);
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 10px clamp(20px, 4vw, 64px);
  border-bottom: 1px solid rgba(141, 100, 29, .12);
  background: rgba(255, 253, 247, .82);
  backdrop-filter: saturate(150%) blur(18px);
  -webkit-backdrop-filter: saturate(150%) blur(18px);
  transition: box-shadow .3s ease, background-color .3s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 253, 247, .94);
  box-shadow: 0 12px 34px rgba(32, 39, 34, .08);
}

.brand {
  display: inline-flex;
  width: max-content;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  text-decoration: none;
}

.brand-symbol {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(141, 100, 29, .48);
  border-radius: 50%;
  color: var(--gold-deep);
  font-family: var(--serif);
  font-size: 12px;
}

.brand-name {
  font-family: var(--serif);
  font-size: 16px;
  letter-spacing: -.02em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2vw, 34px);
}

.site-nav a {
  color: rgba(24, 36, 31, .76);
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: color .2s ease;
}

.site-nav a:hover {
  color: var(--gold-deep);
}

.header-cta {
  justify-self: end;
  padding: 9px 16px;
  border-radius: 999px;
  color: #fff;
  background: var(--navy);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
}

.menu-toggle {
  display: none;
}

.hero {
  display: grid;
  min-height: 100svh;
  grid-template-columns: minmax(0, .92fr) minmax(430px, 1.08fr);
  padding-top: var(--header-height);
  background: var(--pearl-bright);
}

.hero-copy {
  position: relative;
  display: flex;
  min-height: calc(100svh - var(--header-height));
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  overflow: hidden;
  padding-top: clamp(70px, 9vh, 120px);
  padding-bottom: clamp(56px, 8vh, 100px);
}

.hero-copy > *:not(.hero-halo) {
  position: relative;
  z-index: 2;
  max-width: 660px;
}

.hero h1 {
  margin-bottom: 28px;
  font-family: var(--serif);
  font-size: clamp(58px, 6vw, 104px);
  font-weight: 400;
  line-height: .94;
  letter-spacing: -.055em;
}

.hero h1 em {
  color: var(--gold-deep);
  font-weight: 400;
}

.hero-lede {
  max-width: 610px;
  margin-bottom: 34px;
  color: var(--ink-soft);
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.app-return {
  margin-top: 34px;
  color: var(--ink-soft);
  font-size: 13px;
  text-decoration: none;
}

.app-return span {
  color: var(--gold-deep);
  font-weight: 700;
}

.hero-halo {
  position: absolute;
  right: -240px;
  bottom: -260px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(186, 138, 45, .2);
  border-radius: 50%;
  box-shadow: 0 0 0 58px rgba(186, 138, 45, .035), 0 0 0 116px rgba(186, 138, 45, .025);
}

.hero-visual {
  position: relative;
  min-height: calc(100svh - var(--header-height));
  overflow: hidden;
  background-color: #f5e6bd;
  background-image: url('assets/heaven-gates.webp');
  background-position: center center;
  background-size: cover;
}

.hero-visual::after {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(90deg, rgba(255, 253, 247, .18), transparent 22%), linear-gradient(0deg, rgba(38, 31, 18, .22), transparent 28%);
  content: '';
  pointer-events: none;
}

.gate-veil {
  position: absolute;
  inset-block: 0;
  z-index: 6;
  width: 51%;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .98), rgba(255, 247, 219, .93)),
    repeating-linear-gradient(90deg, transparent 0 48px, rgba(186, 138, 45, .16) 49px 50px);
  box-shadow: 0 0 70px rgba(255, 255, 255, .78);
  pointer-events: none;
}

.gate-veil-left {
  left: 0;
  transform-origin: left center;
  animation: open-left 1.8s .35s cubic-bezier(.72, 0, .18, 1) forwards;
}

.gate-veil-right {
  right: 0;
  transform-origin: right center;
  animation: open-right 1.8s .35s cubic-bezier(.72, 0, .18, 1) forwards;
}

.light-breath {
  position: absolute;
  inset: 10% 4% 20%;
  z-index: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 34%, rgba(255, 255, 255, .86), rgba(255, 235, 163, .16) 35%, transparent 70%);
  animation: breathe 7s ease-in-out infinite;
}

.motes span {
  position: absolute;
  left: var(--x);
  top: var(--y);
  z-index: 4;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #fff6c6;
  box-shadow: 0 0 16px 5px rgba(245, 212, 113, .7);
  animation: mote 7s var(--delay) ease-in-out infinite;
}

.hero-image-caption {
  position: absolute;
  right: 28px;
  bottom: 22px;
  z-index: 4;
  margin: 0;
  color: rgba(255, 255, 255, .9);
  font-family: var(--serif);
  font-size: 14px;
  font-style: italic;
  text-shadow: 0 2px 18px rgba(0, 0, 0, .4);
}

.remember-strip {
  display: flex;
  min-height: 220px;
  align-items: center;
  justify-content: center;
  gap: 30px;
  padding: 50px var(--page-pad);
  color: #fff;
  background: var(--navy);
}

.remember-strip p {
  max-width: 960px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(26px, 3vw, 46px);
  font-style: italic;
  line-height: 1.25;
  text-align: center;
}

.remember-mark {
  width: 42px;
  height: 1px;
  background: var(--gold-light);
}

.sanctuary {
  display: grid;
  max-width: var(--content-max);
  grid-template-columns: minmax(330px, .9fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(56px, 8vw, 126px);
  margin: 0 auto;
}

.sanctuary-image {
  position: relative;
  min-height: min(760px, 75svh);
  overflow: hidden;
  border-radius: 210px 210px 24px 24px;
  background: url('assets/heaven-arch.webp') center center / cover no-repeat;
  box-shadow: 0 28px 80px rgba(95, 78, 39, .18);
}

.sanctuary-image::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, .75);
  border-radius: inherit;
  box-shadow: inset 0 0 0 10px rgba(255, 255, 255, .18);
  content: '';
}

.image-glow {
  position: absolute;
  inset: 16% 8% 34%;
  background: radial-gradient(circle, rgba(255, 255, 255, .5), transparent 68%);
  animation: breathe 8s ease-in-out infinite;
}

.sanctuary-copy p:not(.eyebrow, .lead, .closing-line) {
  color: var(--ink-soft);
}

.sanctuary-copy h2,
.glow-intro h2,
.vision-heading h2,
.guidance-heading h2 {
  margin-bottom: 32px;
  font-family: var(--serif);
  font-size: clamp(48px, 5vw, 82px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -.045em;
}

.glow-section {
  display: grid;
  max-width: var(--content-max);
  grid-template-columns: 1.05fr .95fr;
  gap: 80px 110px;
  margin: 0 auto;
  padding-top: clamp(40px, 7vw, 100px);
}

.glow-intro {
  align-self: end;
}

.glow-statement {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  padding: clamp(42px, 6vw, 80px);
  color: #fff;
  background: var(--navy);
  border-radius: 50% 50% 24px 24px / 28% 28% 24px 24px;
}

.glow-statement blockquote {
  position: relative;
  z-index: 2;
  margin: 76px 0 0;
  font-family: var(--serif);
  font-size: clamp(44px, 5vw, 74px);
  font-style: italic;
  line-height: 1.02;
  letter-spacing: -.04em;
}

.small-label {
  position: relative;
  z-index: 2;
  color: var(--gold-light);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.heart-orbit {
  position: absolute;
  right: -120px;
  bottom: -150px;
  width: 380px;
  height: 380px;
  border: 1px solid rgba(240, 213, 138, .3);
  border-radius: 50%;
  box-shadow: 0 0 0 46px rgba(240, 213, 138, .05), 0 0 0 92px rgba(240, 213, 138, .03);
}

.heart-orbit span {
  position: absolute;
  left: 38px;
  top: 44px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--gold-light);
  box-shadow: 0 0 24px 8px rgba(240, 213, 138, .55);
}

.manifest-list {
  grid-column: 1 / -1;
  border-top: 1px solid var(--line);
}

.manifest-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  align-items: start;
  gap: 26px;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}

.manifest-item span {
  color: var(--gold-deep);
  font-family: var(--serif);
  font-size: 15px;
}

.manifest-item p {
  max-width: 860px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(24px, 2.4vw, 38px);
  line-height: 1.25;
}

.made-manifest {
  grid-column: 2;
  max-width: 540px;
  padding-left: 36px;
  border-left: 1px solid var(--gold);
}

.made-manifest p:last-child {
  margin-bottom: 0;
  font-family: var(--serif);
  font-size: 25px;
  line-height: 1.4;
}

.resonance-section {
  display: grid;
  min-height: 820px;
  grid-template-columns: minmax(0, 1fr) minmax(460px, .95fr);
  color: #fff;
  background: var(--navy);
}

.resonance-copy {
  align-self: center;
  max-width: 780px;
  justify-self: end;
}

.resonance-copy h2,
.app-intro h2,
.meaning-copy h2,
.closing-section h2 {
  margin-bottom: 32px;
  font-family: var(--serif);
  font-size: clamp(52px, 5.8vw, 92px);
  font-weight: 400;
  line-height: .98;
  letter-spacing: -.05em;
}

.resonance-copy p:not(.eyebrow, .lead, .closing-line) {
  color: rgba(255, 255, 255, .7);
}

.beacon-field {
  position: relative;
  min-height: 740px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 50%, rgba(21, 63, 93, .85), transparent 38%),
    radial-gradient(circle at 25% 20%, rgba(240, 213, 138, .06), transparent 22%),
    linear-gradient(160deg, #092337, #04101c);
}

.field-rings {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(72vw, 640px);
  aspect-ratio: 1;
  border: 1px solid rgba(240, 213, 138, .12);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(240, 213, 138, .035), 0 0 0 140px rgba(240, 213, 138, .025), 0 0 0 210px rgba(240, 213, 138, .016);
  transform: translate(-50%, -50%);
}

.beacon-core {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 108px;
  height: 108px;
  border: 1px solid rgba(255, 241, 194, .52);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.beacon-core::before,
.beacon-core::after {
  position: absolute;
  inset: 50%;
  width: 1px;
  height: 180px;
  background: linear-gradient(transparent, var(--gold-light), transparent);
  content: '';
  transform: translate(-50%, -50%);
}

.beacon-core::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.beacon-core span {
  position: absolute;
  inset: 28px;
  border-radius: 50%;
  background: #fff3bd;
  box-shadow: 0 0 22px 9px rgba(249, 211, 107, .8), 0 0 70px 34px rgba(249, 211, 107, .22);
  animation: pulse 4s ease-in-out infinite;
}

.beacon-points i,
.mini-world i {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-light);
  box-shadow: 0 0 18px 5px rgba(240, 213, 138, .6);
}

.beacon-points i {
  transform: scale(var(--s));
  animation: pulse 4.8s var(--d) ease-in-out infinite;
}

.field-caption {
  position: absolute;
  left: 50%;
  bottom: 48px;
  width: max-content;
  max-width: calc(100% - 48px);
  margin: 0;
  color: rgba(255, 255, 255, .62);
  font-family: var(--serif);
  font-size: 15px;
  font-style: italic;
  transform: translateX(-50%);
}

.vision-story {
  display: grid;
  max-width: var(--content-max);
  grid-template-columns: 1fr 1fr;
  gap: 64px 110px;
  margin: 0 auto;
}

.vision-heading {
  max-width: 700px;
}

.vision-body {
  align-self: end;
  color: var(--ink-soft);
}

.vision-quote {
  position: relative;
  grid-column: 1 / -1;
  max-width: 1020px;
  margin: 80px auto;
  padding: 24px 0 24px clamp(60px, 8vw, 120px);
}

.vision-quote::before {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(transparent, var(--gold), transparent);
  content: '';
}

.vision-quote > span {
  position: absolute;
  left: 18px;
  top: -34px;
  color: rgba(186, 138, 45, .32);
  font-family: var(--serif);
  font-size: 130px;
  line-height: 1;
}

.vision-quote p {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(36px, 4.3vw, 68px);
  font-style: italic;
  line-height: 1.14;
  letter-spacing: -.035em;
}

.vision-resolution {
  grid-column: 2;
  max-width: 620px;
  padding: 44px;
  background: var(--pearl-bright);
  box-shadow: 0 28px 70px rgba(72, 60, 35, .08);
}

.vision-resolution .memory-line {
  font-family: var(--serif);
  font-size: 25px;
  font-style: italic;
  line-height: 1.4;
}

.vision-resolution strong {
  display: block;
  margin: 34px 0;
  color: var(--gold-deep);
  font-family: var(--serif);
  font-size: 33px;
  font-weight: 400;
}

.app-section {
  color: #fff;
  background: linear-gradient(180deg, #071724, #0a2134);
}

.app-intro {
  max-width: 940px;
  margin: 0 auto clamp(70px, 8vw, 120px);
  text-align: center;
}

.app-intro .lead {
  max-width: 760px;
  margin-inline: auto;
  color: rgba(255, 255, 255, .72);
}

.app-experience {
  display: grid;
  max-width: var(--content-max);
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: clamp(60px, 9vw, 140px);
  margin: 0 auto;
}

.app-steps {
  border-top: 1px solid rgba(240, 213, 138, .18);
}

.app-step {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 26px;
  padding: 32px 0;
  border-bottom: 1px solid rgba(240, 213, 138, .18);
}

.app-step > span {
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 14px;
}

.app-step h3 {
  margin-bottom: 7px;
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 400;
}

.app-step p {
  margin: 0;
  color: rgba(255, 255, 255, .65);
}

.phone-stage {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.phone-shell {
  width: min(100%, 360px);
  padding: 10px;
  border: 1px solid rgba(240, 213, 138, .4);
  border-radius: 48px;
  background: #111b22;
  box-shadow: 0 40px 90px rgba(0, 0, 0, .44), 0 0 70px rgba(240, 213, 138, .08);
}

.phone-top {
  position: relative;
  z-index: 3;
  width: 112px;
  height: 28px;
  margin: 0 auto -20px;
  border-radius: 20px;
  background: #050a0e;
}

.phone-screen {
  position: relative;
  display: flex;
  min-height: 680px;
  align-items: center;
  flex-direction: column;
  overflow: hidden;
  padding: 54px 28px 36px;
  border-radius: 38px;
  background: radial-gradient(circle at 50% 43%, #164b6d 0, #0c2b43 35%, #061725 72%);
  text-align: center;
}

.phone-screen > p {
  color: rgba(255, 255, 255, .62);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.mini-world {
  position: relative;
  width: 260px;
  height: 260px;
  margin: 48px 0 10px;
  border: 1px solid rgba(240, 213, 138, .16);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(140, 207, 208, .16), transparent 60%);
  box-shadow: inset 0 0 60px rgba(140, 207, 208, .09);
}

.mini-ring {
  position: absolute;
  left: 50%;
  top: 50%;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.ring-a {
  width: 190px;
  height: 90px;
}

.ring-b {
  width: 90px;
  height: 220px;
}

.phone-beacon {
  position: absolute;
  left: 50%;
  top: 245px;
  width: 88px;
  height: 88px;
  border: 1px solid rgba(255, 238, 179, .52);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.phone-beacon span {
  position: absolute;
  inset: 28px;
  border-radius: 50%;
  background: #fff0b3;
  box-shadow: 0 0 24px 10px rgba(255, 221, 120, .72), 0 0 70px 32px rgba(255, 221, 120, .18);
  animation: pulse 4s ease-in-out infinite;
}

.phone-screen strong {
  margin-top: 24px;
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
}

.phone-screen small {
  margin-top: 12px;
  color: rgba(255, 255, 255, .55);
  line-height: 1.5;
}

.concept-note {
  margin-top: 20px;
  color: rgba(255, 255, 255, .45);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.meditation-section {
  position: relative;
  display: grid;
  min-height: 980px;
  grid-template-columns: 1.1fr .9fr;
  overflow: hidden;
  background: #dff3ef;
}

.water-scene {
  position: relative;
  min-height: 980px;
  background: url('assets/heaven-water.webp') center center / cover no-repeat;
}

.water-scene::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 58%, rgba(248, 245, 236, .84) 90%, var(--pearl) 100%);
  content: '';
}

.water-shimmer {
  position: absolute;
  inset: 44% 8% 8%;
  z-index: 2;
  opacity: .34;
  background: repeating-linear-gradient(168deg, transparent 0 18px, rgba(255, 255, 255, .62) 20px, transparent 23px 40px);
  mask-image: linear-gradient(transparent, #000 30%, #000 76%, transparent);
  animation: shimmer 9s linear infinite;
}

.meditation-card {
  position: relative;
  z-index: 3;
  width: min(650px, calc(100% - 48px));
  align-self: center;
  justify-self: center;
  margin: 90px 24px;
  padding: clamp(40px, 6vw, 76px);
  border: 1px solid rgba(186, 138, 45, .18);
  background: rgba(255, 253, 247, .95);
  box-shadow: 0 30px 90px rgba(58, 66, 51, .17);
}

.meditation-card h2 {
  margin-bottom: 0;
  font-family: var(--serif);
  font-size: clamp(48px, 5vw, 76px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -.05em;
}

.meditation-name {
  margin: 10px 0 34px;
  color: var(--gold-deep);
  font-family: var(--serif);
  font-size: 24px;
  font-style: italic;
}

.form-invitation {
  margin: 34px 0 28px;
  font-family: var(--serif);
  font-size: 24px;
  font-style: italic;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.meditation-form label {
  display: block;
}

.form-trap {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.meditation-form label > span {
  display: block;
  margin-bottom: 8px;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 700;
}

.meditation-form input {
  width: 100%;
  height: 52px;
  padding: 0 15px;
  border: 1px solid rgba(24, 36, 31, .2);
  border-radius: 4px;
  color: var(--ink);
  background: #fff;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.meditation-form input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(186, 138, 45, .1);
  outline: 0;
}

.meditation-form input[aria-invalid='true'] {
  border-color: #9e3d32;
}

.field-error {
  display: block;
  min-height: 18px;
  margin-top: 5px;
  color: #9e3d32;
  font-size: 11px;
}

.form-button {
  width: 100%;
  margin-top: 18px;
}

.form-button[disabled] {
  opacity: .68;
  cursor: wait;
}

.form-status {
  min-height: 21px;
  margin: 12px 0 0;
  color: #9e3d32;
  font-size: 12px;
  line-height: 1.5;
  text-align: center;
}

.privacy-note {
  margin: 14px 0 0;
  color: var(--ink-soft);
  font-size: 11px;
  line-height: 1.45;
}

.form-success {
  padding: 40px 0 0;
  text-align: center;
}

.form-success[hidden] {
  display: none;
}

.form-success h3 {
  margin-bottom: 18px;
  font-family: var(--serif);
  font-size: 40px;
  font-weight: 400;
}

.success-light {
  width: 64px;
  height: 64px;
  margin: 0 auto 34px;
  border: 1px solid rgba(186, 138, 45, .35);
  border-radius: 50%;
  background: #fff0b1;
  box-shadow: 0 0 24px 9px rgba(240, 213, 138, .6), 0 0 64px 26px rgba(240, 213, 138, .18);
}

.meaning-section {
  display: grid;
  min-height: 880px;
  grid-template-columns: .9fr 1.1fr;
  align-items: center;
  color: #fff;
  background: #020403;
}

.meaning-seal {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(50px, 7vw, 110px);
}

.meaning-seal img {
  width: min(100%, 680px);
  height: auto;
}

.meaning-copy {
  max-width: 820px;
}

.meaning-copy p:not(.eyebrow, .field-truth) {
  color: rgba(255, 255, 255, .7);
}

.field-truth {
  margin-top: 42px;
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: clamp(24px, 2.6vw, 38px);
  font-style: italic;
  line-height: 1.35;
}

.guidance-section {
  max-width: var(--content-max);
  margin: 0 auto;
}

.guidance-heading {
  max-width: 840px;
  margin-bottom: 80px;
}

.guidance-paths {
  display: grid;
  grid-template-columns: .82fr .95fr 1.18fr;
  align-items: stretch;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.path-card {
  display: flex;
  min-height: 500px;
  flex-direction: column;
  padding: clamp(28px, 3vw, 48px);
  border-right: 1px solid var(--line);
  background: transparent;
  transition: background-color .3s ease, transform .3s ease;
}

.path-card:last-child {
  border-right: 0;
}

.path-card:hover {
  background: var(--pearl-bright);
  transform: translateY(-6px);
}

.path-number {
  min-height: 38px;
  color: var(--gold-deep);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.path-card h3 {
  margin: 28px 0 10px;
  font-family: var(--serif);
  font-size: clamp(33px, 3vw, 48px);
  font-weight: 400;
  line-height: 1;
}

.path-price {
  color: var(--gold-deep);
  font-family: var(--serif);
  font-size: 30px;
}

.path-card > p:not(.path-number, .path-price) {
  color: var(--ink-soft);
}

.path-card .text-link {
  margin-top: auto;
  padding-top: 30px;
}

.guidance-note {
  max-width: 760px;
  margin: 54px auto 0;
  color: var(--ink-soft);
  font-size: 13px;
  text-align: center;
}

.closing-section {
  position: relative;
  display: flex;
  min-height: 860px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 50% 42%, rgba(53, 103, 127, .35), transparent 32%),
    linear-gradient(180deg, #0a2a3e, #06131f);
  text-align: center;
}

.closing-section > *:not(.closing-orbit) {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.closing-section .lead {
  color: rgba(255, 255, 255, .72);
}

.closing-invitation {
  margin: 34px 0;
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: clamp(26px, 2.8vw, 40px);
  font-style: italic;
}

.closing-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.signoff {
  margin-top: 70px;
  color: rgba(255, 255, 255, .6);
  font-family: var(--serif);
  font-size: 16px;
}

.closing-orbit {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  width: min(76vw, 780px);
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(240, 213, 138, .12);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(240, 213, 138, .035), 0 0 0 160px rgba(240, 213, 138, .025);
  transform: translate(-50%, -50%);
}

.closing-orbit span {
  color: rgba(240, 213, 138, .06);
  font-family: var(--serif);
  font-size: min(27vw, 330px);
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  padding: 28px var(--page-pad);
  color: rgba(255, 255, 255, .54);
  background: #02090f;
  font-size: 11px;
}

.footer-brand {
  color: #fff;
}

.site-footer p {
  margin: 0;
}

.site-footer p:last-child {
  justify-self: end;
}

.reveal {
  opacity: 1;
  transform: translateY(0);
}

.motion-ready .reveal {
  transform: translateY(22px);
  transition: transform .8s cubic-bezier(.2, .68, .2, 1);
}

.motion-ready .reveal.is-visible {
  transform: translateY(0);
}

@keyframes open-left {
  to { transform: translateX(-105%); }
}

@keyframes open-right {
  to { transform: translateX(105%); }
}

@keyframes breathe {
  0%, 100% { opacity: .58; transform: scale(.98); }
  50% { opacity: .9; transform: scale(1.04); }
}

@keyframes mote {
  0%, 100% { opacity: .18; transform: translateY(8px) scale(.7); }
  50% { opacity: .95; transform: translateY(-16px) scale(1.15); }
}

@keyframes pulse {
  0%, 100% { opacity: .55; transform: scale(.82); }
  50% { opacity: 1; transform: scale(1.15); }
}

@keyframes shimmer {
  0% { transform: translateX(-5%) translateY(0); }
  50% { transform: translateX(5%) translateY(-8px); }
  100% { transform: translateX(-5%) translateY(0); }
}

@media (max-width: 1120px) {
  .site-nav {
    gap: 18px;
  }

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

  .hero h1 {
    font-size: clamp(54px, 7vw, 80px);
  }

  .resonance-section {
    grid-template-columns: 1fr 1fr;
  }

  .guidance-paths {
    grid-template-columns: 1fr 1fr;
  }

  .path-card:nth-child(2) {
    border-right: 0;
  }

  .path-card-long {
    grid-column: 1 / -1;
    min-height: 380px;
    border-top: 1px solid var(--line);
  }
}

@media (max-width: 920px) {
  :root {
    --header-height: 62px;
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: flex;
    width: 46px;
    height: 46px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 7px;
    justify-self: end;
    border: 0;
    border-radius: 50%;
    color: var(--ink);
    background: transparent;
    cursor: pointer;
  }

  .menu-line {
    width: 21px;
    height: 1px;
    background: currentColor;
    transition: transform .25s ease;
  }

  .menu-toggle[aria-expanded='true'] .menu-line:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-toggle[aria-expanded='true'] .menu-line:nth-child(2) {
    transform: translateY(-4px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    inset: var(--header-height) 0 auto;
    display: flex;
    min-height: calc(100svh - var(--header-height));
    align-items: flex-start;
    flex-direction: column;
    gap: 0;
    padding: 48px var(--page-pad);
    background: rgba(255, 253, 247, .98);
    transform: translateY(-120%);
    visibility: hidden;
    transition: transform .35s ease, visibility .35s;
  }

  .site-nav.is-open {
    transform: translateY(0);
    visibility: visible;
  }

  .site-nav a {
    width: 100%;
    padding: 20px 0;
    border-bottom: 1px solid var(--line);
    font-family: var(--serif);
    font-size: 28px;
    font-weight: 400;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .hero-copy {
    min-height: min(720px, 78svh);
    padding-top: 78px;
  }

  .hero-visual {
    min-height: 74svh;
    background-position: center 38%;
  }

  .sanctuary,
  .glow-section,
  .vision-story,
  .app-experience {
    grid-template-columns: 1fr;
  }

  .sanctuary-image {
    min-height: 720px;
  }

  .made-manifest,
  .vision-resolution {
    grid-column: 1;
  }

  .resonance-section {
    grid-template-columns: 1fr;
  }

  .resonance-copy {
    max-width: none;
  }

  .beacon-field {
    min-height: 680px;
  }

  .vision-quote {
    margin: 30px auto 70px;
  }

  .meditation-section {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .water-scene {
    min-height: 720px;
  }

  .water-scene::after {
    background: linear-gradient(0deg, var(--pearl) 0, rgba(248, 245, 236, .62) 22%, transparent 50%);
  }

  .meditation-card {
    width: min(720px, calc(100% - 48px));
    margin-top: -170px;
  }

  .meaning-section {
    grid-template-columns: 1fr;
  }

  .meaning-seal {
    padding-bottom: 0;
  }

  .meaning-seal img {
    width: min(72vw, 560px);
  }
}

@media (max-width: 640px) {
  :root {
    --page-pad: 22px;
    --section-pad: 88px;
  }

  body {
    font-size: 16px;
  }

  .brand-name {
    font-size: 14px;
  }

  .hero-copy {
    min-height: auto;
    justify-content: flex-start;
    padding-top: 88px;
    padding-bottom: 58px;
  }

  .hero h1 {
    font-size: clamp(50px, 15vw, 72px);
  }

  .hero-lede {
    font-size: 18px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-visual {
    min-height: 82svh;
  }

  .hero-image-caption {
    right: 18px;
    bottom: 16px;
  }

  .remember-strip {
    min-height: 250px;
    flex-direction: column;
  }

  .remember-strip p {
    font-size: 27px;
  }

  .sanctuary {
    gap: 58px;
  }

  .sanctuary-image {
    min-height: 560px;
    border-radius: 150px 150px 18px 18px;
  }

  .sanctuary-copy h2,
  .glow-intro h2,
  .vision-heading h2,
  .guidance-heading h2,
  .resonance-copy h2,
  .app-intro h2,
  .meaning-copy h2,
  .closing-section h2 {
    font-size: clamp(44px, 12vw, 64px);
  }

  .glow-section {
    gap: 58px;
  }

  .glow-statement {
    min-height: 420px;
    border-radius: 160px 160px 20px 20px;
  }

  .manifest-item {
    grid-template-columns: 46px 1fr;
    gap: 14px;
  }

  .manifest-item p {
    font-size: 24px;
  }

  .made-manifest {
    padding-left: 22px;
  }

  .resonance-section {
    min-height: auto;
  }

  .beacon-field {
    min-height: 560px;
  }

  .vision-story {
    gap: 48px;
  }

  .vision-quote {
    padding-left: 50px;
  }

  .vision-quote > span {
    left: 8px;
    font-size: 90px;
  }

  .vision-quote p {
    font-size: 35px;
  }

  .vision-resolution {
    padding: 30px 24px;
  }

  .phone-screen {
    min-height: 620px;
  }

  .water-scene {
    min-height: 600px;
  }

  .meditation-card {
    width: calc(100% - 24px);
    margin: -110px 12px 70px;
    padding: 34px 24px;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .meaning-seal {
    padding-inline: 16px;
  }

  .meaning-seal img {
    width: 94vw;
  }

  .guidance-paths {
    grid-template-columns: 1fr;
  }

  .path-card,
  .path-card:nth-child(2) {
    min-height: 420px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .path-card-long {
    grid-column: 1;
    border-top: 0;
  }

  .closing-section {
    min-height: 850px;
  }

  .closing-actions {
    width: 100%;
  }

  .closing-actions .button {
    width: 100%;
  }

  .site-footer {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .site-footer p:last-child {
    justify-self: center;
  }
}

@media (max-height: 700px) and (min-width: 921px) {
  .hero-copy {
    padding-top: 54px;
    padding-bottom: 44px;
  }

  .hero h1 {
    font-size: clamp(54px, 5vw, 76px);
  }

  .hero-lede {
    margin-bottom: 24px;
  }

  .app-return {
    margin-top: 22px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }

  .gate-veil {
    display: none;
  }

  .motion-ready .reveal {
    transform: none;
  }
}

.success-return {
  display: block;
  width: fit-content;
  margin: 18px auto 0;
  color: var(--ink-soft);
  font-size: 12px;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.delivery-page {
  color: #fff;
  background: #06131f;
}

.site-header-simple {
  grid-template-columns: 1fr auto;
}

.delivery-back {
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.delivery-back:hover {
  color: var(--gold-light);
}

.delivery-sanctuary {
  display: grid;
  min-height: 100svh;
  grid-template-columns: 1.02fr .98fr;
  padding-top: var(--header-height);
  background: #06131f;
}

.delivery-image {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  background:
    linear-gradient(90deg, transparent 65%, rgba(6, 19, 31, .92)),
    linear-gradient(0deg, rgba(6, 19, 31, .32), transparent 45%),
    url('assets/heaven-gates.webp') center / cover no-repeat;
}

.delivery-light {
  position: absolute;
  inset: 15% 8%;
  opacity: .72;
  background: radial-gradient(circle, rgba(255, 246, 193, .48), transparent 58%);
  filter: blur(18px);
  animation: breathe 7s ease-in-out infinite;
}

.delivery-content {
  display: flex;
  max-width: 760px;
  justify-content: center;
  flex-direction: column;
  padding: clamp(76px, 8vw, 140px) clamp(36px, 7vw, 104px);
  background:
    radial-gradient(circle at 18% 24%, rgba(87, 140, 155, .18), transparent 34%),
    #06131f;
}

.delivery-content h1 {
  margin: 16px 0 0;
  font-family: var(--serif);
  font-size: clamp(64px, 7vw, 112px);
  font-weight: 400;
  line-height: .88;
  letter-spacing: -.055em;
}

.delivery-content h1 em {
  color: var(--gold-light);
  font-weight: 400;
}

.delivery-name {
  margin: 18px 0 36px;
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 25px;
  font-style: italic;
}

.delivery-intro {
  max-width: 600px;
  color: rgba(255, 255, 255, .7);
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.75;
}

.audio-sanctuary {
  margin-top: 38px;
  padding: 28px;
  border: 1px solid rgba(240, 213, 138, .22);
  background: rgba(255, 255, 255, .045);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .2);
}

.audio-heading {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, .62);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.audio-sanctuary audio {
  display: block;
  width: 100%;
  color-scheme: dark;
}

.download-link {
  display: block;
  width: fit-content;
  margin-top: 20px;
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
}

.delivery-preparation {
  display: grid;
  gap: 18px;
  margin-top: 34px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, .12);
}

.delivery-preparation p {
  margin: 0;
  color: rgba(255, 255, 255, .58);
  font-size: 13px;
  line-height: 1.7;
}

.delivery-preparation span {
  display: block;
  margin-bottom: 4px;
  color: #fff;
  font-weight: 700;
}

.delivery-closing {
  display: grid;
  min-height: 720px;
  grid-template-columns: .7fr 1.3fr;
  align-items: center;
  gap: clamp(30px, 7vw, 110px);
  padding: clamp(80px, 10vw, 150px) var(--page-pad);
  color: var(--ink);
  background: var(--pearl);
}

.delivery-closing img {
  width: min(100%, 500px);
  justify-self: end;
}

.delivery-closing > div {
  max-width: 700px;
}

.delivery-closing .eyebrow {
  color: var(--gold-deep);
}

.delivery-closing h2 {
  margin: 18px 0 28px;
  font-family: var(--serif);
  font-size: clamp(44px, 5vw, 76px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -.045em;
}

.delivery-closing p:not(.eyebrow) {
  max-width: 620px;
  margin-bottom: 34px;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.7;
}

@media (max-width: 920px) {
  .site-header-simple {
    grid-template-columns: 1fr auto;
  }

  .delivery-back {
    font-size: 10px;
  }

  .delivery-sanctuary {
    grid-template-columns: 1fr;
  }

  .delivery-image {
    min-height: 38svh;
    background:
      linear-gradient(0deg, #06131f, transparent 38%),
      url('assets/heaven-gates.webp') center / cover no-repeat;
  }

  .delivery-content {
    max-width: none;
    padding-top: 30px;
  }

  .delivery-closing {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .delivery-closing img {
    width: min(78vw, 460px);
    justify-self: center;
  }

  .delivery-closing > div,
  .delivery-closing p:not(.eyebrow) {
    margin-inline: auto;
  }
}

@media (max-width: 520px) {
  .site-header-simple .brand-name {
    display: none;
  }

  .delivery-content {
    padding: 30px 22px 72px;
  }

  .delivery-content h1 {
    font-size: clamp(58px, 19vw, 82px);
  }

  .audio-sanctuary {
    padding: 22px 16px;
  }

  .delivery-closing {
    padding-inline: 22px;
  }
}
