/* ============================================================
   Sandbar Health — shared design system
   Canonical tokens, components, and responsive behavior used
   across every page. Edit here once; all pages inherit.
   ============================================================ */

:root {
  --ink: #1C1C28;
  --ink-soft: #4A5568;
  --ink-faint: #8B92A0;
  --teal: #1A7A6D;
  --teal-deep: #14635A;
  --teal-light: #A3D5C9;
  --stone: #E8E4DF;
  --cream: #FAF9F6;
  --cream-warm: #F4F1EB;
  --line: rgba(28, 28, 40, 0.10);
  --line-strong: rgba(28, 28, 40, 0.18);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Source Sans 3', sans-serif;
  background: var(--cream);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Subtle paper grain to match brand warmth */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 240 240' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.035 0'/%3E%3C/filter%3E%3Crect width='240' height='240' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1;
  opacity: 0.55;
  mix-blend-mode: multiply;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 2;
}

/* ---------- Logo Mark (tip of iceberg) ---------- */
.mark { position: relative; display: inline-block; }
.mark .back {
  position: absolute;
  border-radius: 4px;
  background: var(--teal);
  opacity: 0.22;
}
.mark .front {
  position: absolute;
  border-radius: 3px;
  background: var(--teal);
}

.mark-nav { width: 30px; height: 30px; }
.mark-nav .back { width: 22px; height: 22px; top: 7px; left: 8px; }
.mark-nav .front { width: 15px; height: 15px; top: 0; left: 0; }

.mark-benefit { width: 34px; height: 34px; }
.mark-benefit .back { width: 25px; height: 25px; top: 8px; left: 9px; }
.mark-benefit .front { width: 17px; height: 17px; top: 0; left: 0; }

/* ---------- Nav ---------- */
nav {
  padding: 28px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  color: var(--ink);
}

.logo-text {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 21px;
  letter-spacing: -0.03em;
}
.logo-text .bold { font-weight: 700; color: var(--ink); }
.logo-text .light { font-weight: 400; color: var(--teal); }

.nav-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 26px;
}

.nav-links a {
  font-weight: 500;
  font-size: 14px;
  color: var(--ink-soft);
  text-decoration: none;
  transition: color 0.2s ease;
}
.nav-links a:hover { color: var(--teal); }
.nav-links a[aria-current="page"] { color: var(--teal); }

/* ---------- Nav: grouped dropdowns + mobile menu ---------- */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  padding: 9px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}
nav.open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
nav.open .nav-toggle span:nth-child(2) { opacity: 0; }
nav.open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-group { position: relative; }
.nav-group-trigger {
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: var(--ink-soft);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: color 0.2s ease;
}
.nav-group-trigger:hover,
.nav-group:hover .nav-group-trigger,
.nav-group-trigger.is-active { color: var(--teal); }
.nav-group-trigger .caret { font-size: 9px; transition: transform 0.2s ease; }
.nav-group:hover .nav-group-trigger .caret,
.nav-group.open .nav-group-trigger .caret { transform: rotate(180deg); }

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 10px;
  min-width: 188px;
  display: flex;
  flex-direction: column;
  gap: 1px;
  padding: 7px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 14px 36px rgba(28, 28, 40, 0.10);
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
  z-index: 60;
}
.nav-group:hover .nav-dropdown,
.nav-group:focus-within .nav-dropdown,
.nav-group.open .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown a {
  white-space: nowrap;
  padding: 9px 13px;
  border-radius: 7px;
  font-size: 14px;
}
.nav-dropdown a:hover { background: var(--cream-warm); color: var(--teal); }
.nav-dropdown a[aria-current="page"] {
  color: var(--teal);
  font-weight: 600;
  background: var(--cream-warm);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.nav-dropdown a[aria-current="page"]::after { content: "✓"; font-size: 12px; }

@media (max-width: 820px) {
  .nav-toggle { display: flex; }
  nav { flex-wrap: wrap; }
  .nav-links {
    display: none;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 0;
    padding: 8px 0 22px;
  }
  nav.open .nav-links {
    display: flex;
    margin-bottom: 12px;
    border-bottom: 1px solid var(--line);
  }
  .nav-group { width: 100%; }
  .nav-group-trigger {
    width: 100%;
    justify-content: space-between;
    padding: 14px 0;
    font-size: 16px;
    border-bottom: 1px solid var(--line);
  }
  .nav-dropdown {
    position: static;
    display: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    margin: 0;
    padding: 4px 0 10px 14px;
    border: none;
    background: none;
    box-shadow: none;
  }
  .nav-group.open .nav-dropdown { display: flex; }
  .nav-dropdown a { font-size: 15px; }
  .nav-direct {
    padding: 14px 0;
    font-size: 16px;
    border-bottom: 1px solid var(--line);
  }
}

/* ---------- Hero ---------- */
.hero {
  padding: 72px 0 116px;
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 72px;
  align-items: center;
}
.hero.hero-solo { grid-template-columns: 1fr; padding-bottom: 96px; }

.eyebrow {
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 26px;
  animation: rise 0.7s ease-out;
}

.hero h1 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 60px;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 28px;
  animation: rise 0.8s 0.05s ease-out backwards;
}
.hero h1 .accent { color: var(--teal); }

.hero-sub {
  font-size: 19px;
  color: var(--ink-soft);
  margin-bottom: 42px;
  max-width: 560px;
  animation: rise 0.8s 0.1s ease-out backwards;
}
.hero.hero-solo .hero-sub { max-width: 680px; }

.cta-row {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
  animation: rise 0.8s 0.15s ease-out backwards;
}

.btn-primary {
  background: var(--ink);
  color: var(--cream);
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 600;
  font-size: 15px;
  padding: 15px 26px;
  border-radius: 4px;
  text-decoration: none;
  border: 1px solid var(--ink);
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-primary:hover {
  background: var(--teal);
  border-color: var(--teal);
  transform: translateY(-1px);
}

/* Launch status label (informational, not a button) */
.launch-note {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--teal);
}
.launch-note .status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 0 rgba(26, 122, 109, 0.5);
  animation: pulse 2.4s ease-out infinite;
}

/* ---------- Hero visual (member chat preview) ---------- */
.hero-visual {
  position: relative;
  height: 480px;
  animation: rise 1s 0.25s ease-out backwards;
}
.msg {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 18px 22px 16px;
  position: absolute;
  box-shadow: 0 1px 2px rgba(28,28,40,0.04), 0 8px 28px rgba(28,28,40,0.07);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.msg:hover { transform: translateY(-3px); }
.msg-1 { top: 0; right: 0; width: 310px; }
.msg-2 { top: 168px; left: 0; width: 295px; }
.msg-3 { bottom: 0; right: 48px; width: 290px; }
.msg-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  font-size: 12px;
  color: var(--ink-soft);
  font-weight: 600;
  letter-spacing: 0.02em;
}
.dot { width: 6px; height: 6px; background: var(--teal); border-radius: 50%; }
.msg-body { font-size: 14.5px; color: var(--ink); line-height: 1.55; }
.msg-time { margin-top: 10px; font-size: 11px; color: var(--ink-faint); font-weight: 500; }

/* ---------- Hero card (business-oriented, no chat bubbles) ---------- */
.hero-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 30px 30px 26px;
  box-shadow: 0 1px 2px rgba(28,28,40,0.04), 0 8px 28px rgba(28,28,40,0.07);
  animation: rise 1s 0.25s ease-out backwards;
}
.hero-card .card-label {
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 22px;
}
.hero-card-stat {
  padding: 16px 0;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: baseline;
  gap: 16px;
}
.hero-card-stat:first-of-type { border-top: none; padding-top: 0; }
.hero-card-stat:last-of-type { padding-bottom: 0; }
.hero-card-stat .num {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 30px;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1;
  min-width: 92px;
}
.hero-card-stat .desc { font-size: 14.5px; color: var(--ink-soft); line-height: 1.45; }

/* contact methods (inside hero-card on contact page) */
.method { padding: 15px 0; border-top: 1px solid var(--line); }
.method:first-of-type { border-top: none; padding-top: 0; }
.method:last-of-type { padding-bottom: 0; }
.method-label {
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 4px;
}
.method-value {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 18px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.method-value a { color: var(--teal); text-decoration: none; font-weight: 600; }
.method-value a:hover { text-decoration: underline; }

/* ---------- Sections ---------- */
section { padding: 104px 0; position: relative; }

.section-label {
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 18px;
}

.section-title {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 44px;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 64px;
  max-width: 780px;
}
.section-title.tight { margin-bottom: 16px; }
.section-title .accent { color: var(--teal); }
.section-intro {
  font-size: 19px;
  color: var(--ink-soft);
  line-height: 1.55;
  max-width: 720px;
  margin: 0 0 56px;
}

/* ---------- Lead paragraph band ---------- */
.lead {
  background: var(--cream-warm);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.lead p {
  font-size: 22px;
  line-height: 1.5;
  letter-spacing: -0.01em;
  color: var(--ink);
  max-width: 900px;
}
.lead p + p { margin-top: 18px; }
.lead p strong { font-weight: 600; color: var(--ink); }
.lead a { color: var(--teal); text-decoration: none; font-weight: 600; }
.lead a:hover { text-decoration: underline; }

/* ---------- Benefits ---------- */
.benefits {
  background: var(--cream-warm);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 56px 64px;
}
.benefit { display: flex; gap: 22px; align-items: flex-start; }
.benefit h3 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.015em;
  margin-bottom: 12px;
  color: var(--ink);
  line-height: 1.25;
}
.benefit p { color: var(--ink-soft); font-size: 16px; line-height: 1.65; }

/* ---------- Steps (how it works) ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.step { padding-top: 28px; border-top: 1px solid var(--line-strong); position: relative; }
.step::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  width: 48px;
  height: 1px;
  background: var(--teal);
}
.step-number {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: var(--teal);
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}
.step h3 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.015em;
  margin-bottom: 12px;
  color: var(--ink);
}
.step p { color: var(--ink-soft); font-size: 16px; line-height: 1.65; }
.step-meta { margin-top: 18px; padding-top: 14px; border-top: 1px solid var(--line); }
.step-meta div { font-size: 13px; color: var(--ink-soft); line-height: 1.5; margin-top: 7px; }
.step-meta div:first-child { margin-top: 0; }
.step-meta div span {
  display: inline-block;
  min-width: 82px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-faint);
}
/* Primary action card — the one step we ask the member to take */
.step.is-primary {
  background: rgba(26, 122, 109, 0.06);
  border-top: none;
  border-radius: 12px;
  padding: 26px 24px;
}
.step.is-primary::before { display: none; }
.step.is-primary .step-number { color: var(--teal-deep); }
.step.is-primary .step-meta { border-top-color: var(--line-strong); }

/* ---------- Three layers (stack) ---------- */
.stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 900px;
  margin-bottom: 28px;
}
.layer {
  background: var(--cream);
  border: 1px solid var(--line);
  border-left: 4px solid var(--teal);
  border-radius: 8px;
  padding: 26px 30px;
  display: flex;
  align-items: baseline;
  gap: 28px;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}
.layer:hover {
  transform: translateY(-2px);
  box-shadow: 0 1px 2px rgba(28,28,40,0.04), 0 10px 30px rgba(28,28,40,0.07);
}
.layer-num {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--teal);
  letter-spacing: 0.05em;
  min-width: 34px;
}
.layer-title {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.015em;
  color: var(--ink);
  min-width: 210px;
}
.layer-desc { font-size: 16px; color: var(--ink-soft); line-height: 1.6; flex: 1; }
.layer-tag {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--teal);
  background: rgba(26, 122, 109, 0.08);
  border-radius: 4px;
  padding: 3px 9px;
  margin-left: 6px;
  white-space: nowrap;
  position: relative;
  top: -1px;
}
.layer-tag.is-future {
  color: var(--ink-faint);
  background: rgba(28, 28, 40, 0.05);
}
.caption {
  text-align: center;
  font-family: 'DM Sans', sans-serif;
  font-style: italic;
  font-size: 18px;
  color: var(--ink);
  max-width: 720px;
  margin: 0 auto;
}

/* ---------- Coordinated vs uncoordinated compare ---------- */
.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.compare-card {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 30px 32px;
  background: var(--cream);
}
.compare-card.is-old { background: var(--cream-warm); }
.compare-card.is-new { border-left: 4px solid var(--teal); }
.compare-card h3 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.compare-card.is-old h3 { color: var(--ink-faint); }
.compare-card.is-new h3 { color: var(--teal); }
.compare-card ul { list-style: none; }
.compare-card li {
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.5;
  padding: 11px 0;
  border-top: 1px solid var(--line);
}
.compare-card li:first-child { border-top: none; }
.compare-card.is-new li { color: var(--ink); }

/* ---------- Feature comparison table (dimension | regular | Sandbar) ---------- */
.compare-table {
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  overflow: hidden;
  background: var(--cream);
}
.compare-table .ct-row { display: grid; grid-template-columns: 1.1fr 1fr 1fr; }
.compare-table .ct-row + .ct-row { border-top: 1px solid var(--line); }
.compare-table .ct-head { background: var(--cream-warm); }
.compare-table .ct-cell { padding: 18px 22px; font-size: 16px; line-height: 1.5; }
.compare-table .ct-dim {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.compare-table .ct-old { color: var(--ink-soft); }
.compare-table .ct-new {
  color: var(--ink);
  font-weight: 500;
  background: rgba(26, 122, 109, 0.06);
  border-left: 1px solid var(--line);
}
.compare-table .ct-head .ct-cell {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.compare-table .ct-head .ct-old { color: var(--ink-faint); }
.compare-table .ct-head .ct-new { color: var(--teal-deep); background: rgba(26, 122, 109, 0.10); }
.compare-table .ct-tag { display: none; }
@media (max-width: 760px) {
  .compare-table .ct-row { grid-template-columns: 1fr; }
  .compare-table .ct-head { display: none; }
  .compare-table .ct-dim { background: var(--cream-warm); }
  .compare-table .ct-new { border-left: none; border-top: 1px solid var(--line); }
  .compare-table .ct-tag {
    display: block;
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 10.5px;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: var(--ink-faint);
    margin-bottom: 5px;
  }
  .compare-table .ct-new .ct-tag { color: var(--teal-deep); }
}

/* ---------- Hero differentiator chips (borrowed from v3) ---------- */
.chips { display: flex; flex-wrap: wrap; gap: 10px; list-style: none; margin-top: 28px; }
.chips li {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--stone);
  border-radius: 999px;
  padding: 7px 15px;
}

/* ---------- Alternating proof sections (borrowed from v3) ---------- */
.proofs {
  background: var(--cream-warm);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.proof-list { display: flex; flex-direction: column; gap: 72px; }
.proof { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.proof-text h3 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 30px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 14px 0 16px;
}
.proof-text p { font-size: 17px; color: var(--ink-soft); line-height: 1.65; }
.proof-evidence { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.proof-evidence li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 15px 18px;
  font-size: 15.5px;
  color: var(--ink);
  line-height: 1.5;
}
.proof-evidence li::before {
  content: '';
  flex-shrink: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
  margin-top: 8px;
}
.proof.flip .proof-text { order: 2; }
.proof.flip .proof-evidence { order: 1; }

/* ---------- Persona cards (borrowed from v3) ---------- */
.persona-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 40px; }
.persona-card {
  display: flex;
  flex-direction: column;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 32px;
}
.persona-card h3 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 12px 0;
}
.persona-card .pc-quote {
  font-family: 'DM Sans', sans-serif;
  font-style: italic;
  font-size: 17px;
  line-height: 1.4;
  color: var(--teal);
  margin-bottom: 14px;
}
.persona-card .pc-summary { font-size: 15.5px; color: var(--ink-soft); line-height: 1.6; margin-bottom: 20px; }
.persona-card ul {
  list-style: none;
  margin-top: auto;
  border-top: 1px solid var(--line);
  padding-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.persona-card li { display: flex; align-items: flex-start; gap: 10px; font-size: 14.5px; color: var(--ink); line-height: 1.45; }
.persona-card li::before { content: ''; flex-shrink: 0; width: 6px; height: 6px; border-radius: 50%; background: var(--teal-light); margin-top: 7px; }

/* ---------- Feature cards (Welcome Visit Package, borrowed from v3) ---------- */
.feature-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px; }
.feature-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 28px;
}
.feature-card h3 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 10px;
}
.feature-card p { font-size: 15.5px; color: var(--ink-soft); line-height: 1.6; }

/* ---------- Vertical milestone timeline (borrowed from v3) ---------- */
.milestones {
  list-style: none;
  position: relative;
  max-width: 720px;
  margin-top: 40px;
  padding-left: 34px;
  border-left: 1px solid var(--stone);
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.milestone { position: relative; }
.milestone::before {
  content: '';
  position: absolute;
  left: -42px;
  top: 2px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid var(--teal);
  background: var(--cream);
}
.milestone::after {
  content: '';
  position: absolute;
  left: -36px;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
}
.milestone .ms-marker {
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 6px;
}
.milestone h3 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 8px;
}
.milestone p { font-size: 16px; color: var(--ink-soft); line-height: 1.6; }

@media (max-width: 860px) {
  .proof { grid-template-columns: 1fr; gap: 28px; }
  .proof.flip .proof-text { order: 0; }
  .proof.flip .proof-evidence { order: 0; }
  .proof-text h3 { font-size: 25px; }
  .feature-cards { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .persona-cards { grid-template-columns: 1fr; }
}

/* ---------- Split of effort (who does what) ---------- */
.split { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: 22px; margin-top: 40px; align-items: stretch; }
.split-card { border-radius: 14px; padding: 34px 34px 30px; border: 1px solid var(--line); }
.split-card .split-eyebrow {
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.split-card h3 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 23px;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 20px;
}
.split-card ul { list-style: none; display: flex; flex-direction: column; }
.split-card li {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  font-size: 16px;
  line-height: 1.5;
  padding: 12px 0;
}
.split-card li + li { border-top: 1px solid var(--line); }
.split-card li::before {
  content: '✓';
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  margin-top: 1px;
}
/* Your part — light, understated */
.split-card.you { background: var(--cream-warm); }
.split-card.you .split-eyebrow { color: var(--ink-faint); }
.split-card.you h3 { color: var(--ink); }
.split-card.you li { color: var(--ink-soft); }
.split-card.you li + li { border-top-color: var(--line); }
.split-card.you li::before { background: rgba(26, 122, 109, 0.12); color: var(--teal); }
/* Sandbar's part — dark, emphasized (carries the load) */
.split-card.us {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.split-card.us::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(at 88% 12%, rgba(163, 213, 201, 0.10) 0%, transparent 55%),
    radial-gradient(at 0% 100%, rgba(26, 122, 109, 0.16) 0%, transparent 55%);
}
.split-card.us > * { position: relative; z-index: 1; }
.split-card.us .split-eyebrow { color: var(--teal-light); }
.split-card.us h3 { color: var(--cream); }
.split-card.us li { color: rgba(250, 249, 246, 0.82); }
.split-card.us li + li { border-top-color: rgba(255, 255, 255, 0.12); }
.split-card.us li::before { background: rgba(163, 213, 201, 0.18); color: var(--teal-light); }
@media (max-width: 760px) {
  .split { grid-template-columns: 1fr; }
}

/* ---------- Outcomes / pillars (2x2) ---------- */
.outcomes {
  background: var(--cream-warm);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px 64px;
}
.outcome-item h3 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 21px;
  letter-spacing: -0.015em;
  color: var(--ink);
  line-height: 1.3;
  margin-bottom: 12px;
  display: flex;
  align-items: baseline;
  gap: 11px;
}
.outcome-item h3 .marker {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  background: var(--teal);
  border-radius: 50%;
  position: relative;
  top: -2px;
}
.outcome-item p { color: var(--ink-soft); font-size: 16px; line-height: 1.65; }

/* ---------- Persona value charts ---------- */
.persona-list { display: flex; flex-direction: column; }
.persona {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 40px;
  padding: 34px 0;
  border-top: 1px solid var(--line);
}
.persona:first-child { border-top: none; padding-top: 0; }
.persona:last-child { padding-bottom: 0; }
.persona h3 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.015em;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 8px;
}
.persona .persona-who { font-size: 16px; color: var(--ink-soft); line-height: 1.55; }
.persona ul.tight { margin: 0; }
.persona .persona-value-label {
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}
@media (max-width: 760px) {
  .persona { grid-template-columns: 1fr; gap: 16px; }
}

/* ---------- Trust band (dark treatment) ---------- */
.trust-band {
  background: var(--ink);
  color: var(--cream);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.trust-band.compact { padding: 88px 0; }
.trust-band::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(at 90% 30%, rgba(163, 213, 201, 0.06) 0%, transparent 50%),
    radial-gradient(at 10% 70%, rgba(26, 122, 109, 0.10) 0%, transparent 50%);
  pointer-events: none;
}
.trust-band .container { position: relative; z-index: 2; }
.trust-band .section-label { color: var(--teal-light); }
.trust-band h2 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 44px;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--cream);
  max-width: 880px;
  margin-bottom: 22px;
}
.trust-band h2.small { font-size: 36px; }
.trust-band h2 .accent { color: var(--teal-light); }
.trust-band p { font-size: 18px; color: var(--teal-light); max-width: 720px; }

/* ---------- Two columns ---------- */
.cols {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 72px;
}
.col h3 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 16px;
}
.col .col-block + .col-block h3 { margin-top: 0; }
.col-block { margin-bottom: 36px; }
.col-block:last-child { margin-bottom: 0; }
.col p { color: var(--ink-soft); font-size: 16px; line-height: 1.65; }
.col p strong { color: var(--ink); font-weight: 600; }

ul.tight { list-style: none; margin: 0 0 4px; }
ul.tight li {
  font-size: 16px;
  color: var(--ink-soft);
  padding-left: 18px;
  position: relative;
  margin-bottom: 10px;
  line-height: 1.55;
}
ul.tight li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--teal);
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 9px;
}
ul.tight li strong { color: var(--ink); font-weight: 600; }
.col-footnote { font-size: 15px; color: var(--ink-faint); margin-top: 14px; line-height: 1.55; }

/* ---------- Pull quote ---------- */
.pull-quote {
  border-left: 4px solid var(--teal);
  padding: 8px 0 8px 28px;
  margin: 0 auto;
  max-width: 860px;
  font-family: 'DM Sans', sans-serif;
  font-style: italic;
  font-weight: 500;
  font-size: 28px;
  line-height: 1.35;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.pull-quote .attrib {
  display: block;
  font-style: normal;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  color: var(--teal);
  margin-top: 18px;
}

/* ---------- Boxed numbered list ---------- */
.threeline {
  background: var(--cream-warm);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 40px 44px;
  max-width: 860px;
}
.threeline h2 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 28px;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 24px;
}
.threeline ol { list-style: none; counter-reset: tl; }
.threeline li {
  counter-increment: tl;
  font-size: 18px;
  color: var(--ink-soft);
  padding: 14px 0 14px 44px;
  position: relative;
  border-top: 1px solid var(--line);
}
.threeline li:first-child { border-top: none; }
.threeline li::before {
  content: counter(tl);
  position: absolute;
  left: 0;
  top: 14px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--teal);
}

/* ---------- Contact / final CTA block ---------- */
.contact {
  background: var(--cream-warm);
  border-top: 1px solid var(--line);
}
.contact-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 48px;
  flex-wrap: wrap;
}
.contact-left .section-label { margin-bottom: 14px; }
.contact-left .name {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 28px;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 6px;
}
.contact-left .contact-lines,
.contact-left .contact-body {
  font-size: 17px;
  color: var(--ink-soft);
  line-height: 1.6;
  max-width: 480px;
  margin-top: 4px;
}
.contact-left .contact-lines a,
.contact-left .contact-body a {
  color: var(--teal);
  text-decoration: none;
  font-weight: 600;
}
.contact-left .contact-lines a:hover,
.contact-left .contact-body a:hover { text-decoration: underline; }
.contact-tagline {
  font-family: 'DM Sans', sans-serif;
  font-style: italic;
  font-size: 19px;
  line-height: 1.45;
  color: var(--ink);
  text-align: right;
  max-width: 320px;
}

/* ---------- FAQ ---------- */
.faq {
  background: var(--cream-warm);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.faq-list { display: flex; flex-direction: column; max-width: 920px; }
.faq-item { border-top: 1px solid var(--line-strong); padding: 28px 0; }
.faq-item:last-child { border-bottom: 1px solid var(--line-strong); }
.faq-question {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--ink);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.faq-answer { color: var(--ink-soft); font-size: 16px; line-height: 1.7; }

/* ---------- Final CTA ---------- */
.final-cta { text-align: center; padding: 128px 0 144px; }
.final-cta h2 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 52px;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 22px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.final-cta p {
  color: var(--ink-soft);
  font-size: 18px;
  margin-bottom: 30px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.final-cta .cta-row { justify-content: center; }

/* ---------- Footer ---------- */
footer {
  background: var(--ink);
  color: var(--cream);
  padding: 64px 0 40px;
  position: relative;
  z-index: 2;
}
footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 240 240' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.06 0'/%3E%3C/filter%3E%3Crect width='240' height='240' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.4;
  pointer-events: none;
}
footer .container { position: relative; z-index: 2; }
.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 32px;
}
.footer-logo .logo-text .bold { color: var(--cream); }
.footer-logo .logo-text .light { color: var(--teal-light); }
.footer-logo .mark .back { background: var(--teal-light); opacity: 0.28; }
.footer-logo .mark .front { background: var(--teal-light); }
.footer-links { display: flex; gap: 32px; flex-wrap: wrap; }
.footer-links a {
  font-weight: 500;
  font-size: 14px;
  color: var(--cream);
  opacity: 0.7;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.footer-links a:hover { opacity: 1; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--cream);
  opacity: 0.5;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
  flex-wrap: wrap;
  gap: 16px;
}

/* ---------- Waitlist / email capture ---------- */
.waitlist { width: 100%; max-width: 480px; }
.final-cta .waitlist { margin: 0 auto; }
.waitlist-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: stretch;
}
.waitlist-input {
  flex: 1 1 220px;
  min-width: 0;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 15px;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  padding: 14px 16px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.waitlist-input::placeholder { color: var(--ink-faint); }
.waitlist-input:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(26, 122, 109, 0.12);
}
.waitlist .btn-primary { border: 1px solid var(--ink); cursor: pointer; white-space: nowrap; }
.waitlist-note {
  font-size: 13.5px;
  color: var(--ink-faint);
  margin-top: 12px;
  line-height: 1.5;
}
.waitlist-note a { color: var(--teal); text-decoration: none; font-weight: 600; }
.waitlist-note a:hover { text-decoration: underline; }
.waitlist.is-done .waitlist-row,
.waitlist.is-done .waitlist-note { display: none; }
.waitlist-success {
  display: none;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 17px;
  letter-spacing: -0.01em;
  color: var(--teal-deep);
  padding: 14px 0;
}
.waitlist.is-done .waitlist-success { display: block; }
.final-cta .waitlist-success { text-align: center; }

/* ---------- Animations ---------- */
@keyframes rise {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(26, 122, 109, 0.45); }
  70% { box-shadow: 0 0 0 7px rgba(26, 122, 109, 0); }
  100% { box-shadow: 0 0 0 0 rgba(26, 122, 109, 0); }
}
@keyframes fade { from { opacity: 0; } to { opacity: 1; } }

/* ---------- Hero / CTA buttons ---------- */
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.hero-cta-note { font-size: 13.5px; color: var(--ink-faint); margin-top: 14px; }
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Source Sans 3', sans-serif; font-weight: 600; font-size: 15px;
  color: var(--ink); background: transparent;
  padding: 15px 24px; border: 1px solid var(--line-strong); border-radius: 4px;
  text-decoration: none; cursor: pointer; transition: all 0.2s ease;
}
.btn-outline:hover { border-color: var(--teal); color: var(--teal); background: rgba(26, 122, 109, 0.05); transform: translateY(-1px); }
.btn-outline .arrow { transition: transform 0.2s ease; }
.btn-outline:hover .arrow { transform: translateX(4px); }

/* ---------- Early-access modal (email capture) ---------- */
.modal[hidden] { display: none; }
.modal { position: fixed; inset: 0; z-index: 200; display: flex; align-items: center; justify-content: center; padding: 24px; }
.modal-overlay { position: absolute; inset: 0; background: rgba(28, 28, 40, 0.55); backdrop-filter: blur(3px); animation: fade 0.2s ease-out; }
.modal-card {
  position: relative; z-index: 1; width: 100%; max-width: 440px;
  background: var(--cream); border: 1px solid var(--stone); border-radius: 16px;
  padding: 40px 34px 34px; box-shadow: 0 24px 70px rgba(28, 28, 40, 0.28);
  animation: rise 0.3s ease-out;
}
.modal-close { position: absolute; top: 12px; right: 16px; background: none; border: none; font-size: 28px; line-height: 1; color: var(--ink-faint); cursor: pointer; }
.modal-close:hover { color: var(--ink); }
.modal-card .eyebrow { color: var(--teal); font-family: 'DM Sans', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase; margin-bottom: 12px; }
.modal-card h2 { font-family: 'DM Sans', sans-serif; font-weight: 700; font-size: 26px; letter-spacing: -0.02em; color: var(--ink); line-height: 1.15; margin-bottom: 8px; }
.modal-sub { color: var(--ink-soft); font-size: 15.5px; line-height: 1.5; margin-bottom: 22px; }
.modal-card .waitlist { max-width: none; }
.modal-card .waitlist-row { flex-direction: column; align-items: stretch; gap: 10px; }
.modal-card .waitlist-input { flex: 1 1 auto; width: 100%; font-size: 16px; padding: 14px 16px; background: #fff; }
.modal-card .waitlist .btn-primary { width: 100%; justify-content: center; }
.modal-card .waitlist-success { text-align: center; margin-top: 4px; }
body.modal-open { overflow: hidden; }
@media (max-width: 560px) {
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn-primary, .hero-cta .btn-outline { justify-content: center; width: 100%; }
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 56px 0 72px;
  }
  .hero h1 { font-size: 46px; }
  .hero-visual { height: 400px; margin-top: 8px; }
  .benefits-grid { grid-template-columns: 1fr; gap: 40px; }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .outcomes-grid { grid-template-columns: 1fr; gap: 40px; }
  .cols { grid-template-columns: 1fr; gap: 48px; }
  .compare { grid-template-columns: 1fr; }
  .layer { flex-direction: column; gap: 8px; }
  .layer-title { min-width: 0; }
  .section-title { font-size: 34px; }
  .section-intro { font-size: 17px; margin-bottom: 44px; }
  .trust-band h2 { font-size: 32px; }
  .trust-band h2.small { font-size: 28px; }
  .pull-quote { font-size: 23px; }
  .final-cta h2 { font-size: 40px; }
  section { padding: 80px 0; }
}

@media (max-width: 600px) {
  .container { padding: 0 22px; }
  .hero h1 { font-size: 38px; }
  .cta-row { flex-direction: column; align-items: flex-start; gap: 10px; }
  .final-cta .cta-row { align-items: center; }
  .btn-primary { width: auto; }
  .msg-1, .msg-2, .msg-3 {
    position: relative;
    width: 100%;
    top: auto !important;
    right: auto !important;
    left: auto !important;
    bottom: auto !important;
    margin-bottom: 14px;
  }
  .hero-visual { height: auto; }
  .final-cta h2 { font-size: 32px; }
  .section-title { font-size: 28px; }
  .trust-band h2 { font-size: 26px; }
  .pull-quote { font-size: 20px; }
  .threeline { padding: 28px 24px; }
  .steps { grid-template-columns: 1fr; }
  .contact-grid { flex-direction: column; align-items: flex-start; gap: 32px; }
  .contact-tagline { text-align: left; }
}

/* ============================================================
   Payvider band — "coordinated care is half the model"
   Reused across every page so the payvider thread is never lost.
   ============================================================ */
.payvider-band {
  background: var(--cream-warm);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.payvider-halves {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: stretch;
  gap: 24px;
  margin-top: 30px;
}
.pv-half {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 26px 28px;
}
.pv-half.pv-next { border-color: var(--teal-light); }
.pv-tag {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 10px;
}
.pv-half.pv-next .pv-tag { color: var(--teal); }
.pv-half h3 { font-size: 21px; letter-spacing: -0.02em; margin-bottom: 8px; }
.pv-half p { color: var(--ink-soft); font-size: 16px; margin: 0; }
.pv-plus {
  align-self: center;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 30px;
  font-weight: 700;
  color: var(--teal);
}
.pv-note { margin-top: 24px; font-size: 18px; color: var(--ink); }
.pv-note strong { color: var(--teal); }

/* ============================================================
   DMV band — "Built in the DMV, for the DMV" + stylized map
   ============================================================ */
.dmv-band { background: var(--ink); color: var(--cream); }
.dmv-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.dmv-band .section-label { color: var(--teal-light); }
.dmv-band h2 {
  color: var(--cream);
  font-size: 40px;
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin-bottom: 16px;
}
.dmv-band p { color: rgba(250, 249, 246, 0.78); font-size: 17px; margin: 0; }
.dmv-points { list-style: none; margin: 24px 0 0; padding: 0; }
.dmv-points li {
  position: relative;
  padding: 8px 0 8px 26px;
  color: var(--cream);
  font-size: 16px;
}
.dmv-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--teal);
}
.dmv-map-wrap { display: flex; justify-content: center; }
.dmv-map { width: 100%; max-width: 460px; height: auto; }

@media (max-width: 860px) {
  .payvider-halves { grid-template-columns: 1fr; gap: 14px; margin-top: 22px; }
  .pv-plus { transform: rotate(90deg); padding: 2px 0; }
  .dmv-grid { grid-template-columns: 1fr; gap: 36px; }
  .dmv-band h2 { font-size: 30px; }
  .dmv-map-wrap { order: -1; }
}

/* ============================================================
   Member-app preview emphasis — a live differentiator, so make
   it stand out in the nav and the hero.
   ============================================================ */
.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  flex: none;
  animation: livePulse 2.2s ease-in-out infinite;
}
@keyframes livePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.35; transform: scale(0.78); }
}

/* Nav: "See the app" as a teal pill so it reads as a live demo */
.nav-app {
  color: var(--teal);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 13px;
  border: 1px solid var(--teal-light);
  border-radius: 999px;
}
.nav-app:hover { background: var(--teal); color: var(--cream); border-color: var(--teal); }

/* Hero: promote "Preview the member app" to a filled teal button */
.btn-app {
  background: var(--teal);
  color: var(--cream);
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 600;
  font-size: 15px;
  padding: 15px 24px;
  border-radius: 4px;
  text-decoration: none;
  border: 1px solid var(--teal);
  display: inline-flex;
  align-items: center;
  gap: 9px;
  transition: all 0.2s ease;
}
.btn-app:hover { background: var(--teal-deep); border-color: var(--teal-deep); transform: translateY(-1px); }
.btn-app .arrow { transition: transform 0.2s ease; }
.btn-app:hover .arrow { transform: translateX(4px); }

@media (max-width: 820px) {
  .nav-app {
    border: none;
    border-radius: 0;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    justify-content: flex-start;
  }
  .nav-app:hover { background: none; color: var(--teal); }
}

/* ============================================================
   Contact form
   ============================================================ */
/* Solid white panel so the form reads as a clear, contained card
   against the cream page background (not floating inputs). */
.contact-card {
  background: #fff;
  box-shadow: 0 1px 2px rgba(28, 28, 40, 0.05), 0 14px 40px rgba(28, 28, 40, 0.11);
}
.contact-card input,
.contact-card textarea { background: var(--cream); }
.contact-form .form-field { margin-bottom: 16px; }
.contact-form label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-soft);
  margin-bottom: 6px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 15px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  padding: 12px 14px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.contact-form textarea { resize: vertical; min-height: 96px; }
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(26, 122, 109, 0.12);
}
.contact-form .btn-primary { width: 100%; justify-content: center; margin-top: 4px; }
.contact-form .cf-hp { display: none; }
.form-status { margin: 14px 0 0; font-size: 14.5px; line-height: 1.5; }
.form-status.is-success { color: var(--teal-deep); }
.form-status.is-error { color: #b3261e; }
