:root {
  --bg: #121416;
  --ink: #f7f4ef;
  --ink-soft: rgba(247, 244, 239, 0.68);
  --ink-faint: rgba(247, 244, 239, 0.22);
  --line: rgba(247, 244, 239, 0.14);
  --paper: #f3eee6;
  --paper-ink: #24211e;
  --purple: #c4b5fd;
  --pink: #f9a8d4;
  --yellow: #fcd34d;
  --blue: #93c5fd;
  --sage: #86efac;
  --coral: #fca5a5;
  --serif: 'Fraunces', Georgia, 'Times New Roman', serif;
  --sans: 'DM Sans', system-ui, -apple-system, sans-serif;
  --hand: 'Caveat', 'Bradley Hand', cursive;
}

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

html {
  background: var(--bg);
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  background:
    radial-gradient(circle at 18% 12%, rgba(147, 197, 253, 0.08), transparent 28rem),
    radial-gradient(circle at 84% 16%, rgba(252, 165, 165, 0.08), transparent 26rem),
    linear-gradient(180deg, #151719 0%, #101214 48%, #151719 100%);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' /%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.defs {
  position: absolute;
  width: 0;
  height: 0;
  pointer-events: none;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header,
main,
footer {
  position: relative;
  z-index: 2;
}

.site-header {
  width: min(100% - clamp(2rem, 6vw, 6rem), 1180px);
  margin: 0 auto;
  padding: clamp(1.15rem, 2.4vw, 1.7rem) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.05rem;
}

.brand .brand-logo { margin: 0 -0.1rem; }

.brand-logo {
  width: 3rem;
  height: 3rem;
  border-radius: 0.5rem;
  object-fit: contain;
  display: block;
}

.wordmark {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 350;
  font-size: 1.3rem;
  font-variation-settings: 'opsz' 24, 'SOFT' 80;
}

.meta,
.header-nav {
  color: var(--ink-soft);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.header-nav {
  display: flex;
  gap: clamp(1rem, 3vw, 2rem);
}

.header-nav a {
  transition: color 0.25s ease;
}

.header-nav a:hover,
.header-nav a:focus-visible {
  color: var(--ink);
}

.nav-download {
  color: var(--ink);
}

body:not(.is-launched) .story-only,
body.is-launched .countdown-only {
  display: none !important;
}

.ann {
  font-family: var(--hand);
  line-height: 1.08;
  white-space: nowrap;
  pointer-events: none;
}

.countdown-page {
  min-height: calc(100svh - 9rem);
  display: grid;
  place-items: center;
  padding: clamp(2rem, 8vh, 5rem) clamp(1rem, 4vw, 3rem);
  text-align: center;
}

.countdown-shell {
  position: relative;
  width: min(100%, 52rem);
}

.countdown-title {
  font-family: var(--serif);
  font-weight: 350;
  font-size: clamp(2.35rem, 6vw, 5rem);
  line-height: 1.08;
  letter-spacing: 0;
  font-variation-settings: 'opsz' 144, 'SOFT' 30;
}

.countdown-title em,
.story-title em {
  font-style: italic;
  font-weight: 300;
  font-variation-settings: 'opsz' 144, 'SOFT' 100;
}

.mobile-break {
  display: none;
}

.countdown-wrap {
  position: relative;
  margin-top: clamp(3rem, 8vh, 5rem);
}

.countdown {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(0.8rem, 4vw, 3rem);
}

.countdown-tape {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  width: min(92%, 34rem);
  padding: clamp(0.55rem, 1.7vw, 0.9rem) clamp(1.1rem, 3vw, 2rem);
  transform: translate(-50%, -50%) rotate(-2deg);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.18), transparent 14% 86%, rgba(255, 255, 255, 0.16)),
    linear-gradient(180deg, rgba(255, 218, 224, 0.92), rgba(244, 177, 188, 0.9));
  border: 1px solid rgba(255, 238, 241, 0.32);
  box-shadow: 0 0.8rem 2rem rgba(0, 0, 0, 0.26), 0 0 2.4rem rgba(252, 165, 165, 0.12);
  color: #2b2115;
  font-family: var(--hand);
  font-size: clamp(1.55rem, 4.8vw, 3rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.4);
  pointer-events: none;
}

.countdown-tape::before,
.countdown-tape::after {
  content: '';
  position: absolute;
  top: 0;
  width: 1rem;
  height: 100%;
  background: rgba(255, 238, 241, 0.48);
}

.countdown-tape::before {
  left: 0;
  clip-path: polygon(0 0, 100% 0, 62% 18%, 100% 38%, 54% 56%, 100% 78%, 68% 100%, 0 100%);
}

.countdown-tape::after {
  right: 0;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 28% 100%, 0 78%, 46% 56%, 0 36%, 38% 18%);
}

.unit {
  display: grid;
  gap: 0.55rem;
}

.num {
  font-family: var(--serif);
  font-size: clamp(2.45rem, 7vw, 5rem);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.label,
.countdown-date,
.countdown-verse cite {
  color: var(--ink-soft);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.countdown-date {
  margin-top: 1.7rem;
  font-family: var(--serif);
  font-style: italic;
  letter-spacing: 0;
  text-transform: none;
}

.countdown-verse {
  max-width: 32rem;
  margin: clamp(3rem, 8vh, 5rem) auto 0;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  line-height: 1.65;
}

.countdown-verse cite {
  display: block;
  margin-top: 1rem;
  font-family: var(--sans);
  font-style: normal;
}

.ann-countdown {
  position: absolute;
  top: 39%;
  left: 0;
  color: var(--yellow);
  font-size: 1.35rem;
  transform: rotate(-3deg);
}

.ann-arrow-countdown {
  position: absolute;
  top: calc(39% + 1rem);
  left: 4%;
  width: 75px;
  height: 75px;
  color: var(--yellow);
}

.story-page {
  display: grid;
  gap: clamp(6rem, 14vw, 12rem);
  padding-bottom: clamp(4rem, 8vw, 7rem);
}

.story-hero {
  width: min(100% - clamp(2rem, 6vw, 6rem), 1180px);
  min-height: calc(100svh - 5.4rem);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(22rem, 1.1fr);
  align-items: center;
  gap: clamp(2rem, 7vw, 5.5rem);
  padding: clamp(2rem, 7vw, 6rem) 0 clamp(5rem, 10vw, 8rem);
}

.hero-copy {
  min-width: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1.2rem;
  color: var(--yellow);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow::before {
  content: '';
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 22px currentColor;
}

.story-title {
  font-family: var(--serif);
  font-weight: 350;
  font-size: clamp(3rem, 7.4vw, 7.2rem);
  line-height: 0.94;
  letter-spacing: 0;
  font-variation-settings: 'opsz' 144, 'SOFT' 30;
}

.hero-copy p,
.manifesto-copy,
.section-head p,
.screens-copy p,
.download-copy p,
.success-copy p {
  max-width: 38rem;
  margin-top: 1.7rem;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.45vw, 1.22rem);
  line-height: 1.76;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem;
  margin-top: 2rem;
}

.app-store-button,
.secondary-button {
  min-height: 3.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.app-store-button {
  gap: 0.72rem;
  padding: 0.55rem 1.1rem 0.55rem 0.8rem;
  background: var(--ink);
  color: #101214;
  box-shadow: 0 1rem 2.4rem rgba(0, 0, 0, 0.22);
}

.app-store-button small {
  display: block;
  margin-bottom: 0.1rem;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: uppercase;
}

.store-icon {
  width: 1.55rem;
  height: 1.55rem;
  display: grid;
  place-items: center;
}

.store-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.secondary-button {
  border: 1px solid var(--line);
  padding: 0 1.2rem;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.045);
}

.app-store-button:hover,
.app-store-button:focus-visible,
.secondary-button:hover,
.secondary-button:focus-visible {
  transform: translateY(-2px);
}

.platform-line {
  margin-top: 0.9rem !important;
  color: var(--sage) !important;
  font-size: 0.86rem !important;
}

.spark-stage {
  position: relative;
  min-height: clamp(35rem, 56vw, 46rem);
  display: grid;
  place-items: center;
  perspective: 1200px;
}

.spark-stage::before {
  content: '';
  position: absolute;
  width: min(100%, 34rem);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    linear-gradient(120deg, rgba(252, 211, 77, 0.11), transparent 38%),
    radial-gradient(circle, rgba(147, 197, 253, 0.16), transparent 58%);
  filter: blur(18px);
}

.phone {
  position: relative;
  z-index: 3;
  width: min(74vw, 23rem);
  border: 1px solid rgba(247, 244, 239, 0.18);
  border-radius: 2.25rem;
  background: linear-gradient(145deg, #30343a, #0e1012 48%, #25282d);
  box-shadow: 0 2.6rem 7rem rgba(0, 0, 0, 0.48);
  padding: 0.72rem;
  transform: rotateY(-13deg) rotateX(4deg) rotateZ(1deg);
}

.phone-large {
  z-index: 5;
}

.phone-float {
  position: absolute;
  width: min(42vw, 12.5rem);
  z-index: 4;
  opacity: 0.96;
}

.phone-prayer {
  right: 0.2rem;
  bottom: 5rem;
  transform: rotateY(-22deg) rotateZ(7deg) scale(0.92);
}

.phone-map {
  left: 0.4rem;
  top: 6.5rem;
  transform: rotateY(18deg) rotateZ(-8deg) scale(0.86);
}

.phone-top {
  position: absolute;
  top: 0.95rem;
  left: 50%;
  z-index: 5;
  width: 5rem;
  height: 1.1rem;
  border-radius: 999px;
  background: #111315;
  transform: translateX(-50%);
}

.screen {
  min-height: 40rem;
  border-radius: 1.72rem;
  overflow: hidden;
  padding: 4.4rem 1.45rem 1.45rem;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.78), rgba(243,238,230,0.98)),
    var(--paper);
  color: var(--paper-ink);
}

.phone-float .screen {
  min-height: 22rem;
  padding: 3.4rem 1rem 1rem;
  border-radius: 1.35rem;
}

.screen-kicker,
.panel-kicker {
  color: rgba(36, 33, 30, 0.58);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.panel-kicker {
  color: var(--yellow);
}

.screen h2 {
  margin-top: 1.1rem;
  font-family: var(--serif);
  font-size: 2.25rem;
  font-weight: 350;
  line-height: 1.02;
}

.written {
  margin-top: 1.2rem;
  border: 1px solid rgba(36, 33, 30, 0.14);
  border-radius: 0.5rem;
  padding: 1rem;
  color: rgba(36, 33, 30, 0.72);
  font-family: var(--hand);
  font-size: 1.55rem;
  line-height: 1.18;
  background: rgba(255, 255, 255, 0.55);
}

.tag {
  display: inline-flex;
  margin-top: 11rem;
  border-radius: 999px;
  padding: 0.62rem 0.85rem;
  background: rgba(134, 239, 172, 0.3);
  color: #245238;
  font-size: 0.78rem;
  font-weight: 700;
}

.prayer-screen h2,
.download-screen h3 {
  margin-top: 0.9rem;
  font-family: var(--serif);
  font-size: 1.75rem;
  font-weight: 350;
  line-height: 1;
}

.prayer-screen p {
  margin-top: 0.8rem;
  color: rgba(36, 33, 30, 0.66);
  font-size: 0.86rem;
  line-height: 1.45;
}

.scripture-chip,
.download-badge {
  display: inline-flex;
  margin-top: 1rem;
  border-radius: 999px;
  padding: 0.48rem 0.7rem;
  background: rgba(196, 181, 253, 0.26);
  color: #4b3b87;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.map-screen {
  position: relative;
}

.map-screen i,
.map-screen b {
  position: absolute;
  display: block;
}

.map-screen i {
  border-radius: 50%;
  border: 1px solid rgba(36, 33, 30, 0.12);
  background: rgba(255,255,255,0.64);
}

.map-screen i:nth-of-type(1) { width: 4.2rem; height: 4.2rem; left: 1.2rem; top: 7rem; }
.map-screen i:nth-of-type(2) { width: 3.1rem; height: 3.1rem; right: 1.2rem; top: 10.6rem; }
.map-screen i:nth-of-type(3) { width: 4.8rem; height: 4.8rem; left: 2.2rem; bottom: 3rem; }

.map-screen b {
  height: 2px;
  background: rgba(147, 197, 253, 0.75);
  transform-origin: left;
}

.map-screen b:nth-of-type(1) { width: 5rem; left: 4.8rem; top: 9.5rem; transform: rotate(22deg); }
.map-screen b:nth-of-type(2) { width: 4.2rem; left: 4.6rem; bottom: 5.6rem; transform: rotate(-34deg); }

.map-screen p {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  color: rgba(36, 33, 30, 0.58);
  font-family: var(--hand);
  font-size: 1.1rem;
}

.paper-note {
  position: absolute;
  z-index: 4;
  max-width: 12rem;
  border: 1px solid rgba(36, 33, 30, 0.12);
  border-radius: 0.35rem;
  padding: 0.8rem 0.95rem;
  background: rgba(243, 238, 230, 0.94);
  color: var(--paper-ink);
  font-family: var(--hand);
  font-size: 1.35rem;
  line-height: 1.05;
  box-shadow: 0 1.2rem 3rem rgba(0, 0, 0, 0.22);
}

.note-a { top: 14%; left: 2%; transform: rotate(-7deg); }
.note-b { right: 0; top: 38%; transform: rotate(6deg); }
.note-c { left: 8%; bottom: 12%; transform: rotate(4deg); }

.ann-stage {
  position: absolute;
  top: 5rem;
  right: 1.2rem;
  z-index: 6;
  color: var(--yellow);
  font-size: 1.45rem;
  transform: rotate(-4deg);
}

.ann-arrow-stage {
  position: absolute;
  top: 6.6rem;
  right: 8.6rem;
  z-index: 6;
  width: 90px;
  height: 80px;
  color: var(--yellow);
}

.manifesto {
  position: relative;
  min-height: 90svh;
  display: grid;
  place-content: center;
  width: min(100% - clamp(2rem, 6vw, 6rem), 1120px);
  margin: 0 auto;
  text-align: center;
  border-block: 1px solid var(--line);
  padding: clamp(4rem, 10vw, 8rem) 0;
}

.manifesto-small {
  margin-bottom: 1.2rem;
  color: var(--ink-soft);
  font-family: var(--hand);
  font-size: clamp(1.35rem, 3vw, 2rem);
}

.manifesto h2,
.section-head h2,
.not-section h2,
.success-copy h2 {
  font-family: var(--serif);
  font-weight: 350;
  font-size: clamp(2.7rem, 8vw, 7.4rem);
  line-height: 0.98;
  letter-spacing: 0;
  font-variation-settings: 'opsz' 144, 'SOFT' 30;
}

.manifesto h2 span {
  color: var(--yellow);
  font-style: italic;
}

.manifesto-copy {
  margin-inline: auto;
}

.ann-manifesto {
  position: absolute;
  right: 8%;
  bottom: 18%;
  color: var(--coral);
  font-size: 1.7rem;
  transform: rotate(-5deg);
}

.grace-story,
.screens-section,
.download-section,
.success-section,
.not-section {
  width: min(100% - clamp(2rem, 6vw, 6rem), 1180px);
  margin: 0 auto;
}

.screens-section {
  position: relative;
  display: grid;
  gap: clamp(2rem, 6vw, 4rem);
}

.screens-copy {
  max-width: 58rem;
}

.screens-copy h2,
.download-copy h2 {
  font-family: var(--serif);
  font-weight: 350;
  font-size: clamp(2.8rem, 7vw, 6.8rem);
  line-height: 0.98;
  letter-spacing: 0;
  font-variation-settings: 'opsz' 144, 'SOFT' 30;
}

.screen-gallery {
  display: grid;
  grid-template-columns: 1.15fr 0.95fr 0.9fr;
  grid-auto-rows: minmax(15rem, auto);
  gap: 1rem;
}

.screen-card {
  position: relative;
  min-height: 18rem;
  border: 1px solid var(--line);
  border-radius: 0.65rem;
  padding: clamp(1.2rem, 2.2vw, 1.7rem);
  background:
    linear-gradient(160deg, rgba(255,255,255,0.08), rgba(255,255,255,0.025)),
    #171a1d;
  overflow: hidden;
}

.screen-card::before {
  content: '';
  position: absolute;
  inset: auto -20% -40% auto;
  width: 16rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(147, 197, 253, 0.12);
  filter: blur(18px);
}

.screen-card h3 {
  position: relative;
  max-width: 13em;
  margin-top: 0.9rem;
  font-family: var(--serif);
  font-size: clamp(1.65rem, 3vw, 2.9rem);
  font-weight: 350;
  line-height: 1.04;
}

.screen-card p,
.screen-card small {
  position: relative;
  display: block;
  margin-top: 1rem;
  color: var(--ink-soft);
  line-height: 1.5;
}

.screen-card small {
  color: var(--sage);
  font-weight: 700;
}

.tall-card {
  grid-row: span 2;
  min-height: 34rem;
}

.mock-lines {
  position: relative;
  display: grid;
  gap: 0.8rem;
  margin-top: 4rem;
}

.mock-lines span {
  height: 0.8rem;
  border-radius: 999px;
  background: rgba(247,244,239,0.14);
}

.mock-lines span:nth-child(2) { width: 78%; }
.mock-lines span:nth-child(3) { width: 52%; }

.gratitude-card {
  background:
    linear-gradient(160deg, rgba(252, 211, 77, 0.12), rgba(255,255,255,0.025)),
    #171a1d;
}

.ai-card {
  background:
    linear-gradient(160deg, rgba(196, 181, 253, 0.13), rgba(255,255,255,0.025)),
    #171a1d;
}

.map-card {
  min-height: 24rem;
}

.gallery-map {
  position: relative;
  min-height: 16rem;
  margin-top: 1.2rem;
}

.gallery-map i,
.gallery-map b {
  position: absolute;
  display: block;
}

.gallery-map i {
  border-radius: 50%;
  border: 1px solid rgba(247,244,239,0.16);
  background: rgba(247,244,239,0.08);
}

.gallery-map i:nth-child(1) { width: 5rem; height: 5rem; left: 7%; top: 6%; }
.gallery-map i:nth-child(2) { width: 7rem; height: 7rem; right: 10%; top: 2%; }
.gallery-map i:nth-child(3) { width: 4.5rem; height: 4.5rem; left: 28%; bottom: 6%; }
.gallery-map i:nth-child(4) { width: 3.4rem; height: 3.4rem; right: 22%; bottom: 16%; }

.gallery-map b {
  height: 2px;
  border-radius: 999px;
  background: rgba(147, 197, 253, 0.62);
  transform-origin: left;
}

.gallery-map b:nth-of-type(1) { width: 42%; left: 25%; top: 30%; transform: rotate(12deg); }
.gallery-map b:nth-of-type(2) { width: 30%; left: 32%; bottom: 30%; transform: rotate(-35deg); background: rgba(249,168,212,0.58); }
.gallery-map b:nth-of-type(3) { width: 20%; right: 20%; top: 56%; transform: rotate(72deg); background: rgba(134,239,172,0.58); }

.pill-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 2rem;
}

.pill-stack span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.7rem 0.9rem;
  color: var(--ink-soft);
}

.ann-screens {
  position: absolute;
  right: 4%;
  top: 6rem;
  color: var(--blue);
  font-size: 1.4rem;
  transform: rotate(-4deg);
}

.section-head {
  margin-bottom: clamp(2rem, 6vw, 4rem);
}

.grace-panel {
  position: sticky;
  top: 1.4rem;
  min-height: min(82svh, 46rem);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) minmax(18rem, 0.78fr);
  gap: clamp(1.4rem, 4vw, 3rem);
  align-items: center;
  margin-bottom: clamp(1rem, 3vw, 2rem);
  border: 1px solid var(--line);
  border-radius: 0.65rem;
  padding: clamp(1.3rem, 4vw, 3rem);
  background:
    linear-gradient(135deg, rgba(255,255,255,0.07), rgba(255,255,255,0.025)),
    #15181b;
  box-shadow: 0 2rem 5rem rgba(0, 0, 0, 0.28);
}

.growth { top: 1.4rem; }
.reflection { top: 2.4rem; }
.attitude { top: 3.4rem; }
.confidence { top: 4.4rem; }
.engagement { top: 5.4rem; }

.letter-block {
  width: clamp(4.8rem, 12vw, 9rem);
  font-family: var(--serif);
  font-size: clamp(5.5rem, 16vw, 12rem);
  line-height: 0.72;
  font-weight: 650;
}

.growth .letter-block { color: var(--sage); }
.reflection .letter-block { color: var(--blue); }
.attitude .letter-block { color: var(--yellow); }
.confidence .letter-block { color: var(--purple); }
.engagement .letter-block { color: var(--coral); }

.grace-panel h3 {
  max-width: 13em;
  margin-top: 0.8rem;
  font-family: var(--serif);
  font-size: clamp(2rem, 4.8vw, 4.8rem);
  font-weight: 350;
  line-height: 1;
  letter-spacing: 0;
}

.grace-panel p {
  max-width: 33rem;
  margin-top: 1rem;
  color: var(--ink-soft);
  font-size: 1.02rem;
  line-height: 1.7;
}

.mini-ui {
  position: relative;
  min-height: 19rem;
  border: 1px solid rgba(247,244,239,0.14);
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.045);
  overflow: hidden;
}

.notes-ui {
  display: grid;
  align-content: center;
  gap: 1rem;
  padding: 2rem;
}

.notes-ui span {
  height: 0.8rem;
  border-radius: 999px;
  background: rgba(247, 244, 239, 0.14);
}

.notes-ui span:nth-child(2) { width: 78%; }
.notes-ui span:nth-child(3) { width: 52%; }
.notes-ui p {
  margin: 2rem 0 0;
  color: var(--sage);
  font-family: var(--hand);
  font-size: 1.7rem;
}

.reflection-ui {
  display: grid;
  place-items: center;
  padding: 2rem;
}

.reflection-ui blockquote {
  color: var(--ink);
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  line-height: 1.16;
}

.grace-map-ui i,
.grace-map-ui b {
  position: absolute;
  display: block;
}

.grace-map-ui i {
  border-radius: 50%;
  border: 1px solid rgba(247,244,239,0.16);
  background: rgba(247,244,239,0.08);
}

.grace-map-ui i:nth-child(1) { width: 6rem; height: 6rem; left: 16%; top: 18%; }
.grace-map-ui i:nth-child(2) { width: 8rem; height: 8rem; right: 14%; top: 14%; }
.grace-map-ui i:nth-child(3) { width: 5rem; height: 5rem; left: 24%; bottom: 18%; }
.grace-map-ui i:nth-child(4) { width: 4rem; height: 4rem; right: 23%; bottom: 24%; }

.grace-map-ui b {
  height: 2px;
  border-radius: 999px;
  background: rgba(147, 197, 253, 0.62);
  transform-origin: left;
}

.grace-map-ui b:nth-of-type(1) { width: 42%; left: 30%; top: 35%; transform: rotate(10deg); }
.grace-map-ui b:nth-of-type(2) { width: 32%; left: 31%; bottom: 35%; transform: rotate(-28deg); background: rgba(249,168,212,0.58); }
.grace-map-ui b:nth-of-type(3) { width: 22%; right: 21%; top: 56%; transform: rotate(75deg); background: rgba(134,239,172,0.58); }

.grace-map-ui small {
  position: absolute;
  left: 1.2rem;
  bottom: 1rem;
  color: var(--yellow);
  font-family: var(--hand);
  font-size: 1.6rem;
}

.scripture-ui {
  display: grid;
  place-content: center;
  padding: 2rem;
  text-align: center;
}

.scripture-ui p {
  margin: 0;
  color: var(--purple);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.scripture-ui span {
  margin-top: 0.8rem;
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 0.96;
}

.rhythm-ui {
  display: grid;
  align-content: center;
  gap: 0.75rem;
  padding: 2rem;
}

.rhythm-ui span {
  border: 1px solid rgba(247,244,239,0.14);
  border-radius: 999px;
  padding: 0.8rem 1rem;
  color: var(--ink);
}

.ann-panel {
  position: absolute;
  right: clamp(1rem, 3vw, 2rem);
  bottom: clamp(1rem, 3vw, 2rem);
  color: var(--blue);
  font-size: 1.35rem;
  transform: rotate(-3deg);
}

.not-section {
  min-height: 75svh;
  display: grid;
  align-content: center;
  gap: 2rem;
}

.not-section p {
  color: var(--ink-soft);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  line-height: 1.6;
}

.not-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.not-grid span {
  min-height: 9rem;
  display: grid;
  place-items: end start;
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  padding: 1rem;
  color: var(--ink-soft);
  font-family: var(--hand);
  font-size: 1.4rem;
  background: rgba(255,255,255,0.035);
}

.download-section {
  position: relative;
  min-height: 88svh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.78fr);
  gap: clamp(2rem, 7vw, 5rem);
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 0.8rem;
  padding: clamp(1.6rem, 5vw, 4rem);
  background:
    linear-gradient(135deg, rgba(252,211,77,0.1), transparent 32%),
    linear-gradient(315deg, rgba(147,197,253,0.09), transparent 36%),
    rgba(255,255,255,0.04);
  overflow: hidden;
}

.app-store-button-large {
  min-height: 4rem;
  padding: 0.7rem 1.35rem 0.7rem 1rem;
  font-size: 1.05rem;
}

.app-store-button-large .store-icon {
  width: 2rem;
  height: 2rem;
}

.platform-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 2rem;
}

.platform-grid span {
  min-height: 6.4rem;
  display: grid;
  align-content: end;
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  padding: 1rem;
  color: var(--ink-soft);
  background: rgba(255,255,255,0.04);
}

.platform-grid strong {
  display: block;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 350;
}

.download-visual {
  position: relative;
  min-height: 32rem;
  display: grid;
  place-items: center;
}

.download-phone {
  width: min(70vw, 21rem);
  transform: rotateY(-10deg) rotateX(4deg) rotateZ(2deg);
}

.download-screen h3 {
  font-size: clamp(2.4rem, 5vw, 4rem);
}

.download-screen p {
  margin-top: 1rem;
  color: rgba(36, 33, 30, 0.64);
  line-height: 1.55;
}

.download-badge {
  margin-top: 9rem;
  background: rgba(134, 239, 172, 0.3);
  color: #245238;
}

.ann-download {
  position: absolute;
  right: clamp(1rem, 5vw, 4rem);
  top: clamp(1rem, 4vw, 3rem);
  color: var(--yellow);
  font-size: 1.45rem;
  transform: rotate(-4deg);
}

.success-section {
  min-height: 90svh;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(20rem, 0.8fr);
  gap: clamp(2rem, 7vw, 5rem);
  align-items: center;
}

.final-card {
  position: relative;
  min-height: 30rem;
  display: grid;
  align-content: end;
  border: 1px solid var(--line);
  border-radius: 0.6rem;
  padding: clamp(1.4rem, 4vw, 2.4rem);
  background:
    linear-gradient(140deg, rgba(252,211,77,0.12), transparent 34%),
    rgba(255,255,255,0.045);
}

.final-card h3 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 350;
  line-height: 1.05;
}

.final-card p {
  margin-top: 1.2rem;
  color: var(--ink-soft);
  font-family: var(--hand);
  font-size: 1.8rem;
}

.inline-cta {
  width: fit-content;
  margin-top: 2rem;
  padding-inline: 1.2rem;
}

.ann-final {
  position: absolute;
  top: 2rem;
  right: 2rem;
  color: var(--sage);
  font-size: 1.35rem;
  transform: rotate(-3deg);
}

.hl {
  padding: 0.05em 0.32em;
  margin: 0 -0.05em;
  border-radius: 3px;
  font-style: normal;
}

.hl-purple { background: rgba(196, 181, 253, 0.18); color: var(--purple); }

.ul {
  position: relative;
  display: inline-block;
  font-style: normal;
}

.ul::after {
  content: '';
  position: absolute;
  left: -3px;
  right: -3px;
  bottom: -0.18em;
  height: 0.4em;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  pointer-events: none;
}

.ul-pink::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 10' preserveAspectRatio='none'%3E%3Cpath d='M 1 6 Q 10 2, 20 5 T 40 5 T 60 4 T 80 6 T 99 5' stroke='%23F9A8D4' stroke-width='1.6' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
}

.ul-coral::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 10' preserveAspectRatio='none'%3E%3Cpath d='M 1 6 Q 10 2, 20 5 T 40 5 T 60 4 T 80 6 T 99 5' stroke='%23FCA5A5' stroke-width='1.6' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
}

.ul-blue::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 10' preserveAspectRatio='none'%3E%3Cpath d='M 1 6 Q 10 2, 20 5 T 40 5 T 60 4 T 80 6 T 99 5' stroke='%2393C5FD' stroke-width='1.6' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
}

.ul-double::after {
  height: 0.7em;
  bottom: -0.32em;
}

.ul-double.ul-blue::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 14' preserveAspectRatio='none'%3E%3Cpath d='M 1 5 Q 10 1, 20 4 T 40 4 T 60 3 T 80 5 T 99 4' stroke='%2393C5FD' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3Cpath d='M 1 11 Q 10 7, 20 10 T 40 10 T 60 9 T 80 11 T 99 10' stroke='%2393C5FD' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
}

.circled {
  position: relative;
  display: inline-block;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.05em 0.45em 0.05em 0.4em;
}

.circled::after {
  content: '';
  position: absolute;
  inset: -0.18em -0.05em;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 50' preserveAspectRatio='none'%3E%3Cpath d='M 60 3 C 100 3, 117 12, 117 25 C 117 40, 95 47, 60 47 C 22 47, 4 39, 3 25 C 2 11, 25 3, 60 3.5' stroke='%2393C5FD' stroke-width='1.6' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  pointer-events: none;
}

footer {
  width: min(100% - clamp(2rem, 6vw, 6rem), 1180px);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 0 0 2rem;
  color: var(--ink-soft);
  font-size: 0.78rem;
}

.nav-links {
  display: flex;
  gap: clamp(1.25rem, 3vw, 2rem);
  position: relative;
}

.ann-footer {
  position: absolute;
  top: -1.6rem;
  right: 0;
  color: var(--sage);
  font-size: 1.05rem;
  transform: rotate(-2deg);
}

footer a {
  position: relative;
  color: var(--ink);
}

footer a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s ease;
}

footer a:hover::after,
footer a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

:focus-visible {
  outline: 1px dashed var(--ink-faint);
  outline-offset: 4px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-delay: 0ms !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 940px) {
  .story-hero,
  .download-section,
  .success-section {
    grid-template-columns: 1fr;
  }

  .screen-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tall-card {
    grid-row: span 1;
  }

  .spark-stage {
    min-height: 40rem;
  }

  .grace-panel {
    position: relative;
    top: auto !important;
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .letter-block {
    width: auto;
  }

  .not-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .header-nav,
  .meta {
    display: none;
  }

  .site-header {
    align-items: flex-start;
  }

  .countdown-title,
  .story-title {
    font-size: clamp(2.35rem, 11.2vw, 3.2rem);
  }

  .mobile-break {
    display: block;
  }

  .countdown-shell,
  .hero-copy,
  .manifesto,
  .grace-story,
  .screens-section,
  .download-section,
  .success-section,
  .not-section,
  footer {
    width: calc(100vw - 2rem);
    max-width: calc(100vw - 2rem);
  }

  .countdown-page {
    width: 100vw;
    overflow: hidden;
    padding-inline: 1rem;
  }

  .countdown-shell {
    justify-self: stretch;
    margin-inline: auto;
  }

  .countdown-wrap {
    width: min(100%, 18rem);
    margin-inline: auto;
  }

  .countdown {
    grid-template-columns: repeat(2, 1fr);
  }

  .countdown-tape {
    width: min(112%, 21rem);
    padding-inline: 0.8rem;
    font-size: clamp(1.18rem, 5.6vw, 1.45rem);
    white-space: nowrap;
  }

  .countdown-verse {
    width: min(100%, 17rem);
    margin-inline: auto;
    font-size: 0.95rem;
  }

  .ann-countdown,
  .ann-arrow-countdown,
  .ann-stage,
  .ann-arrow-stage,
  .ann-screens,
  .ann-download,
  .ann-footer {
    display: none;
  }

  .story-hero {
    min-height: auto;
    padding-top: 2rem;
  }

  .spark-stage {
    min-height: 34rem;
    overflow: hidden;
  }

  .phone {
    width: min(88vw, 20rem);
    transform: rotateY(-7deg) rotateZ(1deg);
  }

  .phone-float {
    width: min(44vw, 10.5rem);
  }

  .phone-map {
    left: -0.5rem;
    top: 7rem;
  }

  .phone-prayer {
    right: -0.6rem;
    bottom: 4rem;
  }

  .screen {
    min-height: 34rem;
  }

  .phone-float .screen {
    min-height: 19rem;
  }

  .tag {
    margin-top: 6rem;
  }

  .paper-note {
    font-size: 1.1rem;
    max-width: 9rem;
  }

  .note-a { left: 0; top: 10%; }
  .note-b { display: none; }
  .note-c { left: 0; bottom: 3%; }

  .manifesto {
    min-height: 70svh;
  }

  .manifesto h2,
  .screens-copy h2,
  .download-copy h2,
  .section-head h2,
  .not-section h2,
  .success-copy h2 {
    font-size: clamp(2.4rem, 12vw, 4rem);
  }

  .screen-gallery,
  .platform-grid {
    grid-template-columns: 1fr;
  }

  .screen-card,
  .map-card {
    min-height: 16rem;
  }

  .download-section {
    min-height: auto;
    padding: 1.2rem;
  }

  .download-visual {
    min-height: 27rem;
    overflow: hidden;
  }

  .download-phone {
    width: min(82vw, 19rem);
  }

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

  .not-grid span {
    min-height: 6.5rem;
  }

  footer {
    align-items: flex-start;
  }

  .nav-links {
    width: 100%;
    justify-content: flex-start;
  }
}
