/* public/assets/css/pages/event-onboarding.css — wizard additions only.
 * Base layout, tokens, and timeline primitives come from catalog-home.css +
 * events.css (linked in the page shell). Scoped under .page-event-onboarding. */

.page-event-onboarding .eob-card {
  max-width: 880px;
  margin: 24px auto 48px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 28px 36px 32px;
  box-shadow: 0 8px 32px rgba(15, 23, 41, 0.06);
}

.page-event-onboarding .eob-card--narrow { max-width: 560px; text-align: center; }

/* ---------- page beneath the wizard: plain veil, no content ---------- */
.page-event-onboarding.eob-page-veil { min-height: 60vh; }
/* The popup backdrop itself (scoped to the wizard modal only — the shared
   Modal keeps its own default): requested rgb(170 170 174 / 62%). */
#modal-container:not(:empty):has(.eob-wizard-modal) {
  background: rgb(170 170 174 / 62%);
}

/* ---------- wizard popup: two-pane skin over Components.Modal ---------- */
.eob-wizard-modal {
  width: min(1280px, calc(100vw - 48px));
  max-width: none;
  padding: 0;
  overflow: hidden;
  border-radius: 18px;
  /* Anchors the floating exit X — base .modal is not positioned, so without
     this the absolutely-placed button would escape the modal box. */
  position: relative;
}
.eob-wizard-modal .modal__header {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 3;
  padding: 0;
  border: 0;
  background: transparent;
}
.eob-wizard-modal .modal__header .modal__heading { display: none; }
/* The exit X is an escape hatch, not a call to action: no fill, no shadow,
   muted glyph (IconButton size 'sm' — 28px box / 14px icon). The ghost hover
   from icon-button.css still tints the circle; the reset's :focus-visible ring
   still shows when a keyboard user Tabs onto it. */
.eob-wizard-modal .modal__header .modal__close {
  --icon-btn-fg: var(--color-text-muted);
  border-radius: 50%;
}
.eob-wizard-modal .modal__header .modal__close:hover:not(:disabled) {
  --icon-btn-fg: var(--color-text);
}
/* The header is a zero-height transparent strip over the two panes, so the X
   is positioned rather than laid out — top-right of the modal, above the rail
   and pane content. */
.eob-wizard-modal .modal__header .modal__close.eob-wizard__exit {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
}
.eob-wizard-modal .modal__body { padding: 0; max-height: none; }
/* Initial focus target (event-onboarding.js ensureModal): a non-interactive
   container, so the reset's focus ring must not draw around the whole wizard. */
.eob-wizard-modal .eob-wizard:focus,
.eob-wizard-modal .eob-wizard:focus-visible { outline: none; }

.eob-wizard-modal svg { max-width: 24px; max-height: 24px; }
.eob-wizard-modal .eob-done__check .eob-icon { max-width: 28px; max-height: 28px; }

.eob-wizard {
  display: grid;
  grid-template-columns: 340px 1fr;
  min-height: 760px;
}

/* left rail — inset a little from the white pane on all sides so it reads as a
   floating card (shorter than the pane top & bottom). */
.eob-rail {
  --eob-rail-accent: #F5C518;
  /* Placeholder cover (London) so the rail is never bare; replaced by
     event.coverUrl via --eob-rail-bg when the BE/ops supply one. */
  /* no local placeholder — gradient-only until event.coverUrl (--eob-rail-bg) */
  margin: 16px;
  border-radius: 14px;
  background-color: var(--color-ink);
  /* dark overlay on top; event.coverUrl (--eob-rail-bg) or the placeholder */
  background-image:
    linear-gradient(180deg, rgba(10, 18, 38, 0.42), rgba(10, 18, 38, 0.88)),
    var(--eob-rail-bg, none);
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
}
.eob-rail__brand {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  margin: 0 0 18px;
}
.eob-rail__event { font-size: 26px; font-weight: 700; margin: 0 0 4px; }
.eob-rail__role {
  color: var(--color-accent-soft);
  font-weight: 600;
  font-size: 15px;
  margin: 0 0 18px;
}
.eob-rail .eob-icon { width: 15px; height: 15px; flex: none; }
.eob-rail__steps {
  list-style: none;
  margin: 0;
  padding: 44px 0 0;   /* headroom below the event header */
  /* top-anchored (no flex-grow/centering) — steps read as an ordered list */
  display: flex;
  flex-direction: column;
}
.eob-rail__step {
  display: flex;
  gap: 14px;
  position: relative;
  padding-bottom: 30px;
}
.eob-rail__step:last-child { padding-bottom: 0; }
.eob-rail__step:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 32px;
  bottom: 2px;
  width: 2px;
  background: rgba(255, 255, 255, 0.28);
}
.eob-rail__dot {
  width: 32px;
  height: 32px;
  flex: none;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 255, 255, 0.5);
  font-size: 15px;
  font-weight: 700;
  background: transparent;
  z-index: 1;
}
.eob-rail__step.is-active .eob-rail__dot,
.eob-rail__step.is-done .eob-rail__dot {
  background: #fff;
  border-color: #fff;
  color: var(--color-ink);
}
/* active step highlighted yellow to match the current page (dot + title) */
.eob-rail__step.is-active .eob-rail__dot {
  background: var(--eob-rail-accent);
  border-color: var(--eob-rail-accent);
}
/* The dot+labels now sit inside .eob-rail__step-btn so a reached step can be
 * clicked; the li keeps the connector line and spacing. A <span> is used for
 * steps that aren't reachable yet, so the two render identically and only the
 * interactive one is focusable. */
.eob-rail__step-btn {
  display: flex;
  gap: 14px;
  width: 100%;
  padding: 0;
  border: 0;
  background: none;
  color: inherit;
  font: inherit;
  text-align: left;
}
/* A step you can go back to has to LOOK reachable before you hover it — a
 * hover-only cue is invisible to someone deciding whether to try. Reachable
 * steps sit at full opacity with a brighter ring; unreachable ones are dimmed,
 * so the rail reads as "these three are open, those two aren't" at a glance. */
.eob-rail__step.is-clickable .eob-rail__step-btn {
  cursor: pointer;
  border-radius: 10px;
  padding: 4px 8px;
  margin: -4px -8px;   /* keep the dot on the connector line */
  transition: background var(--motion-fast, 120ms) ease;
}
.eob-rail__step.is-clickable .eob-rail__dot { border-color: rgba(255, 255, 255, 0.85); }
.eob-rail__step:not(.is-clickable):not(.is-active) .eob-rail__step-btn { opacity: 0.55; }

.eob-rail__step.is-clickable:hover .eob-rail__step-btn { background: rgba(255, 255, 255, 0.12); }
.eob-rail__step.is-clickable:hover .eob-rail__label { text-decoration: underline; }
.eob-rail__step.is-clickable:hover .eob-rail__dot { border-color: #fff; }
.eob-rail__step-btn:focus-visible {
  outline: 2px solid var(--eob-rail-accent);
  outline-offset: 3px;
  border-radius: 8px;
}

.eob-rail__labels { display: flex; flex-direction: column; padding-top: 4px; }
.eob-rail__label { font-size: 16px; font-weight: 700; }
.eob-rail__sublabel { font-size: 13px; color: rgba(255, 255, 255, 0.7); }
.eob-rail__step:not(.is-active):not(.is-done) .eob-rail__label { color: rgba(255, 255, 255, 0.75); }
.eob-rail__step.is-active .eob-rail__label { color: var(--eob-rail-accent); }

/* sponsors — pinned at the rail bottom under the centered stepper */
.eob-rail__sponsors { margin-top: 24px; }
.eob-rail__sponsors-title {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin: 0 0 12px;
}
.eob-rail__sponsor-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 20px;
}
.eob-rail__sponsor-logo { max-height: 30px; max-width: 104px; object-fit: contain; opacity: 0.92; }
/* placeholder logo slot until real assets land */
.eob-rail__sponsor--ph {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 84px;
  height: 40px;
  padding: 0 12px;
  border: 1px dashed rgba(255, 255, 255, 0.35);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
}

/* right pane */
.eob-pane {
  padding: 36px 44px 28px;
  overflow-y: auto;
  max-height: min(820px, calc(100vh - 96px));
}
.eob-pane .eob-title { text-align: left; }
.eob-pane .eob-sub { text-align: left; }
.eob-pane .eob-step__head {
  border-bottom: 1px solid var(--color-divider);
  padding-bottom: 16px;
  margin-bottom: 20px;
}

/* sections replace boxed panels on step 1 (wireframe: rule-separated) */
.eob-section { margin-bottom: 24px; }
.eob-section + .eob-section { border-top: 1px solid var(--color-divider); padding-top: 22px; }
.eob-section__title { font-size: var(--text-lg); font-weight: 700; margin: 0 0 16px; }
.eob-req { color: var(--color-danger, #d92d20); margin-left: 2px; }
.eob-label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 6px;
}
.eob-label-row .eob-field__label { margin: 0; }
.page-event-onboarding .eob-company__clear {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--color-text-muted);
  cursor: pointer;
  flex: none;
}
.page-event-onboarding .eob-company__clear:hover {
  background: var(--color-surface-muted, #f0f1f3);
  color: var(--color-text);
}
.page-event-onboarding .eob-company__clear svg { width: 14px; height: 14px; }
.page-event-onboarding .eob-hits-error {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  margin: 10px 2px 0;
}

.eob-field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 20px;
}
.eob-pane .eob-field { display: flex; flex-direction: column; align-items: stretch; gap: 6px; margin-bottom: 0; }
.eob-pane .eob-field__label { width: auto; }

/* ---------- stepper ---------- */
.page-event-onboarding .eob-icon { width: 14px; height: 14px; fill: none; stroke: currentColor; stroke-width: 2.4; }

/* ---------- step chrome ---------- */
.page-event-onboarding .eob-title {
  font-size: 28px;
  font-weight: 700;
  text-align: left;
  letter-spacing: -0.01em;
  margin: 0 0 6px;
}
.page-event-onboarding .eob-sub {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  text-align: left;
  margin: 0;
}
.page-event-onboarding .eob-panel {
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 18px 20px;
  margin-bottom: 16px;
}
.page-event-onboarding .eob-panel__title {
  font-size: var(--text-sm);
  font-weight: 600;
  margin: 0 0 12px;
}
.page-event-onboarding .eob-field { display: flex; flex-direction: column; align-items: stretch; gap: 0; margin-bottom: 0; }
.page-event-onboarding .eob-field__label {
  width: auto;
  flex: none;
  text-align: left;
  font-size: var(--text-md);
  font-weight: 600;
  color: var(--color-text);
  margin: 0 0 7px;
}
.page-event-onboarding .eob-input {
  width: 100%;
  box-sizing: border-box;
  flex: none;
  border: 1px solid var(--color-border-strong);
  border-radius: 10px;
  padding: 12px 14px;
  font-size: var(--text-md);
  font-family: var(--font-sans);
  color: var(--color-text);
  background: var(--color-surface);
}
.page-event-onboarding .eob-input::placeholder { color: var(--color-text-subtle); }
.page-event-onboarding .eob-input:disabled {
  background: var(--color-surface-muted, #f4f5f7);
  color: var(--color-text-muted);
  cursor: not-allowed;
}
.page-event-onboarding .eob-input:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px var(--color-accent-soft);
}
.page-event-onboarding .eob-actions {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}
.page-event-onboarding .eob-actions--center { justify-content: center; }
.page-event-onboarding .eob-footnote {
  text-align: center;
  color: var(--color-text-subtle);
  font-size: var(--text-xs);
  margin-top: 16px;
}
.page-event-onboarding .eob-error {
  color: var(--color-danger);
  font-size: var(--text-sm);
  margin: 8px 0 0;
}

/* ---------- step 1: company ---------- */
.page-event-onboarding .eob-company {
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 14px 16px;
  margin-top: 12px;
}
.page-event-onboarding .eob-company--selected {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px var(--color-accent-soft);
}
.page-event-onboarding .eob-company-hits { max-height: 264px; overflow-y: auto; }
.page-event-onboarding .eob-company--hit { cursor: pointer; margin-top: 8px; }
.page-event-onboarding .eob-company--hit:hover { border-color: var(--color-accent); background: var(--color-accent-softer); }
.page-event-onboarding .eob-company__logo,
.page-event-onboarding .eob-dir__logo {
  width: 44px; height: 44px; border-radius: 10px; flex: none;
  display: inline-flex; align-items: center; justify-content: center;
  background: #fff;
  border: 1px solid var(--color-border);
  color: var(--color-ink);
  font-size: var(--text-xs); font-weight: 700;
  overflow: hidden;
}
.page-event-onboarding .eob-company__meta { display: flex; flex-direction: column; min-width: 0; flex: 1; }
.page-event-onboarding .eob-company__desc,
.page-event-onboarding .eob-company__loc {
  color: var(--color-text-muted);
  font-size: var(--text-xs);
}
/* long provider blurbs: never more than two lines on a card */
.page-event-onboarding .eob-company__desc {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.page-event-onboarding .eob-selected-label {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin: 14px 2px 0;
}
.page-event-onboarding .eob-company__check {
  color: var(--color-success);
  display: inline-flex;
}
/* ---------- step 2: event ---------- */
.page-event-onboarding .eob-event {
  display: grid;
  grid-template-columns: 220px 1fr 240px;
  gap: 20px;
  margin-bottom: 16px;
}
/* cover tile = the Events-page hero cover treatment: photo + ink scrim,
   brand line + name pinned to the bottom */
.page-event-onboarding .eob-event__cover {
  position: relative;
  border-radius: 12px;
  background-color: var(--color-ink);
  background-size: cover;
  background-position: center;
  color: #fff;
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 14px;
  overflow: hidden;
}
.page-event-onboarding .eob-event__cover::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 14, 26, 0.15), rgba(10, 14, 26, 0.72));
}
.page-event-onboarding .eob-event__cover-brand,
.page-event-onboarding .eob-event__cover-name { position: relative; z-index: 1; }
.page-event-onboarding .eob-event__cover-brand {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  margin-bottom: 4px;
}
.page-event-onboarding .eob-event__cover-name { font-weight: 700; font-size: var(--text-md); }
.page-event-onboarding .eob-event__phase { margin-bottom: 8px; }
.page-event-onboarding .eob-event__name { font-size: var(--text-lg); font-weight: 700; margin: 0 0 10px; }
.page-event-onboarding .eob-event__preview {
  margin-top: 4px;
  border: 1px solid var(--color-border);
  border-radius: 10px;
}
.page-event-onboarding .eob-event__preview-chev { width: 14px; height: 14px; margin-left: 6px; color: var(--color-accent-text); }
.page-event-onboarding .eob-event__tagline {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  line-height: 1.55;
  margin: 10px 0 0;
  max-width: 46ch;
}
.page-event-onboarding .eob-line {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--text-sm);
  color: var(--color-text);
  margin-bottom: 8px;
}
.page-event-onboarding .eob-event__overview { margin-bottom: 0; }
.page-event-onboarding .eob-event__overview-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4px;
}
.page-event-onboarding .eob-event__overview-info { width: 16px; height: 16px; color: var(--color-text-subtle); }
/* icon rows with hairline dividers (wireframe) */
.page-event-onboarding .eob-kv {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: var(--text-sm);
  padding: 9px 0;
  border-top: 1px solid var(--color-divider);
}
.page-event-onboarding .eob-kv:first-of-type { border-top: 0; }
.page-event-onboarding .eob-kv__icon { width: 16px; height: 16px; flex: none; color: var(--color-text-subtle); }
.page-event-onboarding .eob-kv__k { color: var(--color-text-muted); flex: 1; }
.page-event-onboarding .eob-kv__v { font-weight: 600; text-align: right; }
/* invite-colleagues modal: centered over the wizard (flex-row container) */
.eob-invite-modal {
  position: absolute;
  inset: 0;
  margin: auto;
  height: fit-content;
  z-index: 2;
  width: min(600px, calc(100vw - 48px));
  max-width: min(600px, calc(100vw - 48px));
  max-height: 88vh;
  overflow-y: auto;
  box-shadow: 0 18px 50px rgba(15, 18, 25, 0.35);
}
/* header icon tile (Modal renders .modal__title-icon when icon passed) */
.eob-invite-modal .modal__title-icon {
  width: 48px; height: 48px; border-radius: 14px; flex: none;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--color-accent-soft, #eef0fb);
}
.eob-invite-modal .modal__title-icon-svg { width: 24px; height: 24px; color: var(--color-accent-text); }
/* intro card */
.eob-invite__intro {
  display: flex;
  gap: 18px;
  align-items: center;
  padding: 20px 22px;
  border-radius: 16px;
  background: var(--color-accent-softer, #f2f5ff);
  margin-bottom: 18px;
}
.eob-invite__art { width: 96px; height: 84px; flex: none; }
.eob-invite__intro-body { min-width: 0; }
.eob-invite__intro-title { display: block; font-size: var(--text-md); margin-bottom: 4px; }
.eob-invite__intro-sub { color: var(--color-text-muted); font-size: var(--text-sm); line-height: 1.55; margin: 0; }
/* add row: name + email (with leading icons) + Add */
.eob-invite__add {
  display: grid;
  grid-template-columns: 1fr 1.3fr auto;
  gap: 10px;
  align-items: center;
}
@media (max-width: 560px) {
  .eob-invite__add { grid-template-columns: 1fr; }
}
.eob-invite__inputwrap { position: relative; display: flex; }
.eob-invite__input-icon {
  position: absolute;
  left: 13px; top: 50%; transform: translateY(-50%);
  width: 17px; height: 17px;
  color: var(--color-text-subtle);
  pointer-events: none;
}
/* modal is outside .page-event-onboarding, so .eob-input page styling
   doesn't reach it — mirror step 1's input look here, unscoped */
.eob-invite .eob-input {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid var(--color-border-strong);
  border-radius: 10px;
  padding: 12px 14px 12px 38px;
  font-size: var(--text-md);
  font-family: var(--font-sans);
  color: var(--color-text);
  background: var(--color-surface);
}
.eob-invite .eob-input::placeholder { color: var(--color-text-subtle); }
.eob-invite .eob-input:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px var(--color-accent-soft);
}
.eob-invite .eob-input:disabled { background: var(--color-surface-muted, #f4f5f7); color: var(--color-text-muted); cursor: not-allowed; }
.eob-invite__err { margin: 10px 0 0; }
/* list / empty share one bordered card */
.eob-invite__list {
  margin-top: 14px;
  border: 1px solid var(--color-border);
  border-radius: 14px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 96px;
  justify-content: center;
}
.eob-invite__empty { display: flex; align-items: center; justify-content: center; gap: 14px; text-align: left; }
.eob-invite__empty-icon {
  width: 44px; height: 44px; border-radius: 50%; flex: none;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--color-accent-soft, #eef0fb);
  color: var(--color-accent-text);
}
.eob-invite__empty-icon svg { width: 22px; height: 22px; }
.eob-invite__empty-title { display: block; font-size: var(--text-sm); }
.eob-invite__empty-sub { color: var(--color-text-muted); font-size: var(--text-sm); margin: 2px 0 0; }
.eob-invite__chip {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--color-border);
  border-radius: 10px;
  padding: 10px 12px;
}
.eob-invite__chip-av {
  width: 34px; height: 34px; border-radius: 50%; flex: none;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--color-accent-soft, #eef0fb);
  color: var(--color-accent-text);
  font-size: var(--text-xs); font-weight: 700;
}
.eob-invite__chip-text { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.eob-invite__chip-email { font-size: var(--text-sm); overflow: hidden; text-overflow: ellipsis; }
.eob-invite__chip-name { font-size: var(--text-xs); color: var(--color-text-muted); }
.eob-invite__chip-x {
  border: 0; background: transparent; cursor: pointer;
  color: var(--color-text-subtle); padding: 4px; flex: none;
  display: inline-flex; border-radius: 6px;
}
.eob-invite__chip-x:hover { color: var(--color-ink); background: var(--color-surface-muted, #f4f5f7); }
.eob-invite__chip-x svg { width: 15px; height: 15px; }
.eob-invite__cap { color: var(--color-text-subtle); font-size: var(--text-xs); text-align: center; margin: 2px 0 0; }
/* footer: security note left, actions right */
.eob-invite__footer { justify-content: space-between; align-items: center; }
.eob-invite__secure {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--color-text-muted); font-size: var(--text-xs);
}
.eob-invite__secure-icon { width: 15px; height: 15px; flex: none; color: var(--color-text-subtle); }
.eob-invite__footer-btns { display: flex; gap: 10px; }
/* success state */
.eob-invite--done { text-align: center; padding: 14px 0 6px; }
.eob-invite__done-check {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--color-accent); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 12px;
  box-shadow: 0 0 0 12px var(--color-accent-softer, #f2f5ff);
}
.eob-invite__done-check svg { width: 26px; height: 26px; }
.eob-invite__done-title { display: block; font-size: var(--text-md); }
.eob-invite__done-sub { color: var(--color-text-muted); font-size: var(--text-sm); margin: 4px 0 0; }

/* step-4 event selections: grouped tickable session cards + comment */
.page-event-onboarding .eob-sel__group { margin: 0 0 18px; }
.page-event-onboarding .eob-sel__group-title {
  font-size: var(--text-md);
  font-weight: 700;
  margin: 0 0 10px;
}
.page-event-onboarding .eob-sel__comment { margin: 4px 0 16px; }
.page-event-onboarding .eob-sel__comment-input {
  width: 100%;
  min-height: 84px;
  resize: vertical;
  margin-top: 6px;
}

.page-event-onboarding .eob-sel { display: flex; flex-direction: column; gap: 10px; margin: 4px 0 16px; }
.page-event-onboarding .eob-sel__row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 14px 16px;
  cursor: pointer;
}
.page-event-onboarding .eob-sel__row.is-on {
  background: var(--color-accent-softer, #f2f5ff);
  border-color: var(--color-accent);
}
.page-event-onboarding .eob-sel__check { width: 16px; height: 16px; flex: none; margin-top: 3px; accent-color: var(--color-accent); }
.page-event-onboarding .eob-sel__main { flex: 1; min-width: 0; }
.page-event-onboarding .eob-sel__label { font-size: var(--text-sm); display: block; margin-bottom: 2px; }
.page-event-onboarding .eob-sel__main .eob-line { margin-bottom: 4px; font-size: var(--text-xs); color: var(--color-text-muted); }
.page-event-onboarding .eob-sel__main .eob-line svg { width: 14px; height: 14px; }
.page-event-onboarding .eob-sel__desc { color: var(--color-text-muted); font-size: var(--text-xs); margin: 0; max-width: 60ch; }

/* step-3 venue & logistics */
.page-event-onboarding .eob-venue .eob-kv:first-of-type { border-top: 0; }
.page-event-onboarding .eob-venue__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}
.page-event-onboarding .eob-venue__actions .eob-done__bubble { margin-top: 0; }

/* unlock note under the milestone track */
.page-event-onboarding .eob-timeline__note {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  padding: 9px 12px;
  border-radius: 10px;
  background: var(--color-accent-softer, #f2f5ff);
  color: var(--color-text-muted);
  font-size: var(--text-xs);
}
.page-event-onboarding .eob-timeline__note svg { width: 15px; height: 15px; flex: none; color: var(--color-accent-text); }


/* ---------- step 3: directory ---------- */
.page-event-onboarding .eob-banner {
  display: flex;
  gap: 10px;
  background: var(--color-accent-softer);
  border: 1px solid var(--color-accent-soft);
  border-radius: 10px;
  padding: 12px 14px;
  font-size: var(--text-sm);
  margin-bottom: 16px;
}
.page-event-onboarding .eob-banner .eob-icon { flex: none; margin-top: 2px; color: var(--color-accent-text); }
.page-event-onboarding .eob-banner__text p { margin: 0 0 4px; }
.page-event-onboarding .eob-banner__text p:last-child { margin-bottom: 0; }

/* team-requested rows: locked-checked in the directory (the old summary
   table above the list invited double-selection rejections) */
.page-event-onboarding .eob-dir__nameline { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.page-event-onboarding .eob-dir__requested {
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-text-muted);
  background: var(--color-surface-muted, #f4f5f7);
  border-radius: 999px;
  padding: 2px 10px;
}
.page-event-onboarding .eob-dir__row.is-requested { background: var(--color-surface-muted, #f4f5f7); }
.page-event-onboarding .eob-dir__row.is-requested .eob-dir__check { cursor: not-allowed; }

.page-event-onboarding .eob-toolbar {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.page-event-onboarding .eob-toolbar .search-input { flex: 1; min-width: 220px; }
.page-event-onboarding .eob-counter {
  margin-left: auto;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-accent-text);
  white-space: nowrap;
}

.page-event-onboarding .eob-dir {
  border: 1px solid var(--color-border);
  border-radius: 12px;
  overflow: hidden;
}
.page-event-onboarding .eob-dir__row {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 12px 16px;
  border-bottom: 1px solid var(--color-divider);
  font-size: var(--text-sm);
}
.page-event-onboarding .eob-dir__top { display: flex; align-items: flex-start; gap: 12px; }
.page-event-onboarding .eob-dir__row { position: relative; padding-bottom: 40px; }
.page-event-onboarding .eob-dir__logo-img { width: 100%; height: 100%; object-fit: contain; border-radius: inherit; }
.page-event-onboarding .eob-dir__moreinfo {
  position: absolute;
  right: 14px;
  bottom: 10px;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 1px 3px rgba(15, 18, 25, 0.08);
  color: var(--color-text);
  font-size: var(--text-xs);
  font-weight: 600;
  padding: 5px 12px;
  cursor: pointer;
}
.page-event-onboarding .eob-dir__moreinfo:hover { border-color: var(--color-accent); color: var(--color-accent-text); }
.page-event-onboarding .eob-dir__row.is-selected { background: var(--color-accent-softer); }
.page-event-onboarding .eob-dir__row.is-overcap { outline: 1px solid var(--color-warning); outline-offset: -1px; }

/* two-column: directory + requests rail (wireframe) */
.page-event-onboarding .eob-req-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 250px;
  gap: 18px;
  align-items: start;
}
.page-event-onboarding .eob-req-rail__card {
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 16px;
  position: sticky;
  top: 0;
}
.page-event-onboarding .eob-req-rail__title { font-size: var(--text-md); font-weight: 700; margin: 0 0 10px; }
.page-event-onboarding .eob-req-rail__big strong { font-size: 26px; }
.page-event-onboarding .eob-req-rail__big span { color: var(--color-text-muted); }
.page-event-onboarding .eob-req-rail__sub { color: var(--color-text-muted); font-size: var(--text-xs); margin-top: 2px; }
/* requested-before (muted) + selected-now (accent) stacked against the cap */
.page-event-onboarding .eob-req-rail__bar {
  display: flex;
  height: 6px;
  border-radius: 999px;
  background: var(--color-surface-muted, #f4f5f7);
  overflow: hidden;
  margin-top: 10px;
}
.page-event-onboarding .eob-req-rail__bar-done { background: var(--color-text-subtle); }
.page-event-onboarding .eob-req-rail__bar-now { background: var(--color-accent); }
.page-event-onboarding .eob-req-rail__label {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin: 16px 0 8px;
}
.page-event-onboarding .eob-req-rail__list { list-style: none; margin: 0; padding: 0; }
.page-event-onboarding .eob-req-rail__item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 0;
  border-bottom: 1px solid var(--color-divider);
}
.page-event-onboarding .eob-req-rail__item:last-child { border-bottom: 0; }
.page-event-onboarding .eob-req-rail__logo {
  width: 26px; height: 26px; border-radius: 6px; flex: none;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--color-ink); color: #fff; font-size: 10px; font-weight: 700;
}
.page-event-onboarding .eob-req-rail__name {
  flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis;
  white-space: nowrap; font-size: var(--text-sm);
}
.page-event-onboarding .eob-req-rail__picks {
  display: block; overflow: hidden; text-overflow: ellipsis;
  font-size: var(--text-xs); color: var(--color-text-muted); margin-top: 1px;
}
.page-event-onboarding .eob-req-rail__remove {
  border: 0; background: transparent; cursor: pointer; flex: none;
  width: 24px; height: 24px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--color-text-muted);
}
.page-event-onboarding .eob-req-rail__remove:hover { background: var(--color-surface-muted, #f0f1f3); color: var(--color-text); }
.page-event-onboarding .eob-req-rail__remove svg { width: 12px; height: 12px; }
.page-event-onboarding .eob-req-rail__empty,
.page-event-onboarding .eob-req-rail__note { color: var(--color-text-muted); font-size: var(--text-xs); }
.page-event-onboarding .eob-req-rail__note { margin: 14px 0 0; border-top: 1px solid var(--color-divider); padding-top: 12px; }

/* row internals: side column, why-meet, expander, expanded panel */
.page-event-onboarding .eob-dir__side {
  margin-left: auto; flex: none; display: flex; flex-direction: column;
  align-items: flex-end; gap: 4px;
}
.page-event-onboarding .eob-dir__whylabel {
  font-size: var(--text-xs); font-weight: 700; color: var(--color-text-muted);
}
.page-event-onboarding .eob-dir__loc { color: var(--color-text-muted); font-size: var(--text-xs); }
/* "Discuss: Consumer Pulse, Trade Flows +1" — the products marked for the
   meeting (CFG.MEETING_PRODUCTS); mirrors the row's meta line, accent glyph */
.page-event-onboarding .eob-dir__picks {
  display: inline-flex; align-items: center; gap: 5px;
  margin-top: 4px;
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.page-event-onboarding .eob-dir__picks-icon { width: 13px; height: 13px; flex: none; color: var(--color-accent-text); }
.page-event-onboarding .eob-dir__picks-label { font-weight: 600; color: var(--color-text); }
/* ---------- provider overview dialog ("More info", wireframe 2026-09-17) ----------
   The dialog stacks ON TOP of the wizard (container is a flex row).
   inset+margin centering — transform would fight the modal entry animation
   (that was the corner->center jump). Two-column body, so it is wide; the
   shared .modal--lg caps max-width at 760px — override BOTH width and
   max-width (the 'never got wider' bug). The modal's own flex column keeps
   header and footer pinned while .modal__body scrolls. */
.eob-detail-modal {
  position: absolute;
  inset: 0;
  margin: auto;
  height: fit-content;
  z-index: 2;
  width: min(1120px, calc(100vw - 48px));
  max-width: min(1120px, calc(100vw - 48px));
  max-height: min(88vh, 900px);
  box-shadow: 0 18px 50px rgba(15, 18, 25, 0.35);
}
/* header = Modal's titled header (logo tile · name · subtitle · X). The
   accent tile becomes a white logo frame; a broken logo falls back to
   initials (event-onboarding.modals.js). */
.eob-detail-modal .modal__header { padding: 22px 28px 18px; }
.eob-detail-modal .modal__title-icon {
  width: 56px; height: 56px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  color: var(--color-ink);
  overflow: hidden;
}
.eob-detail-modal .modal__title-img { width: 40px; height: 40px; }
.eob-detail-modal .eob-detail__initials { font-weight: 700; font-size: var(--text-md); }
.eob-detail-modal .modal__title { font-size: 24px; }
.eob-detail-modal .modal__subtitle { font-size: var(--text-sm); }
.eob-detail-modal .modal__body { padding: 20px 28px 24px; }
.eob-detail-modal .modal__footer { padding: 14px 28px; background: #fff; }

/* company description + "Read full company overview" expander */
.page-event-onboarding .eob-detail__desc {
  color: var(--color-text); font-size: 15px;
  margin: 0 0 6px; line-height: 1.7; max-width: 92ch;
}
.page-event-onboarding .eob-detail__bullets {
  margin: 8px 0 4px;
  padding-left: 18px;
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  line-height: 1.65;
  max-width: 92ch;
}
.page-event-onboarding .eob-detail__bullets li { margin: 4px 0; }
.page-event-onboarding .eob-detail__descwrap.is-clamped {
  max-height: 7.8em;   /* ~3 lines at 1.7 */
  overflow: hidden;
  position: relative;
}
.page-event-onboarding .eob-detail__descwrap.is-clamped::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2em;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), #fff);
}
.page-event-onboarding .eob-detail__readmore {
  border: 0;
  background: transparent;
  cursor: pointer;
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--color-ink);
  font-size: var(--text-sm);
  font-weight: 700;
  padding: 6px 0 0;
}
.page-event-onboarding .eob-detail__readmore:hover { color: var(--color-accent-text); }
.page-event-onboarding .eob-detail__readmore-icon { width: 16px; height: 16px; flex: none; }

/* products (left) | at a glance (right); the rail wraps under on narrow viewports */
.page-event-onboarding .eob-detail__grid {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--color-divider);
}
.page-event-onboarding .eob-detail__products { flex: 1 1 480px; min-width: 0; }
.page-event-onboarding .eob-detail__products-hint { color: var(--color-text-muted); font-size: var(--text-xs); margin: 0; }
.page-event-onboarding .eob-detail__skeleton { display: flex; flex-direction: column; gap: 8px; }
.page-event-onboarding .eob-prods__head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 4px;
}
.page-event-onboarding .eob-prods__title { font-size: 20px; font-weight: 700; margin: 0; color: var(--color-ink); }
.page-event-onboarding .eob-prods__count { font-size: var(--text-xs); padding: 2px 10px; border-radius: 999px; }
.page-event-onboarding .eob-prods__hint {
  margin: 0 0 14px;
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}
.page-event-onboarding .eob-prods__list { display: flex; flex-direction: column; gap: 14px; }
/* one bordered card per product */
.page-event-onboarding .eob-prods__card {
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 20px 22px 18px;
  background: #fff;
}
.page-event-onboarding .eob-prods__top { display: flex; gap: 16px; align-items: flex-start; }
/* uniform icon tile — same glyph for every product (deliberate; anchors
   the card without pretending we know the product's type) */
.page-event-onboarding .eob-prods__icon {
  width: 52px; height: 52px; border-radius: 10px; flex: none;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--color-accent-soft, #eef0fb);
  color: var(--color-accent-text);
}
.page-event-onboarding .eob-prods__icon svg { width: 24px; height: 24px; }
.page-event-onboarding .eob-prods__headline { min-width: 0; flex: 1; }
.page-event-onboarding .eob-prods__name { font-size: 20px; font-weight: 700; margin: 2px 0 0; color: var(--color-ink); }
.page-event-onboarding .eob-prods__meta { margin: 4px 0 0; font-size: var(--text-sm); color: var(--color-text-muted); }
.page-event-onboarding .eob-prods__main { margin-top: 12px; }
.page-event-onboarding .eob-prods__desc {
  color: var(--color-text-muted); font-size: var(--text-sm);
  line-height: 1.6; margin: 0; max-width: 72ch;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.page-event-onboarding .eob-prods__card.is-expanded .eob-prods__desc {
  display: block;
  -webkit-line-clamp: unset;
  overflow: visible;
}
/* WHY BUYERS CARE — rule above, ✓ bullets */
.page-event-onboarding .eob-prods__why {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--color-divider);
}
.page-event-onboarding .eob-prods__why-label {
  display: block;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-subtle);
  margin-bottom: 8px;
}
.page-event-onboarding .eob-prods__why-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.page-event-onboarding .eob-prods__why-item {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: var(--text-sm); color: var(--color-text); line-height: 1.5;
}
.page-event-onboarding .eob-prods__why-icon { width: 16px; height: 16px; flex: none; margin-top: 2px; color: var(--color-ink); }
/* details hidden until the card expands: extra bullets, facts line */
.page-event-onboarding .eob-prods__card .is-extra { display: none; }
.page-event-onboarding .eob-prods__card.is-expanded .is-extra { display: flex; }
.page-event-onboarding .eob-prods__facts {
  margin: 12px 0 0;
  flex-wrap: wrap;
  gap: 8px 22px;
  font-size: var(--text-xs);
}
.page-event-onboarding .eob-prods__fact { display: flex; gap: 6px; }
.page-event-onboarding .eob-prods__fact-k { color: var(--color-text-muted); }
.page-event-onboarding .eob-prods__fact-v { margin: 0; font-weight: 600; color: var(--color-text); }
/* card footer: details expander left, "Discuss in meeting" right */
.page-event-onboarding .eob-prods__foot {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  margin-top: 16px;
  flex-wrap: wrap;
}
.page-event-onboarding .eob-prods__details {
  border: 0;
  background: transparent;
  cursor: pointer;
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--color-ink);
  font-size: var(--text-sm);
  font-weight: 700;
  padding: 0;
}
.page-event-onboarding .eob-prods__details:hover { color: var(--color-accent-text); }
.page-event-onboarding .eob-prods__details-icon { width: 16px; height: 16px; flex: none; transition: transform var(--motion-fast) var(--motion-ease); }
.page-event-onboarding .eob-prods__card.is-expanded .eob-prods__details-icon { transform: rotate(90deg); }
/* "Discuss in meeting" — bordered checkbox control; marked = accent outline + soft fill */
.page-event-onboarding .eob-prods__mark {
  margin-left: auto;
  display: inline-flex; align-items: center; gap: 10px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background: #fff;
  color: var(--color-text);
  font-size: var(--text-sm);
  font-weight: 600;
  padding: 9px 16px;
  cursor: pointer;
  white-space: nowrap;
  user-select: none;
  transition: border-color var(--motion-fast) var(--motion-ease),
              background var(--motion-fast) var(--motion-ease),
              color var(--motion-fast) var(--motion-ease);
}
.page-event-onboarding .eob-prods__mark:hover { border-color: var(--color-accent); color: var(--color-accent-text); }
.page-event-onboarding .eob-prods__mark.is-marked {
  border-color: var(--color-accent);
  background: var(--color-accent-soft, #eef0fb);
  color: var(--color-accent-text);
}
.page-event-onboarding .eob-prods__mark-box { width: 16px; height: 16px; margin: 0; flex: none; accent-color: var(--color-accent); cursor: pointer; }
.page-event-onboarding .eob-prods__mark:has(.eob-prods__mark-box:focus-visible) { box-shadow: var(--shadow-ring); }
.page-event-onboarding .eob-prods__more {
  border: 0;
  background: transparent;
  cursor: pointer;
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--color-text-muted);
  font-size: var(--text-xs);
  font-weight: 600;
  padding: 12px 0 2px;
  width: 100%;
}
.page-event-onboarding .eob-prods__more:hover { color: var(--color-ink); }
.page-event-onboarding .eob-prods__more-icon { width: 14px; height: 14px; flex: none; }

/* "At a glance" rail: filled panel, icon rows, hairline, marking note */
.page-event-onboarding .eob-detail__glance {
  flex: 0 1 340px;
  min-width: 260px;
  background: var(--color-surface-muted, #f4f6fa);
  border-radius: 12px;
  padding: 22px 24px;
}
.page-event-onboarding .eob-glance__title { font-size: 20px; font-weight: 700; margin: 0 0 16px; color: var(--color-ink); }
.page-event-onboarding .eob-glance__list { margin: 0; display: flex; flex-direction: column; gap: 18px; }
.page-event-onboarding .eob-glance__item { display: flex; gap: 14px; align-items: flex-start; }
.page-event-onboarding .eob-glance__icon { width: 22px; height: 22px; flex: none; color: var(--color-ink); margin-top: 2px; }
.page-event-onboarding .eob-glance__text { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.page-event-onboarding .eob-glance__label { font-size: var(--text-sm); color: var(--color-text-muted); }
.page-event-onboarding .eob-glance__value { margin: 0; font-size: 16px; font-weight: 600; color: var(--color-ink); line-height: 1.35; }
.page-event-onboarding .eob-glance__empty { margin: 0; font-size: var(--text-sm); color: var(--color-text-muted); }
.page-event-onboarding .eob-glance__note {
  display: flex; gap: 10px; align-items: flex-start;
  margin: 20px 0 0;
  padding-top: 18px;
  border-top: 1px solid var(--color-border);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.5;
}
.page-event-onboarding .eob-glance__note-icon { width: 18px; height: 18px; flex: none; margin-top: 1px; }

/* footer: priority switch | state · actions */
.page-event-onboarding .eob-detail__foot {
  display: flex; align-items: center; justify-content: flex-end; gap: 18px;
  flex-wrap: wrap;
}
.page-event-onboarding .eob-detail__prio { display: none; align-items: center; gap: 16px; margin-right: auto; }
.page-event-onboarding .eob-detail__foot.has-prio .eob-detail__prio { display: flex; }
.page-event-onboarding .eob-detail__foot.has-prio .eob-detail__foot-actions {
  padding-left: 18px;
  border-left: 1px solid var(--color-border);
}
.page-event-onboarding .eob-detail__prio-label { font-size: var(--text-sm); color: var(--color-text); font-weight: 500; }
.page-event-onboarding .eob-detail__foot-actions { display: flex; align-items: center; gap: 14px; }
.page-event-onboarding .eob-detail__status {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--color-success-text);
  font-size: var(--text-sm);
  font-weight: 600;
}
.page-event-onboarding .eob-detail__status-icon {
  width: 22px; height: 22px; flex: none;
  padding: 4px;
  border-radius: 50%;
  background: var(--color-success);
  color: #fff;
}
.page-event-onboarding .eob-dir__check { width: 16px; height: 16px; flex: none; accent-color: var(--color-accent); }
.page-event-onboarding .eob-dir__meta { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 2px; }
.page-event-onboarding .eob-dir__desc {
  color: var(--color-text-muted);
  font-size: var(--text-xs);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.page-event-onboarding .eob-dir__tags { display: flex; gap: 6px; flex-wrap: wrap; justify-content: flex-end; }
.page-event-onboarding .eob-dir__contact { display: flex; flex-direction: column; min-width: 0; align-items: flex-end; }
.page-event-onboarding .eob-dir__contact-title { color: var(--color-text-muted); font-size: var(--text-xs); }

/* ---------- step 4: done ---------- */
.page-event-onboarding .eob-done { text-align: center; }
.page-event-onboarding .eob-done__hero { padding: 12px 0 10px; text-align: center; }
.page-event-onboarding .eob-done__hero .eob-title {
  text-align: center;
  font-size: 40px;
  line-height: 1.1;
  margin: 6px 0 8px;
}
/* check with soft halo ring + two confetti dots */
.page-event-onboarding .eob-done__check {
  position: relative;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--color-accent);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  box-shadow: 0 0 0 14px var(--color-accent-softer, #f2f5ff);
}
/* sparkle: a ring of green dots around the check via a sprinkle layer */
.page-event-onboarding .eob-done__check::before,
.page-event-onboarding .eob-done__check::after {
  content: '';
  position: absolute;
  inset: -18px;
  border-radius: 50%;
  pointer-events: none;
}
.page-event-onboarding .eob-done__check::before {
  background:
    radial-gradient(circle, var(--color-success, #34a262) 45%, transparent 46%) -28px -6px / 8px 8px no-repeat,
    radial-gradient(circle, var(--color-success, #34a262) 45%, transparent 46%) 82px 8px / 6px 6px no-repeat,
    radial-gradient(circle, var(--color-success, #34a262) 45%, transparent 46%) 12px -30px / 7px 7px no-repeat,
    radial-gradient(circle, var(--color-success, #34a262) 45%, transparent 46%) 64px -22px / 5px 5px no-repeat,
    radial-gradient(circle, var(--color-success, #34a262) 45%, transparent 46%) 88px 44px / 7px 7px no-repeat;
}
.page-event-onboarding .eob-done__check::after {
  background:
    radial-gradient(circle, var(--color-success, #34a262) 45%, transparent 46%) -34px 40px / 7px 7px no-repeat,
    radial-gradient(circle, var(--color-success, #34a262) 45%, transparent 46%) -16px 70px / 5px 5px no-repeat,
    radial-gradient(circle, var(--color-success, #34a262) 45%, transparent 46%) 40px 78px / 6px 6px no-repeat,
    radial-gradient(circle, var(--color-success, #34a262) 45%, transparent 46%) 78px 70px / 5px 5px no-repeat,
    radial-gradient(circle, var(--color-success, #34a262) 45%, transparent 46%) -6px -26px / 5px 5px no-repeat;
}
.page-event-onboarding .eob-done__check .eob-icon { width: 28px; height: 28px; }
.page-event-onboarding .eob-done__hero .eob-sub { text-align: center; max-width: 420px; margin: 0 auto; }
/* three next-step cards */
.page-event-onboarding .eob-done__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 18px 0 16px;
  text-align: left;
}
@media (max-width: 900px) {
  .page-event-onboarding .eob-done__cards { grid-template-columns: 1fr; }
}
.page-event-onboarding .eob-done__card {
  border: 1px solid var(--color-border);
  border-radius: 14px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  transition: background 120ms ease, border-color 120ms ease;
}
.page-event-onboarding .eob-done__card:hover {
  background: var(--color-surface-muted, #f4f5f7);
  border-color: var(--color-divider);
}
.page-event-onboarding .eob-done__card .btn { margin-top: auto; }
.page-event-onboarding .eob-done__card-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-accent-softer, #f2f5ff);
  color: var(--color-accent-text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 6px;
}
.page-event-onboarding .eob-done__card-icon svg { width: 20px; height: 20px; }
.page-event-onboarding .eob-done__kicker {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-accent-text);
  margin: 0;
}
.page-event-onboarding .eob-done__card-title { font-size: var(--text-md); font-weight: 700; margin: 0; }
.page-event-onboarding .eob-done__card-body {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  line-height: 1.55;
  margin: 0 0 6px;
}
/* action bubbles: neutral at rest, accent on interaction (so none reads as
   pre-selected on load) */
.page-event-onboarding .eob-done__bubble {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  background: #fff;
  border: 1px solid var(--color-border-strong, var(--color-border));
  border-radius: 999px;
  padding: 8px 16px;
  color: var(--color-ink);
  font-size: var(--text-sm);
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 1px 2px rgba(15, 18, 25, 0.05);
}
.page-event-onboarding .eob-done__bubble-icon { width: 15px; height: 15px; color: var(--color-text-subtle); }
.page-event-onboarding .eob-done__bubble:hover {
  border-color: var(--color-accent);
  color: var(--color-accent-text);
  box-shadow: 0 2px 8px rgba(61, 100, 229, 0.15);
}
.page-event-onboarding .eob-done__bubble:hover .eob-done__bubble-icon { color: var(--color-accent-text); }
.page-event-onboarding .eob-done__bubble,
.page-event-onboarding .eob-done__bubble:visited,
.page-event-onboarding .eob-done__bubble:focus,
.page-event-onboarding .eob-done__bubble:active {
  background: #fff;
  outline: none;
}
.page-event-onboarding .eob-done__bubble:focus:not(:focus-visible) {
  border-color: var(--color-border-strong, var(--color-border));
  color: var(--color-ink);
  box-shadow: 0 1px 2px rgba(15, 18, 25, 0.05);
}
.page-event-onboarding .eob-done__bubble:focus-visible {
  /* keyboard focus = a ring, NOT the accent 'selected' border. the wizard
     modal focuses focusables[0] on open (modal.js), which would otherwise
     leave this bubble looking selected on the done step. */
  border-color: var(--color-border-strong, var(--color-border));
  color: var(--color-ink);
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
  box-shadow: 0 1px 2px rgba(15, 18, 25, 0.05);
}
/* covered strip */
.page-event-onboarding .eob-done__strip {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  text-align: left;
  border-top: 1px solid var(--color-divider);
  padding: 16px 2px 4px;
  margin-bottom: 8px;
}
.page-event-onboarding .eob-done__strip-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-accent-softer, #f2f5ff);
  color: var(--color-accent-text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
}
.page-event-onboarding .eob-done__strip-icon svg { width: 18px; height: 18px; }
.page-event-onboarding .eob-done__strip-text p { color: var(--color-text-muted); font-size: var(--text-sm); margin: 2px 0 0; }
.page-event-onboarding .eob-done__cta { min-width: 280px; justify-content: center; }
.page-event-onboarding .eob-done__support {
  display: inline-block;
  margin-top: 10px;
  color: var(--color-accent-text);
  font-size: var(--text-sm);
  font-weight: 600;
  text-decoration: none;
}
.page-event-onboarding .eob-done__support:hover { text-decoration: underline; }

/* ---------- modals ---------- */
/* preview dialogs: bigger stage, everything centered. #modal-container is a
   flex ROW — a dialog stacked over the wizard needs absolute inset+margin
   centering (transform fights the entry animation), same as the detail
   dialog. */
/* products nudge: the provider exit popup on the All-set step. Same flex-row
   container problem as its siblings - without this it renders off to the right. */
.eob-nudge-modal {
  position: absolute;
  inset: 0;
  margin: auto;
  height: fit-content;
  z-index: 2;
  width: min(520px, calc(100vw - 48px));
  max-width: min(520px, calc(100vw - 48px));
}

.eob-preview-modal {
  position: absolute;
  inset: 0;
  margin: auto;
  height: fit-content;
  z-index: 2;
  /* .modal--lg-style clamp lesson: set BOTH width and max-width */
  width: min(760px, calc(100vw - 48px));
  max-width: min(760px, calc(100vw - 48px));
  max-height: 85vh;
  overflow-y: auto;
  box-shadow: 0 18px 50px rgba(15, 18, 25, 0.35);
}
.eob-modal__frame {
  border-radius: 10px;
  background: linear-gradient(160deg, var(--color-ink), var(--color-accent-press));
  color: #fff;
  aspect-ratio: 16 / 9;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}
.eob-modal__body--center { text-align: center; }
.eob-modal__body--center .eob-modal__link { display: inline-block; }
.eob-modal__caption { color: var(--color-text-muted); font-size: var(--text-sm); margin: 0 0 8px; }
.eob-modal__link { color: var(--color-accent-text); font-size: var(--text-sm); font-weight: 600; }
.eob-modal__actions { display: flex; gap: 10px; justify-content: flex-end; }
.eob-nudge__list { margin: 0; padding-left: 18px; font-size: var(--text-sm); }
.eob-nudge__item { margin-bottom: 8px; }

/* ===== Step 2 placeholder — before the buyer directory opens (#29) ===== */
.eob-pending {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-2);
  padding: var(--space-7) var(--space-4);
  border: 1px dashed var(--color-border);
  border-radius: var(--radius-lg, 14px);
}
.eob-pending__icon {
  width: 32px;
  height: 32px;
  color: var(--color-text-muted);
  stroke: var(--color-text-muted);
}
.eob-pending__title {
  margin: 0;
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-text);
}
.eob-pending__sub {
  margin: 0;
  max-width: 46ch;
  font-size: var(--text-sm);
  line-height: 1.5;
  color: var(--color-text-muted);
}

/* ---------- per-pick meeting priority (step: meeting requests) ----------
   Rendered on every selectable row, revealed only while the row is selected —
   toggling the checkbox flips a class, it does not re-render the row. */
.page-event-onboarding .eob-dir__priority {
  display: none;
  align-items: center;
  gap: 8px;
  margin: 10px 0 0 34px;
}
.page-event-onboarding .eob-dir__row.is-selected .eob-dir__priority,
.page-event-onboarding .eob-dir__priority.is-readonly { display: flex; }
.page-event-onboarding .eob-dir__priority-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--color-text-muted, #667085);
}
.page-event-onboarding .eob-dir__priority-value { font-size: 13px; }
.page-event-onboarding .eob-dir__priority .view-toggle { flex: 0 0 auto; }
