:root {
  --bg-primary: #0f1419;
  --bg-card: #1e2d3d;
  --accent-blue: #4fc3f7;
  --accent-teal: #64ffda;
  --text-primary: #e8eaed;
  --text-secondary: #9aa0a6;
  --text-muted: #5f6368;
  --border: #2d3f50;
}

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

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: linear-gradient(
      60deg,
      transparent 48%,
      rgba(79, 195, 247, 0.015) 48%,
      rgba(79, 195, 247, 0.015) 52%,
      transparent 52%
    ),
    linear-gradient(
      -60deg,
      transparent 48%,
      rgba(100, 255, 218, 0.012) 48%,
      rgba(100, 255, 218, 0.012) 52%,
      transparent 52%
    );
  background-size: 60px 104px;
  pointer-events: none;
  z-index: 0;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background: radial-gradient(
    ellipse 80% 50% at 50% 40%,
    rgba(79, 195, 247, 0.06) 0%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
}

#hero {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 1.5rem;
  max-width: 640px;
  margin: 0 auto;
  animation: fadeIn 0.6s ease-out;
}

.badge {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-blue);
  border: 1px solid rgba(79, 195, 247, 0.4);
  border-radius: 20px;
  padding: 0.3rem 0.9rem;
  margin-bottom: 1.5rem;
}

.logo-icon {
  filter: drop-shadow(0 0 16px rgba(79, 195, 247, 0.4));
  margin-bottom: 1rem;
}

.wordmark {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
}

.headline {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.subheadline {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.blurb {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  max-width: 480px;
}

.waitlist-form {
  width: 100%;
  max-width: 420px;
}

.waitlist-label {
  display: block;
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 0.75rem;
}

.waitlist-row {
  display: flex;
  gap: 0.5rem;
}

.waitlist-row input[type="email"] {
  flex: 1;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  color: var(--text-primary);
  font-size: 0.95rem;
}

.waitlist-row input[type="email"]:focus {
  outline: none;
  border-color: var(--accent-blue);
}

.waitlist-row button {
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-teal));
  color: #0f1419;
  border: none;
  border-radius: 8px;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  cursor: pointer;
}

.waitlist-status {
  margin-top: 0.75rem;
  font-size: 0.85rem;
  color: var(--accent-teal);
  min-height: 1.2em;
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

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

footer p {
  margin: 0.15rem 0;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.consent {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 0.6rem;
}

.consent a {
  color: var(--accent-blue);
  text-decoration: underline;
}

footer a {
  color: var(--text-muted);
  text-decoration: underline;
}

.privacy-page {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
  animation: fadeIn 0.6s ease-out;
}

.privacy-page .back-link {
  display: inline-block;
  margin-bottom: 2rem;
  font-size: 0.85rem;
  color: var(--accent-blue);
  text-decoration: none;
}

.privacy-page .back-link:hover {
  text-decoration: underline;
}

.privacy-page h1 {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 0.25rem;
}

.privacy-page .entity-line {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.privacy-page h2 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent-blue);
  margin-top: 1.75rem;
  margin-bottom: 0.5rem;
}

.privacy-page p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.privacy-page a {
  color: var(--accent-teal);
}

.privacy-page .updated {
  margin-top: 2.5rem;
  font-size: 0.78rem;
  color: var(--text-muted);
}
