:root {
  --ink: #071735;
  --muted: #586176;
  --soft: #eef2fb;
  --soft-2: #f7f8fc;
  --line: rgba(7, 23, 53, 0.1);
  --coral: #ff513f;
  --coral-dark: #ef3d2e;
  --blue: #5b73ff;
  --purple: #9c85ff;
  --white: #ffffff;
  --shadow: 0 22px 70px rgba(7, 23, 53, 0.1);
  --shadow-strong: 0 32px 90px rgba(7, 23, 53, 0.18);
  --radius-xl: 36px;
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --max: 1180px;
  --max-wide: 1280px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 15% 10%, rgba(91, 115, 255, 0.12), transparent 28%),
    radial-gradient(circle at 85% 0%, rgba(255, 81, 63, 0.10), transparent 28%),
    linear-gradient(180deg, #fbfcff 0%, #ffffff 35%, #f6f8fe 100%);
  line-height: 1.5;
}

a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
img { max-width: 100%; display: block; }

.site-shell { overflow: hidden; }
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  max-width: calc(var(--max) + 48px);
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 24px;
  backdrop-filter: blur(18px);
  background: rgba(251, 252, 255, 0.78);
  border-bottom: 1px solid rgba(7, 23, 53, 0.06);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  font-size: 20px;
  letter-spacing: -0.03em;
}
.brand-mark { width: 48px; height: 36px; object-fit: contain; }
.nav {
  display: flex;
  gap: 24px;
  margin-left: auto;
  color: var(--muted);
  font-weight: 700;
  font-size: 14px;
}
.nav a:hover { color: var(--ink); }
.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--ink);
  color: white;
  font-weight: 800;
  font-size: 14px;
  box-shadow: 0 10px 30px rgba(7, 23, 53, 0.15);
}
.menu-button {
  display: none;
  margin-left: auto;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-size: 28px;
  cursor: pointer;
}
.section-pad {
  max-width: var(--max);
  margin: 0 auto;
  padding: 68px 24px;
}
.narrow { max-width: 850px; }
.hero {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 42px;
  align-items: center;
  min-height: min(660px, calc(100vh - 96px));
  padding-top: 38px;
  padding-bottom: 44px;
}
.eyebrow,
.section-kicker,
.mini-label {
  text-transform: uppercase;
  color: var(--coral);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  margin: 0 0 14px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 12px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 8px 30px rgba(7, 23, 53, 0.06);
}
.pulse-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 6px rgba(255, 81, 63, 0.12);
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  font-size: clamp(50px, 6.2vw, 86px);
  line-height: 0.95;
  letter-spacing: -0.075em;
  margin: 18px 0 18px;
  max-width: 680px;
}
h1 span {
  color: var(--coral);
}
h2 {
  font-size: clamp(36px, 4.6vw, 66px);
  line-height: 1;
  letter-spacing: -0.055em;
  margin-bottom: 22px;
}
h3 {
  font-size: 22px;
  line-height: 1.12;
  letter-spacing: -0.035em;
  margin-bottom: 10px;
}
.hero-lead {
  font-size: 20px;
  color: var(--muted);
  max-width: 600px;
  margin-bottom: 24px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 15px 22px;
  border-radius: 18px;
  font-weight: 900;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.button:hover { transform: translateY(-2px); }
.primary {
  background: linear-gradient(135deg, var(--coral), #ff6a54);
  color: white;
  box-shadow: 0 18px 40px rgba(255, 81, 63, 0.28);
}
.secondary {
  background: white;
  color: var(--coral);
  border-color: rgba(255, 81, 63, 0.42);
  box-shadow: 0 12px 30px rgba(7, 23, 53, 0.06);
}
.wide { width: 100%; }
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}
.trust-strip span {
  background: rgba(255,255,255,0.72);
  border: 1px solid var(--line);
  padding: 10px 12px;
  border-radius: 999px;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 520px;
  margin-top: 18px;
}
.hero-stats div {
  background: rgba(255,255,255,0.74);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 14px 16px;
  box-shadow: 0 12px 34px rgba(7, 23, 53, 0.06);
}
.hero-stats strong {
  display: block;
  font-size: 22px;
  line-height: 1;
  letter-spacing: -0.04em;
}
.hero-stats span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  margin-top: 5px;
}

.hero-visual {
  position: relative;
  isolation: isolate;
}
.hero-visual::before {
  content: "";
  position: absolute;
  inset: 7% 8%;
  border-radius: 45px;
  background: linear-gradient(135deg, rgba(91, 115, 255, 0.18), rgba(255, 81, 63, 0.16));
  filter: blur(40px);
  z-index: -1;
}
.hero-visual img {
  width: min(100%, 660px);
  margin-left: auto;
  border-radius: 34px;
  box-shadow: var(--shadow-strong);
}
.problem {
  text-align: center;
}
.problem p:not(.section-kicker) {
  color: var(--muted);
  font-size: 19px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.quote-card {
  margin: 30px auto 0;
  background: var(--ink);
  color: white;
  width: min(100%, 720px);
  padding: 24px 28px;
  border-radius: 26px;
  font-size: clamp(24px, 3.2vw, 38px);
  font-weight: 950;
  letter-spacing: -0.055em;
  box-shadow: var(--shadow);
}
.quote-card span { color: #ffb3aa; display: inline-block; }
.section-head {
  max-width: 780px;
  margin-bottom: 30px;
}
.section-head p,
.trust .section-head > p { color: var(--muted); font-size: 18px; }
.split {
  max-width: none;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 32px;
}
.text-link {
  color: var(--coral);
  font-weight: 900;
  white-space: nowrap;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.step-card,
.category-grid article,
.trust-grid article,
.mini-card,
.message-list,
.campaign-card,
.fee-card,
.start-card,
.share-card {
  background: rgba(255,255,255,0.78);
  border: 1px solid var(--line);
  box-shadow: 0 18px 60px rgba(7, 23, 53, 0.07);
  backdrop-filter: blur(18px);
}
.step-card {
  border-radius: var(--radius-lg);
  padding: 26px;
  min-height: 210px;
}
.step-number {
  display: inline-flex;
  color: var(--coral);
  font-weight: 950;
  font-size: 13px;
  letter-spacing: .12em;
  margin-bottom: 26px;
}
.step-card p,
.category-grid p,
.mini-card p,
.message-list p,
.campaign-body p,
.fee-card p,
.start-card p,
.share p,
.trust-grid span,
.form-note {
  color: var(--muted);
}
.campaign-layout {
  display: grid;
  grid-template-columns: 1.05fr .65fr;
  gap: 22px;
  align-items: stretch;
}
.campaign-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.featured-campaign {
  display: grid;
  grid-template-columns: .8fr 1fr;
  min-height: 520px;
}
.campaign-photo {
  position: relative;
  min-height: 420px;
  background:
    linear-gradient(180deg, rgba(7, 23, 53, 0.02), rgba(7, 23, 53, 0.52)),
    url('assets/manyforone-mobile-mockup.png');
  background-size: 220%;
  background-position: 79% 15%;
}
.verified-badge {
  position: absolute;
  top: 22px;
  left: 22px;
  background: rgba(255,255,255,0.92);
  color: #2275ff;
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 950;
  box-shadow: 0 10px 30px rgba(7, 23, 53, 0.16);
}
.campaign-body { padding: 34px; }
.campaign-body h3 { font-size: clamp(32px, 4vw, 48px); }
.progress-card {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  margin: 20px 0;
  background: white;
}
.progress-top,
.receipt div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.progress-top span { color: var(--muted); }
.progress-bar {
  height: 10px;
  background: #e8ebf2;
  border-radius: 999px;
  overflow: hidden;
  margin: 14px 0;
}
.progress-bar span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--coral), #ff745d);
  border-radius: 999px;
}
.supporters { color: var(--muted); font-weight: 800; }
.donate-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin: 18px 0 12px;
}
.donate {
  border: 1px solid rgba(255, 81, 63, 0.45);
  color: var(--coral);
  background: white;
  border-radius: 16px;
  padding: 14px 12px;
  font-weight: 950;
  cursor: pointer;
}
.donate.active {
  background: var(--coral);
  color: white;
  box-shadow: 0 12px 30px rgba(255, 81, 63, 0.26);
}
.fee-note {
  font-size: 14px;
  margin: 12px 0 18px;
}
.campaign-side {
  display: grid;
  gap: 22px;
}
.mini-card,
.message-list { border-radius: var(--radius-lg); padding: 28px; }
.message-list h3 { margin-bottom: 20px; }
.message {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}
.message span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  background: var(--soft);
  border-radius: 50%;
}
.message p { margin: 0; font-weight: 800; }
.campaign-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 22px;
}
.preview-campaign {
  background: rgba(255,255,255,0.82);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: 0 18px 60px rgba(7, 23, 53, 0.07);
  backdrop-filter: blur(18px);
}
.preview-icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: var(--soft);
  font-size: 23px;
  margin-bottom: 18px;
}
.preview-progress {
  height: 8px;
  background: #e8ebf2;
  border-radius: 999px;
  overflow: hidden;
  margin: 18px 0 12px;
}
.preview-progress span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--coral), #ff745d);
}
.preview-meta {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 14px;
}
.preview-meta strong { color: var(--ink); }
.preview-campaign a {
  color: var(--coral);
  font-weight: 950;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.category-grid article {
  border-radius: var(--radius-lg);
  padding: 26px;
}
.category-grid span {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  font-size: 24px;
  border-radius: 18px;
  background: var(--soft);
  margin-bottom: 22px;
}
.fee-card,
.start-card {
  border-radius: var(--radius-xl);
  padding: clamp(28px, 5vw, 58px);
  display: grid;
  grid-template-columns: 1fr .75fr;
  gap: 40px;
  align-items: center;
  background:
    radial-gradient(circle at 5% 10%, rgba(255, 81, 63, 0.10), transparent 30%),
    rgba(255,255,255,0.84);
}
.receipt {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: 0 16px 40px rgba(7, 23, 53, 0.08);
}
.receipt div { padding: 14px 0; border-bottom: 1px solid var(--line); }
.receipt div:last-child { border-bottom: 0; }
.receipt span { color: var(--muted); font-weight: 800; }
.receipt strong { font-size: 20px; }
.receipt .total strong { color: var(--coral); }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.trust-grid article {
  border-radius: var(--radius-md);
  padding: 24px;
  display: grid;
  gap: 8px;
}
.trust-grid strong { font-size: 18px; }
.share { text-align: center; }
.share-card {
  margin: 28px auto 0;
  border-radius: var(--radius-lg);
  padding: 28px;
  max-width: 680px;
}
.share-card p {
  font-size: 22px;
  color: var(--ink);
  font-weight: 850;
  letter-spacing: -0.03em;
}
.lead-form {
  background: white;
  border-radius: var(--radius-lg);
  padding: 24px;
  border: 1px solid var(--line);
  box-shadow: 0 16px 40px rgba(7, 23, 53, 0.08);
}
.lead-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
  margin-bottom: 14px;
}
.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 13px 14px;
  outline: none;
  background: #fbfcff;
  color: var(--ink);
}
.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: rgba(255, 81, 63, 0.55);
  box-shadow: 0 0 0 4px rgba(255, 81, 63, 0.1);
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.form-note { font-size: 12px; margin: 12px 0 0; }
.footer {
  max-width: var(--max);
  margin: 0 auto;
  padding: 34px 24px 48px;
  display: flex;
  align-items: center;
  gap: 22px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}
.footer p { margin: 0; }
.footer-links { margin-left: auto; display: flex; gap: 20px; font-weight: 800; }
.footer-brand { color: var(--ink); }
.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translate(-50%, 20px);
  opacity: 0;
  pointer-events: none;
  background: var(--ink);
  color: white;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 900;
  transition: opacity .2s ease, transform .2s ease;
  z-index: 999;
}
.toast.show { opacity: 1; transform: translate(-50%, 0); }


/* v4 layout refinements */
.problem.section-pad { padding-top: 54px; padding-bottom: 64px; }
.how.section-pad { padding-top: 58px; }
@media (min-width: 980px) {
  .hero-copy { transform: translateY(-4px); }
}

@media (max-width: 980px) {
  .nav, .nav-cta { display: none; }
  .menu-button { display: block; }
  .topbar.menu-open .nav {
    display: grid;
    position: absolute;
    left: 18px;
    right: 18px;
    top: 74px;
    padding: 18px;
    background: white;
    border: 1px solid var(--line);
    border-radius: 22px;
    box-shadow: var(--shadow);
  }
  .hero,
  .featured-campaign,
  .campaign-layout,
  .fee-card,
  .start-card,
  .split {
    grid-template-columns: 1fr;
  }
  .hero { min-height: auto; }
  .steps-grid,
  .category-grid,
  .campaign-preview-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-visual img { border-radius: 28px; }
}
@media (max-width: 640px) {
  .section-pad { padding: 68px 18px; }
  .topbar { padding: 14px 18px; }
  .brand { font-size: 18px; }
  .brand-mark { width: 42px; }
  .hero { gap: 34px; padding-top: 38px; }
  h1 { font-size: 58px; }
  h2 { font-size: 40px; }
  .hero-lead { font-size: 18px; }
  .hero-actions, .button { width: 100%; }
  .steps-grid,
  .category-grid,
  .campaign-preview-grid,
  .trust-grid,
  .hero-stats,
  .form-grid { grid-template-columns: 1fr; }
  .donate-row { grid-template-columns: repeat(2, 1fr); }
  .campaign-body { padding: 24px; }
  .campaign-photo { min-height: 300px; }
  .footer { display: grid; }
  .footer-links { margin-left: 0; }
}

/* v3 layout refinements: reduce first-screen height and remove excessive blank space on desktop */
@media (min-width: 981px) {
  .section-pad {
    padding-top: 68px;
    padding-bottom: 68px;
  }
  .hero {
    min-height: auto;
    padding-top: 42px;
    padding-bottom: 34px;
    gap: 42px;
    align-items: center;
  }
  h1 {
    font-size: clamp(52px, 5.6vw, 78px);
    margin-bottom: 18px;
  }
  .hero-lead {
    font-size: 19px;
    margin-bottom: 22px;
  }
  .hero-actions {
    margin-bottom: 20px;
  }
  .hero-stats {
    margin-top: 14px;
  }
  .hero-visual {
    display: flex;
    justify-content: center;
  }
  .hero-visual img {
    width: min(100%, 640px);
    max-height: 500px;
    object-fit: contain;
  }
  .problem {
    padding-top: 54px;
    padding-bottom: 56px;
  }
  .problem h2 {
    font-size: clamp(38px, 4vw, 56px);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
  }
  .problem p:not(.section-kicker) {
    font-size: 18px;
  }
  .quote-card {
    margin-top: 26px;
    padding: 24px 28px;
    font-size: clamp(28px, 3.4vw, 42px);
  }
  .how {
    padding-top: 64px;
  }
  .step-card {
    min-height: 210px;
    padding: 24px;
  }
  .step-number {
    margin-bottom: 24px;
  }
}

/* v5 product logic sections */
.hero-nominate {
  display: inline-flex;
  margin: -6px 0 18px;
  color: var(--coral);
  font-weight: 900;
}
.ways.section-pad { padding-top: 56px; }
.ways-grid,
.status-grid,
.faq-grid,
.forms-layout {
  display: grid;
  gap: 16px;
}
.ways-grid { grid-template-columns: repeat(3, 1fr); }
.forms-layout { grid-template-columns: repeat(2, minmax(0, 1fr)); align-items: start; }
.way-card,
.status-grid article,
.nominated-card,
.verification-layout > div,
.checklist-card,
.form-card,
.faq-grid article {
  background: rgba(255,255,255,0.82);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: 0 18px 60px rgba(7, 23, 53, 0.07);
  backdrop-filter: blur(18px);
}
.way-card.highlight {
  background:
    radial-gradient(circle at 0 0, rgba(255, 81, 63, 0.12), transparent 34%),
    rgba(255,255,255,0.90);
}
.way-icon {
  width: 54px;
  height: 54px;
  border-radius: 19px;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: #fff;
  font-weight: 950;
  margin-bottom: 18px;
  box-shadow: 0 14px 34px rgba(7, 23, 53, 0.18);
}
.way-card a { color: var(--coral); font-weight: 950; }
.status-grid { grid-template-columns: repeat(3, 1fr); }
.status-grid article span {
  display: inline-flex;
  color: var(--coral);
  font-weight: 950;
  letter-spacing: .12em;
  margin-bottom: 18px;
}
.status-grid article strong {
  display: block;
  font-size: 22px;
  letter-spacing: -0.04em;
  margin-bottom: 8px;
}
.status-grid article p,
.form-intro,
.faq-grid p { color: var(--muted); }
.campaign-status-row {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
}
.status-pill {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 7px 10px;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 950;
}
.status-pill.live { background: rgba(36, 186, 111, 0.12); color: #0e8a4a; }
.status-pill.nominated { background: rgba(255, 81, 63, 0.12); color: var(--coral); }
.nominated-card h3 { font-size: 28px; }
.nominated-actions { display: grid; gap: 10px; margin: 18px 0 12px; }
.ghost {
  background: rgba(7, 23, 53, 0.04);
  color: var(--ink);
  border-color: var(--line);
  box-shadow: none;
}
.verification-layout {
  display: grid;
  grid-template-columns: 1fr .85fr;
  gap: 22px;
  align-items: stretch;
}
.verification-layout > div:first-child {
  background:
    radial-gradient(circle at 0% 0%, rgba(91, 115, 255, 0.12), transparent 30%),
    rgba(255,255,255,0.82);
}
.rules-card {
  margin-top: 26px;
  background: var(--ink);
  color: white;
  padding: 24px;
  border-radius: 24px;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.08;
  letter-spacing: -0.055em;
  font-weight: 950;
}
.rules-card span { color: #ffb3aa; }
.checklist-card ul {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 10px;
}
.checklist-card li {
  position: relative;
  padding-left: 30px;
  color: var(--muted);
  font-weight: 780;
}
.checklist-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--coral);
  font-weight: 950;
}
.form-card .lead-form { margin-top: 18px; }
.faq-grid { grid-template-columns: repeat(3, 1fr); }
.faq-grid h3 { font-size: 21px; }
@media (min-width: 981px) {
  .ways.section-pad,
  .status.section-pad,
  .verification.section-pad,
  .faq.section-pad { padding-top: 58px; padding-bottom: 58px; }
  .compact-steps .step-card { min-height: 230px; }
}
@media (max-width: 980px) {
  .ways-grid,
  .status-grid,
  .verification-layout,
  .forms-layout,
  .faq-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .hero-nominate { margin-bottom: 16px; }
  .way-card,
  .status-grid article,
  .nominated-card,
  .verification-layout > div,
  .checklist-card,
  .form-card,
  .faq-grid article { padding: 22px; }
  .rules-card { font-size: 25px; }
}

/* v6 live Airtable forms */
.form-checklist {
  display: grid;
  gap: 10px;
  margin: 22px 0 24px;
  padding: 0;
  list-style: none;
}
.form-checklist li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
  font-weight: 700;
}
.form-checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--coral);
  font-weight: 900;
}
.live-form-card .status-pill {
  margin-bottom: 16px;
}
