:root {
  --bg-1: #0b1020;
  --bg-2: #121a31;
  --text-main: #f8fafc;
  --text-soft: #cbd5e1;
  --orange: #f97316;
  --orange-soft: #fb923c;
  --line: rgba(255, 255, 255, 0.14);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Inter", Arial, sans-serif;
  color: var(--text-main);
  background: radial-gradient(1000px 500px at 10% 0%, #1a2445 0%, transparent 60%),
    radial-gradient(900px 400px at 100% 100%, rgba(249, 115, 22, 0.24) 0%, transparent 62%),
    linear-gradient(145deg, var(--bg-1), var(--bg-2));
  overflow: hidden;
}

.bg-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(42px);
  opacity: 0.6;
  animation: drift 14s ease-in-out infinite;
}

.glow-a {
  width: 320px;
  height: 320px;
  background: rgba(251, 146, 60, 0.44);
  top: -80px;
  right: 8%;
}

.glow-b {
  width: 260px;
  height: 260px;
  background: rgba(59, 130, 246, 0.22);
  left: 6%;
  bottom: 4%;
  animation-delay: 3s;
}

.glow-c {
  width: 220px;
  height: 220px;
  background: rgba(249, 115, 22, 0.24);
  left: 48%;
  top: 60%;
  animation-delay: 1.5s;
}

.grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 44px 44px;
  -webkit-mask-image: radial-gradient(circle at center, black 30%, transparent 82%);
  mask-image: radial-gradient(circle at center, black 30%, transparent 82%);
}

.page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 1rem;
  position: relative;
  z-index: 2;
}

.premium-card {
  width: min(780px, 100%);
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: clamp(1.4rem, 3vw, 2.5rem);
  background: linear-gradient(170deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.02));
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.48);
  text-align: center;
  animation: rise 0.9s ease both;
}

.eyebrow {
  margin: 0 0 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.72rem;
  color: var(--text-soft);
}

h1 {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: clamp(2.3rem, 8vw, 4.2rem);
  line-height: 1;
  letter-spacing: 0.06em;
}

.subtitle {
  margin: 0.55rem 0 1.15rem;
  letter-spacing: 0.28em;
  font-size: 0.72rem;
  color: rgba(248, 250, 252, 0.84);
}

.lead {
  margin: 0 auto;
  max-width: 56ch;
  color: var(--text-soft);
  font-size: clamp(0.95rem, 1.8vw, 1.08rem);
  line-height: 1.55;
}

.actions {
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  text-decoration: none;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  font-weight: 700;
  border-radius: 999px;
  padding: 0.7rem 1.2rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
  color: #0b1020;
  background: linear-gradient(140deg, var(--orange-soft), var(--orange));
  box-shadow: 0 10px 28px rgba(249, 115, 22, 0.42);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(249, 115, 22, 0.5);
}

.status {
  border: 1px solid rgba(248, 250, 252, 0.22);
  border-radius: 999px;
  padding: 0.66rem 1rem;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: rgba(248, 250, 252, 0.78);
}

.footer {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 1rem;
  text-align: center;
  color: rgba(248, 250, 252, 0.62);
  font-size: 0.76rem;
  z-index: 2;
}

@keyframes drift {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(16px, -12px);
  }
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 640px) {
  .premium-card {
    border-radius: 20px;
  }

  .status {
    width: 100%;
  }
}
