:root {
  --bg: #121317;
  --ink: #f5f6f8;
  --ink-secondary: #c4c6d0;
  --pill-bg: rgba(139, 148, 191, 0.08);
  --pill-border: rgba(139, 148, 191, 0.16);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Figtree', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

body {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow-x: hidden;
  position: relative;
}

.dots {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(2px 2px at 10% 20%, #3279f9 0%, transparent 60%),
    radial-gradient(2px 2px at 85% 15%, #8b5cf6 0%, transparent 60%),
    radial-gradient(2px 2px at 70% 80%, #22c55e 0%, transparent 60%),
    radial-gradient(2px 2px at 25% 75%, #f59e0b 0%, transparent 60%),
    radial-gradient(1.5px 1.5px at 50% 10%, #5b93ff 0%, transparent 60%),
    radial-gradient(1.5px 1.5px at 15% 55%, #c4c6d0 0%, transparent 60%),
    radial-gradient(1.5px 1.5px at 90% 60%, #f59e0b 0%, transparent 60%),
    radial-gradient(1.5px 1.5px at 60% 90%, #8b5cf6 0%, transparent 60%);
  opacity: 0.6;
}

main {
  position: relative;
  z-index: 1;
  max-width: 720px;
  padding: 24px;
  text-align: center;
}

.wordmark {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 56px;
}

.wordmark img {
  height: 44px;
  width: auto;
}

.wordmark span {
  font-size: 26px;
  font-weight: 500;
  color: var(--ink-secondary);
}

h1 {
  font-size: clamp(32px, 6vw, 56px);
  line-height: 1.1;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
}

.subtext {
  font-size: clamp(16px, 2.2vw, 20px);
  line-height: 1.4;
  color: var(--ink-secondary);
  font-weight: 400;
  margin: 0 0 40px;
}

.contacts {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 10px 24px;
  border-radius: 9999px;
  background: var(--pill-bg);
  border: 1px solid var(--pill-border);
  color: var(--ink);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: background 150ms ease-out;
}

.pill:hover {
  background: var(--pill-border);
}

@media (max-width: 480px) {
  .wordmark { margin-bottom: 32px; }
  .contacts { flex-direction: column; align-items: center; }
}
