:root {
  --ink: #181B22;
  --surface: #232730;
  --surface-2: #2B303B;
  --accent: #4C9EFF;
  --success: #2FE6B3;
  --error: #FF5D5D;
  --text-primary: #F2F4F8;
  --text-secondary: #7B8291;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--ink);
  color: var(--text-primary);
  font-family: 'Inter', -apple-system, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
a:focus-visible, button:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

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

/* Nav */
nav {
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 20px 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 17px;
  color: var(--text-primary);
}
.brand-tiles { display: flex; gap: 3px; }
.brand-tile {
  width: 18px; height: 24px;
  background: var(--surface);
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
  font-size: 12px;
  color: var(--accent);
}
.nav-links { display: flex; gap: 24px; font-size: 14px; color: var(--text-secondary); }
.nav-links a { color: var(--text-secondary); }
.nav-links a:hover { color: var(--text-primary); }

/* Hero */
.hero {
  padding: 72px 0 56px;
  text-align: center;
}
.hero-tiles {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 28px;
}
.hero-tile {
  width: 46px; height: 62px;
  background: var(--surface);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
  font-size: 28px;
  color: var(--accent);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}
h1 {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 36px;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
}
.hero p.lede {
  color: var(--text-secondary);
  font-size: 17px;
  max-width: 480px;
  margin: 0 auto 30px;
}
.eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}

/* Sections */
section { padding: 48px 0; border-top: 1px solid rgba(255,255,255,0.06); }
h2 {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 22px;
  margin-bottom: 24px;
}
h3 {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 8px;
  color: var(--text-primary);
}
p { color: var(--text-secondary); margin-bottom: 14px; }
p:last-child { margin-bottom: 0; }

/* Steps */
.steps { display: flex; flex-direction: column; gap: 18px; }
.step {
  display: flex;
  gap: 16px;
  background: var(--surface);
  border-radius: 14px;
  padding: 18px 20px;
}
.step-num {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
  font-size: 15px;
  color: var(--accent);
  background: rgba(76,158,255,0.12);
  width: 30px; height: 30px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.step-body p { margin-bottom: 0; color: var(--text-secondary); font-size: 14px; }

/* FAQ */
.faq-item {
  background: var(--surface);
  border-radius: 14px;
  padding: 18px 20px;
  margin-bottom: 12px;
}
.faq-item:last-child { margin-bottom: 0; }

/* Legal pages */
.legal h2 { margin-top: 32px; }
.legal h2:first-child { margin-top: 0; }
.legal ul { margin: 0 0 14px 20px; color: var(--text-secondary); }
.legal li { margin-bottom: 6px; }
.updated { color: var(--text-secondary); font-size: 13px; margin-bottom: 40px; }
.legal-title {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 28px;
  margin: 48px 0 6px;
}

/* Footer */
footer {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 32px 0 48px;
  text-align: center;
}
.footer-links { display: flex; justify-content: center; gap: 20px; margin-bottom: 14px; font-size: 14px; }
.footer-note { color: var(--text-secondary); font-size: 13px; }

@media (max-width: 480px) {
  h1 { font-size: 28px; }
  .hero { padding: 56px 0 40px; }
}
