.hero::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  padding: 1px;
  background:
    linear-gradient(
      120deg,
      rgba(125, 211, 252, 0.55),
      rgba(255, 255, 255, 0.10),
      rgba(192, 132, 252, 0.55),
      rgba(103, 232, 249, 0.45)
    );
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.75;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(255, 255, 255, 0.13), transparent 30%);
  pointer-events: none;
  z-index: -1;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  margin-bottom: 22px;
  color: rgba(245, 250, 255, 0.94);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.10),
    0 10px 30px rgba(0, 0, 0, 0.18);
  letter-spacing: 0.02em;
  font-size: 14px;
  backdrop-filter: blur(10px);
}

.badge-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 35%, #fff, var(--accent));
  box-shadow:
    0 0 20px rgba(125, 211, 252, 0.8),
    0 0 40px rgba(125, 211, 252, 0.35);
  animation: pulse 2.4s ease-in-out infinite;
  flex: 0 0 auto;
}

h1 {
  margin: 0;
  line-height: 0.96;
  letter-spacing: -0.05em;
  font-size: clamp(42px, 8vw, 108px);
  font-weight: 900;
  text-wrap: balance;
  text-shadow:
    0 0 30px rgba(255, 255, 255, 0.08),
    0 10px 40px rgba(0, 0, 0, 0.45);
}

.gradient-text {
  background:
    linear-gradient(
      135deg,
      #ffffff 0%,
      #dbeafe 22%,
      #93c5fd 42%,
      #c4b5fd 64%,
      #ecfeff 82%,
      #ffffff 100%
    );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 6px 24px rgba(125, 211, 252, 0.08));
}

.subtitle {
  margin: 22px auto 0;
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(16px, 2vw, 22px);
  line-height: 1.65;
  text-wrap: pretty;
  text-shadow: 0 6px 24px rgba(0, 0, 0, 0.35);
}

.pill {
  padding: 12px 16px;
  border-radius: 999px;
  color: rgba(240, 247, 255, 0.88);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(10px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.10),
    0 6px 20px rgba(0, 0, 0, 0.20);
  font-size: 14px;
  letter-spacing: 0.01em;
}

.time,
.footer-note {
  font-size: clamp(12px, 1.3vw, 14px);
  color: rgba(236, 244, 255, 0.55);
  letter-spacing: 0.08em;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.time {
  text-transform: uppercase;
}

.footer-note {
  letter-spacing: 0.03em;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.9;
  }
  50% {
    transform: scale(1.18);
    opacity: 1;
  }
}

@media (max-width: 720px) {
  .pill {
    font-size: 13px;
    padding: 10px 14px;
  }
}
