/* ── Reset & Base ──────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --primary: #F5A623;
  --bg-dark: #0D1B35;
  --bg-darker: #040D1F;
  --blue: #1565C0;
  --white: #ffffff;
  --gray: #8A94A6;
  --light-bg: #F7F8FA;
  --card-bg: #111D35;
  --radius: 16px;
}

html { scroll-behavior: smooth; }

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

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

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

/* ── Navigation ──────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(13, 27, 53, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 16px 0;
}

nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  text-decoration: none;
}

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

.nav-links { display: flex; gap: 28px; align-items: center; }

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

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

.nav-links .btn-download {
  background: var(--primary);
  color: var(--bg-dark);
  padding: 8px 20px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  transition: opacity 0.2s;
}

.nav-links .btn-download:hover { opacity: 0.9; }

/* ── Hero ──────────────────────────────────────────── */
.hero {
  padding: 140px 0 80px;
  text-align: center;
  background: linear-gradient(180deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(245,166,35,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-badge {
  display: inline-block;
  background: rgba(245,166,35,0.12);
  color: var(--primary);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 24px;
  border: 1px solid rgba(245,166,35,0.2);
}

.hero h1 {
  font-size: clamp(36px, 6vw, 56px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero h1 .highlight { color: var(--primary); }

.hero p {
  font-size: 18px;
  color: var(--gray);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: var(--bg-dark);
  padding: 14px 32px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 16px;
  transition: transform 0.2s, opacity 0.2s;
  border: none;
  cursor: pointer;
}

.btn-primary:hover { transform: translateY(-2px); opacity: 0.95; text-decoration: none; }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.06);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 16px;
  border: 1px solid rgba(255,255,255,0.1);
  transition: background 0.2s;
  cursor: pointer;
}

.btn-secondary:hover { background: rgba(255,255,255,0.1); text-decoration: none; }

/* ── Features ──────────────────────────────────────────── */
.features {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 48px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 12px;
}

.section-title p {
  color: var(--gray);
  font-size: 16px;
  max-width: 500px;
  margin: 0 auto;
}

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

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

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(245,166,35,0.2);
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 16px;
  background: rgba(245,166,35,0.1);
}

.feature-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

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

/* ── Stats ──────────────────────────────────────────── */
.stats {
  padding: 60px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  text-align: center;
}

.stat-item h3 {
  font-size: 40px;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 4px;
}

.stat-item p {
  color: var(--gray);
  font-size: 14px;
  font-weight: 500;
}

/* ── How it Works ──────────────────────────────────────── */
.how-it-works {
  padding: 80px 0;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.step {
  text-align: center;
  padding: 24px;
}

.step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--bg-dark);
  font-size: 20px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.step h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.step p {
  color: var(--gray);
  font-size: 14px;
}

/* ── CTA ──────────────────────────────────────────── */
.cta {
  padding: 80px 0;
  text-align: center;
}

.cta-box {
  background: linear-gradient(135deg, rgba(245,166,35,0.1) 0%, rgba(21,101,192,0.1) 100%);
  border: 1px solid rgba(245,166,35,0.15);
  border-radius: 24px;
  padding: 60px 40px;
}

.cta-box h2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 12px;
}

.cta-box p {
  color: var(--gray);
  font-size: 16px;
  margin-bottom: 28px;
}

/* ── Footer ──────────────────────────────────────────── */
footer {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 40px 0;
}

footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-left p {
  color: var(--gray);
  font-size: 13px;
  margin-top: 4px;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  color: var(--gray);
  font-size: 13px;
  transition: color 0.2s;
}

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

/* ── Legal Pages ──────────────────────────────────────── */
.legal-page {
  padding: 120px 0 60px;
  max-width: 760px;
  margin: 0 auto;
}

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

.legal-page .updated {
  color: var(--gray);
  font-size: 14px;
  margin-bottom: 36px;
}

.legal-page h2 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 36px;
  margin-bottom: 12px;
  color: var(--primary);
}

.legal-page h3 {
  font-size: 16px;
  font-weight: 600;
  margin-top: 20px;
  margin-bottom: 8px;
  color: var(--white);
}

.legal-page p {
  color: var(--gray);
  font-size: 15px;
  margin-bottom: 12px;
  line-height: 1.7;
}

.legal-page ul {
  list-style: none;
  padding: 0;
  margin-bottom: 16px;
}

.legal-page ul li {
  color: var(--gray);
  font-size: 14px;
  line-height: 1.7;
  padding-left: 20px;
  position: relative;
  margin-bottom: 4px;
}

.legal-page ul li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--primary);
  position: absolute;
  left: 4px;
  top: 10px;
}

.legal-page .warning-box {
  background: rgba(245,166,35,0.08);
  border: 1px solid rgba(245,166,35,0.2);
  border-radius: 12px;
  padding: 16px 20px;
  margin: 16px 0;
}

.legal-page .warning-box p {
  color: var(--primary);
  font-size: 14px;
  margin: 0;
}

.legal-page .contact-box {
  background: var(--card-bg);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 20px;
  margin-top: 12px;
}

.legal-page .contact-box p {
  margin-bottom: 6px;
  font-size: 14px;
}

.legal-page .contact-box strong {
  color: var(--white);
}

/* ── Responsive ──────────────────────────────────────── */
@media (max-width: 768px) {
  .nav-links a:not(.btn-download) { display: none; }
  .hero { padding: 120px 0 60px; }
  .hero h1 { font-size: 32px; }
  .cta-box { padding: 40px 24px; }
  footer .container { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
  .legal-page { padding: 100px 24px 40px; }
}
