:root {
  --bg: #0f0f23;
  --bg-2: #15152e;
  --card: #1a1a3a;
  --border: #2a2a4a;
  --accent: #6c63ff;
  --accent-2: #ffc24b;
  --text: #ffffff;
  --muted: #8888aa;
}

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

html { scroll-behavior: smooth; }

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

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

.wrap { max-width: 880px; margin: 0 auto; padding: 0 24px; }

/* Nav */
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  max-width: 880px;
  margin: 0 auto;
}
.logo { font-size: 22px; font-weight: 800; letter-spacing: 0.5px; }
.logo span { color: var(--accent); }
.nav-links a { color: var(--muted); margin-left: 22px; font-weight: 600; font-size: 15px; }
.nav-links a:hover { color: var(--text); text-decoration: none; }

/* Hero */
.hero {
  text-align: center;
  padding: 80px 24px 70px;
  max-width: 760px;
  margin: 0 auto;
}
.eyebrow {
  display: inline-block;
  background: rgba(108, 99, 255, 0.15);
  color: var(--accent);
  border: 1px solid rgba(108, 99, 255, 0.4);
  padding: 7px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 26px;
}
.hero h1 {
  font-size: 52px;
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.1;
}
.hero p.sub {
  font-size: 20px;
  color: var(--muted);
  margin-top: 20px;
}
.badge {
  display: inline-block;
  margin-top: 34px;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 17px;
  padding: 15px 30px;
  border-radius: 14px;
}

/* Sections */
section { padding: 60px 0; }
section h2 {
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.5px;
  text-align: center;
  margin-bottom: 40px;
}

/* Steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.step {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 28px 22px;
  text-align: center;
}
.step .num {
  width: 44px; height: 44px;
  line-height: 44px;
  border-radius: 50%;
  background: rgba(108, 99, 255, 0.18);
  color: var(--accent);
  font-weight: 800;
  font-size: 19px;
  margin: 0 auto 14px;
}
.step h3 { font-size: 18px; margin-bottom: 6px; }
.step p { color: var(--muted); font-size: 15px; }

/* About */
.about {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.about p { text-align: center; color: var(--muted); font-size: 18px; max-width: 620px; margin: 0 auto; }
.about strong { color: var(--text); }

/* Footer */
footer {
  text-align: center;
  padding: 40px 24px 60px;
  color: var(--muted);
  font-size: 14px;
}
footer a { color: var(--muted); margin: 0 10px; }
footer .copy { margin-top: 14px; opacity: 0.7; }

/* Privacy page */
.doc { max-width: 760px; margin: 0 auto; padding: 50px 24px 80px; }
.doc h1 { font-size: 38px; letter-spacing: -1px; margin-bottom: 8px; }
.doc .meta { color: var(--muted); margin-bottom: 32px; }
.doc h2 { font-size: 22px; margin: 34px 0 10px; }
.doc p, .doc li { color: #cfcfe0; margin-bottom: 12px; }
.doc ul { padding-left: 22px; }
.doc .back { display: inline-block; margin-bottom: 30px; font-weight: 600; }

@media (max-width: 640px) {
  .hero h1 { font-size: 38px; }
  .steps { grid-template-columns: 1fr; }
  .nav-links a { margin-left: 14px; }
}
