:root {
  --bg: #060E1E;
  --surface: #0F1A2E;
  --border: #1E2D4A;
  --primary: #3B82F6;
  --primary-dark: #2563EB;
  --accent: #10B981;
  --danger: #EF4444;
  --warning: #F59E0B;
  --text: #F8FAFC;
  --muted: #94A3B8;
  --dim: #64748B;
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }

/* Nav */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.nav-brand {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
}
.nav-links { display: flex; gap: 24px; }
.nav-links a { color: var(--muted); font-size: 14px; font-weight: 500; }
.nav-links a:hover { color: var(--text); text-decoration: none; }

/* Hero */
.hero {
  text-align: center;
  padding: 80px 0 60px;
}
.hero h1 {
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 16px;
}
.hero .highlight { color: var(--primary); }
.hero p {
  font-size: 18px;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto 32px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.15s, opacity 0.15s;
  border: none;
  cursor: pointer;
}
.btn:hover { transform: translateY(-1px); text-decoration: none; opacity: 0.9; }
.btn-primary { background: var(--primary); color: white; }
.btn-outline { background: transparent; border: 1px solid var(--border); color: var(--text); }
.btn-sm { padding: 10px 20px; font-size: 14px; }

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

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  padding: 40px 0;
}
.service-card {
  transition: border-color 0.2s, transform 0.15s;
}
.service-card:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
}
.service-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 12px;
}
.service-card h3 { font-size: 18px; margin-bottom: 4px; }
.service-card p { font-size: 14px; color: var(--muted); }
.service-price { font-size: 13px; font-weight: 600; margin-top: 8px; }

/* Features */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding: 60px 0;
  text-align: center;
}
.feature-icon {
  font-size: 32px;
  margin-bottom: 12px;
}
.features h3 { font-size: 16px; margin-bottom: 6px; }
.features p { font-size: 14px; color: var(--muted); }

/* App badges */
.app-badges {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.badge-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 20px;
  color: var(--text);
  font-weight: 600;
  font-size: 14px;
  transition: border-color 0.2s;
}
.badge-link:hover { border-color: var(--primary); text-decoration: none; }
.badge-link .store-label { font-size: 11px; color: var(--muted); font-weight: 400; display: block; }

/* Footer */
.footer {
  border-top: 1px solid var(--border);
  padding: 40px 0;
  margin-top: 60px;
  text-align: center;
}
.footer-links { display: flex; gap: 24px; justify-content: center; margin-bottom: 16px; flex-wrap: wrap; }
.footer-links a { color: var(--dim); font-size: 13px; }
.footer-copy { color: var(--dim); font-size: 13px; }

/* Legal pages */
.legal { padding: 60px 0; }
.legal h1 { font-size: 32px; font-weight: 800; margin-bottom: 8px; letter-spacing: -0.5px; }
.legal .updated { color: var(--dim); font-size: 14px; margin-bottom: 40px; }
.legal h2 { font-size: 20px; font-weight: 700; margin-top: 40px; margin-bottom: 12px; }
.legal p, .legal li { color: var(--muted); margin-bottom: 12px; }
.legal ul { padding-left: 20px; }
.legal li { margin-bottom: 8px; }
.legal strong { color: var(--text); }

/* CTA section */
.cta-section {
  text-align: center;
  padding: 60px 0;
}
.cta-section h2 { font-size: 28px; font-weight: 800; margin-bottom: 12px; letter-spacing: -0.5px; }
.cta-section p { color: var(--muted); margin-bottom: 24px; }

/* Responsive */
@media (max-width: 768px) {
  .hero h1 { font-size: 32px; }
  .hero { padding: 48px 0 40px; }
  .features { grid-template-columns: 1fr; gap: 24px; }
  .nav-links { gap: 16px; }
  .nav-links a { font-size: 13px; }
}
