*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #0f172a;
  --surface: #1e293b;
  --text: #f1f5f9;
  --muted: #94a3b8;
  --accent: #38bdf8;
  --accent-hover: #7dd3fc;
}

body {
  min-height: 100vh;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  background: radial-gradient(ellipse at top, #1e3a5f 0%, var(--bg) 60%);
  color: var(--text);
  line-height: 1.6;
}

.welcome {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 2rem;
  text-align: center;
}

.welcome__header {
  margin-bottom: 2rem;
}

.welcome__badge {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.35rem 0.85rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(56, 189, 248, 0.12);
  border: 1px solid rgba(56, 189, 248, 0.3);
  border-radius: 999px;
}

.welcome__header h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
}

.welcome__subtitle {
  margin-top: 0.75rem;
  font-size: 1.1rem;
  color: var(--muted);
}

.welcome__card {
  max-width: 32rem;
  padding: 1.75rem 2rem;
  background: var(--surface);
  border: 1px solid rgba(148, 163, 184, 0.15);
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.welcome__card p {
  color: var(--muted);
}

.welcome__links {
  margin-top: 1.25rem;
  list-style: none;
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.welcome__links a {
  display: inline-block;
  padding: 0.6rem 1.25rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--bg);
  background: var(--accent);
  border-radius: 8px;
  transition: background 0.2s;
}

.welcome__links a:hover {
  background: var(--accent-hover);
}

.welcome__footer {
  margin-top: 2.5rem;
  font-size: 0.875rem;
  color: var(--muted);
}
