/* ================================================================
   Expressive Portal — theme.css
   Palette: Deep slate + Electric cyan + Soft white
   Font: Plus Jakarta Sans
================================================================ */

/* ── Tokens ── */
:root {
  /* Base */
  --bg:        #080c14;
  --bg2:       #0d1220;
  --bg3:       #111827;
  --bg4:       #1a2236;

  /* Borders */
  --line:      rgba(255,255,255,0.06);
  --line2:     rgba(255,255,255,0.1);
  --line3:     rgba(255,255,255,0.16);

  /* Type */
  --text:      #f1f5f9;
  --muted:     #94a3b8;
  --faint:     #475569;

  /* Accent — electric cyan */
  --cyan:      #06b6d4;
  --cyan2:     #22d3ee;
  --cyan-dim:  rgba(6,182,212,0.12);
  --cyan-glow: rgba(6,182,212,0.22);

  /* Secondary accent — indigo */
  --indigo:    #6366f1;
  --indigo-dim:rgba(99,102,241,0.12);

  /* Status */
  --green:     #10b981;
  --amber:     #f59e0b;
  --red:       #ef4444;

  /* Radius */
  --r-sm:  6px;
  --r-md:  10px;
  --r-lg:  16px;
  --r-xl:  24px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
h1,h2,h3,h4,h5 {
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* Subtle grid background */
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image:
    linear-gradient(rgba(6,182,212,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(6,182,212,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--bg4); border-radius: 3px; }

/* ── Layout ── */
.ep-wrap { max-width: 1160px; margin: 0 auto; padding: 0 2rem; position: relative; z-index: 1; }
.ep-section { padding: 6rem 2rem; position: relative; z-index: 1; }
.ep-section--dark  { background: var(--bg2); }
.ep-section--darker{ background: var(--bg3); }

/* ── Typography helpers ── */
.ep-eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--cyan); margin-bottom: 1rem;
}
.ep-eyebrow::before {
  content: '';
  width: 20px; height: 2px;
  background: var(--cyan);
  border-radius: 1px;
  flex-shrink: 0;
}

.ep-h1 { font-size: clamp(2.6rem, 5.5vw, 5rem); }
.ep-h2 { font-size: clamp(2rem, 3.5vw, 3.2rem); }
.ep-h3 { font-size: 1.35rem; font-weight: 700; }

.ep-lead {
  font-size: 1.1rem; color: var(--muted);
  font-weight: 400; line-height: 1.75;
  max-width: 540px;
}

.ep-accent { color: var(--cyan); }
.ep-gradient {
  background: linear-gradient(135deg, var(--cyan), var(--indigo));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Buttons ── */
.ep-btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.7rem 1.6rem; border-radius: var(--r-md);
  font-family: inherit; font-size: 0.9rem; font-weight: 600;
  cursor: pointer; border: none; transition: all 0.18s;
  letter-spacing: 0.01em; white-space: nowrap;
}
.ep-btn-primary {
  background: var(--cyan);
  color: var(--bg);
  box-shadow: 0 0 20px var(--cyan-glow);
}
.ep-btn-primary:hover {
  background: var(--cyan2);
  box-shadow: 0 0 32px var(--cyan-glow);
  transform: translateY(-2px);
}
.ep-btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line2);
}
.ep-btn-outline:hover {
  border-color: var(--cyan);
  color: var(--cyan);
}
.ep-btn-ghost {
  background: var(--bg4);
  color: var(--text);
  border: 1px solid var(--line);
}
.ep-btn-ghost:hover { border-color: var(--line3); background: var(--bg3); }
.ep-btn-lg { padding: 0.9rem 2rem; font-size: 1rem; border-radius: var(--r-lg); }
.ep-btn-sm { padding: 0.45rem 1rem; font-size: 0.8rem; }
.ep-btn-full { width: 100%; justify-content: center; }

/* ── Badges / tags ── */
.ep-badge {
  display: inline-flex; align-items: center; gap: 0.35rem;
  padding: 0.25rem 0.75rem; border-radius: 999px;
  font-size: 0.72rem; font-weight: 600;
}
.ep-badge-cyan  { background: var(--cyan-dim);   color: var(--cyan);   border: 1px solid rgba(6,182,212,0.2); }
.ep-badge-green { background: rgba(16,185,129,0.12); color: var(--green);  border: 1px solid rgba(16,185,129,0.2); }
.ep-badge-amber { background: rgba(245,158,11,0.12); color: var(--amber);  border: 1px solid rgba(245,158,11,0.2); }
.ep-badge-faint { background: var(--bg4); color: var(--muted); border: 1px solid var(--line); }
.ep-badge-dot { width: 6px; height: 6px; border-radius: 50%; background: currentColor; }

/* ── Cards ── */
.ep-card {
  background: var(--bg2);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  transition: border-color 0.2s, transform 0.2s;
}
.ep-card:hover { border-color: var(--line2); transform: translateY(-3px); }
.ep-card--glow:hover {
  border-color: rgba(6,182,212,0.25);
  box-shadow: 0 0 32px var(--cyan-dim);
}

/* ── Divider ── */
.ep-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line2), transparent);
  margin: 0;
  border: none;
}

/* ── Nav ─────────────────────────────────────────────────────────────────── */
.ep-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  padding: 1.25rem 3rem;
  display: flex; align-items: center; gap: 3rem;
  transition: all 0.3s;
}
.ep-nav.ep-nav--scrolled {
  background: rgba(8,12,20,0.9);
  backdrop-filter: blur(20px) saturate(1.5);
  border-bottom: 1px solid var(--line);
  padding: 0.9rem 3rem;
}

.ep-nav-brand {
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 1.1rem; font-weight: 800;
  letter-spacing: -0.02em; white-space: nowrap;
}
.ep-nav-brand svg { flex-shrink: 0; }

.ep-nav-menu {
  display: flex; gap: 0.25rem; list-style: none; flex: 1;
}
.ep-nav-menu a {
  display: block; padding: 0.4rem 0.9rem;
  font-size: 0.875rem; font-weight: 500;
  color: var(--muted); border-radius: var(--r-sm);
  transition: all 0.15s;
}
.ep-nav-menu a:hover { color: var(--text); background: var(--bg4); }
.ep-nav-menu .current-menu-item a,
.ep-nav-menu a.active { color: var(--cyan); }

.ep-nav-end { display: flex; align-items: center; gap: 0.75rem; margin-left: auto; }

.ep-nav-login {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.45rem 1rem;
  background: var(--bg4); border: 1px solid var(--line2);
  border-radius: var(--r-md);
  font-size: 0.85rem; font-weight: 600;
  color: var(--text); transition: all 0.15s;
}
.ep-nav-login:hover { border-color: var(--cyan); color: var(--cyan); }
.ep-nav-login svg { opacity: 0.6; }

.ep-hamburger {
  display: none; background: none; border: none; cursor: pointer;
  padding: 0.25rem; margin-left: auto;
}
.ep-hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--text); border-radius: 1px; margin: 5px 0;
  transition: all 0.3s;
}
.ep-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.ep-hamburger.open span:nth-child(2) { opacity: 0; }
.ep-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO ─────────────────────────────────────────────────────────────────── */
.ep-hero {
  min-height: 100vh;
  padding: 9rem 3rem 5rem;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
}

/* Radial glow */
.ep-hero::after {
  content: '';
  position: absolute;
  width: 900px; height: 600px;
  background: radial-gradient(ellipse at center,
    rgba(6,182,212,0.1) 0%,
    rgba(99,102,241,0.06) 40%,
    transparent 70%);
  top: -100px; left: 50%; transform: translateX(-30%);
  pointer-events: none;
}

.ep-hero-inner {
  max-width: 1160px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center; position: relative; z-index: 1;
}

.ep-hero-text .ep-h1 { margin-bottom: 1.5rem; }
.ep-hero-text .ep-lead { margin-bottom: 2.5rem; }

.ep-hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.ep-hero-meta {
  display: flex; gap: 2rem;
  margin-top: 2.5rem; padding-top: 2.5rem;
  border-top: 1px solid var(--line);
}
.ep-meta-item strong {
  display: block;
  font-size: 1.4rem; font-weight: 800;
  color: var(--cyan); letter-spacing: -0.02em;
}
.ep-meta-item span { font-size: 0.8rem; color: var(--faint); }

/* Portal mockup */
.ep-hero-visual { position: relative; }

.ep-mockup {
  background: var(--bg2);
  border: 1px solid var(--line2);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.03),
    0 32px 72px rgba(0,0,0,0.6),
    0 0 80px var(--cyan-dim);
  animation: ep-float 7s ease-in-out infinite;
}
@keyframes ep-float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.ep-mockup-bar {
  background: var(--bg3);
  padding: 0.7rem 1.25rem;
  display: flex; align-items: center; gap: 0.5rem;
  border-bottom: 1px solid var(--line);
}
.ep-mockup-dots { display: flex; gap: 0.4rem; }
.ep-dot { width: 9px; height: 9px; border-radius: 50%; }
.ep-dot-r { background: #ff5f57; }
.ep-dot-y { background: #ffbd2e; }
.ep-dot-g { background: #28c840; }
.ep-mockup-url {
  flex: 1; background: var(--bg4); border-radius: 5px;
  padding: 0.25rem 0.75rem; font-size: 0.7rem;
  color: var(--faint); font-family: 'JetBrains Mono', monospace;
  margin: 0 0.75rem;
}

.ep-mockup-body {
  display: grid; grid-template-columns: 200px 1fr;
  min-height: 380px;
}
.ep-mock-sidebar {
  background: rgba(0,0,0,0.3);
  border-right: 1px solid var(--line);
  padding: 1.25rem 0.75rem;
  display: flex; flex-direction: column; gap: 0.2rem;
}
.ep-mock-section {
  font-size: 0.58rem; text-transform: uppercase;
  letter-spacing: 0.12em; color: var(--faint);
  padding: 0.75rem 0.75rem 0.2rem;
}
.ep-mock-item {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.45rem 0.75rem; border-radius: var(--r-sm);
  font-size: 0.72rem; color: var(--faint);
}
.ep-mock-item.on { background: var(--cyan-dim); color: var(--cyan); }
.ep-mock-item-ico {
  width: 14px; height: 14px; background: currentColor;
  border-radius: 3px; opacity: 0.5; flex-shrink: 0;
}

.ep-mock-main {
  padding: 1.25rem;
  display: flex; flex-direction: column; gap: 0.9rem;
}
.ep-mock-hi { font-size: 0.95rem; font-weight: 700; }
.ep-mock-hi-sub { font-size: 0.65rem; color: var(--faint); margin-top: 0.1rem; }

.ep-mock-kpis { display: grid; grid-template-columns: repeat(4,1fr); gap: 0.6rem; }
.ep-kpi {
  background: var(--bg3); border: 1px solid var(--line);
  border-radius: var(--r-sm); padding: 0.65rem;
}
.ep-kpi-val { font-size: 1.1rem; font-weight: 800; font-family: 'JetBrains Mono', monospace; }
.ep-kpi-lbl { font-size: 0.58rem; color: var(--faint); margin-top: 0.1rem; }

.ep-mock-rows { display: flex; flex-direction: column; gap: 0.45rem; }
.ep-mock-row {
  background: var(--bg3); border: 1px solid var(--line);
  border-radius: var(--r-sm); padding: 0.55rem 0.75rem;
  display: flex; align-items: center; gap: 0.6rem; font-size: 0.68rem;
}
.ep-row-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.ep-row-name { flex: 1; font-weight: 500; }
.ep-row-bar { width: 50px; height: 3px; background: var(--line); border-radius: 2px; overflow: hidden; }
.ep-row-fill { height: 100%; background: linear-gradient(90deg, var(--cyan), var(--indigo)); }

/* Floating chips on mockup */
.ep-chip {
  position: absolute;
  background: var(--bg2); border: 1px solid var(--line2);
  border-radius: var(--r-md); padding: 0.6rem 0.9rem;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  font-size: 0.78rem; font-weight: 600;
  white-space: nowrap;
}
.ep-chip-1 { top: -18px; right: -18px; }
.ep-chip-2 { bottom: -18px; left: -18px; }
.ep-chip-cyan { border-color: rgba(6,182,212,0.3); color: var(--cyan); }
.ep-chip-green { border-color: rgba(16,185,129,0.3); color: var(--green); }

/* ── PAGE HERO (inner pages) ─────────────────────────────────────────────── */
.ep-page-hero {
  padding: 14rem 2rem 5rem;
  text-align: center;
  position: relative; overflow: hidden;
  background: var(--bg);
}
.ep-page-hero::after {
  content: '';
  position: absolute;
  width: 600px; height: 400px;
  background: radial-gradient(ellipse at center, var(--cyan-dim) 0%, transparent 70%);
  top: -50px; left: 50%; transform: translateX(-50%);
  pointer-events: none;
}
.ep-page-hero .ep-h1 { max-width: 760px; margin: 0 auto 1.25rem; font-size: clamp(2rem,4vw,3.5rem); }
.ep-page-hero .ep-lead { margin: 0 auto; text-align: center; }

/* ── FEATURE GRID ─────────────────────────────────────────────────────────── */
.ep-feat-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1px; background: var(--line);
  border: 1px solid var(--line); border-radius: var(--r-xl);
  overflow: hidden;
}
.ep-feat-cell {
  background: var(--bg2); padding: 2rem;
  transition: background 0.2s;
  position: relative;
}
.ep-feat-cell:hover { background: var(--bg3); }
.ep-feat-cell::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  opacity: 0; transition: opacity 0.2s;
}
.ep-feat-cell:hover::before { opacity: 0.6; }
.ep-feat-ico {
  width: 44px; height: 44px; border-radius: var(--r-md);
  background: var(--cyan-dim); border: 1px solid rgba(6,182,212,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; margin-bottom: 1.25rem;
}
.ep-feat-cell h3 { font-size: 1rem; margin-bottom: 0.45rem; }
.ep-feat-cell p { font-size: 0.875rem; color: var(--muted); line-height: 1.65; }

/* ── DATA TABLE ───────────────────────────────────────────────────────────── */
.ep-table-wrap {
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.ep-table {
  width: 100%; border-collapse: collapse;
  font-size: 0.875rem;
}
.ep-table thead tr {
  background: var(--bg3);
  border-bottom: 1px solid var(--line2);
}
.ep-table th {
  padding: 0.9rem 1.25rem; text-align: left;
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--faint);
}
.ep-table th:not(:first-child) { text-align: center; }
.ep-table td {
  padding: 0.9rem 1.25rem;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}
.ep-table td:not(:first-child) { text-align: center; }
.ep-table tbody tr:last-child td { border-bottom: none; }
.ep-table tbody tr:hover td { background: var(--bg3); }
.ep-table .ep-t-feature { font-weight: 500; color: var(--text); }
.ep-table .ep-t-check { color: var(--cyan); font-size: 1rem; }
.ep-table .ep-t-cross { color: var(--faint); }
.ep-table .ep-t-highlight { color: var(--text); font-weight: 600; }
.ep-table th.col-pop { color: var(--cyan); }
.ep-table td.col-pop { background: rgba(6,182,212,0.03); }

/* ── COMPARISON TABLE ─────────────────────────────────────────────────────── */
.ep-compare-wrap {
  border: 1px solid var(--line);
  border-radius: var(--r-xl); overflow: hidden;
}
.ep-compare-header {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  background: var(--bg3);
  border-bottom: 1px solid var(--line2);
  padding: 1rem 1.5rem;
  gap: 1rem; align-items: center;
}
.ep-ch-label { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--faint); }
.ep-ch-plan { text-align: center; font-weight: 700; font-size: 0.9rem; }
.ep-ch-plan.pop { color: var(--cyan); }
.ep-compare-row {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  padding: 0.85rem 1.5rem; gap: 1rem; align-items: center;
  border-bottom: 1px solid var(--line);
  transition: background 0.15s;
}
.ep-compare-row:last-child { border-bottom: none; }
.ep-compare-row:hover { background: var(--bg3); }
.ep-cr-name { font-size: 0.875rem; font-weight: 500; color: var(--text); }
.ep-cr-name small { display: block; font-size: 0.75rem; color: var(--faint); font-weight: 400; margin-top: 0.1rem; }
.ep-cr-val { text-align: center; font-size: 0.875rem; color: var(--muted); }
.ep-cr-val.pop { color: var(--text); font-weight: 600; }
.ep-cr-yes { color: var(--cyan); font-size: 1rem; }
.ep-cr-no  { color: var(--faint); }

/* ── PRICING ──────────────────────────────────────────────────────────────── */
.ep-pricing-grid {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 1.5rem; align-items: start;
}
.ep-price-card {
  background: var(--bg2); border: 1px solid var(--line);
  border-radius: var(--r-xl); padding: 2.25rem;
  position: relative; transition: transform 0.2s;
}
.ep-price-card:hover { transform: translateY(-5px); }
.ep-price-card.ep-pop {
  border-color: rgba(6,182,212,0.3);
  background: linear-gradient(160deg, rgba(6,182,212,0.05) 0%, var(--bg2) 50%);
  box-shadow: 0 0 48px var(--cyan-dim), 0 0 0 1px rgba(6,182,212,0.1);
}
.ep-pop-pill {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(90deg, var(--cyan), var(--indigo));
  color: var(--bg); font-size: 0.65rem; font-weight: 800;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.25rem 0.9rem; border-radius: 999px;
  white-space: nowrap;
}
.ep-tier-name {
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--faint); margin-bottom: 0.75rem;
}
.ep-price-val {
  display: flex; align-items: baseline; gap: 0.15rem;
  margin-bottom: 0.35rem;
}
.ep-price-sym { font-size: 1.1rem; font-weight: 600; color: var(--muted); margin-top: 0.4rem; }
.ep-price-num { font-size: 3.5rem; font-weight: 800; letter-spacing: -0.04em; line-height: 1; }
.ep-price-per { font-size: 0.85rem; color: var(--muted); }
.ep-price-desc { font-size: 0.85rem; color: var(--muted); margin-bottom: 1.75rem; line-height: 1.6; }

.ep-price-features { list-style: none; margin-bottom: 2rem; display: flex; flex-direction: column; gap: 0.65rem; }
.ep-price-features li { font-size: 0.875rem; display: flex; align-items: flex-start; gap: 0.6rem; color: var(--muted); }
.ep-price-features li .chk { color: var(--cyan); font-weight: 700; flex-shrink: 0; margin-top: 0.05rem; }
.ep-price-features li.off { color: var(--faint); }
.ep-price-features li.off .chk { color: var(--faint); content: '–'; }

/* WL card */
.ep-wl-card { display: flex; flex-direction: column; }
.ep-wl-icon { font-size: 2rem; margin-bottom: 1rem; }
.ep-wl-title { font-size: 1.5rem; font-weight: 800; margin-bottom: 0.5rem; }
.ep-wl-desc { font-size: 0.9rem; color: var(--muted); flex: 1; line-height: 1.7; margin-bottom: 1.75rem; }
.ep-wl-perks { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; margin-bottom: 2rem; }
.ep-wl-perks li { font-size: 0.875rem; color: var(--muted); display: flex; align-items: center; gap: 0.6rem; }
.ep-wl-perks li::before { content: '◆'; font-size: 0.45rem; color: var(--cyan); flex-shrink: 0; }

/* ── STEPS ────────────────────────────────────────────────────────────────── */
.ep-steps { display: flex; flex-direction: column; gap: 0; }
.ep-step {
  display: grid; grid-template-columns: 60px 1fr;
  gap: 1.5rem; position: relative;
  padding-bottom: 3rem;
}
.ep-step:last-child { padding-bottom: 0; }
.ep-step::before {
  content: '';
  position: absolute;
  left: 29px; top: 60px; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--cyan-dim), transparent);
}
.ep-step:last-child::before { display: none; }

.ep-step-num {
  width: 60px; height: 60px; flex-shrink: 0;
  background: var(--bg3); border: 1px solid var(--line2);
  border-radius: var(--r-lg);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; font-weight: 800; color: var(--cyan);
  font-family: 'JetBrains Mono', monospace;
  position: relative; z-index: 1;
}
.ep-step-content { padding-top: 0.9rem; }
.ep-step-content h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }
.ep-step-content p { font-size: 0.9rem; color: var(--muted); line-height: 1.75; }

/* ── STATS ROW ────────────────────────────────────────────────────────────── */
.ep-stats-row {
  display: grid; grid-template-columns: repeat(4,1fr);
  border: 1px solid var(--line); border-radius: var(--r-xl);
  overflow: hidden;
}
.ep-stat-cell {
  padding: 2rem; text-align: center;
  border-right: 1px solid var(--line);
}
.ep-stat-cell:last-child { border-right: none; }
.ep-stat-val {
  font-size: 2.5rem; font-weight: 800;
  letter-spacing: -0.03em; color: var(--cyan);
  font-family: 'JetBrains Mono', monospace;
  display: block;
}
.ep-stat-lbl { font-size: 0.85rem; color: var(--muted); margin-top: 0.25rem; display: block; }

/* ── TESTIMONIAL ──────────────────────────────────────────────────────────── */
.ep-testimonial {
  background: var(--bg2);
  border: 1px solid var(--line2);
  border-radius: var(--r-xl); padding: 2.5rem;
  position: relative;
}
.ep-testimonial::before {
  content: '"';
  position: absolute; top: 1.5rem; left: 2rem;
  font-size: 5rem; line-height: 1;
  color: var(--cyan-dim);
  font-family: serif;
}
.ep-testimonial p { font-size: 1.1rem; line-height: 1.75; color: var(--text); position: relative; z-index: 1; margin-bottom: 1.5rem; }
.ep-t-author { display: flex; align-items: center; gap: 0.75rem; }
.ep-t-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--indigo));
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.875rem; color: var(--bg);
}
.ep-t-name { font-weight: 700; font-size: 0.9rem; }
.ep-t-role { font-size: 0.8rem; color: var(--faint); }

/* ── ACCORDION ────────────────────────────────────────────────────────────── */
.ep-accordion { display: flex; flex-direction: column; gap: 0.5rem; }
.ep-acc-item {
  background: var(--bg2); border: 1px solid var(--line);
  border-radius: var(--r-md); overflow: hidden;
}
.ep-acc-trigger {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem 1.5rem; background: none; border: none;
  color: var(--text); font-family: inherit; font-size: 0.95rem; font-weight: 600;
  cursor: pointer; text-align: left; gap: 1rem;
  transition: color 0.15s;
}
.ep-acc-trigger:hover { color: var(--cyan); }
.ep-acc-icon { font-size: 1.25rem; color: var(--faint); transition: transform 0.2s; flex-shrink: 0; }
.ep-acc-item.open .ep-acc-icon { transform: rotate(45deg); color: var(--cyan); }
.ep-acc-body {
  padding: 0 1.5rem; max-height: 0; overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.ep-acc-item.open .ep-acc-body { padding: 0 1.5rem 1.25rem; max-height: 300px; }
.ep-acc-body p { font-size: 0.9rem; color: var(--muted); line-height: 1.75; }

/* ── LOGIN MODAL ──────────────────────────────────────────────────────────── */
.ep-modal-overlay {
  position: fixed; inset: 0; z-index: 900;
  background: rgba(8,12,20,0.85);
  backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  padding: 2rem;
  opacity: 0; pointer-events: none;
  transition: opacity 0.2s;
}
.ep-modal-overlay.open { opacity: 1; pointer-events: all; }

.ep-modal {
  background: var(--bg2);
  border: 1px solid var(--line2);
  border-radius: var(--r-xl);
  padding: 2.5rem;
  width: 100%; max-width: 420px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.04);
  transform: translateY(20px) scale(0.98);
  transition: transform 0.25s ease;
}
.ep-modal-overlay.open .ep-modal { transform: translateY(0) scale(1); }

.ep-modal-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 1.75rem;
}
.ep-modal-head h2 { font-size: 1.35rem; }
.ep-modal-close {
  background: var(--bg4); border: 1px solid var(--line);
  border-radius: var(--r-sm); width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); cursor: pointer; font-size: 1.1rem;
  transition: all 0.15s;
}
.ep-modal-close:hover { border-color: var(--line3); color: var(--text); }

.ep-field { margin-bottom: 1.1rem; }
.ep-field label {
  display: block; font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--faint); margin-bottom: 0.4rem;
}
.ep-field input {
  width: 100%;
  background: var(--bg3); border: 1px solid var(--line);
  border-radius: var(--r-md); padding: 0.8rem 1rem;
  color: var(--text); font-family: inherit; font-size: 0.9rem;
  outline: none; transition: border-color 0.15s, box-shadow 0.15s;
}
.ep-field input:focus {
  border-color: rgba(6,182,212,0.4);
  box-shadow: 0 0 0 3px rgba(6,182,212,0.08);
}
.ep-field input::placeholder { color: var(--faint); }

.ep-login-submit {
  width: 100%; padding: 0.9rem;
  background: var(--cyan); color: var(--bg);
  border: none; border-radius: var(--r-md);
  font-family: inherit; font-size: 0.95rem; font-weight: 700;
  cursor: pointer; transition: all 0.2s;
  margin-top: 0.25rem;
  box-shadow: 0 0 20px var(--cyan-glow);
}
.ep-login-submit:hover { background: var(--cyan2); transform: translateY(-1px); }

.ep-login-err {
  background: rgba(239,68,68,0.08); border: 1px solid rgba(239,68,68,0.2);
  color: #fca5a5; padding: 0.7rem 1rem;
  border-radius: var(--r-sm); font-size: 0.85rem;
  margin-top: 0.75rem; display: none;
}
.ep-login-err.show { display: block; }
.ep-login-links {
  text-align: center; font-size: 0.8rem; color: var(--faint); margin-top: 1.25rem;
}
.ep-login-links a { color: var(--cyan); }
.ep-login-links a:hover { text-decoration: underline; }

/* ── FOOTER ───────────────────────────────────────────────────────────────── */
.ep-footer {
  background: var(--bg2);
  border-top: 1px solid var(--line);
  padding: 4rem 3rem 2rem;
}
.ep-footer-inner {
  max-width: 1160px; margin: 0 auto;
}
.ep-footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem; margin-bottom: 3rem;
}
.ep-footer-brand h4 {
  font-size: 1.1rem; margin-bottom: 0.6rem;
  display: flex; align-items: center; gap: 0.5rem;
}
.ep-footer-brand p { font-size: 0.875rem; color: var(--muted); line-height: 1.7; max-width: 280px; }
.ep-footer-col h5 { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--faint); margin-bottom: 1rem; }
.ep-footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.ep-footer-col ul a { font-size: 0.875rem; color: var(--muted); transition: color 0.15s; }
.ep-footer-col ul a:hover { color: var(--cyan); }
.ep-footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 0.75rem;
}
.ep-footer-copy { font-size: 0.8rem; color: var(--faint); }
.ep-footer-legal { display: flex; gap: 1.5rem; }
.ep-footer-legal a { font-size: 0.8rem; color: var(--faint); transition: color 0.15s; }
.ep-footer-legal a:hover { color: var(--muted); }

/* ── WP PORTAL PAGES ──────────────────────────────────────────────────────── */
.ep-portal-wrap { padding: 9rem 2rem 5rem; min-height: 100vh; }
.ep-portal-inner { max-width: 1160px; margin: 0 auto; }

/* Portal page top padding */
.ep-portal-page { padding-top: 80px; }

/* ── RESPONSIVE ───────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .ep-nav { padding: 1rem 1.5rem; }
  .ep-nav.ep-nav--scrolled { padding: 0.75rem 1.5rem; }
  .ep-nav-menu, .ep-nav-end .ep-btn { display: none; }
  .ep-hamburger { display: block; }
  .ep-nav-end { gap: 0.5rem; }
  .ep-hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .ep-hero { padding: 8rem 2rem 5rem; }
  .ep-pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .ep-footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .ep-stats-row { grid-template-columns: 1fr 1fr; }
  .ep-stat-cell:nth-child(2) { border-right: none; }
  .ep-stat-cell:nth-child(3) { border-top: 1px solid var(--line); }
  .ep-stat-cell:nth-child(4) { border-top: 1px solid var(--line); border-right: none; }
}
@media (max-width: 768px) {
  .ep-feat-grid { grid-template-columns: 1fr 1fr; }
  .ep-mockup-body { grid-template-columns: 1fr; }
  .ep-mock-sidebar { display: none; }
  .ep-mock-kpis { grid-template-columns: 1fr 1fr; }
  .ep-chip { display: none; }
  .ep-compare-header, .ep-compare-row { grid-template-columns: 1.5fr 1fr 1fr; }
  .ep-compare-header .ep-ch-plan:last-child,
  .ep-compare-row .ep-cr-val:last-child { display: none; }
  .ep-footer-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .ep-feat-grid { grid-template-columns: 1fr; }
  .ep-stats-row { grid-template-columns: 1fr 1fr; }
  section, .ep-section { padding: 4rem 1.25rem; }
  .ep-hero { padding: 7rem 1.25rem 4rem; }
}

/* ── WordPress body / admin bar fixes ──────────────────────────────────── */

/* Remove default WP body padding and background */
body.page,
body.home,
body.front-page {
  background: var(--bg) !important;
}

/* Kill the white content wrapper some themes/WP adds */
.wp-site-blocks,
.site,
.site-content,
.entry-content,
#content,
#primary,
#main,
.main-content {
  background: transparent !important;
  max-width: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* Admin bar offset */
.admin-bar .ep-nav {
  top: 32px;
}
@media screen and (max-width: 782px) {
  .admin-bar .ep-nav { top: 46px; }
}

/* Inner pages — push entire body below fixed nav */
body.ep-inner-page {
  padding-top: 80px !important;
}
.admin-bar body.ep-inner-page,
body.admin-bar.ep-inner-page {
  padding-top: 112px !important;
}

/* Page hero on inner pages */
.ep-page-hero {
  padding-top: 5rem !important;
  padding-bottom: 5rem !important;
}
.ep-hero,
.ep-page-hero,
.ep-section,
.ep-footer,
.trust-bar,
.cta-strip {
  width: 100%;
  max-width: none;
}

/* ── Kill any remaining WordPress content box wrappers ─────────────────── */
.ep-full-width #page,
.ep-full-width #content,
.ep-full-width #primary,
.ep-full-width #main,
.ep-full-width .site,
.ep-full-width .site-content,
.ep-full-width .hentry,
.ep-full-width .entry-content,
.ep-full-width article.page {
  background: transparent !important;
  max-width: none !important;
  width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
  box-shadow: none !important;
  border: none !important;
  float: none !important;
}

/* Force page hero padding to always clear the nav */
.ep-page-hero,
.ep-page-hero[style] {
  padding-top: 160px !important;
  padding-bottom: 5rem !important;
}



/* ── Mobile nav menu open state ────────────────────────────────────────── */
@media (max-width: 1024px) {
  .ep-nav-menu {
    position: fixed;
    top: 0; left: 0; right: 0;
    background: rgba(8,12,20,0.98);
    backdrop-filter: blur(20px);
    padding: 5rem 2rem 2rem;
    flex-direction: column;
    gap: 0.25rem;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
    z-index: 400;
    border-bottom: 1px solid var(--line2);
  }
  .ep-nav-menu.ep-nav-menu--open {
    transform: translateY(0);
    display: flex;
  }
  .ep-nav-menu a {
    font-size: 1.1rem;
    padding: 0.75rem 1rem;
  }
}

/* ── Lead Form & Get Started Page ──────────────────────────────────────── */
.ep-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 560px) { .ep-form-row { grid-template-columns: 1fr; } }

.ep-field select {
  width: 100%;
  background: var(--bg3);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 0.8rem 1rem;
  color: var(--text);
  font-family: inherit;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  cursor: pointer;
}
.ep-field select:focus {
  border-color: rgba(6,182,212,0.4);
  box-shadow: 0 0 0 3px rgba(6,182,212,0.08);
}
.ep-field select option { background: var(--bg3); color: var(--text); }

.ep-field textarea {
  width: 100%;
  background: var(--bg3);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 0.8rem 1rem;
  color: var(--text);
  font-family: inherit;
  font-size: 0.9rem;
  outline: none;
  resize: vertical;
  min-height: 100px;
  transition: border-color 0.15s, box-shadow 0.15s;
  line-height: 1.6;
}
.ep-field textarea:focus {
  border-color: rgba(6,182,212,0.4);
  box-shadow: 0 0 0 3px rgba(6,182,212,0.08);
}
.ep-field textarea::placeholder { color: var(--faint); }

.req { color: var(--cyan); font-size: 0.8rem; }

/* Get Started full page */
.ep-gs-page {
  min-height: 100vh;
  padding-top: 100px;
  background: var(--bg);
}
.ep-gs-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 80px);
}

/* Left panel */
.ep-gs-left {
  background: var(--bg2);
  border-right: 1px solid var(--line);
  padding: 4rem 3rem;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.ep-gs-left::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(ellipse, var(--cyan-dim) 0%, transparent 70%);
  top: -100px; right: -100px;
  pointer-events: none;
}
.ep-gs-left-inner { position: relative; z-index: 1; max-width: 420px; }

/* Plan cards on left */
.ep-gs-plans {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 2rem;
}
.ep-gs-plan {
  background: var(--bg3);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 0.9rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
  transition: border-color 0.2s;
}
.ep-gs-plan.pop {
  border-color: rgba(99,102,241,0.3);
  background: rgba(99,102,241,0.05);
}
.ep-gs-plan-pill {
  position: absolute;
  top: -10px; right: 12px;
  background: linear-gradient(90deg, var(--cyan), var(--indigo));
  color: var(--bg);
  font-size: 0.6rem; font-weight: 800;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.15rem 0.6rem;
  border-radius: 999px;
}
.ep-gs-plan-name {
  font-weight: 700;
  font-size: 0.9rem;
  min-width: 80px;
  color: var(--plan-col, var(--text));
}
.ep-gs-plan-price {
  font-weight: 800;
  font-family: 'JetBrains Mono', monospace;
  font-size: 1rem;
  color: var(--plan-col, var(--text));
}
.ep-gs-plan-sub {
  font-size: 0.78rem;
  color: var(--faint);
  margin-left: auto;
}

/* Trust items */
.ep-gs-trust {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
}
.ep-gs-trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--muted);
}
.ep-gs-trust-ico {
  color: var(--cyan);
  font-weight: 700;
  flex-shrink: 0;
}

/* Right panel — form */
.ep-gs-right {
  padding: 4rem 3rem;
  overflow-y: auto;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.ep-gs-form-wrap {
  width: 100%;
  max-width: 480px;
}
.ep-gs-form-head {
  margin-bottom: 2rem;
}
.ep-gs-form-head h2 {
  font-size: 1.5rem;
  margin-bottom: 0.4rem;
}
.ep-gs-form-head p {
  font-size: 0.875rem;
  color: var(--muted);
}

/* Success state */
.ep-gs-success {
  text-align: center;
  max-width: 400px;
  margin: 4rem auto;
}
.ep-gs-success-ico {
  width: 72px; height: 72px;
  background: rgba(16,185,129,0.12);
  border: 2px solid var(--green);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.75rem;
  color: var(--green);
  margin: 0 auto 1.5rem;
}
.ep-gs-success h2 { font-size: 1.75rem; margin-bottom: 0.75rem; }
.ep-gs-success p { color: var(--muted); line-height: 1.7; }

@media (max-width: 900px) {
  .ep-gs-inner { grid-template-columns: 1fr; }
  .ep-gs-left { padding: 3rem 2rem; }
  .ep-gs-right { padding: 3rem 2rem; }
}

/* ================================================================
   Live Tracking — page-live-tracking.php + front-page spotlight
   ================================================================ */

/* ── Live dot pulse ── */
.ep-lt-live-dot {
  display: inline-block;
  width: 8px; height: 8px;
  background: var(--green);
  border-radius: 50%;
  animation: lt-pulse 2s ease infinite;
}
@keyframes lt-pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(16,185,129,0.6); }
  50%      { box-shadow: 0 0 0 6px rgba(16,185,129,0); }
}

/* ── Live badge ── */
.ep-lt-live-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.68rem; font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--green);
  background: rgba(16,185,129,0.1);
  border: 1px solid rgba(16,185,129,0.25);
  padding: 4px 12px; border-radius: 20px;
  position: absolute; top: -12px; right: 24px;
  z-index: 2;
}

/* ═══ HERO ══════════════════════════════════════════════════════ */
.ep-lt-hero {
  padding: 6rem 2rem 5rem;
  position: relative; z-index: 1;
  overflow: hidden;
}
.ep-lt-hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(6,182,212,0.06) 0%, transparent 65%);
  pointer-events: none;
}
.ep-lt-hero-inner {
  max-width: 1160px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.ep-lt-hero-text { max-width: 520px; }

/* ── Pulse ring behind mockup ── */
.ep-lt-pulse-ring {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 420px; height: 420px;
  border-radius: 50%;
  border: 1px solid rgba(6,182,212,0.08);
  animation: lt-ring 4s ease infinite;
  pointer-events: none;
}
.ep-lt-pulse-ring::after {
  content: '';
  position: absolute; inset: 30px;
  border-radius: 50%;
  border: 1px solid rgba(99,102,241,0.06);
  animation: lt-ring 4s ease 1s infinite;
}
@keyframes lt-ring {
  0%   { transform: translate(-50%,-50%) scale(0.9); opacity: 0; }
  50%  { opacity: 1; }
  100% { transform: translate(-50%,-50%) scale(1.15); opacity: 0; }
}

/* ── Main dashboard mockup ── */
.ep-lt-hero-visual {
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.ep-lt-dash {
  background: var(--bg2);
  border: 1px solid var(--line2);
  border-radius: var(--r-xl);
  padding: 20px;
  width: 100%;
  max-width: 460px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.04);
  position: relative;
}
.ep-lt-dash-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 16px;
}
.ep-lt-dash-title {
  font-size: 0.8rem; font-weight: 700;
  color: var(--text);
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.ep-lt-dash-period {
  font-size: 0.7rem; color: var(--faint);
}

/* KPI row */
.ep-lt-kpi-row {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 8px; margin-bottom: 16px;
}
.ep-lt-kpi {
  background: var(--bg3);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 10px 8px;
  text-align: center;
}
.ep-lt-kpi--green { border-color: rgba(16,185,129,0.2); }
.ep-lt-kpi--cyan  { border-color: rgba(6,182,212,0.2); }
.ep-lt-kpi--indigo{ border-color: rgba(99,102,241,0.2); }
.ep-lt-kpi--amber { border-color: rgba(245,158,11,0.2); }
.ep-lt-kpi-val {
  font-size: 0.85rem; font-weight: 800;
  font-family: 'JetBrains Mono', monospace;
  color: var(--text);
  white-space: nowrap;
}
.ep-lt-kpi--green .ep-lt-kpi-val { color: var(--green); }
.ep-lt-kpi--cyan  .ep-lt-kpi-val { color: var(--cyan); }
.ep-lt-kpi--indigo .ep-lt-kpi-val { color: var(--indigo); }
.ep-lt-kpi--amber .ep-lt-kpi-val { color: var(--amber); }
.ep-lt-kpi-lbl { font-size: 0.62rem; color: var(--faint); margin-top: 2px; }
.ep-lt-kpi-delta { font-size: 0.6rem; color: var(--green); font-weight: 600; margin-top: 2px; }

/* Mini chart */
.ep-lt-chart { margin-bottom: 14px; }
.ep-lt-chart-label { font-size: 0.65rem; color: var(--faint); margin-bottom: 6px; }
.ep-lt-bars {
  display: flex; align-items: flex-end;
  gap: 2px; height: 48px;
}
.ep-lt-bar {
  flex: 1; min-width: 4px;
  background: linear-gradient(to top, var(--cyan), var(--indigo));
  border-radius: 2px 2px 0 0;
  opacity: 0.7;
  transition: opacity 0.3s;
  animation: lt-bar-grow 1s ease backwards;
}
.ep-lt-bar:hover { opacity: 1; }
@keyframes lt-bar-grow {
  from { transform: scaleY(0); transform-origin: bottom; }
  to   { transform: scaleY(1); }
}

/* Feed */
.ep-lt-feed-head { font-size: 0.65rem; color: var(--faint); margin-bottom: 6px; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; }
.ep-lt-feed { display: flex; flex-direction: column; gap: 6px; }
.ep-lt-feed-item {
  display: flex; align-items: center; gap: 8px;
  background: var(--bg3);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  padding: 7px 10px;
  transition: border-color 0.3s;
}
.ep-lt-feed-item--order  { border-color: rgba(16,185,129,0.15); }
.ep-lt-feed-item--form   { border-color: rgba(6,182,212,0.15); }
.ep-lt-feed-item--traffic { border-color: rgba(99,102,241,0.15); }
.ep-lt-feed-ico { font-size: 0.85rem; flex-shrink: 0; }
.ep-lt-feed-body { flex: 1; min-width: 0; }
.ep-lt-feed-title { font-size: 0.7rem; font-weight: 600; color: var(--text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ep-lt-feed-sub   { font-size: 0.62rem; color: var(--faint); margin-top: 1px; }
.ep-lt-feed-tag   { font-size: 0.58rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; padding: 2px 7px; border-radius: 10px; flex-shrink: 0; }
.ep-lt-feed-tag--green  { background: rgba(16,185,129,0.15); color: var(--green); }
.ep-lt-feed-tag--cyan   { background: var(--cyan-dim); color: var(--cyan); }
.ep-lt-feed-tag--indigo { background: var(--indigo-dim); color: var(--indigo); }

/* New item flash */
.ep-lt-feed-new {
  animation: lt-flash 1.5s ease;
}
@keyframes lt-flash {
  0%   { background: rgba(16,185,129,0.12); }
  100% { background: var(--bg3); }
}

/* ═══ HOW IT WORKS STEPS ════════════════════════════════════════ */
.ep-lt-steps { max-width: 760px; margin: 0 auto; }

.ep-lt-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
  align-items: flex-start;
}
.ep-lt-step-num {
  font-size: 3.5rem; font-weight: 900;
  font-family: 'JetBrains Mono', monospace;
  color: var(--line3);
  line-height: 1;
  letter-spacing: -0.04em;
  padding-top: 4px;
}
.ep-lt-step-body h3 { font-size: 1.2rem; margin-bottom: 0.6rem; }
.ep-lt-step-body p  { color: var(--muted); font-size: 0.9rem; line-height: 1.7; margin-bottom: 1.25rem; }

.ep-lt-step-connector {
  display: flex; flex-direction: column; align-items: flex-start;
  padding-left: 36px;
  gap: 0;
  margin: 0;
}
.ep-lt-connector-line {
  width: 2px; height: 2.5rem;
  background: linear-gradient(to bottom, var(--line2), transparent);
  margin-left: 0;
}
.ep-lt-connector-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  opacity: 0.5;
  margin-left: -3px;
}

/* Code block mock */
.ep-lt-code-block {
  background: #0a0f1e;
  border: 1px solid var(--line2);
  border-radius: var(--r-md);
  padding: 14px 16px;
  font-family: 'JetBrains Mono', monospace;
}
.ep-lt-code-label {
  font-size: 0.62rem; color: var(--faint); margin-bottom: 10px; letter-spacing: 0.05em;
}
.ep-lt-code-line {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.78rem;
}
.ep-lt-code-key { color: var(--muted); }
.ep-lt-code-val { color: var(--cyan); }
.ep-lt-code-copy {
  margin-left: auto;
  background: var(--bg4); border: 1px solid var(--line2);
  color: var(--muted); font-size: 0.65rem; font-family: 'Plus Jakarta Sans', sans-serif;
  padding: 3px 10px; border-radius: var(--r-sm);
  cursor: pointer; transition: all 0.2s;
}
.ep-lt-code-copy:hover { background: var(--cyan-dim); color: var(--cyan); border-color: var(--cyan); }

/* Settings mock */
.ep-lt-settings-mock {
  background: var(--bg2);
  border: 1px solid var(--line2);
  border-radius: var(--r-md);
  overflow: hidden;
}
.ep-lt-settings-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 9px 14px;
  border-bottom: 1px solid var(--line);
  font-size: 0.78rem;
}
.ep-lt-settings-lbl { color: var(--muted); }
.ep-lt-settings-val { color: var(--text); font-family: 'JetBrains Mono', monospace; font-size: 0.72rem; }
.ep-lt-settings-key { color: var(--cyan); }
.ep-lt-settings-footer { padding: 10px 14px; }
.ep-lt-settings-status { font-size: 0.72rem; font-weight: 600; }
.ep-lt-status-ok { color: var(--green); }

/* Sync animation */
.ep-lt-sync-anim {
  display: flex; align-items: center; gap: 1rem;
  padding: 20px;
  background: var(--bg2);
  border: 1px solid var(--line2);
  border-radius: var(--r-md);
}
.ep-lt-sync-node {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  flex-shrink: 0;
}
.ep-lt-sync-ico { font-size: 2rem; }
.ep-lt-sync-lbl { font-size: 0.68rem; color: var(--muted); font-weight: 600; white-space: nowrap; }
.ep-lt-sync-arrow {
  flex: 1; position: relative; display: flex; align-items: center;
}
.ep-lt-sync-svg { width: 100%; }
.ep-lt-sync-packet {
  position: absolute;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  top: 50%; transform: translateY(-50%);
  animation: lt-travel 2.5s ease infinite;
}
#lt-packet-2 { animation-delay: 1.25s; background: var(--indigo); }
@keyframes lt-travel {
  0%   { left: 0%; opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { left: 100%; opacity: 0; }
}

/* ═══ THREE STREAMS ═════════════════════════════════════════════ */
.ep-lt-streams {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.ep-lt-stream-card {
  background: var(--bg3);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 24px;
  display: flex; flex-direction: column;
  gap: 1.25rem;
  transition: border-color 0.3s, transform 0.3s;
}
.ep-lt-stream-card:hover { transform: translateY(-4px); }
.ep-lt-stream-card--woo     { border-color: rgba(16,185,129,0.15); }
.ep-lt-stream-card--traffic { border-color: rgba(6,182,212,0.15); }
.ep-lt-stream-card--forms   { border-color: rgba(99,102,241,0.15); }
.ep-lt-stream-card--woo:hover     { border-color: rgba(16,185,129,0.4); }
.ep-lt-stream-card--traffic:hover { border-color: rgba(6,182,212,0.4); }
.ep-lt-stream-card--forms:hover   { border-color: rgba(99,102,241,0.4); }

.ep-lt-stream-header { display: flex; align-items: center; gap: 14px; }
.ep-lt-stream-icon   { font-size: 1.75rem; }
.ep-lt-stream-title  { font-size: 1rem; font-weight: 700; margin: 0; }
.ep-lt-stream-sub    { font-size: 0.72rem; color: var(--faint); margin-top: 2px; }

/* Mini KPIs in stream card */
.ep-lt-mini-kpis { display: flex; gap: 12px; margin-bottom: 12px; }
.ep-lt-mini-kpi  { flex: 1; text-align: center; }
.ep-lt-mini-val  { display: block; font-size: 1rem; font-weight: 800; font-family: 'JetBrains Mono', monospace; }
.ep-lt-mini-lbl  { font-size: 0.62rem; color: var(--faint); margin-top: 2px; }

/* Source table in stream card */
.ep-lt-source-table { font-size: 0.72rem; }
.ep-lt-source-row { display: grid; grid-template-columns: 1fr auto auto; gap: 8px; padding: 5px 0; border-bottom: 1px solid var(--line); }
.ep-lt-source-row--head { color: var(--faint); font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; font-size: 0.62rem; }

/* Traffic chart */
.ep-lt-traffic-chart {
  display: flex; align-items: flex-end; gap: 2px;
  height: 54px; margin-bottom: 12px;
}
.ep-lt-tbar {
  flex: 1;
  background: linear-gradient(to top, var(--cyan), var(--indigo));
  border-radius: 2px 2px 0 0;
  opacity: 0.6;
  transition: opacity 0.2s;
}
.ep-lt-tbar:hover { opacity: 1; }

/* Top pages */
.ep-lt-top-pages { font-size: 0.72rem; }
.ep-lt-tp-row { display: flex; justify-content: space-between; padding: 4px 0; border-bottom: 1px solid var(--line); }
.ep-lt-tp-head { color: var(--faint); font-size: 0.62rem; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; }
.ep-lt-tp-val { color: var(--cyan); font-weight: 700; }

/* Forms table */
.ep-lt-forms-table { font-size: 0.72rem; margin-bottom: 14px; }
.ep-lt-form-row { display: grid; grid-template-columns: 1fr auto auto; gap: 8px; padding: 5px 0; border-bottom: 1px solid var(--line); align-items: center; }
.ep-lt-form-head { color: var(--faint); font-size: 0.62rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; }
.ep-lt-form-count { font-weight: 800; font-family: 'JetBrains Mono', monospace; }
.ep-lt-form-src { color: var(--faint); font-size: 0.65rem; }

/* Plugin badges */
.ep-lt-plugin-badges { display: flex; flex-wrap: wrap; gap: 6px; }
.ep-lt-badge { font-size: 0.62rem; font-weight: 700; padding: 3px 9px; border-radius: 20px; background: var(--bg4); border: 1px solid var(--line2); color: var(--muted); }

/* Stream features list */
.ep-lt-stream-features { list-style: none; display: flex; flex-direction: column; gap: 6px; margin-top: auto; }
.ep-lt-stream-features li { font-size: 0.78rem; color: var(--muted); }

/* ═══ WHY IT MATTERS ════════════════════════════════════════════ */
.ep-lt-why-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
}
.ep-lt-why-list { list-style: none; display: flex; flex-direction: column; gap: 1.5rem; margin-top: 2rem; }
.ep-lt-why-list li { display: flex; gap: 1rem; align-items: flex-start; }
.ep-lt-why-ico { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.ep-lt-why-list strong { display: block; font-size: 0.95rem; margin-bottom: 0.25rem; }
.ep-lt-why-list p { color: var(--muted); font-size: 0.85rem; line-height: 1.65; margin: 0; }

/* Comparison table */
.ep-lt-compare {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.ep-lt-compare-col {
  border-radius: var(--r-lg);
  overflow: hidden;
}
.ep-lt-compare-head { padding: 14px 16px; }
.ep-lt-compare-label {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.04em;
  display: flex; align-items: center; gap: 6px;
}
.ep-lt-compare-label--bad  { color: var(--faint); }
.ep-lt-compare-label--good { color: var(--green); }
.ep-lt-compare-bad  { background: rgba(255,255,255,0.02); border: 1px solid var(--line); }
.ep-lt-compare-good { background: rgba(16,185,129,0.04); border: 1px solid rgba(16,185,129,0.2); }
.ep-lt-compare-list { list-style: none; padding: 0 16px 16px; display: flex; flex-direction: column; gap: 7px; }
.ep-lt-compare-list li { font-size: 0.78rem; line-height: 1.4; }
.ep-lt-compare-list li.bad  { color: var(--faint); }
.ep-lt-compare-list li.good { color: var(--muted); }

/* ═══ TECH GRID ═════════════════════════════════════════════════ */
.ep-lt-tech-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.ep-lt-tech-card {
  background: var(--bg2);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 24px;
  transition: border-color 0.3s;
}
.ep-lt-tech-card:hover { border-color: var(--line3); }
.ep-lt-tech-ico { font-size: 1.5rem; margin-bottom: 12px; }
.ep-lt-tech-card h3 { font-size: 0.95rem; margin-bottom: 8px; }
.ep-lt-tech-card p  { font-size: 0.82rem; color: var(--muted); line-height: 1.65; margin: 0; }

/* ═══ FRONT PAGE SPOTLIGHT ══════════════════════════════════════ */
.ep-lt-spotlight { overflow: hidden; position: relative; }
.ep-lt-spotlight::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(6,182,212,0.05) 0%, transparent 60%);
  pointer-events: none;
}
.ep-lt-spot-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1160px; margin: 0 auto;
}
.ep-lt-spot-new-badge {
  display: inline-flex; align-items: center;
  background: linear-gradient(135deg, rgba(6,182,212,0.2), rgba(99,102,241,0.2));
  border: 1px solid rgba(6,182,212,0.3);
  color: var(--cyan);
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 4px 14px; border-radius: 20px;
  margin-bottom: 0.75rem;
}
.ep-lt-spot-bullets { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-top: 1.5rem; }
.ep-lt-spot-bullets li { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; color: var(--muted); }

/* Spot visual / compact dash */
.ep-lt-spot-visual { position: relative; }
.ep-lt-spot-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.65rem; font-weight: 800; letter-spacing: 0.1em;
  color: var(--green);
  background: rgba(16,185,129,0.1); border: 1px solid rgba(16,185,129,0.2);
  padding: 4px 12px; border-radius: 20px;
  position: absolute; top: -14px; right: 20px; z-index: 2;
}
.ep-lt-spot-dash {
  background: var(--bg3);
  border: 1px solid var(--line2);
  border-radius: var(--r-xl);
  padding: 18px;
  box-shadow: 0 32px 64px rgba(0,0,0,0.45);
}
.ep-lt-spot-dash-title { font-size: 0.72rem; font-weight: 700; color: var(--text); margin-bottom: 12px; }
.ep-lt-spot-kpis { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; margin-bottom: 14px; }
.ep-lt-spot-kpi {
  background: var(--bg2); border: 1px solid var(--line);
  border-radius: var(--r-md); padding: 10px 8px; text-align: center;
}
.ep-lt-spot-kpi-ico { font-size: 1rem; margin-bottom: 4px; }
.ep-lt-spot-kpi-val { font-size: 0.9rem; font-weight: 800; font-family: 'JetBrains Mono', monospace; }
.ep-lt-spot-kpi-lbl { font-size: 0.6rem; color: var(--faint); margin-top: 3px; }

.ep-lt-spot-bars {
  display: flex; align-items: flex-end; gap: 2px;
  height: 42px; margin-bottom: 14px;
}
.ep-lt-spot-bar {
  flex: 1;
  background: linear-gradient(to top, var(--cyan), var(--indigo));
  border-radius: 2px 2px 0 0;
  opacity: 0.65;
}

.ep-lt-spot-feed { display: flex; flex-direction: column; gap: 5px; margin-bottom: 12px; }
.ep-lt-spot-feed-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.7rem; padding: 5px 8px;
  border-radius: var(--r-sm);
  background: var(--bg2); border: 1px solid var(--line);
}
.ep-lt-spot-feed-dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
.ep-lt-spot-feed-text { flex: 1; color: var(--muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ep-lt-spot-feed-time { font-size: 0.62rem; color: var(--faint); flex-shrink: 0; }

.ep-lt-spot-companion {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.68rem; color: var(--green);
  background: rgba(16,185,129,0.06); border: 1px solid rgba(16,185,129,0.15);
  border-radius: var(--r-sm); padding: 5px 10px;
}

/* ═══ RESPONSIVE ════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .ep-lt-streams { grid-template-columns: 1fr; max-width: 540px; margin: 0 auto; }
  .ep-lt-tech-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 900px) {
  .ep-lt-hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .ep-lt-hero .ep-lt-hero-visual { display: none; }
  .ep-lt-why-grid { grid-template-columns: 1fr; gap: 3rem; }
  .ep-lt-spot-inner { grid-template-columns: 1fr; }
  .ep-lt-spot-visual { display: none; }
  .ep-lt-compare { grid-template-columns: 1fr; }
  .ep-lt-kpi-row { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 640px) {
  .ep-lt-step { grid-template-columns: 48px 1fr; gap: 1rem; }
  .ep-lt-step-num { font-size: 2.5rem; }
  .ep-lt-tech-grid { grid-template-columns: 1fr; }
}

/* ── 4-column pricing grid ─────────────────────────────────────────────────── */
.ep-pricing-grid--4 {
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 1100px) {
  .ep-pricing-grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .ep-pricing-grid--4 { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════════════════════════
   BLOG — Post content typography & components
   Added in v2.1.0
═══════════════════════════════════════════════════════════════════════════════ */

/* ── Post body typography ─────────────────────────────────────────────────── */
.ep-post-content {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--text);
}
.ep-post-content h2 {
  font-size: 1.55rem;
  margin: 2.5rem 0 1rem;
  color: var(--text);
  letter-spacing: -0.02em;
}
.ep-post-content h3 {
  font-size: 1.2rem;
  margin: 2rem 0 0.75rem;
  color: var(--text);
}
.ep-post-content h4 {
  font-size: 1rem;
  margin: 1.5rem 0 0.5rem;
  color: var(--text);
  font-weight: 700;
}
.ep-post-content p {
  margin-bottom: 1.4rem;
  color: var(--muted);
}
.ep-post-content a {
  color: var(--cyan);
  text-decoration: underline;
  text-decoration-color: rgba(6,182,212,0.3);
  text-underline-offset: 3px;
  transition: text-decoration-color 0.15s;
}
.ep-post-content a:hover {
  text-decoration-color: var(--cyan);
}
.ep-post-content ul,
.ep-post-content ol {
  margin: 0 0 1.4rem 1.5rem;
  color: var(--muted);
}
.ep-post-content li {
  margin-bottom: 0.45rem;
  line-height: 1.7;
}
.ep-post-content blockquote {
  border-left: 3px solid var(--cyan);
  margin: 2rem 0;
  padding: 1rem 1.5rem;
  background: var(--bg2);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  color: var(--muted);
  font-style: italic;
}
.ep-post-content code {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.85em;
  background: var(--bg3);
  border: 1px solid var(--line2);
  border-radius: 4px;
  padding: 0.1em 0.4em;
  color: var(--cyan);
}
.ep-post-content pre {
  background: var(--bg3);
  border: 1px solid var(--line2);
  border-radius: var(--r-md);
  padding: 1.25rem;
  overflow-x: auto;
  margin-bottom: 1.4rem;
}
.ep-post-content pre code {
  background: none;
  border: none;
  padding: 0;
  font-size: 0.88rem;
  color: var(--text);
}
.ep-post-content img {
  border-radius: var(--r-md);
  border: 1px solid var(--line2);
  width: 100%;
  height: auto;
  margin: 1rem 0;
}
.ep-post-content table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
  margin-bottom: 1.4rem;
}
.ep-post-content th {
  text-align: left;
  padding: 0.6rem 0.9rem;
  background: var(--bg3);
  border-bottom: 2px solid var(--line2);
  color: var(--text);
  font-weight: 700;
}
.ep-post-content td {
  padding: 0.6rem 0.9rem;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}
.ep-post-content tr:nth-child(even) td {
  background: var(--bg2);
}

/* ── Pagination ───────────────────────────────────────────────────────────── */
.page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--r-sm);
  border: 1px solid var(--line2);
  color: var(--muted);
  font-size: 0.85rem;
  text-decoration: none;
  margin: 0 0.2rem;
  transition: all 0.15s;
}
.page-numbers.current,
.page-numbers:hover {
  border-color: var(--cyan);
  color: var(--cyan);
}
.page-numbers.dots {
  border: none;
  color: var(--faint);
}

/* ── Hero inner (for landing pages + blog) ────────────────────────────────── */
.ep-hero--inner {
  background: radial-gradient(ellipse at 60% 0%, rgba(6,182,212,0.06) 0%, transparent 60%);
  padding-top: 5rem; /* nav clearance (~65px fixed nav + breathing room) */
}

/* ── Demo nav button ──────────────────────────────────────────────────────── */
.ep-nav-demo {
  background: transparent;
  border: 1.5px solid var(--amber);
  color: var(--amber) !important;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  animation: ep-demo-pulse 3s ease-in-out infinite;
}
.ep-nav-demo:hover {
  background: var(--amber);
  color: #000 !important;
  border-color: var(--amber);
}
@keyframes ep-demo-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(245,158,11,0); }
  50%       { box-shadow: 0 0 0 5px rgba(245,158,11,0.15); }
}
