@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
  --bg-primary: #0a0a0f;
  --bg-card: rgba(255,255,255,0.06);
  --bg-card-border: rgba(255,255,255,0.08);
  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --accent-emerald: #34d399;
  --accent-purple: #a78bfa;
  --accent-pink: #f472b6;
}

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

body {
  font-family: 'Outfit', -apple-system, sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  min-height: 100vh;
}

.mesh-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}

.mesh-bg::before,
.mesh-bg::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.3;
}

.mesh-bg::before {
  width: 600px;
  height: 600px;
  top: -200px;
  left: -100px;
  background: radial-gradient(circle, var(--accent-emerald), transparent 70%);
}

.mesh-bg::after {
  width: 500px;
  height: 500px;
  bottom: -150px;
  right: -100px;
  background: radial-gradient(circle, var(--accent-purple), transparent 70%);
}

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

header {
  text-align: center;
  margin-bottom: 48px;
}

header .logo {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.5px;
  background: linear-gradient(135deg, var(--accent-emerald), var(--accent-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
}

header nav {
  margin-top: 16px;
  display: flex;
  justify-content: center;
  gap: 24px;
}

header nav a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}

header nav a:hover {
  color: var(--text-primary);
}

h1 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}

h2 {
  font-size: 22px;
  font-weight: 600;
  margin-top: 40px;
  margin-bottom: 16px;
  color: var(--text-primary);
}

h3 {
  font-size: 17px;
  font-weight: 600;
  margin-top: 28px;
  margin-bottom: 10px;
  color: var(--accent-emerald);
}

p {
  color: var(--text-secondary);
  margin-bottom: 16px;
  font-size: 15px;
}

.subtitle {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 40px;
}

ul, ol {
  color: var(--text-secondary);
  margin-bottom: 16px;
  padding-left: 24px;
  font-size: 15px;
}

li {
  margin-bottom: 8px;
}

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

a:hover {
  text-decoration: underline;
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--bg-card-border);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 16px;
}

.card h3 {
  margin-top: 0;
}

footer {
  margin-top: 40px;
  padding-top: 16px;
  text-align: center;
  color: var(--text-muted);
  font-size: 13px;
}

footer a {
  color: var(--text-muted);
}

footer a:hover {
  color: var(--text-secondary);
}

@media (max-width: 600px) {
  .container {
    padding: 40px 16px 60px;
  }

  h1 {
    font-size: 26px;
  }

  h2 {
    font-size: 20px;
  }
}
