:root {
  --bg: #0f1222;
  --bg-alt: #171d35;
  --surface: #1d2542;
  --surface-soft: rgba(255, 122, 201, 0.2);
  --primary: #ff7ac9;
  --primary-strong: #ffb4e0;
  --text: #eef2ff;
  --muted: #b6bfdc;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 12% 10%, rgba(169, 129, 255, 0.22), transparent 38%),
    radial-gradient(circle at 88% 14%, rgba(255, 122, 201, 0.24), transparent 35%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 100%);
  color: var(--text);
  font-family: "Poppins", "Segoe UI", Arial, sans-serif;
}

.landing {
  min-height: 100vh;
  width: 100%;
  display: grid;
  place-items: center;
  padding: clamp(2rem, 6vw, 5rem) 1.5rem;
}

.hero {
  width: min(860px, 100%);
  text-align: center;
}

.kicker {
  margin: 0 0 1rem;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1 {
  margin: 0.75rem 0 1rem;
  font-size: clamp(2.6rem, 9vw, 5.6rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #f5f8ff;
}

.subtitle {
  margin: 0 auto;
  max-width: 52ch;
  font-size: clamp(1.05rem, 2.4vw, 1.35rem);
  color: var(--muted);
  line-height: 1.6;
}

.availability {
  margin: 1.6rem 0 0;
  color: var(--primary-strong);
  font-size: 1rem;
  font-weight: 500;
}

.development-state {
  margin: 0.85rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 500;
}

.repo-link {
  display: inline-block;
  margin-top: 2rem;
  padding: 0.9rem 1.35rem;
  border-radius: 999px;
  background: var(--primary);
  color: #0e1733;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: transform 150ms ease, background-color 150ms ease;
}

.repo-link:hover,
.repo-link:focus-visible {
  transform: translateY(-2px);
  background: var(--primary-strong);
  outline: none;
}

@media (max-width: 520px) {
  .repo-link {
    width: 100%;
    max-width: 320px;
  }
}
