/* Church Directory marketing — shared visual system */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --accent: #F9754D;
  --accent-dark: #e05c38;
  --accent-soft: rgba(249, 117, 77, 0.12);
  --ink: #14233a;
  --ink-mid: #1c3352;
  --ink-deep: #0d1828;
  --heading: #14233a;
  --bg: #eef1f4;
  --bg-warm: #f3f0eb;
  --surface: #ffffff;
  --text: #1a1f2a;
  --text-muted: #5a6578;
  --border: #d8dee8;
  --success: #15803d;
  --note-bg: #fff8f3;
  --note-border: #f5d4c0;
  --note-text: #7c4d1e;
  --note-strong: #5c3611;
  --nav-scrolled-bg: rgba(255, 255, 255, 0.92);
  --radius: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --shadow: 0 2px 16px rgba(20, 35, 58, 0.06);
  --shadow-md: 0 10px 36px rgba(20, 35, 58, 0.10);
  --shadow-lg: 0 22px 60px rgba(20, 35, 58, 0.16);
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Source Sans 3", "Source Sans Pro", system-ui, sans-serif;
  --transition: 0.2s ease;
  color-scheme: light;
}

html[data-theme="dark"] {
  color-scheme: dark;
  --accent: #ff8a66;
  --accent-dark: #f9754d;
  --accent-soft: rgba(249, 117, 77, 0.16);
  --heading: #e8eef6;
  --bg: #0c1220;
  --bg-warm: #101826;
  --surface: #151d2e;
  --text: #f1f5f9;
  --text-muted: #94a3b8;
  --border: #2a3548;
  --success: #4ade80;
  --note-bg: rgba(249, 117, 77, 0.10);
  --note-border: rgba(249, 117, 77, 0.28);
  --note-text: #f0c9b0;
  --note-strong: #ffe0cc;
  --nav-scrolled-bg: rgba(12, 18, 32, 0.92);
  --shadow: 0 2px 16px rgba(0, 0, 0, 0.35);
  --shadow-md: 0 10px 36px rgba(0, 0, 0, 0.45);
  --shadow-lg: 0 22px 60px rgba(0, 0, 0, 0.55);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.15;
  font-weight: 650;
  letter-spacing: -0.02em;
  color: var(--heading);
}
h1 { font-size: clamp(2.5rem, 5.5vw, 3.9rem); font-weight: 700; }
h2 { font-size: clamp(1.85rem, 3.6vw, 2.7rem); }
h3 { font-size: 1.3rem; }
p { font-size: 1.0625rem; }

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 88px 0; }
.section--sm { padding: 56px 0; }
.text-center { text-align: center; }
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 14px;
  font-size: 1rem;
  font-weight: 650;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), border-color var(--transition), color var(--transition);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 18px rgba(249, 117, 77, 0.35);
}
.btn-primary:hover { background: var(--accent-dark); }

.btn-secondary {
  background: rgba(255, 255, 255, 0.10);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(8px);
}
.btn-secondary:hover { background: rgba(255, 255, 255, 0.18); }

.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 1.5px solid var(--accent);
}
.btn-outline:hover { background: var(--accent-soft); }

.btn-ghost {
  background: transparent;
  color: var(--text-muted);
  border: 1.5px solid var(--border);
}
.btn-ghost:hover { background: var(--surface); color: var(--text); }

.btn-store {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid rgba(255, 255, 255, 0.22);
  border-radius: 12px;
  color: #fff;
  transition: background var(--transition), transform var(--transition);
}
.btn-store:hover { background: rgba(255, 255, 255, 0.16); transform: translateY(-1px); }
.btn-store-label { text-align: left; line-height: 1.2; }
.btn-store-label small { display: block; font-size: 0.72rem; font-weight: 400; opacity: 0.8; }
.btn-store-label strong { font-size: 0.95rem; font-weight: 700; }

/* Nav — homepage (over hero) */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: background var(--transition), border-color var(--transition), box-shadow var(--transition), padding var(--transition);
}
.nav.scrolled {
  background: var(--nav-scrolled-bg);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow);
  padding: 12px 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav-logo img { width: 36px; height: 36px; border-radius: 9px; }
/* Homepage: light glyph on ink hero; dark glyph after scroll */
.nav-logo-on-dark { display: none; }
.nav:not(.scrolled) .nav-logo-on-light { display: none; }
.nav:not(.scrolled) .nav-logo-on-dark { display: block; }
.nav.scrolled .nav-logo-on-dark { display: none; }
.nav.scrolled .nav-logo-on-light { display: block; }
.nav-solid .nav-logo-on-dark { display: none; }
.nav-solid .nav-logo-on-light { display: block; }
.nav-mobile .nav-logo-on-light { display: none; }
.nav-mobile .nav-logo-on-dark { display: block; }
.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 650;
  color: #fff;
  transition: color var(--transition);
}
.nav.scrolled .nav-logo-text { color: var(--heading); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  min-width: 0;
}
.nav-links a {
  padding: 6px 10px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 550;
  color: rgba(255, 255, 255, 0.85);
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}
.nav-links a:hover { color: #fff; background: rgba(255, 255, 255, 0.10); }
.nav.scrolled .nav-links a { color: var(--text-muted); }
.nav.scrolled .nav-links a:hover { color: var(--text); background: var(--bg); }

.nav-ctas {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav-btn-outline {
  padding: 9px 16px;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 650;
  color: rgba(255, 255, 255, 0.92);
  border: 1.5px solid rgba(255, 255, 255, 0.30);
  transition: all var(--transition);
}
.nav-btn-outline:hover { background: rgba(255, 255, 255, 0.12); color: #fff; }
.nav.scrolled .nav-btn-outline { color: var(--accent); border-color: var(--accent); }
.nav.scrolled .nav-btn-outline:hover { background: var(--accent-soft); }

.nav-btn-primary {
  padding: 9px 16px;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 700;
  background: var(--accent);
  color: #fff;
  box-shadow: 0 2px 12px rgba(249, 117, 77, 0.35);
  transition: all var(--transition);
}
.nav-btn-primary:hover { background: var(--accent-dark); transform: translateY(-1px); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: background var(--transition);
}
.nav.scrolled .nav-hamburger span { background: var(--text); }

/* Nav — secondary pages (solid bar) */
.nav-solid {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow);
  padding: 12px 0;
}
.nav-solid .nav-logo-text { color: var(--heading); }
.nav-solid .nav-links a { color: var(--text-muted); }
.nav-solid .nav-links a:hover { color: var(--text); background: var(--bg); }
.nav-solid .nav-btn-outline {
  color: var(--accent);
  border-color: var(--accent);
}
.nav-solid .nav-btn-outline:hover { background: var(--accent-soft); }
.nav-solid .nav-hamburger span { background: var(--text); }

.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--ink-deep);
  z-index: 200;
  padding: 24px;
  flex-direction: column;
  gap: 8px;
}
.nav-mobile.open { display: flex; }
.nav-mobile-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.nav-mobile-close {
  width: 36px; height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 1.4rem;
}
.nav-mobile a {
  font-size: 1.15rem;
  font-weight: 650;
  color: rgba(255, 255, 255, 0.88);
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
  display: block;
}
.nav-mobile-ctas {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}
.nav-mobile-ctas a {
  text-align: center;
  padding: 16px;
  border-radius: 12px;
  font-size: 1rem !important;
  border: none !important;
}

/* Hero */
.hero {
  position: relative;
  background: linear-gradient(155deg, var(--ink-mid) 0%, var(--ink) 45%, var(--ink-deep) 100%);
  padding: 150px 0 88px;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 75% 35%, rgba(249, 117, 77, 0.12) 0%, transparent 65%),
    radial-gradient(ellipse 45% 40% at 15% 80%, rgba(40, 80, 130, 0.45) 0%, transparent 60%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(249, 117, 77, 0.14);
  border: 1px solid rgba(249, 117, 77, 0.32);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 650;
  color: var(--accent);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.hero h1 { color: #fff; margin-bottom: 18px; }
.hero-sub {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 32px;
  line-height: 1.65;
  max-width: 480px;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
}
.hero-eligibility {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  max-width: 36rem;
  line-height: 1.5;
  margin-bottom: 28px;
}
.hero-eligibility a { color: var(--accent); font-weight: 650; }
.hero-store-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}
.hero-store-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.42);
}
.hero-store-btns { display: flex; flex-wrap: wrap; gap: 10px; }

/* Phone frames */
.phone-frame {
  --phone-bezel-edge: #2a2f36;
  position: relative;
  display: block;
  background: linear-gradient(160deg, #2a2f36 0%, #111418 40%, #0a0c10 100%);
  border-radius: 42px;
  padding: 11px;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.10),
    0 28px 70px rgba(0, 0, 0, 0.40),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
}
.phone-frame::before {
  content: "";
  position: absolute;
  left: -3px; top: 96px;
  width: 3px; height: 28px;
  background: var(--phone-bezel-edge);
  border-radius: 2px 0 0 2px;
  box-shadow: 0 40px 0 var(--phone-bezel-edge), 0 78px 0 var(--phone-bezel-edge);
}
.phone-frame::after {
  content: "";
  position: absolute;
  right: -3px; top: 128px;
  width: 3px; height: 52px;
  background: var(--phone-bezel-edge);
  border-radius: 0 2px 2px 0;
}
.phone-frame-screen {
  display: block;
  overflow: hidden;
  border-radius: 32px;
  background: #000;
  line-height: 0;
}
.phone-frame-screen img {
  width: 100%;
  height: auto;
  aspect-ratio: 471 / 1024;
  object-fit: cover;
  display: block;
}

.hero-screenshot-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  gap: 14px;
}
.hero-screenshot-wrap::before {
  content: "";
  position: absolute;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(249, 117, 77, 0.16) 0%, transparent 70%);
  pointer-events: none;
}
.hero-phones {
  position: relative;
  width: min(340px, 100%);
  aspect-ratio: 340 / 560;
  z-index: 1;
  cursor: pointer;
  border: none;
  background: transparent;
  padding: 0;
  font: inherit;
  color: inherit;
  text-align: left;
}
.hero-phones:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 8px;
  border-radius: 24px;
}
.hero-phone-back {
  position: absolute;
  top: 64px; left: 96px;
  width: 200px;
  opacity: 0.72;
  z-index: 0;
  transform: perspective(1000px) rotateY(-14deg) rotateX(1deg);
  pointer-events: none;
}
.hero-phone-mid {
  position: absolute;
  top: 32px; left: 52px;
  width: 230px;
  opacity: 0.88;
  z-index: 1;
  transform: perspective(1000px) rotateY(-9deg) rotateX(1deg);
  pointer-events: none;
}
.hero-phone-front {
  position: absolute;
  top: 0; left: 0;
  width: 260px;
  z-index: 2;
  transform: perspective(1200px) rotateY(-3deg) rotateX(1deg);
  transition: transform 0.35s ease;
  pointer-events: none;
}
html[data-theme="dark"] .hero-phone-front.phone-frame {
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.10),
    0 28px 70px rgba(0, 0, 0, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
}
.hero-phones:hover .hero-phone-front {
  transform: perspective(1200px) rotateY(-3deg) rotateX(1deg) translateY(-4px);
}
.hero-carousel-hint {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}
.hero-carousel-dots { display: flex; gap: 6px; }
.hero-carousel-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
  transition: background 0.2s ease, transform 0.2s ease;
}
.hero-carousel-dot[aria-current="true"] {
  background: var(--accent);
  transform: scale(1.15);
}

/* Proof */
.proof-bar {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 36px 0 40px;
}
.proof-label {
  text-align: center;
  font-size: 0.8rem;
  font-weight: 650;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.proof-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px 48px;
  margin-bottom: 28px;
}
.proof-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.92;
  transition: opacity var(--transition);
}
.proof-logo:hover { opacity: 1; }
.proof-logo img {
  max-height: 56px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
}
html[data-theme="dark"] .proof-logo--ink img {
  /* Dark-ink transparent logos — invert for dark proof bar */
  filter: invert(1) brightness(1.35) grayscale(1);
}
.proof-quote {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  padding: 0 12px;
}
.proof-quote blockquote {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: italic;
  font-weight: 500;
  color: var(--heading);
  line-height: 1.55;
  margin-bottom: 12px;
}
.proof-quote cite {
  font-style: normal;
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 550;
}

/* Section chrome */
.section-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.section-headline { margin-bottom: 14px; }
.section-sub {
  font-size: 1.0625rem;
  color: var(--text-muted);
  max-width: 540px;
  margin-bottom: 0;
  line-height: 1.7;
}

/* Outcome sections */
.outcome {
  background: var(--surface);
}
.outcome--alt { background: var(--bg-warm); }
.outcome--ink {
  background: linear-gradient(160deg, var(--ink-deep) 0%, var(--ink) 100%);
  position: relative;
  overflow: hidden;
}
.outcome--ink::before {
  content: "";
  position: absolute;
  width: 520px; height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(249, 117, 77, 0.10) 0%, transparent 70%);
  top: -80px; right: -80px;
  pointer-events: none;
}
.outcome-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.outcome-inner--flip .outcome-copy { order: 2; }
.outcome-inner--flip .outcome-media { order: 1; }
.outcome--ink .section-label { color: var(--accent); }
.outcome--ink h2 { color: #fff; }
.outcome--ink .section-sub,
.outcome--ink .outcome-body { color: rgba(255, 255, 255, 0.72); }
.outcome-body {
  color: var(--text-muted);
  margin: 16px 0 28px;
  line-height: 1.7;
}
.outcome-bullets {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}
.outcome-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.975rem;
  color: var(--text);
  line-height: 1.5;
}
.outcome--ink .outcome-bullets li { color: rgba(255, 255, 255, 0.84); }
.outcome-bullet-icon {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.outcome-bullet-icon svg {
  width: 12px; height: 12px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.outcome-media {
  display: flex;
  justify-content: center;
}
.outcome-phone {
  width: min(280px, 100%);
}
.outcome-phones {
  position: relative;
  width: 340px;
  aspect-ratio: 340 / 600;
}
.outcome-phone-back {
  position: absolute;
  top: 40px; right: -12px;
  width: 230px;
  opacity: 0.92;
  transform: perspective(1000px) rotateY(10deg) rotateX(1deg);
}
.outcome-phone-front {
  position: absolute;
  top: 0; left: 0;
  width: 270px;
  z-index: 1;
  transform: perspective(1000px) rotateY(-3deg) rotateX(1deg);
}

/* How it works */
.how-section { background: var(--bg); }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
  position: relative;
}
.step { text-align: center; padding: 0 12px; }
.step-number {
  width: 64px; height: 64px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--accent);
  margin: 0 auto 20px;
}
.step h3 { margin-bottom: 10px; }
.step p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.6; }
.step a { color: var(--accent); font-weight: 650; }

/* Privacy strip */
.privacy-strip {
  background: var(--ink);
  padding: 40px 0;
}
.privacy-inner {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.privacy-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.84);
}
.privacy-item-icon {
  width: 40px; height: 40px;
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
}
.privacy-item-icon svg { width: 20px; height: 20px; }
.privacy-item-text strong { display: block; font-size: 0.9rem; font-weight: 700; }
.privacy-item-text small { font-size: 0.8rem; color: rgba(255, 255, 255, 0.5); }

/* Pricing */
.pricing-section { background: var(--bg-warm); }
.pricing-intro { text-align: center; max-width: 640px; margin: 0 auto 40px; }
.pricing-intro .section-sub { max-width: 100%; margin-left: auto; margin-right: auto; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 760px;
  margin: 0 auto;
}
.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--transition), transform var(--transition);
}
.pricing-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.pricing-card.featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent), var(--shadow-md);
}
.pricing-badge {
  display: inline-block;
  align-self: flex-start;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.pricing-card.featured .pricing-badge {
  background: var(--accent);
  color: #fff;
}
.pricing-plan {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
}
.pricing-card h3 { margin-bottom: 4px; font-size: 1.35rem; }
.pricing-tagline {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 22px;
  line-height: 1.45;
}
.pricing-price { margin-bottom: 8px; }
.pricing-price .amount {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--heading);
  line-height: 1;
}
.pricing-price .period { font-size: 1rem; font-weight: 500; color: var(--text-muted); }
.pricing-price .note { font-size: 0.875rem; color: var(--text-muted); margin-top: 8px; }
.pricing-save {
  font-size: 0.9rem;
  font-weight: 650;
  color: var(--success);
  margin-bottom: 20px;
}
.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0 0 24px;
  flex: 1;
}
.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.4;
}
.pricing-check { color: var(--success); font-weight: 700; }
.pricing-eligibility {
  margin: 28px auto 0;
  max-width: 640px;
  text-align: center;
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.55;
}
.pricing-eligibility a { color: var(--accent); font-weight: 650; }
.pricing-setup {
  max-width: 760px;
  margin: 18px auto 0;
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.pricing-setup strong { color: var(--heading); }
.pricing-cta-row {
  max-width: 760px;
  margin: 28px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.pricing-manage { font-size: 0.875rem; color: var(--text-muted); }
.pricing-manage a { color: var(--accent); font-weight: 650; }
.pricing-manage a:hover { text-decoration: underline; }

.admin-note {
  margin: 36px auto 0;
  background: var(--note-bg);
  border: 1px solid var(--note-border);
  border-radius: var(--radius-lg);
  padding: 22px 26px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  max-width: 720px;
}
.admin-note-icon {
  width: 28px; height: 28px;
  flex-shrink: 0;
  color: var(--accent);
  margin-top: 2px;
}
.admin-note-icon svg { width: 28px; height: 28px; }
.admin-note p { font-size: 0.9rem; color: var(--note-text); line-height: 1.6; }
.admin-note strong { color: var(--note-strong); }
.admin-note a { color: var(--accent); font-weight: 650; }

/* Testimonials */
.testimonials-section { background: var(--surface); }
.testimonials-header { text-align: center; margin-bottom: 40px; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.testimonial-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px;
}
.testimonial-card blockquote {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 18px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--border);
  flex-shrink: 0;
}
.testimonial-avatar img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.testimonial-name { font-size: 0.875rem; font-weight: 700; color: var(--heading); }
.testimonial-role { font-size: 0.8rem; color: var(--text-muted); }

/* Founder */
.founder-section {
  background: var(--bg);
  padding-top: 56px;
  padding-bottom: 56px;
}
.founder {
  display: flex;
  align-items: center;
  gap: 28px;
  max-width: 640px;
  margin: 0 auto;
}
.founder-photo {
  width: 112px;
  height: 112px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 20%;
  flex-shrink: 0;
  border: 3px solid var(--surface);
  box-shadow: var(--shadow);
}
.founder-copy .section-label { margin-bottom: 6px; }
.founder-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--heading);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.founder-bio {
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--text-muted);
  max-width: 36em;
}

/* CTA */
.cta-section {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  padding: 88px 0;
  text-align: center;
}
.cta-section h2 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 14px;
}
.cta-sub {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.1rem;
  margin-bottom: 36px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.cta-sub a { color: inherit; text-decoration: underline; font-weight: 650; }
.cta-btns {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.btn-cta-primary {
  background: #fff;
  color: var(--accent-dark);
  padding: 16px 28px;
  border-radius: 14px;
  font-size: 1.05rem;
  font-weight: 700;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
  transition: transform var(--transition), box-shadow var(--transition);
}
.btn-cta-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18); }
.btn-cta-secondary {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  padding: 16px 28px;
  border-radius: 14px;
  font-size: 1.05rem;
  font-weight: 650;
  transition: background var(--transition), transform var(--transition);
}
.btn-cta-secondary:hover { background: rgba(255, 255, 255, 0.24); transform: translateY(-2px); }
.cta-store-row {
  margin-top: 28px;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.btn-store-light {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.14);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  color: #fff;
  transition: background var(--transition);
}
.btn-store-light:hover { background: rgba(255, 255, 255, 0.24); }
.btn-store-light .sl { text-align: left; line-height: 1.2; }
.btn-store-light .sl small { display: block; font-size: 0.7rem; opacity: 0.75; }
.btn-store-light .sl strong { font-size: 0.9rem; }

/* Footer */
.footer {
  background: var(--ink-deep);
  padding: 48px 0 32px;
  color: rgba(255, 255, 255, 0.6);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand { display: flex; flex-direction: column; gap: 12px; }
.footer-logo { display: flex; align-items: center; gap: 10px; }
.footer-logo img { width: 32px; height: 32px; border-radius: 8px; }
.footer-logo-text {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 650;
  color: #fff;
}
.footer-tagline { font-size: 0.875rem; line-height: 1.6; max-width: 240px; }
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 14px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.55);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: rgba(255, 255, 255, 0.92); }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 0.8125rem; }
.footer-bottom-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
}
.footer-bottom-links a {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.45);
}
.footer-bottom-links a:hover { color: rgba(255, 255, 255, 0.85); }

.theme-toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-left: 4px;
  padding: 0;
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.55);
  font: inherit;
  font-size: 0.8125rem;
  font-weight: 550;
  cursor: pointer;
}
.theme-toggle:hover { color: rgba(255, 255, 255, 0.9); }
.theme-toggle:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 8px;
}
.theme-toggle-track {
  position: relative;
  width: 44px; height: 24px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
  flex-shrink: 0;
}
.theme-toggle-thumb {
  position: absolute;
  top: 2px; left: 2px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.35);
  transition: transform 0.2s ease, background 0.2s ease;
}
html[data-theme="dark"] .theme-toggle-track {
  background: rgba(249, 117, 77, 0.35);
  border-color: rgba(249, 117, 77, 0.55);
}
html[data-theme="dark"] .theme-toggle-thumb {
  transform: translateX(20px);
  background: var(--accent);
}

/* Legal / guide content pages */
.legal-wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 64px 24px 96px;
}
.legal-eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.legal-wrap h1 {
  font-size: clamp(1.85rem, 4vw, 2.6rem);
  margin-bottom: 8px;
}
.legal-updated {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--border);
}
.legal-wrap h2 {
  font-size: 1.2rem;
  margin: 36px 0 12px;
}
.legal-wrap h3 {
  font-size: 1.05rem;
  margin: 26px 0 10px;
}
.legal-wrap p { font-size: 0.975rem; margin-bottom: 14px; color: var(--text); }
.legal-wrap a { color: var(--accent); font-weight: 600; }
.legal-wrap a:hover { text-decoration: underline; }
/* Buttons inside guides/legal must keep their own colors (not link accent) */
.legal-wrap a.btn { text-decoration: none; font-weight: 650; }
.legal-wrap a.btn-primary,
.legal-wrap a.btn-primary:hover { color: #fff; }
.legal-wrap a.btn-outline { color: var(--accent); }
.legal-wrap a.btn-outline:hover { color: var(--accent); background: var(--accent-soft); text-decoration: none; }
.legal-wrap a.btn-secondary,
.legal-wrap a.btn-secondary:hover { color: #fff; }
.legal-wrap ul {
  margin: 0 0 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  list-style: disc;
}
.legal-wrap ul li { font-size: 0.975rem; }
.toc {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin: 0 0 28px;
  padding: 16px 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
}
.toc a { font-size: 0.9375rem; font-weight: 650; }
.section-jump { scroll-margin-top: 88px; }
.notice {
  background: var(--note-bg);
  border: 1px solid var(--note-border);
  border-left: 4px solid var(--accent);
  border-radius: 8px;
  padding: 16px 20px;
  margin: 32px 0;
  font-size: 0.875rem;
  color: var(--note-text);
  line-height: 1.6;
}
.notice strong { color: var(--note-strong); }
.guide-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}
.footer-simple {
  background: var(--ink-deep);
  padding: 40px 0;
}
.footer-simple-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-simple-inner .footer-copy {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.4);
}
.footer-simple-inner .footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
}
.footer-simple-inner .footer-links a {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.5);
}
.footer-simple-inner .footer-links a:hover { color: rgba(255, 255, 255, 0.85); }

/* Sync card (directory outcome) */
.sync-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 28px;
  max-width: 360px;
  margin: 0 auto;
  box-shadow: var(--shadow-md);
}
.sync-card h4 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}
.sync-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.sync-dots {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 18px 0 8px;
}
.sync-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  animation: syncPulse 1.5s ease-in-out infinite;
}
.sync-dot:nth-child(2) { animation-delay: 0.3s; }
.sync-dot:nth-child(3) { animation-delay: 0.6s; }
@keyframes syncPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}

/* Responsive */
@media (max-width: 1024px) {
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 440px; }
}

@media (max-width: 1100px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero { padding: 120px 0 56px; }
  .hero-sub { max-width: 100%; }
  .outcome-inner,
  .outcome-inner--flip { grid-template-columns: 1fr; gap: 40px; }
  .outcome-inner--flip .outcome-copy,
  .outcome-inner--flip .outcome-media { order: unset; }
  .outcome-media { order: -1; }
  .hero-phones {
    width: min(300px, 100%);
    aspect-ratio: 300 / 520;
  }
  .hero-phone-front { width: 230px; }
  .hero-phone-mid { width: 200px; left: 48px; top: 28px; }
  .hero-phone-back { width: 175px; left: 84px; top: 54px; }
  .outcome-phones {
    width: min(300px, 100%);
    aspect-ratio: 300 / 540;
  }
  .outcome-phone-front { width: 250px; }
  .outcome-phone-back { width: 210px; }
  .steps-grid { grid-template-columns: 1fr; gap: 28px; }
  .testimonials-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .privacy-inner { flex-direction: column; align-items: flex-start; gap: 20px; }
  .footer-inner { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .hero-store-btns { flex-direction: column; width: 100%; }
  .hero-store-btns .btn-store { width: 100%; justify-content: center; }
  .nav-ctas .nav-btn-outline { display: none; }
  .founder {
    flex-direction: column;
    text-align: center;
    gap: 18px;
  }
  .founder-bio { margin-left: auto; margin-right: auto; }
}
