:root {
  --bg: #07070c;
  --text: #f4f4f8;
  --muted: #9a9ab0;
  --dim: #6b6b82;
  --line: rgba(255,255,255,0.1);
  --accent: #a29bfe;
  --cyan: #00d2ff;
  --grad: linear-gradient(135deg, #6c5ce7, #00d2ff);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  min-height: 100vh;
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
  background:
    radial-gradient(ellipse 70% 50% at 20% 0%, rgba(108,92,231,0.28), transparent 55%),
    radial-gradient(ellipse 50% 40% at 90% 80%, rgba(0,210,255,0.12), transparent 50%),
    var(--bg);
  color: var(--text);
  display: grid;
  place-items: center;
  padding: 2rem 1.25rem;
  -webkit-font-smoothing: antialiased;
}
.wrap { width: min(100%, 520px); text-align: center; }
.badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.4rem 0.85rem; border-radius: 999px;
  border: 1px solid rgba(0,255,157,0.35);
  background: rgba(0,255,157,0.08);
  color: #7dffa8; font-size: 0.82rem; font-weight: 600;
  margin-bottom: 1.5rem;
}
.dot {
  width: 8px; height: 8px; border-radius: 50%; background: #00ff9d;
  box-shadow: 0 0 0 0 rgba(0,255,157,0.45);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  70% { box-shadow: 0 0 0 10px rgba(0,255,157,0); }
  100% { box-shadow: 0 0 0 0 rgba(0,255,157,0); }
}
h1 {
  font-size: clamp(2rem, 7vw, 2.8rem);
  letter-spacing: -0.03em; font-weight: 700; margin-bottom: 0.85rem;
}
h1 span {
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.lead {
  color: var(--muted); font-size: 1.05rem; line-height: 1.55;
  margin-bottom: 2rem;
}
.meta {
  display: grid; gap: 0.65rem; text-align: left;
  padding: 1.15rem 1.25rem;
  border: 1px solid var(--line); border-radius: 14px;
  background: rgba(255,255,255,0.03);
  margin-bottom: 1.75rem;
}
.meta div {
  display: flex; justify-content: space-between; gap: 1rem;
  font-size: 0.9rem; padding: 0.35rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.meta div:last-child { border-bottom: 0; }
.meta strong { color: var(--dim); font-weight: 500; }
.meta span { color: var(--text); font-family: ui-monospace, Menlo, monospace; font-size: 0.85rem; }
.back {
  color: var(--accent); font-weight: 600; font-size: 0.95rem;
  text-decoration: none;
}
.back:hover { color: var(--cyan); }
