:root {
  --primary: #00FFD4;
  --bg: #050711;
  --text-main: #F9FAFB;
  --text-muted: #9CA3AF;
  --border-subtle: rgba(148, 163, 184, 0.25);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Plus Jakarta Sans", sans-serif;
}

body {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background:
    radial-gradient(circle at 0% 0%, rgba(0, 255, 212, 0.08), transparent 55%),
    radial-gradient(circle at 100% 100%, rgba(0, 255, 212, 0.06), transparent 55%),
    var(--bg);
  color: var(--text-main);
  position: relative;
  overflow: hidden;
}

.glow-orb {
  position: absolute;
  width: 70vmax;
  height: 70vmax;
  background: radial-gradient(circle, rgba(0, 255, 212, 0.16), transparent 65%);
  filter: blur(32px);
  opacity: 0.8;
  z-index: 0;
}

.grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(148,163,184,0.09) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(148,163,184,0.07) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(circle at center, black, transparent 70%);
  opacity: 0.55;
  z-index: 0;
  pointer-events: none;
}

.wrapper {
  z-index: 1;
  width: 100%;
  max-width: 720px;
}

.card {
  position: relative;
  border-radius: 28px;
  padding: clamp(2rem, 4vw, 2.8rem);
  background: radial-gradient(circle at top left, rgba(0,255,212,0.18), transparent 55%),
              radial-gradient(circle at bottom right, rgba(15,23,42,0.9), rgba(15,23,42,0.98));
  border: 1px solid var(--border-subtle);
  backdrop-filter: blur(26px);
  box-shadow:
    0 24px 80px rgba(15,23,42,0.8),
    0 0 0 1px rgba(15,23,42,0.8);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.28rem 0.85rem;
  border-radius: 999px;
  background: rgba(15,23,42,0.75);
  border: 1px solid rgba(148,163,184,0.45);
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--primary);
  box-shadow: 0 0 10px rgba(0,255,212,0.8);
}

h1 {
  font-size: clamp(2.4rem, 4vw, 3.3rem);
  line-height: 1.1;
  margin-bottom: 0.9rem;
}

.accent {
  color: var(--primary);
  text-shadow: 0 0 14px rgba(0,255,212,0.7);
}

.subtitle {
  font-size: 0.98rem;
  color: var(--text-muted);
  max-width: 32rem;
  margin-bottom: 1.9rem;
}

.meta-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.chip {
  font-size: 0.8rem;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  color: var(--text-muted);
  background: rgba(15, 23, 42, 0.85);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.chip-indicator {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(0, 255, 212, 0.9);
}

.pill-right {
  font-size: 0.8rem;
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(148,163,184,0.4);
  background: rgba(15,23,42,0.9);
}

.pill-dot {
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: rgba(148,163,184,0.7);
}

.accent-bar {
  margin-top: 1.6rem;
  height: 1px;
  width: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0,255,212,0.7),
    rgba(56,189,248,0.7),
    transparent
  );
  position: relative;
  overflow: hidden;
}

.accent-bar::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,0.9),
    transparent
  );
  width: 90px;
  transform: translateX(-100%);
  animation: sweep 2.4s ease-in-out infinite;
  opacity: 0.9;
}

@keyframes sweep {
  0%   { transform: translateX(-110%); }
  50%  { transform: translateX(120%); }
  100% { transform: translateX(120%); }
}
