:root {
  color-scheme: light dark;
  --surface: #fbf8ff;
  --surface-soft: #f2f0fa;
  --surface-raised: rgba(255, 255, 255, .5);
  --ink: #001355;
  --muted: rgba(0, 19, 85, .64);
  --quiet: rgba(0, 19, 85, .43);
  --line: rgba(0, 19, 85, .11);
  --strong-line: rgba(0, 19, 85, .19);
  --button: #001355;
  --button-ink: #fff;
  --nav: rgba(251, 248, 255, .89);
  --nav-open: rgba(251, 248, 255, .98);
  --deep: #000d42;
  --deep-ink: #fbf8ff;
  --shadow: 0 2rem 5rem rgba(0, 19, 85, .12);
}

html.dark {
  --surface: #020408;
  --surface-soft: #080a11;
  --surface-raised: rgba(255, 255, 255, .025);
  --ink: #fbf8ff;
  --muted: rgba(251, 248, 255, .64);
  --quiet: rgba(251, 248, 255, .42);
  --line: rgba(255, 255, 255, .08);
  --strong-line: rgba(255, 255, 255, .15);
  --button: #fbf8ff;
  --button-ink: #020408;
  --nav: rgba(2, 4, 8, .88);
  --nav-open: rgba(5, 7, 12, .99);
  --deep: #071038;
  --deep-ink: #fbf8ff;
  --shadow: 0 2rem 6rem rgba(0, 0, 0, .45);
}

* {
  box-sizing: border-box;
}

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

body {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  background: var(--surface);
  color: var(--ink);
  font-family: Manrope, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  transition: color 220ms ease, background-color 220ms ease;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 84% 7%, rgba(153, 167, 230, .13), transparent 32rem),
    radial-gradient(circle at 7% 48%, rgba(255, 220, 160, .075), transparent 28rem),
    var(--surface);
  content: "";
}

html.dark body::before {
  background:
    radial-gradient(circle at 84% 7%, rgba(55, 69, 135, .16), transparent 34rem),
    radial-gradient(circle at 7% 48%, rgba(70, 45, 7, .1), transparent 29rem),
    var(--surface);
}

a {
  color: inherit;
}

button {
  font: inherit;
}

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

.serif {
  font-family: "Noto Serif", Georgia, serif;
}

.shell {
  width: min(80rem, 100%);
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.narrow {
  width: min(64rem, 100%);
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.eyebrow {
  display: block;
  margin-bottom: 1rem;
  color: var(--quiet);
  font-size: .625rem;
  font-weight: 700;
  letter-spacing: .21em;
  line-height: 1.45;
  text-transform: uppercase;
}

.skip-link {
  position: fixed;
  top: .75rem;
  left: .75rem;
  z-index: 100;
  padding: .7rem 1rem;
  border-radius: 999px;
  background: var(--button);
  color: var(--button-ink);
  font-size: .75rem;
  text-decoration: none;
  transform: translateY(-180%);
}

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

.marketing-header {
  position: fixed;
  top: 0;
  z-index: 60;
  width: 100%;
  min-height: 64px;
  border-bottom: 1px solid var(--line);
  background: var(--nav);
  -webkit-backdrop-filter: blur(20px) saturate(145%);
  backdrop-filter: blur(20px) saturate(145%);
}

.marketing-nav {
  display: flex;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
}

.wordmark {
  font-family: "Noto Serif", Georgia, serif;
  font-size: 1.3rem;
  font-style: italic;
  letter-spacing: .025em;
  text-decoration: none;
}

.desktop-nav,
.nav-controls {
  display: flex;
  align-items: center;
}

.desktop-nav {
  gap: .35rem;
}

.nav-controls {
  gap: .45rem;
}

.nav-link {
  display: inline-flex;
  min-height: 2.3rem;
  padding: 0 .9rem;
  align-items: center;
  border-radius: 999px;
  color: var(--muted);
  font-size: .625rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 150ms ease, background-color 150ms ease;
}

.nav-link:hover,
.nav-link[aria-current="page"] {
  color: var(--ink);
  background: color-mix(in srgb, var(--ink) 5%, transparent);
}

.nav-cta {
  border: 1px solid var(--strong-line);
  color: var(--ink);
}

.theme-toggle,
.menu-toggle {
  display: grid;
  width: 2.3rem;
  height: 2.3rem;
  padding: 0;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
}

.theme-toggle:hover,
.menu-toggle:hover {
  color: var(--ink);
  background: color-mix(in srgb, var(--ink) 5%, transparent);
}

.theme-glyph,
.theme-glyph svg {
  display: block;
  width: 1.25rem;
  height: 1.25rem;
}

.theme-glyph svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.menu-toggle {
  display: none;
}

.menu-lines,
.menu-lines::before,
.menu-lines::after {
  width: 1.15rem;
  height: 1px;
  background: currentColor;
  content: "";
  transition: transform 180ms ease;
}

.menu-lines {
  position: relative;
}

.menu-lines::before,
.menu-lines::after {
  position: absolute;
  left: 0;
}

.menu-lines::before {
  top: -.34rem;
}

.menu-lines::after {
  top: .34rem;
}

.menu-toggle[aria-expanded="true"] .menu-lines {
  background: transparent;
}

.menu-toggle[aria-expanded="true"] .menu-lines::before {
  top: 0;
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-lines::after {
  top: 0;
  transform: rotate(-45deg);
}

.mobile-nav {
  display: none;
  border-top: 1px solid var(--line);
  background: var(--nav-open);
}

.mobile-nav.open {
  display: block;
}

.mobile-nav-inner {
  display: grid;
  gap: .25rem;
  padding-block: .75rem 1rem;
}

.mobile-nav a {
  display: flex;
  min-height: 3rem;
  padding: 0 1rem;
  align-items: center;
  justify-content: space-between;
  border-radius: .8rem;
  color: var(--muted);
  font-size: .85rem;
  text-decoration: none;
}

.mobile-nav a:hover {
  color: var(--ink);
  background: color-mix(in srgb, var(--ink) 5%, transparent);
}

.hero {
  position: relative;
  display: grid;
  min-height: 86svh;
  padding-top: 9rem;
  padding-bottom: 5.5rem;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(14rem, .38fr);
  gap: 5rem;
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-copy h1,
.product-hero h1 {
  max-width: 14ch;
  margin: 0;
  font-family: "Noto Serif", Georgia, serif;
  font-size: clamp(3.45rem, 5.8vw, 5.35rem);
  font-weight: 400;
  letter-spacing: -.052em;
  line-height: 1.01;
}

.hero-copy h1 em,
.product-hero h1 em {
  font-weight: 400;
}

.hero-copy>p,
.product-hero-copy>p {
  max-width: 39rem;
  margin: 1.75rem 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.35vw, 1.14rem);
  font-weight: 300;
  line-height: 1.75;
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin-top: 2rem;
}

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

.homepage-hero-primary-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
}

.button,
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.app-store-hero-link {
  display: inline-flex;
  min-height: 3.25rem;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: .55rem;
  transition: opacity 160ms ease, transform 160ms ease;
}

.app-store-hero-link:hover {
  opacity: .84;
  transform: translateY(-1px);
}

.app-store-hero-link img {
  display: block;
  width: auto;
  height: 2.25rem;
}

.button {
  min-height: 3.25rem;
  padding: .8rem 1.55rem;
  border: 1px solid var(--strong-line);
  border-radius: 999px;
  color: var(--ink);
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-align: center;
  text-transform: uppercase;
  transition: opacity 150ms ease, transform 150ms ease, background-color 150ms ease;
}

.button.primary {
  border-color: var(--button);
  background: var(--button);
  color: var(--button-ink);
}

.button:hover {
  opacity: .78;
}

.button:active {
  transform: scale(.98);
}

.text-link {
  gap: .5rem;
  padding-block: .6rem;
  border-bottom: 1px solid currentColor;
  color: var(--ink);
  font-size: .67rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.text-link::after {
  content: "↗";
  font-size: .9rem;
}

.hero-wheat {
  position: relative;
  display: grid;
  min-height: 26rem;
  place-items: center;
  color: color-mix(in srgb, var(--ink) 9%, transparent);
}

.hero-wheat::before {
  position: absolute;
  width: 24rem;
  height: 24rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(142, 155, 218, .13), transparent 70%);
  content: "";
}

.hero-glyph {
  position: relative;
  width: min(10.5rem, 45vw);
  height: auto;
  transform-origin: bottom center;
  animation: gentle-sway 12s ease-in-out infinite;
}

@keyframes gentle-sway {

  0%,
  100% {
    transform: rotate(-1deg);
  }

  50% {
    transform: rotate(2deg);
  }
}

.section {
  padding-block: 7.25rem;
}

.section.soft {
  background: color-mix(in srgb, var(--surface-soft) 72%, transparent);
}

.section.deep {
  background: var(--deep);
  color: var(--deep-ink);
}

.section-heading {
  max-width: 46rem;
  margin-bottom: 3.75rem;
}

.section-heading.center {
  margin-inline: auto;
  text-align: center;
}

.section-heading h2,
.split-copy h2,
.cta h2,
.comparison-band h2 {
  margin: 0;
  font-family: "Noto Serif", Georgia, serif;
  font-size: clamp(2.45rem, 4.15vw, 3.85rem);
  font-weight: 400;
  letter-spacing: -.04em;
  line-height: 1.07;
}

.section-heading>p,
.split-copy>p {
  max-width: 42rem;
  margin: 1.25rem 0 0;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.75;
}

.deep .eyebrow,
.deep .section-heading>p,
.deep .split-copy>p,
.deep .fine-print {
  color: color-mix(in srgb, var(--deep-ink) 66%, transparent);
}

.deep .feature-copy p,
.deep .definition p,
.deep .info-card p {
  color: color-mix(in srgb, var(--deep-ink) 64%, transparent);
}

.deep .feature-number,
.deep .text-link {
  color: var(--deep-ink);
}

.deep .feature-row,
.deep .feature-list,
.deep .definition {
  border-color: color-mix(in srgb, var(--deep-ink) 15%, transparent);
}

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

.path-card {
  position: relative;
  display: grid;
  min-height: 29rem;
  overflow: hidden;
  border-radius: 1.75rem;
  background: var(--surface-soft);
  text-decoration: none;
  transition: opacity 430ms ease, transform 430ms ease, box-shadow 220ms ease-in-out, top 220ms ease-in-out !important;
  top: 0px;
}

.path-card:hover {
  top: -4px;
  box-shadow: var(--shadow);
}

.path-card-copy {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 20rem;
  padding: clamp(1.8rem, 3.5vw, 3rem);
  flex-direction: column;
}

.path-card h3 {
  margin: auto 0 .8rem;
  font-family: "Noto Serif", Georgia, serif;
  font-size: clamp(2.25rem, 3.4vw, 3.25rem);
  font-weight: 400;
  letter-spacing: -.04em;
}

.path-card p {
  max-width: 30rem;
  margin: 0;
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.7;
}

.path-card .path-arrow {
  position: absolute;
  top: 2rem;
  right: 2rem;
  z-index: 3;
  font-size: 1.15rem;
}

.path-number {
  color: var(--quiet);
  font-family: "Noto Serif", Georgia, serif;
  font-size: 1rem;
}

.path-preview {
  position: absolute;
  right: -2rem;
  bottom: -7.8rem;
  width: 16.5rem;
  padding: .35rem;
  overflow: hidden;
  border-radius: 2.3rem;
  background: #05060a;
  box-shadow: var(--shadow);
  transform: rotate(4deg);
}

.path-card:last-child .path-preview {
  right: 1rem;
  transform: rotate(-3deg);
}

.path-preview img {
  border-radius: 1.98rem;
}

.path-card-copy p {
  padding-right: min(15vw, 11rem);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(20rem, 1.14fr);
  gap: 6rem;
  align-items: center;
}

.split.reverse {
  grid-template-columns: minmax(20rem, 1.14fr) minmax(0, .86fr);
}

.split-copy {
  max-width: 33rem;
}

.split-copy .section-actions {
  margin-top: 1.8rem;
}

.split-visual {
  min-width: 0;
}

.quote-card {
  padding: clamp(2rem, 4vw, 3.75rem) 0;
  border-block: 1px solid var(--line);
}

.quote-card blockquote {
  max-width: 52rem;
  margin: 0;
  font-family: "Noto Serif", Georgia, serif;
  font-size: clamp(1.75rem, 2.65vw, 2.45rem);
  line-height: 1.32;
}

.quote-card cite {
  display: block;
  margin-top: 1.6rem;
  color: var(--quiet);
  font-size: .625rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.feature-list {
  border-block: 1px solid var(--line);
}

.feature-row {
  display: grid;
  grid-template-columns: 2rem 1fr;
  gap: 1.25rem;
  padding-block: 1.4rem;
}

.feature-row+.feature-row {
  border-top: 1px solid var(--line);
}

.feature-number {
  color: var(--quiet);
  font-family: "Noto Serif", Georgia, serif;
  font-size: .95rem;
}

.feature-copy h3 {
  margin: 0;
  font-family: "Noto Serif", Georgia, serif;
  font-size: 1.36rem;
  font-weight: 400;
}

.feature-copy p {
  margin: .5rem 0 0;
  color: var(--muted);
  font-size: .86rem;
  line-height: 1.65;
}

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

.info-card {
  min-height: 15rem;
  padding: 1.8rem;
  border-top: 1px solid var(--line);
}

.info-card h3 {
  margin: 3rem 0 .75rem;
  font-family: "Noto Serif", Georgia, serif;
  font-size: 1.5rem;
  font-weight: 400;
}

.info-card p {
  margin: 0;
  color: var(--muted);
  font-size: .86rem;
  line-height: 1.65;
}

.info-card .eyebrow {
  margin: 0;
}

.visual-field {
  position: relative;
  display: grid;
  min-height: 38rem;
  padding: 2.5rem 1rem;
  place-items: center;
  isolation: isolate;
}

.visual-field::before {
  position: absolute;
  z-index: -1;
  width: 30rem;
  height: 30rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(143, 158, 226, .2), transparent 67%);
  content: "";
}

.device-shot {
  position: relative;
  width: min(19rem, 78vw);
  padding: .36rem;
  overflow: hidden;
  border-radius: 2.75rem;
  background: #07080d;
  box-shadow: var(--shadow);
}

.device-shot img {
  width: 100%;
  border-radius: 2.42rem;
}

.theme-dark-shot {
  display: none;
}

html.dark .theme-light-shot {
  display: none;
}

html.dark .theme-dark-shot {
  display: block;
}

.product-hero {
  padding-top: 9.5rem;
  padding-bottom: 6.5rem;
}

.product-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, .58fr);
  gap: 5.5rem;
  align-items: center;
}

.product-hero h1 {
  max-width: 12ch;
}

.product-hero .visual-field {
  min-height: 36rem;
}

.product-hero .device-shot {
  width: min(17rem, 70vw);
}

.story-stack {
  display: grid;
  gap: 8rem;
}

.story-row {
  display: grid;
  grid-template-columns: minmax(17rem, .85fr) minmax(0, 1fr);
  gap: clamp(3.5rem, 8vw, 8rem);
  align-items: center;
}

.story-row:nth-child(even) {
  grid-template-columns: minmax(0, 1fr) minmax(17rem, .85fr);
}

.story-row:nth-child(even) .story-visual {
  order: 2;
}

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

.story-visual::before {
  position: absolute;
  width: 28rem;
  height: 28rem;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--surface-soft) 88%, transparent), transparent 70%);
  content: "";
}

.story-visual .device-shot {
  width: min(19rem, 78vw);
}

.story-copy {
  max-width: 31rem;
}

.story-copy h3 {
  margin: 0;
  font-family: "Noto Serif", Georgia, serif;
  font-size: clamp(2.1rem, 3.2vw, 3rem);
  font-weight: 400;
  letter-spacing: -.04em;
  line-height: 1.08;
}

.story-copy p {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: .98rem;
  font-weight: 300;
  line-height: 1.75;
}

.story-note {
  margin-top: 1.5rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
  color: var(--quiet);
  font-size: .75rem;
  line-height: 1.6;
}

.creation-options {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(20rem, .95fr);
  gap: 5rem;
  align-items: start;
}

.primary-option {
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.primary-option h3 {
  max-width: 12ch;
  margin: 3.5rem 0 1rem;
  font-family: "Noto Serif", Georgia, serif;
  font-size: clamp(2rem, 3.2vw, 3rem);
  font-weight: 400;
  letter-spacing: -.04em;
  line-height: 1.08;
}

.primary-option p {
  max-width: 34rem;
  color: var(--muted);
  line-height: 1.75;
}

.option-list {
  border-block: 1px solid var(--line);
}

.option-row {
  padding-block: 1.7rem;
}

.option-row+.option-row {
  border-top: 1px solid var(--line);
}

.option-row h3 {
  margin: 0;
  font-family: "Noto Serif", Georgia, serif;
  font-size: 1.4rem;
  font-weight: 400;
}

.option-row p {
  margin: .55rem 0 0;
  color: var(--muted);
  font-size: .86rem;
  line-height: 1.65;
}

.prayer-group-layout {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(17rem, .65fr);
  gap: clamp(4rem, 8vw, 8rem);
  align-items: center;
}

.prayer-group-layout .section-heading {
  margin-bottom: 2.5rem;
}

.prayer-group-points {
  border-block: 1px solid color-mix(in srgb, var(--deep-ink) 15%, transparent);
}

.prayer-group-point {
  display: grid;
  grid-template-columns: 1.7rem 1fr;
  gap: 1rem;
  padding-block: 1.25rem;
}

.prayer-group-point+.prayer-group-point {
  border-top: 1px solid color-mix(in srgb, var(--deep-ink) 15%, transparent);
}

.prayer-group-point span {
  font-family: "Noto Serif", Georgia, serif;
}

.prayer-group-point h3 {
  margin: 0;
  font-family: "Noto Serif", Georgia, serif;
  font-size: 1.25rem;
  font-weight: 400;
}

.prayer-group-point p {
  margin: .45rem 0 0;
  color: color-mix(in srgb, var(--deep-ink) 64%, transparent);
  font-size: .84rem;
  line-height: 1.65;
}

.prayer-group-point .eyebrow {
  margin-bottom: .35rem;
  color: color-mix(in srgb, var(--deep-ink) 58%, transparent);
}

.deep .visual-field::before {
  background: radial-gradient(circle, rgba(255, 255, 255, .12), transparent 68%);
}

.deep .device-shot {
  box-shadow: 0 2rem 6rem rgba(0, 0, 0, .35);
}

.group-detail-shot {
  position: relative;
  width: min(20rem, 86vw);
  padding: .32rem;
  overflow: hidden;
  border-radius: 2.2rem;
  background: #07080d;
  box-shadow: 0 2rem 6rem rgba(0, 0, 0, .35);
}

.group-detail-shot img {
  width: 100%;
  border-radius: 1.92rem;
}

.comparison-band {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 5rem;
  align-items: start;
}

.fine-print {
  color: var(--muted);
  font-size: .76rem;
  line-height: 1.65;
}

.definition {
  padding: 1.55rem 0;
  border-top: 1px solid var(--line);
}

.definition:last-child {
  border-bottom: 1px solid var(--line);
}

.definition h3 {
  margin: 0;
  font-family: "Noto Serif", Georgia, serif;
  font-size: 1.42rem;
  font-weight: 400;
}

.definition p {
  margin: .5rem 0 0;
  color: var(--muted);
  font-size: .86rem;
  line-height: 1.65;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-block: 1px solid var(--line);
}

.trust-item {
  padding: 1.8rem;
}

.trust-item+.trust-item {
  border-left: 1px solid var(--line);
}

.trust-item strong {
  display: block;
  font-family: "Noto Serif", Georgia, serif;
  font-size: 1.25rem;
  font-weight: 400;
}

.trust-item p {
  margin: .5rem 0 0;
  color: var(--muted);
  font-size: .78rem;
  line-height: 1.6;
}

.cta {
  padding-block: 7.5rem;
  text-align: center;
}

.cta h2 {
  max-width: 25ch;
  margin-inline: auto;
}

.cta p {
  max-width: 38rem;
  margin: 1.25rem auto 0;
  color: var(--muted);
  line-height: 1.7;
}

.cta .hero-actions {
  justify-content: center;
}

.marketing-footer {
  border-top: 1px solid var(--line);
  background: color-mix(in srgb, var(--surface-soft) 72%, transparent);
}

.footer-top,
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
}

.footer-top {
  padding-block: 2.7rem;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.footer-brand a {
  font-family: "Noto Serif", Georgia, serif;
  font-size: 1.25rem;
  font-style: italic;
  text-decoration: none;
}

.footer-brand p {
  margin: .5rem 0 0;
  color: var(--quiet);
  font-size: .75rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.75rem;
}

.footer-links a {
  color: var(--muted);
  font-size: .625rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-decoration: none;
  text-transform: uppercase;
}

.footer-links a:hover {
  color: var(--ink);
}

.footer-bottom {
  padding-block: 1.25rem;
  color: var(--quiet);
  font-size: .68rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom a {
  color: inherit;
  font-family: "Noto Serif", Georgia, serif;
  font-style: italic;
  text-decoration: none;
}

.reveal {
  opacity: 1;
  transform: none;
}

.marketing-motion .reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 430ms ease, transform 430ms ease;
}

.marketing-motion .story-row .story-visual.reveal {
  transform: translateX(-34px);
  transition-duration: 680ms;
}

.marketing-motion .story-row:nth-child(even) .story-visual.reveal {
  transform: translateX(34px);
}

.marketing-motion .reveal.visible {
  opacity: 1;
  transform: none !important;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 3px;
}

.deep a:focus-visible,
.deep button:focus-visible {
  outline-color: var(--deep-ink);
}

@media (max-width: 900px) {
  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: grid;
  }

  .hero-grid,
  .product-hero-grid,
  .split,
  .split.reverse,
  .comparison-band,
  .creation-options,
  .prayer-group-layout {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

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

  .hero-wheat {
    min-height: 16rem;
  }

  .hero-glyph {
    width: 7rem;
  }

  .product-hero .visual-field {
    min-height: 34rem;
  }

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

  .info-card {
    min-height: auto;
  }

  .info-card h3 {
    margin-top: 2.3rem;
  }

  .path-card-copy p {
    padding-right: 9rem;
  }

  .story-row,
  .story-row:nth-child(even) {
    grid-template-columns: minmax(15rem, .8fr) minmax(0, 1fr);
    gap: 3rem;
  }

  .story-row:nth-child(even) .story-visual {
    order: 2;
  }
}

@media (max-width: 680px) {

  .shell,
  .narrow {
    padding-inline: 1.1rem;
  }

  .nav-controls>.nav-link {
    display: none;
  }

  .hero,
  .product-hero {
    padding-top: 8rem;
    padding-bottom: 4.75rem;
  }

  .hero {
    overflow: hidden;
    isolation: isolate;
  }

  .hero-copy h1,
  .product-hero h1 {
    font-size: clamp(3rem, 14vw, 4rem);
  }

  .hero-grid {
    position: relative;
    display: block;
  }

  .product-hero-grid {
    gap: 2.75rem;
  }

  .hero-wheat {
    position: absolute;
    z-index: 0;
    top: 2.5rem;
    right: -.35rem;
    width: 8.75rem;
    height: 25rem;
    min-height: 0;
    padding: 0;
    opacity: .72;
    pointer-events: none;
  }

  .hero-wheat::before {
    width: 18rem;
    height: 18rem;
  }

  .hero-glyph {
    width: 6.25rem;
  }

  .hero-actions,
  .section-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .homepage-hero-primary-actions {
    flex-direction: column;
    width: 100%;
  }

  .app-store-hero-link {
    align-self: center;
  }

  .app-store-hero-link img {
    height: 3.25rem;
  }

  .button {
    width: 100%;
  }

  .section {
    padding-block: 5.75rem;
  }

  .section-heading {
    margin-bottom: 3rem;
  }

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

  .path-card {
    display: flex;
    min-height: 0;
    flex-direction: column;
  }

  .path-card-copy {
    min-height: 0;
    padding: 1.65rem 1.65rem 1.35rem;
  }

  .path-card h3 {
    margin: 2.65rem 0 .7rem;
  }

  .path-card-copy p {
    max-width: none;
    padding-right: 0;
  }

  .path-preview {
    position: relative;
    right: auto;
    bottom: auto;
    z-index: 1;
    width: min(15rem, 72vw);
    height: 17rem;
    margin: .9rem .75rem -3.75rem auto;
    flex: 0 0 17rem;
  }

  .path-card:last-child .path-preview {
    right: auto;
  }

  .visual-field {
    min-height: 31rem;
    padding-inline: 0;
  }

  .visual-field::before {
    width: min(23rem, 100%);
    height: auto;
    aspect-ratio: 1;
  }

  .story-stack {
    gap: 5.25rem;
  }

  .story-row,
  .story-row:nth-child(even) {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .story-row .story-copy {
    order: 0;
  }

  .story-row .story-visual,
  .story-row:nth-child(even) .story-visual {
    order: 1;
  }

  .story-visual {
    min-width: 0;
    min-height: 0;
    padding-block: .5rem;
  }

  .story-visual::before {
    width: min(22rem, 100%);
    height: auto;
    aspect-ratio: 1;
  }

  .story-visual .device-shot {
    width: min(17rem, 76vw);
  }

  .story-copy {
    max-width: none;
    text-align: left;
  }

  .story-note {
    text-align: left;
  }

  .marketing-motion .story-row .story-visual.reveal,
  .marketing-motion .story-row:nth-child(even) .story-visual.reveal {
    transform: translateY(12px);
  }

  .trust-strip {
    grid-template-columns: 1fr;
  }

  .trust-item {
    padding-inline: 0;
  }

  .trust-item+.trust-item {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .footer-top,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-links {
    gap: 1rem 1.4rem;
  }
}

@media (prefers-reduced-motion: reduce) {

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

  .marketing-motion .reveal {
    opacity: 1;
    transform: none;
  }
}