* { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --bg: #0a0a0a;
  --surface: #141414;
  --surface2: #1e1e1e;
  --border: #2a2a2a;
  --text: #f0f0f0;
  --muted: #888;
  --accent: #2563eb;
  --accent-hover: #1d4ed8;
  --green: #22c55e;
}
body {
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 40px;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(8px);
  z-index: 100;
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo span { font-size: 18px; font-weight: 700; }
.nav-links { display: flex; gap: 24px; }
.nav-links a { color: var(--muted); font-size: 14px; }
.nav-links a:hover { color: var(--text); text-decoration: none; }
.btn {
  display: inline-block;
  padding: 10px 22px;
  background: var(--accent);
  color: #fff;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}
.btn:hover { background: var(--accent-hover); text-decoration: none; }
.btn-outline {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
}
.btn-outline:hover { background: var(--surface2); }

.hero {
  text-align: center;
  padding: 100px 24px 80px;
  max-width: 760px;
  margin: 0 auto;
}
.hero h1 { font-size: 52px; font-weight: 800; line-height: 1.1; margin-bottom: 20px; }
.hero h1 span { color: var(--accent); }
.hero p { font-size: 18px; color: var(--muted); margin-bottom: 36px; }
.hero-buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

.section { padding: 80px 24px; max-width: 1100px; margin: 0 auto; }
.section-title { font-size: 32px; font-weight: 700; text-align: center; margin-bottom: 12px; }
.section-sub { color: var(--muted); text-align: center; margin-bottom: 48px; }
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
}
.card-icon { font-size: 28px; margin-bottom: 12px; }
.card h3 { font-size: 17px; font-weight: 600; margin-bottom: 8px; }
.card p { font-size: 14px; color: var(--muted); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 48px;
}
.price-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 24px;
  text-align: center;
}
.price-card.featured { border-color: var(--accent); }
.price-card .members { font-size: 13px; color: var(--muted); margin-bottom: 8px; }
.price-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 4px; }
.price-card .price { font-size: 36px; font-weight: 800; margin: 12px 0; }
.price-card .price span { font-size: 16px; font-weight: 400; color: var(--muted); }
.price-card p { font-size: 13px; color: var(--muted); margin-bottom: 20px; }

.badge {
  display: inline-block;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 16px;
}

footer {
  border-top: 1px solid var(--border);
  padding: 40px;
  text-align: center;
  color: var(--muted);
  font-size: 13px;
}
footer .footer-links { display: flex; gap: 20px; justify-content: center; margin-top: 12px; flex-wrap: wrap; }
footer a { color: var(--muted); }
footer a:hover { color: var(--text); }

.page-content { max-width: 760px; margin: 0 auto; padding: 60px 24px; }
.page-content h1 { font-size: 36px; font-weight: 700; margin-bottom: 8px; }
.page-content .updated { color: var(--muted); font-size: 14px; margin-bottom: 40px; }
.page-content h2 { font-size: 20px; font-weight: 600; margin: 32px 0 12px; }
.page-content p, .page-content li { color: var(--muted); margin-bottom: 12px; }
.page-content ul { padding-left: 20px; }
.page-content li { margin-bottom: 6px; }

.steps { display: flex; flex-direction: column; gap: 20px; margin: 32px 0; }
.step { display: flex; gap: 16px; align-items: flex-start; }
.step-num {
  min-width: 36px;
  height: 36px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 15px;
}
.step-body h3 { font-size: 16px; font-weight: 600; margin-bottom: 4px; }
.step-body p { color: var(--muted); font-size: 14px; }

@media (max-width: 640px) {
  .hero h1 { font-size: 36px; }
  nav { padding: 12px 20px; }
  .nav-links { display: none; }
}
