/* PWA Ministry site — page styles layered on the shared DS tokens. */

/* ── Base ─────────────────────────────────────────────────────────── */
html, body { margin: 0; padding: 0; background: var(--color-neutral-0); -webkit-font-smoothing: antialiased; }
body { font-family: var(--font-sans, 'DM Sans', system-ui, sans-serif); color: var(--color-neutral-700); }
a { text-decoration: none; color: var(--color-sky-700); cursor: pointer; }
a:hover { color: var(--color-navy-900); }
img { max-width: 100%; }
:focus-visible { outline: 2px solid var(--color-sky-800); outline-offset: 2px; border-radius: 4px; }
.hero :focus-visible, .section--navy :focus-visible, .cta-band :focus-visible, .footer :focus-visible, .plan--dark :focus-visible, .safeguard :focus-visible { outline-color: var(--color-sky-200); }

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }

.skip-link { position: absolute; left: -9999px; top: 0; z-index: 2000; background: var(--color-navy-900); color: #fff; padding: 10px 18px; border-radius: 0 0 10px 0; font-family: var(--font-sans); font-size: 14px; }
.skip-link:focus { left: 0; color: #fff; }

.wrap { max-width: 1120px; margin: 0 auto; }
.wrap--1020 { max-width: 1020px; }
.wrap--920 { max-width: 920px; }
.wrap--860 { max-width: 860px; }
.wrap--840 { max-width: 840px; }
.wrap--800 { max-width: 800px; }
.wrap--780 { max-width: 780px; }
.wrap--760 { max-width: 760px; }
.wrap--640 { max-width: 640px; }

/* pwa-pulse-glow keyframes come from shared/ds/tokens/motion.css */

/* ── Buttons (from DS Button component) ───────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  height: 42px; padding: 0 var(--space-5);
  border-radius: var(--radius-button); border: 0;
  font-family: var(--font-sans); font-size: var(--text-base); font-weight: var(--weight-medium);
  letter-spacing: -0.01em; white-space: nowrap; cursor: pointer; user-select: none;
  transition: transform var(--duration-base) var(--ease-spring), box-shadow var(--duration-base) var(--ease-out), background var(--duration-base) var(--ease-out);
}
.btn--sm { height: 34px; padding: 0 var(--space-4); font-size: var(--text-sm); }
.btn--lg { height: 52px; padding: 0 var(--space-7); font-size: var(--text-md); }
.btn--block { width: 100%; }
.btn--primary {
  background: linear-gradient(180deg, var(--color-navy-800) 0%, var(--color-navy-900) 100%);
  color: #fff; border: 1px solid rgba(255, 255, 255, 0.08); box-shadow: var(--shadow-navy-sm);
}
.btn--primary:hover { transform: translateY(-1px) scale(1.015); box-shadow: var(--shadow-navy-md); color: #fff; }
.btn--secondary {
  background: linear-gradient(180deg, var(--color-sky-400) 0%, var(--color-sky-500) 100%);
  color: var(--color-navy-900); border: 1px solid rgba(255, 255, 255, 0.15); box-shadow: var(--shadow-sky-sm);
}
.btn--secondary:hover { transform: translateY(-1px) scale(1.015); box-shadow: var(--shadow-sky-md); color: var(--color-navy-900); }
.btn:active { transform: translateY(0) scale(0.99); }
.btn--ghost {
  background: transparent; color: var(--color-navy-900);
  border: 1px solid var(--color-border); box-shadow: var(--shadow-xs);
}
.btn--ghost:hover { transform: translateY(-1px) scale(1.015); box-shadow: var(--shadow-sm); color: var(--color-navy-900); }
.btn--hero-ghost {
  background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.35); color: #fff;
  font-size: 17px;
}
.btn--hero-ghost:hover { background: rgba(255, 255, 255, 0.18); transform: translateY(-1px) scale(1.015); color: #fff; }

/* ── Nav ──────────────────────────────────────────────────────────── */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000; height: 68px;
  display: flex; align-items: center; justify-content: space-between; padding: 0 48px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(20px) saturate(180%); -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.nav-brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.nav-logo { height: 44px; display: block; }
.nav-tag {
  background: var(--color-navy-50); color: var(--color-navy-800); border: 1px solid var(--color-navy-100);
  border-radius: 9999px; padding: 3px 12px; font-family: var(--font-sans);
  font-size: 12px; font-weight: 700; letter-spacing: 0.03em;
}
.nav-menu { display: flex; align-items: center; gap: 20px; }
.nav-menu > a:not(.btn) { font-family: var(--font-sans); font-size: 15px; font-weight: 500; color: var(--color-neutral-900); white-space: nowrap; }
.nav-menu > a:not(.btn):hover { color: var(--color-sky-700); }
.nav-menu > a[aria-current="page"] { font-weight: 700; color: var(--color-navy-900); text-decoration: underline; text-underline-offset: 6px; text-decoration-thickness: 2px; text-decoration-color: var(--color-sky-500); }
.nav-toggle { display: none; background: none; border: 0; padding: 10px; cursor: pointer; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--color-navy-900); margin: 5px 0; border-radius: 2px; transition: transform var(--duration-base) var(--ease-out), opacity var(--duration-base) var(--ease-out); }

/* ── Sections & headings ──────────────────────────────────────────── */
.section { padding: 100px 48px; }
.section--tight { padding: 96px 48px; }
.section--88 { padding: 88px 48px; }
.section--white { background: var(--color-neutral-0); }
.section--gray { background: var(--color-neutral-50); }
.section--tint { background: var(--color-navy-50); padding: 96px 48px; }
.section--navy { background: var(--color-navy-900); position: relative; overflow: hidden; }

.section-head { text-align: center; margin-bottom: 56px; }
.section-head--44 { margin-bottom: 44px; }
.section-head--48 { margin-bottom: 48px; }
.section-head h2 { margin: 16px 0 14px; }
.section-head h2:first-child { margin-top: 0; }
.section-sub { font-family: var(--font-sans); font-size: 17px; color: var(--color-neutral-600); max-width: 560px; margin: 0 auto; line-height: 1.6; }

h1, h2, h3 { font-family: var(--font-display, 'Outfit', system-ui, sans-serif); color: var(--color-navy-900); }
.h-display { font-size: clamp(34px, 3.8vw, 48px); font-weight: 700; letter-spacing: -0.03em; line-height: 1.1; }
.h-mid { font-size: clamp(30px, 3.4vw, 44px); font-weight: 700; letter-spacing: -0.03em; line-height: 1.1; }
.h-sub { font-size: clamp(28px, 3.2vw, 40px); font-weight: 700; letter-spacing: -0.03em; line-height: 1.2; }

.eyebrow {
  display: inline-flex; background: var(--color-sky-50); color: var(--color-sky-800);
  border: 1px solid var(--color-sky-100); border-radius: 8px; padding: 4px 12px;
  font-family: var(--font-sans); font-size: 12px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase;
}

.body-copy { font-family: var(--font-sans); font-size: 16px; color: var(--color-neutral-700); line-height: 1.75; margin: 0 0 14px; }
.body-copy:last-child { margin-bottom: 0; }

/* ── Hero ─────────────────────────────────────────────────────────── */
.hero {
  position: relative; overflow: hidden;
  background: var(--color-navy-900) url('/shared/assets/backgrounds/deep-current-landscape.svg') center / cover no-repeat;
  padding: 188px 48px 140px; text-align: center;
}
.hero--short { padding-bottom: 120px; }
.hero-inner { max-width: 860px; margin: 0 auto; position: relative; }
.hero-chip {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(77, 196, 232, 0.14); border: 1px solid rgba(77, 196, 232, 0.35);
  border-radius: 100px; padding: 5px 16px; margin-bottom: 28px;
  font-family: var(--font-sans); font-size: 13px; font-weight: 500; color: var(--color-sky-200);
}
.hero-chip-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--color-sky-400); display: block; animation: pwa-pulse-glow 2s ease-in-out infinite; }
.hero h1 { font-size: clamp(46px, 5.2vw, 72px); font-weight: 800; line-height: 1.02; letter-spacing: -0.04em; color: #fff; margin: 0 0 24px; }
.hero--short h1 { font-size: clamp(42px, 4.8vw, 64px); line-height: 1.04; margin-bottom: 22px; }
.hero h1 .accent { color: var(--color-sky-400); } /* sky-400 passes on navy heroes only */
.page-hero h1 .accent, .section--page-top h1 .accent { color: var(--color-sky-700); }
.hero-sub { font-family: var(--font-sans); font-size: 19px; color: var(--color-sky-100); line-height: 1.65; max-width: 620px; margin: 0 auto 40px; }
.hero--short .hero-sub { font-size: 18px; max-width: 640px; margin-bottom: 36px; }
.hero-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.hero-note { font-family: var(--font-sans); font-size: 14px; color: rgba(255, 255, 255, 0.6); margin: 16px 0 0; }

/* Light page hero (subpages) */
.page-hero { background: var(--color-neutral-0); padding: 164px 48px 72px; text-align: center; }
.page-hero--pricing { padding-bottom: 56px; }
.page-hero .eyebrow { margin-bottom: 20px; }
.page-hero h1 { font-size: clamp(40px, 4.4vw, 58px); font-weight: 800; line-height: 1.05; letter-spacing: -0.04em; margin: 0 0 20px; }
.page-hero p { font-family: var(--font-sans); font-size: 17px; color: var(--color-neutral-600); line-height: 1.7; margin: 0; }

/* ── Cards & grids ────────────────────────────────────────────────── */
.grid { display: grid; gap: 20px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); gap: 16px; }
.grid--5 { grid-template-columns: repeat(5, 1fr); gap: 16px; }

.card {
  background: var(--color-neutral-0); border: 1px solid var(--color-neutral-200);
  border-radius: 24px; padding: 28px; box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}
.card--32 { padding: 32px; }
.card--30 { padding: 30px; }
.card h3 { font-size: 19px; font-weight: 600; margin: 0 0 10px; }
.card p { font-family: var(--font-sans); font-size: 14px; color: var(--color-neutral-600); line-height: 1.7; margin: 0; }

.icon-tile {
  width: 56px; height: 56px; border-radius: 14px; background: var(--color-sky-50);
  display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
}
.icon-tile img { width: 32px; height: 32px; }
.icon-tile--sm { width: 52px; height: 52px; margin-bottom: 16px; flex-shrink: 0; }
.icon-tile--sm img { width: 30px; height: 30px; }

.card-head { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.card-head .icon-tile--sm { margin-bottom: 0; }
.card-head h3 { font-size: 20px; font-weight: 700; margin: 0; }

.check-list, .bullet-list { display: flex; flex-direction: column; gap: 9px; }
.check-list span, .bullet-list span { font-family: var(--font-sans); font-size: 14px; color: var(--color-neutral-700); }
.bullet-list a { font-family: var(--font-sans); font-size: 14px; font-weight: 600; color: var(--color-sky-700); }

/* ── Two-column feature (photo + copy) ────────────────────────────── */
.feature-split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 72px; align-items: center; }
.feature-split--hero { grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr); }
.wave-underline { width: 140px; display: block; margin-bottom: 20px; }
.photo-frame { position: relative; }
.photo-frame::before {
  content: ""; position: absolute; inset: 24px -24px -24px 24px;
  background: linear-gradient(135deg, var(--color-sky-50), var(--color-navy-50));
  border-radius: 28px; pointer-events: none;
}
.photo-frame img { position: relative; width: 100%; height: 400px; object-fit: cover; border-radius: 24px; display: block; }
.photo-frame--tall img { height: 440px; }

/* ── Founder video card ───────────────────────────────────────────── */
.founder-card {
  background: var(--color-neutral-0); border: 1px solid var(--color-neutral-200); border-radius: 28px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08); overflow: hidden;
  display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}
.founder-media {
  position: relative; min-height: 340px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px;
  padding: 32px; text-align: center;
  background: radial-gradient(circle at 70% 20%, rgba(77, 196, 232, 0.25) 0%, transparent 60%), var(--color-navy-900);
}
.founder-play { width: 72px; height: 72px; border-radius: 50%; border: 2px solid rgba(77, 196, 232, 0.6); display: flex; align-items: center; justify-content: center; }
.founder-media-title { font-family: var(--font-display); font-size: 18px; font-weight: 700; color: #fff; }
.founder-body { padding: 44px 48px; display: flex; flex-direction: column; justify-content: center; }
.founder-body .eyebrow { align-self: flex-start; margin-bottom: 18px; }
.founder-body h2 { font-size: clamp(26px, 2.8vw, 34px); font-weight: 700; letter-spacing: -0.025em; line-height: 1.15; margin: 0 0 18px; }
.founder-name { font-family: var(--font-display); font-size: 16px; font-weight: 700; color: var(--color-navy-900); }
.founder-role { font-family: var(--font-sans); font-size: 14px; color: var(--color-neutral-600); margin-top: 2px; }

/* ── Stats ────────────────────────────────────────────────────────── */
.stat-tile { background: var(--color-neutral-50); border-radius: 24px; padding: 40px; text-align: center; }
.stat-tile--accent { background: linear-gradient(180deg, var(--color-sky-50), #d4f1fb); border: 1px solid var(--color-sky-100); }
.stat-num { font-family: var(--font-display); font-size: 64px; font-weight: 800; letter-spacing: -0.04em; color: var(--color-navy-900); line-height: 1; }
.stat-tile--accent .stat-num { color: var(--color-sky-700); }
.stat-label { font-family: var(--font-sans); font-size: 15px; font-weight: 600; color: var(--color-neutral-900); margin-top: 12px; }

/* ── Pricing ──────────────────────────────────────────────────────── */
.compare-card { background: var(--color-neutral-0); border: 1px solid var(--color-neutral-200); border-radius: 20px; padding: 26px 32px; margin-bottom: 40px; }
.compare-title { font-family: var(--font-display); font-size: 18px; font-weight: 700; color: var(--color-navy-900); margin-bottom: 16px; }
.compare-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.compare-item { border-left: 3px solid var(--color-neutral-100); padding-left: 16px; }
.compare-item--pwa { border-left-color: var(--color-sky-400); }
.compare-num { font-family: var(--font-display); font-size: 24px; font-weight: 800; letter-spacing: -0.02em; color: var(--color-neutral-600); }
.compare-item--pwa .compare-num { color: var(--color-sky-700); }
.compare-label { font-family: var(--font-sans); font-size: 13px; color: var(--color-neutral-600); margin-top: 4px; }
.compare-item--pwa .compare-label { color: var(--color-neutral-700); }

.plan { display: flex; flex-direction: column; position: relative; }
.plan h3 { font-size: 20px; font-weight: 700; margin: 0 0 4px; }
.plan-desc { font-family: var(--font-sans); font-size: 13px; color: var(--color-neutral-600); margin: 0 0 18px; }
.plan-price { display: flex; align-items: baseline; gap: 6px; margin-bottom: 18px; }
.plan-amount { font-family: var(--font-display); font-size: 40px; font-weight: 800; letter-spacing: -0.03em; color: var(--color-navy-900); }
.plan-period { font-family: var(--font-sans); font-size: 14px; color: var(--color-neutral-600); }
.plan .check-list { margin-bottom: 24px; }
.plan-cta { margin-top: auto; }
.plan--featured { border: 2px solid var(--color-sky-400); box-shadow: 0 8px 24px rgba(77, 196, 232, 0.18); }
.plan-flag {
  position: absolute; top: -12px; left: 32px;
  background: linear-gradient(180deg, var(--color-sky-400), var(--color-sky-500)); color: var(--color-navy-900);
  font-family: var(--font-sans); font-size: 12px; font-weight: 700; letter-spacing: 0.03em;
  border-radius: 9999px; padding: 4px 14px;
}
.plan--dark { background: var(--color-navy-900); border: 0; box-shadow: 0 8px 24px rgba(19, 34, 114, 0.25); }
.plan--dark h3, .plan--dark .plan-amount { color: #fff; }
.plan--dark .plan-desc, .plan--dark .plan-period { color: rgba(255, 255, 255, 0.6); }
.plan--dark .check-list span { color: rgba(255, 255, 255, 0.85); }
.pricing-note { text-align: center; font-family: var(--font-sans); font-size: 14px; color: var(--color-neutral-600); margin: 36px 0 0; }
.pricing-note a { color: var(--color-sky-700); font-weight: 600; }

/* ── Bookkeeping model table ──────────────────────────────────────── */
.model-table { width: 100%; border-collapse: separate; border-spacing: 0; table-layout: fixed; border: 1px solid var(--color-neutral-200); border-radius: 20px; overflow: hidden; margin-bottom: 24px; }
.model-table th { text-align: left; }
.model-head--local { width: 45.5%; }
.model-cell { padding: 18px 28px; border-bottom: 1px solid var(--color-neutral-100); font-family: var(--font-sans); font-size: 15px; color: var(--color-neutral-700); line-height: 1.6; vertical-align: top; }
.model-row:last-child .model-cell { border-bottom: 0; }
.model-cell--we { background: var(--color-sky-50); color: var(--color-navy-900); }
.model-cell--empty { color: var(--color-neutral-400); }
.model-head { padding: 14px 28px; font-family: var(--font-sans); font-size: 12px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; border-bottom: 1px solid var(--color-neutral-100); }
.model-head--local { background: var(--color-neutral-50); color: var(--color-neutral-600); }
.model-head--we { background: var(--color-navy-900); color: #fff; }

.safeguard { background: var(--color-navy-900); border-radius: 20px; padding: 28px 32px; display: flex; gap: 16px; align-items: flex-start; }
.safeguard svg { flex-shrink: 0; margin-top: 2px; }
.safeguard p { font-family: var(--font-sans); font-size: 15px; color: rgba(255, 255, 255, 0.85); line-height: 1.7; margin: 0; }
.safeguard strong { color: #fff; }

/* ── Steps ────────────────────────────────────────────────────────── */
.step { background: var(--color-neutral-50); border-radius: 24px; padding: 28px; }
.step-num { font-family: var(--font-display); font-size: 44px; font-weight: 800; letter-spacing: -0.04em; color: var(--color-sky-700); line-height: 1; margin-bottom: 14px; }
.step h3 { font-size: 17px; font-weight: 600; margin: 0 0 8px; }
.step p { font-family: var(--font-sans); font-size: 14px; color: var(--color-neutral-600); line-height: 1.65; margin: 0; }

/* ── FAQ ──────────────────────────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: 14px; }
.faq-item { background: var(--color-neutral-0); border: 1px solid var(--color-neutral-200); border-radius: 18px; padding: 26px 30px; }
.faq-q { font-family: var(--font-display); font-size: 17px; font-weight: 600; color: var(--color-navy-900); margin: 0 0 10px; }
.faq-a { font-family: var(--font-sans); font-size: 14px; color: var(--color-neutral-700); line-height: 1.75; margin: 0 0 10px; }
.faq-a:last-child { margin-bottom: 0; }

/* ── Values / team ────────────────────────────────────────────────── */
.value-tile { background: var(--color-neutral-50); border-radius: 20px; padding: 28px 22px; text-align: center; }
.value-tile h3 { font-size: 17px; font-weight: 600; margin: 0 0 8px; }
.value-tile p { font-family: var(--font-sans); font-size: 13px; color: var(--color-neutral-600); line-height: 1.6; margin: 0; }

.team-card { text-align: center; }
.team-photo { width: 148px; height: 148px; border-radius: 50%; object-fit: cover; display: block; margin: 0 auto 20px; }
.team-card h3 { font-size: 20px; font-weight: 700; margin: 0 0 6px; }
.team-card p { font-family: var(--font-sans); font-size: 14px; color: var(--color-neutral-600); line-height: 1.5; margin: 0; }

/* ── Info bar / pricing box ───────────────────────────────────────── */
.info-bar {
  background: var(--color-neutral-0); border: 1px solid var(--color-neutral-200); border-radius: 20px;
  padding: 24px 32px; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
  max-width: 1120px; margin: 24px auto 0;
}
.info-bar p { font-family: var(--font-sans); font-size: 15px; color: var(--color-neutral-700); margin: 0; }
.info-bar strong { color: var(--color-navy-900); }

.quote-box {
  background: var(--color-sky-50); border: 1px solid var(--color-sky-100); border-radius: 24px;
  padding: 44px 48px; text-align: center;
}
.quote-box h2 { font-size: 26px; font-weight: 700; letter-spacing: -0.02em; margin: 0 0 14px; }
.quote-box p { font-family: var(--font-sans); font-size: 15px; color: var(--color-neutral-700); line-height: 1.75; margin: 0 0 24px; }
.quote-box strong { color: var(--color-navy-900); }

/* ── Navy statement band ──────────────────────────────────────────── */
.statement { padding: 88px 48px; }
.statement-glow { position: absolute; width: 600px; height: 600px; border-radius: 50%; background: radial-gradient(circle, rgba(77, 196, 232, 0.18) 0%, transparent 65%); top: -200px; left: -150px; pointer-events: none; }
.statement-inner { max-width: 860px; margin: 0 auto; text-align: center; position: relative; }
.statement h2 { font-size: clamp(30px, 3.4vw, 42px); font-weight: 700; letter-spacing: -0.03em; color: #fff; line-height: 1.15; margin: 0 0 18px; }
.statement p { font-family: var(--font-sans); font-size: 17px; color: var(--color-sky-100); line-height: 1.7; margin: 0; }

/* ── CTA band ─────────────────────────────────────────────────────── */
.cta-section { background: var(--color-neutral-0); padding: 0 48px 100px; }
.cta-band {
  max-width: 1120px; margin: 0 auto;
  background: linear-gradient(135deg, var(--color-navy-900) 0%, var(--color-navy-800) 60%, var(--color-sky-700) 100%);
  border-radius: 32px; padding: 72px 64px; position: relative; overflow: hidden;
}
.cta-band--center { text-align: center; }
.cta-glow { position: absolute; width: 480px; height: 480px; border-radius: 50%; background: radial-gradient(circle, rgba(77, 196, 232, 0.25) 0%, transparent 65%); top: -160px; right: -100px; pointer-events: none; }
.cta-inner { position: relative; max-width: 640px; }
.cta-band--center .cta-inner { margin: 0 auto; }
.cta-band h2 { font-size: clamp(30px, 3.4vw, 42px); font-weight: 700; letter-spacing: -0.03em; line-height: 1.12; color: #fff; margin: 0 0 16px; }
.cta-band p { font-family: var(--font-sans); font-size: 17px; color: rgba(255, 255, 255, 0.75); line-height: 1.6; margin: 0 0 36px; }
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.cta-band--center .cta-actions { justify-content: center; }
.cta-note { font-family: var(--font-sans); font-size: 13px; color: rgba(255, 255, 255, 0.55); margin: 16px 0 0 !important; }

/* ── Lead form ────────────────────────────────────────────────────── */
.lead-form { max-width: 640px; margin: 0 auto; text-align: left; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field--full { grid-column: 1 / -1; }
.form-field label { font-family: var(--font-sans); font-size: 14px; font-weight: 600; color: var(--color-navy-900); }
.form-field input, .form-field select, .form-field textarea {
  font-family: var(--font-sans); font-size: 16px; color: var(--color-neutral-900);
  background: var(--color-neutral-0); border: 1px solid var(--color-neutral-200); border-radius: 12px;
  padding: 12px 14px; width: 100%; box-sizing: border-box;
}
.form-field textarea { min-height: 120px; resize: vertical; }
.form-actions { margin-top: 20px; display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.form-note { font-family: var(--font-sans); font-size: 13px; color: var(--color-neutral-600); margin: 12px 0 0; }
.form-status { font-family: var(--font-sans); font-size: 14px; color: var(--color-neutral-600); margin: 12px 0 0; min-height: 1.4em; }
.form-status--ok { color: var(--color-success-dark); }
.form-status--err { color: var(--color-error-dark); }

/* ── Contact page ─────────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); gap: 64px; align-items: start; }
.contact-card { display: flex; flex-direction: column; gap: 12px; }
.contact-card .footer-heading { color: var(--color-navy-900); }
.contact-line { font-family: var(--font-sans); font-size: 15px; color: var(--color-neutral-700); }
.contact-line a { font-weight: 600; }
.contact-socials { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 4px; }
.contact-socials a { font-family: var(--font-sans); font-size: 14px; color: var(--color-sky-700); }

/* ── Footer ───────────────────────────────────────────────────────── */
.footer { background: var(--color-navy-900); padding: 72px 48px 40px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1.2fr; gap: 48px; padding-bottom: 56px; border-bottom: 1px solid rgba(255, 255, 255, 0.12); }
.footer-logo { height: 56px; display: block; margin-bottom: 20px; }
.footer-blurb { font-family: var(--font-sans); font-size: 14px; color: rgba(255, 255, 255, 0.6); line-height: 1.7; margin: 0 0 20px; max-width: 340px; }
.footer-tagline { font-family: var(--font-display); font-size: 14px; font-weight: 600; color: var(--color-sky-400); margin: 0; }
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-heading { font-family: var(--font-display); font-size: 14px; font-weight: 700; color: #fff; letter-spacing: 0.02em; margin-bottom: 6px; }
.footer-links a, .footer-contact > a { font-family: var(--font-sans); font-size: 14px; color: rgba(255, 255, 255, 0.6); }
.footer-links a:hover, .footer-contact > a:hover { color: var(--color-sky-400); }
.footer-contact .footer-heading { display: block; margin-bottom: 18px; }
.footer-contact > a { display: block; margin-bottom: 10px; }
.footer-contact > a:last-of-type { margin-bottom: 24px; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; padding-top: 28px; }
.footer-copy { font-family: var(--font-sans); font-size: 13px; color: rgba(255, 255, 255, 0.6); }
.footer-social, .footer-legal { display: flex; gap: 20px; }
.footer-social a, .footer-legal a { font-family: var(--font-sans); font-size: 13px; color: rgba(255, 255, 255, 0.55); }
.footer-social a:hover, .footer-legal a:hover { color: var(--color-sky-400); }

/* ── Reveal animation ─────────────────────────────────────────────── */
html.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity var(--duration-slower) var(--ease-out), transform var(--duration-slower) var(--ease-out); }
html.js .reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  html.js .reveal { opacity: 1; transform: none; transition: none; }
  .hero-chip-dot { animation: none; }
}

/* ── Responsive ───────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .site-nav { padding: 0 24px; }
  .nav-toggle { display: block; }
  .nav-menu {
    display: none; position: absolute; top: 68px; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 4px; padding: 12px 24px 20px;
    background: rgba(255, 255, 255, 0.97); border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  }
  .nav-menu.is-open { display: flex; }
  .nav-menu > a:not(.btn) { padding: 10px 4px; }
  .nav-menu > .btn { margin-top: 8px; }

  .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .grid--5 { grid-template-columns: repeat(2, 1fr); }
  .feature-split, .feature-split--hero { grid-template-columns: 1fr; gap: 48px; }
  .founder-card { grid-template-columns: 1fr; }
  .founder-media { min-height: 280px; }
  .compare-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .cta-band { padding: 56px 40px; }
}

@media (max-width: 768px) {
  .section, .section--tight, .section--88, .section--tint, .statement { padding-left: 20px; padding-right: 20px; }
  .section { padding-top: 72px; padding-bottom: 72px; }
  .hero { padding: 96px 20px 72px; }
  .page-hero { padding: 116px 20px 48px; }
  .cta-section { padding: 0 20px 72px; }
  .footer { padding: 56px 20px 32px; }

  .grid--2, .grid--3, .grid--4, .grid--5 { grid-template-columns: 1fr; }
  .model-table, .model-table thead, .model-table tbody, .model-row, .model-head, .model-cell { display: block; }
  .model-head--local { width: auto; border-bottom: 0; }
  .model-cell { border-bottom: 0; }
  .model-cell--empty { display: none; }
  .model-cell--we { border-bottom: 1px solid var(--color-neutral-100); }
  .model-row:last-child .model-cell--we { border-bottom: 0; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .founder-body { padding: 32px 24px; }
  .cta-band { padding: 48px 24px; }
  .quote-box { padding: 32px 24px; }
  .info-bar { padding: 20px 24px; }
  .stat-num { font-size: 52px; }
  .photo-frame::before { inset: 16px -12px -12px 16px; }
  .btn--lg, .btn--hero-ghost { white-space: normal; height: auto; min-height: 52px; padding-top: 10px; padding-bottom: 10px; text-align: center; }
}
