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

:root {
  --primary: #1E3A5F;
  --primary-dark: #0F1F33;
  --accent: #F0B429;
  --accent-dark: #D4960A;
  --text: #E8EFF7;
  --text-muted: #8A9EB8;
  --surface: #162D4A;
  --border: #2E4A6A;
  --success: #22C55E;
  --radius: 12px;
}

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--primary-dark);
  color: var(--text);
  line-height: 1.6;
}

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

/* ── NAV ── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(15, 31, 51, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
}

.nav-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}

.nav-logo {
  font-size: 20px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.5px;
}

.nav-logo span { color: var(--accent); }

.nav-links { display: flex; gap: 24px; }
.nav-links a { color: var(--text-muted); font-size: 14px; font-weight: 500; }
.nav-links a:hover { color: var(--text); text-decoration: none; }

/* ── HERO ── */
.hero {
  text-align: center;
  padding: 100px 24px 80px;
  background: radial-gradient(ellipse at 50% 0%, rgba(30, 58, 95, 0.8) 0%, transparent 70%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(240, 180, 41, 0.06) 0%, transparent 70%);
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

.app-icon {
  width: 120px;
  height: 120px;
  border-radius: 28px;
  display: block;
  margin: 0 auto 28px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.08);
  object-fit: cover;
}

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

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

.hero p {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

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

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

.store-badge:hover {
  background: var(--primary);
  border-color: var(--accent);
  text-decoration: none;
  transform: translateY(-2px);
}

.store-badge .store-icon { font-size: 22px; }
.store-badge .store-sub { font-size: 11px; color: var(--text-muted); display: block; font-weight: 400; }
.store-badge .store-name { display: block; line-height: 1.1; }

.badge-soon {
  background: rgba(240, 180, 41, 0.08);
  border-color: rgba(240, 180, 41, 0.3);
  color: var(--accent);
  font-size: 13px;
  padding: 8px 16px;
  border-radius: 100px;
  border: 1px solid rgba(240, 180, 41, 0.3);
  display: inline-block;
}

/* ── FEATURES ── */
.features {
  padding: 80px 24px;
  max-width: 1000px;
  margin: 0 auto;
}

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

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

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform 0.2s, border-color 0.2s;
}

.feature-card:hover {
  transform: translateY(-3px);
  border-color: rgba(240, 180, 41, 0.3);
}

.feature-icon {
  font-size: 32px;
  margin-bottom: 16px;
  display: block;
}

.feature-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}

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

/* ── STATS BAR ── */
.stats-bar {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 40px 24px;
}

.stats-inner {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 32px;
}

.stat { text-align: center; }
.stat-number {
  font-size: 36px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -1px;
  line-height: 1;
  display: block;
}
.stat-label { font-size: 13px; color: var(--text-muted); margin-top: 6px; }

/* ── DISCLAIMER ── */
.disclaimer {
  max-width: 700px;
  margin: 60px auto;
  padding: 24px;
  background: rgba(30, 58, 95, 0.3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.7;
}

/* ── FOOTER ── */
footer {
  border-top: 1px solid var(--border);
  padding: 40px 24px;
  text-align: center;
}

.footer-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.footer-logo {
  font-size: 18px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 16px;
}

.footer-logo span { color: var(--accent); }

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

.footer-links a { font-size: 13px; color: var(--text-muted); }
.footer-links a:hover { color: var(--text); text-decoration: none; }

.footer-copy { font-size: 12px; color: var(--text-muted); }

/* ── LEGAL PAGES ── */
.legal-page {
  max-width: 720px;
  margin: 60px auto;
  padding: 0 24px 80px;
}

.legal-page h1 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 8px;
}

.legal-date {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 48px;
  display: block;
}

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

.legal-section h2 {
  font-size: 15px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.legal-section p, .legal-section address {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
  font-style: normal;
}

/* ── RESPONSIVE ── */
@media (max-width: 600px) {
  .nav-links { display: none; }
  .hero { padding: 60px 20px 60px; }
  .store-badge .store-sub { display: none; }
}
