:root {
  --bg: #0b0d12;
  --panel: #141822;
  --border: #232838;
  --text: #e7e9ee;
  --muted: #9aa2b1;
  --accent: #5b8def;
}

* { box-sizing: border-box; }

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

.site-header {
  border-bottom: 1px solid var(--border);
}

.site-nav {
  max-width: 1080px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--text);
  text-decoration: none;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  margin-left: 1.25rem;
  font-size: 0.95rem;
}

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

.nav-links a.cta {
  background: var(--accent);
  color: #fff;
  padding: 0.45rem 0.9rem;
  border-radius: 6px;
}

main {
  max-width: 1080px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

.flash-messages {
  max-width: 1080px;
  margin: 1rem auto 0;
  padding: 0 1.5rem;
}

.flash {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 0.75rem 1rem;
  color: var(--text);
}

.hero { text-align: center; padding: 2rem 0 3rem; }
.hero h1 { font-size: 2.25rem; margin-bottom: 1rem; }
.lede { color: var(--muted); font-size: 1.1rem; max-width: 640px; margin: 0 auto 1.5rem; }
.hero-actions { display: flex; gap: 1rem; justify-content: center; }

a.cta, button.cta {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 0.7rem 1.4rem;
  border-radius: 6px;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
}

a.secondary {
  color: var(--text);
  border: 1px solid var(--border);
  padding: 0.7rem 1.4rem;
  border-radius: 6px;
  text-decoration: none;
}

.highlights, .feature-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.highlight, .feature {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.25rem;
}

.highlight h3, .feature h3 { margin-top: 0; }
.highlight p, .feature p { color: var(--muted); margin-bottom: 0; }

.page-header { margin-bottom: 2rem; }
.page-header h1 { margin-bottom: 0.5rem; }

.steps { list-style: none; padding: 0; counter-reset: step; }
.steps li {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.1rem 1.4rem;
  margin-bottom: 1rem;
}
.steps h3 { margin: 0 0 0.35rem; }
.steps p { color: var(--muted); margin: 0; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.price-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.75rem;
  text-align: center;
}

.price-card.featured { border-color: var(--accent); }
.price-card h3 { margin-top: 0; }
.price-card .price { font-size: 1.75rem; font-weight: 700; margin: 0.25rem 0; }
.price-card .videos { color: var(--muted); margin-bottom: 1.25rem; }

.auth-form {
  max-width: 380px;
  margin: 0 auto;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 2rem;
}

.auth-form h1 { margin-top: 0; text-align: center; }
.auth-form form { display: flex; flex-direction: column; gap: 0.35rem; }
.auth-form label { font-size: 0.9rem; color: var(--muted); margin-top: 0.6rem; }
.auth-form input {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 0.6rem 0.7rem;
  color: var(--text);
}
.auth-form button { margin-top: 1.25rem; }
.auth-form p { text-align: center; color: var(--muted); font-size: 0.9rem; }
.auth-form p a { color: var(--accent); }

.site-footer {
  border-top: 1px solid var(--border);
  text-align: center;
  color: var(--muted);
  font-size: 0.85rem;
  padding: 1.5rem;
}
