:root {
  color-scheme: light;
  --ink: #14202d;
  --muted: #5d6a76;
  --paper: #fbfaf7;
  --surface: #ffffff;
  --line: #d9dedf;
  --navy: #142b4a;
  --teal: #087078;
  --gold: #8f5f18;
  --clay: #9b4f3a;
  --shadow: 0 18px 48px rgba(20, 32, 45, 0.12);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.5;
}

a {
  color: inherit;
}

.site-header,
.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 22px clamp(20px, 4vw, 48px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 5;
  background: rgba(251, 250, 247, 0.92);
  border-bottom: 1px solid rgba(217, 222, 223, 0.7);
  backdrop-filter: blur(18px);
}

.brand,
.site-header nav,
.site-footer nav,
.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand {
  font-weight: 800;
  text-decoration: none;
}

.brand-icon {
  display: block;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  object-fit: cover;
}

nav a {
  color: var(--muted);
  font-weight: 700;
  text-decoration: none;
}

nav a:hover {
  color: var(--ink);
}

nav a[aria-current="page"] {
  color: var(--ink);
}

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

.hero {
  position: relative;
  overflow: hidden;
  min-height: 82vh;
  display: flex;
  align-items: center;
  padding: 80px clamp(20px, 6vw, 76px) 120px;
  background:
    linear-gradient(90deg, rgba(20, 32, 45, 0.9), rgba(20, 32, 45, 0.62) 48%, rgba(20, 32, 45, 0.2)),
    linear-gradient(180deg, rgba(11, 125, 132, 0.18), rgba(189, 131, 43, 0.16));
  background-color: #14202d;
  color: #fff;
}

.hero::after {
  content: "";
  position: absolute;
  top: 16px;
  right: 8vw;
  bottom: 0;
  width: min(32vw, 420px);
  background: url("./assets/app-home.png") no-repeat center bottom / contain;
  opacity: 0.62;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(680px, 100%);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #80d8d7;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.3rem, 8vw, 6.8rem);
  line-height: 0.94;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.1rem, 4.5vw, 4.1rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.08rem;
}

.hero-copy {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
  transition: border-color 140ms ease, background-color 140ms ease, color 140ms ease;
}

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

.button.secondary {
  color: #ffffff;
}

.button.primary:hover {
  background: #edf3f2;
}

.button.secondary:hover {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
}

.section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 76px clamp(20px, 4vw, 48px);
}

.section-heading {
  max-width: 800px;
  margin-bottom: 28px;
}

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

.feature-grid article,
.trust-list p {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.feature-grid article {
  min-height: 220px;
  padding: 22px;
}

.feature-grid p,
.split p,
.trust-list p {
  color: var(--muted);
}

.band {
  max-width: none;
  background: #edf3f2;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 86px);
  max-width: 1084px;
  margin: 0 auto;
}

.split p {
  align-self: end;
  font-size: 1.16rem;
}

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

.trust-list p {
  min-height: 96px;
  margin: 0;
  padding: 20px;
  color: var(--ink);
  font-weight: 720;
}

.site-footer {
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.join-page {
  min-height: calc(100vh - 80px);
  display: grid;
  place-items: center;
  padding: 48px 20px;
  background:
    linear-gradient(rgba(20, 43, 74, 0.88), rgba(20, 43, 74, 0.88)),
    url("./assets/app-home.png") center 24% / cover no-repeat;
}

.join-panel {
  width: min(620px, 100%);
  padding: clamp(28px, 6vw, 52px);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 8px;
  background: rgba(251, 250, 247, 0.97);
  box-shadow: var(--shadow);
}

.join-panel h1 {
  margin-bottom: 16px;
  color: var(--navy);
  font-size: clamp(2.5rem, 8vw, 4.6rem);
  line-height: 0.98;
}

.join-copy,
.join-note {
  color: var(--muted);
  font-size: 1.08rem;
}

.join-code {
  display: grid;
  gap: 6px;
  margin: 26px 0;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #edf3f2;
}

.join-code span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.join-code strong {
  overflow-wrap: anywhere;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}

.join-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.join-primary {
  border-color: var(--navy);
  background: var(--navy);
  color: #fff;
}

.join-secondary {
  border-color: var(--line);
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
}

.join-note {
  margin: 22px 0 0;
  font-size: 0.92rem;
}

@media (max-width: 620px) {
  .join-actions {
    grid-template-columns: 1fr;
  }
}

.site-footer p {
  margin: 0;
  font-weight: 800;
  color: var(--ink);
}

.privacy-choice-button {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.privacy-choice-button:hover {
  color: var(--ink);
}

.tracking-consent {
  position: fixed;
  z-index: 100;
  right: 16px;
  bottom: 16px;
  left: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 20px;
  border: 1px solid #445462;
  border-radius: 8px;
  background: #14202d;
  color: #ffffff;
  box-shadow: 0 16px 48px rgba(20, 32, 45, 0.28);
}

.tracking-consent[hidden] {
  display: none;
}

.tracking-consent-copy {
  max-width: 720px;
}

.tracking-consent h2,
.tracking-consent p {
  margin: 0;
  color: #ffffff;
}

.tracking-consent h2 {
  margin-bottom: 4px;
  font-family: inherit;
  font-size: 1rem;
  line-height: 1.3;
}

.tracking-consent p {
  color: #e3e9e9;
  font-size: 0.9rem;
}

.tracking-consent-actions {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 10px;
}

.tracking-consent-actions button {
  min-height: 44px;
  padding: 10px 15px;
  border-radius: 6px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.tracking-consent-decline {
  border: 1px solid #8fa0aa;
  background: transparent;
  color: #ffffff;
}

.tracking-consent-allow {
  border: 1px solid #f1c878;
  background: #f1c878;
  color: #14202d;
}

.tracking-consent-actions a {
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 700;
}

.policy-page {
  max-width: 940px;
  margin: 0 auto;
  padding: 64px clamp(20px, 4vw, 48px) 96px;
}

.policy-page h1 {
  color: var(--navy);
  font-size: clamp(2.8rem, 6vw, 5rem);
}

.policy-page h2 {
  margin-top: 42px;
  color: var(--navy);
  font-family: inherit;
  font-size: 1.35rem;
  line-height: 1.25;
}

.policy-page p,
.policy-page li {
  color: var(--muted);
  font-size: 1.02rem;
}

.policy-page strong {
  color: var(--ink);
}

.policy-card {
  margin: 28px 0;
  padding: 24px;
  border: 1px solid var(--line);
  border-left: 5px solid var(--teal);
  border-radius: 8px;
  background: #ffffff;
}

.contact-list {
  padding-left: 20px;
}

@media (max-width: 900px) {
  .hero {
    min-height: 78vh;
    padding-top: 68px;
  }

  .hero::after {
    right: -26px;
    width: 300px;
  }

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

  .feature-grid article {
    min-height: auto;
  }
}

@media (max-width: 620px) {
  .site-header,
  .site-footer,
  .site-header nav,
  .site-footer nav {
    align-items: flex-start;
  }

  .site-header,
  .site-footer {
    flex-direction: column;
  }

  .hero {
    display: block;
    min-height: auto;
    padding: 68px 30px 36px;
  }

  .hero::after {
    position: relative;
    display: block;
    top: auto;
    right: auto;
    bottom: auto;
    width: min(280px, 78vw);
    height: 430px;
    margin: 32px auto 0;
    opacity: 0.54;
  }

  h1 {
    max-width: 100%;
    font-size: 2.35rem;
    line-height: 1;
  }

  .hero-content,
  .hero-copy {
    width: 300px;
    max-width: calc(100vw - 90px);
    overflow-wrap: normal;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    width: 300px;
    max-width: calc(100vw - 90px);
  }

  .button {
    width: 100%;
  }

  .policy-page {
    width: 330px;
    max-width: calc(100vw - 70px);
    margin: 0;
    padding-left: 20px;
    padding-right: 20px;
  }

  .policy-card,
  .policy-page p,
  .policy-page li {
    overflow-wrap: break-word;
  }

  .tracking-consent {
    right: 10px;
    bottom: 10px;
    left: 10px;
    display: block;
    width: calc(100% - 20px);
    padding: 16px;
  }

  .tracking-consent-actions {
    flex-wrap: wrap;
    margin-top: 14px;
  }

  .tracking-consent-actions button {
    flex: 1 1 100%;
  }

  .tracking-consent-actions a {
    flex: 1 0 100%;
    text-align: center;
  }
}

.nav-cta {
  padding: 9px 13px;
  border: 1px solid var(--ink);
  border-radius: 6px;
  color: var(--ink);
}

.product-hero,
.pastor-hero {
  position: relative;
  min-height: 820px;
  overflow: hidden;
  background: var(--ink);
  color: #fff;
}

.product-hero-content,
.pastor-hero-content {
  position: relative;
  z-index: 2;
  width: min(720px, calc(100% - 40px));
  padding: 132px 0 110px clamp(24px, 7vw, 110px);
}

.product-hero h1,
.pastor-hero h1 {
  max-width: 850px;
  font-size: clamp(4rem, 7.2vw, 6.5rem);
}

.product-hero .hero-copy,
.pastor-hero .hero-copy {
  max-width: 610px;
}

.product-hero .eyebrow,
.pastor-hero .eyebrow,
.closing-band .eyebrow,
.trust-dark .eyebrow {
  color: #82d2cf;
}

.product-hero-screens {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.product-hero-screens img {
  position: absolute;
  width: min(370px, 29vw);
  height: auto;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 42px;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.35);
}

.product-hero-screens img:first-child {
  top: 84px;
  right: 19vw;
  transform: rotate(-3deg);
  opacity: 0.88;
}

.product-hero-screens img:last-child {
  top: 190px;
  right: -40px;
  transform: rotate(4deg);
  opacity: 0.62;
}

.product-hero-content::after,
.pastor-hero-content::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 72px -70px 58px 0;
  background: rgba(20, 32, 45, 0.92);
}

.hero-note {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.92rem;
  font-weight: 700;
}

.statement-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--teal);
  color: #fff;
}

.statement-band p {
  margin: 0;
  padding: 24px clamp(18px, 4vw, 56px);
  border-right: 1px solid rgba(255, 255, 255, 0.26);
  font-weight: 850;
  text-align: center;
}

.statement-band p:last-child {
  border-right: 0;
}

.editorial-section .section-heading,
.governance-section .section-heading,
.member-proof .section-heading {
  max-width: 850px;
}

.section-heading > p:last-child {
  color: var(--muted);
  font-size: 1.13rem;
}

.experience-stage,
.focus-stage,
.governance-stage {
  display: grid;
  align-items: center;
  gap: clamp(36px, 8vw, 108px);
  margin-top: 44px;
}

.experience-stage {
  grid-template-columns: minmax(280px, 430px) minmax(0, 1fr);
}

.experience-stage > img,
.focus-stage > img,
.governance-stage > img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid var(--line);
  border-radius: 42px;
  box-shadow: var(--shadow);
}

.experience-copy h3,
.focus-stage h3 {
  max-width: 620px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1.04;
}

.check-list {
  display: grid;
  gap: 15px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 720;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  top: 0;
  left: 0;
  color: var(--teal);
  font-weight: 900;
}

.governance-band {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(330px, 500px);
  align-items: center;
  gap: clamp(40px, 9vw, 130px);
  padding-inline: max(24px, calc((100vw - 1084px) / 2));
  background: #edf3f2;
}

.governance-band > img {
  width: 100%;
  border-radius: 42px;
  box-shadow: var(--shadow);
}

.text-link {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: var(--teal);
  font-weight: 850;
  text-decoration: none;
}

.trust-section {
  padding-bottom: 96px;
}

.closing-band {
  padding: 86px max(24px, calc((100vw - 1084px) / 2));
  background: var(--navy);
  color: #fff;
}

.closing-band h2 {
  max-width: 900px;
}

.pastor-hero {
  min-height: 780px;
}

.pastor-hero-backdrop {
  position: absolute;
  z-index: 1;
  top: 70px;
  right: 4vw;
  width: min(440px, 35vw);
  height: 940px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 44px;
  opacity: 0.82;
  transform: rotate(2deg);
  box-shadow: 0 38px 90px rgba(0, 0, 0, 0.38);
}

.pastor-hero-backdrop img {
  display: block;
  width: 100%;
  height: auto;
}

.proof-line {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  margin-top: 34px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.86rem;
  font-weight: 800;
}

.proof-line span::before {
  content: "✓";
  margin-right: 7px;
  color: #82d2cf;
}

.problem-section {
  padding-top: 96px;
  padding-bottom: 96px;
}

.problem-section blockquote {
  max-width: 980px;
  margin: 0 0 28px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 6vw, 6rem);
  font-weight: 700;
  line-height: 1;
}

.problem-section > p:last-child {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.2rem;
}

.mode-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.mode-grid article {
  min-height: 260px;
  padding: 28px 22px;
  border-right: 1px solid var(--line);
}

.mode-grid article:last-child {
  border-right: 0;
}

.mode-grid article > span {
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 900;
}

.mode-grid article h3 {
  margin-top: 42px;
  font-size: 1.25rem;
}

.mode-grid article p {
  color: var(--muted);
}

.focus-stage {
  grid-template-columns: minmax(300px, 500px) minmax(0, 1fr);
  margin-top: 76px;
}

.governance-section {
  max-width: none;
  padding-inline: max(24px, calc((100vw - 1084px) / 2));
  background: #edf3f2;
}

.governance-stage {
  grid-template-columns: minmax(300px, 500px) minmax(0, 1fr);
}

.member-proof-screens {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: clamp(20px, 5vw, 72px);
  margin-top: 48px;
  overflow: hidden;
}

.member-proof-screens img {
  width: min(420px, 42vw);
  border: 1px solid var(--line);
  border-radius: 42px;
  box-shadow: var(--shadow);
}

.member-proof-screens img:last-child {
  margin-top: 80px;
}

.trust-dark {
  max-width: none;
  padding-inline: max(24px, calc((100vw - 1084px) / 2));
  background: var(--ink);
  color: #fff;
}

.trust-dark h2 {
  max-width: 930px;
}

.trust-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin-top: 48px;
}

.trust-points p {
  color: rgba(255, 255, 255, 0.74);
}

.trust-points strong {
  display: block;
  margin-bottom: 8px;
  color: #fff;
}

.pricing-line {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.pricing-line > div {
  min-height: 150px;
  padding: 24px;
  border-right: 1px solid var(--line);
}

.pricing-line > div:last-child {
  border-right: 0;
}

.pricing-line strong,
.pricing-line span {
  display: block;
}

.pricing-line strong {
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.4rem;
}

.pricing-line span,
.pricing-note {
  color: var(--muted);
}

.pricing-note {
  max-width: 720px;
  margin-top: 20px;
  font-size: 0.92rem;
}

.pilot-section {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(460px, 1fr);
  gap: clamp(48px, 9vw, 128px);
  padding-inline: max(24px, calc((100vw - 1084px) / 2));
  background: #edf3f2;
}

.pilot-intro {
  align-self: start;
  position: sticky;
  top: 120px;
}

.pilot-intro p:last-child {
  color: var(--muted);
  font-size: 1.1rem;
}

.pilot-form {
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

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

.pilot-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 800;
}

.pilot-form input,
.pilot-form select,
.pilot-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 12px;
  border: 1px solid #adb6ba;
  border-radius: 5px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-weight: 500;
}

.pilot-form textarea {
  min-height: 116px;
  resize: vertical;
}

.pilot-form input:focus,
.pilot-form select:focus,
.pilot-form textarea:focus {
  border-color: var(--teal);
  outline: 3px solid rgba(11, 125, 132, 0.16);
}

.form-wide {
  grid-column: 1 / -1;
}

.consent-row {
  grid-template-columns: 22px 1fr;
  align-items: start;
  margin-top: 22px;
  color: var(--muted);
  font-weight: 600;
}

.consent-row input {
  width: 18px;
  min-height: 18px;
  margin-top: 2px;
}

.form-submit {
  width: 100%;
  min-height: 54px;
  margin-top: 22px;
  border: 0;
  border-radius: 6px;
  background: var(--teal);
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-weight: 850;
}

.form-submit:hover {
  background: #086a70;
}

.form-submit:disabled {
  cursor: wait;
  opacity: 0.72;
}

.form-status {
  min-height: 24px;
  margin: 12px 0 0;
  font-size: 0.92rem;
  font-weight: 720;
}

.form-status.success {
  color: #17603a;
}

.form-status.error {
  color: #9b2f2f;
}

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

@media (max-width: 980px) {
  .site-header nav {
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .product-hero-screens img {
    width: 340px;
  }

  .product-hero-screens img:first-child {
    right: 4vw;
  }

  .product-hero-screens img:last-child {
    display: none;
  }

  .product-hero-content,
  .pastor-hero-content {
    width: min(660px, calc(100% - 40px));
  }

  .pastor-hero-backdrop {
    right: -90px;
    width: 420px;
    opacity: 0.52;
  }

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

  .mode-grid article:nth-child(2),
  .pricing-line > div:nth-child(2) {
    border-right: 0;
  }

  .mode-grid article:nth-child(-n + 2),
  .pricing-line > div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

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

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

  .pilot-intro {
    position: static;
  }
}

@media (max-width: 720px) {
  .site-header {
    position: static;
  }

  .site-header nav {
    display: none;
  }

  .product-hero,
  .pastor-hero {
    min-height: 820px;
  }

  .product-hero-content,
  .pastor-hero-content {
    width: min(100%, 390px);
    max-width: 100%;
    padding: 66px 24px 360px;
  }

  .product-hero-content::after,
  .pastor-hero-content::after {
    inset: 20px 0 320px;
    background: rgba(20, 32, 45, 0.94);
  }

  .product-hero h1,
  .pastor-hero h1 {
    width: 100%;
    max-width: 100%;
    font-size: 2.35rem;
    text-wrap: balance;
  }

  .product-hero-screens img:first-child,
  .pastor-hero-backdrop {
    top: auto;
    right: 50%;
    bottom: -430px;
    width: min(310px, 76vw);
    height: auto;
    transform: translateX(50%) rotate(-2deg);
    opacity: 0.86;
  }

  .pastor-hero-backdrop {
    bottom: -400px;
    overflow: hidden;
  }

  .statement-band {
    grid-template-columns: 1fr;
  }

  .statement-band p {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.26);
  }

  .statement-band p:last-child {
    border-bottom: 0;
  }

  .experience-stage,
  .focus-stage,
  .governance-stage,
  .governance-band {
    grid-template-columns: 1fr;
  }

  .experience-stage > img,
  .focus-stage > img,
  .governance-stage > img,
  .governance-band > img {
    width: min(360px, 90vw);
    margin: 0 auto;
  }

  .member-proof-screens {
    align-items: center;
    flex-direction: column;
  }

  .member-proof-screens img {
    width: min(360px, 90vw);
  }

  .member-proof-screens img:last-child {
    margin-top: 0;
  }

  .form-grid,
  .mode-grid,
  .pricing-line {
    grid-template-columns: 1fr;
  }

  .mode-grid article,
  .pricing-line > div,
  .mode-grid article:nth-child(2),
  .pricing-line > div:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .mode-grid article:last-child,
  .pricing-line > div:last-child {
    border-bottom: 0;
  }

  .form-wide {
    grid-column: auto;
  }
}
