/* ===== Health Hub — Physician partnership landing (Direction C · Modern Card) ===== */

:root {
  --green: #1f5f4f;
  --green-hover: #16463a;
  --green-dark: #133b31;
  --ink: #16201c;
  --ink-soft: #46544e;
  --muted: #6f8179;
  --muted-light: #8fb3a6;
  --surface: #f4f6f5;
  --surface-accent: #e7efea;
  --border: #e2e9e5;
  --border-pill: #cfdcd6;
  --border-field: #cdd8d3;
  --serif: 'Newsreader', Georgia, serif;
  --sans: 'Hanken Grotesk', system-ui, -apple-system, sans-serif;
}

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

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--surface);
  display: flex;
  justify-content: center;
  padding: 0;
  -webkit-font-smoothing: antialiased;
}

.frame {
  width: 100%;
  max-width: 1040px;
  min-height: 100vh;
  background: var(--surface);
  overflow: hidden;
}

/* ---- nav ---- */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 56px;
}
.brand {
  font: 600 18px var(--serif);
}
.btn-outline {
  border: 1px solid var(--green);
  color: var(--green);
  padding: 9px 16px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: background .15s, color .15s;
}
.btn-outline:hover {
  background: var(--green);
  color: #fff;
}

/* ---- shared buttons ---- */
.btn-primary {
  display: inline-block;
  background: var(--green);
  color: #fff;
  border: none;
  font-family: var(--sans);
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border-radius: 8px;
  transition: background .15s;
}
.btn-primary:hover { background: var(--green-hover); }
.btn-lg { padding: 16px 30px; font-size: 16px; }
.btn-block { width: 100%; padding: 16px; font-size: 16px; }

/* ---- eyebrow label ---- */
.eyebrow {
  font: 600 12px var(--sans);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.eyebrow-light { color: var(--muted-light); letter-spacing: 1px; }
.eyebrow-muted { color: var(--muted); }
.center { text-align: center; }

/* ---- hero ---- */
.hero {
  padding: 72px 56px 56px;
  text-align: center;
}
.badge {
  display: inline-block;
  font: 600 12px var(--sans);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--green);
  background: var(--surface-accent);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.hero h1 {
  font: 500 56px/1.04 var(--serif);
  letter-spacing: -.6px;
  max-width: 780px;
  margin: 0 auto 22px;
}
.lede {
  font-size: 19px;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 580px;
  margin: 0 auto 34px;
}

/* ---- pairing cards ---- */
.pairing {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: stretch;
  max-width: 760px;
  margin: 48px auto 0;
  text-align: left;
}
.pairing-card { padding: 30px; }
.pairing-dark {
  background: var(--green-dark);
  color: #fff;
  border-radius: 12px 0 0 12px;
}
.pairing-light {
  background: #fff;
  border: 1px solid var(--border);
  border-left: none;
  border-radius: 0 12px 12px 0;
}
.pairing-plus {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green);
  color: #fff;
  width: 56px;
  font: 500 22px var(--serif);
}
.pairing-title {
  font: 500 22px/1.25 var(--serif);
  margin-top: 14px;
}

/* ---- benefit cards ---- */
.benefits {
  padding: 24px 56px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
}
.card h3 {
  font: 600 18px var(--sans);
  margin-bottom: 8px;
}
.card p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
}
.icon-wrap {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: var(--surface-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.icon {
  width: 12px;
  height: 12px;
  background: var(--green);
  display: block;
}
.icon-square { border-radius: 2px; }
.icon-circle { border-radius: 50%; }
.icon-diamond { transform: rotate(45deg); }

/* ---- chips / locations ---- */
.chips-section {
  padding: 32px 56px 8px;
  text-align: center;
}
.chips-section .eyebrow { margin-bottom: 18px; }
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  max-width: 780px;
  margin: 0 auto;
}
.chip {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 9px 18px;
  font-size: 14px;
  color: var(--ink-soft);
}
.chip-location {
  background: var(--surface-accent);
  border-color: var(--border-pill);
  font-weight: 600;
  color: var(--green);
  padding: 9px 20px;
}

/* ---- form ---- */
.form-section { padding: 40px 56px 64px; }
.form-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 44px;
  max-width: 680px;
  margin: 0 auto;
  box-shadow: 0 8px 28px rgba(19, 59, 49, .08);
}
.form-head {
  text-align: center;
  margin-bottom: 26px;
}
.form-head h2 {
  font: 500 34px var(--serif);
  margin-bottom: 10px;
}
.form-head p {
  font-size: 15px;
  color: var(--muted);
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}
.field { margin-bottom: 0; }
.form-card > .field { margin-bottom: 20px; }
.field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
}
.field input,
.field textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--border-field);
  border-radius: 8px;
  font: 15px var(--sans);
  color: var(--ink);
  transition: border-color .15s;
}
.field textarea {
  min-height: 90px;
  resize: vertical;
}
.field input:focus,
.field textarea:focus {
  border-color: var(--green);
  outline: none;
}

.contact {
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  text-align: center;
}
.contact-note {
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
  margin-bottom: 14px;
}
.contact-name {
  font: 600 16px var(--sans);
  color: var(--ink);
}
.contact-line {
  font-size: 15px;
  color: var(--ink-soft);
  margin-top: 6px;
}
.contact-line a { color: inherit; }
.muted { color: var(--muted); font-weight: 400; }
.fineprint {
  font-size: 12px;
  color: var(--muted);
  margin-top: 16px;
  text-align: center;
}

.form-status {
  margin-top: 14px;
  text-align: center;
  font-size: 14px;
  color: var(--green);
}
.form-status.is-error { color: #b23b3b; }

/* Honeypot — visually and from-assistive-tech hidden, but present for bots */
.hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* ---- responsive ---- */
@media (max-width: 760px) {
  body { padding: 0; }
  .frame { border-radius: 0; }
  .nav { padding: 18px 22px; }
  .hero { padding: 48px 22px 40px; }
  .hero h1 { font-size: 38px; }
  .lede { font-size: 17px; }
  .pairing {
    grid-template-columns: 1fr;
    margin-top: 36px;
  }
  .pairing-dark { border-radius: 12px 12px 0 0; }
  .pairing-light {
    border-left: 1px solid var(--border);
    border-top: none;
    border-radius: 0 0 12px 12px;
  }
  .pairing-plus {
    width: 100%;
    height: 44px;
  }
  .benefits {
    grid-template-columns: 1fr;
    padding: 24px 22px;
  }
  .chips-section { padding: 28px 22px 8px; }
  .form-section { padding: 32px 22px 48px; }
  .form-card { padding: 28px 22px; }
  .form-head h2 { font-size: 28px; }
  .field-row { grid-template-columns: 1fr; }
}
