:root {
  color-scheme: dark;
  --black: #050505;
  --surface: #151515;
  --raised: #1d1d1d;
  --line: #2b2b2b;
  --gold: #e2b84f;
  --gold-strong: #f0c95f;
  --green: #62c77b;
  --white: #f7f7f5;
  --muted: #a0a09c;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--black);
  color: var(--white);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

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

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

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

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--gold);
  color: #000;
  transform: translateY(-150%);
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 76px;
  padding: 0 32px;
  border-bottom: 1px solid transparent;
  background: rgba(5, 5, 5, 0.88);
  backdrop-filter: blur(18px);
  transition: border-color 160ms ease;
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 11px;
  width: max-content;
}

.brand img {
  border-radius: 8px;
}

.brand-words {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 800;
}

.brand-words span {
  color: var(--gold);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 2.4px;
}

.site-header nav {
  display: flex;
  gap: 30px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

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

.header-actions {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 10px;
}

.web-app-link {
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 8px;
  height: 42px;
  padding: 0 15px;
  border: 1px solid var(--line);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
}

.header-cta:hover,
.header-cta:focus-visible {
  border-color: var(--gold);
  color: var(--gold);
}

.header-cta svg {
  width: 17px;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  align-items: center;
  min-height: calc(100svh - 36px);
  max-height: 940px;
  padding: 116px max(32px, calc((100vw - var(--max)) / 2)) 54px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(0,0,0,.46), rgba(0,0,0,.72)),
    linear-gradient(180deg, rgba(0,0,0,.08), #050505 94%),
    url("assets/mountains.png") center / cover no-repeat;
}

.hero::after {
  content: none;
}

.hero-copy {
  position: relative;
  z-index: 3;
  max-width: 670px;
  padding-right: 40px;
}

.prayer-button {
  width: max-content;
  margin-top: 28px;
}

.eyebrow {
  margin: 0 0 17px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
}

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

h1 {
  margin-bottom: 26px;
  font-size: clamp(58px, 7vw, 92px);
  font-weight: 900;
  line-height: 0.9;
}

h1 span {
  color: var(--gold);
}

h2 {
  margin-bottom: 22px;
  font-size: 50px;
  font-weight: 850;
  line-height: 1.04;
}

h3 {
  font-size: 22px;
}

.hero-statement {
  margin-bottom: 20px;
  color: var(--white);
  font-size: 27px;
  font-weight: 700;
  line-height: 1.25;
}

.hero-statement strong {
  color: var(--gold);
}

.hero-body,
.section-heading > p:last-child,
.product-copy > p,
.reset-inner > div > p:last-child,
.conviction-copy > p:last-child {
  max-width: 610px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 32px;
}

.primary-button,
.store-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 188px;
  min-height: 58px;
  padding: 9px 18px;
  border: 1px solid var(--gold);
  border-radius: 7px;
  background: var(--gold);
  color: #050505;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.05;
}

.primary-button:hover,
.primary-button:focus-visible,
.store-button:hover,
.store-button:focus-visible {
  background: var(--gold-strong);
}

.primary-button small,
.store-button small {
  display: block;
  margin-bottom: 3px;
  font-size: 10px;
  font-weight: 600;
}

.primary-button svg,
.store-button svg {
  flex: 0 0 auto;
  width: 25px;
  height: 25px;
}

.store-button {
  background: transparent;
  color: var(--white);
  border-color: #4a4a47;
}

.store-button:hover,
.store-button:focus-visible {
  color: var(--gold);
  background: #111;
  border-color: var(--gold);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--white);
}

.text-link svg {
  width: 17px;
}

.hero-product {
  position: relative;
  z-index: 2;
  justify-self: center;
  width: min(370px, 100%);
  margin: 42px 0 0;
}

.phone-shell {
  position: relative;
  height: min(720px, calc(100svh - 148px));
  overflow: hidden;
  border: 7px solid #252525;
  border-radius: 48px;
  background: #000;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.phone-shell::before {
  position: absolute;
  top: 10px;
  left: 50%;
  z-index: 2;
  width: 84px;
  height: 22px;
  border-radius: 99px;
  background: #050505;
  content: "";
  transform: translateX(-50%);
}

.phone-shell img {
  width: 100%;
  height: auto;
}

.hero-product figcaption {
  margin-top: 13px;
  color: #777773;
  font-size: 11px;
  text-align: center;
}

.rhythm-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  min-height: 68px;
  padding: 14px 24px;
  overflow: hidden;
  background: var(--gold);
  color: #050505;
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.rhythm-strip svg {
  width: 6px;
  height: 6px;
  fill: currentColor;
}

.section {
  width: min(var(--max), calc(100% - 64px));
  margin: 0 auto;
  padding: 120px 0;
}

.rhythm-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(440px, 1.2fr);
  gap: 100px;
  align-items: start;
}

.section-heading {
  position: sticky;
  top: 116px;
}

.practice-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.practice-list li {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) minmax(160px, 0.7fr);
  align-items: center;
  min-height: 82px;
  border-bottom: 1px solid var(--line);
}

.practice-list li > span {
  color: var(--gold);
  font-size: 14px;
  font-weight: 800;
}

.practice-list strong {
  font-size: 17px;
}

.practice-list p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.product-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(380px, 1.2fr);
  gap: 110px;
  align-items: center;
  border-top: 1px solid var(--line);
}

.product-shot {
  height: 620px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.product-shot img {
  width: 100%;
  height: auto;
  transform: translateY(-80px);
}

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

.feature-list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 13px;
  align-items: start;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
  color: #d6d6d2;
  font-size: 15px;
  line-height: 1.5;
}

.feature-list svg {
  width: 20px;
  color: var(--green);
}

.reset-band {
  padding: 100px 32px;
  border-top: 1px solid #3d3218;
  border-bottom: 1px solid #3d3218;
  background: #17140c;
}

.reset-inner {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 80px;
  align-items: center;
  width: min(950px, 100%);
  margin: 0 auto;
}

.reset-mark {
  display: grid;
  width: 210px;
  height: 210px;
  place-items: center;
  border: 2px solid var(--gold);
  border-radius: 50%;
}

.reset-mark span {
  color: var(--gold);
  font-size: 108px;
  font-weight: 900;
}

.conviction-section {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 100px;
  align-items: end;
}

.conviction-line {
  margin-bottom: 24px;
  color: var(--gold);
  font-size: 30px;
  font-weight: 800;
}

blockquote {
  margin: 0;
  padding: 34px 0 0 34px;
  border-top: 1px solid var(--line);
  border-left: 4px solid var(--gold);
}

blockquote p {
  margin-bottom: 16px;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.35;
}

blockquote cite {
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
}

.support-section {
  border-top: 1px solid var(--line);
}

.support-section .section-heading {
  position: static;
  max-width: 720px;
}

.support-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 70px;
  margin-top: 54px;
}

.faq-list {
  border-top: 1px solid var(--line);
}

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

summary {
  position: relative;
  padding: 23px 48px 23px 0;
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
  list-style: none;
}

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

summary::after {
  position: absolute;
  right: 4px;
  content: "+";
  color: var(--gold);
  font-size: 22px;
  font-weight: 400;
}

details[open] summary::after {
  content: "−";
}

details p {
  max-width: 680px;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.contact-panel {
  align-self: start;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.contact-panel > svg {
  width: 28px;
  color: var(--gold);
}

.contact-panel h3 {
  margin: 24px 0 12px;
}

.contact-panel p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.contact-panel a {
  display: inline-block;
  margin-top: 12px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  word-break: break-word;
}

.final-cta {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 30px;
  align-items: center;
  width: min(var(--max), calc(100% - 64px));
  margin: 0 auto 90px;
  padding: 42px;
  border: 1px solid var(--gold);
  border-radius: 8px;
  background: #0c0b08;
}

.final-cta > img {
  border-radius: 8px;
}

.final-cta h2 {
  margin: 0;
  font-size: 32px;
}

.final-cta .eyebrow {
  margin-bottom: 9px;
}

.final-actions {
  display: flex;
  gap: 10px;
}

footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 100px;
  padding: 24px 32px;
  border-top: 1px solid var(--line);
  color: #777773;
  font-size: 12px;
}

footer p {
  margin: 0;
}

.footer-links {
  display: flex;
  justify-self: end;
  gap: 24px;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--white);
}

.legal-page {
  min-height: 100svh;
  padding: 124px 24px 80px;
}

.legal-content {
  width: min(760px, 100%);
  margin: 0 auto;
}

.legal-content h1 {
  margin-bottom: 18px;
  font-size: 52px;
  line-height: 1;
}

.legal-content h2 {
  margin: 44px 0 14px;
  font-size: 22px;
}

.legal-content p,
.legal-content li {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

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

.legal-content ul,
.legal-content ol {
  padding-left: 22px;
}

.legal-action {
  display: inline-flex;
  align-items: center;
  min-height: 50px;
  margin-top: 18px;
  padding: 0 20px;
  border-radius: 7px;
  background: var(--gold);
  color: #050505 !important;
  font-weight: 800;
  text-decoration: none !important;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 500ms ease, transform 500ms ease;
}

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

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

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

  .site-header nav {
    display: none;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr) 310px;
    min-height: 760px;
    padding-right: 24px;
    padding-left: 24px;
  }

  .hero::after {
    width: 38%;
  }

  h1 {
    font-size: 78px;
  }

  h2 {
    font-size: 42px;
  }

  .hero-statement {
    font-size: 23px;
  }

  .rhythm-section,
  .product-section,
  .conviction-section {
    gap: 58px;
  }

  .reset-inner {
    grid-template-columns: 160px 1fr;
    gap: 46px;
  }

  .reset-mark {
    width: 160px;
    height: 160px;
  }

  .reset-mark span {
    font-size: 82px;
  }
}

@media (max-width: 720px) {
  body::before {
    display: none;
  }

  .site-header {
    height: 66px;
  }

  .header-cta {
    width: 42px;
    padding: 0;
  }

  .web-app-link {
    font-size: 10px;
  }

  .header-cta span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
  }

  .hero {
    display: block;
    min-height: calc(100svh - 18px);
    max-height: none;
    padding: 116px 20px 40px;
  }

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

  .hero::after {
    top: auto;
    bottom: 0;
    width: 100%;
    height: 37%;
  }

  .hero-copy {
    max-width: 100%;
    padding-right: 0;
  }

  h1 {
    margin-bottom: 20px;
    font-size: 66px;
  }

  h2 {
    font-size: 36px;
  }

  .hero-statement {
    font-size: 21px;
  }

  .hero-body {
    max-width: 92%;
    font-size: 15px;
  }

  .hero-actions {
    align-items: flex-start;
    gap: 18px;
  }

  .text-link {
    display: none;
  }

  .hero-product {
    position: absolute;
    right: 20px;
    bottom: -245px;
    z-index: 2;
    width: 205px;
  }

  .phone-shell {
    height: 430px;
    border-width: 4px;
    border-radius: 29px;
  }

  .phone-shell::before {
    top: 6px;
    width: 54px;
    height: 14px;
  }

  .hero-product figcaption {
    display: none;
  }

  .rhythm-strip {
    justify-content: flex-start;
    min-height: 62px;
    padding-left: 20px;
  }

  .section {
    width: calc(100% - 40px);
    padding: 84px 0;
  }

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

  .legal-content h1 {
    font-size: 40px;
  }

  .rhythm-section,
  .product-section,
  .conviction-section,
  .support-grid,
  .reset-inner {
    grid-template-columns: 1fr;
  }

  .rhythm-section,
  .product-section,
  .conviction-section {
    gap: 44px;
  }

  .section-heading {
    position: static;
  }

  .practice-list li {
    grid-template-columns: 45px 1fr;
    min-height: 76px;
  }

  .practice-list p {
    grid-column: 2;
    margin-top: 4px;
  }

  .product-section {
    display: flex;
    flex-direction: column-reverse;
  }

  .product-shot {
    width: 100%;
    height: 500px;
  }

  .reset-band {
    padding: 76px 20px;
  }

  .reset-inner {
    gap: 34px;
  }

  .reset-mark {
    width: 130px;
    height: 130px;
  }

  .reset-mark span {
    font-size: 68px;
  }

  blockquote {
    padding: 28px 0 0 24px;
  }

  blockquote p {
    font-size: 23px;
  }

  .support-grid {
    gap: 40px;
  }

  .final-cta {
    grid-template-columns: 64px 1fr;
    width: calc(100% - 40px);
    margin-bottom: 60px;
    padding: 25px;
  }

  .final-cta > img {
    width: 64px;
    height: 64px;
  }

  .final-cta .primary-button {
    grid-column: 1 / -1;
    width: 100%;
    justify-content: center;
  }

  .final-cta h2 {
    font-size: 24px;
  }

  footer {
    grid-template-columns: 1fr;
    gap: 24px;
    justify-items: start;
    padding: 32px 20px;
  }

  .footer-links {
    justify-self: start;
  }
}

@media (max-width: 390px) {
  .hero {
    padding-top: 100px;
  }

  h1 {
    font-size: 58px;
  }

  .hero-statement {
    font-size: 19px;
  }

  .hero-actions {
    margin-top: 24px;
  }

  .primary-button {
    min-width: 176px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

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

/* Mountain visual system shared with the God’s Voice Daily app. */
body {
  background:
    linear-gradient(180deg, rgba(0,0,0,.16), #050505 32%, #050505 100%),
    url("assets/mountains.png") top center / 100% auto no-repeat,
    #050505;
}

.site-header {
  border-bottom-color: rgba(226, 184, 79, .15);
  background: rgba(4, 4, 4, .68);
}

.hero {
  max-height: none;
  border-bottom-color: rgba(226, 184, 79, .24);
  background:
    linear-gradient(90deg, rgba(0,0,0,.96) 0%, rgba(0,0,0,.75) 47%, rgba(0,0,0,.40) 100%),
    linear-gradient(180deg, rgba(0,0,0,.05), rgba(0,0,0,.86)),
    url("assets/mountains.png") center 34% / cover no-repeat;
}

.hero::after {
  display: none;
}

.hero h1,
.section h2,
.final-cta h2 {
  text-shadow: 0 7px 28px rgba(0, 0, 0, .68);
}

.hero-product .phone-shell {
  border-color: rgba(226, 184, 79, .36);
  box-shadow: 0 30px 90px rgba(0, 0, 0, .72), 0 0 48px rgba(226, 184, 79, .16);
}

.rhythm-strip {
  border-color: rgba(226, 184, 79, .28);
  background: rgba(15, 13, 8, .92);
  color: var(--gold);
}

.section {
  position: relative;
  isolation: isolate;
  border-bottom-color: rgba(226, 184, 79, .18);
  background: rgba(5, 5, 5, .88);
}

.section::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(5,5,5,.88), rgba(5,5,5,.96)),
    url("assets/mountains.png") center / cover no-repeat;
  content: "";
  opacity: .72;
}

.product-section:nth-of-type(even)::before {
  transform: scaleX(-1);
}

.practice-list li,
.feature-list li,
.support-grid details,
.contact-panel,
blockquote {
  border-color: rgba(226, 184, 79, .28);
  background: linear-gradient(135deg, rgba(31,29,23,.92), rgba(12,12,12,.90));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.025), 0 16px 50px rgba(0,0,0,.18);
}

.product-shot {
  border-color: rgba(226, 184, 79, .35);
  background: rgba(8, 8, 8, .82);
  box-shadow: 0 24px 70px rgba(0,0,0,.55), 0 0 36px rgba(226,184,79,.10);
}

.final-cta {
  background:
    linear-gradient(90deg, rgba(0,0,0,.93), rgba(0,0,0,.60)),
    url("assets/mountains.png") center 60% / cover no-repeat;
  border-top: 1px solid rgba(226,184,79,.28);
  border-bottom: 1px solid rgba(226,184,79,.20);
}

footer {
  background: #030303;
}

@media (max-width: 760px) {
  body {
    background-size: auto 720px;
  }

  .hero {
    background-position: 58% center;
  }

  .site-header .header-cta {
    display: none;
  }

  .hero {
    display: flex;
    min-height: auto;
    flex-direction: column;
    align-items: stretch;
    gap: 54px;
    padding-bottom: 64px;
  }

  .hero-product {
    position: relative;
    right: auto;
    bottom: auto;
    align-self: center;
    width: min(270px, 82vw);
  }

  .phone-shell {
    height: auto;
    aspect-ratio: 9 / 19.5;
  }
}

/* App-matched 2026 layout */
:root {
  --page-pad: clamp(20px, 5vw, 72px);
  --panel: rgba(18, 18, 17, .88);
  --panel-line: rgba(226, 184, 79, .34);
}

body {
  background: #050505;
  line-height: 1.5;
}

.site-header {
  height: 82px;
  padding-inline: max(var(--page-pad), calc((100vw - var(--max)) / 2));
  background: rgba(3, 3, 3, .72);
  border-bottom: 1px solid rgba(226, 184, 79, .18);
}

.hero {
  width: 100%;
  min-height: 100svh;
  max-height: none;
  padding: 132px max(var(--page-pad), calc((100vw - var(--max)) / 2)) 72px;
  gap: clamp(44px, 7vw, 100px);
  background:
    linear-gradient(90deg, rgba(0,0,0,.92), rgba(0,0,0,.53)),
    linear-gradient(180deg, rgba(0,0,0,.06), rgba(0,0,0,.9)),
    url("assets/mountains.png") center / cover no-repeat;
}

.hero-copy {
  width: 100%;
  max-width: 650px;
  padding: 0;
}

.hero h1 {
  margin-bottom: 24px;
  font-size: clamp(62px, 8vw, 104px);
  line-height: .94;
}

.hero-body,
.hero-statement,
.section-heading > p,
.product-copy > p,
.conviction-copy > p,
.contact-panel p,
.support-grid details p {
  max-width: 62ch;
  overflow-wrap: anywhere;
}

.hero-actions,
.final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.primary-button,
.store-button,
.header-cta {
  border-radius: 999px;
}

.rhythm-strip {
  min-height: 72px;
  border-block: 1px solid var(--panel-line);
}

.section {
  width: min(var(--max), calc(100% - (2 * var(--page-pad))));
  padding: clamp(76px, 9vw, 124px) 0;
  background: transparent;
}

.section::before {
  inset: 18px -28px;
  border: 1px solid rgba(226, 184, 79, .12);
  border-radius: 32px;
  background: linear-gradient(145deg, rgba(24,22,17,.64), rgba(5,5,5,.95));
}

.rhythm-section {
  grid-template-columns: minmax(280px, .8fr) minmax(0, 1.2fr);
  gap: clamp(48px, 8vw, 100px);
}

.practice-list {
  display: grid;
  gap: 14px;
  border: 0;
}

.practice-list li {
  grid-template-columns: 56px minmax(0, .65fr) minmax(0, 1fr);
  min-height: 112px;
  padding: 18px 22px;
  border: 1px solid var(--panel-line);
  border-radius: 20px;
}

.practice-list li > p {
  margin: 0;
  padding-left: 20px;
}

.product-section {
  grid-template-columns: minmax(260px, 420px) minmax(0, 1fr);
  gap: clamp(52px, 9vw, 116px);
  align-items: center;
}

.product-shot {
  overflow: hidden;
  border: 1px solid var(--panel-line);
  border-radius: 36px;
}

.feature-list {
  display: grid;
  gap: 10px;
}

.feature-list li,
.support-grid details,
.contact-panel,
blockquote {
  padding: 18px 20px;
  border: 1px solid rgba(226, 184, 79, .22);
  border-radius: 16px;
}

.support-grid {
  gap: clamp(28px, 6vw, 72px);
}

.final-cta {
  width: min(var(--max), calc(100% - (2 * var(--page-pad))));
  margin: 24px auto 76px;
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid var(--panel-line);
  border-radius: 28px;
  background:
    linear-gradient(90deg, rgba(0,0,0,.94), rgba(0,0,0,.58)),
    url("assets/mountains.png") center / cover no-repeat;
}

footer {
  padding-inline: max(var(--page-pad), calc((100vw - var(--max)) / 2));
}

@media (max-width: 920px) {
  .site-header { grid-template-columns: 1fr auto; }
  .site-header nav { display: none; }
  .hero { grid-template-columns: 1fr; text-align: center; }
  .hero-copy { margin-inline: auto; }
  .hero-body { margin-inline: auto; }
  .hero-actions { justify-content: center; }
  .rhythm-section,
  .product-section { grid-template-columns: 1fr; gap: 42px; }
  .section-heading { position: static; }
  .product-shot { width: min(360px, 86vw); margin-inline: auto; }
}

@media (max-width: 720px) {
  :root { --page-pad: 20px; }
  .site-header { height: 72px; }
  .brand-words span { font-size: 10px; letter-spacing: 1.5px; }
  .web-app-link { display: none; }
  .hero { padding-top: 108px; padding-bottom: 58px; }
  .hero-statement { font-size: 21px; }
  .hero-actions > a { width: 100%; justify-content: center; }
  .rhythm-strip { gap: 14px; font-size: 9px; }
  .section::before { inset-inline: -8px; border-radius: 22px; }
  .practice-list li { grid-template-columns: 44px 1fr; padding: 18px; }
  .practice-list li > p { grid-column: 2; padding: 4px 0 0; }
  .final-cta { grid-template-columns: 1fr; text-align: center; }
  .final-cta > img { margin-inline: auto; }
  .final-actions > a { width: 100%; justify-content: center; }
  footer { padding: 34px var(--page-pad); }
}

.faith-panel {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 18px;
  min-height: 520px;
  padding: 48px 32px;
  border: 1px solid var(--panel-line);
  border-radius: 36px;
  background:
    linear-gradient(180deg, rgba(7,7,7,.48), rgba(7,7,7,.94)),
    url("assets/mountains.png") center / cover no-repeat;
  box-shadow: 0 24px 70px rgba(0,0,0,.55), 0 0 36px rgba(226,184,79,.10);
  color: var(--muted);
  text-align: center;
}

.faith-panel svg {
  width: 64px;
  height: 64px;
  color: var(--gold);
}

.faith-panel strong {
  color: var(--white);
  font-size: clamp(24px, 4vw, 40px);
  letter-spacing: .18em;
}

.faith-panel span {
  width: min(100%, 320px);
  padding: 14px 18px;
  border: 1px solid rgba(226,184,79,.25);
  border-radius: 999px;
  background: rgba(10,10,10,.74);
}

.prayer-page {
  min-height: 100svh;
  background:
    linear-gradient(180deg, rgba(0,0,0,.12), rgba(0,0,0,.82) 56%, #050505 100%),
    url("assets/mountains.png") center 48% / cover fixed no-repeat;
}

.prayer-header {
  background: linear-gradient(180deg, rgba(5,5,5,.78), rgba(5,5,5,.20));
}

.prayer-home-link {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.prayer-home-link:hover,
.prayer-home-link:focus-visible {
  color: var(--gold);
}

.prayer-shell {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(420px, .75fr);
  align-items: center;
  gap: clamp(48px, 8vw, 110px);
  width: min(1120px, calc(100% - 48px));
  min-height: 100svh;
  margin: 0 auto;
  padding: 126px 0 72px;
}

.prayer-intro h1 {
  max-width: 650px;
  margin-bottom: 24px;
  font-size: clamp(48px, 6vw, 78px);
  line-height: .96;
}

.prayer-intro > p:not(.eyebrow) {
  max-width: 630px;
  color: #c6c6c1;
  font-size: 19px;
  line-height: 1.65;
}

.prayer-promise {
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 580px;
  margin-top: 30px;
  padding: 18px 20px;
  border: 1px solid rgba(226,184,79,.34);
  border-radius: 16px;
  background: rgba(13,13,13,.72);
  color: #d9d9d4;
  line-height: 1.5;
}

.prayer-promise svg {
  width: 26px;
  flex: 0 0 26px;
  color: var(--gold);
}

.public-prayer-card {
  border: 1px solid rgba(226,184,79,.56);
  border-radius: 28px;
  background: rgba(12,12,12,.88);
  box-shadow: 0 30px 100px rgba(0,0,0,.72), 0 0 45px rgba(226,184,79,.08);
  backdrop-filter: blur(18px);
}

.public-prayer-card form {
  display: grid;
  gap: 20px;
  padding: 32px;
}

.field-group {
  display: grid;
  gap: 9px;
}

.field-group label,
.field-label-row span {
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.8px;
}

.field-group small,
.prayer-consent {
  color: #8f8f8b;
  font-size: 12px;
  line-height: 1.5;
}

.field-label-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.field-label-row span {
  color: #8f8f8b;
  letter-spacing: 0;
}

.public-prayer-card input,
.public-prayer-card textarea {
  width: 100%;
  border: 1px solid #4b4128;
  border-radius: 16px;
  outline: none;
  background: rgba(24,24,23,.88);
  color: var(--white);
  font: inherit;
}

.public-prayer-card input {
  height: 58px;
  padding: 0 18px;
}

.public-prayer-card textarea {
  min-height: 156px;
  padding: 17px 18px;
  resize: vertical;
  line-height: 1.55;
}

.public-prayer-card input:focus,
.public-prayer-card textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(226,184,79,.12);
}

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

.public-prayer-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 62px;
  border: 0;
  border-radius: 18px;
  background: linear-gradient(100deg, #f0c24f, #ffda69);
  color: #050505;
  font: inherit;
  font-weight: 900;
  letter-spacing: 1px;
  cursor: pointer;
  box-shadow: 0 12px 32px rgba(226,184,79,.18);
}

.public-prayer-submit:disabled {
  cursor: wait;
  opacity: .62;
}

.public-prayer-submit svg {
  width: 22px;
}

.prayer-form-message {
  min-height: 20px;
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
  text-align: center;
}

.prayer-form-message.success { color: #62c77b; }
.prayer-form-message.error { color: #ef7474; }
.prayer-consent { margin: -2px 0 0; text-align: center; }

@media (max-width: 900px) {
  .prayer-shell {
    grid-template-columns: 1fr;
    gap: 34px;
    padding-top: 126px;
  }

  .prayer-intro { text-align: center; }
  .prayer-intro > p:not(.eyebrow), .prayer-promise { margin-inline: auto; }
}

@media (max-width: 620px) {
  .prayer-page {
    background-position: center top;
    background-size: auto 1120px;
    background-attachment: scroll;
  }
  .prayer-header { grid-template-columns: 1fr auto; padding-inline: 18px; }
  .prayer-header .prayer-home-link { display: none; }
  .prayer-header .header-cta { font-size: 11px; }
  .prayer-shell { width: min(100% - 28px, 560px); padding: 112px 0 44px; }
  .prayer-intro h1 { font-size: 44px; }
  .prayer-intro > p:not(.eyebrow) { font-size: 17px; }
  .public-prayer-card form { padding: 24px 18px; }
}
