/*
 * Colors match src/theme/colors.ts (the mobile app's real dark-theme
 * palette, extracted from Figma) so the landing page feels like the same
 * product, not a generic template — see docs/DECISIONS.md, 2026-08-03.
 */

:root {
  --background: #0a0d1e;
  --surface: #141829;
  --text-default: #ffffff;
  --text-secondary: #e0e3f5;
  --text-tertiary: #7f83a3;
  --border: #1a1f3a;
  --accent-indigo: #7b6ff0;
  --accent-green: #00e676;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--text-secondary);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.5;
}

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
}

.site-header {
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}

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

.wordmark {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-default);
  letter-spacing: -0.02em;
}

.pill {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-indigo);
  border: 1px solid var(--accent-indigo);
  border-radius: 999px;
  padding: 4px 12px;
}

.hero {
  padding: 96px 0 64px;
  text-align: center;
}

.hero h1 {
  font-size: 44px;
  line-height: 1.15;
  color: var(--text-default);
  margin: 0 0 20px;
  letter-spacing: -0.02em;
}

.hero-sub {
  max-width: 560px;
  margin: 0 auto 36px;
  font-size: 18px;
  color: var(--text-secondary);
}

.coming-soon-badge {
  display: inline-block;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-default);
}

.features {
  padding: 32px 0 96px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 24px;
}

.feature-card h2 {
  font-size: 18px;
  color: var(--text-default);
  margin: 0 0 10px;
}

.feature-card p {
  margin: 0;
  font-size: 15px;
  color: var(--text-tertiary);
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: 32px 0 48px;
  font-size: 13px;
  color: var(--text-tertiary);
}

.site-footer a {
  color: var(--accent-indigo);
  text-decoration: none;
}

.site-footer p {
  margin: 0 0 8px;
}

.copyright {
  margin-top: 16px !important;
}

@media (max-width: 720px) {
  .hero {
    padding: 64px 0 48px;
  }
  .hero h1 {
    font-size: 32px;
  }
  .hero-sub {
    font-size: 16px;
  }
  .feature-grid {
    grid-template-columns: 1fr;
  }
}
