/* PEMS Landing — Dark + signal blue */

:root {
  --bg: #0B0E13;
  --surface: #10141B;
  --fill: #1A1F28;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.16);
  --text: #ECEEF2;
  --text-2: #A9B0BD;
  --text-3: #8A92A1;
  --faint: #6B7280;
  --blue: #3B82F6;
  --blue-hover: #60A5FA;
  --blue-light: #93C5FD;
  --blue-tint: rgba(59, 130, 246, 0.14);
  --green: #34D399;
  --green-tint: rgba(52, 211, 153, 0.14);
  --amber: #F59E0B;
  --amber-tint: rgba(245, 158, 11, 0.14);
  --red: #F87171;
  --font: 'Geist', system-ui, sans-serif;
  --mono: 'Geist Mono', ui-monospace, monospace;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; }

.wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ── Buttons ─────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 40px;
  padding: 0 16px;
  border-radius: 8px;
  font-family: var(--font);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: -0.005em;
  cursor: pointer;
  text-decoration: none;
  border: none;
  transition: background 120ms ease, border-color 120ms ease, color 120ms ease;
}

.btn-primary { background: var(--blue); color: #0B0E13; font-weight: 600; }
.btn-primary:hover { background: var(--blue-hover); }

.btn-outline { background: transparent; color: var(--blue); border: 1px solid var(--border-strong); }
.btn-outline:hover { border-color: var(--blue); }

.btn-text { background: transparent; color: var(--blue); }
.btn-text:hover { color: var(--blue-hover); }

.btn-compact { height: 32px; font-size: 13px; }
.btn-block { width: 100%; }

/* ── Chips & eyebrows ────────────────────────────────── */

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 12px 5px 8px;
  border-radius: 99px;
  background: var(--blue-tint);
  color: var(--blue);
  font-size: 12px;
  font-weight: 600;
}

.chip .dot {
  width: 6px;
  height: 6px;
  border-radius: 99px;
  background: var(--blue);
}

.eyebrow {
  font-size: 12px;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

/* ── Nav ─────────────────────────────────────────────── */

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(16, 20, 27, 0.75);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 32px;
  max-width: 1280px;
  margin: 0 auto;
}

.nav-left { display: flex; align-items: center; gap: 48px; }

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo img { height: 28px; width: auto; display: block; }

.logo span {
  font-weight: 700;
  letter-spacing: -0.02em;
  font-size: 20px;
  color: var(--text);
}

.nav-links { display: flex; gap: 4px; }

.nav-links a {
  padding: 8px 14px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 14px;
  color: var(--text-2);
  transition: color 120ms ease, background 120ms ease;
}

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

.nav-links a.active {
  font-weight: 600;
  color: var(--blue);
  background: var(--blue-tint);
}

.nav-actions { display: flex; align-items: center; gap: 12px; }

.nav-actions .login {
  font-size: 14px;
  color: var(--text-2);
  text-decoration: none;
}

.nav-actions .login:hover { color: var(--text); }

/* ── Hero ────────────────────────────────────────────── */

.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  background-image:
    radial-gradient(circle at 85% 0%, rgba(59, 130, 246, 0.12), transparent 55%),
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: auto, 64px 64px, 64px 64px;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: center;
  padding: 88px 0 96px;
}

.hero h1 {
  font-weight: 700;
  font-size: 60px;
  line-height: 1.04;
  letter-spacing: -0.03em;
  margin: 20px 0;
}

.hero h1 em {
  font-style: normal;
  color: var(--blue);
}

.hero .lede {
  font-size: 18px;
  line-height: 1.55;
  color: var(--text-2);
  margin: 0;
  max-width: 520px;
  text-wrap: pretty;
}

.hero-ctas { display: flex; gap: 12px; margin-top: 32px; }

.trust {
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.trust-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--faint);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.trust-logos {
  display: flex;
  gap: 36px;
  align-items: center;
  opacity: 0.7;
}

.trust-logos span {
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.06em;
  color: var(--text-2);
}

/* Product preview */

.preview { position: relative; }

.preview-glow {
  position: absolute;
  top: 24px;
  left: 24px;
  right: -16px;
  bottom: -16px;
  background: var(--blue-tint);
  border-radius: 14px;
  opacity: 0.6;
}

.preview-frame {
  position: relative;
  background: var(--surface);
  border-radius: 14px;
  border: 1px solid var(--border);
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.6);
  overflow: hidden;
}

.preview-frame img { width: 100%; display: block; }

.float-note {
  position: absolute;
  z-index: 4;
  width: 280px;
  display: flex;
  gap: 12px;
  padding: 16px;
  border-radius: 8px;
  background: #151A23;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.45));
}

.float-note.warning { top: -16px; right: -20px; border: 1px solid rgba(245, 158, 11, 0.35); }
.float-note.success { bottom: -20px; left: -20px; width: 240px; border: 1px solid rgba(52, 211, 153, 0.35); }

.float-note .icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 99px;
  color: #0B0E13;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 12px;
}

.float-note.warning .icon { background: var(--amber); }
.float-note.success .icon { background: var(--green); }

.float-note .note-title { font-weight: 600; font-size: 14px; margin-bottom: 2px; }
.float-note .note-body { font-size: 13px; color: var(--text-2); line-height: 1.45; }

/* ── Sections ────────────────────────────────────────── */

section { border-bottom: 1px solid var(--border); }

.section-pad { padding: 96px 0; }

.section-head-split {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
  margin-bottom: 64px;
}

.section-head-split h2 {
  font-weight: 700;
  font-size: 40px;
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin: 0;
}

.section-head-split .body {
  padding-top: 44px;
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-2);
  margin: 0;
  text-wrap: pretty;
}

.section-head-center {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}

.section-head-center h2 {
  font-weight: 700;
  font-size: 44px;
  line-height: 1.06;
  letter-spacing: -0.03em;
  margin: 0 0 16px;
}

.section-head-center p {
  font-size: 17px;
  line-height: 1.55;
  color: var(--text-2);
  margin: 0;
}

/* ── Problem ─────────────────────────────────────────── */

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 64px;
}

.stat-card {
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
}

.stat-card .value {
  font-weight: 700;
  font-size: 56px;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--blue);
}

.stat-card p {
  font-size: 15px;
  line-height: 1.5;
  color: var(--text-2);
  margin: 18px 0 0;
  text-wrap: pretty;
}

.causes {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
}

.causes h3 {
  font-weight: 700;
  font-size: 24px;
  margin: 0;
  line-height: 1.2;
  letter-spacing: -0.015em;
}

.causes .label {
  font-size: 12px;
  font-weight: 700;
  color: var(--faint);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.cause-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 32px;
}

.cause {
  display: grid;
  grid-template-columns: 32px 1fr;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

.cause .num {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--blue);
  font-weight: 600;
}

.cause .text { font-size: 15px; line-height: 1.45; }

/* ── Features ────────────────────────────────────────── */

.pillar {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: center;
  padding: 40px;
  background: var(--surface);
  border-radius: 14px;
  border: 1px solid var(--border);
  margin-bottom: 20px;
}

.pillar.flip { grid-template-columns: 1.2fr 1fr; }

.pillar-tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 99px;
  background: var(--blue-tint);
  margin-bottom: 16px;
  font-size: 11px;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: 0.04em;
}

.pillar h3 {
  font-weight: 700;
  font-size: 32px;
  line-height: 1.12;
  letter-spacing: -0.022em;
  margin: 0 0 14px;
}

.pillar .desc {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-2);
  margin: 0 0 20px;
  text-wrap: pretty;
}

.checklist { list-style: none; padding: 0; margin: 0; }

.checklist li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 8px 0;
  font-size: 14px;
}

.checklist svg { flex-shrink: 0; margin-top: 1px; }

.screenshot {
  background: var(--surface);
  border-radius: 8px;
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: 0 16px 40px -20px rgba(0, 0, 0, 0.55);
}

.screenshot img { width: 100%; display: block; }

.screenshot figcaption {
  padding: 10px 14px;
  border-top: 1px solid var(--border);
  background: var(--fill);
  font-size: 12px;
  color: var(--text-2);
  letter-spacing: 0.01em;
}

.integrations {
  margin-top: 48px;
  padding: 24px 32px;
  background: var(--surface);
  border-radius: 14px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.integrations .label { font-size: 13px; font-weight: 600; color: var(--text-2); }

.integrations .logos { display: flex; gap: 36px; align-items: center; flex-wrap: wrap; }

.integrations .logos span { font-weight: 600; font-size: 14px; color: var(--text-2); }

/* ── Health Check ────────────────────────────────────── */

.health {
  background: radial-gradient(ellipse at 50% 0%, rgba(59, 130, 246, 0.10), transparent 60%);
}

.health-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}

.health h2 {
  font-weight: 700;
  font-size: 48px;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 20px 0;
}

.health h2 em { font-style: normal; color: var(--blue-light); }

.health .lede {
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-2);
  margin: 0 0 28px;
  max-width: 520px;
  text-wrap: pretty;
}

.health-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 520px;
}

.health-metrics > div { padding-left: 16px; border-left: 1px solid var(--border-strong); }
.health-metrics > div:first-child { padding-left: 0; border-left: none; }

.health-metrics .value { font-weight: 700; font-size: 28px; letter-spacing: -0.02em; }
.health-metrics .label { font-size: 12px; color: var(--text-3); margin-top: 4px; }

/* Form card */

.form-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px;
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.5);
}

.form-card .form-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 4px;
}

.form-card h3 {
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.015em;
  margin: 0;
}

.form-card .step { font-size: 12px; color: var(--faint); }

.form-card .form-sub {
  font-size: 13px;
  color: var(--text-2);
  margin: 4px 0 24px;
  line-height: 1.5;
}

.stepper { display: flex; gap: 8px; margin-bottom: 24px; }

.stepper span {
  flex: 1;
  height: 4px;
  border-radius: 99px;
  background: var(--fill);
}

.stepper span.on { background: var(--blue); }

.form-fields { display: flex; flex-direction: column; gap: 16px; }

.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.field label {
  display: block;
  margin-bottom: 4px;
  font-size: 12px;
  font-weight: 700;
  line-height: 16px;
  color: var(--text-2);
}

.field label b { color: var(--red); font-weight: 700; }

.field input,
.field select {
  width: 100%;
  height: 40px;
  padding: 0 12px;
  border-radius: 8px;
  background: var(--bg);
  border: 1px solid var(--border-strong);
  font-family: var(--font);
  font-size: 14px;
  color: var(--text);
  outline: none;
  transition: border-color 120ms ease;
  appearance: none;
}

.field select {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%236B7280' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
}

.field input::placeholder { color: var(--text-3); font-style: italic; font-weight: 300; }

.field input:focus,
.field select:focus { border-color: var(--blue); box-shadow: 0 0 0 1px var(--blue); }

.field .help {
  margin-top: 4px;
  font-size: 12px;
  font-style: italic;
  font-weight: 300;
  line-height: 16px;
  color: var(--text-2);
}

.form-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.form-foot .hint { font-size: 12px; color: var(--faint); }
.form-foot .actions { display: flex; gap: 8px; }

.form-card-embed { padding: 20px 20px 12px; }

/* Health Check rating scale (1–5 segmented control) */

.hc-q > label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--text);
}

.hc-q > label b { color: var(--red); font-weight: 700; }

.hc-scale {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}

.hc-scale input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.hc-scale label {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  border-radius: 8px;
  border: 1px solid var(--border-strong);
  background: var(--bg);
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-2);
  cursor: pointer;
  transition: border-color 120ms ease, background 120ms ease, color 120ms ease;
}

.hc-scale label:hover { border-color: var(--blue); color: var(--text); }

.hc-scale input[type="radio"]:checked + label {
  background: var(--blue-tint);
  border-color: var(--blue);
  color: var(--blue-light);
  font-weight: 700;
}

.hc-scale input[type="radio"]:focus-visible + label {
  box-shadow: 0 0 0 2px var(--blue);
}

.h-captcha { margin-top: 8px; }

/* Health Check radar profile card */

.radar-card {
  max-width: 920px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px 32px 20px;
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.5);
}

.radar-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 8px;
}

.radar-head .title { font-weight: 700; font-size: 18px; letter-spacing: -0.015em; }
.radar-head .sub { font-size: 13px; color: var(--text-3); margin-top: 2px; }

.embed-placeholder {
  padding: 48px 24px;
  margin-bottom: 8px;
  border: 1px dashed var(--border-strong);
  border-radius: 8px;
  text-align: center;
  font-size: 14px;
  color: var(--text-3);
}

/* Login page */

.login-wrap {
  max-width: 460px;
  margin: 0 auto;
}

.login-intro {
  text-align: center;
  margin-bottom: 32px;
}

/* ── Pricing ─────────────────────────────────────────── */

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

.tier {
  background: var(--surface);
  border-radius: 14px;
  border: 1px solid var(--border);
  padding: 32px;
  position: relative;
  display: flex;
  flex-direction: column;
}

.tier.highlight {
  border: 2px solid var(--blue);
  box-shadow: 0 24px 48px -20px rgba(59, 130, 246, 0.25);
}

.tier .badge {
  position: absolute;
  top: -12px;
  left: 28px;
  padding: 4px 12px;
  border-radius: 99px;
  background: var(--blue);
  color: #0B0E13;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.tier .name { font-weight: 700; font-size: 22px; letter-spacing: -0.015em; }
.tier .size { font-size: 13px; color: var(--faint); margin-top: 4px; }

.tier .price {
  margin: 24px 0 4px;
  font-weight: 700;
  font-size: 48px;
  letter-spacing: -0.03em;
}

.tier .billing { font-size: 13px; color: var(--faint); }

.tier hr {
  border: none;
  height: 1px;
  background: var(--border);
  margin: 22px 0;
  width: 100%;
}

.tier .checklist { flex: 1; }
.tier .cta { margin-top: 28px; }

.pricing-banner {
  margin-top: 48px;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.pricing-banner .title { font-weight: 700; font-size: 16px; }
.pricing-banner .sub { font-size: 14px; color: var(--text-2); margin-top: 2px; }

/* ── Demo CTA ────────────────────────────────────────── */

.method-note {
  margin-top: 56px;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.method-note .title { font-weight: 700; font-size: 16px; }
.method-note .sub { font-size: 14px; color: var(--text-2); margin-top: 2px; }

.cta-center {
  display: flex;
  gap: 12px;
  justify-content: center;
}

/* ── Footer ──────────────────────────────────────────── */

footer { background: var(--bg); }

.footer-inner { padding-top: 64px; padding-bottom: 32px; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 48px;
  margin-bottom: 56px;
}

.footer-grid .about p {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.55;
  margin: 16px 0 20px;
  max-width: 280px;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 99px;
  background: var(--green-tint);
  color: var(--green);
  font-size: 12px;
  font-weight: 600;
}

.status-pill .dot {
  width: 6px;
  height: 6px;
  border-radius: 99px;
  background: var(--green);
}

.footer-col .head {
  font-size: 12px;
  font-weight: 700;
  color: var(--faint);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  font-size: 14px;
  color: var(--text-2);
  text-decoration: none;
}

.footer-col a:hover { color: var(--text); }

.footer-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--faint);
}

.footer-bar .links { display: flex; gap: 24px; }

/* ── Outseta embeds (login + lead capture) — match Health Check form ── */

[data-o-auth], [data-o-lead-capture] {
  font-family: var(--font) !important;
}

/* Strip Outseta's white panel */
[data-o-auth] .o--Widget--widget,
[data-o-lead-capture] .o--Widget--widget,
[data-o-auth] [class*="o--Container"],
[data-o-lead-capture] [class*="o--Container"] {
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
  padding: 0 !important;
  max-width: none !important;
}

/* Headings + body text */
[data-o-auth] h1, [data-o-auth] h2, [data-o-auth] h3,
[data-o-lead-capture] h1, [data-o-lead-capture] h2, [data-o-lead-capture] h3 {
  color: var(--text) !important;
  font-family: var(--font) !important;
  font-weight: 700 !important;
  letter-spacing: -0.015em !important;
}

[data-o-auth] p, [data-o-auth] span, [data-o-auth] div,
[data-o-lead-capture] p, [data-o-lead-capture] span, [data-o-lead-capture] div {
  color: var(--text-2);
  font-family: var(--font);
}

/* Labels — match .field label */
[data-o-auth] label,
[data-o-lead-capture] label {
  display: block !important;
  margin-bottom: 4px !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  line-height: 16px !important;
  color: var(--text-2) !important;
  font-family: var(--font) !important;
}

/* Inputs — match .field input */
[data-o-auth] input[type="text"],
[data-o-auth] input[type="email"],
[data-o-auth] input[type="password"],
[data-o-auth] input[type="tel"],
[data-o-auth] select,
[data-o-auth] textarea,
[data-o-lead-capture] input[type="text"],
[data-o-lead-capture] input[type="email"],
[data-o-lead-capture] input[type="password"],
[data-o-lead-capture] input[type="tel"],
[data-o-lead-capture] select,
[data-o-lead-capture] textarea {
  width: 100% !important;
  height: 40px !important;
  padding: 0 12px !important;
  border-radius: 8px !important;
  background: var(--bg) !important;
  border: 1px solid var(--border-strong) !important;
  font-family: var(--font) !important;
  font-size: 14px !important;
  color: var(--text) !important;
  outline: none !important;
  box-shadow: none !important;
}

[data-o-auth] textarea,
[data-o-lead-capture] textarea {
  height: auto !important;
  padding: 10px 12px !important;
  min-height: 96px !important;
}

[data-o-auth] input:focus,
[data-o-auth] select:focus,
[data-o-auth] textarea:focus,
[data-o-lead-capture] input:focus,
[data-o-lead-capture] select:focus,
[data-o-lead-capture] textarea:focus {
  border-color: var(--blue) !important;
  box-shadow: 0 0 0 1px var(--blue) !important;
}

[data-o-auth] ::placeholder,
[data-o-lead-capture] ::placeholder {
  color: var(--text-3) !important;
  font-style: italic;
  font-weight: 300;
}

/* Buttons — match .btn-primary */
[data-o-auth] button[type="submit"],
[data-o-auth] .o--Button--btn,
[data-o-auth] [class*="o--Button"],
[data-o-lead-capture] button[type="submit"],
[data-o-lead-capture] .o--Button--btn,
[data-o-lead-capture] [class*="o--Button"] {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  height: 40px !important;
  padding: 0 16px !important;
  border-radius: 8px !important;
  border: none !important;
  background: var(--blue) !important;
  color: #0B0E13 !important;
  font-family: var(--font) !important;
  font-weight: 600 !important;
  font-size: 14px !important;
  cursor: pointer !important;
  transition: background 120ms ease !important;
  width: 100% !important;
}

[data-o-auth] button[type="submit"]:hover,
[data-o-auth] [class*="o--Button"]:hover,
[data-o-lead-capture] button[type="submit"]:hover,
[data-o-lead-capture] [class*="o--Button"]:hover {
  background: var(--blue-hover) !important;
}

/* Links (forgot password, sign up, etc.) */
[data-o-auth] a,
[data-o-lead-capture] a {
  color: var(--blue) !important;
  text-decoration: none !important;
}

[data-o-auth] a:hover,
[data-o-lead-capture] a:hover {
  color: var(--blue-hover) !important;
}

/* Error / validation messages */
[data-o-auth] [class*="error"], [data-o-auth] [class*="Error"],
[data-o-lead-capture] [class*="error"], [data-o-lead-capture] [class*="Error"] {
  color: var(--red) !important;
  font-size: 12px !important;
}

/* ── Responsive ──────────────────────────────────────── */

@media (max-width: 1024px) {
  .hero-grid,
  .health-grid { grid-template-columns: 1fr; gap: 48px; }

  .section-head-split,
  .causes { grid-template-columns: 1fr; gap: 24px; }

  .section-head-split .body { padding-top: 0; }

  .pillar,
  .pillar.flip { grid-template-columns: 1fr; gap: 32px; }

  .stats,
  .tiers { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr 1fr; }

  .nav-links { display: none; }

  .hero h1 { font-size: 44px; }

  .float-note.warning { right: 0; }
  .float-note.success { left: 0; }

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