:root {
  color-scheme: dark;
  --bg: #070a0f;
  --panel: rgba(16, 22, 33, 0.82);
  --text: #f4f7fb;
  --muted: #aeb8c8;
  --line: rgba(255, 255, 255, 0.12);
  --accent: #38bdf8;
  --accent-2: #f59e0b;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  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 22% 18%, rgba(56, 189, 248, 0.22), transparent 28rem),
    radial-gradient(circle at 78% 72%, rgba(245, 158, 11, 0.16), transparent 26rem),
    linear-gradient(135deg, #05070b 0%, #0a101a 54%, #05070b 100%);
}

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

.hero {
  width: min(920px, 100%);
  padding: clamp(32px, 7vw, 80px);
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(18px);
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  pointer-events: none;
}

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

h1 {
  margin: 0;
  font-size: clamp(3rem, 9vw, 7.4rem);
  line-height: 0.9;
  letter-spacing: 0;
}

.lead {
  max-width: 680px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(1.12rem, 2.2vw, 1.55rem);
  line-height: 1.55;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 34px;
  padding: 12px 16px;
  border: 1px solid rgba(56, 189, 248, 0.28);
  color: #d9f4ff;
  background: rgba(56, 189, 248, 0.08);
  font-weight: 700;
}

.status span {
  width: 10px;
  height: 10px;
  background: var(--accent-2);
  box-shadow: 0 0 18px rgba(245, 158, 11, 0.88);
}

@media (max-width: 560px) {
  .stage {
    padding: 18px;
  }

  .hero {
    padding: 34px 26px;
  }
}
