/* ============================================================
   EI Before AI — Pledge Landing Page
   Standalone campaign page. Brand-accurate recreation of the
   design handoff. A11y on-colors baked in (green/yellow/orange
   carry navy text; blue/navy/indigo carry white).
   ============================================================ */

.eibai-root {
  /* ---- Design tokens (Housman Learning design system) ---- */
  --hl-blue: #1575d5;
  --hl-blue-light: #eaf2f9;
  --hl-blue-deep: #0f5aa6;
  --hl-blue-dark: #0f5aa6;
  --hl-green: #39da6c;
  --hl-green-light: #e2f8e4;
  --hl-yellow: #ffe563;
  --hl-yellow-light: #fef5c8;
  --hl-orange: #ff8828;
  --hl-navy: #202a44;
  --hl-indigo: #1d1851;

  --text-strong: #202a44;
  --text-body: #2c3242;
  --text-muted: #6b7180;
  --text-subtle: #9b9faa;

  --surface-page: #ffffff;
  --surface-subtle: #f7f8fa;
  --surface-card: #ffffff;
  --border-subtle: #eef0f3;
  --border-default: #dfdfdf;

  --color-danger: #d23b3b;

  --font-heading: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-pill: 999px;

  --elevation-1: 0 1px 3px rgba(0, 0, 0, 0.06);
  --elevation-2: 0 4px 12px rgba(0, 0, 0, 0.08);
  --elevation-3: 0 12px 32px rgba(0, 0, 0, 0.12);

  --duration-base: 200ms;
  --ease-standard: cubic-bezier(0.4, 0, 0.2, 1);

  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--surface-page);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}

/* Reset within scope */
.eibai-root *,
.eibai-root *::before,
.eibai-root *::after { box-sizing: border-box; }
/* Zero default margins WITHOUT clobbering component margins: :where() keeps this
   reset at (0,1,0) specificity so single-class component rules (and their auto
   centering / margins) still win. */
.eibai-root :where(h1, h2, h3, h4, p, ul, ol, figure) { margin: 0; }
.eibai-root img { max-width: 100%; }
.eibai-root a { transition: color var(--duration-base) var(--ease-standard); }
.eibai-root :focus-visible { outline: 3px solid rgba(21, 117, 213, 0.5); outline-offset: 2px; }
/* Ensure the hidden attribute always wins over class display rules
   (lock overlay, filters, grid, empty-state toggles). */
.eibai-root [hidden] { display: none !important; }

.eibai-section-inner { max-width: 1200px; margin: 0 auto; padding-left: 32px; padding-right: 32px; }

/* ============================================================
   Buttons
   ============================================================ */
.eibai-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  border-radius: var(--radius-md);
  padding: 14px 26px;
  transition: transform var(--duration-base) var(--ease-standard),
    background var(--duration-base) var(--ease-standard),
    box-shadow var(--duration-base) var(--ease-standard),
    border-color var(--duration-base) var(--ease-standard);
  white-space: nowrap;
}
.eibai-btn svg { width: 1.15em; height: 1.15em; flex: 0 0 auto; }
.eibai-btn--sm { padding: 9px 18px; font-size: 14.5px; }
.eibai-btn--lg { padding: 16px 30px; font-size: 17px; }
.eibai-btn--xl { padding: 19px 38px; font-size: 19px; }

/* green = CTA (navy text for contrast) */
.eibai-btn--green { background: var(--hl-green); color: var(--hl-navy); box-shadow: 0 8px 20px rgba(57, 218, 108, 0.28); }
.eibai-btn--green:hover { background: #2fce61; transform: translateY(-2px); box-shadow: 0 12px 26px rgba(57, 218, 108, 0.34); color: var(--hl-navy); }

/* primary = blue (white text) */
.eibai-btn--primary { background: var(--hl-blue); color: #fff; box-shadow: 0 8px 20px rgba(21, 117, 213, 0.26); }
.eibai-btn--primary:hover { background: var(--hl-blue-deep); transform: translateY(-2px); color: #fff; }

/* yellow (navy text) */
.eibai-btn--yellow { background: var(--hl-yellow); color: var(--hl-navy); box-shadow: 0 8px 20px rgba(255, 229, 99, 0.3); }
.eibai-btn--yellow:hover { background: #ffdf3f; transform: translateY(-2px); color: var(--hl-navy); }

/* outlined — for use on light/green-light surfaces (navy) */
.eibai-btn--outlined { background: transparent; color: var(--hl-navy); border-color: rgba(32, 42, 68, 0.4); }
.eibai-btn--outlined:hover { background: rgba(32, 42, 68, 0.07); border-color: var(--hl-navy); transform: translateY(-2px); color: var(--hl-navy); }

.eibai-btn--full { width: 100%; }

/* Hero secondary action */
.eibai-hero-alt {
  font-family: var(--font-body); font-weight: 600; font-size: 19px; line-height: 1;
  padding: 19px 34px; border-radius: var(--radius-md); background: transparent; cursor: pointer;
  border: 2px solid rgba(255, 255, 255, 0.55); color: #fff;
  transition: all var(--duration-base) var(--ease-standard);
}
.eibai-hero-alt:hover { background: rgba(255, 255, 255, 0.14); border-color: #fff; color: #fff; transform: translateY(-2px); }

/* ============================================================
   Badges / pills
   ============================================================ */
.eibai-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-heading); font-weight: 600; font-size: 13px;
  letter-spacing: 0.02em; line-height: 1;
  padding: 7px 14px; border-radius: var(--radius-pill);
}
.eibai-badge--sm { font-size: 11px; padding: 4px 9px; }
.eibai-badge--solid-yellow { background: var(--hl-yellow); color: var(--hl-navy); }
.eibai-badge--solid-blue { background: var(--hl-blue); color: #fff; }
.eibai-badge--solid-green { background: var(--hl-green); color: var(--hl-navy); }
.eibai-badge--soft-blue { background: var(--hl-blue-light); color: var(--hl-blue-deep); }
.eibai-badge--soft-green { background: var(--hl-green-light); color: #1c7a3e; }
.eibai-badge--soft-orange { background: #ffe9d2; color: #b25408; }
.eibai-badge--soft-neutral { background: #eef0f3; color: var(--text-muted); }

/* ============================================================
   Header (sticky)
   ============================================================ */
.eibai-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-subtle);
}
.eibai-header__inner {
  max-width: 1200px; margin: 0 auto; height: 66px; padding: 0 32px;
  display: flex; align-items: center; gap: 24px;
}
.eibai-header__logo { display: flex; align-items: center; text-decoration: none; }
.eibai-header__logo img { height: 46px; display: block; }
.eibai-header__eyebrow {
  font-family: var(--font-heading); font-weight: 600; font-size: 13px;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted);
  border-left: 1px solid var(--border-default); padding-left: 20px; white-space: nowrap;
}
.eibai-nav { display: flex; gap: 4px; margin-left: auto; }
.eibai-nav__link {
  font-family: var(--font-heading); font-weight: 500; font-size: 15px; color: var(--text-body);
  padding: 8px 12px; border-radius: var(--radius-sm); text-decoration: none;
}
.eibai-nav__link:hover { color: var(--hl-blue); background: var(--surface-subtle); }
.eibai-header__cta { flex: 0 0 auto; }
.eibai-nav-toggle { display: none; }

/* ============================================================
   Hero
   ============================================================ */
.eibai-hero { background: var(--hl-navy); position: relative; overflow: hidden; }
.eibai-hero__circle { position: absolute; border-radius: 50%; pointer-events: none; }
.eibai-hero__circle--a { width: 380px; height: 380px; background: var(--hl-yellow); opacity: 0.14; top: -140px; right: -100px; }
.eibai-hero__circle--b { width: 220px; height: 220px; background: var(--hl-green); opacity: 0.12; bottom: -80px; left: -60px; }
.eibai-hero__circle--c { width: 110px; height: 110px; border: 3px solid rgba(255, 255, 255, 0.18); top: 120px; left: 12%; }
.eibai-hero__inner { max-width: 1080px; margin: 0 auto; padding: 92px 32px 84px; text-align: center; position: relative; }
.eibai-hero__title {
  font-family: var(--font-heading); font-weight: 700;
  font-size: clamp(58px, 8.5vw, 104px); line-height: 1.04; letter-spacing: -0.02em;
  color: #fff; margin: 26px 0 0;
}
.eibai-hero__before {
  font-weight: 300; font-style: italic; color: rgba(255, 255, 255, 0.78);
  font-size: 0.62em; vertical-align: middle; padding: 0 6px;
}
.eibai-hero__stand {
  font-family: var(--font-body); font-size: clamp(18px, 1.9vw, 21px); line-height: 1.45;
  color: rgba(255, 255, 255, 0.78); max-width: 840px; margin: 24px auto 0; text-align: center; text-wrap: pretty;
}
.eibai-hero__stand-line { display: block; }
.eibai-hero__actions { display: flex; gap: 14px; justify-content: center; margin-top: 36px; flex-wrap: wrap; }
.eibai-hero__counter { margin-top: 40px; display: flex; justify-content: center; }

/* Counter pill */
.eibai-counter {
  display: inline-flex; align-items: center; gap: 12px;
  background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-pill); padding: 9px 18px 9px 12px;
}
.eibai-counter__dots { display: flex; }
.eibai-counter__dot { width: 22px; height: 22px; border-radius: 50%; display: inline-block; border: 2px solid var(--hl-navy); }
.eibai-counter__dot:not(:first-child) { margin-left: -7px; }
.eibai-counter__dot--green { background: var(--hl-green); }
.eibai-counter__dot--yellow { background: var(--hl-yellow); }
.eibai-counter__dot--orange { background: var(--hl-orange); }
.eibai-counter__dot--blue { background: var(--hl-blue); }
.eibai-counter__text { font-family: var(--font-body); font-size: 15.5px; color: rgba(255, 255, 255, 0.92); }
.eibai-counter__text strong { font-family: var(--font-heading); font-weight: 700; }

/* ============================================================
   Quote band
   ============================================================ */
.eibai-quote { background: var(--surface-subtle); border-bottom: 1px solid var(--border-subtle); }
.eibai-quote__inner { max-width: 880px; margin: 0 auto; padding: 44px 32px; text-align: center; }
.eibai-quote__text {
  font-family: var(--font-heading); font-weight: 600; font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.4; color: var(--hl-navy); text-wrap: pretty;
}
.eibai-quote__cite { font-size: 15px; color: var(--text-muted); margin-top: 12px; }

/* ============================================================
   Declaration
   ============================================================ */
.eibai-decl { background: #fff; }
.eibai-decl__inner { max-width: 760px; margin: 0 auto; padding: 88px 32px 80px; }
.eibai-decl__head { text-align: center; }
.eibai-decl__title { font-family: var(--font-heading); font-weight: 600; font-size: clamp(30px, 4vw, 40px); line-height: 1.2; color: var(--hl-navy); margin-top: 16px; }
.eibai-decl__body { margin-top: 40px; font-size: 19px; line-height: 1.65; color: var(--text-body); }
.eibai-decl__body p { text-wrap: pretty; }
.eibai-decl__body p + p { margin-top: 18px; }
.eibai-decl__lead { font-family: var(--font-heading); font-weight: 600; color: var(--hl-navy); }
.eibai-pledge-list { list-style: none; margin: 18px 0 26px; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.eibai-pledge-list__item { display: flex; gap: 14px; align-items: flex-start; }
.eibai-pledge-list__item strong { font-family: var(--font-heading); font-weight: 600; color: var(--hl-navy); }
.eibai-check { width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0; margin-top: 2px; background: var(--hl-green); color: var(--hl-navy); display: inline-flex; align-items: center; justify-content: center; }
.eibai-check svg { width: 15px; height: 15px; }
.eibai-decl__author { margin-top: 44px; border-top: 1px solid var(--border-subtle); padding-top: 32px; text-align: center; }
.eibai-decl__author-name { font-family: var(--font-heading); font-weight: 600; font-size: 17px; color: var(--hl-navy); }
.eibai-decl__author-role { font-size: 14.5px; color: var(--text-muted); margin-top: 2px; }
.eibai-decl__cta { display: flex; justify-content: center; margin-top: 36px; }

/* ============================================================
   Pledge form section
   ============================================================ */
.eibai-pledge { background: var(--hl-blue-light); }
.eibai-pledge__inner { max-width: 1200px; margin: 0 auto; padding: 88px 32px; display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: start; }
.eibai-pledge__intro { position: sticky; top: 100px; }
.eibai-pledge__title { font-family: var(--font-heading); font-weight: 600; font-size: clamp(30px, 4vw, 40px); line-height: 1.2; color: var(--hl-navy); margin-top: 18px; text-wrap: pretty; }
.eibai-pledge__lede { font-size: 18px; color: var(--text-muted); margin-top: 16px; line-height: 1.5; }
.eibai-pledge__points { list-style: none; margin: 26px 0 0; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.eibai-pledge__points li { display: flex; gap: 12px; align-items: center; }
.eibai-pledge__points span.txt { font-family: var(--font-heading); font-weight: 600; font-size: 16.5px; color: var(--hl-navy); }
.eibai-point-check { width: 26px; height: 26px; border-radius: 50%; background: #fff; color: var(--hl-blue); display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; box-shadow: var(--elevation-1); }
.eibai-point-check svg { width: 14px; height: 14px; }

.eibai-card { background: #fff; border-radius: var(--radius-xl); box-shadow: var(--elevation-3); padding: 40px; }

/* Form */
.eibai-form { display: flex; flex-direction: column; gap: 22px; }
.eibai-fieldset { display: flex; flex-direction: column; gap: 10px; border: 0; padding: 0; margin: 0; }
.eibai-label { font-family: var(--font-heading); font-weight: 600; font-size: 15px; color: var(--text-strong); }
.eibai-req { color: var(--color-danger); }
.eibai-roles { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 18px; }
.eibai-radio, .eibai-checkbox { display: flex; align-items: flex-start; gap: 10px; cursor: pointer; font-size: 15px; color: var(--text-body); line-height: 1.4; }
.eibai-radio input, .eibai-checkbox input { width: 18px; height: 18px; margin: 1px 0 0; flex: 0 0 auto; accent-color: var(--hl-blue); cursor: pointer; }
.eibai-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.eibai-grid-org { display: grid; grid-template-columns: 1.4fr 1fr; gap: 18px; }
.eibai-field { display: flex; flex-direction: column; gap: 6px; }
.eibai-field > label { font-family: var(--font-heading); font-weight: 600; font-size: 13px; color: var(--text-strong); }
.eibai-input, .eibai-select {
  width: 100%; box-sizing: border-box; padding: 12px 14px; font-size: 15px; font-family: var(--font-body);
  color: var(--hl-navy); background: #fff; border: 1.5px solid #dbe0ec; border-radius: var(--radius-md);
  line-height: 1.3; transition: border-color 0.15s, box-shadow 0.15s;
}
.eibai-input::placeholder { color: var(--text-subtle); }
.eibai-input:focus, .eibai-select:focus { outline: none; border-color: var(--hl-blue); box-shadow: 0 0 0 3px rgba(21, 117, 213, 0.16); }
.eibai-input.has-error, .eibai-select.has-error { border-color: var(--color-danger); }
.eibai-select {
  appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%235c6478' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><path d='M6 9l6 6 6-6'/></svg>");
  background-repeat: no-repeat; background-position: right 13px center; padding-right: 40px;
}
.eibai-error { font-size: 13px; color: var(--color-danger); }
.eibai-pledgebox { background: var(--surface-subtle); border-radius: var(--radius-md); padding: 18px; display: flex; flex-direction: column; gap: 14px; border: 2px solid transparent; }
.eibai-pledgebox.has-error { border-color: var(--color-danger); }
.eibai-pledgebox__main { font-weight: 600; color: var(--hl-navy); }
.eibai-pledgebox__opts { border-top: 1px solid var(--border-default); padding-top: 14px; display: flex; flex-direction: column; gap: 12px; }
.eibai-form__fineprint { font-size: 13px; color: var(--text-muted); margin: 0; text-align: center; }
.eibai-honeypot { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }
.eibai-turnstile-wrap { display: flex; flex-direction: column; gap: 8px; }

/* Success state */
.eibai-success { background: var(--hl-green-light); border: 2px solid var(--hl-green); border-radius: var(--radius-lg); padding: 36px 32px; text-align: center; }
.eibai-success__icon { width: 56px; height: 56px; border-radius: 50%; background: var(--hl-green); color: var(--hl-navy); display: inline-flex; align-items: center; justify-content: center; }
.eibai-success__icon svg { width: 28px; height: 28px; }
.eibai-success__title { font-family: var(--font-heading); font-weight: 600; font-size: 26px; color: var(--hl-navy); margin-top: 16px; }
.eibai-success__body { font-size: 17px; color: var(--text-body); margin: 10px auto 0; max-width: 420px; }
.eibai-success__actions { display: flex; gap: 12px; justify-content: center; margin-top: 22px; flex-wrap: wrap; }

/* ============================================================
   Wall
   ============================================================ */
.eibai-wall { background: #fff; }
.eibai-wall__inner { max-width: 1200px; margin: 0 auto; padding: 88px 32px; }
.eibai-wall__head { text-align: center; max-width: 720px; margin: 0 auto; }
.eibai-wall__title { font-family: var(--font-heading); font-weight: 600; font-size: clamp(28px, 3.6vw, 38px); line-height: 1.2; color: var(--hl-navy); margin-top: 16px; }
.eibai-wall__title .num { color: var(--hl-blue); }
.eibai-wall__sub { font-size: 18px; color: var(--text-muted); margin-top: 12px; }
.eibai-wall__disclaimer { font-size: 13px; color: var(--text-subtle); margin-top: 10px; }
.eibai-filters { display: flex; gap: 8px; justify-content: center; margin-top: 36px; flex-wrap: wrap; }
.eibai-filter { font-family: var(--font-heading); font-weight: 500; font-size: 14px; cursor: pointer; padding: 8px 16px; border-radius: var(--radius-pill); border: 2px solid var(--border-default); background: #fff; color: var(--text-body); transition: all var(--duration-base) var(--ease-standard); }
.eibai-filter:hover { border-color: var(--hl-blue); }
.eibai-filter.is-active { border-color: var(--hl-blue); background: var(--hl-blue-light); color: var(--hl-blue-dark); }
.eibai-wall__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 44px; }
.eibai-signer { border: 1px solid var(--border-subtle); border-radius: var(--radius-lg); padding: 16px 18px; display: flex; flex-direction: column; gap: 8px; background: var(--surface-card); box-shadow: var(--elevation-1); }
.eibai-signer.is-new { background: var(--hl-green-light); }
.eibai-signer__top { display: flex; align-items: center; gap: 8px; justify-content: space-between; }
.eibai-signer__name { font-family: var(--font-heading); font-weight: 600; font-size: 16px; color: var(--hl-navy); }
.eibai-signer__meta { display: flex; align-items: center; gap: 8px; }
.eibai-signer__state { font-size: 13px; color: var(--text-muted); }
.eibai-wall__empty { margin-top: 40px; text-align: center; border: 2px dashed var(--border-default); border-radius: var(--radius-lg); padding: 48px 32px; background: var(--surface-subtle); }
.eibai-wall__empty-title { font-family: var(--font-heading); font-weight: 600; font-size: 20px; color: var(--hl-navy); }
.eibai-wall__empty-body { font-size: 16px; color: var(--text-muted); margin-top: 8px; }
.eibai-wall__empty .eibai-btn { margin-top: 22px; }

/* ============================================================
   White paper (gated)
   ============================================================ */
.eibai-wp { background: var(--surface-subtle); }
.eibai-wp__inner { max-width: 1200px; margin: 0 auto; padding: 88px 32px; display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 64px; align-items: center; }
.eibai-wp__cover-wrap { position: relative; justify-self: center; }
.eibai-wp__cover-shadow { position: absolute; inset: 18px -18px -18px 18px; background: var(--hl-blue-light); border-radius: var(--radius-lg); }
.eibai-wp__cover { position: relative; width: 340px; max-width: 100%; aspect-ratio: 8.5 / 11; border-radius: var(--radius-md); background: linear-gradient(160deg, var(--hl-navy) 0%, #2b3a63 100%); color: #fff; box-shadow: var(--elevation-3); padding: 34px 30px; display: flex; flex-direction: column; overflow: hidden; }
.eibai-wp__cover-c1 { position: absolute; width: 150px; height: 150px; border-radius: 50%; background: var(--hl-green); opacity: 0.18; bottom: -50px; right: -40px; }
.eibai-wp__cover-c2 { position: absolute; width: 90px; height: 90px; border-radius: 50%; background: var(--hl-yellow); opacity: 0.2; top: 70px; right: -30px; }
.eibai-wp__cover img { height: 26px; align-self: flex-start; }
.eibai-wp__cover-foot { margin-top: auto; position: relative; }
.eibai-wp__cover-title { font-family: var(--font-heading); font-weight: 700; font-size: 40px; line-height: 1.08; letter-spacing: -0.01em; }
.eibai-wp__cover-sub { font-family: var(--font-body); font-size: 14.5px; color: rgba(255, 255, 255, 0.78); margin-top: 14px; line-height: 1.45; }
.eibai-wp__cover-meta { font-family: var(--font-heading); font-weight: 500; font-size: 12.5px; color: rgba(255, 255, 255, 0.6); margin-top: 18px; letter-spacing: 0.06em; text-transform: uppercase; }
.eibai-wp__lock { position: absolute; inset: 0; background: rgba(32, 42, 68, 0.55); -webkit-backdrop-filter: blur(3px); backdrop-filter: blur(3px); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; }
.eibai-wp__lock-icon { width: 54px; height: 54px; border-radius: 50%; background: rgba(255, 255, 255, 0.14); border: 1.5px solid rgba(255, 255, 255, 0.4); display: inline-flex; align-items: center; justify-content: center; color: #fff; }
.eibai-wp__lock-label { font-family: var(--font-heading); font-weight: 600; font-size: 15px; color: #fff; }
.eibai-wp__title { font-family: var(--font-heading); font-weight: 600; font-size: clamp(28px, 3.6vw, 38px); line-height: 1.2; color: var(--hl-navy); margin-top: 16px; text-wrap: pretty; }
.eibai-wp__lede { font-size: 18px; color: var(--text-muted); margin-top: 14px; line-height: 1.5; max-width: 560px; }
.eibai-wp__bullets { display: flex; flex-direction: column; gap: 16px; margin-top: 28px; }
.eibai-wp__bullet { display: flex; gap: 14px; align-items: flex-start; }
.eibai-wp__bullet-ic { width: 28px; height: 28px; border-radius: var(--radius-sm); background: #fff; color: var(--hl-blue); display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; box-shadow: var(--elevation-1); }
.eibai-wp__bullet-ic svg { width: 15px; height: 15px; }
.eibai-wp__bullet-txt { font-size: 16.5px; color: var(--text-body); line-height: 1.5; }
.eibai-wp__bullet-txt strong { font-family: var(--font-heading); font-weight: 600; color: var(--hl-navy); }
.eibai-wp__actions { display: flex; gap: 14px; margin-top: 32px; align-items: center; flex-wrap: wrap; }
.eibai-wp__note { font-size: 13.5px; color: var(--text-muted); }
.eibai-wp__delivered { display: flex; gap: 12px; align-items: flex-start; background: var(--hl-green-light); border: 1px solid #bfeccb; border-radius: var(--radius-md); padding: 16px 18px; max-width: 540px; }
.eibai-wp__delivered-ic { width: 26px; height: 26px; border-radius: 50%; background: var(--hl-green); color: var(--hl-navy); display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }
.eibai-wp__delivered-ic svg { width: 15px; height: 15px; }
.eibai-wp__delivered > span:last-child { font-size: 15.5px; color: var(--text-body); line-height: 1.5; }

/* ============================================================
   Share + badge
   ============================================================ */
.eibai-share { background: var(--hl-navy); }
.eibai-share__inner { max-width: 1200px; margin: 0 auto; padding: 88px 32px; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 64px; align-items: center; }
.eibai-share__title { font-family: var(--font-heading); font-weight: 600; font-size: clamp(28px, 3.6vw, 38px); line-height: 1.2; color: #fff; margin-top: 16px; text-wrap: pretty; }
.eibai-share__lede { font-size: 18px; color: rgba(255, 255, 255, 0.78); margin-top: 14px; line-height: 1.5; max-width: 520px; }
.eibai-share__chips { display: flex; gap: 12px; margin-top: 30px; flex-wrap: wrap; }
.eibai-share-chip { display: inline-flex; align-items: center; gap: 9px; text-decoration: none; cursor: pointer; font-family: var(--font-body); font-weight: 600; font-size: 16px; color: var(--hl-navy); background: #fff; border: 2px solid transparent; border-radius: var(--radius-md); padding: 11px 20px 11px 16px; box-shadow: var(--elevation-1); transition: all var(--duration-base) var(--ease-standard); }
.eibai-share-chip:hover { transform: translateY(-2px); box-shadow: var(--elevation-2); color: var(--hl-navy); }
.eibai-share-chip svg { width: 20px; height: 20px; }
.eibai-share-chip--copy { background: transparent; color: #fff; border-color: rgba(255, 255, 255, 0.4); box-shadow: none; }
.eibai-share-chip--copy svg { stroke: #fff; }
.eibai-share-chip--copy:hover { color: #fff; box-shadow: none; border-color: #fff; }
.eibai-share-chip--copy.is-copied { background: var(--hl-green); border-color: var(--hl-green); color: var(--hl-navy); }
.eibai-share-chip--copy.is-copied svg { stroke: var(--hl-navy); }
.eibai-badge-col { justify-self: center; text-align: center; }
.eibai-badge-card { width: 320px; max-width: 100%; margin: 0 auto; background: #fff; border-radius: var(--radius-xl); padding: 22px; box-shadow: 0 20px 48px rgba(0, 0, 0, 0.4); }
.eibai-badge-card img { width: 100%; height: auto; display: block; border-radius: var(--radius-lg); }
.eibai-badge-col__dl { margin-top: 26px; }
.eibai-badge-col__cap { font-size: 13px; color: rgba(255, 255, 255, 0.6); margin-top: 14px; }

/* ============================================================
   Footer
   ============================================================ */
.eibai-footer { background: var(--hl-indigo); color: #fff; }
.eibai-footer__inner { max-width: 1200px; margin: 0 auto; padding: 48px 32px 32px; }
.eibai-footer__top { display: flex; justify-content: space-between; align-items: flex-start; gap: 40px; flex-wrap: wrap; }
.eibai-footer__brand img { height: 36px; display: block; }
.eibai-footer__mission { margin-top: 14px; color: rgba(255, 255, 255, 0.7); font-size: 15px; max-width: 480px; line-height: 1.55; }
.eibai-footer__links { display: flex; flex-direction: column; gap: 10px; align-items: flex-end; }
.eibai-footer__links a { color: rgba(255, 255, 255, 0.85); font-size: 15px; text-decoration: none; font-family: var(--font-heading); font-weight: 500; }
.eibai-footer__links a:hover { color: #fff; }
.eibai-footer__links .muted, .eibai-footer__links span { color: rgba(255, 255, 255, 0.7); font-size: 14.5px; font-family: var(--font-body); font-weight: 400; }
.eibai-footer__bottom { margin-top: 36px; padding-top: 22px; border-top: 1px solid rgba(255, 255, 255, 0.15); display: flex; justify-content: space-between; color: rgba(255, 255, 255, 0.55); font-size: 13px; flex-wrap: wrap; gap: 10px; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 991px) {
  .eibai-pledge__inner { grid-template-columns: 1fr; gap: 40px; }
  .eibai-pledge__intro { position: static; }
  .eibai-wp__inner { grid-template-columns: 1fr; gap: 44px; }
  .eibai-wp__cover-wrap { order: -1; }
  .eibai-share__inner { grid-template-columns: 1fr; gap: 44px; }
  .eibai-wall__grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .eibai-nav { display: none; }
  .eibai-header__inner { gap: 14px; }
  .eibai-section-inner,
  .eibai-hero__inner, .eibai-quote__inner, .eibai-decl__inner,
  .eibai-pledge__inner, .eibai-wall__inner, .eibai-wp__inner,
  .eibai-share__inner, .eibai-footer__inner, .eibai-header__inner { padding-left: 20px; padding-right: 20px; }
  .eibai-hero__inner { padding-top: 64px; padding-bottom: 60px; }
  .eibai-decl__inner, .eibai-pledge__inner, .eibai-wall__inner, .eibai-wp__inner, .eibai-share__inner { padding-top: 60px; padding-bottom: 56px; }
  .eibai-card { padding: 26px 22px; }
  .eibai-wall__grid { grid-template-columns: repeat(2, 1fr); }
  .eibai-roles { grid-template-columns: 1fr; }
  .eibai-footer__top { flex-direction: column; }
  .eibai-footer__links { align-items: flex-start; }
  .eibai-hero__circle--a { width: 240px; height: 240px; }
}
@media (max-width: 480px) {
  .eibai-grid-2, .eibai-grid-org { grid-template-columns: 1fr; }
  .eibai-wall__grid { grid-template-columns: 1fr; }
  .eibai-header__eyebrow { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .eibai-root *, .eibai-root *::before, .eibai-root *::after { transition: none !important; animation: none !important; scroll-behavior: auto !important; }
}

/* ============================================================
   Hostile-global overrides
   The site's reset.css + theme + WooCommerce set button
   background/color/border with !important (incl. a pink :hover).
   Native <button> elements lose the cascade, so force brand
   styling here (scoped + !important). <a> buttons are unaffected
   but covered too for consistency.
   ============================================================ */
.eibai-root .eibai-btn { border-width: 2px !important; border-style: solid !important; }
.eibai-root .eibai-btn--green,
.eibai-root .eibai-btn--green:hover,
.eibai-root .eibai-btn--green:focus { color: var(--hl-navy) !important; border-color: transparent !important; }
.eibai-root .eibai-btn--green { background: var(--hl-green) !important; }
.eibai-root .eibai-btn--green:hover { background: #2fce61 !important; }
.eibai-root .eibai-btn--primary,
.eibai-root .eibai-btn--primary:hover,
.eibai-root .eibai-btn--primary:focus { color: #fff !important; border-color: transparent !important; }
.eibai-root .eibai-btn--primary { background: var(--hl-blue) !important; }
.eibai-root .eibai-btn--primary:hover { background: var(--hl-blue-deep) !important; }
.eibai-root .eibai-btn--yellow,
.eibai-root .eibai-btn--yellow:hover,
.eibai-root .eibai-btn--yellow:focus { color: var(--hl-navy) !important; border-color: transparent !important; }
.eibai-root .eibai-btn--yellow { background: var(--hl-yellow) !important; }
.eibai-root .eibai-btn--yellow:hover { background: #ffdf3f !important; }
.eibai-root .eibai-btn--outlined { background: transparent !important; color: var(--hl-navy) !important; border-color: rgba(32, 42, 68, 0.4) !important; }
.eibai-root .eibai-btn--outlined:hover { background: rgba(32, 42, 68, 0.07) !important; color: var(--hl-navy) !important; border-color: var(--hl-navy) !important; }

.eibai-root .eibai-hero-alt { background: transparent !important; color: #fff !important; border: 2px solid rgba(255, 255, 255, 0.55) !important; }
.eibai-root .eibai-hero-alt:hover { background: rgba(255, 255, 255, 0.14) !important; color: #fff !important; border-color: #fff !important; }

.eibai-root .eibai-share-chip { background: #fff !important; color: var(--hl-navy) !important; border: 2px solid transparent !important; }
.eibai-root .eibai-share-chip:hover { background: #fff !important; color: var(--hl-navy) !important; }
.eibai-root .eibai-share-chip--copy { background: transparent !important; color: #fff !important; border-color: rgba(255, 255, 255, 0.4) !important; }
.eibai-root .eibai-share-chip--copy:hover { background: transparent !important; color: #fff !important; border-color: #fff !important; }
.eibai-root .eibai-share-chip--copy.is-copied { background: var(--hl-green) !important; color: var(--hl-navy) !important; border-color: var(--hl-green) !important; }

.eibai-root .eibai-filter { background: #fff !important; color: var(--text-body) !important; border: 2px solid var(--border-default) !important; }
.eibai-root .eibai-filter:hover { background: #fff !important; color: var(--text-body) !important; border-color: var(--hl-blue) !important; }
.eibai-root .eibai-filter.is-active { background: var(--hl-blue-light) !important; color: var(--hl-blue-dark) !important; border-color: var(--hl-blue) !important; }

/* ── Elementor global kit (.elementor-kit-6 h1/h2/a in post-6.css) forces every
   heading to blue / 38px / weight-700 and every link to #2423ff. Re-assert the
   design's heading + link styling at higher specificity (.eibai-root → wins). ── */
.eibai-root .eibai-hero__title { color: #fff !important; font-weight: 700 !important; font-size: clamp(58px, 8.5vw, 104px) !important; line-height: 1.04 !important; letter-spacing: -0.02em !important; }
.eibai-root .eibai-decl__title { color: var(--hl-navy) !important; font-weight: 600 !important; font-size: clamp(30px, 4vw, 40px) !important; line-height: 1.2 !important; }
.eibai-root .eibai-pledge__title { color: var(--hl-navy) !important; font-weight: 600 !important; font-size: clamp(30px, 4vw, 40px) !important; line-height: 1.2 !important; }
.eibai-root .eibai-wall__title { color: var(--hl-navy) !important; font-weight: 600 !important; font-size: clamp(28px, 3.6vw, 38px) !important; line-height: 1.2 !important; }
.eibai-root .eibai-wall__title .num { color: var(--hl-blue) !important; }
.eibai-root .eibai-wp__title { color: var(--hl-navy) !important; font-weight: 600 !important; font-size: clamp(28px, 3.6vw, 38px) !important; line-height: 1.2 !important; }
.eibai-root .eibai-share__title { color: #fff !important; font-weight: 600 !important; font-size: clamp(28px, 3.6vw, 38px) !important; line-height: 1.2 !important; }
.eibai-root .eibai-success__title { color: var(--hl-navy) !important; font-weight: 600 !important; font-size: 26px !important; line-height: 1.2 !important; }
.eibai-root .eibai-decl__lead { color: var(--hl-navy) !important; }
.eibai-root .eibai-nav__link { color: var(--text-body) !important; }
.eibai-root .eibai-nav__link:hover { color: var(--hl-blue) !important; }
.eibai-root .eibai-footer__legal a { color: rgba(255, 255, 255, 0.55); text-decoration: none; }
.eibai-root .eibai-footer__legal a:hover { color: #fff; text-decoration: underline; }
