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

:root {
  --bg: #0d0d0d;
  --bg2: #161616;
  --bg3: #1e1e1e;
  --border: #2a2a2a;
  --accent: #6366f1;
  --accent-light: #818cf8;
  --text: #f0f0f0;
  --muted: #888;
  --radius: 12px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.7;
}

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

/* NAV */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13,13,13,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-weight: 700;
  font-size: 18px;
  color: var(--text);
  letter-spacing: -0.3px;
}

.nav-links {
  display: flex;
  gap: 24px;
  list-style: none;
}

.nav-links a {
  color: var(--muted);
  font-size: 14px;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--text); text-decoration: none; }

/* CONTAINER */
.container {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px;
}

/* HERO */
.hero {
  text-align: center;
  padding: 96px 24px 80px;
}

.app-icon {
  width: 96px;
  height: 96px;
  background: linear-gradient(135deg, var(--accent), #a78bfa);
  border-radius: 22px;
  margin: 0 auto 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 42px;
}

.hero h1 {
  font-size: clamp(36px, 6vw, 56px);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 16px;
}

.hero h1 span { color: var(--accent-light); }

.hero p {
  font-size: 18px;
  color: var(--muted);
  max-width: 480px;
  margin: 0 auto 36px;
}

.badge-row {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 20px;
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
  transition: border-color 0.2s;
}

.store-badge:hover { border-color: var(--accent); text-decoration: none; }
.store-badge svg { opacity: 0.7; }

/* SCREENSHOT PLACEHOLDER */
.screenshots {
  padding: 0 24px 80px;
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.screenshot-placeholder {
  width: 200px;
  height: 400px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 13px;
}

/* FEATURES */
.features {
  padding: 64px 24px;
  border-top: 1px solid var(--border);
}

.section-label {
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 12px;
}

.section-title {
  text-align: center;
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 48px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  max-width: 760px;
  margin: 0 auto;
}

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

.feature-icon {
  font-size: 28px;
  margin-bottom: 12px;
}

.feature-card h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
}

.feature-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

/* FOOTER */
footer {
  border-top: 1px solid var(--border);
  padding: 32px 24px;
  text-align: center;
  color: var(--muted);
  font-size: 13px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

/* LEGAL PAGES */
.legal-header {
  padding: 64px 0 48px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 48px;
}

.legal-header h1 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 8px;
}

.legal-header .updated {
  font-size: 14px;
  color: var(--muted);
}

.legal-body {
  padding-bottom: 80px;
}

.legal-body .intro {
  font-size: 16px;
  color: var(--muted);
  margin-bottom: 40px;
  line-height: 1.8;
}

.legal-section {
  margin-bottom: 36px;
}

.legal-section h2 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text);
}

.legal-section p,
.legal-section li {
  font-size: 15px;
  color: #ccc;
  line-height: 1.8;
}

.legal-section ul {
  padding-left: 20px;
  margin-top: 8px;
}

.legal-section li { margin-bottom: 4px; }

/* SUPPORT PAGE */
.support-hero {
  padding: 64px 0 48px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 48px;
}

.support-hero h1 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}

.support-hero p { color: var(--muted); font-size: 16px; }

.contact-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  margin-bottom: 48px;
}

.contact-card h2 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}

.contact-card p { color: var(--muted); font-size: 14px; margin-bottom: 16px; }

.email-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #fff;
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  transition: opacity 0.2s;
}

.email-link:hover { opacity: 0.85; text-decoration: none; }

.faq { padding-bottom: 80px; }

.faq h2 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 24px;
}

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

.faq-item h3 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 8px;
}

.faq-item p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

@media (max-width: 600px) {
  .nav-links { gap: 14px; }
  .nav-links a { font-size: 13px; }
  .screenshot-placeholder { width: 160px; height: 320px; }
}
