:root {
  color-scheme: dark;
  --bg: #08111d;
  --bg-soft: #0c1a2c;
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.72);
  --soft: rgba(255, 255, 255, 0.54);
  --line: rgba(255, 255, 255, 0.14);
  --accent: #2ca3f1;
  --accent-strong: #0972e2;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--bg);
}

body {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  background:
    linear-gradient(135deg, rgba(9, 114, 226, 0.24), transparent 34%),
    radial-gradient(circle at 82% 14%, rgba(44, 163, 241, 0.24), transparent 28%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 100%);
  color: var(--text);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

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

img {
  display: block;
  max-width: 100%;
}

.page-shell {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  min-height: 100vh;
  padding: clamp(24px, 4vw, 56px);
}

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: min(880px, 100%);
  margin: auto;
  text-align: center;
}

.hero__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 820px;
}

.brand {
  width: min(186px, 52vw);
  height: auto;
  margin-bottom: clamp(54px, 10vh, 96px);
}

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

h1 {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(4rem, 9vw, 8rem);
  line-height: 0.94;
  letter-spacing: 0;
}

.intro {
  max-width: 660px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.4vw, 1.3rem);
  line-height: 1.7;
}

.status-row {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  margin-top: 36px;
  padding: 0 16px;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  font-weight: 700;
}

.pulse {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #42e69f;
  box-shadow: 0 0 0 8px rgba(66, 230, 159, 0.12);
}

@media (max-width: 920px) {
  .page-shell {
    padding: 28px 20px 40px;
  }

  .brand {
    margin-bottom: 58px;
  }

  h1 {
    font-size: clamp(3.5rem, 18vw, 6.5rem);
  }
}

@media (max-width: 520px) {
  .brand {
    margin-bottom: 48px;
  }

  .intro {
    margin-top: 22px;
  }

  .status-row {
    width: 100%;
    justify-content: center;
  }
}
