:root {
  --navy: #0d1b2a;
  --navy-mid: #152333;
  --teal: #2a6b7c;
  --teal-light: #3a8a9e;
  --coral: #e8614a;
  --coral-light: #f07a66;
  --offwhite: #f0ede8;
  --bg: #f5f4f2;
  --surface: #ffffff;
  --text: #1a1a1a;
  --text-muted: #5a6472;
  --border: #e4e1dc;
  --radius: 12px;
  --shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
}

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

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

/* ── NAV ── */
nav {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
  position: sticky;
  top: 0;
  z-index: 100;
}

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

.nav-logo {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--navy);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-logo span {
  font-size: 1.3rem;
}

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

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--coral);
}

/* ── HERO ── */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 50%, var(--teal) 100%);
  color: #fff;
  padding: 80px 24px;
  text-align: center;
}

.hero-icon {
  margin-bottom: 24px;
  display: block;
}

.hero h1 {
  font-size: 2.8rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}

.hero p {
  font-size: 1.15rem;
  opacity: 0.9;
  max-width: 520px;
  margin: 0 auto 32px;
}

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

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  backdrop-filter: blur(4px);
  transition: background 0.2s, border-color 0.2s;
}

.store-badge:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.6);
}

/* ── FEATURES ── */
.features {
  padding: 64px 24px;
}

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

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

.feature-card .icon {
  font-size: 2rem;
  margin-bottom: 12px;
  display: block;
}

.feature-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--navy);
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

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

.legal-page .page-header {
  margin-bottom: 40px;
}

.legal-page .page-header h1 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 6px;
}

.legal-page .page-header .meta {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.legal-section {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 32px;
  margin-bottom: 20px;
  box-shadow: var(--shadow);
}

.legal-section h2 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 12px;
}

.legal-section p,
.legal-section li {
  font-size: 0.95rem;
  color: #333;
  margin-bottom: 10px;
}

.legal-section ul,
.legal-section ol {
  padding-left: 20px;
}

.legal-section a {
  color: var(--coral);
  text-decoration: none;
}

.legal-section a:hover {
  text-decoration: underline;
}

/* ── SUPPORT PAGE ── */
.support-page {
  max-width: 720px;
  margin: 48px auto;
  padding: 0 24px 80px;
}

.support-page .page-header {
  margin-bottom: 40px;
}

.support-page .page-header h1 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 6px;
}

.support-page .page-header p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.contact-card {
  background: linear-gradient(135deg, var(--navy), var(--teal));
  color: #fff;
  border-radius: var(--radius);
  padding: 32px;
  margin-bottom: 32px;
  box-shadow: var(--shadow);
}

.contact-card h2 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.contact-card p {
  opacity: 0.9;
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.contact-card a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.2);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: background 0.2s;
}

.contact-card a:hover {
  background: rgba(255, 255, 255, 0.3);
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin-bottom: 16px;
  box-shadow: var(--shadow);
}

.faq-item h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.faq-item p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.report-info {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin-bottom: 32px;
  box-shadow: var(--shadow);
}

.report-info h2 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.report-info ul {
  padding-left: 20px;
}

.report-info li {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 6px;
}

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

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

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

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--coral);
}

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

/* ── RESPONSIVE ── */
@media (max-width: 600px) {
  .hero h1 {
    font-size: 2rem;
  }

  .nav-links {
    gap: 16px;
  }

  .legal-section {
    padding: 20px 18px;
  }
}
