:root {
  color-scheme: dark;
  --bg: #101114;
  --panel: #191b20;
  --text: #f6f2ea;
  --muted: #c2b8a6;
  --accent: #ffcf4d;
  --accent-strong: #ff8a3d;
  --line: rgba(255, 255, 255, 0.14);
}

* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  margin: 0;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 207, 77, 0.16), transparent 28rem),
    linear-gradient(135deg, #101114 0%, #20242b 48%, #111418 100%);
}

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

.hero {
  width: min(100%, 760px);
  padding: clamp(32px, 7vw, 72px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(25, 27, 32, 0.78);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.35);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.lead {
  max-width: 560px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.65;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 34px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 207, 77, 0.3);
  border-radius: 8px;
  color: var(--text);
  background: rgba(255, 207, 77, 0.08);
  font-weight: 700;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  box-shadow: 0 0 20px rgba(255, 207, 77, 0.7);
}

@media (max-width: 520px) {
  .shell {
    padding: 18px;
  }

  .hero {
    padding: 28px;
  }

  .status {
    align-items: flex-start;
  }

  .status-dot {
    flex: 0 0 auto;
    margin-top: 6px;
  }
}
