:root {
  --primary: #5d549c;
  --primary-strong: #4d438b;
  --primary-soft: #eeeafb;
  --primary-softer: #f7f4ff;
  --ink: #1c1b1f;
  --ink-soft: #49454f;
  --muted: #6b7280;
  --muted-light: #9ca3af;
  --line: #ece8f3;
  --line-strong: #ddd5ea;
  --surface: #ffffff;
  --surface-soft: #fafafc;
  --surface-warm: #fcfbfe;
  --success: #22863a;
  --danger: #a95b68;
  --danger-soft: #fff5f7;
  --shadow-card: 0 18px 50px rgba(45, 41, 74, 0.09);
  --shadow-soft: 0 10px 28px rgba(45, 41, 74, 0.08);
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --content: 1120px;
  --document: 920px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(93, 84, 156, 0.10) 0, rgba(93, 84, 156, 0) 390px),
    var(--surface-soft);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.home-page {
  overflow-x: hidden;
}

a {
  color: var(--primary);
  text-decoration: none;
}

a:hover {
  color: var(--primary-strong);
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(93, 84, 156, 0.28);
  outline-offset: 3px;
  border-radius: 10px;
}

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

.container {
  width: min(var(--content), calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(236, 232, 243, 0.74);
  background: rgba(250, 250, 252, 0.84);
  backdrop-filter: blur(18px);
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 1.18rem;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 10px;
  background: transparent;
  box-shadow: 0 12px 24px rgba(18, 49, 95, 0.18);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
  transform: scale(1.04);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 650;
}

.nav-links a {
  color: inherit;
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-cta {
  padding: 10px 16px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--primary) !important;
  background: rgba(255, 255, 255, 0.74);
}

.hero {
  position: relative;
  padding: 92px 0 74px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  gap: 52px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border: 1px solid rgba(93, 84, 156, 0.18);
  border-radius: 999px;
  color: var(--primary);
  background: rgba(255, 255, 255, 0.70);
  font-size: 0.86rem;
  font-weight: 750;
}

.eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--primary);
  box-shadow: 0 0 0 5px rgba(93, 84, 156, 0.12);
}

.hero h1 {
  max-width: 680px;
  margin: 20px 0 20px;
  color: var(--ink);
  font-size: 5.8rem;
  line-height: 0.91;
  letter-spacing: 0;
}

.hero h1 span {
  color: var(--primary);
}

.hero-copy {
  max-width: 610px;
  margin: 0 0 28px;
  color: var(--ink-soft);
  font-size: 1.2rem;
}

.store-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.store-row {
  margin-top: 28px;
}

.store-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  transition: transform 180ms ease, filter 180ms ease, opacity 180ms ease;
}

.store-link:hover {
  transform: translateY(-2px);
  filter: drop-shadow(0 12px 16px rgba(45, 41, 74, 0.16));
}

.store-link img {
  height: 48px;
  width: auto;
}

.proof-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 640px;
  margin-top: 34px;
}

.proof-item {
  padding: 14px;
  border: 1px solid rgba(236, 232, 243, 0.9);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.66);
}

.proof-item strong {
  display: block;
  color: var(--ink);
  font-size: 0.95rem;
  line-height: 1.2;
}

.proof-item span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.35;
}

.hero-media {
  position: relative;
  min-height: 660px;
}

.phone-orbit {
  position: absolute;
  inset: -44px -18px auto auto;
  width: 460px;
  height: 460px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 35% 25%, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0) 40%),
    linear-gradient(145deg, rgba(93, 84, 156, 0.15), rgba(93, 84, 156, 0.03));
  filter: blur(0.1px);
}

.phone-stack {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 660px;
}

.phone-frame {
  position: relative;
  overflow: hidden;
  border: 8px solid #fff;
  border-radius: 38px;
  background: #fff;
  box-shadow: var(--shadow-card);
}

.phone-frame.primary {
  width: min(330px, 74vw);
  z-index: 3;
}

.phone-frame.secondary {
  position: absolute;
  width: 228px;
  opacity: 0.96;
  transform: rotate(-7deg);
}

.phone-frame.secondary.left {
  left: 0;
  bottom: 64px;
  z-index: 1;
}

.phone-frame.secondary.right {
  right: 0;
  top: 52px;
  z-index: 2;
  transform: rotate(7deg);
}

.floating-card {
  position: absolute;
  z-index: 5;
  display: grid;
  gap: 6px;
  width: 202px;
  padding: 16px;
  border: 1px solid rgba(236, 232, 243, 0.9);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(16px);
}

.floating-card strong {
  font-size: 0.94rem;
  line-height: 1.25;
}

.floating-card span {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.35;
}

.floating-card.match {
  left: 18px;
  top: 70px;
}

.floating-card.safety {
  right: -4px;
  bottom: 118px;
}

.section {
  padding: 62px 0;
}

section[id] {
  scroll-margin-top: 96px;
}

.section.alt {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.56), rgba(255, 255, 255, 0));
}

.section-header {
  max-width: 720px;
  margin-bottom: 36px;
}

.section-kicker {
  margin: 0 0 10px;
  color: var(--primary);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section h2,
.document-card h1,
.page-hero h1 {
  margin: 0;
  color: var(--ink);
  font-size: 3.5rem;
  line-height: 1;
  letter-spacing: 0;
}

.section-lede,
.page-hero p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1.06rem;
}

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

.feature-card {
  min-height: 246px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 34px rgba(45, 41, 74, 0.055);
}

.feature-index {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 13px;
  color: var(--primary);
  background: var(--primary-soft);
  font-weight: 850;
  font-size: 0.82rem;
}

.feature-card h3 {
  margin: 22px 0 10px;
  color: var(--ink);
  font-size: 1.18rem;
  line-height: 1.18;
  letter-spacing: 0;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.preview-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 26px;
  align-items: stretch;
}

.preview-panel {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.preview-panel.copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 36px;
  padding: 44px;
}

.preview-panel.copy h2 {
  font-size: 3rem;
}

.preview-panel.copy p {
  color: var(--muted);
}

.preview-shot {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 18px;
  align-items: end;
  padding: 28px;
  background: linear-gradient(145deg, #fff, var(--primary-softer));
}

.preview-shot img {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 16px 36px rgba(45, 41, 74, 0.12);
}

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

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--ink-soft);
}

.check-list li::before {
  content: "";
  flex: 0 0 9px;
  width: 9px;
  height: 9px;
  margin-top: 9px;
  border-radius: 999px;
  background: var(--primary);
  box-shadow: 0 0 0 5px rgba(93, 84, 156, 0.11);
}

.quote-band {
  padding: 60px 0;
  color: #fff;
  background:
    linear-gradient(145deg, rgba(93, 84, 156, 0.96), rgba(77, 67, 139, 0.98)),
    var(--primary);
}

.quote-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: end;
}

.quote-card blockquote {
  max-width: 830px;
  margin: 0;
  font-size: 2.8rem;
  line-height: 1.08;
  letter-spacing: 0;
  font-weight: 760;
}

.quote-card p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.quote-mini {
  min-width: 210px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.10);
}

.quote-mini strong {
  display: block;
  font-size: 2.2rem;
  line-height: 1;
}

.quote-mini span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.95rem;
}

.final-cta {
  padding: 62px 0;
}

.cta-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: center;
  padding: 52px;
  border: 1px solid var(--line);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-soft);
}

.cta-card h2 {
  margin: 0;
  font-size: 3.1rem;
  line-height: 1;
  letter-spacing: 0;
}

.cta-card p {
  max-width: 650px;
  margin: 14px 0 0;
  color: var(--muted);
}

.cta-card .store-row {
  margin-top: 0;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 42px 0;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.58);
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 20px;
  font-weight: 650;
  font-size: 0.92rem;
}

.footer-meta {
  margin: 8px 0 0;
  color: var(--muted-light);
  font-size: 0.9rem;
}

.document-shell {
  padding: 52px 0 78px;
}

.document-container {
  width: min(var(--document), calc(100% - 48px));
}

.document-card {
  padding: 56px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
}

.document-card.wide {
  width: min(1080px, calc(100% - 48px));
}

.back-link {
  display: inline-flex;
  align-items: center;
  margin-bottom: 24px;
  color: var(--muted);
  font-weight: 700;
}

.legal-copy {
  color: var(--ink-soft);
  font-size: 0.98rem;
  overflow-wrap: break-word;
}

.legal-copy h1 {
  margin-bottom: 12px;
}

.legal-copy h2 {
  margin: 42px 0 14px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-size: 1.22rem;
  line-height: 1.24;
  letter-spacing: 0;
}

.legal-copy h3 {
  margin: 26px 0 10px;
  color: var(--ink);
  font-size: 1.02rem;
}

.legal-copy p,
.legal-copy li {
  color: var(--ink-soft);
}

.legal-copy ul,
.legal-copy ol {
  padding-left: 1.35rem;
}

.legal-copy li {
  margin-bottom: 8px;
}

.legal-copy a {
  border-bottom: 1px solid rgba(93, 84, 156, 0.28);
  font-weight: 700;
}

.legal-copy table {
  display: block;
  width: 100%;
  overflow-x: auto;
  border-collapse: collapse;
  margin: 22px 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  font-size: 0.92rem;
}

.legal-copy th,
.legal-copy td {
  padding: 14px;
  border: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.legal-copy th {
  color: var(--ink);
  background: var(--primary-softer);
}

.notice-box,
.warning-box,
.eu-box,
.alert-box,
.highlight-box {
  margin: 24px 0;
  padding: 22px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: var(--surface-warm);
}

.warning-box,
.alert-box {
  border-color: rgba(169, 91, 104, 0.20);
  background: var(--danger-soft);
  color: #7a3544;
}

.eu-box {
  border-color: rgba(34, 134, 58, 0.18);
  background: #f2fbf4;
  color: #174f27;
}

.state-badge,
.caps-bold {
  color: var(--primary);
  font-weight: 850;
  letter-spacing: 0.03em;
}

.state-badge {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 2px 8px;
  margin-right: 6px;
  border-radius: 999px;
  background: var(--primary-soft);
  font-size: 0.76rem;
}

.document-note,
.footer {
  margin-top: 44px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--muted-light);
  font-size: 0.9rem;
  text-align: left;
}

.guidelines-hero {
  padding: 54px 0 28px;
}

.guidelines-hero-card {
  position: relative;
  overflow: hidden;
  max-width: 980px;
  margin: 0 auto;
  padding: 58px;
  border: 1px solid var(--line);
  border-radius: 38px;
  background:
    radial-gradient(circle at 80% 0%, rgba(93, 84, 156, 0.12), rgba(93, 84, 156, 0) 34%),
    rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-card);
  text-align: center;
}

.guidelines-hero-icon,
.guideline-badge {
  display: inline-grid;
  place-items: center;
  color: var(--primary);
  background: var(--primary-soft);
}

.guidelines-hero-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 18px;
  border-radius: 20px;
}

.guidelines-hero-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.guidelines-hero-card h1,
.guidelines-copy h2,
.warning-card h2,
.faith-band h2,
.enforcement-card h2,
.support-cta h2 {
  margin: 0;
  color: var(--ink);
  font-size: 3.35rem;
  line-height: 1.02;
  letter-spacing: 0;
}

.guidelines-hero-card > p:not(.section-kicker) {
  max-width: 760px;
  margin: 18px auto 0;
  color: var(--ink-soft);
  font-size: 1.12rem;
}

.guidelines-pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  margin-top: 24px;
  padding: 0 14px;
  border: 1px solid rgba(93, 84, 156, 0.18);
  border-radius: 999px;
  color: var(--primary);
  background: rgba(255, 255, 255, 0.74);
  font-weight: 800;
  font-size: 0.88rem;
}

.guidelines-copy {
  max-width: 820px;
}

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

.guidelines-list {
  display: grid;
  gap: 14px;
}

.guideline-card,
.warning-card,
.support-cta {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 12px 34px rgba(45, 41, 74, 0.055);
}

.guideline-card {
  padding: 24px;
}

.guideline-card h3 {
  margin: 16px 0 8px;
  color: var(--ink);
  font-size: 1.16rem;
  line-height: 1.2;
}

.guideline-card p,
.warning-card p:not(.section-kicker),
.support-cta p:not(.section-kicker),
.faith-band p {
  color: var(--muted);
}

.guideline-card p,
.warning-card p:not(.section-kicker),
.support-cta p:not(.section-kicker) {
  margin: 0;
}

.guideline-badge {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  border-radius: 14px;
  font-weight: 850;
  font-size: 0.78rem;
}

.guideline-row {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.guideline-row h3 {
  margin-top: 0;
}

.warning-card {
  overflow: hidden;
  padding: 46px;
  background:
    linear-gradient(145deg, rgba(255, 247, 249, 0.86), rgba(255, 255, 255, 0.96)),
    var(--surface);
}

.warning-card h2 {
  font-size: 2.7rem;
}

.warning-card > p:not(.section-kicker) {
  max-width: 860px;
  margin-top: 14px;
}

.guidelines-checklist,
.safety-tips {
  display: grid;
  gap: 12px;
  padding: 0;
  list-style: none;
}

.guidelines-checklist {
  align-items: stretch;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 16px;
  margin: 32px 0 0;
}

.guidelines-checklist li {
  position: relative;
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  min-height: 70px;
  padding: 17px 18px 17px 20px;
  border: 1px solid rgba(221, 213, 234, 0.72);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 10px 24px rgba(45, 41, 74, 0.035);
  color: var(--ink-soft);
  font-weight: 680;
  line-height: 1.38;
}

.guidelines-checklist li:last-child {
  grid-column: 1 / -1;
  min-height: 0;
}

.safety-tips {
  margin: 0;
}

.safety-tips li {
  position: relative;
  padding-left: 24px;
  color: var(--ink-soft);
}

.guidelines-checklist li::before {
  content: "";
  width: 9px;
  height: 9px;
  margin-top: 0.42em;
  border-radius: 999px;
  background: var(--primary);
  box-shadow: 0 0 0 6px rgba(93, 84, 156, 0.10);
}

.safety-tips li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--primary);
  box-shadow: 0 0 0 5px rgba(93, 84, 156, 0.10);
}

.faith-band {
  color: #fff;
}

.faith-band .section-kicker,
.faith-band h2,
.faith-band p {
  color: #fff;
}

.faith-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.55fr);
  gap: 34px;
  align-items: end;
}

.faith-grid p:not(.section-kicker) {
  max-width: 820px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.76);
}

.faith-grid blockquote {
  margin: 0;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.10);
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.16rem;
  font-weight: 720;
  line-height: 1.35;
}

.safety-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(280px, 0.62fr);
  gap: 30px;
  align-items: start;
}

.safety-tips {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-soft);
}

.guidelines-link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.guidelines-link-row a,
.support-link {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  font-weight: 750;
}

.enforcement-card {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 32px;
}

.enforcement-card h2 {
  font-size: 2.6rem;
}

.enforcement-card p:not(.section-kicker) {
  max-width: 860px;
  margin-top: 14px;
}

.support-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 30px;
  align-items: center;
  padding: 46px;
  border-radius: 34px;
}

.support-cta h2 {
  font-size: 3rem;
}

.support-cta p:not(.section-kicker) {
  max-width: 690px;
  margin-top: 14px;
}

.support-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.support-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  color: #fff;
  background: var(--primary);
  box-shadow: 0 14px 28px rgba(93, 84, 156, 0.22);
  font-weight: 800;
}

.support-button:hover {
  color: #fff;
  background: var(--primary-strong);
}

.profile-hero-card {
  background:
    radial-gradient(circle at 18% 0%, rgba(93, 84, 156, 0.13), rgba(93, 84, 156, 0) 34%),
    radial-gradient(circle at 86% 12%, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0) 32%),
    rgba(255, 255, 255, 0.9);
}

.profile-intro-card,
.profile-photo-card,
.profile-prompt-card {
  border: 1px solid var(--line);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-soft);
}

.profile-intro-card {
  max-width: 980px;
  padding: 42px;
}

.profile-intro-card h2,
.profile-photo-copy h2,
.profile-faith-header h2,
.profile-prompt-card h2 {
  margin: 0;
  color: var(--ink);
  font-size: 3.1rem;
  line-height: 1.03;
  letter-spacing: 0;
}

.profile-intro-card p:not(.section-kicker),
.profile-photo-copy p,
.profile-faith-header p {
  max-width: 820px;
  margin: 16px 0 0;
  color: var(--muted);
}

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

.profile-tip-card {
  min-height: 292px;
}

.profile-photo-card {
  display: grid;
  grid-template-columns: minmax(260px, 0.65fr) minmax(0, 1.35fr);
  gap: 24px;
  align-items: stretch;
  padding: 34px;
}

.profile-photo-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-height: 100%;
}

.profile-photo-copy .support-button {
  margin-top: 26px;
}

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

.photo-list-panel {
  padding: 22px;
  border: 1px solid rgba(221, 213, 234, 0.72);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.74);
}

.photo-list-panel h3 {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: 1.1rem;
  line-height: 1.2;
}

.profile-checklist {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.profile-checklist li {
  position: relative;
  padding-left: 24px;
  color: var(--ink-soft);
  font-size: 0.96rem;
  line-height: 1.42;
}

.profile-checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--primary);
  box-shadow: 0 0 0 5px rgba(93, 84, 156, 0.10);
}

.profile-checklist.avoid li::before {
  background: var(--danger);
  box-shadow: 0 0 0 5px rgba(169, 91, 104, 0.10);
}

.profile-faith-header {
  max-width: 880px;
  margin-bottom: 28px;
}

.profile-faith-header h2,
.profile-faith-header .section-kicker,
.profile-faith-header p {
  color: #fff;
}

.profile-faith-header p {
  color: rgba(255, 255, 255, 0.76);
}

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

.profile-faith-grid article {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.10);
}

.profile-faith-grid h3 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 1.1rem;
  line-height: 1.2;
}

.profile-faith-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.96rem;
}

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

.bio-card {
  position: relative;
  overflow: hidden;
  min-height: 190px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    radial-gradient(circle at 100% 0%, rgba(93, 84, 156, 0.10), rgba(93, 84, 156, 0) 38%),
    rgba(255, 255, 255, 0.88);
  box-shadow: 0 12px 34px rgba(45, 41, 74, 0.055);
}

.bio-card::before {
  content: "";
  display: block;
  width: 34px;
  height: 4px;
  margin-bottom: 20px;
  border-radius: 999px;
  background: var(--primary);
}

.bio-card p {
  margin: 0;
  color: var(--ink-soft);
  font-weight: 620;
  line-height: 1.52;
}

.profile-prompt-card {
  padding: 40px;
}

.prompt-chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.prompt-chip-grid span {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid rgba(221, 213, 234, 0.84);
  border-radius: 999px;
  color: var(--ink-soft);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 8px 18px rgba(45, 41, 74, 0.035);
  font-weight: 720;
  line-height: 1.2;
}

.page-hero {
  padding: 54px 0 24px;
}

.guidelines-section {
  padding: 28px 0 78px;
}

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

.card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 12px 34px rgba(45, 41, 74, 0.055);
}

.card-icon {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin-bottom: 16px;
  border-radius: 14px;
  color: var(--primary);
  background: var(--primary-soft);
  font-size: 1.2rem;
}

.card h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 1.18rem;
}

.card p {
  margin-top: 0;
  color: var(--muted);
}

.rules-list {
  display: grid;
  gap: 10px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.rules-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--ink-soft);
}

.do-label,
.dont-label {
  flex: 0 0 auto;
  padding: 3px 8px;
  border-radius: 999px;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.do-label {
  background: var(--success);
}

.dont-label {
  background: var(--danger);
}

.rule-text {
  color: var(--ink-soft);
}

@media (max-width: 980px) {
  .hero-grid,
  .preview-grid,
  .cta-card,
  .quote-card,
  .faith-grid,
  .profile-photo-card,
  .profile-faith-grid,
  .safety-layout,
  .support-cta {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 58px;
  }

  .hero h1 {
    font-size: 4.6rem;
  }

  .section h2,
  .document-card h1,
  .page-hero h1,
  .guidelines-hero-card h1,
  .guidelines-copy h2,
  .warning-card h2,
  .faith-band h2,
  .profile-intro-card h2,
  .profile-photo-copy h2,
  .profile-faith-header h2,
  .profile-prompt-card h2,
  .enforcement-card h2,
  .support-cta h2 {
    font-size: 3rem;
  }

  .preview-panel.copy h2,
  .cta-card h2 {
    font-size: 2.75rem;
  }

  .quote-card blockquote {
    font-size: 2.4rem;
  }

  .hero-media,
  .phone-stack {
    min-height: 560px;
  }

  .phone-frame.secondary.left {
    left: 8%;
  }

  .phone-frame.secondary.right {
    right: 8%;
  }

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

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

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

  .support-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {
  .container,
  .document-container,
  .document-card.wide {
    width: min(100% - 32px, var(--content));
  }

  .nav {
    min-height: 66px;
  }

  .nav-links {
    display: none;
  }

  .hero {
    padding: 44px 0 58px;
  }

  .hero h1 {
    font-size: 3.65rem;
  }

  .section h2,
  .document-card h1,
  .page-hero h1,
  .guidelines-hero-card h1,
  .guidelines-copy h2,
  .warning-card h2,
  .faith-band h2,
  .profile-intro-card h2,
  .profile-photo-copy h2,
  .profile-faith-header h2,
  .profile-prompt-card h2,
  .enforcement-card h2,
  .support-cta h2 {
    font-size: 2.35rem;
  }

  .preview-panel.copy {
    padding: 28px;
  }

  .preview-panel.copy h2,
  .cta-card h2,
  .quote-card blockquote {
    font-size: 2.15rem;
  }

  .cta-card {
    padding: 30px;
  }

  .proof-list,
  .feature-grid,
  .values-grid,
  .guidelines-grid,
  .guidelines-checklist,
  .profile-tips-grid,
  .profile-photo-lists,
  .bio-grid,
  .grid {
    grid-template-columns: 1fr;
  }

  .hero-media,
  .phone-stack {
    min-height: 500px;
  }

  .phone-frame.primary {
    width: min(292px, 78vw);
  }

  .phone-frame.secondary {
    width: 170px;
  }

  .phone-frame.secondary.left {
    left: -8px;
    bottom: 42px;
  }

  .phone-frame.secondary.right {
    right: -8px;
    top: 34px;
  }

  .floating-card {
    display: none;
  }

  .preview-shot {
    grid-template-columns: 1fr 1fr;
    padding: 16px;
  }

  .footer-grid {
    align-items: flex-start;
    flex-direction: column;
  }

  .document-shell {
    padding-top: 28px;
  }

  .document-card {
    padding: 24px 18px;
    border-radius: 24px;
  }

  .guidelines-hero-card,
  .warning-card,
  .profile-intro-card,
  .profile-photo-card,
  .profile-prompt-card,
  .support-cta {
    padding: 28px 20px;
    border-radius: 28px;
  }

  .guideline-row,
  .enforcement-card {
    flex-direction: column;
  }

  .profile-tip-card,
  .bio-card {
    min-height: 0;
  }

  .legal-copy {
    font-size: 0.95rem;
  }
}

@media (max-width: 460px) {
  .hero h1 {
    font-size: 3.05rem;
  }

  .hero-copy {
    font-size: 1.08rem;
  }

  .store-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .store-link img {
    height: 44px;
  }

  .preview-shot {
    grid-template-columns: 1fr;
  }

  .phone-frame.secondary {
    opacity: 0.65;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media print {
  body {
    background: #fff;
    color: #000;
    font-size: 11px;
  }

  .site-header,
  .site-footer,
  .back-link {
    display: none;
  }

  .document-card,
  .document-card.wide,
  .document-container {
    width: 100%;
    padding: 0;
    border: 0;
    box-shadow: none;
  }
}
