/* Emprise Healthcare Marketing — Design System
   Brand lock: Evergreen palette, Source Serif 4 headlines, IBM Plex body/mono.
   ─────────────────────────────────────────────────────────────────────────── */

/* ─── Reset ──────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { height: 100%; }

/* ─── Tokens ─────────────────────────────────────────────────────────────── */
:root {
  /* ── Evergreen foundation ── */
  --eh-evergreen:      #183A37;
  --eh-deep-command:   #0F2528;
  --eh-ink:            #1F2933;
  --eh-ink-light:      #374151;

  /* ── Warm neutrals ── */
  --eh-warm-sand:      #F5F0E7;
  --eh-mist:           #EAF1EF;
  --eh-mist-dark:      #D6E6E2;
  --eh-white:          #FFFFFF;

  /* ── Accent palette ── */
  --eh-clay:           #C77E5B;
  --eh-clay-light:     rgba(199,126,91,.12);
  --eh-soft-blue:      #6D93A6;
  --eh-soft-blue-light: rgba(109,147,166,.12);
  --eh-aubergine:      #5B4A72;

  /* ── Thread / rail accent (soft-blue) ── */
  --eh-thread:         #6D93A6;
  --eh-thread-dim:     rgba(109,147,166,.35);

  /* ── Borders ── */
  --eh-border:         rgba(24,58,55,.12);
  --eh-border-warm:    rgba(24,58,55,.09);
  --eh-border-dark:    rgba(255,255,255,.10);

  /* ── Typography ── */
  --eh-font-serif: "Source Serif 4", Georgia, "Times New Roman", serif;
  --eh-font-sans:  "Inter", "IBM Plex Sans", ui-sans-serif, system-ui, -apple-system, sans-serif;
  --eh-font-mono:  "IBM Plex Mono", ui-monospace, "Cascadia Code", monospace;

  /* ── Layout ── */
  --eh-max:       1200px;
  --eh-wide:      1320px;
  --eh-r-card:    16px;
  --eh-r-btn:     10px;

  /* ── Shadows ── */
  --eh-shadow-card: 0 4px 20px rgba(15,37,40,.09);
  --eh-shadow-soft: 0 2px 10px rgba(15,37,40,.06);
  --eh-shadow-dark: 0 8px 32px rgba(15,37,40,.28);
}

/* ─── Base ───────────────────────────────────────────────────────────────── */
html {
  font-family: var(--eh-font-sans);
  color: var(--eh-ink);
  background: var(--eh-white);
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}
body { font-size: 16px; line-height: 1.65; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; }
input, textarea, select { font-family: inherit; }

/* ─── Layout ─────────────────────────────────────────────────────────────── */
.eh-container { width: min(100% - 40px, var(--eh-max)); margin-inline: auto; }
.eh-wide      { width: min(100% - 40px, var(--eh-wide)); margin-inline: auto; }

/* ─── Navigation ─────────────────────────────────────────────────────────── */
.eh-nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  border-bottom: 1px solid var(--eh-border);
  height: 68px;
}
.eh-nav-inner {
  display: flex; align-items: center; gap: 6px;
  height: 68px;
}
.eh-wordmark {
  display: flex; flex-direction: row; align-items: center;
  gap: 10px; margin-right: 20px; flex-shrink: 0;
  color: var(--eh-evergreen); white-space: nowrap;
}
.eh-wordmark-mark { width: 36px; height: 36px; flex-shrink: 0; }
.eh-wordmark-text {
  font-family: var(--eh-font-serif);
  font-size: 18px; font-weight: 700; letter-spacing: -0.02em;
  display: flex; flex-direction: column; line-height: 1.1;
}
.eh-wordmark-sub {
  font-family: var(--eh-font-sans);
  font-size: 9.5px; font-weight: 600; letter-spacing: .08em;
  text-transform: uppercase; color: var(--eh-soft-blue);
  margin-top: 2px;
}
.eh-nav-links { display: flex; align-items: center; gap: 2px; flex: 1; }

.eh-nav-link {
  display: inline-flex; align-items: center;
  padding: 6px 13px; border-radius: 8px;
  font-size: 13.5px; font-weight: 500;
  color: var(--eh-ink-light);
  background: none; border: none; white-space: nowrap;
  transition: color .12s, background .12s;
}
.eh-nav-link:hover { color: var(--eh-evergreen); background: var(--eh-mist); }
.eh-nav-link.is-active { color: var(--eh-evergreen); background: var(--eh-mist); font-weight: 600; }

.eh-nav-cta    { margin-left: auto; flex-shrink: 0; }

.eh-mobile-toggle {
  display: none; background: none;
  border: 1px solid var(--eh-border); border-radius: 8px;
  padding: 7px 10px; color: var(--eh-ink-light);
}
@media (max-width: 860px) {
  .eh-nav-links { display: none; }
  .eh-mobile-toggle { display: inline-flex; align-items: center; gap: 6px; }
  .eh-nav-links.is-open {
    display: flex; flex-direction: column; align-items: stretch;
    position: absolute; top: 68px; left: 0; right: 0;
    background: var(--eh-white); border-bottom: 1px solid var(--eh-border);
    padding: 8px 20px 16px; gap: 2px; z-index: 99;
    box-shadow: var(--eh-shadow-card);
  }
  .eh-nav-link { padding: 10px 12px; font-size: 15px; }
  .eh-nav-cta .eh-btn { min-height: 38px; padding: 0 14px; font-size: 13px; }
}

/* ─── Buttons ─────────────────────────────────────────────────────────────── */
.eh-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 46px; padding: 0 22px; border-radius: var(--eh-r-btn);
  font-family: var(--eh-font-sans);
  font-size: 14.5px; font-weight: 600;
  border: 1.5px solid transparent; white-space: nowrap;
  transition: background .14s, border-color .14s, box-shadow .14s;
  letter-spacing: .005em;
}
.eh-btn-sm { min-height: 36px; padding: 0 16px; font-size: 13.5px; }
.eh-btn-lg { min-height: 52px; padding: 0 28px; font-size: 15.5px; }

.eh-btn-primary {
  background: var(--eh-evergreen); color: var(--eh-white);
  box-shadow: 0 4px 16px rgba(24,58,55,.22);
}
.eh-btn-primary:hover { background: var(--eh-deep-command); }

.eh-btn-secondary {
  background: var(--eh-white); color: var(--eh-evergreen);
  border-color: var(--eh-border);
}
.eh-btn-secondary:hover { border-color: var(--eh-soft-blue); background: var(--eh-mist); }

.eh-btn-clay {
  background: var(--eh-clay); color: var(--eh-white);
  box-shadow: 0 4px 14px rgba(199,126,91,.24);
}
.eh-btn-clay:hover { background: #b36d4b; }

.eh-btn-outline-dark {
  background: transparent; color: rgba(255,255,255,.85);
  border-color: rgba(255,255,255,.22);
}
.eh-btn-outline-dark:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.42); }

.eh-btn-row { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }

/* ─── Typography ─────────────────────────────────────────────────────────── */
.eh-eyebrow {
  display: flex; align-items: center; gap: 10px;
  color: var(--eh-soft-blue); font-size: 11px; font-weight: 600;
  letter-spacing: .11em; text-transform: uppercase; margin-bottom: 16px;
  font-family: var(--eh-font-sans);
}
.eh-eyebrow::before {
  content: ''; display: block; width: 20px; height: 1.5px;
  background: var(--eh-soft-blue); border-radius: 2px; flex-shrink: 0;
}
.eh-eyebrow-clay { color: var(--eh-clay); }
.eh-eyebrow-clay::before { background: var(--eh-clay); }

.eh-h1 {
  font-family: var(--eh-font-serif);
  font-size: clamp(38px, 5.2vw, 62px); line-height: 1.02;
  letter-spacing: -0.02em; font-weight: 700; margin-bottom: 20px;
  color: var(--eh-ink);
}
.eh-h1-light { color: var(--eh-warm-sand); }
.eh-h1 em, .eh-h1-light em { font-style: italic; color: var(--eh-clay); }

.eh-h2 {
  font-family: var(--eh-font-serif);
  font-size: clamp(26px, 3.2vw, 40px); line-height: 1.15;
  letter-spacing: -0.015em; font-weight: 700; margin-bottom: 12px;
  color: var(--eh-ink);
}
.eh-h2-light { color: var(--eh-warm-sand); }

.eh-h3 {
  font-family: var(--eh-font-sans);
  font-size: clamp(16px, 1.6vw, 19px); line-height: 1.25;
  letter-spacing: -0.01em; font-weight: 600; margin-bottom: 8px;
  color: var(--eh-ink);
}
.eh-h3-light { color: var(--eh-warm-sand); }

.eh-lede {
  font-size: 18px; line-height: 1.72;
  color: var(--eh-ink-light); max-width: 560px; margin-bottom: 28px;
}
.eh-lede-light { color: rgba(245,240,231,.72); }

.eh-body { font-size: 15px; line-height: 1.72; color: var(--eh-ink-light); }
.eh-body-light { color: rgba(245,240,231,.62); }

.eh-mono {
  font-family: var(--eh-font-mono);
  font-size: 12.5px; letter-spacing: .01em;
}

/* ─── Hero ───────────────────────────────────────────────────────────────── */
.eh-hero {
  background: var(--eh-deep-command);
  padding: 80px 0 96px;
  position: relative; overflow: hidden;
}
.eh-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 90% 70% at 80% 30%, rgba(109,147,166,.09) 0%, transparent 65%),
              radial-gradient(ellipse 60% 80% at 5% 80%, rgba(24,58,55,.4) 0%, transparent 70%);
  pointer-events: none;
}
.eh-hero-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center; position: relative;
}
@media (max-width: 780px) {
  .eh-hero { padding: 56px 0 68px; }
  .eh-hero-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ─── Sections ───────────────────────────────────────────────────────────── */
.eh-section { padding: 80px 0; }
.eh-section-sm { padding: 56px 0; }
.eh-section-sand { background: var(--eh-warm-sand); }
.eh-section-muted { background: var(--eh-mist); }
.eh-section-dark {
  background: var(--eh-deep-command);
  position: relative; overflow: hidden;
}
.eh-section-dark::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 15% 50%, rgba(24,58,55,.5) 0%, transparent 70%);
  pointer-events: none;
}
.eh-section-dark > * { position: relative; }
.eh-section-evergreen {
  background: var(--eh-evergreen);
  position: relative; overflow: hidden;
}

.eh-section-eyebrow { text-align: center; margin-bottom: 10px; }
.eh-section-eyebrow.eh-left { text-align: left; }
.eh-section-title { text-align: center; margin-bottom: 14px; }
.eh-section-title.eh-left { text-align: left; }
.eh-section-sub {
  text-align: center; font-size: 17px; line-height: 1.68;
  color: var(--eh-ink-light); max-width: 640px; margin: 0 auto 52px;
}
.eh-section-sub.eh-left { text-align: left; margin: 0 0 44px; }

/* ─── Cards ──────────────────────────────────────────────────────────────── */
.eh-card {
  background: var(--eh-white); border: 1px solid var(--eh-border-warm);
  border-radius: var(--eh-r-card); padding: 26px 26px 30px;
  box-shadow: var(--eh-shadow-soft);
}
.eh-card-muted {
  background: var(--eh-mist); border: 1px solid var(--eh-border);
  border-radius: var(--eh-r-card); padding: 26px 26px 30px;
}
.eh-card-dark {
  background: rgba(24,58,55,.55); border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--eh-r-card); padding: 26px 26px 30px;
}
.eh-card-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--eh-mist); color: var(--eh-evergreen);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px; flex-shrink: 0;
}
.eh-card-icon-dark {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(109,147,166,.2); color: var(--eh-soft-blue);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px; flex-shrink: 0;
}

/* Product family cards */
.eh-product-card {
  background: var(--eh-white); border: 1px solid var(--eh-border-warm);
  border-radius: var(--eh-r-card); padding: 28px 28px 24px;
  box-shadow: var(--eh-shadow-soft);
  display: flex; flex-direction: column;
  transition: box-shadow .15s, border-color .15s;
}
.eh-product-card:hover {
  box-shadow: var(--eh-shadow-card); border-color: var(--eh-soft-blue);
}
.eh-product-card-badge {
  display: inline-block; padding: 3px 10px; border-radius: 999px;
  font-size: 10.5px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  background: var(--eh-mist); color: var(--eh-evergreen);
  margin-bottom: 14px; font-family: var(--eh-font-sans);
}
.eh-product-card h3 {
  font-family: var(--eh-font-serif);
  font-size: 19px; font-weight: 700; letter-spacing: -0.01em;
  color: var(--eh-ink); margin-bottom: 10px;
}
.eh-product-card p {
  font-size: 14px; line-height: 1.68; color: var(--eh-ink-light);
  flex: 1; margin-bottom: 18px;
}
.eh-product-card-link {
  font-size: 13.5px; font-weight: 600; color: var(--eh-evergreen);
  display: inline-flex; align-items: center; gap: 5px;
  margin-top: auto;
}
.eh-product-card-link:hover { color: var(--eh-soft-blue); }

/* ─── Grid utilities ─────────────────────────────────────────────────────── */
.eh-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.eh-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.eh-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.eh-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }

@media (max-width: 900px) {
  .eh-grid-3, .eh-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .eh-two-col { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 600px) {
  .eh-grid-2, .eh-grid-3, .eh-grid-4 { grid-template-columns: 1fr; }
}

/* ─── Healthcare Operations Cockpit ──────────────────────────────────────── */
.eh-cockpit {
  background: var(--eh-deep-command);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 18px; overflow: hidden;
  box-shadow: var(--eh-shadow-dark);
}
.eh-cockpit-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px 14px;
  border-bottom: 1px solid rgba(255,255,255,.06);
  background: rgba(15,37,40,.6);
}
.eh-cockpit-title {
  font-family: var(--eh-font-mono);
  font-size: 11px; font-weight: 400; letter-spacing: .04em;
  color: rgba(245,240,231,.45);
}
.eh-cockpit-badge {
  font-size: 9.5px; font-weight: 600; padding: 2px 8px; border-radius: 999px;
  background: rgba(24,58,55,.7); color: var(--eh-thread);
  letter-spacing: .08em; text-transform: uppercase;
  border: 1px solid var(--eh-thread-dim);
}
.eh-cockpit-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1px; background: rgba(255,255,255,.04);
}
.eh-cockpit-card {
  background: var(--eh-deep-command);
  padding: 16px 18px;
  position: relative;
}
.eh-cockpit-card::before {
  content: ''; position: absolute; left: 0; top: 8px; bottom: 8px;
  width: 2px; background: var(--eh-thread-dim); border-radius: 1px;
}
.eh-cockpit-card.thread-active::before { background: var(--eh-thread); }
.eh-cockpit-label {
  font-family: var(--eh-font-mono);
  font-size: 10px; color: rgba(245,240,231,.38); letter-spacing: .04em;
  margin-bottom: 4px; text-transform: uppercase;
}
.eh-cockpit-value {
  font-family: var(--eh-font-sans);
  font-size: 13px; font-weight: 600; color: rgba(245,240,231,.82);
}
.eh-cockpit-value.ok     { color: #7CB99B; }
.eh-cockpit-value.warn   { color: #D4935A; }
.eh-cockpit-value.pending { color: rgba(245,240,231,.35); }
.eh-cockpit-footer {
  padding: 12px 20px;
  border-top: 1px solid rgba(255,255,255,.04);
  display: flex; align-items: center; gap: 8px;
}
.eh-cockpit-footer-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--eh-thread); flex-shrink: 0;
  box-shadow: 0 0 6px rgba(109,147,166,.5);
}
.eh-cockpit-footer-text {
  font-family: var(--eh-font-mono);
  font-size: 10px; color: rgba(245,240,231,.3); letter-spacing: .03em;
}

/* ─── Operating Rail ─────────────────────────────────────────────────────── */
.eh-rail {
  display: flex; align-items: center; gap: 0; flex-wrap: wrap;
  margin: 36px 0; justify-content: center;
}
.eh-rail-step { display: flex; align-items: center; gap: 0; }
.eh-rail-node {
  background: rgba(24,58,55,.55); color: var(--eh-mist);
  border: 1px solid rgba(109,147,166,.2);
  border-radius: 8px; padding: 8px 14px;
  font-family: var(--eh-font-mono); font-size: 11.5px; font-weight: 400;
  letter-spacing: .02em; white-space: nowrap;
}
.eh-rail-arrow {
  color: var(--eh-thread-dim); font-size: 14px;
  padding: 0 5px; flex-shrink: 0;
}
@media (max-width: 700px) {
  .eh-rail { flex-direction: column; align-items: flex-start; }
  .eh-rail-arrow { transform: rotate(90deg); padding: 3px 0; }
}

/* Light variant */
.eh-rail-light .eh-rail-node {
  background: var(--eh-mist); color: var(--eh-evergreen);
  border-color: var(--eh-border);
}
.eh-rail-light .eh-rail-arrow { color: var(--eh-border); }

/* ─── Product family map ─────────────────────────────────────────────────── */
.eh-family-map {
  position: relative; display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto auto auto;
  gap: 14px;
  align-items: center; justify-items: center;
}
.eh-family-center {
  grid-column: 2; grid-row: 2;
  background: var(--eh-evergreen); color: var(--eh-warm-sand);
  border-radius: 14px; padding: 22px 20px;
  text-align: center; width: 100%;
  box-shadow: 0 6px 24px rgba(24,58,55,.28);
}
.eh-family-center-name {
  font-family: var(--eh-font-serif);
  font-size: 16px; font-weight: 700; color: var(--eh-warm-sand);
  margin-bottom: 4px; letter-spacing: -0.01em;
}
.eh-family-center-sub {
  font-size: 10.5px; color: rgba(245,240,231,.55);
  font-family: var(--eh-font-mono); letter-spacing: .03em;
}
.eh-family-orbit {
  background: var(--eh-white); border: 1px solid var(--eh-border-warm);
  border-radius: 12px; padding: 16px 14px;
  text-align: center; width: 100%;
  box-shadow: var(--eh-shadow-soft);
  transition: border-color .14s, box-shadow .14s;
}
.eh-family-orbit:hover { border-color: var(--eh-soft-blue); box-shadow: var(--eh-shadow-card); }
.eh-family-orbit-name {
  font-family: var(--eh-font-sans);
  font-size: 13px; font-weight: 600; color: var(--eh-ink);
  margin-bottom: 3px;
}
.eh-family-orbit-type {
  font-size: 10px; font-family: var(--eh-font-mono);
  color: var(--eh-soft-blue); letter-spacing: .03em;
}
.eh-family-orbit a { display: block; color: inherit; }
@media (max-width: 640px) {
  .eh-family-map { grid-template-columns: 1fr; grid-template-rows: auto; }
  .eh-family-center { grid-column: 1; grid-row: 1; }
}

/* ─── Evidence packet / trust panel ─────────────────────────────────────── */
.eh-evidence-panel {
  background: var(--eh-deep-command);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--eh-r-card); padding: 22px;
  box-shadow: var(--eh-shadow-dark);
}
.eh-evidence-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 16px; padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.eh-evidence-title {
  font-family: var(--eh-font-mono);
  font-size: 11px; font-weight: 400; color: rgba(245,240,231,.45);
  letter-spacing: .04em;
}
.eh-evidence-badge {
  font-size: 9.5px; font-weight: 600; padding: 2px 8px; border-radius: 999px;
  background: rgba(109,147,166,.15); color: var(--eh-thread);
  letter-spacing: .07em; text-transform: uppercase;
}
.eh-evidence-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 9px 0; border-bottom: 1px solid rgba(255,255,255,.04);
  font-size: 12.5px;
}
.eh-evidence-row:last-child { border-bottom: none; }
.eh-evidence-label { color: rgba(245,240,231,.45); font-family: var(--eh-font-mono); }
.eh-evidence-val   { color: rgba(245,240,231,.8); font-weight: 500; }
.eh-evidence-val.ok      { color: #7CB99B; }
.eh-evidence-val.warn    { color: #D4935A; }
.eh-evidence-val.pending { color: rgba(245,240,231,.32); }

/* Alias for older .eh-panel-mock class still in some templates */
.eh-panel-mock           { @extends .eh-evidence-panel; }
.eh-panel-mock-header    { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid rgba(255,255,255,.05); }
.eh-panel-mock-title     { font-family: var(--eh-font-mono); font-size: 11px; font-weight: 400; color: rgba(245,240,231,.45); letter-spacing: .04em; }
.eh-panel-mock-badge     { font-size: 9.5px; font-weight: 600; padding: 2px 8px; border-radius: 999px; background: rgba(109,147,166,.15); color: var(--eh-thread); letter-spacing: .07em; text-transform: uppercase; }
.eh-panel-mock-row       { display: flex; align-items: center; justify-content: space-between; padding: 9px 0; border-bottom: 1px solid rgba(255,255,255,.04); font-size: 12.5px; }
.eh-panel-mock-row:last-child { border-bottom: none; }
.eh-panel-mock-label     { color: rgba(245,240,231,.45); font-family: var(--eh-font-mono); }
.eh-panel-mock-val       { color: rgba(245,240,231,.8); font-weight: 500; }
.eh-panel-mock-val.ok    { color: #7CB99B; }
.eh-panel-mock-val.warn  { color: #D4935A; }
.eh-panel-mock-val.pending { color: rgba(245,240,231,.32); }

/* Redefine panel-mock properly (no @extends in plain CSS) */
.eh-panel-mock {
  background: var(--eh-deep-command);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--eh-r-card); padding: 22px;
  box-shadow: var(--eh-shadow-dark);
}

/* ─── Trust strip ────────────────────────────────────────────────────────── */
.eh-trust-strip {
  display: flex; align-items: center; gap: 24px;
  margin-top: 28px; flex-wrap: wrap;
}
.eh-trust-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 12.5px; font-weight: 500; color: rgba(245,240,231,.5);
}
.eh-trust-item svg { width: 14px; height: 14px; flex-shrink: 0; color: var(--eh-thread); }

/* ─── Forms ──────────────────────────────────────────────────────────────── */
.eh-form-card {
  background: var(--eh-white); border: 1px solid var(--eh-border-warm);
  border-radius: var(--eh-r-card); padding: 36px;
  box-shadow: var(--eh-shadow-soft);
}
.eh-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.eh-field { display: flex; flex-direction: column; gap: 6px; }
.eh-field.full { grid-column: 1 / -1; }
.eh-label {
  font-size: 12.5px; font-weight: 600; color: var(--eh-evergreen);
  letter-spacing: .01em;
}
.eh-input, .eh-select, .eh-textarea {
  width: 100%; padding: 10px 14px;
  border: 1.5px solid var(--eh-border); border-radius: 8px;
  font-size: 14.5px; color: var(--eh-ink);
  background: var(--eh-white);
  transition: border-color .12s, box-shadow .12s;
}
.eh-input:focus, .eh-select:focus, .eh-textarea:focus {
  outline: none; border-color: var(--eh-soft-blue);
  box-shadow: 0 0 0 3px rgba(109,147,166,.16);
}
.eh-textarea { resize: vertical; }
.eh-select { appearance: none; cursor: pointer; }

/* Checkbox */
.eh-checkbox-row {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 12px 0; font-size: 13.5px; color: var(--eh-ink-light); line-height: 1.5;
}
.eh-checkbox-row input[type="checkbox"] {
  width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; accent-color: var(--eh-evergreen);
}

/* ─── Feature list ───────────────────────────────────────────────────────── */
.eh-feature-list { display: flex; flex-direction: column; gap: 18px; }
.eh-feature-item { display: flex; gap: 14px; align-items: flex-start; }
.eh-feature-icon {
  width: 36px; height: 36px; border-radius: 9px; flex-shrink: 0;
  background: var(--eh-mist); color: var(--eh-evergreen);
  display: flex; align-items: center; justify-content: center;
}
.eh-feature-icon-dark {
  width: 36px; height: 36px; border-radius: 9px; flex-shrink: 0;
  background: rgba(109,147,166,.15); color: var(--eh-thread);
  display: flex; align-items: center; justify-content: center;
}
.eh-feature-body {}
.eh-feature-title {
  font-size: 14.5px; font-weight: 600; color: var(--eh-ink); margin-bottom: 3px;
}
.eh-feature-title-light { color: var(--eh-warm-sand); }
.eh-feature-desc { font-size: 13.5px; color: var(--eh-ink-light); line-height: 1.62; }
.eh-feature-desc-light { color: rgba(245,240,231,.55); }

/* ─── CTA banner ─────────────────────────────────────────────────────────── */
.eh-cta-band {
  background: var(--eh-evergreen); padding: 72px 0;
  text-align: center; position: relative; overflow: hidden;
}
.eh-cta-band::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 120% at 50% 50%, rgba(109,147,166,.1) 0%, transparent 70%);
  pointer-events: none;
}
.eh-cta-band > * { position: relative; }

/* ─── Footer ─────────────────────────────────────────────────────────────── */
.eh-footer {
  background: var(--eh-deep-command); padding: 54px 0 34px;
  color: rgba(245,240,231,.55);
}
.eh-footer-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px; margin-bottom: 40px;
}
.eh-footer-brand {
  display: flex; flex-direction: row; align-items: center;
  gap: 10px; margin-bottom: 12px;
  color: var(--eh-warm-sand); white-space: nowrap;
}
.eh-footer-mark { width: 32px; height: 32px; flex-shrink: 0; }
.eh-footer-brand-text {
  font-family: var(--eh-font-serif);
  font-size: 17px; font-weight: 700; letter-spacing: -0.01em;
  display: flex; flex-direction: column; line-height: 1.15;
}
.eh-footer-brand-sub {
  font-family: var(--eh-font-sans);
  font-size: 9px; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; color: var(--eh-thread); margin-top: 2px;
}
.eh-footer-tagline {
  font-size: 13px; line-height: 1.65; color: rgba(245,240,231,.42);
  margin-bottom: 16px; max-width: 260px;
}
.eh-footer-col-title {
  font-size: 9.5px; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: rgba(245,240,231,.28);
  margin-bottom: 12px;
}
.eh-footer-links { display: flex; flex-direction: column; gap: 8px; }
.eh-footer-links a {
  font-size: 13.5px; color: rgba(245,240,231,.48);
  transition: color .12s;
}
.eh-footer-links a:hover { color: var(--eh-warm-sand); }
.eh-footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06); padding-top: 24px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 12px; color: rgba(245,240,231,.26);
}
.eh-footer-bottom a { color: rgba(245,240,231,.38); }
.eh-footer-bottom a:hover { color: rgba(245,240,231,.65); }
.eh-aegis-chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 12px; border-radius: 999px;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08);
  font-size: 11.5px; font-weight: 500; color: rgba(245,240,231,.48);
}
.eh-aegis-chip:hover { background: rgba(255,255,255,.09); color: rgba(245,240,231,.75); }
@media (max-width: 860px) { .eh-footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .eh-footer-grid { grid-template-columns: 1fr; } }

/* ─── Misc utilities ─────────────────────────────────────────────────────── */
.eh-pill {
  display: inline-block; padding: 3px 10px; border-radius: 999px;
  font-size: 10.5px; font-weight: 600; letter-spacing: .05em; text-transform: uppercase;
}
.eh-pill-green   { background: var(--eh-mist); color: var(--eh-evergreen); }
.eh-pill-blue    { background: var(--eh-soft-blue-light); color: var(--eh-soft-blue); }
.eh-pill-clay    { background: var(--eh-clay-light); color: var(--eh-clay); }
.eh-pill-muted   { background: rgba(24,58,55,.08); color: var(--eh-ink-light); }
.eh-pill-dark    { background: rgba(109,147,166,.15); color: var(--eh-thread); }

/* Legacy aliases */
.eh-pill-teal  { background: var(--eh-mist); color: var(--eh-evergreen); }

.eh-divider      { height: 1px; background: var(--eh-border); margin: 32px 0; }
.eh-divider-dark { height: 1px; background: rgba(255,255,255,.06); margin: 32px 0; }

.visually-hidden {
  position: absolute !important; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); border: 0;
}

/* ─── Accessible focus ───────────────────────────────────────────────────── */
.eh-btn:focus-visible, .eh-nav-link:focus-visible,
a:focus-visible, button:focus-visible, input:focus-visible,
select:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--eh-soft-blue); outline-offset: 2px;
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
}

/* ─── Trust / caution ───────────────────────────────────────────────────── */
.eh-caution-box {
  background: rgba(24,58,55,.06); border: 1px solid rgba(24,58,55,.15);
  border-radius: 12px; padding: 18px 20px;
}

/* ─── FAQ ───────────────────────────────────────────────────────────────── */
.eh-faq { display: flex; flex-direction: column; gap: 0; }
.eh-faq-item { border-bottom: 1px solid var(--eh-border); padding: 18px 0; }
.eh-faq-item:first-child { border-top: 1px solid var(--eh-border); }
.eh-faq-summary {
  font-size: 15px; font-weight: 600; color: var(--eh-ink);
  cursor: pointer; list-style: none; display: flex;
  justify-content: space-between; align-items: center; gap: 16px;
}
.eh-faq-summary::-webkit-details-marker { display: none; }
.eh-faq-summary::after { content: '+'; font-size: 18px; color: var(--eh-soft-blue); flex-shrink: 0; }
details[open] .eh-faq-summary::after { content: '−'; }
.eh-faq-answer { font-size: 14.5px; color: var(--eh-ink-light); line-height: 1.7; padding-top: 10px; }

/* ─── Success state ─────────────────────────────────────────────────────── */
.eh-success-box {
  background: var(--eh-mist); border: 1px solid var(--eh-mist-dark);
  border-radius: var(--eh-r-card); padding: 40px; text-align: center;
}
.eh-success-icon {
  width: 50px; height: 50px; border-radius: 50%;
  background: var(--eh-evergreen); color: var(--eh-warm-sand);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
}
