/* ============================================================================
   ea-theme.css — ehornet "Action-style" corporate theme
   Emerald accent · charcoal footer · white cards · pill CTAs
   Prefixed with .ea- to avoid collisions with legacy Foundation/WP styles.
   ========================================================================== */

.ea-page {
  --ea-bg:          #F4F5F7;
  --ea-bg-alt:      #EEF0F3;
  --ea-surface:     #FFFFFF;
  --ea-accent:      #10B981;
  --ea-accent-600:  #059669;
  --ea-accent-50:   #ECFDF5;
  --ea-accent-ink:  #065F46;
  --ea-ink:         #111827;
  --ea-ink-2:       #1F2937;
  --ea-ink-soft:    #6B7280;
  --ea-ink-muted:   #9CA3AF;
  --ea-line:        #E5E7EB;
  --ea-line-soft:   #F1F2F5;
  --ea-dark:        #1F1F23;
  --ea-dark-2:      #2A2A2F;
  --ea-dark-line:   #3A3A40;

  --ea-radius-sm: 8px;
  --ea-radius:    14px;
  --ea-radius-lg: 22px;
  --ea-radius-xl: 32px;

  --ea-shadow-sm: 0 1px 2px rgba(17,24,39,.04), 0 1px 3px rgba(17,24,39,.05);
  --ea-shadow:    0 8px 24px -6px rgba(17,24,39,.08), 0 2px 6px rgba(17,24,39,.04);
  --ea-shadow-lg: 0 30px 60px -20px rgba(17,24,39,.16), 0 8px 20px -6px rgba(17,24,39,.08);
  --ea-ring:      0 0 0 4px rgba(16,185,129,.18);

  --ea-display: 'Bricolage Grotesque', 'Segoe UI Variable Display', ui-sans-serif, system-ui, sans-serif;
  --ea-body:    'Figtree', 'Segoe UI Variable Text', ui-sans-serif, system-ui, sans-serif;

  --ea-max:     1240px;
  --ea-gutter:  24px;

  background: var(--ea-bg);
  color: var(--ea-ink);
  font-family: var(--ea-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.ea-page,
.ea-page *,
.ea-page *::before,
.ea-page *::after {
  box-sizing: border-box;
}

.ea-page img { max-width: 100%; height: auto; display: block; }
.ea-page a { color: inherit; text-decoration: none; }
.ea-page button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
/* Base resets wrapped in :where() so they have 0 specificity — any
   component class (e.g. .ea-section-title) wins without needing to be
   written as .ea-page .ea-whatever. Without this, the old rule
   ".ea-page h2" (specificity 0,1,1) beats ".ea-section-title" (0,1,0)
   and the component's margin: 0 auto / text-align: center never lands,
   which manifested as section titles hugging the left edge instead of
   centering inside the inner container. */
.ea-page :where(h1, h2, h3, h4) {
  font-family: var(--ea-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ea-ink);
  margin: 0;
}
.ea-page :where(p) { margin: 0; }
.ea-page :where(ul) { margin: 0; padding: 0; list-style: none; }

/* --- Layout helpers ------------------------------------------------------- */
.ea-inner { max-width: var(--ea-max); margin: 0 auto; padding: 0 var(--ea-gutter); }
.ea-section { padding: 112px 0; }
.ea-section--tight { padding: 80px 0; }
.ea-section--alt { background: var(--ea-bg-alt); }

.ea-eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 11px;
  font-weight: 700;
  color: var(--ea-accent-ink);
  background: var(--ea-accent-50);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.ea-section-title {
  font-size: clamp(32px, 3.8vw, 46px);
  line-height: 1.08;
  margin: 0 auto 12px;
  text-align: center;
  max-width: 780px;
}
.ea-section-sub {
  text-align: center;
  color: var(--ea-ink-soft);
  max-width: 620px;
  margin: 0 auto 56px;
  font-size: 17px;
}

/* --- Buttons -------------------------------------------------------------- */
.ea-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  white-space: nowrap;
  transition: transform .18s ease, background .18s ease, color .18s ease, border-color .18s ease, box-shadow .18s ease;
  cursor: pointer;
}
.ea-btn svg { width: 16px; height: 16px; }
.ea-btn:hover { transform: translateY(-1px); }
.ea-btn:active { transform: translateY(0); }

.ea-btn--primary {
  background: var(--ea-accent);
  color: #fff;
}
.ea-btn--primary:hover { background: var(--ea-accent-600); box-shadow: var(--ea-ring); }

.ea-btn--ghost {
  background: rgba(255,255,255,.08);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.28);
  backdrop-filter: blur(4px);
}
.ea-btn--ghost:hover { border-color: rgba(255,255,255,.6); background: rgba(255,255,255,.18); }

/* Inverse ghost — white-bordered pill on a light/emerald bg. Gives real
   contrast on the CTA banner where the previous .ea-btn--ghost washed out. */
.ea-btn--on-accent {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.7);
  font-weight: 600;
}
.ea-btn--on-accent:hover {
  background: #fff;
  color: var(--ea-accent-ink);
  border-color: #fff;
}

.ea-btn--outline {
  background: transparent;
  color: var(--ea-ink);
  border: 1.5px solid var(--ea-line);
}
.ea-btn--outline:hover { border-color: var(--ea-accent); color: var(--ea-accent); }

/* --- Header --------------------------------------------------------------- */
.ea-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.78);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--ea-line);
}
.ea-nav {
  max-width: var(--ea-max);
  margin: 0 auto;
  padding: 16px var(--ea-gutter);
  display: flex;
  align-items: center;
  gap: 28px;
}
.ea-logo {
  font-family: var(--ea-display);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.03em;
  color: var(--ea-ink);
  display: inline-flex;
  align-items: baseline;
}
.ea-logo-mark {
  display: inline-block;
  width: 10px; height: 10px;
  border-radius: 3px;
  background: var(--ea-accent);
  margin-right: 8px;
  transform: translateY(-2px) rotate(45deg);
}
.ea-logo-dot { color: var(--ea-accent); }

.ea-nav-links {
  display: flex;
  gap: 32px;
  margin: 0 auto;
}
.ea-nav-links a {
  font-weight: 500;
  font-size: 15px;
  color: var(--ea-ink-2);
  position: relative;
  padding: 6px 0;
  transition: color .18s ease;
}
.ea-nav-links a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--ea-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .22s ease;
  border-radius: 2px;
}
.ea-nav-links a:hover { color: var(--ea-accent); }
.ea-nav-links a:hover::after { transform: scaleX(1); }

.ea-nav-actions { display: flex; align-items: center; gap: 14px; }
.ea-nav-lang {
  font-size: 13px;
  font-weight: 600;
  color: var(--ea-ink-soft);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 10px;
  border-radius: 8px;
  transition: color .18s, background .18s;
}
.ea-nav-lang:hover { color: var(--ea-ink); background: var(--ea-line-soft); }

.ea-nav-login {
  color: var(--ea-ink-2);
  font-weight: 500;
  font-size: 14px;
}
.ea-nav-login:hover { color: var(--ea-accent); }

.ea-burger {
  display: none;
  width: 42px; height: 42px;
  border-radius: 10px;
  align-items: center; justify-content: center;
  background: var(--ea-line-soft);
}
.ea-burger span {
  display: block;
  width: 18px; height: 2px;
  background: var(--ea-ink);
  position: relative;
  transition: transform .25s, opacity .25s;
}
.ea-burger span::before,
.ea-burger span::after {
  content: '';
  position: absolute; left: 0;
  width: 18px; height: 2px; background: var(--ea-ink);
  transition: transform .25s;
}
.ea-burger span::before { top: -6px; }
.ea-burger span::after  { top:  6px; }

.ea-mobile-menu {
  display: none;
  position: fixed;
  inset: 64px 0 0 0;
  background: #fff;
  padding: 32px 24px;
  z-index: 49;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
}
.ea-mobile-menu.is-open { display: block; opacity: 1; pointer-events: auto; }
.ea-mobile-menu a {
  display: block;
  padding: 14px 0;
  font-family: var(--ea-display);
  font-size: 22px;
  font-weight: 600;
  border-bottom: 1px solid var(--ea-line);
}

/* --- Hero ----------------------------------------------------------------- */
/* Static split composition: message on the left, designed product-category
   mosaic on the right. Replaces the earlier photo slideshow which forced us
   to rely on stock imagery that didn't match the distributor narrative. */
.ea-hero {
  position: relative;
  background:
    radial-gradient(900px 500px at 85% 15%, rgba(16,185,129,.18), transparent 60%),
    radial-gradient(800px 600px at 10% 110%, rgba(16,185,129,.12), transparent 55%),
    linear-gradient(180deg, #14171F 0%, #0B0F1A 100%);
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.ea-hero::before {
  /* Subtle dot grid for depth. */
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 40%, transparent 90%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 40%, transparent 90%);
  pointer-events: none;
}

.ea-hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--ea-max);
  margin: 0 auto;
  padding: 96px var(--ea-gutter) 104px;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 1fr);
  gap: 60px;
  align-items: center;
  color: #fff;
}

.ea-hero-eyebrow {
  display: inline-flex;
  align-items: center; gap: 8px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 11px;
  font-weight: 700;
  color: #6EE7B7;
  padding: 7px 12px;
  border: 1px solid rgba(110,231,183,.35);
  border-radius: 999px;
  background: rgba(16,185,129,.08);
  margin-bottom: 22px;
  backdrop-filter: blur(4px);
}
.ea-hero-eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  background: #34D399;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(52,211,153,.28);
  animation: ea-pulse 2s infinite;
}
@keyframes ea-pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(52,211,153,.28); }
  50%      { box-shadow: 0 0 0 8px rgba(52,211,153,0);   }
}
.ea-hero-title {
  font-size: clamp(38px, 4.8vw, 58px);
  line-height: 1.04;
  letter-spacing: -0.028em;
  max-width: 620px;
  margin: 0 0 24px;
  color: #fff;
  font-weight: 700;
  text-wrap: balance;
}
.ea-hero-title em {
  font-style: normal;
  color: #6EE7B7;
  font-weight: 700;
}
.ea-hero-lead {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255,255,255,.78);
  max-width: 520px;
  margin: 0 0 36px;
}
.ea-hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; }

.ea-hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: 32px;
  padding: 10px 14px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px;
  font-size: 13px;
  color: rgba(255,255,255,.72);
}
.ea-hero-badge strong { color: #fff; font-weight: 600; }
.ea-hero-badge-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #34D399;
  box-shadow: 0 0 0 3px rgba(52,211,153,.2);
}

/* Right-side visual: product-category mosaic. Tells the "gateway for
   categories" story without relying on a specific stock photo. Fills
   the right grid column; featured tiles use a bold emerald fill so the
   contrast with the neutral tiles actually reads at thumbnail distance. */
.ea-hero-mosaic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 1fr;
  gap: 14px;
  position: relative;
  aspect-ratio: 1 / 1;
  width: 100%;
}
.ea-cat {
  background: rgba(255,255,255,.035);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 18px;
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 0;
  transition: transform .25s ease, background .25s ease, border-color .25s ease, box-shadow .25s ease;
  backdrop-filter: blur(8px);
  position: relative;
  overflow: hidden;
}
.ea-cat::after {
  /* Soft glow on hover that suggests "network of products" */
  content: '';
  position: absolute;
  inset: auto -20% -40% auto;
  width: 70%; height: 70%;
  background: radial-gradient(circle, rgba(110,231,183,.22), transparent 70%);
  opacity: 0; transition: opacity .3s ease;
  pointer-events: none;
}
.ea-cat:hover {
  transform: translateY(-4px);
  background: rgba(16,185,129,.06);
  border-color: rgba(110,231,183,.3);
}
.ea-cat:hover::after { opacity: 1; }

.ea-cat--accent {
  background:
    radial-gradient(120% 80% at 100% 0%, rgba(110,231,183,.2), transparent 60%),
    linear-gradient(160deg, rgba(16,185,129,.45) 0%, rgba(5,150,105,.35) 100%);
  border-color: rgba(110,231,183,.45);
  box-shadow: 0 8px 28px -8px rgba(16,185,129,.35);
}
.ea-cat--accent:hover {
  background:
    radial-gradient(120% 80% at 100% 0%, rgba(110,231,183,.28), transparent 60%),
    linear-gradient(160deg, rgba(16,185,129,.55) 0%, rgba(5,150,105,.45) 100%);
}

.ea-cat-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  color: #6EE7B7;
  transition: background .25s ease, border-color .25s ease, color .25s ease;
}
.ea-cat-icon svg { width: 22px; height: 22px; stroke-width: 1.6; }
.ea-cat--accent .ea-cat-icon {
  background: rgba(255,255,255,.18);
  border-color: rgba(255,255,255,.28);
  color: #fff;
}
.ea-cat-name {
  font-family: var(--ea-display);
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.015em;
  line-height: 1.15;
  margin-top: 14px;
}
.ea-cat-count {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,.45);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 5px;
  font-variant-numeric: tabular-nums;
}
.ea-cat--accent .ea-cat-count { color: rgba(255,255,255,.85); }

/* --- Services / "What we do" grid ---------------------------------------- */
.ea-services {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.ea-service {
  background: var(--ea-surface);
  border: 1px solid var(--ea-line);
  border-radius: var(--ea-radius-lg);
  padding: 32px 28px 36px;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  position: relative;
  overflow: hidden;
  isolation: isolate;                       /* NEW — for ::after z-index */
}
.ea-service::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--ea-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease, background .35s ease;
  z-index: 2;
}
/* Dark-emerald hover overlay — fades in behind text/icon, giving every
   service card the same "lit up" interactive treatment without breaking
   the uniform default state. */
.ea-service::after {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(120% 80% at 100% 0%, rgba(16,185,129,.28), transparent 55%),
    radial-gradient(100% 70% at 0% 100%, rgba(16,185,129,.12), transparent 60%),
    linear-gradient(160deg, #064E3B 0%, #0A0F14 55%, #000 100%);
  opacity: 0;
  transition: opacity .4s ease;
  z-index: -1;                              /* sits below text content */
  pointer-events: none;
}
.ea-service:hover {
  transform: translateY(-4px);
  border-color: transparent;
  box-shadow: 0 24px 48px -18px rgba(6,78,59,.45);
}
.ea-service:hover::before { transform: scaleX(1); background: #6EE7B7; }
.ea-service:hover::after  { opacity: 1; }

.ea-service-icon {
  width: 48px; height: 48px;
  background: var(--ea-accent-50);
  color: var(--ea-accent-ink);
  border: 1px solid transparent;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  transition: background .4s ease, color .4s ease, border-color .4s ease;
}
.ea-service-icon svg { width: 24px; height: 24px; }
.ea-service:hover .ea-service-icon {
  background: rgba(110,231,183,.16);
  color: #6EE7B7;
  border-color: rgba(110,231,183,.32);
}
.ea-service h3 {
  font-size: 20px;
  margin: 0 0 10px;
  letter-spacing: -0.01em;
  transition: color .4s ease;
}
.ea-service:hover h3 { color: #fff; }
.ea-service p {
  color: var(--ea-ink-soft);
  font-size: 14.5px;
  line-height: 1.6;
  transition: color .4s ease;
}
.ea-service:hover p { color: rgba(255,255,255,.75); }

/* --- Stats ---------------------------------------------------------------- */
.ea-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--ea-surface);
  border-radius: var(--ea-radius-xl);
  overflow: hidden;
  border: 1px solid #D7DBE3;
  box-shadow:
    0 1px 0 rgba(17,24,39,.02),
    0 30px 60px -24px rgba(17,24,39,.18),
    0 10px 24px -8px rgba(17,24,39,.08);
}
.ea-stat {
  padding: 44px 32px;
  border-right: 1px solid var(--ea-line);
  position: relative;
}
.ea-stat:last-child { border-right: 0; }
.ea-stat-num {
  font-family: var(--ea-display);
  font-size: clamp(40px, 4vw, 56px);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--ea-ink);
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.ea-stat-num small {
  font-size: 0.48em;
  color: var(--ea-accent);
  font-weight: 700;
  letter-spacing: -0.02em;
}
.ea-stat-label {
  margin-top: 12px;
  font-size: 14px;
  color: var(--ea-ink-soft);
  line-height: 1.5;
}

/* --- News / Insights grid (Latest information) --------------------------- */
.ea-news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.ea-news-card {
  background: var(--ea-surface);
  border-radius: var(--ea-radius-lg);
  overflow: hidden;
  box-shadow: var(--ea-shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease;
  display: flex; flex-direction: column;
  color: var(--ea-ink);
  border: 1px solid transparent;
}
.ea-news-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--ea-shadow-lg);
  border-color: var(--ea-line);
}
/* Card header — typographic, no stock photo. Category color comes from
   a CSS custom prop set per-card. */
.ea-news-media {
  position: relative;
  aspect-ratio: 16 / 10;
  background:
    radial-gradient(120% 80% at 0% 100%, var(--_cat-accent, #10B981), transparent 60%),
    linear-gradient(135deg, var(--_cat-bg-a, #111827) 0%, var(--_cat-bg-b, #1F2937) 100%);
  color: #fff;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}
.ea-news-media::before {
  /* Dot texture for depth. */
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 18px 18px;
  opacity: .6;
  pointer-events: none;
}
.ea-news-cat {
  position: relative;
  display: inline-flex; align-items: center; gap: 8px;
  align-self: flex-start;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.18);
  color: #fff;
  backdrop-filter: blur(4px);
}
.ea-news-cat svg { width: 12px; height: 12px; }
.ea-news-mark {
  position: relative;
  font-family: var(--ea-display);
  font-size: clamp(48px, 6vw, 72px);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: rgba(255,255,255,.12);
  align-self: flex-end;
  user-select: none;
}
.ea-date-badge {
  position: absolute;
  bottom: 0; left: 0;
  z-index: 2;
  background: var(--ea-accent);
  color: #fff;
  padding: 7px 14px 7px 14px;
  font-size: 13px;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
  border-top-right-radius: 10px;
}

/* --- Why us — interactive two-column showcase --------------------------- */
/* Left column: numbered differentiators with an active-tab visual state.
   Right column: a dark panel that cross-fades between five designed
   visualisations (map / team grid / growth chart / timeline / specialty
   cluster). No stock photography — each visual is a CSS+SVG composition
   matched to its content. */
.ea-why {
  padding: 112px 0;
  background: var(--ea-bg);
  position: relative;
}
.ea-why-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.08fr);
  gap: 56px;
  align-items: stretch;
  margin-top: 56px;
}
.ea-why-list {
  display: flex; flex-direction: column;
  gap: 0;
  counter-reset: why;
}
.ea-why-list > li { list-style: none; }
.ea-why-item {
  width: 100%;
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) 24px;
  gap: 20px;
  align-items: flex-start;
  padding: 26px 4px 26px 4px;
  border: 0;
  border-top: 1px solid var(--ea-line);
  background: transparent;
  text-align: left;
  cursor: pointer;
  transition: padding .3s ease;
  position: relative;
}
.ea-why-list > li:last-child .ea-why-item { border-bottom: 1px solid var(--ea-line); }
.ea-why-item::before {
  /* Emerald accent bar that slides in on active. */
  content: '';
  position: absolute;
  left: -16px; top: 50%;
  width: 4px; height: 32px;
  background: var(--ea-accent);
  border-radius: 4px;
  transform: translateY(-50%) scaleY(0);
  transform-origin: center;
  transition: transform .32s cubic-bezier(.2,.8,.2,1);
}
.ea-why-item:hover { padding-left: 10px; }
.ea-why-item.is-active { padding-left: 14px; }
.ea-why-item.is-active::before { transform: translateY(-50%) scaleY(1); }

.ea-why-num {
  font-family: var(--ea-display);
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--ea-ink-muted);
  line-height: 1;
  font-variant-numeric: tabular-nums;
  transition: color .3s ease;
}
.ea-why-item.is-active .ea-why-num,
.ea-why-item:hover .ea-why-num { color: var(--ea-accent); }

.ea-why-item-body { padding-top: 4px; }
.ea-why-title {
  font-family: var(--ea-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--ea-ink);
  margin: 0 0 6px;
  line-height: 1.2;
}
.ea-why-desc {
  font-size: 14.5px;
  color: var(--ea-ink-soft);
  line-height: 1.55;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height .35s ease, opacity .25s ease, margin-top .25s ease;
}
.ea-why-item.is-active .ea-why-desc {
  max-height: 120px;
  opacity: 1;
  margin-top: 6px;
}
.ea-why-arrow {
  width: 20px; height: 20px;
  color: var(--ea-ink-muted);
  transform: rotate(-45deg);
  transition: color .3s ease, transform .3s ease;
  align-self: center;
}
.ea-why-item.is-active .ea-why-arrow,
.ea-why-item:hover .ea-why-arrow { color: var(--ea-accent); transform: rotate(0deg); }

/* Right-side panel stack */
.ea-why-panels {
  position: relative;
  min-height: 520px;
  border-radius: var(--ea-radius-xl);
  overflow: hidden;
  background:
    radial-gradient(120% 80% at 0% 0%, rgba(16,185,129,.18), transparent 55%),
    linear-gradient(160deg, #14181F 0%, #0A0D13 100%);
  border: 1px solid rgba(255,255,255,.06);
  box-shadow: 0 32px 64px -28px rgba(17,24,39,.35);
}
.ea-why-panels::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 22px 22px;
  mask-image: radial-gradient(ellipse 80% 60% at 60% 40%, black 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 60% 40%, black 40%, transparent 100%);
  pointer-events: none;
}
.ea-why-panel {
  position: absolute;
  inset: 0;
  padding: 48px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .45s ease, transform .45s ease;
  pointer-events: none;
  display: flex;
  flex-direction: column;
}
.ea-why-panel.is-active {
  opacity: 1;
  transform: none;
  pointer-events: auto;
  z-index: 1;
}
.ea-why-panel-kicker {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px;
  background: rgba(110,231,183,.1);
  border: 1px solid rgba(110,231,183,.25);
  border-radius: 999px;
  color: #6EE7B7;
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.22em;
  align-self: flex-start;
  width: max-content;
}
.ea-why-panel-kicker svg { width: 12px; height: 12px; }
.ea-why-panel-title {
  font-family: var(--ea-display);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 18px 0 6px;
  line-height: 1.2;
}
.ea-why-panel-sub {
  font-size: 14px;
  color: rgba(255,255,255,.6);
  line-height: 1.55;
  margin: 0 0 28px;
  max-width: 440px;
}
.ea-why-panel-visual {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
  position: relative;
}

/* --- Panel 1: Regional know-how (simplified region map) ------------------ */
.ea-why-map {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 1 / 1;
  position: relative;
}
.ea-why-map svg { width: 100%; height: 100%; }
.ea-why-map .ea-why-map-outline { stroke: rgba(255,255,255,.18); fill: rgba(255,255,255,.02); }
.ea-why-map .ea-why-map-link { stroke: rgba(110,231,183,.4); stroke-dasharray: 3 4; }
.ea-why-map .ea-why-map-city { fill: rgba(255,255,255,.55); }
.ea-why-map .ea-why-map-hq { fill: #34D399; }
.ea-why-map .ea-why-map-hq-ring {
  fill: none; stroke: #34D399; stroke-width: 1.2; opacity: .6;
  animation: ea-ping 2.4s ease-out infinite;
  transform-origin: center;
  transform-box: fill-box;
}
@keyframes ea-ping {
  0%   { r: 4;  opacity: .6; }
  100% { r: 28; opacity: 0;  }
}
.ea-why-map-label {
  position: absolute;
  top: 46%; left: 48%;
  background: rgba(16,185,129,.15);
  border: 1px solid rgba(110,231,183,.4);
  color: #6EE7B7;
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.14em;
  padding: 5px 10px;
  border-radius: 8px;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  backdrop-filter: blur(6px);
  white-space: nowrap;
}

/* --- Panel 2: Market entry team (role cards) ---------------------------- */
.ea-why-team {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  width: 100%;
  max-width: 440px;
}
.ea-why-role {
  aspect-ratio: 1 / 1;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  padding: 14px;
  display: flex; flex-direction: column; justify-content: space-between;
  font-family: var(--ea-display);
  transition: transform .3s ease, background .3s ease;
}
.ea-why-role:hover { transform: translateY(-3px); background: rgba(16,185,129,.06); }
.ea-why-role--accent {
  background: linear-gradient(160deg, rgba(16,185,129,.35), rgba(5,150,105,.25));
  border-color: rgba(110,231,183,.4);
}
.ea-why-role-icon {
  width: 28px; height: 28px; border-radius: 8px;
  background: rgba(255,255,255,.08);
  color: #6EE7B7;
  display: flex; align-items: center; justify-content: center;
}
.ea-why-role--accent .ea-why-role-icon { background: rgba(255,255,255,.2); color: #fff; }
.ea-why-role-icon svg { width: 15px; height: 15px; }
.ea-why-role-name { font-size: 12px; font-weight: 600; color: #fff; letter-spacing: -0.01em; line-height: 1.15; }
.ea-why-role-sub { font-size: 10px; font-weight: 600; color: rgba(255,255,255,.4); text-transform: uppercase; letter-spacing: 0.12em; margin-top: 2px; font-family: 'JetBrains Mono', ui-monospace, monospace; }
.ea-why-role--accent .ea-why-role-sub { color: rgba(255,255,255,.8); }

/* --- Panel 3: Strategic business development (growth chart) ------------- */
.ea-why-chart {
  width: 100%;
  max-width: 460px;
  aspect-ratio: 16 / 10;
  position: relative;
}
.ea-why-chart svg { width: 100%; height: 100%; overflow: visible; }
.ea-why-chart .ea-why-chart-grid { stroke: rgba(255,255,255,.06); }
.ea-why-chart .ea-why-chart-axis { stroke: rgba(255,255,255,.12); }
.ea-why-chart .ea-why-chart-fill {
  fill: url(#ea-chart-grad);
  stroke: none;
}
.ea-why-chart .ea-why-chart-line {
  fill: none;
  stroke: #34D399;
  stroke-width: 2;
  stroke-linecap: round;
}
.ea-why-chart .ea-why-chart-point { fill: #34D399; }
.ea-why-chart .ea-why-chart-label {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 9px;
  fill: rgba(255,255,255,.5);
  letter-spacing: 0.08em;
}
.ea-why-chart-callout {
  position: absolute;
  top: 8%; right: 4%;
  background: rgba(16,185,129,.15);
  border: 1px solid rgba(110,231,183,.4);
  color: #6EE7B7;
  font-size: 11px; font-weight: 700;
  padding: 8px 12px;
  border-radius: 10px;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  letter-spacing: 0.08em;
  backdrop-filter: blur(6px);
}
.ea-why-chart-callout strong { color: #fff; }

/* --- Panel 4: Industry experience (timeline) ---------------------------- */
.ea-why-timeline {
  width: 100%;
  max-width: 440px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
}
.ea-why-timeline::before {
  content: '';
  position: absolute;
  left: 20px; top: 8px; bottom: 8px;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(110,231,183,.4) 15%, rgba(110,231,183,.4) 85%, transparent);
}
.ea-why-tl-item {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  position: relative;
}
.ea-why-tl-year {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,.5);
  letter-spacing: 0.04em;
  position: relative;
  padding-left: 28px;
}
.ea-why-tl-year::before {
  content: '';
  position: absolute;
  left: 14px; top: 50%; transform: translateY(-50%);
  width: 12px; height: 12px;
  background: rgba(110,231,183,.15);
  border: 1.5px solid #34D399;
  border-radius: 50%;
  z-index: 1;
}
.ea-why-tl-item--current .ea-why-tl-year::before {
  background: #34D399;
  box-shadow: 0 0 0 4px rgba(52,211,153,.2);
}
.ea-why-tl-item--current .ea-why-tl-year { color: #6EE7B7; }
.ea-why-tl-event {
  font-size: 14px;
  color: rgba(255,255,255,.85);
  font-weight: 500;
  line-height: 1.35;
}
.ea-why-tl-event strong { color: #fff; font-weight: 700; }
.ea-why-tl-item--current .ea-why-tl-event strong { color: #6EE7B7; }

/* --- Panel 5: Tailored teams (specialty hex grid) ------------------------ */
.ea-why-specialties {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  width: 100%;
  max-width: 440px;
}
.ea-why-spec {
  aspect-ratio: 1 / 1;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  padding: 16px 12px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 8px;
  text-align: center;
  transition: transform .3s ease, background .3s ease, border-color .3s ease;
}
.ea-why-spec:hover { transform: translateY(-3px); }
.ea-why-spec--accent {
  background: radial-gradient(120% 80% at 50% 0%, rgba(110,231,183,.22), transparent 60%), rgba(16,185,129,.1);
  border-color: rgba(110,231,183,.35);
}
.ea-why-spec-icon {
  width: 36px; height: 36px; border-radius: 10px;
  background: rgba(255,255,255,.06);
  color: #6EE7B7;
  display: flex; align-items: center; justify-content: center;
}
.ea-why-spec--accent .ea-why-spec-icon { background: rgba(255,255,255,.14); color: #fff; }
.ea-why-spec-icon svg { width: 18px; height: 18px; stroke-width: 1.6; }
.ea-why-spec-name {
  font-family: var(--ea-display);
  font-size: 12px; font-weight: 600;
  color: #fff;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

/* --- Why-us responsive ---------------------------------------------------- */
@media (max-width: 960px) {
  .ea-why-grid { grid-template-columns: 1fr; gap: 32px; }
  .ea-why-panels { min-height: 440px; order: 2; }
  .ea-why-list { order: 1; }
  .ea-why-panel { padding: 32px; }
}
@media (max-width: 640px) {
  .ea-why { padding: 72px 0; }
  .ea-why-item { grid-template-columns: 48px minmax(0, 1fr) 20px; gap: 14px; padding: 20px 0; }
  .ea-why-num { font-size: 30px; }
  .ea-why-title { font-size: 18px; }
  .ea-why-panels { min-height: 380px; }
  .ea-why-panel { padding: 24px; }
  .ea-why-team, .ea-why-specialties { max-width: 320px; }
}

/* Category color themes — applied via modifier class on the card header. */
.ea-news-media--gaming      { --_cat-accent: rgba(139,92,246,.5);  --_cat-bg-a: #312E81; --_cat-bg-b: #1E1B4B; }
.ea-news-media--training    { --_cat-accent: rgba(59,130,246,.5);  --_cat-bg-a: #1E3A8A; --_cat-bg-b: #0C1F4D; }
.ea-news-media--results     { --_cat-accent: rgba(16,185,129,.55); --_cat-bg-a: #064E3B; --_cat-bg-b: #022C22; }
.ea-news-media--insights    { --_cat-accent: rgba(245,158,11,.5);  --_cat-bg-a: #78350F; --_cat-bg-b: #451A03; }
.ea-news-media--partnership { --_cat-accent: rgba(244,63,94,.5);   --_cat-bg-a: #881337; --_cat-bg-b: #4C0519; }
.ea-news-media--award       { --_cat-accent: rgba(20,184,166,.5);  --_cat-bg-a: #134E4A; --_cat-bg-b: #042F2E; }
.ea-news-body {
  padding: 22px 22px 26px;
  flex: 1;
  display: flex; flex-direction: column;
  gap: 8px;
}
.ea-news-kicker {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--ea-accent);
}
.ea-news-title {
  font-family: var(--ea-display);
  font-size: 19px;
  line-height: 1.3;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin: 0;
  color: var(--ea-ink);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.ea-news-excerpt {
  font-size: 14px;
  color: var(--ea-ink-soft);
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.ea-news-center {
  text-align: center;
  margin-top: 48px;
}

/* --- CTA / Two-tiles ------------------------------------------------------ */
.ea-tiles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.ea-tile {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--ea-radius-xl);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 44px;
  color: #fff;
  background: #111827;
  transition: transform .35s ease, box-shadow .35s ease;
  isolation: isolate;
}
.ea-tile:hover { transform: translateY(-6px); box-shadow: 0 40px 60px -24px rgba(17,24,39,.32); }

/* Typographic tile variants — no stock photos. Colored gradient + huge
   background watermark + kicker + headline. Same language as news cards
   but at hero-tile scale. */
.ea-tile--clients {
  background:
    radial-gradient(80% 120% at 100% 0%, rgba(110,231,183,.3), transparent 55%),
    radial-gradient(60% 80% at 0% 100%, rgba(16,185,129,.18), transparent 70%),
    linear-gradient(155deg, #064E3B 0%, #0B3D2E 50%, #021D14 100%);
}
.ea-tile--partners {
  background:
    radial-gradient(80% 120% at 100% 0%, rgba(167,139,250,.18), transparent 55%),
    radial-gradient(60% 80% at 0% 100%, rgba(110,231,183,.12), transparent 70%),
    linear-gradient(155deg, #1F1F23 0%, #111316 50%, #05070A 100%);
}
.ea-tile::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 20px 20px;
  mask-image: linear-gradient(120deg, black 20%, transparent 80%);
  -webkit-mask-image: linear-gradient(120deg, black 20%, transparent 80%);
  pointer-events: none;
  z-index: 0;
}
.ea-tile-watermark {
  position: absolute;
  top: 50%; right: -4%;
  transform: translateY(-50%);
  font-family: var(--ea-display);
  font-size: clamp(140px, 18vw, 260px);
  font-weight: 800;
  line-height: 0.82;
  letter-spacing: -0.06em;
  color: rgba(255,255,255,.04);
  pointer-events: none;
  user-select: none;
  z-index: 0;
  white-space: nowrap;
}
.ea-tile--clients .ea-tile-watermark { color: rgba(110,231,183,.07); }
.ea-tile-content {
  position: relative;
  z-index: 1;
  max-width: 460px;
}
.ea-tile-kicker {
  text-transform: uppercase; letter-spacing: 0.22em;
  font-size: 11px; font-weight: 700; color: #6EE7B7;
  margin-bottom: 14px;
  display: inline-block;
  padding: 6px 10px;
  background: rgba(110,231,183,.1);
  border: 1px solid rgba(110,231,183,.3);
  border-radius: 999px;
}
.ea-tile--partners .ea-tile-kicker { color: #C4B5FD; background: rgba(167,139,250,.1); border-color: rgba(167,139,250,.3); }
.ea-tile h3 {
  font-family: var(--ea-display);
  font-size: clamp(26px, 3vw, 38px);
  color: #fff;
  margin: 0 0 18px;
  letter-spacing: -0.025em;
  line-height: 1.1;
  max-width: 340px;
}
.ea-tile-link {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 600; font-size: 15px;
  color: #fff;
  padding: 12px 18px;
  border: 1.5px solid rgba(255,255,255,.25);
  border-radius: 999px;
  background: rgba(255,255,255,.04);
  transition: background .2s ease, border-color .2s ease;
}
.ea-tile:hover .ea-tile-link { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.5); }
.ea-tile-link svg { width: 14px; height: 14px; transition: transform .2s; }
.ea-tile:hover .ea-tile-link svg { transform: translateX(4px); }

/* --- Brand carousel ------------------------------------------------------- */
.ea-brands {
  position: relative;
  padding: 80px 0 48px;
}
.ea-brand-viewport {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 8%, #000 92%, transparent 100%);
}
.ea-brand-track {
  display: flex;
  gap: 18px;
  padding: 8px 0;
  animation: ea-marquee 38s linear infinite;
}
.ea-brand-viewport:hover .ea-brand-track { animation-play-state: paused; }
@keyframes ea-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.ea-brand-card {
  flex: 0 0 220px;
  height: 96px;
  background: var(--ea-surface);
  border: 1px solid var(--ea-line);
  border-radius: var(--ea-radius);
  display: flex; align-items: center; justify-content: center;
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.ea-brand-card:hover { border-color: var(--ea-accent); transform: translateY(-2px); box-shadow: var(--ea-shadow-sm); }

/* Typographic brand lockups — designed placeholders until real SVG logos
   are provided. Mixed weights and monospace hints read as "intentional
   wordmarks" rather than raw text-in-box. */
.ea-brand-lockup {
  font-family: var(--ea-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ea-ink);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  min-height: 28px;            /* normalise baseline across mixed weights */
  line-height: 1;
}
.ea-brand-lockup--upper { text-transform: uppercase; letter-spacing: 0.04em; font-weight: 800; font-size: 18px; }
.ea-brand-lockup--mono  { font-family: 'JetBrains Mono', ui-monospace, monospace; font-size: 16px; font-weight: 600; letter-spacing: -0.02em; }
.ea-brand-lockup--light { font-weight: 300; font-size: 24px; letter-spacing: -0.03em; }
.ea-brand-lockup .ea-brand-dot { color: var(--ea-accent); font-weight: 900; }
.ea-brand-lockup sup { font-size: 0.45em; color: var(--ea-ink-soft); margin-left: 2px; letter-spacing: 0; font-weight: 500; }

/* --- Final CTA section ---------------------------------------------------- */
.ea-cta-banner {
  background: linear-gradient(135deg, #064E3B 0%, #065F46 45%, #10B981 120%);
  border-radius: var(--ea-radius-xl);
  padding: 72px clamp(32px, 5vw, 80px);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.ea-cta-banner::before {
  content: '';
  position: absolute;
  inset: -20% -5% auto auto;
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(110,231,183,.45), transparent 60%);
  filter: blur(6px);
}
.ea-cta-banner h2 {
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.1;
  color: #fff;
  max-width: 720px;
  margin: 0 auto 28px;
  position: relative;
}
.ea-cta-banner h2 em { font-style: normal; color: #6EE7B7; font-weight: 700; }
.ea-cta-banner-actions { display: inline-flex; gap: 14px; flex-wrap: wrap; justify-content: center; position: relative; }
.ea-cta-banner-actions .ea-btn { padding: 15px 28px; font-size: 15.5px; }

/* --- Footer --------------------------------------------------------------- */
.ea-footer {
  background: var(--ea-dark);
  color: #d4d4d8;
  padding: 84px 0 28px;
  margin-top: 24px;
}
.ea-footer-inner {
  max-width: var(--ea-max);
  margin: 0 auto;
  padding: 0 var(--ea-gutter);
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1.4fr;
  gap: 56px;
}
.ea-footer-brand-mark {
  font-family: var(--ea-display);
  font-weight: 800;
  font-size: 28px;
  letter-spacing: -0.03em;
  color: #fff;
  display: inline-flex; align-items: baseline;
  margin-bottom: 20px;
}
.ea-footer-brand-mark .ea-logo-mark { background: var(--ea-accent); width: 12px; height: 12px; border-radius: 4px; }
.ea-footer-about {
  font-size: 14px;
  line-height: 1.7;
  color: #a1a1aa;
  max-width: 400px;
  margin: 0 0 24px;
}
.ea-footer-about strong { color: #e4e4e7; font-weight: 600; }
.ea-socials { display: flex; gap: 10px; }
.ea-social-link {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: var(--ea-dark-2);
  border: 1px solid var(--ea-dark-line);
  color: #d4d4d8;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, color .2s, border-color .2s, transform .2s;
}
.ea-social-link:hover {
  background: var(--ea-accent);
  border-color: var(--ea-accent);
  color: #fff;
  transform: translateY(-2px);
}
.ea-social-link svg { width: 16px; height: 16px; }

.ea-footer-col h4 {
  font-family: var(--ea-display);
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 22px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.ea-footer-col ul { display: grid; gap: 14px; }
.ea-footer-col a {
  font-size: 14.5px;
  color: #a1a1aa;
  transition: color .2s;
}
.ea-footer-col a:hover { color: #fff; }

.ea-contact-row {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 14px;
  color: #a1a1aa;
  margin-bottom: 18px;
  line-height: 1.55;
}
.ea-contact-row a { color: inherit; transition: color .2s; }
.ea-contact-row a:hover { color: #fff; }
.ea-contact-icon {
  color: var(--ea-accent);
  flex: none;
  margin-top: 2px;
}
.ea-contact-icon svg { width: 16px; height: 16px; }

.ea-footer-bottom {
  max-width: var(--ea-max);
  margin: 64px auto 0;
  padding: 26px var(--ea-gutter) 0;
  border-top: 1px solid var(--ea-dark-line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: #71717a;
  flex-wrap: wrap;
  gap: 12px;
}
.ea-footer-bottom a {
  color: #a1a1aa;
  border-bottom: 1px dotted #52525b;
  padding-bottom: 1px;
}
.ea-footer-bottom a:hover { color: #fff; border-color: #a1a1aa; }

/* Credit link — 'Developed & Designed by Rad Connections' on the right */
.ea-footer-bottom a.ea-footer-credit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-bottom: 0;
  padding-bottom: 0;
  color: #a1a1aa;
  font-size: 12px;
  transition: color .2s;
}
.ea-footer-bottom a.ea-footer-credit:hover { color: #fff; }
.ea-footer-credit-mark {
  display: inline-flex;
  align-items: center;
  font-weight: 700;
  color: #f4f4f5;
  letter-spacing: -0.005em;
}
.ea-footer-credit-r {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 15px; height: 15px;
  border-radius: 50%;
  background: #E11D48;
  color: #fff;
  font-family: var(--ea-display);
  font-weight: 900;
  font-size: 10px;
  margin-right: 2px;
  line-height: 1;
}
.ea-footer-credit-c { color: #F5D90A; font-weight: 900; }

/* ============================================================================
   INNER-PAGE PRIMITIVES  (Phase 0 — foundation for all non-/v2 pages)
   Page hero, breadcrumb, split layout, prose, forms, content helpers.
   ============================================================================ */

/* --- Page hero — compact version for inner pages ------------------------- */
.ea-page-hero {
  position: relative;
  padding: 72px 0 64px;
  background:
    radial-gradient(800px 400px at 85% 15%, rgba(16,185,129,.15), transparent 55%),
    radial-gradient(700px 500px at 10% 110%, rgba(16,185,129,.08), transparent 55%),
    linear-gradient(180deg, #14171F 0%, #0B0F1A 100%);
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.ea-page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 40%, transparent 100%);
  pointer-events: none;
}
.ea-page-hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--ea-max);
  margin: 0 auto;
  padding: 0 var(--ea-gutter);
  color: #fff;
}
.ea-page-hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  text-transform: uppercase; letter-spacing: 0.22em;
  font-size: 11px; font-weight: 700; color: #6EE7B7;
  padding: 6px 12px;
  border: 1px solid rgba(110,231,183,.35);
  border-radius: 999px;
  background: rgba(16,185,129,.08);
  margin-bottom: 22px;
}
.ea-page-hero-title {
  font-family: var(--ea-display);
  font-size: clamp(36px, 4.6vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.028em;
  color: #fff;
  margin: 0 0 16px;
  max-width: 780px;
  font-weight: 700;
  text-wrap: balance;
}
.ea-page-hero-title em { color: #6EE7B7; font-style: normal; font-weight: 700; }
.ea-page-hero-lead {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255,255,255,.75);
  max-width: 640px;
  margin: 0;
}

/* --- Breadcrumb ---------------------------------------------------------- */
.ea-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  color: rgba(255,255,255,.55);
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  letter-spacing: 0.04em;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.ea-breadcrumb a { color: inherit; transition: color .2s; }
.ea-breadcrumb a:hover { color: #6EE7B7; }
.ea-breadcrumb-sep {
  opacity: .5;
  user-select: none;
}
.ea-breadcrumb [aria-current="page"] { color: #fff; }

/* Breadcrumb on light-bg pages (e.g. inside-page content using the
   breadcrumb above a light section). */
.ea-breadcrumb--light {
  color: var(--ea-ink-soft);
}
.ea-breadcrumb--light a:hover { color: var(--ea-accent); }
.ea-breadcrumb--light [aria-current="page"] { color: var(--ea-ink); }

/* --- Split content section — image + text, 50/50 ------------------------- */
.ea-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 64px;
  align-items: center;
}
.ea-split--media-left .ea-split-media { order: -1; }
.ea-split-media {
  border-radius: var(--ea-radius-xl);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--ea-bg-alt);
  position: relative;
}
.ea-split-media img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
/* Designed (no-photo) media — gradient + centered watermark character.
   Kept for cases where a page genuinely only needs a decorative block;
   prefer .ea-viz--* variants below for content-specific storytelling. */
.ea-split-media--designed {
  background:
    radial-gradient(120% 80% at 100% 0%, rgba(16,185,129,.22), transparent 55%),
    linear-gradient(155deg, #14181F 0%, #0A0D13 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(110,231,183,.12);
  font-family: var(--ea-display);
  font-size: clamp(100px, 14vw, 200px);
  font-weight: 800;
  letter-spacing: -0.06em;
  border: 1px solid rgba(255,255,255,.08);
}

/* --- Designed visualizations (.ea-viz--*) -------------------------------- */
/* Purpose-built visual compositions that live inside .ea-split-media.
   Each is self-contained and tells the story of its neighbouring copy. */
.ea-split-media.ea-viz {
  background:
    radial-gradient(100% 70% at 100% 0%, rgba(16,185,129,.18), transparent 55%),
    linear-gradient(160deg, #14181F 0%, #0A0D13 100%);
  border: 1px solid rgba(255,255,255,.08);
  position: relative;
  padding: 28px;
  overflow: hidden;
  display: block;                         /* override flex from --designed */
}
.ea-split-media.ea-viz::before {          /* dot grid for depth */
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 22px 22px;
  mask-image: radial-gradient(ellipse 80% 60% at 70% 40%, black 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 70% 40%, black 40%, transparent 100%);
  pointer-events: none;
}

/* === Viz 1: Intelligence dashboard === */
.ea-viz--dashboard {
  --viz-fg: #E5E7EB;
}
.ea-viz-dash-grid {
  position: relative;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(4, 1fr);
  gap: 12px;
}
.ea-viz-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  padding: 14px 16px;
  backdrop-filter: blur(6px);
  display: flex; flex-direction: column; justify-content: space-between;
  color: var(--viz-fg);
  font-family: var(--ea-body);
  transition: transform .4s ease;
}
.ea-split:hover .ea-viz-card { transform: translateY(-2px); }
.ea-viz-card--accent {
  background:
    radial-gradient(100% 80% at 100% 0%, rgba(16,185,129,.35), transparent 60%),
    rgba(16,185,129,.1);
  border-color: rgba(110,231,183,.4);
  color: #fff;
}
/* 6-col × 4-row grid tiled with zero gaps:
     ┌─────────────────┬───────┐  row 1 │ SH │ SH │ SH │ SH │ AB │ AB │
     │   Smart Home    │Active │  row 2 │ SH │ SH │ SH │ SH │ LM │ LM │
     │   (4×2)         │Live   │  row 3 │ PI │ PI │ PI │ QO │ QO │ QO │
     ├─────────┬───────┴───────┤  row 4 │ PI │ PI │ PI │ QO │ QO │ QO │
     │  Price  │   Q3 Outlook  │
     └─────────┴───────────────┘                                       */
.ea-viz-card-1 { grid-column: 1 / span 4; grid-row: 1 / span 2; }
.ea-viz-card-2 { grid-column: 5 / span 2; grid-row: 1 / span 1; }
.ea-viz-card-3 { grid-column: 5 / span 2; grid-row: 2 / span 1; }
.ea-viz-card-4 { grid-column: 1 / span 3; grid-row: 3 / span 2; }
.ea-viz-card-5 { grid-column: 4 / span 3; grid-row: 3 / span 2; }

.ea-viz-label {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 9.5px;
  font-weight: 600;
  color: rgba(255,255,255,.45);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.ea-viz-card--accent .ea-viz-label { color: rgba(255,255,255,.75); }
.ea-viz-title {
  font-family: var(--ea-display);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: #fff;
  margin-top: 2px;
}
.ea-viz-delta {
  align-self: flex-end;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 13px;
  font-weight: 700;
  color: #6EE7B7;
  padding: 3px 8px;
  background: rgba(16,185,129,.12);
  border: 1px solid rgba(110,231,183,.3);
  border-radius: 999px;
}
.ea-viz-card--accent .ea-viz-delta {
  background: rgba(255,255,255,.18);
  border-color: rgba(255,255,255,.28);
  color: #fff;
}
.ea-viz-bars {
  display: flex; align-items: flex-end;
  gap: 3px;
  height: 32px;
  margin-top: auto;
}
.ea-viz-bar {
  flex: 1;
  background: linear-gradient(180deg, #34D399 0%, rgba(52,211,153,.15) 100%);
  border-radius: 3px 3px 0 0;
  transition: filter .3s ease;
}
.ea-viz-card--accent .ea-viz-bar { background: linear-gradient(180deg, #fff 0%, rgba(255,255,255,.18) 100%); }
.ea-viz-bar:nth-child(1) { height: 38%; }
.ea-viz-bar:nth-child(2) { height: 60%; }
.ea-viz-bar:nth-child(3) { height: 48%; }
.ea-viz-bar:nth-child(4) { height: 72%; }
.ea-viz-bar:nth-child(5) { height: 55%; }
.ea-viz-bar:nth-child(6) { height: 82%; }
.ea-viz-bar:nth-child(7) { height: 68%; }
.ea-viz-bar:nth-child(8) { height: 100%; }

.ea-viz-count {
  font-family: var(--ea-display);
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  letter-spacing: -0.025em;
  font-variant-numeric: tabular-nums;
  margin-top: auto;
}
.ea-viz-pulse {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 10px;
  color: #6EE7B7;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.ea-viz-pulse::before {
  content: '';
  width: 6px; height: 6px;
  background: #34D399;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(52,211,153,.25);
  animation: ea-pulse 2s infinite;
}

.ea-viz-sparkline { width: 100%; height: 36px; margin-top: auto; }
.ea-viz-sparkline-line { fill: none; stroke: #34D399; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.ea-viz-sparkline-fill { fill: url(#ea-spark-grad); stroke: none; }

/* === Viz 2: Growth flow === */
.ea-viz--flow { --viz-fg: #E5E7EB; }
.ea-viz-flow-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
}
.ea-viz-flow-path {
  fill: none;
  stroke: rgba(110,231,183,.25);
  stroke-width: 1.5;
  stroke-dasharray: 3 5;
}
.ea-viz-flow-path-solid {
  fill: none;
  stroke: #34D399;
  stroke-width: 2.5;
  stroke-linecap: round;
  filter: drop-shadow(0 0 8px rgba(52,211,153,.4));
}
.ea-viz-flow-node {
  position: absolute;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.ea-viz-flow-dot {
  width: 16px; height: 16px;
  background: #0B0F1A;
  border: 2px solid #34D399;
  border-radius: 50%;
  position: relative;
  box-shadow: 0 0 0 4px rgba(52,211,153,.15);
}
.ea-viz-flow-node--current .ea-viz-flow-dot {
  background: #34D399;
  box-shadow: 0 0 0 4px rgba(52,211,153,.25), 0 0 16px rgba(52,211,153,.5);
}
.ea-viz-flow-label {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,.75);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 4px 8px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 6px;
  backdrop-filter: blur(6px);
}
.ea-viz-flow-node--current .ea-viz-flow-label {
  color: #6EE7B7;
  background: rgba(16,185,129,.15);
  border-color: rgba(110,231,183,.4);
}

.ea-viz-flow-axis {
  position: absolute;
  bottom: 18px; left: 28px; right: 28px;
  display: flex; justify-content: space-between;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 10px;
  color: rgba(255,255,255,.35);
  letter-spacing: 0.1em;
  z-index: 1;
}
.ea-viz-flow-callout {
  position: absolute;
  top: 20px; right: 20px;
  padding: 10px 14px;
  background: rgba(16,185,129,.15);
  border: 1px solid rgba(110,231,183,.4);
  border-radius: 10px;
  z-index: 3;
  backdrop-filter: blur(6px);
}
.ea-viz-flow-callout-label {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 9.5px;
  color: rgba(167,243,208,.85);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.ea-viz-flow-callout-value {
  font-family: var(--ea-display);
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  line-height: 1;
  margin-top: 2px;
}

/* --- Page hero visual right-side panel ---------------------------------- */
.ea-page-hero--split .ea-page-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
}
.ea-page-hero-visual {
  position: relative;
  aspect-ratio: 5 / 4;
  max-width: 440px;
  margin-left: auto;
  width: 100%;
}
/* Category chips floating at offsets — reinforces "gateway for categories"
   without dominating the hero. */
.ea-page-hero-chip {
  position: absolute;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 14px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 999px;
  color: rgba(255,255,255,.82);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: -0.005em;
  backdrop-filter: blur(8px);
  transition: transform .3s ease, background .3s ease;
}
.ea-page-hero-chip:hover { transform: translateY(-2px); }
.ea-page-hero-chip--accent {
  background:
    radial-gradient(100% 80% at 100% 0%, rgba(110,231,183,.3), transparent 60%),
    rgba(16,185,129,.12);
  border-color: rgba(110,231,183,.4);
  color: #fff;
}
.ea-page-hero-chip-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(110,231,183,.5);
}
.ea-page-hero-chip--accent .ea-page-hero-chip-dot {
  background: #34D399;
  box-shadow: 0 0 0 2px rgba(52,211,153,.2);
}
.ea-page-hero-chip-count {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px;
  color: rgba(110,231,183,.85);
  margin-left: 2px;
}
.ea-page-hero-chip--accent .ea-page-hero-chip-count { color: #A7F3D0; }
.ea-page-hero-visual-svg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  overflow: visible;
}
.ea-page-hero-visual-line {
  fill: none;
  stroke: rgba(110,231,183,.15);
  stroke-width: 1;
  stroke-dasharray: 2 4;
}
.ea-page-hero-visual-core {
  fill: rgba(110,231,183,.08);
  stroke: rgba(110,231,183,.3);
  stroke-width: 1.5;
}

@media (max-width: 900px) {
  .ea-page-hero--split .ea-page-hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .ea-page-hero-visual { max-width: 360px; margin: 0 auto; }
}
@media (max-width: 640px) {
  .ea-viz-dash-grid { gap: 8px; }
  .ea-viz-title { font-size: 15px; }
  .ea-viz-count { font-size: 24px; }
}

/* --- Viz: signal stream (timeline of live intelligence dispatches) ------ */
.ea-viz--stream {
  aspect-ratio: auto;
  padding: 22px;
  display: flex;
  flex-direction: column;
}
.ea-signal-stream {
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
}
.ea-signal-stream::before {
  /* Vertical hairline connector running behind dot markers */
  content: '';
  position: absolute;
  top: 16px; bottom: 16px;
  left: 22px;
  width: 1px;
  background: linear-gradient(to bottom, rgba(110,231,183,.5) 0%, rgba(110,231,183,.15) 100%);
}
.ea-signal-card {
  display: grid;
  grid-template-columns: 16px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 12px 14px 12px 14px;
  background: rgba(255,255,255,.035);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px;
  position: relative;
  transition: background .25s ease, border-color .25s ease, transform .25s ease;
  backdrop-filter: blur(4px);
}
.ea-signal-card:hover {
  transform: translateX(3px);
  background: rgba(16,185,129,.08);
  border-color: rgba(110,231,183,.3);
}
.ea-signal-card--now {
  background: linear-gradient(135deg, rgba(16,185,129,.22), rgba(5,150,105,.12));
  border-color: rgba(110,231,183,.4);
}
.ea-signal-dot {
  width: 10px; height: 10px;
  background: rgba(110,231,183,.55);
  border-radius: 50%;
  border: 2px solid #0B0F1A;
  box-shadow: 0 0 0 2px rgba(110,231,183,.35);
  position: relative;
  z-index: 2;
  justify-self: center;
}
.ea-signal-card--now .ea-signal-dot {
  background: #34D399;
  box-shadow: 0 0 0 3px rgba(52,211,153,.4), 0 0 12px rgba(52,211,153,.55);
  animation: ea-pulse 2s infinite;
}
.ea-signal-body {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}
.ea-signal-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 9.5px;
  color: rgba(255,255,255,.5);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.ea-signal-card--now .ea-signal-meta { color: #6EE7B7; }
.ea-signal-meta-tag {
  color: rgba(255,255,255,.75);
  padding: 2px 8px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  background: rgba(255,255,255,.04);
}
.ea-signal-card--now .ea-signal-meta-tag {
  color: #A7F3D0;
  border-color: rgba(110,231,183,.4);
  background: rgba(16,185,129,.2);
}
.ea-signal-title {
  font-family: var(--ea-display);
  font-size: 13.5px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.01em;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ea-signal-value {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px;
  font-weight: 700;
  color: #6EE7B7;
  white-space: nowrap;
}
.ea-signal-card--now .ea-signal-value { color: #fff; }

/* --- Viz: integration flow (how a partner plugs into ehornet) ----------- */
/* Vertical composition: Source (partner platform) -> Hub (ehornet) ->
   Resources (Catalog / Logistics / Brands / Intelligence). Single axis,
   no radial layout, so nothing can collide no matter how the container
   sizes. Uses compound selector .ea-viz.ea-viz--integration to beat the
   .ea-split-media.ea-viz { display:block } declared earlier. */
.ea-viz.ea-viz--integration {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0;
  padding: 22px;
  aspect-ratio: auto;
  min-height: 440px;
}
.ea-int-tier {
  position: relative;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  padding: 14px 18px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.ea-int-tier-label {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 9.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(110,231,183,.7);
  margin-bottom: 6px;
}
.ea-int-tier-title {
  font-family: var(--ea-display);
  font-size: 15.5px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.ea-int-tier-sub {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 10.5px;
  color: rgba(255,255,255,.55);
  margin-top: 4px;
  letter-spacing: 0.02em;
}
.ea-int-tier--hub {
  background:
    radial-gradient(100% 80% at 50% 0%, rgba(110,231,183,.22), transparent 60%),
    rgba(16,185,129,.12);
  border-color: rgba(110,231,183,.4);
}
.ea-int-tier--hub .ea-int-tier-title {
  font-size: 18px;
  color: #ECFDF5;
}
.ea-int-tier--hub .ea-int-tier-label {
  color: rgba(167,243,208,.85);
}
.ea-int-tier-status {
  position: absolute;
  top: 14px;
  right: 18px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 9.5px;
  color: rgba(110,231,183,.9);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.ea-int-tier-status-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #34D399;
  box-shadow: 0 0 0 4px rgba(52,211,153,.2);
  animation: ea-pulse 2s ease-out infinite;
}
/* Connector between tiers: dashed vertical line with a flowing pulse dot */
.ea-int-connector {
  position: relative;
  height: 36px;
  display: flex;
  justify-content: center;
  margin: 0;
}
.ea-int-connector::before {
  content: '';
  width: 1px;
  height: 100%;
  background-image: linear-gradient(to bottom, rgba(110,231,183,.5) 50%, transparent 50%);
  background-size: 1px 6px;
  background-repeat: repeat-y;
}
.ea-int-connector::after {
  content: '';
  position: absolute;
  left: 50%;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #6EE7B7;
  transform: translateX(-50%);
  box-shadow: 0 0 8px rgba(110,231,183,.6);
  animation: ea-int-flow 2.6s linear infinite;
}
@keyframes ea-int-flow {
  0%   { top: -4px;  opacity: 0; }
  15%  { opacity: 1; }
  85%  { opacity: 1; }
  100% { top: calc(100% - 2px); opacity: 0; }
}
/* Resources row: 4 small capability tiles at the bottom */
.ea-int-resources {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.ea-int-resource {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 10px;
  padding: 12px 8px 10px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  transition: border-color .3s, transform .3s;
}
.ea-int-resource:hover {
  border-color: rgba(110,231,183,.4);
  transform: translateY(-2px);
}
.ea-int-resource-icon {
  width: 22px; height: 22px;
  color: rgba(110,231,183,.85);
  display: flex; align-items: center; justify-content: center;
}
.ea-int-resource-icon svg { width: 100%; height: 100%; }
.ea-int-resource-label {
  font-family: var(--ea-display);
  font-size: 10.5px;
  font-weight: 700;
  color: rgba(255,255,255,.9);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.1;
}
.ea-int-resource-metric {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11.5px;
  color: #6EE7B7;
  font-weight: 600;
  letter-spacing: -0.01em;
}

/* --- Viz: contact channels list (hero right-side on /contact) ----------- */
/* Compound selector .ea-viz.ea-viz--contact beats .ea-split-media.ea-viz
   { display: block } the same way .ea-viz--integration does. */
.ea-viz.ea-viz--contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 22px;
  aspect-ratio: auto;
  min-height: 440px;
}
.ea-viz--contact .ea-viz-label {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 9.5px;
  font-weight: 600;
  color: rgba(110,231,183,.72);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 4px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.ea-viz--contact .ea-viz-label-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #34D399;
  box-shadow: 0 0 0 3px rgba(52,211,153,.18);
  animation: ea-pulse 2s ease-out infinite;
}
.ea-contact-row {
  display: grid;
  grid-template-columns: 40px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 12px 14px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: border-color .3s, transform .3s;
}
.ea-contact-row:hover {
  border-color: rgba(110,231,183,.42);
  transform: translateY(-2px);
}
.ea-contact-row-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(16,185,129,.14);
  border: 1px solid rgba(110,231,183,.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6EE7B7;
  flex: none;
}
.ea-contact-row-icon svg { width: 18px; height: 18px; }
.ea-contact-row-body { min-width: 0; }
.ea-contact-row-label {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 9.5px;
  font-weight: 600;
  color: rgba(110,231,183,.72);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 3px;
}
.ea-contact-row-value {
  font-family: var(--ea-display);
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ea-contact-row-meta {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 10px;
  color: rgba(255,255,255,.55);
  margin-top: 3px;
}
.ea-contact-row-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 9.5px;
  font-weight: 600;
  color: rgba(110,231,183,.85);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  white-space: nowrap;
}
.ea-contact-row-status-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #34D399;
  box-shadow: 0 0 0 3px rgba(52,211,153,.18);
  animation: ea-pulse 2s ease-out infinite;
}
.ea-contact-row-status--muted {
  color: rgba(255,255,255,.5);
}
.ea-contact-row-status--muted .ea-contact-row-status-dot {
  background: rgba(255,255,255,.4);
  box-shadow: 0 0 0 3px rgba(255,255,255,.1);
  animation: none;
}

/* --- 'How we handle it' stack (contact form split left-side) ----------- */
/* Three designed cards, each with its own mini-visualisation telling
   the story of one guarantee (routing / SLA / languages). Replaces
   the previous plain bullet list. */
.ea-handle-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 28px;
}
.ea-handle-card {
  position: relative;
  background: var(--ea-surface);
  border: 1px solid var(--ea-line);
  border-radius: var(--ea-radius-lg);
  padding: 22px 24px;
  overflow: hidden;
  transition: border-color .3s, transform .3s, box-shadow .3s;
}
.ea-handle-card:hover {
  border-color: rgba(16,185,129,.35);
  transform: translateY(-2px);
  box-shadow: var(--ea-shadow-sm);
}
.ea-handle-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(16,185,129,.05) 1px, transparent 1px);
  background-size: 18px 18px;
  mask-image: radial-gradient(60% 80% at 100% 0%, #000 40%, transparent 80%);
  -webkit-mask-image: radial-gradient(60% 80% at 100% 0%, #000 40%, transparent 80%);
  pointer-events: none;
}
.ea-handle-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 4px;
  position: relative;
}
.ea-handle-card-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--ea-accent-50);
  border: 1px solid rgba(16,185,129,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ea-accent-ink);
  flex: none;
}
.ea-handle-card-icon svg { width: 18px; height: 18px; }
.ea-handle-card-labels { flex: 1; min-width: 0; }
.ea-handle-card-eyebrow {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 9.5px;
  font-weight: 600;
  color: var(--ea-accent-ink);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 3px;
}
.ea-handle-card-title {
  font-family: var(--ea-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--ea-ink);
  letter-spacing: -0.01em;
}
.ea-handle-card-caption {
  font-size: 13.5px;
  color: var(--ea-ink-soft);
  line-height: 1.55;
  margin: 14px 0 0;
  position: relative;
}

/* Card 1: routing diagram (message -> 2 desks) */
.ea-route {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 14px;
  padding: 18px 4px 4px;
  position: relative;
}
.ea-route-source {
  grid-column: 1 / -1;
  justify-self: center;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  background: var(--ea-accent-50);
  border: 1px solid rgba(16,185,129,.32);
  border-radius: 999px;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 10.5px;
  font-weight: 600;
  color: var(--ea-accent-ink);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}
.ea-route-source-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--ea-accent);
  box-shadow: 0 0 0 3px rgba(16,185,129,.22);
  animation: ea-pulse 2s ease-out infinite;
}
.ea-route-svg {
  grid-column: 1 / -1;
  height: 34px;
  width: 100%;
  overflow: visible;
}
.ea-route-svg-line {
  stroke: rgba(16,185,129,.5);
  stroke-width: 1;
  stroke-dasharray: 3 3;
  fill: none;
}
.ea-route-desk {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 10px 12px;
  background: var(--ea-surface);
  border: 1px solid var(--ea-line);
  border-radius: 10px;
  transition: border-color .3s, transform .3s;
}
.ea-route-desk:hover {
  border-color: rgba(16,185,129,.42);
  transform: translateY(-1px);
}
.ea-route-desk-label {
  font-family: var(--ea-display);
  font-size: 13.5px;
  font-weight: 700;
  color: var(--ea-ink);
  letter-spacing: -0.005em;
}
.ea-route-desk-meta {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 10px;
  color: var(--ea-ink-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Card 2: SLA bar (0h -> 6h avg -> 48h max) */
.ea-sla { padding-top: 18px; }
.ea-sla-track {
  position: relative;
  height: 6px;
  background: var(--ea-line-soft);
  border-radius: 999px;
  margin: 8px 4px;
}
.ea-sla-fill {
  position: absolute;
  left: 0; top: 0;
  height: 100%;
  width: 12.5%;
  background: linear-gradient(90deg, var(--ea-accent) 0%, #34D399 100%);
  border-radius: 999px 0 0 999px;
  box-shadow: 0 0 12px rgba(16,185,129,.5);
}
.ea-sla-marker {
  position: absolute;
  top: 50%;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--ea-surface);
  border: 2px solid var(--ea-accent);
  transform: translate(-50%, -50%);
  z-index: 1;
}
.ea-sla-marker--now {
  background: var(--ea-accent);
  box-shadow: 0 0 0 4px rgba(16,185,129,.2);
  animation: ea-pulse 2s ease-out infinite;
}
.ea-sla-marker--max {
  background: var(--ea-surface);
  border-color: var(--ea-line);
}
.ea-sla-labels {
  position: relative;
  height: 28px;
  margin: 14px 4px 0;
}
.ea-sla-label {
  position: absolute;
  top: 0;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 10px;
  color: var(--ea-ink-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  white-space: nowrap;
}
.ea-sla-label strong {
  display: block;
  margin-top: 2px;
  color: var(--ea-ink);
  font-size: 11px;
  font-weight: 700;
}
.ea-sla-label--accent { color: var(--ea-accent-ink); }
.ea-sla-label--accent strong { color: var(--ea-accent-ink); }

/* Card 3: language desks grid */
.ea-lang-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  padding-top: 18px;
}
.ea-lang-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding: 12px 6px 10px;
  background: var(--ea-surface);
  border: 1px solid var(--ea-line);
  border-radius: 10px;
  transition: border-color .3s, transform .3s;
}
.ea-lang-tile:hover {
  border-color: rgba(16,185,129,.42);
  transform: translateY(-1px);
}
.ea-lang-tile-code {
  font-family: var(--ea-display);
  font-size: 17px;
  font-weight: 800;
  color: var(--ea-ink);
  letter-spacing: 0.02em;
}
.ea-lang-tile-status {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 9px;
  color: var(--ea-accent-ink);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.ea-lang-tile-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--ea-accent);
  box-shadow: 0 0 0 2.5px rgba(16,185,129,.2);
}

/* --- Auth / login section (2-col split: dark value-prop | light form) -- */
.ea-auth {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  min-height: calc(100vh - 80px);        /* header ≈ 80px */
  background: var(--ea-bg-alt);
}
.ea-auth-panel {
  padding: 72px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;           /* centre the inner block on the x-axis */
  gap: 26px;
}
.ea-auth-panel-inner {
  width: 100%;
  max-width: 520px;
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.ea-auth-panel--dark {
  background: linear-gradient(160deg, #080B11 0%, #0A0D13 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.ea-auth-panel--dark > * { position: relative; z-index: 1; }

/* Decor layer — drifting colour blobs + fine dot-grid that the glass
   panel above will blur into atmospheric haze. */
.ea-auth-decor {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 22px 22px;
}
.ea-auth-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: .8;
  will-change: transform;
}
.ea-auth-blob--1 {
  top: -80px; left: -60px;
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(16,185,129,.55), transparent 68%);
  animation: ea-blob-drift-1 22s ease-in-out infinite alternate;
}
.ea-auth-blob--2 {
  bottom: -120px; right: -80px;
  width: 460px; height: 460px;
  background: radial-gradient(circle, rgba(52,211,153,.4), transparent 68%);
  animation: ea-blob-drift-2 26s ease-in-out infinite alternate;
}
.ea-auth-blob--3 {
  top: 42%; left: 30%;
  width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(6,95,70,.55), transparent 72%);
  animation: ea-blob-drift-3 30s ease-in-out infinite alternate;
}
@keyframes ea-blob-drift-1 {
  from { transform: translate(0, 0); }
  to   { transform: translate(60px, 50px); }
}
@keyframes ea-blob-drift-2 {
  from { transform: translate(0, 0); }
  to   { transform: translate(-50px, -40px); }
}
@keyframes ea-blob-drift-3 {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(40px, -30px) scale(1.15); }
}

/* Glass inner card — frosted panel that sits on the blobby backdrop.
   Only applied to the dark (left) auth panel; the form side stays
   untouched. */
.ea-auth-panel--dark .ea-auth-panel-inner {
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 22px;
  padding: 40px 36px;
  backdrop-filter: blur(22px) saturate(160%);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
  box-shadow:
    0 24px 60px -20px rgba(0,0,0,.55),
    inset 0 1px 0 rgba(255,255,255,.08);
}

/* Inside the glass card, suppress the dark box around the portal-preview
   viz and soften the contact-row chrome so the glass reads cleanly
   (nested backdrop-filters fight each other — drop the inner blur). */
.ea-auth-panel--dark .ea-split-media.ea-viz--contact {
  background: transparent;
  border: 0;
  padding: 0;
  min-height: 0;
}
.ea-auth-panel--dark .ea-contact-row {
  background: rgba(255,255,255,.05);
  border-color: rgba(255,255,255,.1);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.ea-auth-panel--dark .ea-contact-row:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(110,231,183,.35);
}

@media (prefers-reduced-motion: reduce) {
  .ea-auth-blob { animation: none; }
}

.ea-auth-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 10.5px;
  font-weight: 600;
  color: rgba(110,231,183,.8);
  text-transform: uppercase;
  letter-spacing: 0.16em;
}
.ea-auth-eyebrow-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #34D399;
  box-shadow: 0 0 0 3px rgba(52,211,153,.2);
  animation: ea-pulse 2s ease-out infinite;
}
.ea-auth-title {
  font-family: var(--ea-display);
  font-size: clamp(34px, 4.6vw, 52px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.028em;
  color: #fff;
  margin: 0;
  text-wrap: balance;
}
.ea-auth-title em { font-style: normal; color: #6EE7B7; font-weight: 700; }
.ea-auth-lead {
  font-size: 16.5px;
  line-height: 1.65;
  color: rgba(255,255,255,.72);
  margin: 0;
  max-width: 460px;
}

/* Form side (right column) — centres the form card vertically */
.ea-auth-panel--form {
  background: var(--ea-surface);
  align-items: center;
}
.ea-auth-form-shell {
  width: 100%;
  max-width: 440px;
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.ea-auth-form-header { margin: 0; }
.ea-auth-form-eyebrow {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 10.5px;
  font-weight: 600;
  color: var(--ea-accent-ink);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 6px;
  display: block;
}
.ea-auth-form-title {
  font-family: var(--ea-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--ea-ink);
  letter-spacing: -0.02em;
  margin: 0 0 6px;
}
.ea-auth-form-sub {
  font-size: 14.5px;
  color: var(--ea-ink-soft);
  line-height: 1.55;
  margin: 0;
}
.ea-auth-form-help {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--ea-ink-soft);
  margin-top: -4px;
}
.ea-auth-form-help a {
  color: var(--ea-accent-ink);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color .2s, border-color .2s;
}
.ea-auth-form-help a:hover {
  color: var(--ea-accent-600);
  border-bottom-color: currentColor;
}
.ea-auth-form-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ea-ink-muted);
  margin: 4px 0;
}
.ea-auth-form-divider::before,
.ea-auth-form-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--ea-line);
}
.ea-auth-apply {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 18px 20px;
  border: 1px dashed var(--ea-line);
  border-radius: 12px;
  background: var(--ea-bg-alt);
  gap: 4px;
}
.ea-auth-apply-label {
  font-size: 13.5px;
  color: var(--ea-ink-soft);
}
.ea-auth-apply-cta {
  font-family: var(--ea-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--ea-accent-ink);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color .2s, transform .2s;
}
.ea-auth-apply-cta:hover {
  color: var(--ea-accent-600);
  transform: translateX(2px);
}
.ea-auth-apply-cta svg { width: 14px; height: 14px; }

/* Input with affix button (password show/hide) */
.ea-input-group {
  position: relative;
}
.ea-input-group .ea-input { padding-right: 46px; }
.ea-input-group-affix {
  position: absolute;
  top: 50%;
  right: 6px;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  border-radius: 8px;
  color: var(--ea-ink-muted);
  cursor: pointer;
  transition: background .2s, color .2s;
}
.ea-input-group-affix:hover {
  background: var(--ea-line-soft);
  color: var(--ea-ink);
}
.ea-input-group-affix svg { width: 18px; height: 18px; }

/* Responsive: stack on narrow viewports, form first so it's above the fold */
@media (max-width: 860px) {
  .ea-auth {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .ea-auth-panel { padding: 56px 32px; }
  .ea-auth-panel--dark { order: 2; }          /* form first on mobile */
  .ea-auth-panel--form { order: 1; padding-top: 72px; }
}

/* --- Headquarters card (location panel on /contact) --------------------- */
.ea-hq {
  display: grid;
  grid-template-columns: 280px 1fr;
  align-items: stretch;
  background: var(--ea-surface);
  border: 1px solid var(--ea-line);
  border-radius: var(--ea-radius-lg);
  overflow: hidden;
  box-shadow: var(--ea-shadow-sm);
}
.ea-hq-pin {
  position: relative;
  background:
    radial-gradient(100% 80% at 50% 40%, rgba(110,231,183,.28), transparent 62%),
    linear-gradient(160deg, #064E3B 0%, #022C22 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  overflow: hidden;
  min-height: 220px;
}
.ea-hq-pin::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 18px 18px;
  opacity: .55;
  pointer-events: none;
}
.ea-hq-pin-wrap {
  position: relative;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ea-hq-pin-core {
  position: relative;
  z-index: 2;
  width: 52px;
  height: 52px;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  background: linear-gradient(135deg, #34D399 0%, #059669 100%);
  border: 2px solid rgba(255,255,255,.92);
  box-shadow:
    0 8px 22px rgba(0,0,0,.35),
    0 0 0 6px rgba(16,185,129,.18);
}
.ea-hq-pin-core::after {
  content: '';
  position: absolute;
  top: 10px; left: 10px;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,.95);
}
.ea-hq-pin-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 52px; height: 52px;
  margin: -26px 0 0 -26px;
  border-radius: 50%;
  border: 1px solid rgba(110,231,183,.55);
  animation: ea-hq-ripple 3s ease-out infinite;
  z-index: 1;
}
@keyframes ea-hq-ripple {
  0%   { transform: scale(1);   opacity: .7; }
  100% { transform: scale(3.2); opacity: 0; }
}
.ea-hq-pin-coords {
  position: absolute;
  bottom: 14px;
  left: 14px;
  right: 14px;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 10px;
  color: rgba(167,243,208,.75);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  display: flex;
  justify-content: space-between;
  z-index: 2;
}
.ea-hq-body {
  padding: 32px 36px;
  display: flex;
  flex-direction: column;
}
.ea-hq-eyebrow {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px;
  font-weight: 600;
  color: var(--ea-accent-ink);
  text-transform: uppercase;
  letter-spacing: 0.14em;
}
.ea-hq-title {
  font-family: var(--ea-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--ea-ink);
  letter-spacing: -0.015em;
  margin: 6px 0 10px;
}
.ea-hq-address {
  font-size: 15px;
  color: var(--ea-ink);
  line-height: 1.55;
  margin: 0 0 18px;
}
.ea-hq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 28px;
  margin-top: 6px;
}
.ea-hq-grid-item-label {
  display: block;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 10px;
  color: var(--ea-ink-muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 4px;
}
.ea-hq-grid-item-value {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ea-ink);
}
.ea-hq-grid-item-value a { color: var(--ea-accent-ink); }
.ea-hq-grid-item-value a:hover { color: var(--ea-accent-600); }
.ea-hq-legal {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px;
  color: var(--ea-ink-soft);
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px dashed var(--ea-line);
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.ea-hq-actions {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

@media (max-width: 820px) {
  .ea-hq { grid-template-columns: 1fr; }
  .ea-hq-pin { min-height: 180px; padding: 36px; }
  .ea-hq-body { padding: 28px 28px 32px; }
}

/* --- Onboarding steps (numbered timeline with cascading activation) ----- */
.ea-steps {
  list-style: none;
  padding: 0;
  margin: 32px 0 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  isolation: isolate;   /* scope z-indexes so the pulse dot sits below nums */
}
/* Connector line between step nodes */
.ea-steps::before {
  content: '';
  position: absolute;
  left: 19px;
  top: 20px;
  bottom: 20px;
  width: 1px;
  background: linear-gradient(180deg, rgba(16,185,129,.35) 0%, rgba(16,185,129,.22) 50%, var(--ea-line) 100%);
  pointer-events: none;
  z-index: 0;
}
/* Traveling pulse dot — slow emerald packet sliding top -> bottom.
   Sits z=0, so it's occluded by each step-num as it passes, mimicking
   data flowing through a node. 10s cycle — deliberately slow; the
   staggered step-visit animations below are timed to this cadence. */
.ea-steps::after {
  content: '';
  position: absolute;
  left: 19px;
  top: 20px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #6EE7B7;
  box-shadow: 0 0 8px rgba(110,231,183,.85);
  transform: translateX(-50%);
  animation: ea-steps-flow 10s linear infinite;
  pointer-events: none;
  will-change: top, opacity;
  z-index: 0;           /* paint below step-num which sits at z:2 */
}
@keyframes ea-steps-flow {
  0%   { top: 12px;              opacity: 0; }
  3%   { opacity: 1; }
  97%  { opacity: 1; }
  100% { top: calc(100% - 12px); opacity: 0; }
}

/* As the traveling dot passes each step, that node briefly *activates*:
   it scales up, fills with emerald, the title shifts to accent-ink,
   the body slides right, AND a ripple ring pings out from the node.
   All four steps share the same 10s cycle with staggered delays
   aligned to the packet's arrival time at each node position:
     step 1 at  12.5% of cycle  = t=1.25s  → delay = -3.75s
     step 2 at  37.5%            = t=3.75s  → delay = -1.25s
     step 3 at  62.5%            = t=6.25s  → delay =  1.25s
     step 4 at  87.5%            = t=8.75s  → delay =  3.75s
   The slide-right lives on .ea-step-body (not the li) so the li does
   not become a transformed stacking context — that's what pinned the
   pulse dot above the nodes before. */

.ea-step .ea-step-body {
  animation: ea-step-visit-wrap 10s linear infinite;
}
.ea-step .ea-step-num {
  animation: ea-step-visit-num 10s linear infinite;
}
.ea-step .ea-step-body h4 {
  animation: ea-step-visit-title 10s linear infinite;
}
/* Ripple ring expanding out of the node as the packet arrives.
   Thin, soft-accent stroke so it reads as a gentle ping rather than
   a loud ring snap. */
.ea-step .ea-step-num::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(16,185,129,.5);
  opacity: 0;
  pointer-events: none;
  animation: ea-step-ripple 10s linear infinite;
}

.ea-step:nth-child(1) .ea-step-body,
.ea-step:nth-child(1) .ea-step-num,
.ea-step:nth-child(1) .ea-step-num::before,
.ea-step:nth-child(1) .ea-step-body h4 { animation-delay: -3.75s; }
.ea-step:nth-child(2) .ea-step-body,
.ea-step:nth-child(2) .ea-step-num,
.ea-step:nth-child(2) .ea-step-num::before,
.ea-step:nth-child(2) .ea-step-body h4 { animation-delay: -1.25s; }
.ea-step:nth-child(3) .ea-step-body,
.ea-step:nth-child(3) .ea-step-num,
.ea-step:nth-child(3) .ea-step-num::before,
.ea-step:nth-child(3) .ea-step-body h4 { animation-delay: 1.25s; }
.ea-step:nth-child(4) .ea-step-body,
.ea-step:nth-child(4) .ea-step-num,
.ea-step:nth-child(4) .ea-step-num::before,
.ea-step:nth-child(4) .ea-step-body h4 { animation-delay: 3.75s; }

/* Keyframes — 42%-58% of cycle is the ~1.6s activation window. */
@keyframes ea-step-visit-wrap {
  0%, 42%, 58%, 100% { transform: translateX(0); }
  50% { transform: translateX(4px); }
}
@keyframes ea-step-visit-num {
  0%, 42%, 58%, 100% {
    background: var(--ea-surface);
    border-color: var(--ea-line);
    color: var(--ea-ink-muted);
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(16,185,129,0), 0 0 0 rgba(16,185,129,0);
  }
  50% {
    background: var(--ea-accent);
    border-color: var(--ea-accent);
    color: #fff;
    transform: scale(1.12);
    box-shadow:
      0 0 0 6px rgba(16,185,129,.16),
      0 10px 26px -8px rgba(16,185,129,.55);
  }
}
@keyframes ea-step-visit-title {
  0%, 42%, 58%, 100% { color: var(--ea-ink); }
  50% { color: var(--ea-accent-ink); }
}
/* Ripple: gentle ping that fades in, expands modestly, eases out.
   Keyframe-level timing functions give ease-in on the build-up and
   ease-out on the dissipation so the ring doesn't snap. Max scale
   1.6 (was 2.3) and peak opacity .45 (was .85) — subtler overall. */
@keyframes ea-step-ripple {
  0%, 40% { transform: scale(0.95); opacity: 0; animation-timing-function: ease-in; }
  50%     { transform: scale(1);    opacity: .45; animation-timing-function: ease-out; }
  68%     { transform: scale(1.6);  opacity: 0; }
  100%    { transform: scale(1.6);  opacity: 0; }
}

.ea-step {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 16px;
  align-items: flex-start;
  position: relative;
  padding: 6px 0;
  z-index: 1;              /* lift above the traveling pulse dot (z:0) */
}
.ea-step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--ea-surface);
  border: 1.5px solid var(--ea-line);
  color: var(--ea-ink-muted);
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;                 /* paint above the connector line + pulse dot */
  transition: background .25s, border-color .25s, color .25s, box-shadow .25s;
}

.ea-step-body {
  padding-top: 2px;
  transition: transform .3s ease;
}
.ea-step-body h4 {
  margin: 4px 0 4px;
  font-family: var(--ea-display);
  font-size: 16.5px;
  font-weight: 700;
  color: var(--ea-ink);
  letter-spacing: -0.01em;
  transition: color .25s;
}
.ea-step-body p {
  margin: 0;
  font-size: 14.5px;
  color: var(--ea-ink-soft);
  line-height: 1.55;
}
.ea-step-meta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 10.5px;
  color: var(--ea-accent-ink);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 10px;
  padding: 4px 10px 4px 8px;
  border-radius: 999px;
  background: var(--ea-accent-50);
  border: 1px solid rgba(16,185,129,.22);
}
.ea-step-meta svg {
  width: 11px;
  height: 11px;
  flex: none;
  opacity: .75;
}

/* Respect reduced-motion preferences — keep the design intact, drop
   the moving bits only. Cascade pauses; nodes stay in their idle white
   state rather than flickering. */
@media (prefers-reduced-motion: reduce) {
  .ea-steps::after { animation: none; opacity: 0; }
  .ea-step .ea-step-body,
  .ea-step .ea-step-num,
  .ea-step .ea-step-num::before,
  .ea-step .ea-step-body h4 { animation: none; }
  .ea-step .ea-step-num::before { display: none; }
}

/* --- Partner logos row (grayscale → colour on hover) -------------------- */
.ea-partners-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 48px 56px;
  margin-top: 40px;
}
.ea-partner-logo {
  max-height: 44px;
  width: auto;
  opacity: .55;
  filter: grayscale(1);
  transition: opacity .3s ease, filter .3s ease, transform .3s ease;
}
.ea-partner-logo:hover {
  opacity: 1;
  filter: grayscale(0);
  transform: translateY(-2px);
}

/* --- Filter bar (pill buttons for topics/categories) -------------------- */
.ea-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  padding: 6px 0;
  margin-bottom: 40px;
}
.ea-filter-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 16px;
  border-radius: 999px;
  border: 1px solid var(--ea-line);
  background: var(--ea-surface);
  color: var(--ea-ink-2);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.005em;
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease, color .2s ease;
}
.ea-filter-pill:hover {
  border-color: var(--ea-accent);
  color: var(--ea-accent-ink);
}
.ea-filter-pill.is-active {
  background: var(--ea-ink);
  border-color: var(--ea-ink);
  color: #fff;
}
.ea-filter-pill-count {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px;
  color: var(--ea-ink-muted);
  margin-left: 2px;
}
.ea-filter-pill.is-active .ea-filter-pill-count { color: rgba(255,255,255,.55); }
.ea-filter-pill:hover .ea-filter-pill-count { color: var(--ea-accent); }

/* [hidden] must actually hide — .ea-news-card { display: flex } would
   otherwise override the user-agent default. Blanket rule so future
   JS filters work on any themed component. */
.ea-page [hidden] { display: none !important; }

/* Empty-state row shown by the filter JS when no card matches. */
.ea-filter-empty {
  text-align: center;
  padding: 56px 24px;
  color: var(--ea-ink-soft);
  font-size: 15px;
}
.ea-filter-empty-reset {
  background: none;
  border: 0;
  padding: 0;
  color: var(--ea-accent-ink);
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.ea-filter-empty-reset:hover { color: var(--ea-accent-600); }

/* --- Dispatch detail page (hub-dispatch.blade.php) ---------------------- */
/* Meta row below article title: date · read time · partner-only tag. */
.ea-dispatch-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0 24px;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 12px;
  color: rgba(255,255,255,.7);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.ea-dispatch-meta-dot { color: rgba(255,255,255,.35); }
.ea-dispatch-meta-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  background: rgba(110,231,183,.1);
  border: 1px solid rgba(110,231,183,.3);
  color: #6EE7B7;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}
.ea-dispatch-meta-tag svg { width: 12px; height: 12px; }

/* Hero-scale variant of the card media header, reused on dispatch pages. */
.ea-news-media--hero {
  aspect-ratio: auto;
  padding: 32px;
  border: 1px solid rgba(255,255,255,.08);
}
.ea-news-mark--hero {
  font-size: clamp(96px, 14vw, 148px);
  color: rgba(255,255,255,.15);
  letter-spacing: -0.05em;
}

/* --- Gate: designed "early access" / partner-only notice --------------- */
.ea-gate {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 28px;
  align-items: flex-start;
  padding: 36px 40px;
  background:
    radial-gradient(100% 80% at 100% 0%, rgba(110,231,183,.14), transparent 55%),
    linear-gradient(155deg, #0B0F1A 0%, #0F1822 100%);
  border: 1px solid rgba(110,231,183,.25);
  border-radius: var(--ea-radius-lg);
  color: #ECFDF5;
  position: relative;
  overflow: hidden;
}
.ea-gate::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 18px 18px;
  opacity: .5;
  pointer-events: none;
}
.ea-gate-icon {
  position: relative;
  width: 84px; height: 84px;
  border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(16,185,129,.14);
  border: 1px solid rgba(110,231,183,.4);
  color: #6EE7B7;
}
.ea-gate-icon svg { width: 36px; height: 36px; }
.ea-gate-body { position: relative; }
.ea-gate-eyebrow {
  display: inline-block;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #6EE7B7;
  margin-bottom: 10px;
}
.ea-gate-title {
  font-family: var(--ea-display);
  font-size: clamp(22px, 2.6vw, 28px);
  font-weight: 700;
  letter-spacing: -0.015em;
  color: #fff;
  margin: 0 0 10px;
  line-height: 1.25;
}
.ea-gate-lead {
  margin: 0 0 22px;
  font-size: 15px;
  line-height: 1.65;
  color: rgba(236,253,245,.78);
  max-width: 580px;
}
.ea-gate-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
@media (max-width: 640px) {
  .ea-gate { grid-template-columns: 1fr; gap: 20px; padding: 28px 24px; }
  .ea-gate-icon { width: 60px; height: 60px; border-radius: 14px; }
  .ea-gate-icon svg { width: 26px; height: 26px; }
}

/* --- Featured article (full-width designed card) ------------------------- */
.ea-featured {
  position: relative;
  border-radius: var(--ea-radius-xl);
  overflow: hidden;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 0;
  min-height: 360px;
  background:
    radial-gradient(80% 120% at 100% 0%, rgba(110,231,183,.28), transparent 55%),
    radial-gradient(60% 80% at 0% 100%, rgba(16,185,129,.15), transparent 70%),
    linear-gradient(155deg, #064E3B 0%, #0B3D2E 50%, #021D14 100%);
  color: #fff;
  text-decoration: none;
  transition: transform .35s ease, box-shadow .35s ease;
}
.ea-featured:hover {
  transform: translateY(-4px);
  box-shadow: 0 40px 60px -24px rgba(6,78,59,.45);
}
.ea-featured::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 22px 22px;
  mask-image: linear-gradient(120deg, black 10%, transparent 80%);
  -webkit-mask-image: linear-gradient(120deg, black 10%, transparent 80%);
  pointer-events: none;
  z-index: 0;
}
.ea-featured-content {
  padding: 56px 48px;
  position: relative;
  z-index: 1;
  display: flex; flex-direction: column; justify-content: center;
  gap: 16px;
}
.ea-featured-badge {
  display: inline-flex; align-items: center; gap: 8px;
  align-self: flex-start;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: #A7F3D0;
  padding: 7px 12px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(110,231,183,.4);
  border-radius: 999px;
  backdrop-filter: blur(4px);
}
.ea-featured-badge::before {
  content: '';
  width: 6px; height: 6px; border-radius: 50%;
  background: #34D399;
  box-shadow: 0 0 0 3px rgba(52,211,153,.3);
  animation: ea-pulse 2s infinite;
}
.ea-featured-title {
  font-family: var(--ea-display);
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.1;
  letter-spacing: -0.024em;
  color: #fff;
  margin: 0;
  font-weight: 700;
  max-width: 540px;
  text-wrap: balance;
}
.ea-featured-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11.5px;
  color: rgba(255,255,255,.65);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.ea-featured-meta-dot { opacity: .5; }
.ea-featured-excerpt {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255,255,255,.75);
  max-width: 520px;
  margin: 4px 0 0;
}
.ea-featured-cta {
  display: inline-flex; align-items: center; gap: 8px;
  align-self: flex-start;
  margin-top: 8px;
  padding: 12px 22px;
  background: rgba(255,255,255,.12);
  border: 1.5px solid rgba(255,255,255,.3);
  border-radius: 999px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  transition: background .2s, border-color .2s;
}
.ea-featured:hover .ea-featured-cta {
  background: #fff;
  border-color: #fff;
  color: var(--ea-accent-ink);
}
.ea-featured-cta svg { width: 14px; height: 14px; transition: transform .2s; }
.ea-featured:hover .ea-featured-cta svg { transform: translateX(4px); }

/* Right-side composition — decorative, echoes the dispatch theme */
.ea-featured-visual {
  position: relative;
  z-index: 1;
  min-height: 280px;
}
.ea-featured-visual::after {
  /* Big typographic mark — category letter + vertical emerald accent bar */
  content: '';
  position: absolute;
  right: -8%; top: 50%;
  transform: translateY(-50%);
  width: 260px; height: 260px;
  background:
    radial-gradient(closest-side, rgba(110,231,183,.35), transparent 70%);
  filter: blur(8px);
}
.ea-featured-visual-svg {
  position: absolute;
  inset: 10% 10% 10% 10%;
  width: 80%; height: 80%;
  opacity: .95;
  overflow: visible;
}
.ea-featured-visual-ring {
  fill: none;
  stroke: rgba(110,231,183,.28);
  stroke-width: 1;
  stroke-dasharray: 2 4;
}
.ea-featured-visual-ring--solid {
  stroke: rgba(110,231,183,.72);
  stroke-dasharray: none;
  stroke-width: 1.5;
}
/* Crosshair axes — subtler than the solid ring so ticks + sweep dominate */
.ea-featured-visual-axis {
  stroke: rgba(110,231,183,.14);
  stroke-width: 0.9;
  stroke-dasharray: 1 3;
  fill: none;
}
/* Cardinal tick marks — instrument-feel anchor points */
.ea-featured-visual-ticks line {
  stroke: rgba(110,231,183,.6);
  stroke-width: 1.4;
  stroke-linecap: round;
  fill: none;
}
/* Radar sweep wedge — rotates around the viz centre */
.ea-featured-visual-sweep {
  transform-box: view-box;
  transform-origin: 50% 50%;
  animation: ea-radar-sweep 8s linear infinite;
  mix-blend-mode: screen;
}
@keyframes ea-radar-sweep {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
/* Target blip: solid emerald core + expanding halo */
.ea-featured-visual-blip {
  fill: #A7F3D0;
  filter: drop-shadow(0 0 4px rgba(110,231,183,.9));
}
.ea-featured-visual-blip-halo {
  fill: rgba(110,231,183,.5);
  transform-box: fill-box;
  transform-origin: center;
  animation: ea-radar-blip 2.6s ease-out infinite;
}
@keyframes ea-radar-blip {
  0%   { transform: scale(1);   opacity: .85; }
  80%  { transform: scale(6);   opacity: 0; }
  100% { transform: scale(6);   opacity: 0; }
}

@media (max-width: 900px) {
  .ea-featured { grid-template-columns: 1fr; }
  .ea-featured-content { padding: 40px 32px; }
  .ea-featured-visual { display: none; }
}


.ea-split-body .ea-eyebrow { margin-bottom: 16px; }
.ea-split-title {
  font-family: var(--ea-display);
  font-size: clamp(28px, 3.2vw, 40px);
  line-height: 1.1;
  letter-spacing: -0.022em;
  color: var(--ea-ink);
  margin: 0 0 18px;
  font-weight: 700;
}
.ea-split-text {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ea-ink-soft);
}
.ea-split-text p + p { margin-top: 14px; }

/* --- Prose (for privacy / terms / long-form text) ------------------------ */
.ea-prose {
  max-width: 720px;
  margin: 0 auto;
  font-size: 16.5px;
  line-height: 1.75;
  color: var(--ea-ink);
}
.ea-prose h2 {
  font-family: var(--ea-display);
  font-size: clamp(24px, 2.6vw, 30px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ea-ink);
  margin-top: 2.4em;
  margin-bottom: 0.5em;
  line-height: 1.2;
}
.ea-prose h3 {
  font-family: var(--ea-display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ea-ink);
  margin-top: 2em;
  margin-bottom: 0.4em;
}
.ea-prose h2:first-child, .ea-prose h3:first-child { margin-top: 0; }
.ea-prose p { margin: 0 0 1.1em; color: var(--ea-ink); }
.ea-prose ul, .ea-prose ol { padding-left: 1.4em; margin: 0 0 1.1em; }
.ea-prose ul li, .ea-prose ol li { margin-bottom: 0.5em; line-height: 1.7; }
.ea-prose ul li::marker { color: var(--ea-accent); font-weight: 700; }
.ea-prose a {
  color: var(--ea-accent-600);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  transition: color .2s;
}
.ea-prose a:hover { color: var(--ea-accent-ink); }
.ea-prose blockquote {
  border-left: 3px solid var(--ea-accent);
  padding: 10px 20px;
  background: var(--ea-bg-alt);
  border-radius: 0 8px 8px 0;
  margin: 1.5em 0;
  color: var(--ea-ink-soft);
  font-style: italic;
}
.ea-prose code {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  background: var(--ea-line-soft);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.88em;
  color: var(--ea-ink-2);
}
.ea-prose hr {
  border: 0;
  border-top: 1px solid var(--ea-line);
  margin: 2em 0;
}
.ea-prose-meta {
  font-size: 13px;
  color: var(--ea-ink-soft);
  margin-bottom: 2em;
  padding-bottom: 1em;
  border-bottom: 1px solid var(--ea-line);
  font-family: 'JetBrains Mono', ui-monospace, monospace;
}

/* Anchor offset — sticky header is ~72-80px tall, add margin so that
   TOC jump-links don't land with the heading hidden behind it. */
.ea-prose h2[id],
.ea-prose h3[id] { scroll-margin-top: 100px; }

/* Tables inside prose (cookie declaration). Responsive via wrapper. */
.ea-prose-table-wrap {
  overflow-x: auto;
  margin: 0 0 1.4em;
  border: 1px solid var(--ea-line);
  border-radius: 10px;
  background: var(--ea-surface);
}
.ea-prose-table-wrap table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
  font-size: 13.5px;
  margin: 0;
}
.ea-prose-table-wrap thead th {
  background: var(--ea-line-soft);
  padding: 11px 14px;
  text-align: left;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ea-ink-soft);
  font-weight: 600;
  border-bottom: 1px solid var(--ea-line);
  white-space: nowrap;
}
.ea-prose-table-wrap tbody td {
  padding: 11px 14px;
  vertical-align: top;
  border-bottom: 1px solid var(--ea-line-soft);
  line-height: 1.55;
  color: var(--ea-ink);
}
.ea-prose-table-wrap tbody tr:last-child td { border-bottom: 0; }
.ea-prose-table-wrap tbody td:first-child {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ea-ink);
  white-space: nowrap;
}

/* Legal stamp — version/approval metadata at the top of a policy doc. */
.ea-legal-stamp {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px 24px;
  padding: 20px 26px;
  background: var(--ea-bg-alt);
  border: 1px solid var(--ea-line);
  border-left: 3px solid var(--ea-accent);
  border-radius: 12px;
  margin: 0 0 2.4em;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 13px;
  color: var(--ea-ink);
  line-height: 1.45;
}
.ea-legal-stamp-item { display: flex; flex-direction: column; gap: 2px; }
.ea-legal-stamp-label {
  font-size: 9.5px;
  font-weight: 600;
  color: var(--ea-ink-muted);
  text-transform: uppercase;
  letter-spacing: 0.14em;
}
.ea-legal-stamp-value {
  font-size: 13px;
  font-weight: 600;
  color: var(--ea-ink);
}
@media (max-width: 640px) {
  .ea-legal-stamp { grid-template-columns: 1fr; }
}

/* Cookie-category card (wraps each 'Necessary / Statistics / Marketing'
   section of the cookie declaration). */
.ea-cookie-type {
  background: var(--ea-surface);
  border: 1px solid var(--ea-line);
  border-radius: var(--ea-radius-lg);
  padding: 26px 30px;
  margin: 1.5em 0;
}
.ea-cookie-type-header {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 6px;
}
.ea-cookie-type-title {
  font-family: var(--ea-display);
  font-size: 19px;
  font-weight: 700;
  color: var(--ea-ink);
  letter-spacing: -0.01em;
  margin: 0;
}
.ea-cookie-type-count {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: 999px;
  background: var(--ea-accent-50);
  border: 1px solid rgba(16,185,129,.25);
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px;
  color: var(--ea-accent-ink);
  font-weight: 600;
  letter-spacing: 0.04em;
}
.ea-cookie-type-desc {
  color: var(--ea-ink-soft);
  font-size: 14.5px;
  line-height: 1.6;
  margin: 0 0 1.2em;
}

/* Table of contents panel — hero right-side on /privacy (and future
   long-form docs). Dark glass, scrollable if sections exceed height. */
.ea-toc-panel {
  background:
    radial-gradient(100% 70% at 100% 0%, rgba(16,185,129,.14), transparent 55%),
    linear-gradient(160deg, #14181F 0%, #0A0D13 100%);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 18px;
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  max-height: 440px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(110,231,183,.3) transparent;
}
.ea-toc-panel::-webkit-scrollbar { width: 6px; }
.ea-toc-panel::-webkit-scrollbar-thumb {
  background: rgba(110,231,183,.25);
  border-radius: 999px;
}
.ea-toc-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 9.5px;
  font-weight: 600;
  color: rgba(110,231,183,.7);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  padding: 4px 12px 10px;
}
.ea-toc-label-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #34D399;
  box-shadow: 0 0 0 3px rgba(52,211,153,.18);
  animation: ea-pulse 2s ease-out infinite;
}
.ea-toc-item {
  display: grid;
  grid-template-columns: 28px 1fr 14px;
  gap: 10px;
  align-items: center;
  padding: 8px 12px;
  border-radius: 9px;
  color: rgba(255,255,255,.72);
  text-decoration: none;
  font-size: 13.5px;
  transition: background .25s, color .25s, border-color .25s;
  border: 1px solid transparent;
}
.ea-toc-item:hover {
  background: rgba(255,255,255,.04);
  color: #fff;
  border-color: rgba(110,231,183,.22);
}
.ea-toc-item.is-active {
  background: rgba(16,185,129,.13);
  color: #ECFDF5;
  border-color: rgba(110,231,183,.45);
}
.ea-toc-num {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 10px;
  font-weight: 700;
  color: rgba(110,231,183,.5);
  letter-spacing: 0.08em;
}
.ea-toc-item.is-active .ea-toc-num { color: #6EE7B7; }
.ea-toc-title {
  font-family: var(--ea-display);
  font-weight: 500;
  letter-spacing: -0.005em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.ea-toc-arrow {
  width: 12px; height: 12px;
  color: rgba(110,231,183,.4);
  opacity: 0;
  transition: opacity .25s, transform .25s;
}
.ea-toc-item:hover .ea-toc-arrow,
.ea-toc-item.is-active .ea-toc-arrow {
  opacity: 1;
  transform: translateX(2px);
}

/* --- Form primitives ----------------------------------------------------- */
/* All selectors scoped so they don't collide with legacy .btn styles on
   other pages still using the old Foundation/Bootstrap layouts. */
.ea-form { }
.ea-form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin-bottom: 20px;
}
.ea-form-row--split {
  grid-template-columns: 1fr 1fr;
  column-gap: 20px;
  row-gap: 20px;
}
.ea-form-row--split > .ea-form-row { margin-bottom: 0; }
.ea-form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
  align-items: center;
}

.ea-label {
  font-family: var(--ea-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--ea-ink);
  letter-spacing: -0.005em;
}
.ea-label sup,
.ea-label-required {
  color: var(--ea-accent-600);
  font-size: 0.92em;
  font-weight: 700;
  margin-left: 2px;
}
.ea-label-optional {
  color: var(--ea-ink-muted);
  font-size: 0.88em;
  font-weight: 500;
  margin-left: 6px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.ea-input,
.ea-textarea,
.ea-select {
  width: 100%;
  padding: 13px 16px;
  font: inherit;
  font-size: 15px;
  color: var(--ea-ink);
  background: var(--ea-surface);
  border: 1px solid var(--ea-line);
  border-radius: 12px;
  transition: border-color .18s, box-shadow .18s, background .18s;
  -webkit-appearance: none;
  appearance: none;
  display: block;
}
.ea-input::placeholder,
.ea-textarea::placeholder {
  color: var(--ea-ink-muted);
  opacity: 1;
}
.ea-input:focus,
.ea-textarea:focus,
.ea-select:focus {
  outline: none;
  border-color: var(--ea-accent);
  box-shadow: 0 0 0 4px rgba(16,185,129,.14);
}
.ea-input:disabled,
.ea-textarea:disabled,
.ea-select:disabled {
  background: var(--ea-line-soft);
  color: var(--ea-ink-muted);
  cursor: not-allowed;
}
.ea-textarea {
  resize: vertical;
  min-height: 128px;
  line-height: 1.55;
  font-family: inherit;
}
.ea-select {
  padding-right: 42px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%236B7280' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  cursor: pointer;
}

/* Error state */
.ea-input.is-error,
.ea-textarea.is-error,
.ea-select.is-error {
  border-color: #DC2626;
}
.ea-input.is-error:focus,
.ea-textarea.is-error:focus,
.ea-select.is-error:focus {
  box-shadow: 0 0 0 4px rgba(220,38,38,.14);
}

/* Helper / error text beneath an input */
.ea-helper {
  font-size: 13px;
  color: var(--ea-ink-soft);
  line-height: 1.55;
}
.ea-error {
  font-size: 13px;
  color: #DC2626;
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: 6px;
}
.ea-error::before {
  content: '';
  margin-top: 6px;
  width: 4px; height: 4px;
  background: currentColor;
  border-radius: 50%;
  flex: none;
}

/* Checkbox + radio — styled accent without hiding the native control */
.ea-checkbox,
.ea-radio {
  display: inline-flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 14.5px;
  color: var(--ea-ink);
  line-height: 1.5;
  user-select: none;
}
.ea-checkbox input[type="checkbox"],
.ea-radio input[type="radio"] {
  width: 18px;
  height: 18px;
  margin: 2px 0 0 0;
  accent-color: var(--ea-accent);
  flex: none;
  cursor: pointer;
}

/* Form card wrapper — optional, for pages that want the form visually lifted */
.ea-form-card {
  background: var(--ea-surface);
  border: 1px solid var(--ea-line);
  border-radius: var(--ea-radius-lg);
  padding: 36px;
  box-shadow: var(--ea-shadow-sm);
}

/* Successful-submission notice */
.ea-form-success {
  background: var(--ea-accent-50);
  border: 1px solid rgba(16,185,129,.3);
  color: var(--ea-accent-ink);
  padding: 14px 18px;
  border-radius: 12px;
  font-size: 14.5px;
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 20px;
}
.ea-form-success svg { width: 18px; height: 18px; color: var(--ea-accent); flex: none; }

/* --- Services grid variant for inner pages (3-col, smaller than home) ---- */
.ea-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.ea-services-grid .ea-service {
  padding: 26px 24px 28px;
}
/* 2-across variant — use when there are 4 cards so the row tiles cleanly
   instead of leaving a 3+1 orphan. */
.ea-services-grid--2x2 {
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}
.ea-services-grid--2x2 .ea-service { padding: 32px 32px 34px; }
.ea-services-grid--2x2 .ea-service h3 { font-size: 19px; margin-bottom: 10px; }
.ea-services-grid--2x2 .ea-service p { font-size: 15px; line-height: 1.6; }
.ea-services-grid--2x2 .ea-service-icon { width: 48px; height: 48px; margin-bottom: 18px; }
.ea-services-grid--2x2 .ea-service-icon svg { width: 24px; height: 24px; }
.ea-services-grid .ea-service h3 { font-size: 17px; }
.ea-services-grid .ea-service-icon { width: 42px; height: 42px; }
.ea-services-grid .ea-service-icon svg,
.ea-services-grid .ea-service-icon img { width: 22px; height: 22px; }

/* --- Responsive for inner-page primitives -------------------------------- */
@media (max-width: 900px) {
  .ea-split { grid-template-columns: 1fr; gap: 40px; }
  .ea-split--media-left .ea-split-media { order: 0; }
  .ea-split-media { aspect-ratio: 16 / 10; }
  .ea-form-row--split { grid-template-columns: 1fr; }
  .ea-services-grid { grid-template-columns: repeat(2, 1fr); }
  .ea-page-hero { padding: 56px 0 48px; }
  .ea-viz.ea-viz--integration { min-height: 400px; padding: 18px; }
  .ea-int-tier { padding: 12px 14px; }
  .ea-int-tier-title { font-size: 14.5px; }
  .ea-int-tier--hub .ea-int-tier-title { font-size: 16px; }
  .ea-int-connector { height: 30px; }
  .ea-int-resource-label { font-size: 9.5px; }
  .ea-int-resource-metric { font-size: 10.5px; }
  .ea-services-grid--2x2 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .ea-services-grid { grid-template-columns: 1fr; }
  .ea-form-card { padding: 24px; }
  .ea-page-hero-title { font-size: clamp(30px, 7vw, 40px); }
}

/* --- Focus rings (accessibility) ----------------------------------------- */
.ea-page :focus { outline: none; }
.ea-page a:focus-visible,
.ea-page button:focus-visible,
.ea-page .ea-btn:focus-visible,
.ea-page .ea-news-card:focus-visible,
.ea-page .ea-tile:focus-visible,
.ea-page .ea-service:focus-visible,
.ea-page .ea-brand-card:focus-visible,
.ea-page .ea-cat:focus-visible,
.ea-page .ea-nav-links a:focus-visible,
.ea-page .ea-social-link:focus-visible {
  outline: 2px solid var(--ea-accent);
  outline-offset: 3px;
  border-radius: 8px;
}
.ea-hero a:focus-visible,
.ea-footer a:focus-visible,
.ea-footer button:focus-visible {
  outline-color: #6EE7B7;
}

/* --- Reveal animations ---------------------------------------------------- */
.ea-reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.ea-reveal.is-in { opacity: 1; transform: none; }
.ea-reveal-delay-1 { transition-delay: .08s; }
.ea-reveal-delay-2 { transition-delay: .16s; }
.ea-reveal-delay-3 { transition-delay: .24s; }
.ea-reveal-delay-4 { transition-delay: .32s; }

@media (prefers-reduced-motion: reduce) {
  .ea-reveal { opacity: 1; transform: none; transition: none; }
  .ea-brand-track { animation: none; }
  .ea-hero-eyebrow::before { animation: none; }
}

/* --- Responsive ----------------------------------------------------------- */
@media (max-width: 1100px) {
  .ea-services { grid-template-columns: repeat(2, 1fr); }
  .ea-footer-inner { grid-template-columns: 1.6fr 1fr 1.2fr; gap: 40px; }
  .ea-footer-col--company { grid-column: 1 / -1; order: 5; }
  .ea-hero-inner { grid-template-columns: 1fr; gap: 48px; padding: 72px var(--ea-gutter); }
  .ea-hero-mosaic { max-width: 480px; margin: 0 auto; }
}
@media (max-width: 900px) {
  .ea-section { padding: 80px 0; }
  .ea-nav-links { display: none; }
  .ea-burger { display: inline-flex; }
  .ea-nav-actions .ea-nav-login { display: none; }
  .ea-news-grid { grid-template-columns: repeat(2, 1fr); }
  .ea-stats { grid-template-columns: repeat(2, 1fr); }
  .ea-stat { border-right: 0; border-bottom: 1px solid var(--ea-line); }
  .ea-stat:nth-child(2) { border-right: 0; }
  .ea-stat:nth-last-child(-n+2) { border-bottom: 0; }
  .ea-stat:nth-child(odd) { border-right: 1px solid var(--ea-line); }
  .ea-tiles { grid-template-columns: 1fr; }
  .ea-footer-inner { grid-template-columns: 1fr 1fr; }
  .ea-footer-col--brand { grid-column: 1 / -1; }
  .ea-hero-mosaic { grid-template-columns: repeat(3, 1fr); max-width: 100%; aspect-ratio: 3 / 2; }
}
@media (max-width: 640px) {
  .ea-section { padding: 64px 0; }
  .ea-services { grid-template-columns: 1fr; }
  .ea-news-grid { grid-template-columns: 1fr; }
  .ea-stats { grid-template-columns: 1fr; }
  .ea-stat { border-right: 0 !important; border-bottom: 1px solid var(--ea-line); }
  .ea-stat:last-child { border-bottom: 0; }
  .ea-footer-inner { grid-template-columns: 1fr; gap: 36px; }
  .ea-footer-bottom { justify-content: center; text-align: center; }
  .ea-hero-ctas { width: 100%; }
  .ea-hero-ctas .ea-btn { flex: 1; justify-content: center; }
  .ea-cta-banner { padding: 56px 24px; }
}
