/* EABD Theme — design system + components */
:root {
  --eabd-blue:        #0B5FFF;
  --eabd-blue-700:    #0A4FD4;
  --eabd-blue-50:     #EEF4FF;
  --eabd-black:       #0B0F19;
  --eabd-gray-900:    #111827;
  --eabd-gray-700:    #374151;
  --eabd-gray-500:    #6B7280;
  --eabd-gray-300:    #D1D5DB;
  --eabd-gray-200:    #E5E7EB;
  --eabd-gray-100:    #F3F4F6;
  --eabd-gray-50:     #F9FAFB;
  --eabd-bg:          #FFFFFF;
  --eabd-card:        #FFFFFF;
  --eabd-radius:      .75rem;
  --eabd-radius-sm:   .5rem;
  --eabd-shadow-sm:   0 1px 2px rgba(11,15,25,.04), 0 1px 3px rgba(11,15,25,.06);
  --eabd-shadow:      0 4px 6px -1px rgba(11,15,25,.06), 0 2px 4px -2px rgba(11,15,25,.04);
  --eabd-shadow-lg:   0 10px 15px -3px rgba(11,15,25,.08), 0 4px 6px -4px rgba(11,15,25,.05);
  --eabd-container:   1200px;
  --eabd-font:        'Inter', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--eabd-font);
  font-size: 16px;
  line-height: 1.55;
  color: var(--eabd-gray-900);
  background: var(--eabd-bg);
  -webkit-font-smoothing: antialiased;
  /* Backstop against any descendant overflowing past the viewport on mobile —
     the public header used to clip its rightmost CTA on narrow phones. */
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: var(--eabd-blue); text-decoration: none; }
a:hover { color: var(--eabd-blue-700); }
h1,h2,h3,h4,h5,h6 { color: var(--eabd-black); margin: 0 0 .5em; line-height: 1.25; font-weight: 600; }
h1 { font-size: 2rem; }
h2 { font-size: 1.5rem; }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1rem; }

.eabd-container { max-width: var(--eabd-container); margin: 0 auto; padding: 0 1.25rem; }

/* Header — 90px tall; logo is 86px leaving 2px breathing room top/bottom. */
.eabd-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.92); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--eabd-gray-200);
  max-height: 90px;
}
.eabd-header__inner {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  height: 90px; padding: 0;
}
.eabd-logo { display: inline-flex; align-items: center; gap: .5rem; font-weight: 700; color: var(--eabd-black); font-size: 1.125rem; }
.eabd-logo__dot { display:inline-block;width:1.5rem;height:1.5rem;border-radius:.4rem;background:var(--eabd-blue); }
.eabd-nav { display:flex; align-items:center; gap: 1rem; flex-shrink:0; white-space:nowrap; }
.eabd-nav a { color: var(--eabd-gray-700); font-weight: 500; }
.eabd-nav a:hover { color: var(--eabd-black); }

/* Buttons */
.eabd-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .625rem 1rem; border-radius: var(--eabd-radius-sm); font-weight: 500; font-size: .9375rem;
  background: var(--eabd-gray-100); color: var(--eabd-gray-900); border: 1px solid transparent; cursor: pointer;
  transition: background .15s ease, transform .05s ease;
}
.eabd-btn:hover { background: var(--eabd-gray-200); }
.eabd-btn:active { transform: scale(.98); }
.eabd-btn--primary { background: var(--eabd-blue); color: #fff; }
.eabd-btn--primary:hover { background: var(--eabd-blue-700); color: #fff; }
.eabd-btn--ghost { background: transparent; border-color: var(--eabd-gray-300); }
.eabd-btn--dark { background: var(--eabd-black); color: #fff; }
.eabd-btn--lg { padding: .85rem 1.25rem; font-size: 1rem; }
.eabd-btn--full { display: flex; width: 100%; }

/* Input */
.eabd-input, .eabd-textarea, .eabd-select {
  width: 100%; padding: .625rem .85rem; border: 1px solid var(--eabd-gray-300);
  border-radius: var(--eabd-radius-sm); font: inherit; background: #fff; color: var(--eabd-gray-900);
}
.eabd-input:focus, .eabd-textarea:focus, .eabd-select:focus {
  outline: none; border-color: var(--eabd-blue); box-shadow: 0 0 0 3px var(--eabd-blue-50);
}
.eabd-label { display:block;font-size:.875rem;font-weight:500;color:var(--eabd-gray-700);margin-bottom:.35rem; }

/* Hero */
.eabd-hero { padding: 3.5rem 0 2.5rem; background: linear-gradient(180deg, var(--eabd-blue-50) 0%, #fff 80%); }
.eabd-hero h1 { font-size: clamp(1.75rem, 4vw, 2.75rem); letter-spacing: -.02em; }
.eabd-hero p { color: var(--eabd-gray-700); max-width: 720px; font-size: 1.0625rem; }
.eabd-hero__search { display:flex;gap:.5rem;background:#fff;border:1px solid var(--eabd-gray-200);padding:.5rem;border-radius:var(--eabd-radius);box-shadow:var(--eabd-shadow);max-width:680px; }
.eabd-hero__search input { flex: 1; border: 0; padding: .65rem .8rem; font: inherit; }
.eabd-hero__search input:focus { outline: none; }

/* Card */
.eabd-card {
  background: var(--eabd-card); border: 1px solid var(--eabd-gray-200);
  border-radius: var(--eabd-radius); padding: 1rem; box-shadow: var(--eabd-shadow-sm);
  position: relative; /* anchor for .eabd-card__signals-popover */
}
.eabd-card--listing { display:flex; gap:1rem; align-items:flex-start; }
.eabd-card__media { width: 64px; height: 64px; border-radius: .5rem; background: var(--eabd-gray-100); overflow: hidden; flex-shrink: 0; display:flex;align-items:center;justify-content:center; }
.eabd-card__media img { width: 100%; height: 100%; object-fit: cover; }
.eabd-card__body { flex:1; min-width: 0; }
.eabd-card__title { font-weight: 600; color: var(--eabd-black); margin: 0 0 .25rem; }
.eabd-card__desc  { color: var(--eabd-gray-500); font-size: .9375rem; margin: 0 0 .5rem; }
.eabd-card__meta  { display:flex; gap: 1rem; color: var(--eabd-gray-500); font-size: .85rem; flex-wrap: wrap; align-items: center; }
.eabd-card__loc   { display: inline-flex; align-items: center; gap: .3rem; color: var(--eabd-gray-500); }
.eabd-card__loc svg { color: #64748B; flex-shrink: 0; }

.eabd-grid { display:grid; gap: 1rem; }
.eabd-grid--cards { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }

/* Badges */
.eabd-badge {
  display:inline-flex; align-items:center; gap:.35rem; padding:.2rem .55rem;
  border-radius: 999px; font-size: .75rem; font-weight: 500; background: var(--eabd-gray-100); color: var(--eabd-gray-700);
}
.eabd-badge--verified { background: var(--eabd-blue-50); color: var(--eabd-blue-700); }
.eabd-badge--platform { background: var(--eabd-blue); color: #fff; }
.eabd-badge--self { background: var(--eabd-gray-200); color: var(--eabd-gray-700); }
.eabd-badge--promoted { background: #FEF3C7; color: #92400E; }

/* Stars */
.eabd-stars { color: #f59e0b; font-size: .95rem; letter-spacing: .05em; }

/* Profile hero */
.eabd-profile-hero { background: #fff; border-bottom: 1px solid var(--eabd-gray-200); padding: 2.5rem 0 1.5rem; }
.eabd-profile-hero__inner { display:flex; gap: 1.5rem; align-items: flex-start; }
.eabd-profile-hero__logo { width: 96px; height: 96px; border-radius: .75rem; background: var(--eabd-gray-100); overflow: hidden; flex-shrink: 0; box-shadow: var(--eabd-shadow-sm); }
.eabd-profile-hero__logo img { width: 100%; height: 100%; object-fit: cover; }
.eabd-profile-hero h1 { margin-bottom: .25rem; }
.eabd-profile-hero__meta { display:flex; gap: 1rem; color: var(--eabd-gray-500); font-size: .9rem; flex-wrap: wrap; align-items: center; }

.eabd-profile-grid { display:grid; gap: 1.5rem; grid-template-columns: 1fr; padding: 1.5rem 0; }
@media (min-width: 900px) { .eabd-profile-grid { grid-template-columns: 1fr 320px; } }

.eabd-section { background:#fff; border:1px solid var(--eabd-gray-200); border-radius: var(--eabd-radius); padding: 1.25rem; margin-bottom: 1rem; }
.eabd-section h2 { margin-bottom: .75rem; font-size: 1.125rem; }

.eabd-aside { display:flex; flex-direction:column; gap:1rem; }

/* AI search */
.eabd-ai { background: linear-gradient(180deg, var(--eabd-blue-50), #fff); padding: 2rem 0; }
.eabd-ai__form { display:flex; gap: .5rem; }
.eabd-ai__results { margin-top: 1.5rem; display:flex; flex-direction: column; gap: .75rem; }
.eabd-ai__explanation { background: #fff; border:1px solid var(--eabd-gray-200); border-radius: var(--eabd-radius); padding: 1rem; color: var(--eabd-gray-700); }

/* Footer */
.eabd-footer { padding: 2rem 0; border-top: 1px solid var(--eabd-gray-200); color: var(--eabd-gray-500); font-size: .9rem; margin-top: 3rem; }
.eabd-footer__inner { display:flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }

/* Mobile bottom nav (PWA-style) */
.eabd-bottom-nav { display:none; }
@media (max-width: 768px) {
  .eabd-bottom-nav {
    display:flex; position: fixed; bottom: 0; left: 0; right: 0; z-index: 50;
    background: #fff; border-top: 1px solid var(--eabd-gray-200);
    justify-content: space-around; padding: .35rem 0 max(.35rem, env(safe-area-inset-bottom));
  }
  .eabd-bottom-nav a { display:flex; flex-direction: column; align-items: center; color: var(--eabd-gray-500); font-size: .7rem; padding: .25rem .5rem; }
  .eabd-bottom-nav a.is-active { color: var(--eabd-blue); }
  body { padding-bottom: 4rem; }
}

/* Skeletons */
.eabd-skel { background: linear-gradient(90deg, #eee, #f5f5f5, #eee); background-size: 200% 100%; animation: eabd-shimmer 1.2s linear infinite; border-radius: .4rem; }
@keyframes eabd-shimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }

/* Utilities */
.eabd-flex { display: flex; gap: .75rem; align-items: center; }
.eabd-stack > * + * { margin-top: .75rem; }
.eabd-mut { color: var(--eabd-gray-500); }
.eabd-divider { height: 1px; background: var(--eabd-gray-200); margin: 1rem 0; }
.eabd-h-icon { width: 1rem; height: 1rem; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.eabd-icon { width: 1.125rem; height: 1.125rem; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; vertical-align: middle; }
.eabd-icon--lg { width: 1.5rem; height: 1.5rem; }

/* Pricing grid */
.eabd-prices { display:grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.eabd-price { background:#fff; border:1px solid var(--eabd-gray-200); border-radius: var(--eabd-radius); padding: 1.5rem; }
.eabd-price--featured { border-color: var(--eabd-blue); box-shadow: var(--eabd-shadow); }
.eabd-price h3 { margin-bottom: .25rem; }
.eabd-price__amount { font-size: 1.75rem; font-weight: 700; color: var(--eabd-black); }
.eabd-price ul { list-style:none; padding: 0; margin: 1rem 0; color: var(--eabd-gray-700); }
.eabd-price ul li { padding: .35rem 0; border-bottom: 1px dashed var(--eabd-gray-200); }

/* ─── v0.2 additions ──────────────────────────────────────────────────────── */

/* Pricing v2 */
.eabd-prices--v2 { grid-template-columns: repeat(3, 1fr); }
.eabd-price__badge { display:inline-block; background:var(--eabd-blue); color:#fff; font-size:.75rem; font-weight:700; padding:.15rem .5rem; border-radius:2rem; margin-bottom:.5rem; }
.eabd-price__billing { font-size:.85rem; margin-top:.25rem; }
.eabd-price__features { margin-bottom:1.25rem; }
.eabd-pricing-page { padding: 2rem 0 4rem; }
.eabd-pricing-hero { text-align:center; padding: 3rem 1rem 2rem; }
.eabd-pricing-hero h1 { font-size:clamp(1.5rem,4vw,2.25rem); margin-bottom:.75rem; }
.eabd-pricing-free { background:var(--eabd-gray-50); border:1px solid var(--eabd-gray-200); border-radius:var(--eabd-radius); padding:1.25rem 1.5rem; display:flex; align-items:center; justify-content:space-between; gap:1rem; flex-wrap:wrap; margin-top:2rem; }

/* Highlighted listing card */
.eabd-card--highlighted { border:2px solid var(--eabd-blue); box-shadow:0 0 0 3px var(--eabd-blue-50), var(--eabd-shadow); }
.eabd-badge--featured { background:var(--eabd-blue-50); color:var(--eabd-blue-700); }
.eabd-badge--blue { background:var(--eabd-blue-50); color:var(--eabd-blue-700); }
.eabd-badge--ghost { background:transparent; border:1px solid var(--eabd-gray-300); color:var(--eabd-gray-700); }

/* Tabs */
.eabd-tabs { display:flex; gap:0; border-bottom:2px solid var(--eabd-gray-200); margin-bottom:2rem; }
.eabd-tabs__tab { padding:.6rem 1.25rem; font-size:.9rem; font-weight:500; color:var(--eabd-gray-500); text-decoration:none; border-bottom:2px solid transparent; margin-bottom:-2px; }
.eabd-tabs__tab.is-active, .eabd-tabs__tab:hover { color:var(--eabd-blue); border-bottom-color:var(--eabd-blue); }

/* Identity strip */
.eabd-identity-strip { display:flex; flex-wrap:wrap; gap:.75rem 2rem; font-size:.85rem; color:var(--eabd-gray-500); margin: .5rem 0 1rem; }
.eabd-identity-strip dt { font-weight:600; color:var(--eabd-gray-700); }
.eabd-identity-strip dd { margin:0; }

/* Chips rows */
.eabd-chips { display:flex; flex-wrap:wrap; gap:.4rem; margin:.75rem 0; }
.eabd-chip { display:inline-block; padding:.2rem .65rem; border-radius:2rem; font-size:.8rem; background:var(--eabd-gray-100); color:var(--eabd-gray-700); }
.eabd-chip--primary { background:var(--eabd-blue-50); color:var(--eabd-blue-700); font-weight:600; }
.eabd-chip--kw { font-size:.75rem; color:var(--eabd-gray-500); background:var(--eabd-gray-50); border:1px solid var(--eabd-gray-200); }

/* Business hours */
.eabd-hours-table { width:100%; border-collapse:collapse; font-size:.875rem; }
.eabd-hours-table tr td { padding:.4rem .5rem; border-bottom:1px solid var(--eabd-gray-100); }
.eabd-hours-table tr.is-today td { background:var(--eabd-blue-50); font-weight:600; color:var(--eabd-blue-700); }

/* Product cards (profile) */
.eabd-products-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(180px,1fr)); gap:1rem; }
.eabd-product-card { background:#fff; border:1px solid var(--eabd-gray-200); border-radius:var(--eabd-radius-sm); overflow:hidden; }
.eabd-product-card__img { width:100%; aspect-ratio:4/3; object-fit:cover; background:var(--eabd-gray-100); }
.eabd-product-card__body { padding:.75rem; }
.eabd-product-card__name { font-weight:600; font-size:.9rem; }
.eabd-product-card__price { color:var(--eabd-blue); font-weight:700; font-size:.85rem; margin-top:.25rem; }
.eabd-product-card__desc { font-size:.8rem; color:var(--eabd-gray-500); margin-top:.25rem; }

/* Job cards (archive) */
.eabd-jobs-grid { display:flex; flex-direction:column; gap:.75rem; }
.eabd-job-card { background:#fff; border:1px solid var(--eabd-gray-200); border-radius:var(--eabd-radius-sm); padding:1rem 1.25rem; display:flex; justify-content:space-between; align-items:flex-start; gap:1rem; text-decoration:none; color:inherit; }
.eabd-job-card:hover { border-color:var(--eabd-blue); box-shadow:var(--eabd-shadow-sm); }
.eabd-job-card__title { font-weight:600; margin-bottom:.25rem; }
.eabd-job-card__meta { display:flex; flex-wrap:wrap; gap:.35rem; align-items:center; margin-top:.4rem; }
.eabd-job-card__salary { font-weight:600; color:var(--eabd-blue); white-space:nowrap; }
.eabd-job-card__company { display:flex; align-items:center; gap:.5rem; font-size:.85rem; color:var(--eabd-gray-500); white-space:nowrap; }
.eabd-job-card__company img { width:2rem; height:2rem; border-radius:.3rem; object-fit:cover; }

/* Single job page */
.eabd-single-job { display:grid; grid-template-columns:1fr 280px; gap:2rem; }
.eabd-single-job__body { min-width:0; }
.eabd-single-job__aside { }
.eabd-single-job__company-card { background:var(--eabd-gray-50); border:1px solid var(--eabd-gray-200); border-radius:var(--eabd-radius); padding:1.25rem; }
.eabd-single-job__company-card img { width:4rem; height:4rem; border-radius:.5rem; object-fit:cover; margin-bottom:.75rem; }

/* Job item (listing profile) */
.eabd-jobs-list { display:flex; flex-direction:column; gap:.5rem; }
.eabd-job-item { display:block; padding:.75rem 1rem; border:1px solid var(--eabd-gray-200); border-radius:var(--eabd-radius-sm); text-decoration:none; color:inherit; }
.eabd-job-item:hover { border-color:var(--eabd-blue); }
.eabd-job-item__title { display:flex; flex-wrap:wrap; gap:.35rem; align-items:center; font-weight:600; margin-bottom:.25rem; }
.eabd-job-item__salary { font-size:.85rem; }

/* ── Dashboard shell ──────────────────────────────────────────────────────── */
.eabd-dash-body { margin:0; background:var(--eabd-gray-50); }
.eabd-dash-body #wpadminbar { position:fixed; }
.eabd-dash { min-height:100vh; display:flex; flex-direction:column; background:var(--eabd-gray-50); }

/* Topbar */
.eabd-dash__topbar { display:flex; align-items:center; justify-content:space-between; height:3.5rem; background:#fff; border-bottom:1px solid var(--eabd-gray-200); padding:0 1.25rem; flex-shrink:0; }
.eabd-dash__topbar-logo, .eabd-dash__brand { font-weight:700; font-size:1.1rem; color:var(--eabd-black); text-decoration:none; display:flex; align-items:center; gap:.5rem; }
.eabd-dash__topbar-nav, .eabd-dash__nav { display:flex; gap:1.25rem; align-items:center; font-size:.875rem; }
.eabd-dash__topbar-nav a, .eabd-dash__nav a { color:var(--eabd-gray-700); text-decoration:none; }
.eabd-dash__topbar-nav a:hover, .eabd-dash__nav a:hover { color:var(--eabd-blue); }
.eabd-dash__nav .eabd-btn { padding:.35rem .85rem; }

/* Two-column layout */
.eabd-dash__layout { flex:1; display:grid; grid-template-columns:220px 1fr; min-height:0; }
.eabd-dash__sidebar { background:#fff; border-right:1px solid var(--eabd-gray-200); padding:1rem 0; overflow-y:auto; display:flex; flex-direction:column; }
.eabd-dash__content { padding:1.75rem; overflow-y:auto; min-width:0; }
.eabd-dash__content h1 { font-size:1.25rem; font-weight:700; margin-bottom:1.5rem; }

/* Sidebar nav items */
.eabd-dash__nav-item { display:flex; align-items:center; gap:.75rem; padding:.6rem 1.25rem; font-size:.875rem; color:var(--eabd-gray-700); text-decoration:none; transition:background .15s, color .15s; line-height:1.2; }
.eabd-dash__nav-item:hover { background:var(--eabd-gray-50); color:var(--eabd-blue); }
.eabd-dash__nav-item--active { background:var(--eabd-blue-50); color:var(--eabd-blue); font-weight:600; border-right:3px solid var(--eabd-blue); }
.eabd-dash__nav-item svg { flex-shrink:0; }
.eabd-dash__nav-label { white-space:nowrap; }

/* Stats cards */
.eabd-dash-stats { display:grid; grid-template-columns:repeat(auto-fill,minmax(160px,1fr)); gap:1rem; margin-bottom:2rem; }
.eabd-dash-stat { background:#fff; border:1px solid var(--eabd-gray-200); border-radius:var(--eabd-radius); padding:1.1rem 1.25rem; }
.eabd-dash-stat__label { font-size:.8rem; color:var(--eabd-gray-500); margin-bottom:.4rem; }
.eabd-dash-stat__value { font-size:1.5rem; font-weight:700; color:var(--eabd-black); }

/* Dashboard table */
.eabd-dash-table { width:100%; border-collapse:collapse; font-size:.875rem; background:#fff; border-radius:var(--eabd-radius); overflow:hidden; border:1px solid var(--eabd-gray-200); }
.eabd-dash-table th { text-align:left; padding:.65rem 1rem; background:var(--eabd-gray-50); color:var(--eabd-gray-500); font-weight:600; border-bottom:1px solid var(--eabd-gray-200); }
.eabd-dash-table td { padding:.65rem 1rem; border-bottom:1px solid var(--eabd-gray-100); vertical-align:middle; }
.eabd-dash-table tr:last-child td { border-bottom:0; }
.eabd-dash-table tr:hover td { background:var(--eabd-gray-50); }

/* Dashboard form */
.eabd-dash-form { max-width:680px; }
.eabd-dash-form .eabd-field { margin-bottom:1.25rem; }
.eabd-dash-form label { display:block; font-size:.875rem; font-weight:600; margin-bottom:.35rem; }
.eabd-dash-form input[type=text], .eabd-dash-form input[type=email], .eabd-dash-form input[type=url], .eabd-dash-form input[type=number], .eabd-dash-form input[type=password], .eabd-dash-form select, .eabd-dash-form textarea { width:100%; padding:.55rem .75rem; border:1px solid var(--eabd-gray-300); border-radius:var(--eabd-radius-sm); font-size:.9rem; background:#fff; color:var(--eabd-black); }
.eabd-dash-form input:focus, .eabd-dash-form select:focus, .eabd-dash-form textarea:focus { outline:none; border-color:var(--eabd-blue); box-shadow:0 0 0 3px var(--eabd-blue-50); }
.eabd-dash-form textarea { min-height:5rem; resize:vertical; }
.eabd-form-status { padding:.6rem 1rem; border-radius:var(--eabd-radius-sm); font-size:.875rem; }
.eabd-form-status--ok { background:#d1fae5; color:#065f46; }
.eabd-form-status--err { background:#fee2e2; color:#991b1b; }
.eabd-field-hint { font-size:.8rem; color:var(--eabd-gray-500); margin-top:.25rem; }
.eabd-field-locked { opacity:.5; pointer-events:none; position:relative; }
.eabd-field-upgrade { font-size:.8rem; color:var(--eabd-blue); margin-top:.25rem; }

/* Hours grid */
.eabd-hours-grid { display:grid; grid-template-columns:auto 1fr 1fr auto; gap:.5rem; align-items:center; font-size:.875rem; }
.eabd-hours-grid__day { font-weight:600; white-space:nowrap; }

/* Tag input */
.eabd-tag-input { border:1px solid var(--eabd-gray-300); border-radius:var(--eabd-radius-sm); padding:.35rem .5rem; display:flex; flex-wrap:wrap; gap:.35rem; cursor:text; min-height:2.5rem; background:#fff; }
.eabd-tag-input:focus-within { border-color:var(--eabd-blue); box-shadow:0 0 0 3px var(--eabd-blue-50); }
.eabd-tag-input__tag { display:flex; align-items:center; gap:.25rem; padding:.15rem .5rem; background:var(--eabd-blue-50); color:var(--eabd-blue-700); border-radius:2rem; font-size:.8rem; }
.eabd-tag-input__tag button { background:none; border:none; cursor:pointer; color:var(--eabd-blue-700); padding:0; line-height:1; font-size:.9rem; }
.eabd-tag-input__field { border:none; outline:none; font-size:.875rem; flex:1; min-width:100px; }

/* Progress bar */
.eabd-progress { background:var(--eabd-gray-200); border-radius:2rem; height:.4rem; overflow:hidden; width:100%; }
.eabd-progress__bar { height:100%; background:var(--eabd-blue); border-radius:2rem; transition:width .3s; }

/* Modal */
.eabd-modal-backdrop { position:fixed; inset:0; background:rgba(0,0,0,.45); z-index:900; display:flex; align-items:center; justify-content:center; }
.eabd-modal-backdrop[hidden] { display:none; }
.eabd-modal { background:#fff; border-radius:var(--eabd-radius); padding:1.5rem; max-width:520px; width:90vw; max-height:90vh; overflow-y:auto; box-shadow:var(--eabd-shadow-lg); }
.eabd-modal h2 { font-size:1.1rem; font-weight:700; margin-bottom:1.25rem; }
.eabd-modal__actions { display:flex; justify-content:flex-end; gap:.75rem; margin-top:1.5rem; }

/* Spinner */
.eabd-spinner { display:inline-block; width:1.25rem; height:1.25rem; border:2px solid var(--eabd-gray-300); border-top-color:var(--eabd-blue); border-radius:50%; animation:eabd-spin .6s linear infinite; }
@keyframes eabd-spin { to { transform: rotate(360deg); } }

/* Messages layout */
.eabd-dash-messages { display:grid; grid-template-columns:280px 1fr; gap:0; height:calc(100vh - 3.5rem - 3.5rem); }
.eabd-msg-list { border-right:1px solid var(--eabd-gray-200); overflow-y:auto; }
.eabd-msg-list__item { display:block; padding:.85rem 1rem; border-bottom:1px solid var(--eabd-gray-100); text-decoration:none; color:inherit; }
.eabd-msg-list__item:hover, .eabd-msg-list__item.is-active { background:var(--eabd-blue-50); }
.eabd-msg-list__name { font-weight:600; font-size:.875rem; }
.eabd-msg-list__preview { font-size:.8rem; color:var(--eabd-gray-500); white-space:nowrap; overflow:hidden; text-overflow:ellipsis; margin-top:.15rem; }
.eabd-msg-thread { display:flex; flex-direction:column; height:100%; }
.eabd-msg-thread__messages { flex:1; overflow-y:auto; padding:1rem; display:flex; flex-direction:column; gap:.75rem; }
.eabd-msg-bubble { max-width:72%; padding:.6rem .9rem; border-radius:1rem; font-size:.875rem; line-height:1.5; }
.eabd-msg-bubble--in { align-self:flex-start; background:var(--eabd-gray-100); border-bottom-left-radius:.25rem; }
.eabd-msg-bubble--out { align-self:flex-end; background:var(--eabd-blue); color:#fff; border-bottom-right-radius:.25rem; }
.eabd-msg-thread__form { border-top:1px solid var(--eabd-gray-200); padding:.75rem 1rem; display:flex; gap:.5rem; }
.eabd-msg-thread__input { flex:1; padding:.5rem .75rem; border:1px solid var(--eabd-gray-300); border-radius:var(--eabd-radius-sm); font-size:.875rem; }

/* Payment return */
.eabd-payment-return { max-width:420px; margin:5rem auto; text-align:center; padding:2rem; background:#fff; border-radius:var(--eabd-radius); box-shadow:var(--eabd-shadow); }
.eabd-payment-return__icon { font-size:3rem; margin-bottom:1rem; }
.eabd-payment-return h1 { font-size:1.25rem; font-weight:700; margin-bottom:.5rem; }

/* Jobs archive page */
.eabd-jobs-page { padding:2rem 0 4rem; }
.eabd-jobs-page__hero { padding:2.5rem 0 1.5rem; }
.eabd-jobs-page__hero h1 { font-size:clamp(1.4rem,3vw,2rem); }
.eabd-jobs-filters { display:flex; flex-wrap:wrap; gap:.75rem; margin-bottom:1.5rem; }
.eabd-jobs-filters input, .eabd-jobs-filters select { padding:.5rem .75rem; border:1px solid var(--eabd-gray-300); border-radius:var(--eabd-radius-sm); font-size:.875rem; }
.eabd-jobs-filters input[type=search] { flex:1; min-width:200px; }

/* Profile hero highlighted */
.eabd-profile-hero--highlighted { border-bottom:3px solid var(--eabd-blue); }

/* ── Brand mark in site header ────────────────────────────────────────────── */
.eabd-logo { display:inline-flex; align-items:center; gap:.6rem; text-decoration:none; color:var(--eabd-black); font-weight:700; font-size:1.05rem; }
.eabd-logo__mark { display:block; height:36px; width:36px; }
.eabd-logo__wordmark { letter-spacing:.5px; }
.eabd-logo__dot { display:none; }
.eabd-logo--wide { padding:0; display:flex; align-items:center; flex-shrink:1; min-width:0; }
.eabd-logo__wordmark-img { display:block; height:86px; width:auto; max-width:100%; }
@media (max-width:920px) {
  .eabd-header { max-height:72px; }
  .eabd-header__inner { height:72px; gap:.75rem; }
  .eabd-logo__wordmark-img { height:62px; }
}
@media (max-width:720px) {
  .eabd-header { max-height:60px; }
  .eabd-header__inner { height:60px; gap:.5rem; }
  .eabd-logo__wordmark-img { height:46px; }
}
@media (max-width:480px) {
  /* On phones the header was overflowing past the viewport because the logo
     (3.3:1 aspect ratio) + search toggle + sign-in + get-listed exceeded the
     available width. Shrink the logo, drop padding, and rely on the bottom
     nav's "You" tab for sign-in so the header reduces to logo + search +
     primary CTA. */
  .eabd-container { padding:0 .75rem; }
  .eabd-header__inner { gap:.4rem; }
  .eabd-logo__wordmark-img { height:38px; }
  .eabd-nav { gap:.4rem; }
  .eabd-nav .eabd-btn { padding:.45rem .7rem; font-size:.8125rem; }
  .eabd-nav .eabd-btn--ghost { display:none; } /* "Sign in" — reachable via bottom-nav "You" */
}

/* ── Modern dashboard topbar ──────────────────────────────────────────────── */
.eabd-dash__brand { gap:.55rem; }
.eabd-dash__brand-mark { display:block; border-radius:8px; }
.eabd-dash__brand-text { font-weight:700; letter-spacing:.5px; color:var(--eabd-black); }

/* Search pill in the middle of the topbar */
.eabd-dash__search { flex:1; max-width:520px; margin:0 1.5rem; position:relative; display:flex; align-items:center; }
.eabd-dash__search input { width:100%; background:var(--eabd-gray-50); border:1px solid var(--eabd-gray-200); border-radius:999px; padding:.5rem 1rem .5rem 2.25rem; font-size:.875rem; color:var(--eabd-black); }
.eabd-dash__search input:focus { outline:none; border-color:var(--eabd-blue); box-shadow:0 0 0 3px var(--eabd-blue-50); background:#fff; }
.eabd-dash__search-icon { position:absolute; left:.85rem; color:var(--eabd-gray-500); pointer-events:none; }

.eabd-dash__actions { display:flex; align-items:center; gap:.6rem; }
.eabd-dash__action-link { color:var(--eabd-gray-700); text-decoration:none; font-size:.875rem; padding:.45rem .75rem; border-radius:.5rem; }
.eabd-dash__action-link:hover { background:var(--eabd-gray-50); color:var(--eabd-blue); }
.eabd-dash__cta { display:inline-flex; align-items:center; gap:.4rem; background:var(--eabd-blue); color:#fff; padding:.5rem 1rem; border-radius:999px; font-size:.875rem; font-weight:600; text-decoration:none; }
.eabd-dash__cta:hover { background:var(--eabd-blue-700); color:#fff; }
.eabd-dash__cta svg { stroke-width:2.5; }

.eabd-dash__icon-btn { display:inline-flex; align-items:center; justify-content:center; width:2.25rem; height:2.25rem; border-radius:50%; background:transparent; border:none; color:var(--eabd-gray-700); cursor:pointer; }
.eabd-dash__icon-btn:hover { background:var(--eabd-gray-50); color:var(--eabd-blue); }

/* User menu (avatar + dropdown) */
.eabd-dash__user { position:relative; }
.eabd-dash__avatar { width:2.25rem; height:2.25rem; border-radius:50%; background:linear-gradient(135deg, var(--eabd-blue) 0%, var(--eabd-blue-700) 100%); color:#fff; font-weight:700; font-size:.8rem; border:none; cursor:pointer; display:inline-flex; align-items:center; justify-content:center; letter-spacing:.5px; }
.eabd-dash__avatar:hover { box-shadow:0 0 0 3px var(--eabd-blue-50); }
.eabd-dash__menu { position:absolute; right:0; top:calc(100% + .5rem); background:#fff; border:1px solid var(--eabd-gray-200); border-radius:.75rem; min-width:240px; box-shadow:var(--eabd-shadow-lg); padding:.5rem 0; z-index:200; }
.eabd-dash__menu a { display:block; padding:.55rem 1rem; font-size:.875rem; color:var(--eabd-gray-700); text-decoration:none; }
.eabd-dash__menu a:hover { background:var(--eabd-gray-50); color:var(--eabd-blue); }
.eabd-dash__menu-header { padding:.85rem 1rem; border-bottom:1px solid var(--eabd-gray-100); margin-bottom:.25rem; }
.eabd-dash__menu-name { font-weight:600; font-size:.9rem; color:var(--eabd-black); }
.eabd-dash__menu-email { color:var(--eabd-gray-500); font-size:.8rem; word-break:break-all; }
.eabd-dash__menu-divider { height:1px; background:var(--eabd-gray-100); margin:.25rem 0; }

@media (max-width:768px) {
  .eabd-dash__search { display:none; }
  .eabd-dash__action-link { display:none; }
  .eabd-dash__cta span { display:none; }
  .eabd-dash__cta { padding:.5rem; }
  .eabd-dash__brand-text { display:none; }
}

/* ── Wizard ───────────────────────────────────────────────────────────────── */
.eabd-wizard { max-width:820px; margin:0 auto; }
.eabd-wizard__header { display:flex; justify-content:space-between; align-items:flex-start; gap:1rem; margin-bottom:1.5rem; flex-wrap:wrap; }
.eabd-wizard__title { font-size:1.4rem; font-weight:700; margin:0 0 .25rem; }
.eabd-wizard__sub { margin:0; max-width:60ch; }

/* Progress */
.eabd-wizard__progress { list-style:none; padding:0; margin:0 0 2rem; display:flex; gap:0; counter-reset:wstep; position:relative; overflow-x:auto; }
.eabd-wizard__step { flex:1; min-width:0; display:flex; align-items:center; gap:.6rem; padding:.4rem 0; color:var(--eabd-gray-500); font-size:.875rem; position:relative; cursor:pointer; }
.eabd-wizard__step:not(:last-child)::after { content:""; height:2px; background:var(--eabd-gray-200); flex:1; margin:0 .6rem; }
.eabd-wizard__step.is-done::after { background:var(--eabd-blue); }
.eabd-wizard__step-num { display:inline-flex; align-items:center; justify-content:center; width:1.75rem; height:1.75rem; border-radius:50%; background:var(--eabd-gray-100); color:var(--eabd-gray-500); font-weight:700; font-size:.8rem; flex-shrink:0; }
.eabd-wizard__step.is-active .eabd-wizard__step-num { background:var(--eabd-blue); color:#fff; box-shadow:0 0 0 4px var(--eabd-blue-50); }
.eabd-wizard__step.is-done .eabd-wizard__step-num { background:var(--eabd-blue); color:#fff; }
.eabd-wizard__step.is-active { color:var(--eabd-black); font-weight:600; }
.eabd-wizard__step-label { white-space:nowrap; }

/* Panel */
.eabd-wizard__form { background:#fff; border:1px solid var(--eabd-gray-200); border-radius:.75rem; padding:2rem; }
.eabd-wizard__panel { border:none; padding:0; margin:0; display:none; }
.eabd-wizard__panel.is-active { display:block; animation:eabd-fade-in .25s ease-out; }
@keyframes eabd-fade-in { from { opacity:0; transform:translateY(4px); } to { opacity:1; transform:none; } }
.eabd-wizard__panel-title { font-size:1.15rem; font-weight:700; padding:0; margin:0 0 .25rem; color:var(--eabd-black); }
.eabd-wizard__panel-sub { margin:0 0 1.5rem; }
.eabd-wizard__group-title { font-size:.85rem; text-transform:uppercase; letter-spacing:.05em; color:var(--eabd-gray-500); margin:1.5rem 0 .75rem; font-weight:600; }

/* Field grid */
.eabd-field-grid { display:grid; grid-template-columns:repeat(2, 1fr); gap:1rem 1.25rem; }
.eabd-field--full { grid-column:1/-1; }
.eabd-field input, .eabd-field select, .eabd-field textarea { width:100%; padding:.55rem .75rem; border:1px solid var(--eabd-gray-300); border-radius:.5rem; font-size:.9rem; background:#fff; color:var(--eabd-black); font-family:inherit; }
.eabd-field input:focus, .eabd-field select:focus, .eabd-field textarea:focus { outline:none; border-color:var(--eabd-blue); box-shadow:0 0 0 3px var(--eabd-blue-50); }
.eabd-field label { display:block; font-size:.85rem; font-weight:600; margin-bottom:.4rem; color:var(--eabd-gray-700); }
.eabd-field--err input, .eabd-field--err select, .eabd-field--err textarea, input.eabd-field--err { border-color:#DC2626 !important; box-shadow:0 0 0 3px #FEE2E2; }
.eabd-required { color:#DC2626; }

/* Chip-toggles for business attributes */
.eabd-chip-toggles { display:flex; flex-wrap:wrap; gap:.5rem; }
.eabd-chip-toggle { display:inline-flex; align-items:center; cursor:pointer; }
.eabd-chip-toggle input { position:absolute; opacity:0; pointer-events:none; }
.eabd-chip-toggle span { display:inline-block; padding:.4rem .9rem; background:var(--eabd-gray-50); border:1px solid var(--eabd-gray-200); border-radius:999px; font-size:.85rem; color:var(--eabd-gray-700); transition:all .15s; }
.eabd-chip-toggle:hover span { border-color:var(--eabd-blue); color:var(--eabd-blue); }
.eabd-chip-toggle input:checked + span { background:var(--eabd-blue-50); border-color:var(--eabd-blue); color:var(--eabd-blue-700); font-weight:600; }

/* Business hours v2 */
.eabd-hours-presets { display:flex; flex-wrap:wrap; gap:.4rem; margin-bottom:1rem; }
.eabd-btn--sm { padding:.3rem .7rem; font-size:.8rem; }
.eabd-hours-table-v2 { border:1px solid var(--eabd-gray-200); border-radius:.5rem; overflow:hidden; }
.eabd-hours-row { display:grid; grid-template-columns:6rem 6rem 1fr 4rem; align-items:center; gap:.75rem; padding:.75rem 1rem; border-bottom:1px solid var(--eabd-gray-100); }
.eabd-hours-row:last-child { border-bottom:none; }
.eabd-hours-row__day { font-weight:600; color:var(--eabd-gray-700); font-size:.875rem; }
.eabd-hours-row__times { display:flex; align-items:center; gap:.5rem; }
.eabd-hours-row__times input[type=time] { padding:.35rem .5rem; border:1px solid var(--eabd-gray-200); border-radius:.4rem; font-size:.85rem; font-family:inherit; flex:1; min-width:0; max-width:8rem; }
.eabd-hours-row__times input[type=time]:disabled { background:var(--eabd-gray-50); color:var(--eabd-gray-300); }
.eabd-hours-row__dash { color:var(--eabd-gray-500); font-size:.8rem; }
.eabd-hours-row.is-closed { background:var(--eabd-gray-50); }
.eabd-hours-row.is-closed .eabd-hours-row__times { opacity:.5; }
.eabd-hours-row__status { font-size:.8rem; color:var(--eabd-gray-500); text-align:right; }

/* Switch toggle (used for hours open/closed) */
.eabd-switch { display:inline-flex; align-items:center; gap:.5rem; cursor:pointer; user-select:none; }
.eabd-switch input { position:absolute; opacity:0; pointer-events:none; }
.eabd-switch__track { display:inline-block; width:2.25rem; height:1.25rem; background:var(--eabd-gray-200); border-radius:999px; position:relative; transition:background .15s; flex-shrink:0; }
.eabd-switch__track::after { content:""; position:absolute; top:2px; left:2px; width:1rem; height:1rem; background:#fff; border-radius:50%; transition:transform .15s; box-shadow:0 1px 2px rgba(0,0,0,.15); }
.eabd-switch input:checked + .eabd-switch__track { background:var(--eabd-blue); }
.eabd-switch input:checked + .eabd-switch__track::after { transform:translateX(1rem); }
.eabd-switch__label { font-size:.8rem; color:var(--eabd-gray-700); font-weight:500; }

/* Review */
.eabd-wizard__review { background:var(--eabd-gray-50); border-radius:.5rem; padding:1.25rem; margin-bottom:1rem; }
.eabd-wizard__review dl { margin:0; }
.eabd-wizard__review-row { display:grid; grid-template-columns:10rem 1fr; gap:.5rem 1rem; padding:.4rem 0; border-bottom:1px solid var(--eabd-gray-200); font-size:.875rem; }
.eabd-wizard__review-row:last-child { border-bottom:none; }
.eabd-wizard__review-row dt { color:var(--eabd-gray-500); margin:0; font-weight:500; }
.eabd-wizard__review-row dd { margin:0; color:var(--eabd-gray-700); word-break:break-word; }
.eabd-wizard__review details { margin-top:1rem; padding-top:1rem; border-top:1px solid var(--eabd-gray-200); }
.eabd-wizard__review summary { cursor:pointer; font-weight:600; color:var(--eabd-gray-700); font-size:.875rem; }

/* Wizard nav */
.eabd-wizard__nav { display:flex; align-items:center; gap:.5rem; margin-top:2rem; padding-top:1.5rem; border-top:1px solid var(--eabd-gray-100); flex-wrap:wrap; }

/* Wizard responsive */
@media (max-width: 640px) {
  .eabd-wizard__form { padding:1.25rem; border-radius:0; border-left:none; border-right:none; margin:0 -1rem; }
  .eabd-wizard__progress { gap:.25rem; padding-bottom:.5rem; }
  .eabd-wizard__step:not(:last-child)::after { display:none; }
  .eabd-wizard__step-label { display:none; }
  .eabd-wizard__step.is-active .eabd-wizard__step-label { display:inline; }
  .eabd-field-grid { grid-template-columns:1fr; }
  .eabd-hours-row { grid-template-columns:5rem auto 1fr; grid-template-areas: "day switch status" "times times times"; row-gap:.5rem; padding:.85rem; }
  .eabd-hours-row__day { grid-area:day; }
  .eabd-hours-row .eabd-switch { grid-area:switch; }
  .eabd-hours-row__status { grid-area:status; }
  .eabd-hours-row__times { grid-area:times; }
  .eabd-wizard__review-row { grid-template-columns:1fr; gap:.15rem; }
  .eabd-wizard__nav .eabd-btn { flex:1; }
}

/* ── Claim flow (v0.3) ────────────────────────────────────────────────────── */
.eabd-claim-banner { background:#FEF3C7; border-bottom:1px solid #FCD34D; }
.eabd-claim-banner__inner { display:flex; gap:1rem; align-items:center; justify-content:space-between; padding:.85rem 1.25rem; flex-wrap:wrap; }
.eabd-claim-banner__inner > div { color:#78350F; font-size:.9rem; }

.eabd-badge--unclaimed { background:#FEF3C7; color:#92400E; border:1px solid #FCD34D; }

.eabd-claim-page { padding:3rem 1.25rem; }
.eabd-claim-card { max-width:520px; margin:0 auto; background:#fff; border:1px solid var(--eabd-gray-200); border-radius:var(--eabd-radius); padding:2rem; box-shadow:var(--eabd-shadow); }
.eabd-claim-card h1 { font-size:1.4rem; margin:.5rem 0 .75rem; }
.eabd-claim-logo { width:4rem; height:4rem; border-radius:.5rem; object-fit:cover; margin: 0 0 1rem; }
.eabd-claim-form .eabd-btn--full { margin-top:1rem; }

/* Responsive: dashboard sidebar collapse ≤ 768px */
@media (max-width: 768px) {
  .eabd-dash__layout { grid-template-columns:1fr; grid-template-rows:auto 1fr; }
  .eabd-dash__sidebar { flex-direction:row; overflow-x:auto; overflow-y:hidden; padding:.5rem 0; border-right:none; border-bottom:1px solid var(--eabd-gray-200); }
  .eabd-dash__nav-item { flex-direction:column; padding:.5rem .75rem; font-size:.7rem; gap:.2rem; }
  .eabd-dash__nav-item--active { border-right:none; border-bottom:3px solid var(--eabd-blue); }
  .eabd-dash__content { padding:1rem; }
  .eabd-dash__topbar-nav, .eabd-dash__nav { gap:.75rem; font-size:.8rem; }
  .eabd-single-job { grid-template-columns:1fr; }
  .eabd-dash-messages { grid-template-columns:1fr; height:auto; }
  .eabd-prices--v2 { grid-template-columns:1fr; }
}

/* ── v0.4: status badges, draft toast, repeater, intro video, awards, clients */

/* Status badges on dashboard listings */
.eabd-status-badge { display:inline-block; padding:.2rem .6rem; font-size:.75rem; font-weight:600; border-radius:2rem; border:1px solid transparent; line-height:1.4; }
.eabd-status-badge--draft     { background:var(--eabd-gray-100); color:var(--eabd-gray-700); border-color:var(--eabd-gray-200); }
.eabd-status-badge--pending   { background:#FEF3C7; color:#92400E; border-color:#FCD34D; }
.eabd-status-badge--published,
.eabd-status-badge--promoted,
.eabd-status-badge--verified  { background:#D1FAE5; color:#065F46; border-color:#6EE7B7; }
.eabd-status-badge--rejected,
.eabd-status-badge--suspended { background:#FEE2E2; color:#991B1B; border-color:#FCA5A5; }
.eabd-status-badge--expired,
.eabd-status-badge--archived  { background:var(--eabd-gray-50); color:var(--eabd-gray-500); border-color:var(--eabd-gray-200); }

.eabd-dash-table__actions { display:flex; flex-wrap:wrap; gap:.35rem; }

/* Inline toasts on dashboard pages */
.eabd-toast { padding:.85rem 1.1rem; border-radius:.65rem; margin-bottom:1.25rem; font-size:.9rem; border-left:4px solid; }
.eabd-toast--info { background:#EEF4FF; border-color:var(--eabd-blue); color:#1E3A8A; }
.eabd-toast--ok   { background:#D1FAE5; border-color:#10B981; color:#065F46; }

/* Logo upload (wizard step 1) */
.eabd-logo-upload { display:flex; align-items:center; gap:1rem; flex-wrap:wrap; }
.eabd-logo-upload__preview { width:88px; height:88px; border-radius:.6rem; border:1px solid var(--eabd-gray-200); background:var(--eabd-gray-50); overflow:hidden; display:flex; align-items:center; justify-content:center; }
.eabd-logo-upload__preview img { width:100%; height:100%; object-fit:cover; }
.eabd-logo-upload__drop { display:flex; flex-direction:column; gap:.35rem; }

/* Repeater rows (awards / projects / clients in the wizard) */
.eabd-repeater__rows { display:flex; flex-direction:column; gap:1rem; margin-bottom:.75rem; }
.eabd-repeater__row { background:var(--eabd-gray-50); border:1px solid var(--eabd-gray-200); border-radius:.6rem; padding:1rem; }
.eabd-repeater__remove { margin-top:.5rem; color:#991B1B; }
.eabd-repeater__preview { display:block; max-width:120px; margin-top:.5rem; border-radius:.4rem; border:1px solid var(--eabd-gray-200); }
.eabd-checkbox { display:flex; align-items:flex-start; gap:.5rem; cursor:pointer; font-size:.875rem; }
.eabd-checkbox input { margin-top:.2rem; }

/* Intro video embed */
.eabd-intro-video { padding-top:1rem; padding-bottom:1rem; }
.eabd-intro-video__frame { position:relative; padding-top:56.25%; border-radius:.75rem; overflow:hidden; box-shadow:var(--eabd-shadow); background:#000; }
.eabd-intro-video__frame iframe { position:absolute; inset:0; width:100%; height:100%; border:0; }

/* Past-projects grid */
.eabd-projects-grid { display:grid; grid-template-columns:repeat(auto-fill, minmax(280px,1fr)); gap:1rem; }
.eabd-project-card { background:#fff; border:1px solid var(--eabd-gray-200); border-radius:.6rem; overflow:hidden; display:flex; flex-direction:column; }
.eabd-project-card__img { width:100%; aspect-ratio:16/9; object-fit:cover; background:var(--eabd-gray-100); }
.eabd-project-card__body { padding:1rem; display:flex; flex-direction:column; gap:.4rem; flex:1; }
.eabd-project-card__title { font-size:1rem; font-weight:600; margin:0; }
.eabd-project-card__meta { font-size:.8rem; }
.eabd-project-card__summary { font-size:.875rem; color:var(--eabd-gray-700); margin:.25rem 0; }
.eabd-project-card__results { font-size:.825rem; color:var(--eabd-gray-700); }
.eabd-project-card__links { display:flex; gap:.5rem; margin-top:.5rem; flex-wrap:wrap; }

/* Awards grid */
.eabd-awards-grid { display:grid; grid-template-columns:repeat(auto-fill, minmax(260px,1fr)); gap:1rem; }
.eabd-award-card { background:#fff; border:1px solid var(--eabd-gray-200); border-radius:.6rem; padding:1rem; display:flex; gap:1rem; align-items:flex-start; }
.eabd-award-card__media { flex-shrink:0; width:72px; height:72px; border-radius:.4rem; overflow:hidden; background:var(--eabd-gray-100); display:flex; align-items:center; justify-content:center; }
.eabd-award-card__media img { width:100%; height:100%; object-fit:cover; }
.eabd-award-card__media--placeholder { font-size:1.75rem; color:var(--eabd-blue); }
.eabd-award-card__body { flex:1; min-width:0; }
.eabd-award-card__title { font-size:.95rem; font-weight:600; margin:0 0 .15rem; }
.eabd-award-card__meta { font-size:.78rem; }
.eabd-award-card__summary { font-size:.85rem; color:var(--eabd-gray-700); margin:.4rem 0; }

/* Featured-clients logo wall */
.eabd-clients-grid { display:grid; grid-template-columns:repeat(auto-fill, minmax(140px,1fr)); gap:.75rem; }
.eabd-client-card { display:flex; flex-direction:column; align-items:center; justify-content:center; gap:.5rem; padding:.85rem; background:#fff; border:1px solid var(--eabd-gray-200); border-radius:.5rem; text-decoration:none; color:inherit; min-height:110px; transition:border-color .15s, box-shadow .15s; }
.eabd-client-card:hover { border-color:var(--eabd-blue); box-shadow:var(--eabd-shadow-sm); }
.eabd-client-card img { max-width:100%; max-height:54px; object-fit:contain; filter:grayscale(0.2); }
.eabd-client-card:hover img { filter:none; }
.eabd-client-card__label { font-size:.75rem; color:var(--eabd-gray-500); text-align:center; line-height:1.3; }
.eabd-client-card__name-fallback { font-size:.85rem; font-weight:600; color:var(--eabd-gray-700); text-align:center; }

/* Field-upgrade hint inside wizard */
.eabd-field-upgrade { padding:.85rem 1rem; background:var(--eabd-blue-50); border:1px dashed var(--eabd-blue); border-radius:.5rem; color:var(--eabd-blue-700); font-size:.85rem; }

/* ── Footer (refreshed three-column layout) ───────────────────────────────── */
.eabd-footer { background:#0B0F19; color:#9CA3AF; margin-top:4rem; }
.eabd-footer a { color:#D1D5DB; text-decoration:none; }
.eabd-footer a:hover { color:#fff; }
.eabd-footer__inner { display:grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap:2rem; padding:3rem 1.25rem 2rem; }
.eabd-footer__brand { max-width:300px; }
.eabd-footer__logo img { display:block; max-width:220px; height:auto; filter:brightness(0) invert(1); }
.eabd-footer__tag { margin-top:.75rem; font-size:.875rem; line-height:1.5; color:#9CA3AF; }
.eabd-footer__col h4 { color:#fff; font-size:.85rem; text-transform:uppercase; letter-spacing:.05em; margin:0 0 .85rem; font-weight:600; }
.eabd-footer__col ul { list-style:none; padding:0; margin:0; display:flex; flex-direction:column; gap:.5rem; font-size:.875rem; }
.eabd-footer__legal { border-top:1px solid #1F2937; padding:1.25rem 0; font-size:.8rem; }
.eabd-footer__legal .eabd-container { display:flex; justify-content:space-between; gap:1rem; flex-wrap:wrap; }
.eabd-footer__legal .eabd-mut { color:#6B7280; }
.eabd-footer__legal a { color:#9CA3AF; }

@media (max-width:768px) {
  .eabd-footer__inner { grid-template-columns:1fr 1fr; gap:1.5rem; padding:2rem 1.25rem 1.5rem; }
  .eabd-footer__brand { grid-column:1/-1; max-width:none; }
}
@media (max-width:480px) {
  .eabd-footer__inner { grid-template-columns:1fr; }
  .eabd-footer__legal .eabd-container { flex-direction:column; }
}

/* ── v0.5: live AI search, bell, analytics, billing ladder ────────────────── */

/* Wizard defensive */
#eabd-wizard-publish[hidden] { display:none !important; }

/* Header live search dropdown */
.eabd-dash__search { position:relative; }
.eabd-dash__search-dropdown { position:absolute; top:100%; left:0; right:0; margin-top:6px; background:#fff; border:1px solid var(--eabd-gray-200); border-radius:.75rem; box-shadow:var(--eabd-shadow-lg); z-index:300; padding:.35rem; max-height:60vh; overflow-y:auto; }
.eabd-dash__search-loading,
.eabd-dash__search-empty { padding:.85rem 1rem; color:var(--eabd-gray-500); font-size:.85rem; display:flex; align-items:center; gap:.5rem; }
.eabd-dash__search-item { display:flex; align-items:center; gap:.75rem; padding:.55rem .75rem; border-radius:.5rem; text-decoration:none; color:inherit; }
.eabd-dash__search-item:hover { background:var(--eabd-gray-50); }
.eabd-dash__search-logo { flex-shrink:0; width:36px; height:36px; border-radius:.4rem; overflow:hidden; background:var(--eabd-blue-50); display:flex; align-items:center; justify-content:center; color:var(--eabd-blue-700); font-weight:700; }
.eabd-dash__search-logo img { width:100%; height:100%; object-fit:cover; }
.eabd-dash__search-logo-fallback { font-size:.95rem; }
.eabd-dash__search-text { flex:1; min-width:0; display:flex; flex-direction:column; }
.eabd-dash__search-text strong { font-size:.875rem; color:var(--eabd-black); }
.eabd-dash__search-desc { color:var(--eabd-gray-500); font-size:.75rem; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.eabd-dash__search-meta { font-size:.75rem; color:var(--eabd-gray-500); white-space:nowrap; }
.eabd-dash__search-all { display:block; text-align:center; padding:.6rem; font-size:.85rem; color:var(--eabd-blue); border-top:1px solid var(--eabd-gray-100); text-decoration:none; margin-top:.25rem; }
.eabd-dash__search-all:hover { background:var(--eabd-gray-50); }

/* Notifications bell */
.eabd-dash__icon-btn { position:relative; }
.eabd-dash__icon-btn.has-unread::after { content:""; position:absolute; top:.4rem; right:.45rem; width:.55rem; height:.55rem; background:#DC2626; border-radius:50%; border:2px solid #fff; }
.eabd-bell-dropdown { position:absolute; right:0; top:calc(100% + .5rem); background:#fff; border:1px solid var(--eabd-gray-200); border-radius:.75rem; min-width:320px; max-width:380px; box-shadow:var(--eabd-shadow-lg); padding:.4rem; z-index:300; max-height:70vh; overflow-y:auto; }
.eabd-bell-empty, .eabd-bell-loading { padding:1.5rem 1rem; text-align:center; color:var(--eabd-gray-500); font-size:.875rem; }
.eabd-bell-item { display:flex; flex-direction:column; gap:.15rem; padding:.65rem .8rem; border-radius:.5rem; text-decoration:none; color:inherit; }
.eabd-bell-item:hover { background:var(--eabd-gray-50); }
.eabd-bell-item.is-unread { background:var(--eabd-blue-50); }
.eabd-bell-item.is-unread .eabd-bell-item__title { font-weight:600; color:var(--eabd-blue-700); }
.eabd-bell-item__title { font-size:.875rem; color:var(--eabd-gray-700); }
.eabd-bell-item__time  { font-size:.7rem; color:var(--eabd-gray-500); }
.eabd-bell-readall { display:block; width:100%; text-align:center; padding:.55rem; margin-top:.25rem; background:none; border:none; border-top:1px solid var(--eabd-gray-100); color:var(--eabd-blue); cursor:pointer; font-size:.825rem; }
.eabd-bell-readall:hover { background:var(--eabd-gray-50); }

/* Reports page */
.eabd-reports-page .eabd-dash-page__header { display:flex; align-items:center; gap:1rem; flex-wrap:wrap; }
.eabd-reports-toolbar { display:flex; justify-content:space-between; align-items:center; margin:1rem 0 1.25rem; }
.eabd-range-picker { display:inline-flex; background:var(--eabd-gray-50); border:1px solid var(--eabd-gray-200); border-radius:.5rem; padding:.2rem; }
.eabd-range-picker__btn { border:none; background:transparent; padding:.35rem .85rem; font-size:.825rem; border-radius:.35rem; cursor:pointer; color:var(--eabd-gray-700); }
.eabd-range-picker__btn.is-active { background:#fff; color:var(--eabd-blue); font-weight:600; box-shadow:var(--eabd-shadow-sm); }
.eabd-reports-loading { padding:2rem; text-align:center; color:var(--eabd-gray-500); }

.eabd-stats-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(150px,1fr)); gap:.75rem; margin-bottom:1.5rem; }
.eabd-stat-card { background:#fff; border:1px solid var(--eabd-gray-200); border-radius:.65rem; padding:1rem; }
.eabd-stat-card__value { font-size:1.6rem; font-weight:700; color:var(--eabd-black); line-height:1.1; }
.eabd-stat-card__label { font-size:.75rem; text-transform:uppercase; letter-spacing:.04em; color:var(--eabd-gray-500); margin-top:.35rem; font-weight:600; }
.eabd-stat-card__sub   { font-size:.75rem; color:var(--eabd-gray-500); margin-top:.2rem; }

.eabd-health-rings { display:grid; grid-template-columns:1fr 1fr; gap:1rem; margin-bottom:1.5rem; }
.eabd-health-ring { display:flex; align-items:center; gap:1rem; background:#fff; border:1px solid var(--eabd-gray-200); border-radius:.65rem; padding:1rem 1.25rem; color:var(--eabd-blue); }
.eabd-health-ring__label { font-weight:600; color:var(--eabd-black); }
.eabd-health-ring__sub   { font-size:.8rem; margin-top:.2rem; }
@media (max-width:540px) { .eabd-health-rings { grid-template-columns:1fr; } }

.eabd-sparkline { width:100%; height:auto; }

.eabd-weekly-card { background:linear-gradient(135deg, var(--eabd-blue-50) 0%, #fff 70%); border:1px solid var(--eabd-blue); margin-bottom:1.5rem; padding:1.25rem; border-radius:.75rem; }
.eabd-weekly-card__head { display:flex; justify-content:space-between; align-items:center; margin-bottom:.5rem; }
.eabd-weekly-card__body { color:var(--eabd-gray-700); line-height:1.55; font-size:.92rem; }
.eabd-select { padding:.45rem .65rem; border:1px solid var(--eabd-gray-300); border-radius:.5rem; font-size:.875rem; background:#fff; }

/* Billing page */
.eabd-billing-page h2 { font-size:1.05rem; margin:1.5rem 0 .85rem; font-weight:700; }
.eabd-billing-current-plan { background:#fff; border:1px solid var(--eabd-gray-200); border-left:4px solid var(--eabd-blue); border-radius:.65rem; padding:1.25rem 1.5rem; margin-bottom:1rem; display:grid; grid-template-columns:1fr auto; gap:1rem; align-items:center; }
.eabd-billing-current-plan--empty { border-left-color:var(--eabd-gray-300); grid-template-columns:1fr; }
.eabd-billing-current-plan__head { display:flex; align-items:center; gap:.6rem; margin-bottom:.25rem; }
.eabd-billing-current-plan__name { font-size:1.1rem; font-weight:700; color:var(--eabd-black); }
.eabd-billing-current-plan__listing { font-size:.9rem; color:var(--eabd-gray-700); }
.eabd-billing-current-plan__meta { font-size:.8rem; margin-top:.2rem; }
.eabd-billing-current-plan__features { list-style:none; padding:0; margin:.5rem 0 0; display:flex; flex-wrap:wrap; gap:.4rem 1rem; font-size:.825rem; color:var(--eabd-gray-700); }
.eabd-billing-current-plan__cta { display:flex; flex-direction:column; gap:.4rem; align-items:flex-end; }

.eabd-billing-ladder { margin-top:2rem; }
.eabd-billing-ladder__grid { display:grid; grid-template-columns:repeat(auto-fit, minmax(240px, 1fr)); gap:1rem; margin-top:1rem; }
.eabd-billing-ladder__card { position:relative; background:#fff; border:1px solid var(--eabd-gray-200); border-radius:.75rem; padding:1.5rem 1.25rem; display:flex; flex-direction:column; }
.eabd-billing-ladder__card.is-featured { border:2px solid var(--eabd-blue); box-shadow:0 0 0 4px var(--eabd-blue-50); }
.eabd-billing-ladder__badge { position:absolute; top:-.6rem; left:50%; transform:translateX(-50%); background:var(--eabd-blue); color:#fff; padding:.2rem .75rem; border-radius:1rem; font-size:.7rem; font-weight:700; text-transform:uppercase; letter-spacing:.05em; }
.eabd-billing-ladder__card h3 { font-size:1.1rem; font-weight:700; margin:0 0 .35rem; }
.eabd-billing-ladder__price { font-size:1.6rem; font-weight:700; color:var(--eabd-black); display:flex; align-items:baseline; gap:.5rem; }
.eabd-billing-ladder__orig { font-size:.85rem; color:var(--eabd-gray-500); text-decoration:line-through; font-weight:500; }
.eabd-billing-ladder__billing { font-size:.825rem; margin-bottom:.85rem; }
.eabd-billing-ladder__features { list-style:none; padding:0; margin:0 0 1rem; color:var(--eabd-gray-700); font-size:.85rem; }
.eabd-billing-ladder__features li { padding:.3rem 0; border-bottom:1px dashed var(--eabd-gray-100); }
.eabd-billing-ladder__features li:last-child { border-bottom:none; }

@media (max-width:640px) {
  .eabd-billing-current-plan { grid-template-columns:1fr; }
  .eabd-billing-current-plan__cta { align-items:stretch; flex-direction:row; }
  .eabd-billing-current-plan__cta .eabd-btn { flex:1; }
}

/* ──────────────────────────────────────────────────────────────────────────
   v0.6 — public header search, upgrade modal, cover hero, G2-style profile
   ────────────────────────────────────────────────────────────────────────── */

/* Public header live search */
.eabd-header__inner { display:flex; align-items:center; gap:1.25rem; }
.eabd-header__search { flex:1; max-width:480px; position:relative; display:flex; align-items:center; }
.eabd-header__search input { width:100%; background:var(--eabd-gray-50); border:1px solid var(--eabd-gray-200); border-radius:999px; padding:.5rem 1rem .5rem 2.25rem; font-size:.875rem; color:var(--eabd-black); font-family:inherit; }
.eabd-header__search input:focus { outline:none; border-color:var(--eabd-blue); box-shadow:0 0 0 3px var(--eabd-blue-50); background:#fff; }
.eabd-header__search-icon { position:absolute; left:.85rem; color:var(--eabd-gray-500); pointer-events:none; }
.eabd-header__search-toggle { display:none; background:none; border:none; padding:.4rem; cursor:pointer; color:var(--eabd-gray-700); }
.eabd-header__search-toggle:hover { color:var(--eabd-blue); }
.eabd-header__search .eabd-dash__search-dropdown { left:0; right:0; }
@media (max-width:920px) {
  .eabd-header__search { max-width:360px; }
  .eabd-nav a:not(.eabd-btn) { display:none; }
}
@media (max-width:720px) {
  .eabd-header__search { flex:0 0 auto; max-width:none; }
  .eabd-header__search-toggle { display:inline-flex; align-items:center; justify-content:center; width:2.25rem; height:2.25rem; border-radius:50%; }
  .eabd-header__search-icon,
  .eabd-header__search input { display:none; }
  .eabd-header__search.is-open { position:absolute; top:100%; left:0; right:0; background:#fff; padding:.75rem 1rem; border-bottom:1px solid var(--eabd-gray-200); box-shadow:var(--eabd-shadow); z-index:60; }
  .eabd-header__search.is-open input,
  .eabd-header__search.is-open .eabd-header__search-icon { display:block; }
  .eabd-header__search.is-open .eabd-header__search-toggle { display:none; }
  .eabd-header__search.is-open .eabd-dash__search-dropdown { left:1rem; right:1rem; }
}

/* Lock body scroll when modal is open */
body.eabd-no-scroll { overflow:hidden; }

/* ── Upgrade modal ──────────────────────────────────────────────────────── */
/* z-index 10000 sits above slide-over editors (9000) and chat panels (8100)
   so the upgrade modal — and its full-bleed backdrop — always overlays them. */
.eabd-upgrade-modal { position:fixed; inset:0; z-index:10000; display:flex; align-items:center; justify-content:center; padding:1rem; }
.eabd-upgrade-modal[hidden] { display:none !important; }
.eabd-upgrade-modal__backdrop { position:absolute; inset:0; background:rgba(11,15,25,.55); backdrop-filter:blur(2px); }
.eabd-upgrade-modal__shell { position:relative; background:#fff; border-radius:1rem; box-shadow:var(--eabd-shadow-lg); width:100%; max-width:540px; max-height:92vh; overflow:hidden; display:flex; flex-direction:column; }
.eabd-upgrade-modal__head { display:flex; align-items:center; justify-content:space-between; padding:1.25rem 1.5rem .75rem; border-bottom:1px solid var(--eabd-gray-100); }
.eabd-upgrade-modal__head h2 { margin:0; font-size:1.15rem; font-weight:700; color:var(--eabd-black); }
.eabd-upgrade-modal__close { background:none; border:none; font-size:1.6rem; line-height:1; cursor:pointer; color:var(--eabd-gray-500); padding:0 .25rem; }
.eabd-upgrade-modal__close:hover { color:var(--eabd-black); }
.eabd-upgrade-modal__pane { padding:1.5rem; overflow-y:auto; }
.eabd-upgrade-modal__error { background:#FEE2E2; color:#991B1B; padding:.65rem 1rem; font-size:.85rem; margin:0 1.5rem 1rem; border-radius:.5rem; }

.eabd-upgrade-modal__plan { background:linear-gradient(135deg, var(--eabd-blue-50) 0%, #fff 80%); border:1px solid var(--eabd-blue); border-radius:.75rem; padding:1.25rem; margin-bottom:1.25rem; }
.eabd-upgrade-modal__plan-head { display:flex; justify-content:space-between; align-items:flex-start; gap:1rem; }
.eabd-upgrade-modal__plan-head h3 { margin:0; font-size:1.4rem; font-weight:700; color:var(--eabd-black); }
.eabd-upgrade-modal__plan-price { text-align:right; }
.eabd-upgrade-modal__plan-amount { display:block; font-size:1.4rem; font-weight:700; color:var(--eabd-blue-700); }
.eabd-upgrade-modal__plan-billing { font-size:.75rem; color:var(--eabd-gray-500); text-transform:lowercase; }
.eabd-upgrade-modal__plan-desc { margin:.5rem 0 .85rem; font-size:.875rem; }
.eabd-upgrade-modal__features { list-style:none; padding:0; margin:0; display:grid; grid-template-columns:1fr 1fr; gap:.3rem .85rem; font-size:.85rem; color:var(--eabd-gray-700); }
@media (max-width:480px) { .eabd-upgrade-modal__features { grid-template-columns:1fr; } }

.eabd-upgrade-modal__listing-picker { margin-bottom:1rem; }
.eabd-upgrade-modal__listing-picker label { display:block; font-size:.85rem; font-weight:600; margin-bottom:.4rem; }
.eabd-upgrade-modal__listing-picker select { width:100%; padding:.55rem .75rem; border:1px solid var(--eabd-gray-300); border-radius:.5rem; font-size:.9rem; background:#fff; }

.eabd-upgrade-modal__terms { display:flex; align-items:flex-start; gap:.5rem; font-size:.85rem; color:var(--eabd-gray-700); margin-bottom:1rem; }
.eabd-upgrade-modal__terms input { margin-top:.15rem; }

.eabd-upgrade-modal__step-note { margin:0 0 1rem; font-size:.875rem; }
.eabd-upgrade-modal__methods { display:grid; gap:.65rem; margin-bottom:1rem; }
.eabd-upgrade-modal__method { display:flex; align-items:flex-start; gap:.75rem; padding:.85rem 1rem; border:1px solid var(--eabd-gray-200); border-radius:.65rem; cursor:pointer; transition:all .15s; }
.eabd-upgrade-modal__method:has(input:checked) { border-color:var(--eabd-blue); background:var(--eabd-blue-50); }
.eabd-upgrade-modal__method input { margin-top:.2rem; }
.eabd-upgrade-modal__method-title { font-weight:600; color:var(--eabd-black); }
.eabd-upgrade-modal__method-sub { font-size:.8rem; margin-top:.1rem; }

.eabd-upgrade-modal__mpesa { margin-bottom:1rem; }
.eabd-upgrade-modal__mpesa label { display:block; font-size:.85rem; font-weight:600; margin-bottom:.4rem; }
.eabd-upgrade-modal__mpesa input { width:100%; padding:.55rem .75rem; border:1px solid var(--eabd-gray-300); border-radius:.5rem; font-size:.9rem; background:#fff; }
.eabd-upgrade-modal__mpesa input:focus { outline:none; border-color:var(--eabd-blue); box-shadow:0 0 0 3px var(--eabd-blue-50); }

.eabd-upgrade-modal__turnstile { margin-bottom:1rem; min-height:1px; }
.eabd-upgrade-modal__actions { display:flex; justify-content:space-between; gap:.5rem; flex-wrap:wrap; }
.eabd-upgrade-modal__actions .eabd-btn--primary { flex:1; min-width:140px; }

.eabd-upgrade-modal__processing { text-align:center; padding:1.25rem .5rem; }
.eabd-upgrade-modal__processing-icon { margin-bottom:1rem; }
.eabd-upgrade-modal__processing-icon .eabd-spinner { width:2.25rem; height:2.25rem; border-width:3px; }
.eabd-upgrade-modal__processing h3 { font-size:1.1rem; margin:.5rem 0; }
.eabd-upgrade-modal__iframe { width:100%; min-height:60vh; border:1px solid var(--eabd-gray-200); border-radius:.5rem; margin-top:1rem; }
.eabd-upgrade-modal__processing-footer { margin-top:1.25rem; }

/* Mobile-fullscreen */
@media (max-width:640px) {
  .eabd-upgrade-modal { padding:0; }
  .eabd-upgrade-modal__shell { max-height:100vh; height:100vh; border-radius:0; max-width:none; }
}

/* ── Cover hero (single-listing) ────────────────────────────────────────── */
.eabd-profile-cover {
  width:100%;
  height:280px;
  background-image:var(--eabd-cover-url);
  background-size:cover;
  background-position:center center;
  background-color:var(--eabd-gray-100);
}
.eabd-profile-cover--fallback {
  background:linear-gradient(135deg, var(--eabd-blue) 0%, var(--eabd-blue-700) 100%);
}

.eabd-profile-hero-wrap { position:relative; margin-top:-80px; z-index:2; }
.eabd-profile-hero-card {
  background:#fff;
  border:1px solid var(--eabd-gray-200);
  border-radius:1rem;
  box-shadow:var(--eabd-shadow-lg);
  padding:1.5rem;
  display:grid;
  grid-template-columns:auto 1fr auto;
  gap:1.25rem;
  align-items:center;
}
.eabd-profile-hero-card.is-highlighted { border-color:var(--eabd-blue); box-shadow:0 0 0 3px var(--eabd-blue-50), var(--eabd-shadow-lg); }
.eabd-profile-hero-card__logo { width:96px; height:96px; flex-shrink:0; border-radius:.75rem; overflow:hidden; background:var(--eabd-gray-50); border:1px solid var(--eabd-gray-200); display:flex; align-items:center; justify-content:center; }
.eabd-profile-hero-card__logo img { width:100%; height:100%; object-fit:cover; }
.eabd-profile-hero-card__logo-fallback { font-size:2.5rem; font-weight:700; color:var(--eabd-blue); }
.eabd-profile-hero-card__main { min-width:0; }
.eabd-profile-hero-card__name { font-size:1.65rem; font-weight:700; margin:0 0 .35rem; color:var(--eabd-black); line-height:1.15; }
.eabd-profile-hero-card__meta { display:flex; flex-wrap:wrap; gap:.4rem .75rem; align-items:center; font-size:.875rem; color:var(--eabd-gray-700); }
.eabd-profile-hero-card__desc { margin:.6rem 0 .25rem; color:var(--eabd-gray-700); max-width:60ch; }
.eabd-profile-hero-card__chips { display:flex; flex-wrap:wrap; gap:.35rem; margin-top:.6rem; }
.eabd-profile-hero-card__actions { display:flex; flex-direction:column; gap:.5rem; align-items:stretch; min-width:180px; }
.eabd-profile-hero-card__actions .eabd-btn { width:100%; }

@media (max-width:840px) {
  .eabd-profile-cover { height:180px; }
  .eabd-profile-hero-wrap { margin-top:-60px; }
  .eabd-profile-hero-card { grid-template-columns:auto 1fr; padding:1.25rem; gap:1rem; }
  .eabd-profile-hero-card__actions { grid-column:1/-1; flex-direction:row; min-width:0; }
  .eabd-profile-hero-card__actions .eabd-btn { flex:1; }
  .eabd-profile-hero-card__name { font-size:1.3rem; }
}
@media (max-width:480px) {
  .eabd-profile-cover { height:140px; }
  .eabd-profile-hero-card__logo { width:72px; height:72px; }
}

/* ── Two-column profile shell with sticky left TOC ──────────────────────── */
.eabd-profile-shell {
  display:grid;
  grid-template-columns:220px 1fr;
  gap:2.5rem;
  margin-top:2rem;
  padding-bottom:4rem;
}
.eabd-profile-toc { position:sticky; top:5rem; align-self:start; max-height:calc(100vh - 6rem); overflow-y:auto; }
.eabd-profile-toc ul { list-style:none; padding:0; margin:0; display:flex; flex-direction:column; gap:.1rem; }
.eabd-profile-toc a {
  display:block;
  padding:.55rem .85rem;
  font-size:.875rem;
  color:var(--eabd-gray-700);
  text-decoration:none;
  border-left:2px solid transparent;
  border-radius:0 .35rem .35rem 0;
  transition:all .15s;
}
.eabd-profile-toc a:hover { background:var(--eabd-gray-50); color:var(--eabd-blue); }
.eabd-profile-toc a.is-active { background:var(--eabd-blue-50); color:var(--eabd-blue-700); border-left-color:var(--eabd-blue); font-weight:600; }
.eabd-profile-sections { min-width:0; }
.eabd-profile-sections > section { margin-bottom:2rem; scroll-margin-top:5rem; }
.eabd-profile-sections > section > h2 { margin-top:0; font-size:1.25rem; font-weight:700; color:var(--eabd-black); margin-bottom:1rem; }

/* Contact section list (replaces the old aside) */
.eabd-profile-contact { background:#fff; border:1px solid var(--eabd-gray-200); border-radius:.75rem; padding:1.5rem; }
.eabd-profile-contact__list { list-style:none; padding:0; margin:0; display:grid; grid-template-columns:repeat(auto-fit, minmax(220px, 1fr)); gap:.55rem 1.25rem; }
.eabd-profile-contact__list li { font-size:.9rem; color:var(--eabd-gray-700); }
.eabd-profile-contact__badges { margin-top:1.5rem; padding-top:1.25rem; border-top:1px solid var(--eabd-gray-100); }
.eabd-profile-contact__badges h3 { font-size:.85rem; text-transform:uppercase; letter-spacing:.05em; color:var(--eabd-gray-500); margin:0 0 .5rem; }
.eabd-profile-contact__badges-row { display:flex; flex-wrap:wrap; gap:.4rem; }

/* Mobile: TOC becomes a horizontal scrolling pill bar above content */
@media (max-width:960px) {
  .eabd-profile-shell { grid-template-columns:1fr; gap:1rem; }
  .eabd-profile-toc {
    position:sticky;
    top:60px; /* under sticky header */
    z-index:5;
    max-height:none;
    overflow:visible;
    background:#fff;
    border-bottom:1px solid var(--eabd-gray-200);
    margin:0 -1rem;
    padding:.4rem 1rem;
  }
  .eabd-profile-toc ul { flex-direction:row; gap:.25rem; overflow-x:auto; -webkit-overflow-scrolling:touch; flex-wrap:nowrap; }
  .eabd-profile-toc a { white-space:nowrap; border-left:none; border-bottom:2px solid transparent; border-radius:.35rem; padding:.45rem .75rem; }
  .eabd-profile-toc a.is-active { border-left:none; border-bottom-color:var(--eabd-blue); background:transparent; }
}

/* ── Cover upload (wizard) ──────────────────────────────────────────────── */
.eabd-cover-upload { display:flex; flex-direction:column; gap:.75rem; border:1px dashed var(--eabd-gray-300); border-radius:.65rem; padding:1rem; background:var(--eabd-gray-50); }
.eabd-cover-upload__preview { width:100%; max-width:480px; aspect-ratio:4/1; overflow:hidden; border-radius:.5rem; background:#fff; border:1px solid var(--eabd-gray-200); }
.eabd-cover-upload__preview[hidden] { display:none; }
.eabd-cover-upload__preview img { width:100%; height:100%; object-fit:cover; }
.eabd-cover-upload__drop { display:flex; align-items:center; gap:.85rem; flex-wrap:wrap; }

/* ──────────────────────────────────────────────────────────────────────────
   v0.8 — Auth pages, payment-method logos, security pane
   ────────────────────────────────────────────────────────────────────────── */

/* Payment method logos (upgrade modal) */
.eabd-upgrade-modal__method-logo { display:block; height:28px; width:auto; max-width:160px; }
.eabd-upgrade-modal__method-body { display:flex; flex-direction:column; gap:.35rem; }

/* Auth page shell */
.eabd-auth-page { padding:4rem 1.25rem; display:flex; justify-content:center; }
.eabd-auth-card { width:100%; max-width:440px; background:#fff; border:1px solid var(--eabd-gray-200); border-radius:1rem; padding:2.25rem 2rem 2rem; box-shadow:var(--eabd-shadow); }
.eabd-auth-card--wide { max-width:520px; }
.eabd-auth-card__brand { display:flex; justify-content:center; margin-bottom:1.25rem; }
.eabd-auth-card__brand img { display:block; border-radius:.85rem; }
.eabd-auth-card h1 { text-align:center; font-size:1.4rem; margin:0 0 .5rem; color:var(--eabd-black); }
.eabd-auth-card > p { text-align:center; font-size:.875rem; }
.eabd-auth-form { margin-top:1.5rem; }
.eabd-auth-form .eabd-field { margin-bottom:1rem; }
.eabd-auth-form .eabd-field label { display:block; font-size:.85rem; font-weight:600; margin-bottom:.35rem; color:var(--eabd-gray-700); }
.eabd-auth-form input[type=text],
.eabd-auth-form input[type=email],
.eabd-auth-form input[type=password],
.eabd-auth-form input[type=tel] { width:100%; padding:.6rem .85rem; border:1px solid var(--eabd-gray-300); border-radius:.5rem; font-size:.95rem; background:#fff; }
.eabd-auth-form input:focus { outline:none; border-color:var(--eabd-blue); box-shadow:0 0 0 3px var(--eabd-blue-50); }
.eabd-auth-form .eabd-checkbox { display:flex; gap:.5rem; align-items:flex-start; font-size:.85rem; color:var(--eabd-gray-700); }
.eabd-auth-form .eabd-checkbox input { margin-top:.2rem; }
.eabd-auth-turnstile { margin:.85rem 0; min-height:1px; }
.eabd-auth-links { text-align:center; margin-top:1rem; font-size:.85rem; color:var(--eabd-gray-500); }
.eabd-auth-links a { color:var(--eabd-blue); text-decoration:none; }
.eabd-auth-links a:hover { text-decoration:underline; }
.eabd-auth-links > span { margin:0 .3rem; }
.eabd-field-grid { display:grid; grid-template-columns:1fr 1fr; gap:.75rem; }
@media (max-width:480px) { .eabd-field-grid { grid-template-columns:1fr; } }

/* Security pane */
.eabd-security-section { background:#fff; border:1px solid var(--eabd-gray-200); border-radius:.75rem; padding:1.5rem; }
.eabd-security-status { display:flex; justify-content:space-between; gap:1rem; align-items:flex-start; flex-wrap:wrap; }
.eabd-2fa-steps { margin:0; padding-left:1.5rem; color:var(--eabd-gray-700); }
.eabd-2fa-steps li { margin-bottom:1rem; }
.eabd-2fa-qr { display:inline-block; padding:.5rem; background:#fff; border:1px solid var(--eabd-gray-200); border-radius:.5rem; margin:.5rem 0; }
.eabd-2fa-secret { display:inline-block; padding:.4rem .65rem; background:var(--eabd-gray-50); border:1px solid var(--eabd-gray-200); border-radius:.4rem; font-family:monospace; letter-spacing:.1em; }
.eabd-2fa-backup-codes { background:var(--eabd-gray-50); border:1px solid var(--eabd-gray-200); border-radius:.5rem; padding:1rem; font-family:monospace; font-size:.95rem; line-height:1.8; max-width:340px; }
.eabd-security-activity { display:grid; grid-template-columns:auto 1fr; gap:.4rem 1rem; font-size:.875rem; }
.eabd-security-activity dt { color:var(--eabd-gray-500); font-weight:500; margin:0; }
.eabd-security-activity dd { margin:0; color:var(--eabd-gray-700); }

/* ──────────────────────────────────────────────────────────────────────────
   v0.9 — Promotions
   ────────────────────────────────────────────────────────────────────────── */

/* Slot containers — sized so they never obscure page content */
.eabd-promo { margin:1rem 0; }
.eabd-promo--banner   { max-width:100%; }
.eabd-promo--sidebar  { max-width:320px; }
.eabd-promo--inline   { margin:1rem 0; }
.eabd-promo--native   { margin:.5rem 0; }

.eabd-promo__card {
  display:flex; align-items:center; gap:1rem;
  padding:1rem 1.25rem;
  background:linear-gradient(135deg, var(--eabd-blue-50) 0%, #fff 80%);
  border:1px solid var(--eabd-blue);
  border-radius:.75rem;
  text-decoration:none; color:inherit;
  transition:transform .15s, box-shadow .15s;
}
.eabd-promo__card:hover { transform:translateY(-1px); box-shadow:var(--eabd-shadow); }
.eabd-promo__media { flex:0 0 auto; }
.eabd-promo__media img { width:64px; height:64px; border-radius:.5rem; object-fit:cover; display:block; }
.eabd-promo__body { display:flex; flex-direction:column; gap:.2rem; min-width:0; }
.eabd-promo__label {
  font-size:.7rem; text-transform:uppercase; letter-spacing:.05em;
  color:var(--eabd-blue-700); font-weight:700;
}
.eabd-promo__headline { font-size:1rem; color:var(--eabd-black); }
.eabd-promo__sub { font-size:.85rem; color:var(--eabd-gray-700); }
.eabd-promo__cta { color:var(--eabd-blue); font-weight:600; font-size:.85rem; margin-top:.25rem; }

.eabd-promo--banner .eabd-promo__card { min-height:120px; }
.eabd-promo--sidebar .eabd-promo__card { flex-direction:column; align-items:flex-start; padding:1rem; }
.eabd-promo--sidebar .eabd-promo__media img { width:100%; height:auto; aspect-ratio:4/3; }
.eabd-promo--native .eabd-promo__card {
  background:#fff;
  border:1px dashed var(--eabd-blue);
}

/* Sponsored badge in alternatives + cards */
.eabd-card--alt.is-promoted { border:1px solid var(--eabd-blue); background:linear-gradient(135deg, var(--eabd-blue-50) 0%, #fff 60%); }
.eabd-badge--promoted     { background:var(--eabd-blue-50); color:var(--eabd-blue-700); border:1px solid var(--eabd-blue); }

/* Alternatives section */
.eabd-alternatives h2 { font-size:1.15rem; margin-bottom:1rem; }
.eabd-alternatives em { font-style:normal; color:var(--eabd-blue-700); }

/* Promo-edit wizard — slot cards */
.eabd-promo-slots-grid { display:grid; grid-template-columns:repeat(auto-fit, minmax(260px, 1fr)); gap:.75rem; }
.eabd-promo-slot-card {
  display:flex; gap:.75rem; padding:1rem;
  background:#fff; border:1px solid var(--eabd-gray-200); border-radius:.65rem;
  cursor:pointer;
}
.eabd-promo-slot-card:has(input:checked) { border-color:var(--eabd-blue); background:var(--eabd-blue-50); }
.eabd-promo-slot-card input[type=radio] { margin-top:.3rem; }
.eabd-promo-slot-card__head { display:flex; align-items:center; gap:.5rem; margin-bottom:.4rem; }
.eabd-promo-slot-card__desc { font-size:.85rem; color:var(--eabd-gray-700); margin:.25rem 0; }
.eabd-promo-slot-card__meta { display:flex; flex-direction:column; gap:.15rem; color:var(--eabd-gray-500); font-size:.75rem; }

.eabd-promo-slot-card--premium { border-color:#FFD700; }
.eabd-badge--standard { background:#E5E7EB; color:#374151; }
.eabd-badge--pro      { background:#DBEAFE; color:#1E3A8A; }
.eabd-badge--premium  { background:#FEF3C7; color:#92400E; border:1px solid #FCD34D; }

/* Quote breakdown */
.eabd-promo-quote {
  background:var(--eabd-gray-50); padding:1rem;
  border-radius:.65rem; margin-top:1rem; font-size:.9rem;
}

/* Promo metrics expand-row */
.eabd-promo-metrics__grid { display:grid; grid-template-columns:repeat(auto-fit, minmax(160px, 1fr)); gap:.5rem 1rem; padding:.85rem 0; }
.eabd-promo-metrics__grid div { font-size:.875rem; color:var(--eabd-gray-700); }
.eabd-promo-metrics td { background:var(--eabd-gray-50); }

/* Keyword page heading */
.eabd-keyword-page__head { margin:1.5rem 0; }
.eabd-keyword-page__head h1 em { font-style:normal; color:var(--eabd-blue-700); }
.eabd-keyword-page__head small { display:block; text-transform:uppercase; letter-spacing:.06em; font-size:.7rem; color:var(--eabd-gray-500); margin-bottom:.25rem; }

/* ───────────────────────────────────────────────────────────────────────────
   v0.10 — FAQs on listing profiles + comparative page rank-list polish
   ─────────────────────────────────────────────────────────────────────────── */

/* FAQ section */
.eabd-faqs-section { background:#fff; border:1px solid var(--eabd-gray-200); border-radius:.65rem; padding:1.5rem; }
.eabd-faqs { display:flex; flex-direction:column; gap:.5rem; margin-top:.75rem; }
.eabd-faq { border:1px solid var(--eabd-gray-200); border-radius:.5rem; background:var(--eabd-gray-50); overflow:hidden; transition:background .15s; }
.eabd-faq[open] { background:#fff; box-shadow:var(--eabd-shadow-sm); }
.eabd-faq__q { cursor:pointer; padding:.85rem 1rem; font-weight:600; color:var(--eabd-black); list-style:none; position:relative; padding-right:2.5rem; user-select:none; }
.eabd-faq__q::-webkit-details-marker { display:none; }
.eabd-faq__q::after { content:"+"; position:absolute; right:1rem; top:50%; transform:translateY(-50%); font-size:1.3rem; font-weight:300; color:var(--eabd-blue); transition:transform .15s; line-height:1; }
.eabd-faq[open] .eabd-faq__q::after { content:"−"; }
.eabd-faq__q:hover { color:var(--eabd-blue); }
.eabd-faq__a { padding:0 1rem 1rem; color:var(--eabd-gray-700); font-size:.92rem; line-height:1.55; }
.eabd-faq__a p:first-child { margin-top:0; }
.eabd-faq__a p:last-child  { margin-bottom:0; }

/* Comparative pages (top-N / best-N / alternatives) */
.eabd-comparative-page h1 { font-size:1.6rem; line-height:1.2; margin-bottom:.5rem; }
.eabd-comparative-list__item { transition:border-color .15s, box-shadow .15s; }
.eabd-comparative-list__item:hover { border-color:var(--eabd-blue-300, var(--eabd-blue-50)); box-shadow:var(--eabd-shadow-sm); }
.eabd-comparative-list__rank { font-feature-settings:"tnum"; }
.eabd-comparative-list__item h3 a { color:var(--eabd-black); text-decoration:none; }
.eabd-comparative-list__item h3 a:hover { color:var(--eabd-blue); }
@media (max-width:640px) {
  .eabd-comparative-list__item { flex-direction:column; padding:1rem; }
  .eabd-comparative-list__item .eabd-comparative-list__rank { text-align:left; min-width:0; font-size:1.1rem; }
  .eabd-comparative-list__item .eabd-comparative-list__logo { width:48px; height:48px; }
}



/* ─── Awards (v0.11) ───────────────────────────────────────────────────── */
.eabd-vote-modal { position:fixed; inset:0; z-index:9000; display:flex; align-items:center; justify-content:center; }
.eabd-vote-modal[hidden] { display:none !important; }
.eabd-vote-modal__backdrop { position:absolute; inset:0; background:rgba(11,15,25,.55); }
.eabd-vote-modal__shell { position:relative; background:#fff; border-radius:.75rem; max-width:480px; width:calc(100% - 2rem); padding:1.5rem; box-shadow:0 30px 60px rgba(0,0,0,.25); }
.eabd-vote-modal__close { position:absolute; top:.5rem; right:.5rem; background:transparent; border:0; font-size:1.5rem; cursor:pointer; color:#6B7280; }
.eabd-vote-modal .eabd-field { display:block; margin:.75rem 0; }
.eabd-vote-modal .eabd-field input { width:100%; padding:.5rem .75rem; border:1px solid var(--eabd-gray-200); border-radius:.4rem; }
.eabd-vote-total { margin:.75rem 0; padding:.5rem .75rem; background:var(--eabd-gray-50); border-radius:.4rem; font-weight:700; }
.eabd-vote-error { padding:.5rem .75rem; background:#fee2e2; color:#991b1b; border-radius:.4rem; font-size:.875rem; }
@media (max-width:640px) { .eabd-vote-modal__shell { inset:auto 0 0 0; width:100%; max-width:none; border-radius:.75rem .75rem 0 0; } }

.eabd-nominee-card--gold   { border-left:4px solid #facc15 !important; }
.eabd-nominee-card--silver { border-left:4px solid #94a3b8 !important; }
.eabd-nominee-card--bronze { border-left:4px solid #b45309 !important; }
.eabd-ribbon--gold   { background:#facc15 !important; color:#111 !important; }
.eabd-ribbon--silver { background:#94a3b8 !important; }
.eabd-ribbon--bronze { background:#b45309 !important; }

/* ─── v0.12 — Chat widget, Discover page, Jobs cards ─────────────────────── */

.eabd-chat-launcher {
  position: fixed; bottom: 1.25rem; right: 1.25rem; z-index: 8000;
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .8rem 1.1rem; border: 0; border-radius: 999px;
  background: var(--eabd-blue, #0B5FFF); color: #fff; font-weight: 600;
  box-shadow: 0 12px 28px rgba(11, 95, 255, .35);
  cursor: pointer; font-size: .95rem;
  transition: transform .15s ease, box-shadow .15s ease;
}
.eabd-chat-launcher:hover { transform: translateY(-2px); box-shadow: 0 16px 36px rgba(11, 95, 255, .45); }
.eabd-chat-launcher:focus-visible { outline: 2px solid #fff; outline-offset: 3px; }

.eabd-chat-panel {
  position: fixed; bottom: 1.25rem; right: 1.25rem; z-index: 8100;
  width: 360px; max-width: calc(100vw - 2rem); height: 70vh; max-height: 600px;
  background: #fff; border: 1px solid var(--eabd-gray-200, #E5E7EB); border-radius: 1rem;
  box-shadow: 0 30px 60px rgba(0,0,0,.22);
  display: flex; flex-direction: column; overflow: hidden;
  animation: eabd-chat-pop .18s ease-out;
}
.eabd-chat-panel[hidden] { display: none !important; }
@keyframes eabd-chat-pop { from { transform: translateY(12px) scale(.97); opacity: 0; } to { transform: none; opacity: 1; } }
.eabd-chat-panel__head {
  display: flex; gap: .5rem; align-items: flex-start; justify-content: space-between;
  padding: .85rem 1rem; background: #F9FAFB; border-bottom: 1px solid var(--eabd-gray-200, #E5E7EB);
}
.eabd-chat-panel__head strong { display: block; font-size: .95rem; }
.eabd-chat-panel__head small { display: block; font-size: .72rem; margin-top: .15rem; }
.eabd-chat-panel__close { border: 0; background: transparent; font-size: 1.4rem; color: #6B7280; cursor: pointer; padding: 0 .25rem; }
.eabd-chat-panel__body { flex: 1; overflow-y: auto; padding: 1rem; display: flex; flex-direction: column; gap: .65rem; }
.eabd-chat-empty { padding: 1.5rem 0; text-align: center; font-size: .9rem; }
.eabd-chat-msg { display: flex; max-width: 100%; }
.eabd-chat-msg--user { justify-content: flex-end; }
.eabd-chat-msg--assistant { justify-content: flex-start; }
.eabd-chat-msg__bubble {
  max-width: 85%; padding: .6rem .8rem; border-radius: .75rem;
  font-size: .9rem; line-height: 1.45; word-wrap: break-word;
}
.eabd-chat-msg--user .eabd-chat-msg__bubble { background: var(--eabd-blue, #0B5FFF); color: #fff; border-bottom-right-radius: .25rem; }
.eabd-chat-msg--assistant .eabd-chat-msg__bubble { background: #F3F4F6; color: #111827; border-bottom-left-radius: .25rem; }
.eabd-chat-msg__bubble a { color: inherit; text-decoration: underline; }
.eabd-chat-msg--user .eabd-chat-msg__bubble a { color: #fff; }
.eabd-chat-alts { margin-top: .4rem; display: flex; flex-direction: column; gap: .4rem; max-width: 85%; }
.eabd-chat-alt-card {
  display: flex; gap: .55rem; align-items: center; padding: .5rem .65rem;
  background: #fff; border: 1px solid var(--eabd-gray-200, #E5E7EB); border-radius: .55rem;
  text-decoration: none; color: inherit; font-size: .82rem;
}
.eabd-chat-alt-card:hover { border-color: var(--eabd-blue, #0B5FFF); box-shadow: 0 4px 12px rgba(11,95,255,.12); }
.eabd-chat-alt-card img, .eabd-chat-alt-card__init {
  width: 32px; height: 32px; border-radius: 50%; object-fit: cover; flex-shrink: 0;
  background: #F3F4F6; display: inline-flex; align-items: center; justify-content: center; font-weight: 700; color: #6B7280;
}
.eabd-chat-alt-card__name { font-weight: 600; }
.eabd-chat-alt-card__rating { font-size: .75rem; color: #6B7280; }
.eabd-chat-panel__form { display: flex; gap: .4rem; padding: .65rem; border-top: 1px solid var(--eabd-gray-200, #E5E7EB); background: #fff; }
.eabd-chat-panel__form textarea {
  flex: 1; resize: none; padding: .55rem .75rem; border: 1px solid var(--eabd-gray-200, #E5E7EB);
  border-radius: .55rem; font: inherit; line-height: 1.4; max-height: 120px; min-height: 38px;
}
.eabd-chat-panel__form textarea:focus { outline: 2px solid var(--eabd-blue, #0B5FFF); outline-offset: -1px; }
.eabd-chat-panel__form button { padding: 0 .9rem; flex-shrink: 0; }
.eabd-chat-panel__foot {
  display: flex; justify-content: space-between; align-items: center; gap: .5rem;
  padding: .4rem .9rem; background: #F9FAFB; font-size: .7rem;
  border-top: 1px solid var(--eabd-gray-200, #E5E7EB);
}
.eabd-chat-panel__clear { background: transparent; border: 0; color: var(--eabd-blue, #0B5FFF); font-size: .72rem; cursor: pointer; padding: 0; }
@media (max-width: 640px) {
  .eabd-chat-launcher__label { display: none; }
  .eabd-chat-launcher { padding: .85rem; }
  .eabd-chat-panel { inset: 0; width: 100%; height: 100vh; max-height: none; border-radius: 0; bottom: 0; right: 0; }
}

.eabd-discover { min-height: 60vh; }
.eabd-discover__hero {
  display: flex; flex-direction: column; align-items: center; gap: 1.25rem;
  padding: 4rem 1.25rem 2.5rem; text-align: center;
  transition: padding .25s ease;
}
.eabd-discover__hero--compact { padding: 1.25rem 1.25rem 1rem; }
.eabd-discover__hero--compact .eabd-discover__brand img { width: 130px; }
.eabd-discover__brand img { width: 220px; height: auto; transition: width .25s ease; }
.eabd-discover__form {
  display: flex; align-items: center; gap: .5rem;
  width: min(640px, 100%); padding: .35rem .35rem .35rem 1rem;
  background: #fff; border: 1px solid var(--eabd-gray-200, #E5E7EB); border-radius: 999px;
  box-shadow: 0 6px 20px rgba(15, 23, 42, .08);
}
.eabd-discover__form:focus-within { box-shadow: 0 8px 28px rgba(11, 95, 255, .18); border-color: #C7D2FE; }
.eabd-discover__icon { color: #6B7280; flex-shrink: 0; }
.eabd-discover__input { flex: 1; border: 0; background: transparent; font-size: 1rem; padding: .7rem .25rem; outline: none; }
.eabd-discover__submit {
  border-radius: 999px;
  padding: .55rem 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  /* Subtle iridescent gradient + soft glow to signal "AI". */
  background: linear-gradient(135deg, #0B5FFF 0%, #6366F1 50%, #8B5CF6 100%);
  background-size: 200% 200%;
  animation: eabd-ai-shimmer 6s ease-in-out infinite;
  box-shadow: 0 6px 18px rgba(99, 102, 241, .35);
  border: 0;
  font-weight: 600;
}
.eabd-discover__submit:hover {
  box-shadow: 0 8px 24px rgba(99, 102, 241, .5);
  transform: translateY(-1px);
}
.eabd-discover__submit-icon {
  /* Star-burst gets a small twinkle, separate from the gradient shimmer. */
  animation: eabd-ai-twinkle 2.6s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes eabd-ai-shimmer {
  0%, 100% { background-position:   0% 50%; }
  50%      { background-position: 100% 50%; }
}
@keyframes eabd-ai-twinkle {
  0%, 100% { opacity: 1;   transform: scale(1); }
  50%      { opacity: .75; transform: scale(1.12); }
}
@media (prefers-reduced-motion: reduce) {
  .eabd-discover__submit       { animation: none; }
  .eabd-discover__submit-icon  { animation: none; }
}
.eabd-discover__chips { display: flex; align-items: center; justify-content: center; gap: 1.25rem; flex-wrap: wrap; font-size: .85rem; position: relative; }
.eabd-country-chip {
  display: inline-flex; align-items: center; gap: .4rem; padding: .4rem .8rem;
  background: #F3F4F6; border: 1px solid var(--eabd-gray-200, #E5E7EB); border-radius: 999px;
  cursor: pointer; font-size: .85rem; color: #111827;
}
.eabd-country-chip:hover { background: #E5E7EB; }
.eabd-country-chip__caret { font-size: .7rem; color: #6B7280; }
.eabd-country-chip__menu {
  position: absolute; top: 100%; margin-top: .35rem;
  background: #fff; border: 1px solid var(--eabd-gray-200, #E5E7EB); border-radius: .55rem;
  box-shadow: 0 12px 28px rgba(0,0,0,.12); list-style: none; padding: .25rem;
  min-width: 180px; z-index: 50;
}
.eabd-country-chip__menu li { padding: .55rem .8rem; border-radius: .35rem; cursor: pointer; font-size: .9rem; }
.eabd-country-chip__menu li:hover, .eabd-country-chip__menu li[aria-selected="true"] { background: #F3F4F6; }
.eabd-discover__alt-link { color: var(--eabd-blue, #0B5FFF); text-decoration: none; }

.eabd-discover__strips { padding: 1.5rem 1.25rem 3rem; max-width: 1200px; margin: 0 auto; }
.eabd-discover__strip-title { font-size: 1.25rem; font-weight: 700; color: #0F172A; margin: 2rem 0 1rem; letter-spacing: -.01em; }
.eabd-discover__strip-title:first-child { margin-top: 0; }
.eabd-discover__strip { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
.eabd-discover__trending-title { font-size: 1rem; margin: 2rem 0 .5rem; }
.eabd-discover__trending { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: .5rem; }
.eabd-discover__trending a {
  display: inline-block; padding: .35rem .8rem; background: #F3F4F6; border-radius: 999px;
  font-size: .82rem; color: #1F2937; text-decoration: none;
}
.eabd-discover__trending a:hover { background: #E5E7EB; }
.eabd-discover__results { padding: 1rem 1.25rem 3rem; }
.eabd-discover__explanation {
  background: #F0F9FF; border: 1px solid #BAE6FD; border-radius: .55rem;
  padding: .85rem 1rem; font-size: .92rem; line-height: 1.5; margin-bottom: 1rem; color: #0C4A6E;
}
.eabd-discover__explanation:empty { display: none; }
.eabd-discover__results-grid { display: grid; gap: .75rem; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }

.eabd-card__media-fallback {
  display: inline-flex; align-items: center; justify-content: center;
  width: 100%; height: 100%; background: linear-gradient(135deg, #DBEAFE, #BFDBFE);
  font-size: 1.5rem; font-weight: 700; color: var(--eabd-blue, #0B5FFF);
}

.eabd-jobs-page { padding-bottom: 4rem; }
/* Jobs archive — modern hero, sticky floating filter bar, stat tiles. */
.eabd-jobs-hero {
  position: relative;
  background: radial-gradient(circle at 20% 20%, #1E40AF 0%, transparent 50%),
              radial-gradient(circle at 80% 80%, #5B8DEF 0%, transparent 50%),
              linear-gradient(135deg, #0B5FFF 0%, #1E3A8A 100%);
  color: #fff;
  padding: 4rem 0 4.5rem;
  overflow: hidden;
}
.eabd-jobs-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,.08) 1px, transparent 0);
  background-size: 24px 24px;
  pointer-events: none; opacity: .6;
}
.eabd-jobs-hero .eabd-container { position: relative; z-index: 1; padding: 0 1.25rem; }
.eabd-jobs-hero__eyebrow {
  display: inline-flex; align-items: center; gap: .35rem;
  font-size: .78rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: rgba(255,255,255,.85);
  margin-bottom: .65rem;
}
.eabd-jobs-hero h1 {
  margin: 0 0 .65rem; font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800; letter-spacing: -.02em; line-height: 1.05;
  color: #fff;
}
.eabd-jobs-hero p.eabd-mut {
  margin: 0 0 1.5rem; max-width: 56ch;
  color: rgba(255,255,255,.92) !important;
  font-size: 1.05rem; line-height: 1.5;
}
.eabd-jobs-hero__stats {
  display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 1.5rem;
}
.eabd-jobs-hero__stats > div {
  display: flex; flex-direction: column; gap: .15rem;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.18);
  padding: .75rem 1.1rem; border-radius: .65rem;
  min-width: 130px;
}
.eabd-jobs-hero__stats strong { font-size: 1.6rem; font-weight: 800; letter-spacing: -.02em; color: #fff; }
.eabd-jobs-hero__stats span { font-size: .72rem; color: rgba(255,255,255,.85); text-transform: uppercase; letter-spacing: .08em; font-weight: 600; }

/* Sticky filter bar — lifts itself up over the hero with a card shadow. */
.eabd-jobs-filterbar {
  position: sticky; top: 0; z-index: 30;
  margin-top: -2.25rem; padding: 0 1.25rem;
  background: transparent; border: 0; box-shadow: none;
}
.eabd-jobs-filterbar__inner {
  display: flex; gap: .65rem; flex-wrap: wrap; align-items: center;
  background: #fff; padding: .85rem 1rem;
  border: 1px solid var(--eabd-gray-200, #E5E7EB);
  border-radius: .85rem;
  box-shadow: 0 12px 32px -16px rgba(15, 23, 42, .18);
  max-width: 1200px; margin: 0 auto;
}
.eabd-jobs-filterbar__search {
  display: flex; align-items: center; gap: .5rem; flex: 1; min-width: 220px;
  padding: .55rem .9rem; border: 1px solid var(--eabd-gray-200, #E5E7EB);
  border-radius: .55rem; background: #F8FAFC;
  transition: border-color .15s, background .15s, box-shadow .15s;
}
.eabd-jobs-filterbar__search:focus-within {
  background: #fff; border-color: #0B5FFF;
  box-shadow: 0 0 0 3px rgba(11, 95, 255, .14);
}
.eabd-jobs-filterbar__search svg { color: #64748B; flex-shrink: 0; }
.eabd-jobs-filterbar__search input { flex: 1; border: 0; background: transparent; outline: none; font: inherit; font-size: .94rem; }
.eabd-jobs-filterbar select {
  padding: .65rem 2rem .65rem .9rem;
  border: 1px solid var(--eabd-gray-200, #E5E7EB);
  border-radius: .55rem; background: #fff;
  font-size: .94rem; font-weight: 500; color: #0F172A;
  cursor: pointer; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2364748B' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right .65rem center; background-size: 16px;
}
.eabd-jobs-filterbar select:focus { outline: 0; border-color: #0B5FFF; box-shadow: 0 0 0 3px rgba(11, 95, 255, .14); }
.eabd-jobs-filterbar__remote {
  display: inline-flex; align-items: center; gap: .4rem; font-size: .9rem; font-weight: 500;
  padding: .55rem .75rem; border: 1px solid var(--eabd-gray-200, #E5E7EB); border-radius: .55rem;
  background: #F8FAFC; cursor: pointer; user-select: none;
}
.eabd-jobs-filterbar__remote input { accent-color: #0B5FFF; }
.eabd-jobs-filterbar button[type="submit"] { padding: .65rem 1.25rem; border-radius: .55rem; font-weight: 600; }

@media (max-width: 640px) {
  .eabd-jobs-filterbar { margin-top: -1.5rem; padding: 0 .75rem; }
  .eabd-jobs-filterbar__inner { padding: .65rem; border-radius: .7rem; }
  .eabd-jobs-filterbar__search { flex-basis: 100%; }
}

/* Results region. */
.eabd-jobs-results-wrap { padding: 2rem 1.25rem 4rem; max-width: 1200px; margin: 0 auto; }
.eabd-jobs-results-head { margin-bottom: 1rem; display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; }
.eabd-jobs-results-head h2 { margin: 0; font-size: 1.1rem; color: #0F172A; font-weight: 700; }
.eabd-jobs-grid { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); }
.eabd-jobs-grid--compact { grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); }

/* Empty state — mirrors events archive. */
.eabd-jobs-empty {
  background: linear-gradient(180deg, #F8FAFC 0%, #FFFFFF 100%);
  border: 1px dashed var(--eabd-gray-200, #E5E7EB);
  border-radius: 1rem;
  padding: 3rem 1.5rem;
  text-align: center;
}
.eabd-jobs-empty__icon {
  width: 64px; height: 64px; margin: 0 auto 1rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #DBEAFE 0%, #EFF6FF 100%);
  display: flex; align-items: center; justify-content: center; color: #0B5FFF;
}
.eabd-jobs-empty h2 { margin: 0 0 .35rem; font-size: 1.25rem; color: #0F172A; }
.eabd-jobs-empty p { margin: 0 auto .85rem; max-width: 44ch; color: #64748B; }
.eabd-job-card {
  display: flex; flex-direction: column; gap: .65rem;
  background: #fff; border: 1px solid var(--eabd-gray-200, #E5E7EB); border-radius: .75rem;
  padding: 1.1rem 1.1rem 1rem; text-decoration: none; color: inherit;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.eabd-job-card:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.08); border-color: #C7D2FE; }
.eabd-job-card__head { display: flex; gap: .75rem; align-items: center; }
.eabd-job-card__logo { width: 44px; height: 44px; border-radius: .45rem; object-fit: cover; flex-shrink: 0; background: #F3F4F6; }
.eabd-job-card__logo--fallback {
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700; color: var(--eabd-blue, #0B5FFF); background: linear-gradient(135deg, #DBEAFE, #BFDBFE);
}
.eabd-job-card__title { font-weight: 700; font-size: 1rem; }
.eabd-job-card__company { font-size: .82rem; color: #6B7280; }
.eabd-job-card__salary { font-weight: 600; color: #065F46; font-size: .92rem; }
.eabd-job-card__chips { display: flex; flex-wrap: wrap; gap: .35rem; }
.eabd-job-card__foot { font-size: .75rem; }
.eabd-chip {
  display: inline-block; padding: .2rem .65rem; border-radius: 999px;
  background: #F3F4F6; color: #374151; font-size: .72rem; text-transform: capitalize;
}
.eabd-chip--blue { background: #DBEAFE; color: #1E40AF; }
.eabd-jobs-loadmore-wrap { display: flex; justify-content: center; margin-top: 1.5rem; }

/* Inline package-limit upgrade pill — rendered inside .eabd-form-status--err
   by EABD_Api.renderError when the API returns eabd_package_limit / eabd_limit_reached. */
.eabd-form-status .eabd-upgrade-pill {
  display: inline-flex; align-items: center; gap: .2rem;
  margin-left: .5rem; padding: .25rem .7rem;
  font-size: .78rem; font-weight: 600; line-height: 1;
  border-radius: 999px; cursor: pointer;
  background: var(--eabd-blue, #0B5FFF); color: #fff; border: 0;
  box-shadow: 0 2px 6px rgba(11, 95, 255, .25);
  white-space: nowrap;
  transition: transform .12s ease, box-shadow .12s ease;
}
.eabd-form-status .eabd-upgrade-pill:hover { transform: translateY(-1px); box-shadow: 0 4px 10px rgba(11, 95, 255, .35); }
.eabd-form-status .eabd-upgrade-pill:focus-visible { outline: 2px solid #fff; outline-offset: 2px; }
.eabd-form-status--err .eabd-form-status__text { vertical-align: middle; }

/* ─── Dashboard Jobs pane (v0.12) ─────────────────────────────────────── */
.eabd-dash-jobs { display: flex; flex-direction: column; gap: 1.25rem; }
.eabd-dash-jobs__head { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.eabd-dash-jobs__title { margin: 0 0 .25rem; font-size: 1.5rem; }
.eabd-dash-jobs__new { display: inline-flex; align-items: center; gap: .35rem; }
.eabd-dash-jobs__listing-switcher { font-size: .85rem; }
.eabd-dash-jobs__listing-switcher select {
  padding: .4rem .65rem; border: 1px solid var(--eabd-gray-200, #E5E7EB); border-radius: .4rem;
  background: #fff; margin-left: .35rem;
}

.eabd-dash-jobs__stats {
  display: grid; gap: .75rem;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}
.eabd-dash-jobs__stat {
  display: flex; flex-direction: column; gap: .15rem;
  padding: 1rem 1.1rem; background: #fff; border: 1px solid var(--eabd-gray-200, #E5E7EB); border-radius: .55rem;
}
.eabd-dash-jobs__stat strong { font-size: 1.6rem; line-height: 1; }
.eabd-dash-jobs__stat span { font-size: .72rem; text-transform: uppercase; letter-spacing: .04em; }

.eabd-dash-jobs__filterbar { display: flex; gap: .5rem; flex-wrap: wrap; align-items: center; }
.eabd-dash-jobs__search {
  display: flex; align-items: center; gap: .4rem; flex: 1; min-width: 220px;
  padding: .35rem .65rem; background: #F9FAFB; border: 1px solid var(--eabd-gray-200, #E5E7EB); border-radius: .45rem;
}
.eabd-dash-jobs__search svg { color: #6B7280; flex-shrink: 0; }
.eabd-dash-jobs__search input { flex: 1; border: 0; background: transparent; outline: none; font: inherit; padding: .25rem 0; }
.eabd-dash-jobs__filterbar select {
  padding: .5rem .7rem; border: 1px solid var(--eabd-gray-200, #E5E7EB); border-radius: .45rem; background: #fff; font: inherit;
}

.eabd-dash-jobs__grid {
  display: grid; gap: .85rem;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
}
.eabd-dash-job-card {
  display: flex; flex-direction: column; gap: .65rem;
  background: #fff; border: 1px solid var(--eabd-gray-200, #E5E7EB); border-radius: .65rem;
  padding: 1rem 1.1rem;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.eabd-dash-job-card:hover { border-color: #C7D2FE; box-shadow: 0 6px 18px rgba(0,0,0,.06); }
.eabd-dash-job-card__head { display: flex; justify-content: space-between; align-items: flex-start; gap: .5rem; }
.eabd-dash-job-card__title { margin: 0; font-size: 1.02rem; font-weight: 700; }
.eabd-dash-job-card__meta { font-size: .78rem; margin-top: .15rem; }
.eabd-dash-job-card__menu { display: flex; gap: .25rem; flex-shrink: 0; }
.eabd-dash-job-card__salary { font-weight: 600; color: #065F46; font-size: .9rem; }
.eabd-dash-job-card__chips { display: flex; flex-wrap: wrap; gap: .3rem; }
.eabd-text-danger { color: #B91C1C !important; }

/* Slide-over editor. */
.eabd-dash-jobs__editor { position: fixed; inset: 0; z-index: 9000; display: flex; }
.eabd-dash-jobs__editor[hidden] { display: none !important; }
.eabd-dash-jobs__editor-backdrop { position: absolute; inset: 0; background: rgba(11, 15, 25, .45); animation: eabd-fade-in .15s ease; }
@keyframes eabd-fade-in { from { opacity: 0; } to { opacity: 1; } }
.eabd-dash-jobs__editor-panel {
  position: relative; margin-left: auto;
  width: min(540px, 100%); height: 100vh; background: #fff;
  display: flex; flex-direction: column; box-shadow: -20px 0 40px rgba(0,0,0,.18);
  animation: eabd-slide-in .22s ease;
}
@keyframes eabd-slide-in { from { transform: translateX(40px); opacity: .6; } to { transform: none; opacity: 1; } }
.eabd-dash-jobs__editor-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 1.25rem; border-bottom: 1px solid var(--eabd-gray-200, #E5E7EB);
}
.eabd-dash-jobs__editor-head h2 { margin: 0; font-size: 1.1rem; }
.eabd-dash-jobs__editor-x { background: transparent; border: 0; font-size: 1.6rem; line-height: 1; color: #6B7280; cursor: pointer; padding: 0 .35rem; }
.eabd-dash-jobs__editor-body { flex: 1; overflow-y: auto; padding: 1.25rem; display: flex; flex-direction: column; gap: 1rem; }
.eabd-dash-jobs__editor-foot {
  display: flex; align-items: center; justify-content: space-between; gap: .75rem;
  padding: .85rem 1.25rem; border-top: 1px solid var(--eabd-gray-200, #E5E7EB); background: #F9FAFB;
}
.eabd-dash-jobs__editor-actions { display: flex; gap: .5rem; }

/* Form primitives. */
.eabd-dash-jobs__editor-body .eabd-field { display: flex; flex-direction: column; gap: .3rem; }
.eabd-dash-jobs__editor-body label { font-size: .82rem; font-weight: 600; color: #374151; }
.eabd-dash-jobs__editor-body input[type="text"],
.eabd-dash-jobs__editor-body input[type="number"],
.eabd-dash-jobs__editor-body input[type="email"],
.eabd-dash-jobs__editor-body input[type="url"],
.eabd-dash-jobs__editor-body input[type="date"],
.eabd-dash-jobs__editor-body select,
.eabd-dash-jobs__editor-body textarea {
  width: 100%; padding: .55rem .75rem; border: 1px solid var(--eabd-gray-200, #E5E7EB); border-radius: .45rem;
  font: inherit; line-height: 1.4; background: #fff;
}
.eabd-dash-jobs__editor-body input:focus,
.eabd-dash-jobs__editor-body select:focus,
.eabd-dash-jobs__editor-body textarea:focus {
  outline: 2px solid var(--eabd-blue, #0B5FFF); outline-offset: -1px; border-color: transparent;
}
.eabd-dash-jobs__editor-body textarea { resize: vertical; min-height: 110px; }
.eabd-dash-jobs__editor-body .eabd-field-hint { font-size: .75rem; color: #6B7280; font-weight: 400; }
.eabd-dash-jobs__editor-body .eabd-required { color: #DC2626; }
.eabd-field-grid { display: grid; gap: 1rem; grid-template-columns: 1fr 1fr; }

/* iOS-style toggle. */
.eabd-toggle { display: inline-flex; align-items: center; gap: .65rem; cursor: pointer; font-weight: 500; font-size: .9rem; }
.eabd-toggle input { position: absolute; opacity: 0; pointer-events: none; }
.eabd-toggle__track {
  width: 38px; height: 22px; background: #D1D5DB; border-radius: 999px; position: relative;
  transition: background .15s ease;
}
.eabd-toggle__thumb {
  position: absolute; top: 2px; left: 2px; width: 18px; height: 18px;
  background: #fff; border-radius: 50%; box-shadow: 0 1px 3px rgba(0,0,0,.2);
  transition: transform .15s ease;
}
.eabd-toggle input:checked + .eabd-toggle__track { background: var(--eabd-blue, #0B5FFF); }
.eabd-toggle input:checked + .eabd-toggle__track .eabd-toggle__thumb { transform: translateX(16px); }

/* Empty state. */
.eabd-empty-state {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  padding: 3rem 1.25rem; background: #fff; border: 1px dashed var(--eabd-gray-200, #E5E7EB); border-radius: .65rem;
}
.eabd-empty-state h2 { margin: .25rem 0 .35rem; font-size: 1.15rem; }
.eabd-empty-state p { margin: 0 0 1rem; }
.eabd-empty-state--small { padding: 1.5rem 1rem; }
.eabd-empty-state--small p { margin: 0; }

@media (max-width: 640px) {
  .eabd-dash-jobs__editor-panel { width: 100%; box-shadow: none; }
  .eabd-field-grid { grid-template-columns: 1fr; }
}

/* ─── v0.15: /search/ advanced filter UI + Events surfaces ─────────────── */
.eabd-search-page { padding-bottom: 4rem; }
/* Search/browse archive — modern hero, floating filter bar, glass stat tiles. */
.eabd-search-page__hero {
  position: relative;
  background: radial-gradient(circle at 20% 20%, #1E40AF 0%, transparent 50%),
              radial-gradient(circle at 80% 80%, #5B8DEF 0%, transparent 50%),
              linear-gradient(135deg, #0B5FFF 0%, #1E3A8A 100%);
  color: #fff;
  padding: 4rem 0 4.5rem;
  overflow: hidden;
}
.eabd-search-page__hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,.08) 1px, transparent 0);
  background-size: 24px 24px;
  pointer-events: none; opacity: .6;
}
.eabd-search-page__hero .eabd-container { position: relative; z-index: 1; padding: 0 1.25rem; }
.eabd-search-page__eyebrow {
  display: inline-flex; align-items: center; gap: .35rem;
  font-size: .78rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: rgba(255,255,255,.85);
  margin-bottom: .65rem;
}
.eabd-search-page__hero h1 {
  margin: 0 0 .65rem; font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800; letter-spacing: -.02em; line-height: 1.05;
  color: #fff;
}
.eabd-search-page__hero p.eabd-mut {
  margin: 0 0 1.5rem; max-width: 56ch;
  color: rgba(255,255,255,.92) !important;
  font-size: 1.05rem; line-height: 1.5;
}
.eabd-search-page__stats { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 1.5rem; }
.eabd-search-page__stats > div {
  display: flex; flex-direction: column; gap: .15rem;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.18);
  padding: .75rem 1.1rem; border-radius: .65rem;
  min-width: 140px;
}
.eabd-search-page__stats strong { font-size: 1.6rem; font-weight: 800; letter-spacing: -.02em; color: #fff; }
.eabd-search-page__stats span {
  font-size: .72rem;
  color: rgba(255,255,255,.85) !important;
  text-transform: uppercase; letter-spacing: .08em; font-weight: 600;
}

/* Sticky filter bar — floats up over the hero with a card lift. */
.eabd-search-page__filterbar {
  position: sticky; top: 0; z-index: 30;
  margin-top: -2.25rem; padding: 0 1.25rem;
  background: transparent; border: 0; box-shadow: none;
}
.eabd-search-page__filterbar-inner {
  display: flex; gap: .55rem; flex-wrap: wrap; align-items: center;
  background: #fff; padding: .85rem 1rem;
  border: 1px solid var(--eabd-gray-200, #E5E7EB);
  border-radius: .85rem;
  box-shadow: 0 12px 32px -16px rgba(15, 23, 42, .18);
  max-width: 1200px; margin: 0 auto;
}
.eabd-search-page__search {
  display: flex; align-items: center; gap: .5rem; flex: 1; min-width: 220px;
  padding: .55rem .9rem; border: 1px solid var(--eabd-gray-200, #E5E7EB);
  border-radius: .55rem; background: #F8FAFC;
  transition: border-color .15s, background .15s, box-shadow .15s;
}
.eabd-search-page__search:focus-within {
  background: #fff; border-color: #0B5FFF;
  box-shadow: 0 0 0 3px rgba(11, 95, 255, .14);
}
.eabd-search-page__search svg { color: #64748B; flex-shrink: 0; }
.eabd-search-page__search input { flex: 1; border: 0; background: transparent; outline: none; font: inherit; font-size: .94rem; }
.eabd-search-page__filterbar select {
  padding: .55rem 2rem .55rem .85rem;
  border: 1px solid var(--eabd-gray-200, #E5E7EB);
  border-radius: .55rem; background: #fff;
  font-size: .9rem; font-weight: 500; color: #0F172A;
  cursor: pointer; appearance: none; max-width: 180px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2364748B' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right .6rem center; background-size: 14px;
}
.eabd-search-page__filterbar select:focus {
  outline: 0; border-color: #0B5FFF;
  box-shadow: 0 0 0 3px rgba(11, 95, 255, .14);
}
.eabd-search-page__verified-toggle {
  display: inline-flex; align-items: center; gap: .4rem; font-size: .9rem; font-weight: 500;
  padding: .55rem .75rem; border: 1px solid var(--eabd-gray-200, #E5E7EB); border-radius: .55rem;
  background: #F8FAFC; cursor: pointer; user-select: none;
}
.eabd-search-page__verified-toggle input { accent-color: #0B5FFF; }
.eabd-search-page__filterbar button[type="submit"] { padding: .55rem 1.2rem; border-radius: .55rem; font-weight: 600; }
.eabd-search-page__filterbar a { padding: .55rem .35rem; font-size: .88rem; }

@media (max-width: 640px) {
  .eabd-search-page__filterbar { margin-top: -1.5rem; padding: 0 .75rem; }
  .eabd-search-page__filterbar-inner { padding: .65rem; border-radius: .7rem; }
  .eabd-search-page__search { flex-basis: 100%; }
  .eabd-search-page__filterbar select { max-width: none; flex: 1 1 calc(50% - .3rem); }
}

/* Results region. */
.eabd-search-page__results-wrap { padding: 2rem 1.25rem 4rem; max-width: 1200px; margin: 0 auto; }
.eabd-search-page__results-head { margin-bottom: 1rem; display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.eabd-search-page__results-head h2 { margin: 0; font-size: 1.1rem; color: #0F172A; font-weight: 700; }
.eabd-search-page__loadmore-wrap { display: flex; justify-content: center; margin-top: 1.5rem; }

/* Empty state — mirrors events + jobs archives. */
.eabd-search-page__empty {
  background: linear-gradient(180deg, #F8FAFC 0%, #FFFFFF 100%);
  border: 1px dashed var(--eabd-gray-200, #E5E7EB);
  border-radius: 1rem;
  padding: 3rem 1.5rem;
  text-align: center;
  grid-column: 1 / -1;
}
.eabd-search-page__empty__icon {
  width: 64px; height: 64px; margin: 0 auto 1rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #DBEAFE 0%, #EFF6FF 100%);
  display: flex; align-items: center; justify-content: center; color: #0B5FFF;
}
.eabd-search-page__empty h2 { margin: 0 0 .35rem; font-size: 1.25rem; color: #0F172A; }
.eabd-search-page__empty p { margin: 0 auto .85rem; max-width: 44ch; color: #64748B; }

/* Public review card. */
.eabd-review { margin-bottom: .75rem; padding: 1rem; border: 1px solid var(--eabd-gray-200, #E5E7EB); border-radius: .65rem; background: #fff; }
.eabd-review .eabd-stars { color: #F59E0B; font-size: 1rem; letter-spacing: .05em; }
.eabd-review p { margin: .4rem 0; }
.eabd-review__meta { font-size: .8rem; }
.eabd-review__reply { margin-top: .55rem; padding: .6rem .8rem; background: #F0F9FF; border-left: 3px solid #0EA5E9; border-radius: 0 .35rem .35rem 0; font-size: .9rem; }

/* Write-a-review form. */
.eabd-review-form-wrap { margin-top: 1rem; }
.eabd-review-form { padding: 1rem 1.1rem; border: 1px solid var(--eabd-gray-200, #E5E7EB); border-radius: .65rem; background: #F9FAFB; display: flex; flex-direction: column; gap: .5rem; }
.eabd-review-form--anon { text-align: center; align-items: center; }
.eabd-review-form--ok { background: #ECFDF5; border-color: #A7F3D0; }
.eabd-review-form__stars { display: inline-flex; gap: .15rem; font-size: 1.5rem; line-height: 1; }
.eabd-review-form__star { position: relative; cursor: pointer; color: #D1D5DB; transition: color .12s ease; }
.eabd-review-form__star input { position: absolute; opacity: 0; pointer-events: none; }
.eabd-review-form__star:hover, .eabd-review-form__star:hover ~ .eabd-review-form__star { color: #F59E0B; }
.eabd-review-form__star:has(input:checked), .eabd-review-form__star:has(input:checked) ~ .eabd-review-form__star { color: #F59E0B; }
/* Fallback for browsers without :has — flip the radiogroup order via CSS direction */
.eabd-review-form__stars { direction: rtl; justify-content: flex-end; }
.eabd-review-form__stars .eabd-review-form__star input:checked ~ * { color: #F59E0B; }
.eabd-review-form input.eabd-input, .eabd-review-form textarea.eabd-input { padding: .55rem .75rem; border: 1px solid var(--eabd-gray-200, #E5E7EB); border-radius: .45rem; background: #fff; font: inherit; }
.eabd-review-form__foot { display: flex; justify-content: space-between; align-items: center; gap: .5rem; margin-top: .2rem; }
.eabd-sr-only { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

.eabd-badge--pending { background: #FEF3C7 !important; color: #92400E !important; }
.eabd-badge--ok      { background: #D1FAE5 !important; color: #065F46 !important; }
.eabd-badge--err     { background: #FEE2E2 !important; color: #991B1B !important; }
.eabd-badge--gray    { background: #E5E7EB !important; color: #374151 !important; }
.eabd-badge--warn    { background: #FED7AA !important; color: #9A3412 !important; }

/* ==== Events ==== */
/* ==== Events archive — modern hero, filter bar, cards, empty state ==== */
.eabd-events-hero {
	position: relative;
	background: radial-gradient(circle at 20% 20%, #1E40AF 0%, transparent 50%),
	            radial-gradient(circle at 80% 80%, #5B8DEF 0%, transparent 50%),
	            linear-gradient(135deg, #0B5FFF 0%, #1E3A8A 100%);
	color: #fff;
	padding: 4rem 0 4.5rem;
	overflow: hidden;
}
.eabd-events-hero::before {
	content: '';
	position: absolute; inset: 0;
	background-image:
		radial-gradient(circle at 1px 1px, rgba(255,255,255,.08) 1px, transparent 0);
	background-size: 24px 24px;
	pointer-events: none;
	opacity: .6;
}
.eabd-events-hero .eabd-container { position: relative; z-index: 1; padding: 0 1.25rem; }
.eabd-events-hero__eyebrow {
	display: inline-flex; align-items: center; gap: .35rem;
	font-size: .78rem; font-weight: 700; letter-spacing: .12em;
	text-transform: uppercase; color: rgba(255,255,255,.85);
	margin-bottom: .65rem;
}
.eabd-events-hero h1 {
	margin: 0 0 .65rem; font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 800; letter-spacing: -.02em; line-height: 1.05;
	color: #fff;
}
.eabd-events-hero p {
	margin: 0 0 1.25rem; max-width: 56ch;
	color: rgba(255,255,255,.92);
	font-size: 1.05rem; line-height: 1.5;
}
.eabd-events-hero__chip {
	display: inline-flex; align-items: center; gap: .45rem;
	background: rgba(255,255,255,.16);
	backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
	border: 1px solid rgba(255,255,255,.22);
	padding: .45rem .8rem; border-radius: 999px;
	font-size: .88rem; font-weight: 500; color: #fff;
}
.eabd-events-hero__chip svg { color: #fff; }

.eabd-events-grid-wrap { padding: 2rem 1.25rem 4rem; max-width: 1200px; margin: 0 auto; }
.eabd-events-grid {
	display: grid; gap: 1.25rem;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

.eabd-event-card {
	display: flex; flex-direction: column;
	background: #fff;
	border: 1px solid var(--eabd-gray-200, #E5E7EB);
	border-radius: .85rem;
	overflow: hidden;
	text-decoration: none; color: inherit;
	transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.eabd-event-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 16px 40px -12px rgba(11, 95, 255, .22);
	border-color: rgba(11, 95, 255, .25);
}
.eabd-event-card__cover {
	aspect-ratio: 16/9;
	background: linear-gradient(135deg, #0B5FFF 0%, #5B8DEF 100%);
	background-size: cover; background-position: center;
	display: flex; align-items: center; justify-content: center;
	position: relative;
}
.eabd-event-card__cover::after {
	content: ''; position: absolute; inset: 0;
	background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,.18) 100%);
	pointer-events: none;
}
.eabd-event-card__cover-init {
	font-size: 3.5rem; font-weight: 800;
	color: rgba(255,255,255,.7); letter-spacing: -.04em;
}
.eabd-event-card__body { padding: 1rem 1.1rem 1.15rem; }
.eabd-event-card__date {
	font-size: .78rem; font-weight: 700;
	color: #0B5FFF; text-transform: uppercase;
	letter-spacing: .04em; margin-bottom: .35rem;
}
.eabd-event-card__title {
	margin: 0 0 .3rem; font-size: 1.1rem; font-weight: 700;
	color: #0F172A; line-height: 1.3;
	display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
	overflow: hidden;
}
.eabd-event-card__venue {
	font-size: .88rem; color: #64748B;
	display: flex; align-items: center; gap: .3rem;
}
.eabd-event-card__venue::before {
	content: ''; width: 14px; height: 14px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2364748B' stroke-width='2'%3E%3Cpath d='M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E");
	background-size: contain; background-repeat: no-repeat;
	flex-shrink: 0;
}

/* Empty state — friendlier illustration + CTA copy. */
.eabd-events-empty {
	background: linear-gradient(180deg, #F8FAFC 0%, #FFFFFF 100%);
	border: 1px dashed var(--eabd-gray-200, #E5E7EB);
	border-radius: 1rem;
	padding: 3rem 1.5rem;
	text-align: center;
}
.eabd-events-empty__icon {
	width: 64px; height: 64px; margin: 0 auto 1rem;
	border-radius: 50%;
	background: linear-gradient(135deg, #DBEAFE 0%, #EFF6FF 100%);
	display: flex; align-items: center; justify-content: center;
	color: #0B5FFF;
}
.eabd-events-empty h2 { margin: 0 0 .35rem; font-size: 1.25rem; color: #0F172A; }
.eabd-events-empty p { margin: 0 auto .85rem; max-width: 44ch; color: #64748B; }

/* Event detail page */
.eabd-event-page__cover { min-height: 280px; background: linear-gradient(135deg, #0B5FFF 0%, #5B8DEF 100%); background-size: cover; background-position: center; color: #fff; display: flex; align-items: flex-end; padding: 2.5rem 0 2rem; position: relative; }
.eabd-event-page__cover::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,.55) 100%); pointer-events: none; }
.eabd-event-page__cover .eabd-container { position: relative; z-index: 1; }
.eabd-event-page__cover h1 { margin: 0 0 .35rem; font-size: 2.1rem; }
.eabd-event-page__when { font-size: 1rem; opacity: .95; }
.eabd-event-page__grid { display: grid; grid-template-columns: 1fr 360px; gap: 2rem; padding: 2rem 1.25rem 3rem; align-items: start; }
@media (max-width: 860px) { .eabd-event-page__grid { grid-template-columns: 1fr; } }
.eabd-event-page__tickets { position: sticky; top: 1rem; background: #fff; border: 1px solid var(--eabd-gray-200, #E5E7EB); border-radius: .65rem; padding: 1.1rem 1.15rem 1.25rem; }
.eabd-event-page__tickets h2 { margin: 0 0 .65rem; font-size: 1.1rem; }
.eabd-ticket-option { display: flex; gap: .65rem; padding: .7rem .8rem; border: 1px solid var(--eabd-gray-200, #E5E7EB); border-radius: .5rem; margin-bottom: .55rem; cursor: pointer; transition: border-color .12s, background .12s; }
.eabd-ticket-option:hover { border-color: #0B5FFF; }
.eabd-ticket-option:has(input:checked) { border-color: #0B5FFF; background: #F0F6FF; }
.eabd-ticket-option--sold { opacity: .55; cursor: not-allowed; }
.eabd-ticket-option__body { flex: 1; }
.eabd-ticket-option__name { font-weight: 600; }
.eabd-ticket-option__desc { font-size: .85rem; margin: .15rem 0; }
.eabd-ticket-option__meta { font-size: .9rem; display: flex; gap: .4rem; flex-wrap: wrap; align-items: center; }
.eabd-event-page__tickets .eabd-field { margin: .55rem 0; }
.eabd-event-page__tickets .eabd-field label { display: block; font-size: .82rem; font-weight: 600; margin-bottom: .25rem; color: #374151; }
.eabd-event-page__tickets .eabd-field input { width: 100%; padding: .55rem .7rem; border: 1px solid var(--eabd-gray-200, #E5E7EB); border-radius: .45rem; font: inherit; }
.eabd-event-page__tickets button[type="submit"] { width: 100%; margin-top: .75rem; }

/* Event check-in dashboard */
.eabd-checkin { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
@media (max-width: 860px) { .eabd-checkin { grid-template-columns: 1fr; } }
.eabd-checkin__col { background: #fff; border: 1px solid var(--eabd-gray-200, #E5E7EB); border-radius: .5rem; padding: 1rem; }
.eabd-checkin__scanner { margin-bottom: 1rem; }
.eabd-checkin__manual { margin-top: .75rem; }
.eabd-checkin__result { margin-top: .75rem; }
.eabd-checkin__msg { padding: .65rem .8rem; border-radius: .4rem; font-size: .92rem; }
.eabd-checkin__msg--ok   { background: #D1FAE5; color: #065F46; }
.eabd-checkin__msg--err  { background: #FEE2E2; color: #991B1B; }
.eabd-checkin__msg--warn { background: #FEF3C7; color: #92400E; }
.eabd-checkin__attendees { max-height: 480px; overflow: auto; }
.eabd-checkin__row { display: flex; justify-content: space-between; align-items: center; padding: .55rem 0; border-top: 1px solid #F3F4F6; gap: .5rem; }
.eabd-checkin__row:first-child { border-top: 0; }

/* Form status states reused by ticket purchase + admin marketing */
.eabd-form-status { margin: .5rem 0; font-size: .9rem; }
.eabd-form-status--ok      { color: #065F46; }
.eabd-form-status--err     { color: #991B1B; }
.eabd-form-status--pending { color: #92400E; }

/* ==== Events v0.15.1 — filter bar, badges, share, countdown, success card ==== */
/* Sticky filter bar — pulls itself up over the hero with a card lift. */
.eabd-events-filter-bar {
	position: sticky; top: 0; z-index: 30;
	margin-top: -2.25rem; padding: 0 1.25rem;
}
.eabd-events-filter {
	display: flex; gap: .65rem; flex-wrap: wrap; align-items: center;
	background: #fff; padding: .85rem 1rem;
	border: 1px solid var(--eabd-gray-200, #E5E7EB);
	border-radius: .85rem;
	box-shadow: 0 12px 32px -16px rgba(15, 23, 42, .18);
	max-width: 1200px; margin: 0 auto;
}
.eabd-events-filter__search {
	flex: 1; min-width: 220px;
	padding: .65rem .9rem .65rem 2.4rem;
	border: 1px solid var(--eabd-gray-200, #E5E7EB);
	border-radius: .55rem; background: #F8FAFC;
	font-size: .94rem; transition: border-color .15s, background .15s, box-shadow .15s;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2364748B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cline x1='21' y1='21' x2='16.65' y2='16.65'/%3E%3C/svg%3E");
	background-repeat: no-repeat; background-position: .75rem center; background-size: 18px;
}
.eabd-events-filter__search:focus {
	outline: 0; background: #fff;
	border-color: #0B5FFF;
	box-shadow: 0 0 0 3px rgba(11, 95, 255, .14);
}
.eabd-events-filter select {
	padding: .65rem 2rem .65rem .9rem;
	border: 1px solid var(--eabd-gray-200, #E5E7EB);
	border-radius: .55rem; background: #fff;
	font-size: .94rem; font-weight: 500; color: #0F172A;
	cursor: pointer; appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2364748B' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
	background-repeat: no-repeat; background-position: right .65rem center; background-size: 16px;
}
.eabd-events-filter select:focus { outline: 0; border-color: #0B5FFF; box-shadow: 0 0 0 3px rgba(11, 95, 255, .14); }
.eabd-events-filter button[type="submit"] { padding: .65rem 1.25rem; border-radius: .55rem; font-weight: 600; }

@media (max-width: 640px) {
	.eabd-events-filter-bar { margin-top: -1.5rem; padding: 0 .75rem; }
	.eabd-events-filter { padding: .65rem; border-radius: .7rem; }
	.eabd-events-filter__search { flex-basis: 100%; }
}

.eabd-event-card__cover { position: relative; }
.eabd-event-card__badge { position: absolute; top: .55rem; right: .55rem; padding: .25rem .55rem; border-radius: 999px; font-size: .72rem; font-weight: 700; letter-spacing: .02em; text-transform: uppercase; background: rgba(255,255,255,.96); color: #111827; box-shadow: 0 1px 2px rgba(0,0,0,.08); }
.eabd-event-card__badge--err    { background: #FEE2E2; color: #991B1B; }
.eabd-event-card__badge--warn   { background: #FEF3C7; color: #92400E; }
.eabd-event-card__badge--accent { background: #DBEAFE; color: #1D4ED8; }

.eabd-event-page__cancel-banner { background: rgba(239, 68, 68, .92); color: #fff; padding: .5rem .85rem; border-radius: .4rem; display: inline-block; font-weight: 600; margin-bottom: .65rem; }
.eabd-event-page__share { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.25rem; padding-top: .75rem; border-top: 1px solid var(--eabd-gray-200, #E5E7EB); align-items: center; }
.eabd-event-page__share a, .eabd-event-page__share button { color: #0B5FFF; text-decoration: none; font-size: .9rem; }
.eabd-event-page__share a:hover, .eabd-event-page__share button:hover { text-decoration: underline; }
.eabd-link-btn { background: none; border: 0; padding: 0; font: inherit; cursor: pointer; color: #0B5FFF; }
.eabd-event-page__dir-link { color: #0B5FFF; font-weight: 600; }
.eabd-event-page__refund { background: #F9FAFB; border-left: 3px solid #0B5FFF; padding: .5rem .85rem; border-radius: .25rem; font-size: .92rem; }

.eabd-ticket-option__strike { text-decoration: line-through; color: #9CA3AF; margin-right: .25rem; }
.eabd-ticket-option__early-bird-label { display: inline-block; padding: .1rem .4rem; border-radius: 999px; background: #DCFCE7; color: #166534; font-size: .7rem; font-weight: 700; margin-left: .35rem; text-transform: uppercase; letter-spacing: .03em; }
.eabd-ticket-option__countdown { display: inline-block; font-size: .82rem; }

.eabd-ticket-success-card { background: #fff; border: 1px solid var(--eabd-gray-200, #E5E7EB); border-radius: .65rem; padding: 1.5rem 1.25rem; text-align: center; color: #065F46; }
.eabd-ticket-success-card svg { color: #10B981; margin-bottom: .35rem; }
.eabd-ticket-success-card h3 { margin: .35rem 0 .25rem; color: #111827; }
.eabd-ticket-success-card p { margin: .35rem 0; color: #374151; }

/* ==== Card signals — tiny non-obscuring pills + hover ranking-factor popover ==== */
.eabd-card__signals {
  display: flex; flex-wrap: wrap; gap: .35rem;
  margin-top: .4rem;
}
.eabd-signal {
  display: inline-flex; align-items: center; gap: .2rem;
  padding: .15rem .5rem;
  border-radius: 999px;
  font-size: .72rem; font-weight: 600;
  background: #F1F5F9; color: #0F172A;
  border: 1px solid transparent;
  line-height: 1.4; white-space: nowrap;
}
.eabd-signal--star     { background: #FEF3C7; color: #92400E; border-color: #FDE68A; }
.eabd-signal--verified { background: #DBEAFE; color: #1D4ED8; border-color: #BFDBFE; }
.eabd-signal--award    { background: #FCE7F3; color: #9D174D; border-color: #FBCFE8; }

/* Hover popover — small ranking-factor table anchored above the card. */
.eabd-card__signals-popover {
  position: absolute;
  bottom: calc(100% + .35rem);
  left: .5rem;
  right: .5rem;
  max-width: 320px;
  z-index: 20;
  background: #fff;
  border: 1px solid var(--eabd-gray-200, #E5E7EB);
  border-radius: .65rem;
  padding: .6rem .7rem;
  box-shadow: 0 12px 28px -8px rgba(15, 23, 42, .22);
  opacity: 0; visibility: hidden;
  transform: translateY(4px);
  transition: opacity .15s ease, transform .15s ease, visibility 0s linear .15s;
  pointer-events: none;
  font-size: .82rem;
  color: #0F172A;
}
.eabd-card:hover .eabd-card__signals-popover,
.eabd-card:focus-within .eabd-card__signals-popover {
  opacity: 1; visibility: visible;
  transform: translateY(0);
  transition: opacity .15s ease, transform .15s ease, visibility 0s linear 0s;
  pointer-events: auto;
}
.eabd-card__signals-popover table { width: 100%; border-collapse: collapse; }
.eabd-card__signals-popover th {
  text-align: left; font-weight: 500;
  color: #64748B; font-size: .75rem;
  padding: .25rem .5rem .25rem 0;
  white-space: nowrap; vertical-align: top;
}
.eabd-card__signals-popover td {
  text-align: right; font-weight: 600;
  padding: .25rem 0;
  color: #0F172A;
}
.eabd-card__signals-popover tr + tr th,
.eabd-card__signals-popover tr + tr td {
  border-top: 1px solid #F1F5F9;
}

/* Mobile: positioned popovers are awkward on touch. Collapse to an inline
   summary block under the signals row so the data is still visible. */
@media (max-width: 640px) {
  .eabd-card__signals-popover {
    position: static;
    opacity: 1; visibility: visible;
    transform: none; pointer-events: auto;
    margin-top: .5rem; box-shadow: none;
    transition: none;
  }
}

/* ==== v0.16 — Homepage industries grid + How-it-works + Trusted-by + Testimonial ==== */
.eabd-home-industries { padding: 3rem 1.25rem; }
.eabd-home-industries .eabd-container { max-width: 1200px; margin: 0 auto; }
.eabd-home-industries__head { margin-bottom: 1.75rem; }
.eabd-home-industries__head h2 { margin: 0 0 .35rem; font-size: clamp(1.5rem, 2.5vw, 2rem); font-weight: 800; letter-spacing: -.02em; color: #0F172A; }
.eabd-home-industries__head p { margin: 0; max-width: 60ch; }
.eabd-home-industries__grid {
  display: grid; gap: 1rem;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}
.eabd-home-industry-tile {
  display: flex; align-items: flex-start; gap: .85rem;
  padding: 1rem 1.1rem;
  background: #fff;
  border: 1px solid var(--eabd-gray-200, #E5E7EB);
  border-radius: .75rem;
  text-decoration: none; color: inherit;
  transition: transform .15s, border-color .15s, box-shadow .15s;
}
.eabd-home-industry-tile:hover {
  transform: translateY(-2px);
  border-color: #0B5FFF;
  box-shadow: 0 10px 28px -10px rgba(11, 95, 255, .22);
}
.eabd-home-industry-tile__icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: .5rem;
  background: linear-gradient(135deg, #DBEAFE 0%, #EFF6FF 100%);
  display: flex; align-items: center; justify-content: center;
  color: #0B5FFF;
}
.eabd-home-industry-tile__body { display: flex; flex-direction: column; gap: .15rem; flex: 1; min-width: 0; }
.eabd-home-industry-tile__name { font-weight: 700; color: #0F172A; font-size: 1rem; }
.eabd-home-industry-tile__tag { color: #64748B; font-size: .82rem; line-height: 1.4;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.eabd-home-industry-tile__count { color: #0B5FFF; font-size: .78rem; font-weight: 600; margin-top: .25rem; }

.eabd-home-how { background: #F8FAFC; padding: 3.5rem 1.25rem; }
.eabd-home-how .eabd-container { max-width: 1200px; margin: 0 auto; }
.eabd-home-how h2 { margin: 0 0 2rem; font-size: clamp(1.5rem, 2.5vw, 2rem); font-weight: 800; text-align: center; color: #0F172A; }
.eabd-home-how__grid { display: grid; gap: 1.5rem; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.eabd-home-how__step { background: #fff; padding: 1.5rem 1.4rem; border-radius: .75rem; border: 1px solid var(--eabd-gray-200, #E5E7EB); }
.eabd-home-how__step h3 { margin: .75rem 0 .35rem; font-size: 1.15rem; color: #0F172A; }
.eabd-home-how__step p { margin: 0; }
.eabd-home-how__step-num {
  width: 38px; height: 38px; border-radius: 50%;
  background: linear-gradient(135deg, #0B5FFF 0%, #5B8DEF 100%);
  color: #fff; font-weight: 800; font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
}

.eabd-home-trusted { padding: 2.5rem 1.25rem; background: #fff; }
.eabd-home-trusted .eabd-container { max-width: 1200px; margin: 0 auto; }
.eabd-home-trusted__label { text-align: center; font-size: .78rem; font-weight: 700; letter-spacing: .12em; color: #64748B; text-transform: uppercase; margin: 0 0 1.25rem; }
.eabd-home-trusted__row { display: flex; flex-wrap: wrap; gap: 1.75rem; align-items: center; justify-content: center; }
.eabd-home-trusted__row img {
  max-height: 38px; max-width: 130px; width: auto;
  filter: grayscale(100%); opacity: .6;
  transition: filter .2s, opacity .2s;
}
.eabd-home-trusted__row img:hover { filter: none; opacity: 1; }

.eabd-home-testimonial {
  background: linear-gradient(135deg, #0B5FFF 0%, #1E3A8A 100%);
  color: #fff; padding: 3.5rem 1.25rem; text-align: center;
}
.eabd-home-testimonial .eabd-container { max-width: 760px; margin: 0 auto; }
.eabd-home-testimonial__stars { color: #FBBF24; font-size: 1.25rem; letter-spacing: .15em; margin-bottom: 1rem; }
.eabd-home-testimonial__quote { font-size: clamp(1.1rem, 1.8vw, 1.4rem); font-weight: 500; line-height: 1.55; margin: 0 0 1rem; font-style: italic; }
.eabd-home-testimonial__attrib { color: rgba(255,255,255,.85); font-size: .92rem; }
.eabd-home-testimonial__attrib a { color: #fff; text-decoration: underline; }

/* ==== Industry landing template (archive-industry.php) ==== */
.eabd-industries-page__hero {
  position: relative;
  background: radial-gradient(circle at 20% 20%, #1E40AF 0%, transparent 50%),
              radial-gradient(circle at 80% 80%, #5B8DEF 0%, transparent 50%),
              linear-gradient(135deg, #0B5FFF 0%, #1E3A8A 100%);
  color: #fff; padding: 3.5rem 0 4.5rem; overflow: hidden;
}
.eabd-industries-page__hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,.08) 1px, transparent 0);
  background-size: 24px 24px; pointer-events: none; opacity: .6;
}
.eabd-industries-page__hero .eabd-container { position: relative; z-index: 1; padding: 0 1.25rem; }
.eabd-industries-page__crumbs { display: flex; flex-wrap: wrap; gap: .35rem; font-size: .82rem; color: rgba(255,255,255,.8); margin-bottom: 1rem; }
.eabd-industries-page__crumbs a { color: rgba(255,255,255,.85); text-decoration: none; }
.eabd-industries-page__crumbs a:hover { color: #fff; text-decoration: underline; }
.eabd-industries-page__crumbs span { color: rgba(255,255,255,.5); }
.eabd-industries-page__eyebrow {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .76rem; font-weight: 700; letter-spacing: .12em;
  color: rgba(255,255,255,.92); margin-bottom: .65rem;
}
.eabd-industries-page__eyebrow svg { color: #fff; }
.eabd-industries-page__hero h1 {
  margin: 0 0 .65rem; font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800; letter-spacing: -.02em; line-height: 1.1; color: #fff;
}
.eabd-industries-page__hero p { margin: 0 0 1.5rem; max-width: 60ch; color: rgba(255,255,255,.92); font-size: 1.02rem; line-height: 1.5; }
.eabd-industries-page__stats { display: flex; flex-wrap: wrap; gap: 1rem; }
.eabd-industries-page__stats > div {
  display: flex; flex-direction: column; gap: .15rem;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.18);
  padding: .7rem 1rem; border-radius: .55rem; min-width: 130px;
}
.eabd-industries-page__stats strong { font-size: 1.4rem; font-weight: 800; letter-spacing: -.02em; color: #fff; }
.eabd-industries-page__stats span { font-size: .7rem; color: rgba(255,255,255,.85); text-transform: uppercase; letter-spacing: .08em; font-weight: 600; }

.eabd-industries-page__filterbar {
  position: sticky; top: 0; z-index: 30;
  margin-top: -2.25rem; padding: 0 1.25rem;
}
.eabd-industries-page__filterbar-inner {
  display: flex; gap: .55rem; flex-wrap: wrap; align-items: center;
  background: #fff; padding: .85rem 1rem;
  border: 1px solid var(--eabd-gray-200, #E5E7EB);
  border-radius: .85rem;
  box-shadow: 0 12px 32px -16px rgba(15, 23, 42, .18);
  max-width: 1200px; margin: 0 auto;
}
.eabd-industries-page__filterbar select {
  padding: .55rem 2rem .55rem .85rem;
  border: 1px solid var(--eabd-gray-200, #E5E7EB);
  border-radius: .55rem; background: #fff; font-size: .92rem; font-weight: 500; color: #0F172A;
  cursor: pointer; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2364748B' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right .6rem center; background-size: 14px;
}
.eabd-industries-page__verified-toggle {
  display: inline-flex; align-items: center; gap: .4rem; font-size: .9rem; font-weight: 500;
  padding: .55rem .75rem; border: 1px solid var(--eabd-gray-200, #E5E7EB); border-radius: .55rem;
  background: #F8FAFC; cursor: pointer; user-select: none;
}

.eabd-industries-page__body { padding: 2rem 1.25rem 4rem; max-width: 1200px; margin: 0 auto; }
.eabd-industries-page__intro {
  background: linear-gradient(180deg, #F8FAFC 0%, #FFFFFF 100%);
  border-left: 3px solid #0B5FFF;
  border-radius: .5rem;
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
  font-size: .95rem; line-height: 1.6; color: #374151;
}
.eabd-industries-page__empty {
  background: linear-gradient(180deg, #F8FAFC 0%, #FFFFFF 100%);
  border: 1px dashed var(--eabd-gray-200, #E5E7EB);
  border-radius: 1rem;
  padding: 3rem 1.5rem; text-align: center;
}
.eabd-industries-page__empty__icon {
  width: 72px; height: 72px; margin: 0 auto 1rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #DBEAFE 0%, #EFF6FF 100%);
  display: flex; align-items: center; justify-content: center; color: #0B5FFF;
}
.eabd-industries-page__empty__icon svg { width: 32px; height: 32px; }
.eabd-industries-page__empty h2 { margin: 0 0 .35rem; font-size: 1.4rem; color: #0F172A; }
.eabd-industries-page__empty p { margin: 0 auto 1rem; max-width: 50ch; color: #64748B; }

.eabd-industries-hub__grid-wrap { padding: 2rem 1.25rem 4rem; max-width: 1200px; margin: 0 auto; }
.eabd-industries-hub__grid {
  display: grid; gap: 1rem;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}
.eabd-industry-tile {
  background: #fff; border: 1px solid var(--eabd-gray-200, #E5E7EB);
  border-radius: .75rem; padding: 1.25rem 1.1rem;
  text-decoration: none; color: inherit;
  transition: transform .15s, border-color .15s, box-shadow .15s;
  display: block;
}
.eabd-industry-tile:hover { transform: translateY(-2px); border-color: #0B5FFF; box-shadow: 0 10px 28px -10px rgba(11, 95, 255, .22); }
.eabd-industry-tile > svg {
  color: #0B5FFF; margin-bottom: .65rem;
  padding: .5rem; border-radius: .45rem;
  background: linear-gradient(135deg, #DBEAFE 0%, #EFF6FF 100%);
  width: 48px; height: 48px;
}
.eabd-industry-tile__name { font-weight: 700; color: #0F172A; font-size: 1.05rem; }
.eabd-industry-tile__tag { color: #64748B; font-size: .85rem; line-height: 1.45; margin-top: .25rem;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.eabd-industry-tile__count { color: #0B5FFF; font-size: .8rem; font-weight: 600; margin-top: .5rem; }

@media (max-width: 640px) {
  .eabd-industries-page__filterbar { margin-top: -1.5rem; padding: 0 .75rem; }
  .eabd-industries-page__filterbar-inner { padding: .65rem; border-radius: .7rem; }
}

/* ──────────────────────────────────────────────────────────────────────────
   Static content pages — About / Contact / Terms / Privacy / future
   ────────────────────────────────────────────────────────────────────────── */
.eabd-static-page { padding-bottom: 4rem; }
.eabd-static-page__hero {
  padding: 3.5rem 0 2rem;
  background: linear-gradient(180deg, var(--eabd-blue-50) 0%, #fff 90%);
  border-bottom: 1px solid var(--eabd-gray-200);
}
.eabd-static-page__eyebrow {
  display: inline-block; background: var(--eabd-blue-50); color: var(--eabd-blue-700);
  font-size: .75rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em;
  padding: .25rem .65rem; border-radius: 999px; margin: 0 0 1rem;
}
.eabd-static-page__hero h1 { font-size: clamp(1.85rem, 4vw, 2.6rem); letter-spacing: -.02em; margin-bottom: .85rem; }
.eabd-static-page__lead { color: var(--eabd-gray-700); font-size: 1.0625rem; max-width: 720px; }
.eabd-static-page__stats { display: flex; gap: 2rem; margin-top: 1.75rem; flex-wrap: wrap; }
.eabd-static-page__stats > div { display: flex; flex-direction: column; }
.eabd-static-page__stats strong { font-size: 1.6rem; color: var(--eabd-black); }
.eabd-static-page__stats span { font-size: .8rem; color: var(--eabd-gray-500); text-transform: uppercase; letter-spacing: .06em; }

.eabd-static-page__body { max-width: 780px; padding-top: 2.5rem; padding-bottom: 2rem; }
.eabd-static-page__body h2 { font-size: 1.4rem; margin-top: 2.25rem; margin-bottom: .85rem; }
.eabd-static-page__body h3 { font-size: 1.1rem; margin-top: 1.5rem; margin-bottom: .55rem; }
.eabd-static-page__body p, .eabd-static-page__body li { font-size: 1.025rem; line-height: 1.7; color: var(--eabd-gray-800, #2a3344); }
.eabd-static-page__body ul { padding-left: 1.25rem; margin: 0 0 1rem; }
.eabd-static-page__body li { margin-bottom: .35rem; }
.eabd-static-page__body a { text-decoration: underline; text-underline-offset: 2px; }
.eabd-static-page__body--legal h2 { margin-top: 1.85rem; font-size: 1.15rem; }
.eabd-static-page__body--legal p, .eabd-static-page__body--legal li { font-size: .95rem; }

.eabd-static-page__cta {
  background: var(--eabd-blue-50);
  border-top: 1px solid var(--eabd-gray-200);
  padding: 2.5rem 0; text-align: center;
}
.eabd-static-page__cta h2 { font-size: 1.5rem; margin-bottom: .5rem; }
.eabd-static-page__cta p { color: var(--eabd-gray-700); margin-bottom: 1.25rem; }
.eabd-static-page__cta .eabd-btn { margin: .25rem; }

.eabd-contact-grid {
  display: grid; gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  margin: 1rem 0 1.5rem;
}
.eabd-contact-card {
  background: #fff; border: 1px solid var(--eabd-gray-200); border-radius: var(--eabd-radius);
  padding: 1.25rem; box-shadow: var(--eabd-shadow-sm);
}
.eabd-contact-card h3 { margin: 0 0 .35rem; font-size: 1.025rem; }
.eabd-contact-card p { font-size: .95rem; margin-bottom: .55rem; }

.eabd-contact-form { display: flex; flex-direction: column; gap: .65rem; margin-top: 1rem; }
.eabd-faq details {
  background: var(--eabd-gray-50); border: 1px solid var(--eabd-gray-200);
  border-radius: var(--eabd-radius-sm); padding: .85rem 1rem; margin-bottom: .5rem;
}
.eabd-faq summary { font-weight: 600; cursor: pointer; }
.eabd-faq details[open] summary { margin-bottom: .65rem; color: var(--eabd-blue-700); }

/* Dashboard priority cards (Phase 5) */
.eabd-dash-priority {
  display: grid; gap: .75rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  margin: 1rem 0 1.5rem;
}
.eabd-dash-priority__card {
  display: block; padding: 1rem 1.1rem;
  background: #fff; border: 1px solid var(--eabd-gray-200);
  border-radius: var(--eabd-radius); box-shadow: var(--eabd-shadow-sm);
  text-decoration: none; color: var(--eabd-gray-900);
  border-left: 4px solid var(--eabd-blue);
  transition: transform .08s ease, box-shadow .08s ease;
}
.eabd-dash-priority__card:hover { transform: translateY(-1px); box-shadow: var(--eabd-shadow); }
.eabd-dash-priority__card--warn   { border-left-color: #F59E0B; background: #FFFBEB; }
.eabd-dash-priority__card--urgent { border-left-color: #DC2626; background: #FEF2F2; }
.eabd-dash-priority__title { font-weight: 600; font-size: .95rem; margin-bottom: .25rem; }
.eabd-dash-priority__sub   { color: var(--eabd-gray-700); font-size: .85rem; line-height: 1.45; }

/* Industries-page FAQ block (Phase 4 — visible alongside FAQPage JSON-LD) */
.eabd-industries-page__faqs { margin: 2rem 0; }
.eabd-industries-page__faqs h2 { font-size: 1.25rem; margin-bottom: .75rem; }
.eabd-industries-page__longdesc { margin: 2rem 0; }
.eabd-industries-page__longdesc-block { margin-bottom: 1.25rem; }
.eabd-industries-page__longdesc-block p { line-height: 1.7; color: var(--eabd-gray-800, #2a3344); }
.eabd-industries-page__longdesc-block h2 { font-size: 1.25rem; margin-top: 1.5rem; margin-bottom: .55rem; }
