/* WAYA website — matches mobile app design tokens. */
:root {
  --bg: #000000;
  --bg-secondary: #0A0A0A;
  --surface: #141414;
  --surface-high: #1F1F1F;
  --text: #FFFFFF;
  --text-secondary: #C9C9C9;
  --text-muted: #8A8A8A;
  --accent: #00FF6A;
  --accent-dim: #00B84B;
  --border: #1F1F1F;
  --border-strong: #2A2A2A;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
}
.wordmark {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: var(--accent);
  letter-spacing: 2px;
}
.nav-links { display: flex; gap: 24px; }
.nav-links a {
  color: var(--text-muted);
  font-weight: 500;
  font-size: 14px;
}
.nav-links a:hover { color: var(--text); text-decoration: none; }

.hero {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 24px 60px;
  text-align: center;
}
.hero h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 800;
  font-size: clamp(40px, 8vw, 88px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.hero h1 .accent { color: var(--accent); }
.hero p {
  font-size: clamp(16px, 2.2vw, 20px);
  color: var(--text-secondary);
  max-width: 640px;
  margin: 0 auto 40px;
}

.badges {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 24px;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  color: var(--text);
  font-weight: 600;
  font-size: 15px;
  transition: transform 0.15s ease, border-color 0.15s ease;
}
.badge:hover {
  border-color: var(--accent);
  text-decoration: none;
  transform: translateY(-2px);
}
.badge.coming-soon { opacity: 0.6; cursor: default; }
.badge.coming-soon:hover { transform: none; border-color: var(--border-strong); }
.badge svg { width: 22px; height: 22px; }

.features {
  max-width: 1100px;
  margin: 60px auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.feature {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
}
.feature h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--text);
}
.feature p { color: var(--text-muted); font-size: 15px; }
.feature .icon {
  width: 44px;
  height: 44px;
  background: var(--accent);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--bg);
  font-weight: 700;
}

.cta-band {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-secondary) 100%);
  padding: 80px 24px;
  text-align: center;
}
.cta-band h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 20px;
}
.cta-band p {
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto 32px;
}

footer {
  border-top: 1px solid var(--border);
  padding: 40px 24px;
  text-align: center;
  color: var(--text-muted);
  font-size: 14px;
}
footer .links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
footer .links a { color: var(--text-muted); }

/* Legal page (privacy / terms) */
.legal {
  max-width: 760px;
  margin: 0 auto;
  padding: 60px 24px;
}
.legal h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 40px;
  margin-bottom: 8px;
}
.legal .updated {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 40px;
}
.legal h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 24px;
  margin-top: 40px;
  margin-bottom: 16px;
  color: var(--accent);
}
.legal h3 {
  font-size: 17px;
  margin-top: 24px;
  margin-bottom: 8px;
  color: var(--text);
}
.legal p, .legal li { color: var(--text-secondary); margin-bottom: 12px; }
.legal ul, .legal ol { margin-left: 24px; margin-bottom: 16px; }
.legal table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  font-size: 14px;
}
.legal th, .legal td {
  border: 1px solid var(--border-strong);
  padding: 10px 12px;
  text-align: left;
}
.legal th { background: var(--surface); }
.legal strong { color: var(--text); }
.legal hr { border: none; border-top: 1px solid var(--border); margin: 32px 0; }
.legal code {
  background: var(--surface);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 13px;
  color: var(--accent);
}

@media (max-width: 600px) {
  .hero { padding-top: 48px; }
  .badges { flex-direction: column; align-items: stretch; }
  .badge { justify-content: center; }
}
