:root {
  color-scheme: dark;
  --bg: #0c0f14;
  --bg-soft: #121723;
  --text: #e8eef7;
  --muted: #a7b1c2;
  --accent: #3cc3ff;
  --accent-soft: rgba(60, 195, 255, 0.16);
  --shadow: rgba(3, 9, 22, 0.6);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Manrope", system-ui, -apple-system, sans-serif;
  background: radial-gradient(1200px 600px at 20% 10%, #1b2233, var(--bg));
  color: var(--text);
  min-height: 100vh;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding: 28px clamp(20px, 4vw, 48px) 24px;
  gap: 24px;
  background: linear-gradient(
    130deg,
    rgba(60, 195, 255, 0.08),
    rgba(12, 15, 20, 0) 55%
  );
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  width: 140px;
  height: auto;
  filter: drop-shadow(0 10px 20px var(--shadow));
}

.nav-pill {
  font-size: 0.85rem;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}

.hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 28px;
  padding: 40px 0 20px;
}

.hero-logo {
  width: min(320px, 80vw);
  height: auto;
}

.hero-copy {
  max-width: 560px;
  display: grid;
  gap: 14px;
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.7;
}

.hero-copy p {
  margin: 0;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--muted);
}

.footer-brand {
  color: var(--accent);
  font-weight: 600;
}

.footer-sep {
  opacity: 0.6;
}

@media (max-width: 640px) {
  .nav {
    flex-direction: column;
    gap: 14px;
  }

  .nav-pill {
    font-size: 0.75rem;
  }

  .footer {
    flex-direction: column;
  }

  .footer-sep {
    display: none;
  }
}
