/* =========================================================
   Delhi Mobile Market — Production Stylesheet
   Clean premium B2B wholesale marketplace landing page
   ========================================================= */

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #0f172a;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }

:root {
  --bg: #ffffff;
  --bg-soft: #f7f8fb;
  --bg-tint: #eef4ff;
  --bg-warm: #fff7ed;
  --border: #e6e8ed;
  --border-strong: #d1d5db;
  --text: #0f172a;
  --text-muted: #64748b;
  --text-soft: #475569;
  --primary: #2563eb;
  --primary-dark: #1d4ed8;
  --primary-soft: #dbeafe;
  --orange: #f97316;
  --orange-soft: #ffedd5;
  --green: #16a34a;
  --green-soft: #dcfce7;
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.04), 0 1px 3px rgba(15, 23, 42, 0.06);
  --shadow: 0 4px 16px -4px rgba(15, 23, 42, 0.08), 0 2px 6px -2px rgba(15, 23, 42, 0.04);
  --shadow-lg: 0 24px 48px -12px rgba(15, 23, 42, 0.14);
  --max: 1200px;
}

.container {
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: 20px;
}

h1, h2, h3, h4 {
  font-family: 'Plus Jakarta Sans', 'Manrope', sans-serif;
  color: var(--text);
  margin: 0 0 0.6em;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2rem, 4.6vw, 3.4rem); font-weight: 800; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 800; letter-spacing: -0.02em; }
h3 { font-size: 1.25rem; font-weight: 700; }
h4 { font-size: 1.05rem; font-weight: 700; }

p { margin: 0 0 1rem; color: var(--text-soft); }

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--primary-soft);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.section { padding: 84px 0; }
.section--soft { background: var(--bg-soft); }
.section--tint { background: linear-gradient(180deg, #ffffff 0%, var(--bg-tint) 100%); }

.section-head { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.section-head p { font-size: 1.05rem; color: var(--text-muted); }

@media (max-width: 720px) {
  .section { padding: 60px 0; }
  .section-head { margin-bottom: 40px; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform 0.15s ease, background-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
  white-space: nowrap;
  border: 1.5px solid transparent;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 8px 20px -8px rgba(37, 99, 235, 0.55);
}
.btn--primary:hover { background: var(--primary-dark); }

.btn--ghost {
  background: #fff;
  color: var(--text);
  border-color: var(--border-strong);
}
.btn--ghost:hover { border-color: var(--primary); color: var(--primary); }

.btn--orange {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 8px 20px -8px rgba(249, 115, 22, 0.6);
}
.btn--orange:hover { background: #ea580c; }

.btn--block { width: 100%; justify-content: center; }
.btn--sm { padding: 10px 16px; font-size: 0.85rem; }

.btn .arrow {
  transition: transform 0.2s ease;
}
.btn:hover .arrow { transform: translateX(3px); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  max-width: var(--max);
  margin: 0 auto;
}
.logo { display: inline-flex; align-items: center; gap: 8px; }
.logo svg { height: 30px; width: auto; }

.nav { display: flex; align-items: center; gap: 32px; }
.nav a {
  font-size: 0.94rem;
  font-weight: 600;
  color: var(--text-soft);
  transition: color 0.2s;
}
.nav a:hover { color: var(--primary); }

.header-cta { display: flex; align-items: center; gap: 10px; }

.menu-toggle {
  display: none;
  width: 40px; height: 40px;
  align-items: center; justify-content: center;
  border-radius: 10px; border: 1px solid var(--border);
}
.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  content: '';
  display: block;
  width: 18px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.menu-toggle span { position: relative; }
.menu-toggle span::before { position: absolute; top: -6px; }
.menu-toggle span::after  { position: absolute; top:  6px; }

.menu-toggle.is-open span { background: transparent; }
.menu-toggle.is-open span::before { transform: rotate(45deg); top: 0; }
.menu-toggle.is-open span::after  { transform: rotate(-45deg); top: 0; }

@media (max-width: 920px) {
  .nav, .header-cta .btn { display: none; }
  .menu-toggle { display: inline-flex; }
  .nav.is-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: #fff;
    padding: 16px 20px 24px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
    gap: 14px;
    align-items: flex-start;
  }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 72px 0 88px;
  background:
    radial-gradient(1200px 600px at 90% -10%, rgba(37,99,235,0.08), transparent 60%),
    radial-gradient(900px 500px at -10% 30%, rgba(249,115,22,0.06), transparent 60%),
    #ffffff;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px 6px 6px;
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-soft);
  margin-bottom: 22px;
  box-shadow: var(--shadow-sm);
}
.hero-eyebrow .dot {
  width: 22px; height: 22px; border-radius: 999px;
  background: var(--green-soft); color: var(--green);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 0.7rem; font-weight: 800;
}
.hero h1 { margin-bottom: 18px; }
.hero h1 .accent { color: var(--primary); }
.hero h1 .underline {
  background: linear-gradient(180deg, transparent 60%, rgba(249,115,22,0.28) 60%);
  padding: 0 4px;
}
.hero-sub {
  font-size: 1.12rem;
  color: var(--text-soft);
  max-width: 560px;
  margin-bottom: 30px;
}
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 30px; }

.hero-trust {
  display: flex; flex-wrap: wrap; gap: 22px 28px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
}
.trust-item { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; color: var(--text-soft); font-weight: 500; }
.trust-item svg { color: var(--green); flex: none; }

.hero-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 16 / 11;
  background: #f1f5f9;
}
.hero-visual img { width: 100%; height: 100%; object-fit: cover; }

.hero-badge {
  position: absolute;
  background: #fff;
  border-radius: var(--radius);
  padding: 14px 18px;
  box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 12px;
  border: 1px solid var(--border);
}
.hero-badge--cod { left: -14px; bottom: 22px; }
.hero-badge--ship { right: -14px; top: 22px; }
.hero-badge .ico {
  width: 40px; height: 40px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex: none;
}
.hero-badge .ico--green { background: var(--green-soft); color: var(--green); }
.hero-badge .ico--blue { background: var(--primary-soft); color: var(--primary); }
.hero-badge strong { display: block; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 0.95rem; color: var(--text); }
.hero-badge small { display: block; font-size: 0.78rem; color: var(--text-muted); }

@media (max-width: 920px) {
  .hero { padding: 48px 0 72px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-badge--cod { left: 12px; bottom: 12px; }
  .hero-badge--ship { right: 12px; top: 12px; }
}

/* ---------- Marquee strip ---------- */
.strip {
  background: #0f172a;
  color: #fff;
  padding: 16px 0;
  overflow: hidden;
}
.strip-track {
  display: flex;
  gap: 56px;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
}
.strip-item {
  display: inline-flex; align-items: center; gap: 12px;
  font-weight: 600; font-size: 0.92rem;
  color: rgba(255,255,255,0.92);
}
.strip-item .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--orange);
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.about-grid .imgbox {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow);
}
.about-grid .imgbox img { width: 100%; height: 100%; object-fit: cover; }
.about-grid .imgbox::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(15,23,42,0.35) 100%);
}
.about-pill-row { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 22px; }
.pill {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--text-soft);
}
.pill--blue { background: var(--primary-soft); color: var(--primary); border-color: transparent; }
.pill--orange { background: var(--orange-soft); color: var(--orange); border-color: transparent; }

.bullet-list { list-style: none; padding: 0; margin: 22px 0 0; display: grid; gap: 14px; }
.bullet-list li {
  display: flex; gap: 12px;
  padding: 14px 16px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.95rem;
  color: var(--text);
}
.bullet-list .tick {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--green-soft); color: var(--green);
  display: flex; align-items: center; justify-content: center;
  flex: none;
}

@media (max-width: 820px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-grid .imgbox { aspect-ratio: 4/3; order: -1; }
}

/* ---------- Features (Why wholesale) ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.feature {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 22px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.feature:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: #c7d2fe;
}
.feature .ico {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: var(--primary-soft);
  color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.feature h3 { font-size: 1.05rem; margin-bottom: 8px; }
.feature p { font-size: 0.92rem; color: var(--text-muted); margin: 0; }
@media (max-width: 980px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .feature-grid { grid-template-columns: 1fr; } }

/* ---------- Categories ---------- */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.cat {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  aspect-ratio: 4/5;
  display: flex; flex-direction: column;
}
.cat:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.cat .cat-img {
  flex: 1;
  background: #f1f5f9;
  overflow: hidden;
  position: relative;
}
.cat .cat-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.cat:hover .cat-img img { transform: scale(1.04); }
.cat .cat-img-fallback {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
}
.cat .cat-meta {
  padding: 18px 20px;
  background: #fff;
  border-top: 1px solid var(--border);
}
.cat .cat-meta h3 { font-size: 1.05rem; margin: 0 0 4px; }
.cat .cat-meta p { font-size: 0.85rem; color: var(--text-muted); margin: 0; }
.cat .cat-tag {
  position: absolute; top: 14px; left: 14px;
  background: #fff;
  color: var(--text);
  font-size: 0.72rem; font-weight: 700;
  padding: 5px 10px; border-radius: 999px;
  letter-spacing: 0.04em;
  box-shadow: var(--shadow-sm);
}
.cat .cat-tag.is-hot { background: var(--orange); color: #fff; }
.cat .cat-tag.is-new { background: var(--primary); color: #fff; }
@media (max-width: 900px) { .cat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .cat-grid { grid-template-columns: 1fr; } .cat { aspect-ratio: 4/4; } }

/* ---------- Suppliers ---------- */
.supplier-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.supplier {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.supplier:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.supplier::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 4px;
}
.supplier--kb::before { background: var(--primary); }
.supplier--mcw::before { background: var(--orange); }

.supplier-top { display: flex; align-items: center; gap: 16px; margin-bottom: 18px; }
.supplier-logo {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  color: #fff;
  flex: none;
  letter-spacing: -0.02em;
}
.supplier--kb .supplier-logo { background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%); }
.supplier--mcw .supplier-logo { background: linear-gradient(135deg, #f97316 0%, #ea580c 100%); }
.supplier h3 { margin: 0 0 2px; font-size: 1.25rem; }
.supplier .domain { color: var(--text-muted); font-size: 0.88rem; font-weight: 500; }

.supplier-desc { font-size: 0.96rem; color: var(--text-soft); margin-bottom: 22px; }

.order-rows {
  display: grid;
  gap: 10px;
  background: var(--bg-soft);
  padding: 18px;
  border-radius: var(--radius);
  margin-bottom: 22px;
}
.order-row { display: flex; justify-content: space-between; align-items: center; font-size: 0.92rem; }
.order-row span:first-child { color: var(--text-muted); }
.order-row span:last-child { font-weight: 700; color: var(--text); }
.order-row .hl { color: var(--primary); }

.supplier-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; }
.supplier-tags .pill { font-size: 0.78rem; padding: 5px 11px; }

.supplier-cta { display: flex; gap: 10px; flex-wrap: wrap; }

@media (max-width: 820px) { .supplier-grid { grid-template-columns: 1fr; } .supplier { padding: 26px 22px; } }

/* ---------- How it works ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  counter-reset: step;
  position: relative;
}
.step {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 22px;
  position: relative;
}
.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  display: block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.82rem; font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--primary);
  margin-bottom: 16px;
}
.step h3 { font-size: 1.05rem; margin-bottom: 8px; }
.step p { font-size: 0.92rem; color: var(--text-muted); margin: 0; }
@media (max-width: 920px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .steps { grid-template-columns: 1fr; } }

/* ---------- Trust stats ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  text-align: center;
}
.stat .num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.stat .num .plus { color: var(--orange); }
.stat .lbl { color: var(--text-muted); font-size: 0.92rem; font-weight: 500; }
@media (max-width: 720px) { .stats { grid-template-columns: repeat(2, 1fr); } }

/* ---------- FAQ ---------- */
.faq-wrap { max-width: 820px; margin: 0 auto; }
.faq {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.faq.is-open { border-color: #c7d2fe; box-shadow: var(--shadow); }
.faq-q {
  display: flex; width: 100%; align-items: center; justify-content: space-between;
  text-align: left;
  padding: 20px 22px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--text);
}
.faq-q .plus-ico {
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 999px;
  background: var(--bg-soft);
  color: var(--primary);
  flex: none;
  transition: transform 0.25s ease, background 0.2s ease;
}
.faq.is-open .plus-ico { transform: rotate(45deg); background: var(--primary-soft); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-a-inner { padding: 0 22px 22px; color: var(--text-soft); font-size: 0.96rem; }

/* ---------- Big CTA banner ---------- */
.cta-banner {
  background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  width: 480px; height: 480px;
  right: -200px; top: -200px;
  background: radial-gradient(circle, rgba(255,255,255,0.18) 0%, transparent 70%);
  border-radius: 50%;
}
.cta-banner h2 { color: #fff; max-width: 720px; margin: 0 auto 14px; }
.cta-banner p { color: rgba(255,255,255,0.85); max-width: 620px; margin: 0 auto 28px; font-size: 1.05rem; }
.cta-banner .btn--primary { background: #fff; color: var(--primary); box-shadow: 0 12px 30px -10px rgba(0,0,0,0.35); }
.cta-banner .btn--primary:hover { background: #f1f5f9; color: var(--primary-dark); }
.cta-banner .btn--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,0.45); }
.cta-banner .btn--ghost:hover { border-color: #fff; color: #fff; }
.cta-banner .row { display: inline-flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
@media (max-width: 620px) { .cta-banner { padding: 44px 24px; } }

/* ---------- Footer ---------- */
.site-footer {
  background: #0b1220;
  color: #cbd5e1;
  padding: 72px 0 28px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.site-footer h4 {
  color: #fff;
  font-size: 0.84rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.site-footer p, .site-footer li { color: rgba(255,255,255,0.65); font-size: 0.92rem; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.site-footer a { color: rgba(255,255,255,0.75); transition: color 0.2s ease; }
.site-footer a:hover { color: #fff; }
.foot-brand .logo svg text { fill: #fff !important; }
.foot-brand .logo svg tspan { fill: #60a5fa !important; }
.foot-brand p { max-width: 320px; margin-top: 18px; }
.foot-contact li { display: flex; gap: 10px; align-items: flex-start; }
.foot-contact svg { color: #60a5fa; flex: none; margin-top: 3px; }

.foot-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.84rem;
  color: rgba(255,255,255,0.55);
}
.foot-seo {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  max-width: 100%;
  margin: 24px 0 0;
}
@media (max-width: 820px) { .foot-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .foot-grid { grid-template-columns: 1fr; gap: 32px; } .foot-bottom { flex-direction: column; } }

/* ---------- Reveal animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Disable badge from default styling so it doesn't clash */
#emergent-badge { z-index: 9999; }

/* prevent React root from leaking space */
#root { display: none; }
