/* Reset & base */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text",
    "Segoe UI", sans-serif;
  background: radial-gradient(circle at top left, #1f2937, #020617 55%, #000);
  color: #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Background visuals */
.bg-blur {
  position: fixed;
  inset: -30%;
  background:
    radial-gradient(circle at 0% 0%, rgba(96, 165, 250, 0.25), transparent 60%),
    radial-gradient(circle at 100% 0%, rgba(244, 114, 182, 0.3), transparent 60%),
    radial-gradient(circle at 50% 100%, rgba(52, 211, 153, 0.18), transparent 55%);
  filter: blur(60px);
  opacity: 0.9;
  z-index: -2;
}

.noise {
  pointer-events: none;
  position: fixed;
  inset: -50px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='noStitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.18'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
  z-index: -1;
}

/* Layout */
.wrapper {
  width: 100%;
  max-width: 480px;
  padding: 24px;
}

.card {
  width: 100%;
  border-radius: 24px;
  padding: 28px 26px 24px;
}

/* Glassmorphism effect */
.glass {
  background: radial-gradient(circle at top left, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.75));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 18px 45px rgba(0, 0, 0, 0.75),
    0 0 0 1px rgba(148, 163, 184, 0.06) inset;
  backdrop-filter: blur(22px) saturate(130%);
  -webkit-backdrop-filter: blur(22px) saturate(130%);
}

/* Content styling */
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(148, 163, 184, 0.4);
  color: #e5e7eb;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.status-pill .dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 12px rgba(34, 197, 94, 0.9);
}

.status-text {
  opacity: 0.9;
}

h1 {
  margin-top: 20px;
  font-size: 28px;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: #f9fafb;
}

.subtitle {
  margin-top: 10px;
  color: #9ca3af;
  font-size: 14px;
  line-height: 1.6;
}

.divider {
  margin: 18px 0 14px;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(148, 163, 184, 0),
    rgba(148, 163, 184, 0.7),
    rgba(148, 163, 184, 0)
  );
  opacity: 0.7;
}

.small {
  font-size: 12px;
  color: #9ca3af;
  line-height: 1.5;
}

.notify-form {
  margin-top: 14px;
  display: flex;
  gap: 10px;
}

.input {
  flex: 1;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  background: radial-gradient(circle at top left, rgba(15, 23, 42, 0.95), rgba(15, 23, 42, 0.85));
  color: #e5e7eb;
  font-size: 13px;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.input::placeholder {
  color: #6b7280;
}

.input:focus {
  border-color: rgba(96, 165, 250, 0.9);
  box-shadow: 0 0 0 1px rgba(96, 165, 250, 0.5), 0 12px 30px rgba(15, 23, 42, 0.9);
  background: radial-gradient(circle at top left, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.9));
}

.button {
  padding: 10px 18px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  background: linear-gradient(135deg, #60a5fa, #a855f7);
  color: #0b1120;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow:
    0 10px 25px rgba(37, 99, 235, 0.6),
    0 0 0 1px rgba(15, 23, 42, 0.9);
  transition: transform 0.12s ease, box-shadow 0.12s ease, filter 0.12s ease;
}

.button:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
  box-shadow:
    0 14px 35px rgba(37, 99, 235, 0.75),
    0 0 0 1px rgba(15, 23, 42, 0.95);
}

.button:active {
  transform: translateY(0);
  box-shadow:
    0 8px 20px rgba(15, 23, 42, 0.9),
    0 0 0 1px rgba(15, 23, 42, 1);
}

.footer-text {
  margin-top: 20px;
  font-size: 11px;
  color: #6b7280;
  text-align: center;
}

/* Responsive tweaks */
@media (max-width: 480px) {
  .card {
    padding: 24px 20px 20px;
    border-radius: 20px;
  }

  h1 {
    font-size: 24px;
  }

  .notify-form {
    flex-direction: column;
  }

  .button {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}


