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

:root {
  --eb-primary:   #8b5cf6;
  --eb-secondary: #ec4899;
  --eb-bg:        #0a0a0f;
  --eb-surface:   #0d0d18;
  --eb-card:      #111120;
  --eb-border:    rgba(255,255,255,0.07);
  --eb-muted:     #6b6b8a;
}

body::before {
  content: '';
  position: fixed; inset: 0;
  background:
    radial-gradient(ellipse 55% 35% at 20% 5%,  rgba(139,92,246,.08) 0%, transparent 65%),
    radial-gradient(ellipse 45% 30% at 80% 90%, rgba(236,72,153,.05) 0%, transparent 65%);
  pointer-events: none; z-index: 0;
}

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--eb-bg); }
::-webkit-scrollbar-thumb { background: var(--eb-primary); border-radius: 2px; }

/* ── HEADER ── */
.eb-header {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 24px; height: 60px;
  background: rgba(10,10,15,.92); backdrop-filter: blur(14px);
  border: 1px solid var(--eb-border); border-radius: 10px;
}

.eb-logo { display: flex; align-items: center; gap: 11px; text-decoration: none; }

.eb-symbol {
  width: 32px; height: 32px; border-radius: 50%; flex-shrink: 0;
  background: radial-gradient(circle at center, #000 38%, #8b5cf6 42%, #ec4899 70%, transparent 72%);
  box-shadow: 0 0 8px #8b5cf6, 0 0 20px rgba(139,92,246,.45);
}

.eb-brand-name {
  font-family: 'Syne', sans-serif; font-weight: 800;
  font-size: 1.15rem; letter-spacing: .06em; color: #fff; line-height: 1;
}
.eb-brand-tld {
  font-family: 'JetBrains Mono', monospace; font-size: .58rem;
  letter-spacing: .28em; color: #ec4899; text-transform: uppercase;
  display: block; margin-top: 2px;
}

.eb-nav-links { display: flex; align-items: center; gap: 2px; }
.eb-nav-link {
  padding: 6px 13px; border-radius: 6px; font-size: .81rem;
  color: var(--eb-muted); text-decoration: none;
  transition: color .2s, background .2s; white-space: nowrap;
}
.eb-nav-link:hover, .eb-nav-link.active { color: #fff; background: rgba(139,92,246,.1); }

.eb-cart-btn {
  position: relative; padding: 7px 10px; border: 1px solid var(--eb-border);
  border-radius: 7px; color: var(--eb-muted); background: transparent;
  transition: border-color .2s, color .2s; text-decoration: none;
  display: flex; align-items: center;
}
.eb-cart-btn:hover { border-color: var(--eb-primary); color: #fff; }

.eb-login-btn {
  padding: 7px 16px; border: 1px solid var(--eb-border); border-radius: 7px;
  color: var(--eb-muted); background: transparent; font-size: .81rem;
  font-family: 'Inter', sans-serif; cursor: pointer;
  transition: border-color .2s, color .2s; white-space: nowrap;
}
.eb-login-btn:hover { border-color: var(--eb-primary); color: #fff; }

/* ── HERO ── */
.eb-hero {
  text-align: center; padding: 80px 0 64px;
  display: flex; flex-direction: column; align-items: center;
}

.eb-hero-eyebrow {
  font-family: 'JetBrains Mono', monospace; font-size: .68rem;
  letter-spacing: .2em; color: var(--eb-primary); text-transform: uppercase;
  margin-bottom: 36px; display: flex; align-items: center; gap: 14px;
}
.eb-hero-eyebrow::before, .eb-hero-eyebrow::after {
  content: ''; width: 40px; height: 1px; background: var(--eb-primary); opacity: .35;
}

.eb-hero-symbol {
  width: 88px; height: 88px; border-radius: 50%;
  background: radial-gradient(circle at center, #000 38%, #8b5cf6 42%, #ec4899 70%, transparent 72%);
  box-shadow: 0 0 18px #8b5cf6, 0 0 50px rgba(139,92,246,.45), 0 0 90px rgba(139,92,246,.18);
  animation: eb-pulse 3s ease-in-out infinite;
  margin-bottom: 22px;
}
@keyframes eb-pulse {
  0%,100% { box-shadow: 0 0 18px #8b5cf6, 0 0 50px rgba(139,92,246,.45), 0 0 90px rgba(139,92,246,.18); }
  50%      { box-shadow: 0 0 26px #8b5cf6, 0 0 70px rgba(139,92,246,.6),  0 0 120px rgba(139,92,246,.28); }
}

.eb-hero-brand {
  font-family: 'Syne', sans-serif; font-weight: 800;
  font-size: clamp(3.2rem, 8vw, 5.5rem); letter-spacing: .06em;
  text-transform: lowercase; color: #fff; line-height: 1;
  text-shadow: 0 0 40px rgba(139,92,246,.25); margin-bottom: 8px;
}
.eb-hero-tld {
  font-family: 'JetBrains Mono', monospace; font-size: .88rem;
  letter-spacing: .35em; color: #ec4899; text-transform: uppercase; margin-bottom: 28px;
}

.eb-hero-tagline {
  font-family: 'Syne', sans-serif; font-weight: 800;
  font-size: clamp(1.7rem, 3.5vw, 2.6rem); letter-spacing: .01em;
  background: linear-gradient(135deg, #fff 30%, #8b5cf6 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; margin-bottom: 14px;
}

.eb-hero-headline {
  font-family: 'Syne', sans-serif; font-size: clamp(1rem, 2vw, 1.35rem);
  font-weight: 600; color: var(--eb-muted);
  margin: 0 0 40px; max-width: 460px; line-height: 1.55;
}
.eb-hero-headline em { color: #fff; font-style: normal; }

.eb-hero-actions {
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 56px;
}

.eb-btn-primary {
  padding: 12px 28px; background: linear-gradient(135deg, #8b5cf6, #ec4899);
  border: none; border-radius: 7px; color: #fff;
  font-family: 'Inter', sans-serif; font-weight: 600; font-size: .88rem;
  cursor: pointer; text-decoration: none; display: inline-block;
  transition: opacity .2s, transform .15s;
}
.eb-btn-primary:hover { opacity: .85; transform: translateY(-1px); }

.eb-btn-outline {
  padding: 12px 28px; background: transparent;
  border: 1px solid var(--eb-border); border-radius: 7px; color: var(--eb-muted);
  font-family: 'Inter', sans-serif; font-weight: 500; font-size: .88rem;
  cursor: pointer; text-decoration: none; display: inline-block;
  transition: border-color .2s, color .2s;
}
.eb-btn-outline:hover { border-color: var(--eb-primary); color: #fff; }

.eb-hero-stats {
  display: flex; gap: 52px; justify-content: center;
  flex-wrap: wrap; padding-top: 44px; border-top: 1px solid var(--eb-border); width: 100%;
}
.eb-stat { text-align: center; }
.eb-stat-number {
  font-family: 'Syne', sans-serif; font-size: 2.1rem; font-weight: 800;
  background: linear-gradient(135deg, #8b5cf6, #ec4899);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; line-height: 1; margin-bottom: 6px;
}
.eb-stat-label {
  font-family: 'JetBrains Mono', monospace; font-size: .62rem;
  color: var(--eb-muted); letter-spacing: .14em; text-transform: uppercase;
}

/* ── VIDEO SHOWCASE ── */
.eb-video-section {
  margin-top: 72px; text-align: center;
}
.eb-video-eyebrow {
  font-family: 'JetBrains Mono', monospace; font-size: .68rem;
  letter-spacing: .2em; color: var(--eb-primary); text-transform: uppercase; margin-bottom: 8px;
}
.eb-video-title {
  font-family: 'Syne', sans-serif; font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800; color: #fff; margin-bottom: 8px;
}
.eb-video-sub { font-size: .88rem; color: var(--eb-muted); margin-bottom: 28px; }

.eb-video-wrap {
  border-radius: 12px; overflow: hidden;
  border: 1px solid var(--eb-border);
  box-shadow: 0 0 40px rgba(139,92,246,.12), 0 0 80px rgba(139,92,246,.06);
}
.eb-video-wrap lite-youtube {
  width: 100%; border-radius: 12px;
  --lyt-activebg: linear-gradient(135deg, #8b5cf6, #ec4899);
}

/* ── PRODUCTS SECTION ── */
.eb-products-section { margin-top: 72px; }

/* ── SECTION LABELS ── */
.eb-section-eyebrow {
  font-family: 'JetBrains Mono', monospace; font-size: .67rem;
  letter-spacing: .2em; color: var(--eb-primary);
  text-transform: uppercase; margin-bottom: 6px;
}
.eb-section-title {
  font-family: 'Syne', sans-serif; font-size: 1.7rem;
  font-weight: 800; color: #fff; margin-bottom: 22px;
}

/* ── PRODUCT CARD ── */
.eb-product-card {
  background: var(--eb-card) !important; border: 1px solid var(--eb-border) !important;
  border-radius: 10px !important; overflow: hidden;
  transition: border-color .25s, transform .2s !important;
  display: block; height: 100%; text-decoration: none; color: #fff;
}
.eb-product-card:hover { border-color: rgba(139,92,246,.45) !important; transform: translateY(-2px); }

/* Image wrap — relative so the badge can overlay */
.eb-card-img-wrap {
  position: relative; border-bottom: 1px solid var(--eb-border);
}
.eb-card-img-wrap img {
  width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block;
}
.eb-card-img-placeholder {
  aspect-ratio: 16/9; display: flex; align-items: center; justify-content: center;
  color: rgba(139,92,246,.3); background: rgba(139,92,246,.04);
}

/* ── STATUS BADGE (overlaid on image) ── */
.eb-status-badge {
  position: absolute; top: 10px; right: 10px;
  font-family: 'JetBrains Mono', monospace; font-size: .6rem;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 100px;
  border: 1px solid transparent;
  backdrop-filter: blur(6px);
}
.eb-status-in      { background: rgba(34,211,160,.18);  border-color: rgba(34,211,160,.35);  color: #22d3a0; }
.eb-status-out     { background: rgba(248,113,113,.18); border-color: rgba(248,113,113,.35); color: #f87171; }
.eb-status-dynamic { background: rgba(139,92,246,.18);  border-color: rgba(139,92,246,.35);  color: #a78bfa; }

.eb-card-header {
  padding: 14px 16px; border-bottom: 1px solid var(--eb-border);
  display: flex; justify-content: space-between; align-items: center; gap: 10px;
}
.eb-card-name { font-family: 'Syne', sans-serif; font-size: .98rem; font-weight: 700; }
.eb-card-variants {
  font-family: 'JetBrains Mono', monospace; font-size: .6rem; color: var(--eb-muted);
  letter-spacing: .08em; white-space: nowrap;
}

.eb-card-body { padding: 14px 16px; }
.eb-card-price {
  font-family: 'Syne', sans-serif; font-size: 1.3rem; font-weight: 800; color: #8b5cf6;
}
.eb-card-price-sep { color: var(--eb-muted); margin: 0 4px; font-size: 1rem; }
.eb-card-price-slash {
  font-size: .8rem; color: var(--eb-muted); text-decoration: line-through;
  margin-left: 8px; font-family: 'Inter', sans-serif; font-weight: 400;
}

.eb-card-footer { padding: 12px 16px; border-top: 1px solid var(--eb-border); }
.eb-card-buy-btn {
  display: block; width: 100%; padding: 9px;
  background: linear-gradient(135deg, #8b5cf6, #ec4899);
  border: none; border-radius: 6px; color: #fff;
  font-family: 'Inter', sans-serif; font-weight: 600; font-size: .83rem;
  text-align: center; cursor: pointer; transition: opacity .2s;
}
.eb-card-buy-btn:hover { opacity: .85; }

/* ── SEARCH ── */
.eb-search {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 16px; background: var(--eb-card);
  border: 1px solid var(--eb-border); border-radius: 8px;
  margin-bottom: 20px; transition: border-color .2s;
}
.eb-search:focus-within { border-color: rgba(139,92,246,.4); }
.eb-search input {
  background: transparent; border: none; outline: none;
  color: #fff; font-size: .87rem; width: 100%; font-family: 'Inter', sans-serif;
}
.eb-search input::placeholder { color: var(--eb-muted); }

/* ── FEATURES (below products) ── */
.eb-features-section {
  margin-top: 80px; padding-top: 64px; border-top: 1px solid var(--eb-border);
}
.eb-features {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 14px; margin-top: 28px;
}
.eb-feature-card {
  padding: 22px 20px; background: var(--eb-card);
  border: 1px solid var(--eb-border); border-radius: 10px; transition: border-color .2s;
}
.eb-feature-card:hover { border-color: rgba(139,92,246,.3); }
.eb-feature-icon { font-size: 1.3rem; margin-bottom: 12px; }
.eb-feature-title { font-family: 'Syne', sans-serif; font-size: .95rem; font-weight: 700; margin-bottom: 7px; color: #fff; }
.eb-feature-desc { font-size: .8rem; color: var(--eb-muted); line-height: 1.6; }

/* ── FOOTER ── */
.eb-footer {
  border: 1px solid var(--eb-border) !important;
  border-radius: 10px !important;
  background: var(--eb-surface) !important;
  margin-top: 64px;
}

/* ── STATUS BADGE DOT ── */
.eb-status-dot {
  display: inline-block; width: 6px; height: 6px;
  border-radius: 50%; margin-right: 5px;
  vertical-align: middle; flex-shrink: 0;
  animation: eb-dot-pulse 2s ease-in-out infinite;
}
@keyframes eb-dot-pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: .4; }
}
