@font-face {
  font-family: "Lora";
  src: url("assets/Lora-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Lora";
  src: url("assets/Lora-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Source Sans 3";
  src: url("assets/SourceSans3-VariableFont_wght.ttf") format("truetype");
  font-weight: 200 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Literata";
  src: url("assets/Literata-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --background: #FBF3E5;
  --background-warm: #FAF3E8;
  --surface: #FBF3E5;
  --surface-raised: #FFFFFF;
  --surface-muted: #F5EDE2;
  --text-primary: #3D332B;
  --text-secondary: #6B5D4F;
  --text-tertiary: #A8998A;
  --accent: #6E5230;
  --accent-muted: #D8C3A5;
  --accent-wash: #EFE3D1;
  --border: #E0D4C4;
  --divider: rgba(43, 33, 25, .1);
  --shadow: rgba(43, 33, 25, .11);
  --radius: 2px;
}

html[data-theme="dark"] {
  --background: #090908;
  --background-warm: #0D0D0C;
  --surface: #090908;
  --surface-raised: #11110F;
  --surface-muted: #151514;
  --text-primary: #ECE2D4;
  --text-secondary: #D7CCBD;
  --text-tertiary: #8A7A68;
  --accent: #E4D0B5;
  --accent-muted: #4F463C;
  --accent-wash: #181614;
  --border: #34312D;
  --divider: rgba(244, 233, 220, .12);
  --shadow: rgba(0, 0, 0, .32);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Lora", Georgia, serif;
  color: var(--text-primary);
  background: var(--background);
  overflow-x: clip;
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 4vw, 56px);
  color: var(--text-primary);
  background: color-mix(in srgb, var(--background) 86%, transparent);
  border-bottom: 1px solid var(--divider);
  backdrop-filter: blur(18px);
}

.site-header::after {
  content: "";
  display: none;
}

.brand,
.site-nav {
  display: flex;
  align-items: center;
}

.brand {
  gap: 11px;
  font-family: "Literata", Georgia, serif;
  font-size: 17px;
  line-height: 1.25;
  font-weight: 400;
  white-space: nowrap;
}

.brand-icon {
  position: relative;
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  overflow: hidden;
  border-radius: 22.5%;
  box-shadow: 0 3px 12px color-mix(in srgb, var(--shadow) 72%, transparent);
}

.brand-icon img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-icon-dark {
  display: none;
}

html[data-theme="dark"] .brand-icon-light {
  display: none;
}

html[data-theme="dark"] .brand-icon-dark {
  display: block;
}

.site-nav {
  gap: 24px;
  color: var(--text-secondary);
  font-family: "Source Sans 3", system-ui, sans-serif;
  font-size: 14px;
  font-weight: 450;
  margin-left: auto;
}

.site-nav a {
  transition: color .2s ease;
}

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

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface-raised);
}

.menu-button span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 6px auto;
  background: var(--text-primary);
}

.theme-toggle {
  font-family: "Source Sans 3", system-ui, sans-serif;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid color-mix(in srgb, var(--accent) 62%, var(--border));
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--accent-wash) 50%, var(--surface-raised));
  color: var(--accent);
  cursor: pointer;
}

.theme-toggle:hover {
  background: color-mix(in srgb, var(--accent-wash) 72%, var(--surface-raised));
}

.theme-icon {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.theme-icon-moon {
  display: none;
}

html[data-theme="dark"] .theme-icon-sun {
  display: none;
}

html[data-theme="dark"] .theme-icon-moon {
  display: block;
}

.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 600px);
  align-items: center;
  gap: clamp(34px, 6vw, 92px);
  padding: 118px clamp(20px, 7vw, 96px) 58px;
  overflow: hidden;
}

.hero-copy {
  max-width: 670px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.3px;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  color: var(--accent);
  font-size: 104px;
  line-height: .95;
  font-weight: 600;
  letter-spacing: 0;
  max-width: 8ch;
}

h2 {
  margin: 0;
  color: var(--accent);
  font-size: 58px;
  line-height: 1.05;
  font-weight: 600;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  color: var(--accent);
  font-size: 22px;
  line-height: 1.35;
}

.lead {
  max-width: 580px;
  margin: 24px 0 0;
  color: var(--text-primary);
  font-size: 21px;
  line-height: 1.55;
}

.store-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.store-link {
  min-width: 176px;
  display: grid;
  gap: 2px;
  font-family: "Source Sans 3", system-ui, sans-serif;
  padding: 12px 18px 13px;
  border: 1px solid color-mix(in srgb, var(--accent) 72%, var(--border));
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--surface-raised) 72%, transparent);
  box-shadow: none;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.store-link span {
  color: var(--accent);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  line-height: 1;
  text-transform: uppercase;
}

.store-link strong {
  color: var(--accent);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.1;
}

.store-link.primary {
  background: color-mix(in srgb, var(--accent-wash) 44%, var(--surface-raised));
  border-color: var(--accent);
}

.store-link.primary strong {
  color: var(--accent);
}

.store-link:hover {
  transform: translateY(-2px);
  border-color: var(--accent);
  background: color-mix(in srgb, var(--accent-wash) 62%, var(--surface-raised));
  box-shadow: 0 14px 34px var(--shadow);
}

.app-preview {
  position: relative;
  min-height: 640px;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.app-preview::before {
  content: "";
  position: absolute;
  width: min(48vw, 560px);
  aspect-ratio: 1.05;
  border-radius: 50%;
  background:
    radial-gradient(circle at 36% 34%, color-mix(in srgb, var(--accent-muted) 34%, transparent), transparent 38%),
    radial-gradient(circle at 68% 64%, color-mix(in srgb, var(--accent) 16%, transparent), transparent 44%);
  filter: blur(28px);
  opacity: .65;
  transform: translate(22px, 18px);
}

.app-preview::after {
  content: "";
  position: absolute;
  width: 250px;
  height: 250px;
  border-left: 1px solid color-mix(in srgb, var(--accent) 24%, transparent);
  border-top: 1px solid color-mix(in srgb, var(--accent) 16%, transparent);
  filter: blur(3px);
  opacity: .38;
  transform: translate(165px, -84px) rotate(45deg);
}

.app-preview img {
  position: relative;
  z-index: 2;
  width: min(48vw, 620px);
  max-height: 78vh;
  object-fit: contain;
  filter: drop-shadow(0 26px 68px var(--shadow));
}

.section,
.download-section {
  padding: clamp(70px, 9vw, 124px) clamp(20px, 7vw, 96px);
  border-top: 1px solid var(--divider);
  scroll-margin-top: 82px;
}

.feature-section {
  display: grid;
  grid-template-columns: minmax(280px, 430px) minmax(280px, 560px);
  justify-content: space-between;
  align-items: center;
  gap: clamp(44px, 7vw, 118px);
}

.feature-section-reverse {
  grid-template-columns: minmax(280px, 560px) minmax(280px, 430px);
}

.feature-section-journal {
  grid-template-columns: minmax(280px, 430px) minmax(280px, 560px);
}

.feature-copy p:last-child {
  max-width: 590px;
  margin: 24px 0 0;
  color: var(--text-secondary);
  font-size: 19px;
  line-height: 1.75;
}

.feature-art {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 560px;
  overflow: hidden;
}

.feature-art::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 12%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 38% 34%, color-mix(in srgb, var(--accent-muted) 32%, transparent), transparent 45%),
    radial-gradient(circle at 70% 66%, color-mix(in srgb, var(--accent) 12%, transparent), transparent 45%);
  filter: blur(22px);
  opacity: .72;
}

.feature-art::after {
  content: "";
  position: absolute;
  z-index: 0;
  pointer-events: none;
}

.feature-art img {
  position: relative;
  z-index: 2;
  width: min(100%, 255px);
  max-height: 540px;
  object-fit: contain;
  border: 0;
  border-radius: 0;
  background: transparent;
  filter: drop-shadow(0 24px 52px var(--shadow));
}

.feature-art-daily::before {
  inset: 5% 4%;
  background:
    radial-gradient(circle at 24% 30%, color-mix(in srgb, var(--accent-muted) 38%, transparent), transparent 32%),
    radial-gradient(circle at 72% 58%, color-mix(in srgb, var(--accent) 14%, transparent), transparent 38%),
    radial-gradient(circle at 42% 78%, color-mix(in srgb, var(--text-tertiary) 12%, transparent), transparent 30%);
}

.feature-art-daily::after {
  width: 310px;
  height: 310px;
  border: 1px solid color-mix(in srgb, var(--accent-muted) 48%, transparent);
  border-radius: 50%;
  transform: translate(-10px, 2px);
  opacity: .54;
}

.feature-art-journal::before {
  inset: 7% 8%;
  background:
    radial-gradient(circle at 68% 28%, color-mix(in srgb, var(--accent-muted) 30%, transparent), transparent 36%),
    radial-gradient(circle at 36% 62%, color-mix(in srgb, var(--accent) 12%, transparent), transparent 42%);
}

.feature-art-journal::after {
  width: 300px;
  height: 300px;
  border: 1px solid color-mix(in srgb, var(--accent-muted) 38%, transparent);
  border-radius: 50%;
  transform: translate(16px, -4px);
  opacity: .42;
}

.feature-art-sermon::before {
  inset: 6% 4%;
  background:
    radial-gradient(circle at 62% 28%, color-mix(in srgb, var(--accent-muted) 30%, transparent), transparent 34%),
    radial-gradient(circle at 34% 68%, color-mix(in srgb, var(--accent) 15%, transparent), transparent 42%),
    radial-gradient(circle at 78% 76%, color-mix(in srgb, var(--text-tertiary) 12%, transparent), transparent 30%);
}

.feature-art-sermon::after {
  width: 340px;
  height: 340px;
  border: 1px solid color-mix(in srgb, var(--accent-muted) 44%, transparent);
  border-radius: 50%;
  opacity: .5;
  transform: translate(20px, 6px);
}

.art-decor {
  position: absolute;
  z-index: 1;
  pointer-events: none;
}

.daily-prayer-text {
  top: 11%;
  right: 2%;
  width: 230px;
  display: grid;
  gap: 8px;
  color: var(--accent);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.22;
  opacity: .18;
  filter: blur(1.4px);
}

.daily-audio-card {
  left: 4%;
  bottom: 18%;
  width: 172px;
  padding: 15px 18px;
  border: 1px solid color-mix(in srgb, var(--accent-muted) 46%, transparent);
  background: color-mix(in srgb, var(--surface-raised) 54%, transparent);
  box-shadow: 0 18px 44px rgba(0, 0, 0, .16);
  opacity: .42;
  filter: blur(.5px);
}

.daily-audio-card span,
.daily-audio-card strong {
  display: block;
}

.daily-audio-card span {
  color: var(--text-tertiary);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.daily-audio-card strong {
  margin-top: 4px;
  color: var(--accent);
  font-size: 17px;
}

.soft-cross {
  top: 20%;
  left: 7%;
  width: 130px;
  height: 130px;
  opacity: .18;
  filter: blur(4px);
}

.soft-cross::before,
.soft-cross::after,
.church-window::before,
.church-window::after {
  content: "";
  position: absolute;
  background: var(--accent);
}

.soft-cross::before {
  left: 50%;
  top: 0;
  width: 1px;
  height: 100%;
}

.soft-cross::after {
  left: 18%;
  top: 33%;
  width: 64%;
  height: 1px;
}

.church-window {
  top: 8%;
  right: 5%;
  width: 160px;
  height: 230px;
  border: 1px solid color-mix(in srgb, var(--accent) 28%, transparent);
  border-radius: 80px 80px 2px 2px;
  opacity: .18;
  filter: blur(2.5px);
}

.church-window::before {
  left: 50%;
  top: 22%;
  width: 1px;
  height: 60%;
}

.church-window::after {
  left: 31%;
  top: 42%;
  width: 38%;
  height: 1px;
}

.sermon-light {
  left: 7%;
  bottom: 13%;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent-muted) 34%, transparent);
  filter: blur(32px);
  opacity: .42;
}

.section-heading p,
.download-section p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 17px;
  line-height: 1.7;
}

.library-section {
  display: grid;
  grid-template-columns: minmax(280px, 520px) minmax(360px, 1.05fr);
  gap: clamp(48px, 7vw, 118px);
  align-items: center;
  overflow: hidden;
}

.section-heading p:last-child {
  margin-top: 22px;
  max-width: 520px;
}

.library-visual {
  position: relative;
  width: 100%;
  min-height: 560px;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.library-visual::before {
  content: "";
  position: absolute;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 36%, color-mix(in srgb, var(--accent-muted) 32%, transparent), transparent 40%),
    radial-gradient(circle at 74% 70%, color-mix(in srgb, var(--accent) 12%, transparent), transparent 38%);
  filter: blur(22px);
  opacity: .68;
  transform: translate(16px, 12px);
}

.library-visual::after {
  content: "";
  position: absolute;
  width: 380px;
  height: 380px;
  border: 1px solid color-mix(in srgb, var(--accent-muted) 42%, transparent);
  border-radius: 50%;
  transform: translate(18px, 10px);
}

.library-phone {
  position: relative;
  z-index: 2;
  width: min(48vw, 285px);
  max-height: 550px;
  object-fit: contain;
  filter: drop-shadow(0 26px 68px var(--shadow));
}

.library-categories {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

.library-categories span {
  position: absolute;
  display: inline-block;
  padding-bottom: 7px;
  border-bottom: 1px solid color-mix(in srgb, var(--accent) 62%, transparent);
  color: var(--accent);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.2px;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.category-peace {
  top: 15%;
  left: 3%;
}

.category-strength {
  top: 28%;
  left: 0;
}

.category-guidance {
  top: 42%;
  left: 6%;
}

.category-gratitude {
  top: 58%;
  left: 1%;
}

.category-forgiveness {
  top: 74%;
  left: 10%;
}

.category-family {
  top: 17%;
  right: 5%;
}

.category-work {
  top: 33%;
  right: 0;
}

.category-morning {
  top: 50%;
  right: 7%;
}

.category-evening {
  top: 66%;
  right: 1%;
}

.category-healing {
  top: 82%;
  right: 12%;
}

.download-section {
  display: block;
  background: var(--background-warm);
  color: var(--text-primary);
}

.trust-section {
  display: grid;
  grid-template-columns: minmax(320px, 470px) minmax(0, 1fr);
  gap: clamp(44px, 7vw, 96px);
  align-items: center;
  background: color-mix(in srgb, var(--surface-muted) 52%, var(--surface));
}

.trust-content {
  display: grid;
  gap: 42px;
}

.trust-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(150px, 1fr));
  gap: 30px clamp(24px, 3.5vw, 44px);
}

.trust-list article {
  position: relative;
  padding-top: 22px;
}

.trust-list article::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 42px;
  height: 1px;
  background: color-mix(in srgb, var(--accent) 76%, transparent);
}

.trust-list span {
  display: block;
  color: var(--accent);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.25;
}

.trust-list p {
  margin: 14px 0 0;
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.6;
}

.feature-cluster {
  position: relative;
  min-height: 560px;
}

.cluster-phone-image {
  position: absolute;
  z-index: 3;
  left: 50%;
  top: 50%;
  width: min(58vw, 245px);
  max-height: 520px;
  object-fit: contain;
  filter: drop-shadow(0 28px 70px rgba(0, 0, 0, .42));
  transform: translate(-50%, -50%);
}

.cluster-card {
  position: absolute;
  z-index: 2;
  border: 1px solid color-mix(in srgb, var(--border) 55%, transparent);
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--surface-raised) 64%, transparent);
  box-shadow: 0 18px 42px rgba(0, 0, 0, .12);
}

html[data-theme="dark"] .cluster-card {
  background: color-mix(in srgb, var(--surface-raised) 78%, transparent);
}

.cluster-card-prayer {
  top: 5%;
  left: 46%;
  width: 176px;
  min-height: 180px;
  padding: 50px 18px 18px;
  background:
    linear-gradient(145deg, rgba(42, 38, 78, .72), rgba(17, 17, 15, .9)),
    var(--surface-raised);
}

.cluster-card-prayer p {
  margin: 0;
  color: #F7EBD9;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.22;
}

.cluster-card-actions {
  top: 34%;
  left: 2%;
  width: 112px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 13px 10px;
}

.cluster-card-actions span,
.cluster-card-language span,
.cluster-card-reminders span {
  color: var(--accent);
  font-size: 9px;
  font-weight: 600;
}

.cluster-card-reminders {
  left: 2%;
  bottom: 28%;
  width: 120px;
  display: grid;
  gap: 10px;
  padding: 12px;
}

.cluster-card-reminders span {
  display: flex;
  justify-content: space-between;
}

.cluster-card-reminders span::after {
  content: "";
  width: 23px;
  height: 10px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--accent) 62%, var(--accent-muted));
}

.cluster-card-note {
  left: 6%;
  bottom: 8%;
  width: 135px;
  min-height: 105px;
  padding: 15px;
}

.cluster-card-note p {
  margin: 0;
  color: var(--accent);
  font-size: 10px;
  font-weight: 600;
}

.cluster-card-note span {
  display: block;
  margin-top: 10px;
  color: var(--text-secondary);
  font-size: 9px;
  line-height: 1.4;
}

.cluster-card-language {
  right: 1%;
  top: 52%;
  width: 124px;
  display: grid;
  gap: 9px;
  padding: 12px;
}

.download-section .eyebrow {
  color: var(--accent);
}

.download-section p {
  max-width: 610px;
  margin-top: 20px;
  color: var(--text-secondary);
}

.compact {
  margin-top: 34px;
  justify-content: flex-start;
}

.download-section .store-link {
  border-color: color-mix(in srgb, var(--accent) 72%, var(--border));
  background: color-mix(in srgb, var(--surface-raised) 72%, transparent);
}

.download-section .store-link.primary {
  background: color-mix(in srgb, var(--accent-wash) 44%, var(--surface-raised));
}

.download-section .store-link.primary span {
  color: var(--accent);
}

.download-section .store-link.primary strong {
  color: var(--accent);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 26px clamp(20px, 7vw, 96px);
  color: var(--text-secondary);
  background: var(--background);
  border-top: 1px solid var(--divider);
  font-family: "Source Sans 3", system-ui, sans-serif;
  font-size: 14px;
  font-weight: 450;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

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

.footer-links a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.legal-page {
  padding: 130px clamp(20px, 7vw, 96px) 96px;
}

.legal-hero {
  max-width: 820px;
  padding-bottom: 54px;
}

.legal-hero h1 {
  max-width: none;
  font-size: 86px;
}

.legal-hero p:last-child {
  margin: 22px 0 0;
  color: var(--text-secondary);
  font-size: 17px;
  line-height: 1.6;
}

.legal-content {
  max-width: 820px;
  display: grid;
  gap: 42px;
}

.legal-content section {
  padding-top: 24px;
  border-top: 1px solid var(--divider);
}

.legal-content h2 {
  font-size: 30px;
  line-height: 1.2;
}

.legal-content p {
  margin: 14px 0 0;
  color: var(--text-secondary);
  font-size: 18px;
  line-height: 1.75;
}

.legal-content a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 4px;
}

@media (max-width: 900px) {
  .hero,
  .feature-section,
  .feature-section-reverse,
  .library-section,
  .trust-section,
  .download-section {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 104px;
  }

  .app-preview {
    min-height: 560px;
  }

  .library-section {
    gap: 42px;
  }

  .feature-section,
  .feature-section-reverse {
    gap: 42px;
  }

  .feature-section-reverse .feature-art {
    order: 2;
  }

  .feature-section-reverse .feature-copy {
    order: 1;
  }

  .library-visual {
    min-height: 500px;
  }

  .trust-list {
    grid-template-columns: repeat(2, minmax(180px, 1fr));
  }

  .feature-cluster {
    min-height: 500px;
    max-width: 520px;
    margin: 0 auto;
    width: 100%;
  }

  .compact {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .site-header {
    gap: 10px;
    padding: 14px 18px;
  }

  .brand {
    gap: 8px;
    font-size: 15px;
  }

  .brand-icon {
    flex-basis: 34px;
    width: 34px;
    height: 34px;
  }

  .menu-button {
    display: block;
    width: 40px;
    order: 3;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 18px 18px;
    background: color-mix(in srgb, var(--background) 96%, transparent);
    border-bottom: 1px solid var(--divider);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 13px 0;
    border-bottom: 1px solid var(--divider);
  }

  .theme-toggle {
    order: 2;
    margin-left: auto;
  }

  .hero {
    min-height: auto;
    padding-bottom: 48px;
  }

  h1 {
    font-size: 64px;
    line-height: 1;
  }

  .legal-page {
    padding-top: 106px;
  }

  .legal-hero h1 {
    font-size: 56px;
  }

  .legal-content h2 {
    font-size: 26px;
  }

  .legal-content p {
    font-size: 16px;
  }

  .store-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .app-preview {
    min-height: 510px;
  }

  .app-preview::before {
    width: 340px;
    filter: blur(24px);
    transform: translate(8px, 26px);
  }

  .app-preview::after {
    width: 150px;
    height: 150px;
    transform: translate(90px, -70px) rotate(45deg);
  }

  .app-preview img {
    width: min(96vw, 520px);
  }

  .feature-copy p:last-child {
    font-size: 17px;
  }

  .feature-art {
    max-width: 330px;
    margin: 0 auto;
    min-height: 470px;
  }

  .daily-prayer-text {
    right: 8%;
    width: 170px;
    font-size: 14px;
  }

  .daily-audio-card {
    left: 6%;
    width: 134px;
  }

  .soft-cross,
  .church-window {
    opacity: .13;
  }

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

  .feature-cluster {
    min-height: 430px;
    overflow: hidden;
  }

  .cluster-phone-image {
    width: min(62vw, 220px);
  }

  .cluster-card-prayer {
    left: 48%;
    width: 150px;
    min-height: 148px;
    padding: 36px 14px 14px;
  }

  .cluster-card-prayer p {
    font-size: 10px;
  }

  .cluster-card-actions {
    left: 0;
    top: 35%;
    width: 112px;
    gap: 5px;
    padding: 12px 7px;
  }

  .cluster-card-reminders {
    left: 0;
    bottom: 28%;
    width: 104px;
  }

  .cluster-card-note {
    left: 3%;
    bottom: 6%;
    width: 120px;
  }

  .cluster-card-language {
    right: 0;
    top: 54%;
    width: 108px;
  }

  .library-visual {
    min-height: 470px;
  }

  .library-visual::before {
    width: 360px;
  }

  .library-phone {
    width: 190px;
  }

  .library-categories span {
    font-size: 8px;
    letter-spacing: .9px;
  }

  .category-peace,
  .category-guidance,
  .category-gratitude {
    left: 12px;
  }

  .category-strength,
  .category-forgiveness {
    left: 20px;
  }

  .category-family,
  .category-morning,
  .category-healing {
    right: 12px;
  }

  .category-work,
  .category-evening {
    right: 20px;
  }

  .site-footer {
    display: grid;
  }
}
