:root {
  --bg: #0c1116;
  --bg-2: #0f1720;
  --accent: #1aa0a0;
  --accent-bright: #34d6cf;
  --text: #eef2f4;
  --muted: #93a1ac;
  --border: rgba(255, 255, 255, 0.08);
}

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

html,
body {
  height: 100%;
}

body {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
  min-height: 100%;
}

/* Ambient animated glow */
.glow {
  position: fixed;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(48rem 48rem at 18% 12%, rgba(26, 160, 160, 0.22), transparent 60%),
    radial-gradient(42rem 42rem at 85% 88%, rgba(52, 214, 207, 0.16), transparent 60%),
    linear-gradient(160deg, var(--bg) 0%, var(--bg-2) 100%);
  animation: drift 18s ease-in-out infinite alternate;
}

@keyframes drift {
  from {
    transform: translate3d(-1.5%, -1%, 0) scale(1.02);
  }
  to {
    transform: translate3d(1.5%, 1%, 0) scale(1.06);
  }
}

.wrap {
  position: relative;
  z-index: 1;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6vh 1.5rem;
  gap: 2rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.4rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(6px);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-bright);
  box-shadow: 0 0 0 0 rgba(52, 214, 207, 0.7);
  animation: pulse 2.2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(52, 214, 207, 0.6);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(52, 214, 207, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(52, 214, 207, 0);
  }
}

h1 {
  font-family: "Anton", "Inter", sans-serif;
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  font-size: clamp(2.8rem, 9vw, 6.5rem);
}

h1 .accent {
  background: linear-gradient(120deg, var(--accent), var(--accent-bright));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.tagline {
  max-width: 42rem;
  font-size: clamp(1.05rem, 2.4vw, 1.5rem);
  line-height: 1.5;
  color: var(--text);
  font-weight: 500;
}

.sub {
  max-width: 38rem;
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  line-height: 1.65;
  color: var(--muted);
}

.pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
  max-width: 40rem;
}

.pill {
  padding: 0.5rem 1rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.02);
  font-size: 0.9rem;
  color: var(--text);
}

.cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  margin-top: 0.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn-primary {
  background: linear-gradient(120deg, var(--accent), var(--accent-bright));
  color: #05201f;
  box-shadow: 0 10px 30px -10px rgba(52, 214, 207, 0.6);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px -10px rgba(52, 214, 207, 0.7);
}

footer {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 2rem 1.5rem 2.5rem;
  color: var(--muted);
  font-size: 0.85rem;
}

footer a {
  color: var(--muted);
  text-decoration: none;
  border-bottom: 1px dotted var(--border);
}

footer a:hover {
  color: var(--accent-bright);
}

@media (prefers-reduced-motion: reduce) {
  .glow,
  .dot {
    animation: none;
  }
}
