:root {
  --bg: #0b1020;
  --bg-2: #111827;
  --text: #f9fafb;
  --muted: #cbd5e1;
  --line: rgba(255, 255, 255, 0.14);
  --accent: #f2c94c;
  --accent-2: #60a5fa;
  --card: rgba(17, 24, 39, 0.78);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.36);
}

* { box-sizing: border-box; }

html { min-height: 100%; }

body {
  min-height: 100vh;
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 20% 15%, rgba(96, 165, 250, 0.28), transparent 30%),
    radial-gradient(circle at 82% 20%, rgba(242, 201, 76, 0.18), transparent 28%),
    linear-gradient(135deg, var(--bg), var(--bg-2));
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
}

.page-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px;
}

.hero-card {
  width: min(760px, 100%);
  padding: clamp(32px, 6vw, 72px);
  border: 1px solid var(--line);
  border-radius: 32px;
  background: var(--card);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  position: relative;
  overflow: hidden;
}

.hero-card::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -120px;
  width: 260px;
  height: 260px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(96, 165, 250, 0.22), rgba(242, 201, 76, 0.18));
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 64px;
}

.brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--accent);
  font-weight: 800;
  letter-spacing: -0.04em;
}

.brand-name {
  font-weight: 700;
  letter-spacing: -0.03em;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

h1 {
  margin: 0;
  max-width: 680px;
  font-size: clamp(2.5rem, 8vw, 5.2rem);
  line-height: 0.94;
  letter-spacing: -0.075em;
}

.lead {
  margin: 24px 0 0;
  max-width: 610px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.7;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 40px;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: #e5e7eb;
  font-size: 0.95rem;
  font-weight: 600;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(242, 201, 76, 0.12);
}

@media (max-width: 560px) {
  .page-shell { padding: 18px; }
  .hero-card { border-radius: 24px; }
  .brand { margin-bottom: 48px; }
  .status { align-items: flex-start; border-radius: 18px; }
  .status-dot { margin-top: 5px; flex: 0 0 auto; }
}
