:root {
  --bg: #050509;
  --bg-soft: #050509;
  --accent: #ff541b;
  --accent-soft: rgba(255, 84, 27, 0.16);
  --text: #f9fafb;
  --muted: #9ca3af;
  --border-subtle: rgba(148, 163, 184, 0.4);
  --card-bg: rgba(15, 15, 20, 0.96);
  --shadow-soft: 0 40px 80px rgba(0, 0, 0, 0.85);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
}

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: radial-gradient(circle at top left, #171721 0, #050509 55%, #000 100%);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}

.page {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  overflow: hidden;
}

.noise {
  position: fixed;
  inset: -50px;
  pointer-events: none;
  opacity: 0.18;
  mix-blend-mode: soft-light;
  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='.8' numOctaves='4' stitchTiles='noStitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");
}

.glow {
  position: absolute;
  width: 580px;
  height: 580px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 84, 27, 0.4), transparent 65%);
  opacity: 0.9;
  filter: blur(20px);
  transform: translate3d(0, 0, 0);
  animation: float 14s ease-in-out infinite;
}

.card {
  position: relative;
  width: 100%;
  max-width: 540px;
  padding: 32px 28px 22px;
  border-radius: 24px;
  background: radial-gradient(circle at 0 0, rgba(255, 84, 27, 0.12), transparent 55%),
    linear-gradient(145deg, rgba(15, 15, 20, 0.96), rgba(10, 10, 14, 0.96));
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(26px) saturate(140%);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  padding: 5px 11px;
  border-radius: 999px;
  background: radial-gradient(circle at 0 0, rgba(255, 84, 27, 0.4), rgba(23, 23, 30, 0.9));
  border: 1px solid rgba(255, 84, 27, 0.8);
  color: var(--text);
  letter-spacing: 0.02em;
}

.badge::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.35);
}

h1 {
  margin: 18px 0 10px;
  font-size: clamp(2.1rem, 3vw, 2.6rem);
  letter-spacing: -0.04em;
}

.subtitle {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 0.97rem;
  line-height: 1.7;
}

.subtitle span {
  color: var(--text);
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid var(--border-subtle);
  color: var(--muted);
  font-size: 0.8rem;
}

.dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(255, 84, 27, 0.7);
  animation: pulse 1.6s infinite;
}

.cta-row {
  margin: 24px 0 10px;
}

.primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: linear-gradient(135deg, var(--accent), #ff7a1b);
  box-shadow: 0 18px 40px rgba(255, 84, 27, 0.55);
  color: #0b1120;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease,
    filter 0.18s ease;
}

.primary:hover {
  transform: translateY(-1px) scale(1.01);
  filter: saturate(1.15);
  box-shadow: 0 24px 55px rgba(255, 84, 27, 0.7);
}

.primary:active {
  transform: translateY(0) scale(0.99);
  box-shadow: 0 10px 30px rgba(255, 84, 27, 0.55);
}

.footer {
  margin-top: 18px;
  padding-top: 10px;
  border-top: 1px dashed rgba(148, 163, 184, 0.4);
  font-size: 0.78rem;
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 84, 27, 0.7);
  }
  70% {
    transform: scale(1.15);
    box-shadow: 0 0 0 12px rgba(255, 84, 27, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 84, 27, 0);
  }
}

@keyframes float {
  0% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(30px, -20px, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}

@media (max-width: 600px) {
  .card {
    padding: 24px 20px 18px;
    border-radius: 20px;
  }

  .footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

