:root {
  color-scheme: dark;
  --bg: #15171b;
  --panel: #20242a;
  --text: #ffffff;
  --soft: #dcddde;
  --muted: #b8c2d6;
  --brand: #2f6df6;
  --online: #23c483;
  --warn: #ff6b5f;
  --border: rgba(255, 255, 255, 0.11);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  margin: 0;
  background:
    linear-gradient(180deg, rgba(47, 109, 246, 0.12) 0%, transparent 28rem),
    linear-gradient(135deg, var(--bg) 0%, var(--panel) 48%, #171a1f 100%);
  color: var(--text);
}

main {
  width: min(920px, calc(100% - 40px));
  margin: 0 auto;
  padding: 32px 0 64px;
}

.brand {
  display: inline-flex;
  margin-bottom: 72px;
  color: var(--text);
  font-size: 1.05rem;
  font-weight: 800;
  text-decoration: none;
}

.brand span {
  color: var(--online);
}

.hero {
  max-width: 780px;
  padding: 48px 0 36px;
}

.hero.compact {
  padding-bottom: 18px;
}

.kicker {
  margin: 0 0 14px;
  color: var(--online);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(2.6rem, 8vw, 5.25rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin: 30px 0 10px;
  font-size: 1.35rem;
}

p {
  max-width: 720px;
  color: var(--soft);
  font-size: 1.08rem;
  line-height: 1.72;
}

a {
  color: var(--text);
  text-underline-offset: 0.2em;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  margin-top: 16px;
  padding: 0 22px;
  border-radius: 8px;
  background: var(--brand);
  color: #ffffff;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 18px 42px rgba(47, 109, 246, 0.28);
}

.content {
  margin-top: 32px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
}
