/* docs/styles.css */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  background: #0f172a;
  color: #f1f5f9;
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

/* ── Nav ── */
.nav-wrapper {
  border-bottom: 1px solid #1e293b;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 32px;
  max-width: 900px;
  margin: 0 auto;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 17px;
  color: #f1f5f9;
  text-decoration: none;
}

.nav-brand img {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.nav-link {
  color: #64748b;
  font-size: 14px;
  text-decoration: none;
}

.nav-link:hover { color: #94a3b8; }

/* ── Hero ── */
.hero {
  max-width: 900px;
  margin: 0 auto;
  padding: 64px 32px 48px;
}

.hero h1 {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 16px;
  color: #f1f5f9;
}

.hero p {
  font-size: 18px;
  color: #94a3b8;
  margin-bottom: 28px;
  max-width: 480px;
}

.cta {
  background: #dc2626;
  color: #fff;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
}

.cta:hover { background: #b91c1c; }

.cta:focus-visible {
  outline: 2px solid #fca5a5;
  outline-offset: 2px;
}


/* ── Features ── */
.features {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 32px 64px;
}

.features-label {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #64748b;
  margin-bottom: 24px;
}

.feature {
  background: #1e293b;
  border-radius: 10px;
  padding: 24px;
  margin-bottom: 16px;
  border-top: 3px solid #dc2626;
}

.feature-name,
.content h2 {
  font-size: 16px;
  font-weight: 700;
  color: #fca5a5;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.feature-name {
  margin-bottom: 8px;
}

.feature-desc {
  font-size: 15px;
  color: #cbd5e1;
  margin-bottom: 12px;
}

.feature-bullets {
  list-style: none;
  padding: 0;
}

.feature-bullets li,
.content ul li {
  font-size: 14px;
  color: #94a3b8;
  padding: 3px 0 3px 16px;
  position: relative;
}

.feature-bullets li::before,
.content ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: #dc2626;
}

/* ── Privacy page content ── */
.content {
  max-width: 680px;
  margin: 0 auto;
  padding: 56px 32px 64px;
}

.content h1 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 8px;
}

.updated {
  font-size: 13px;
  color: #64748b;
  margin-bottom: 40px;
}

.content h2 {
  margin: 32px 0 10px;
}


.content p {
  font-size: 15px;
  color: #cbd5e1;
  margin-bottom: 12px;
}

.content ul {
  list-style: none;
  padding: 0;
  margin-bottom: 12px;
}


.content code {
  color: #fca5a5;
  font-size: 13px;
  font-family: ui-monospace, monospace;
}

.content a { color: #fca5a5; }
.content a:hover { color: #f87171; }

/* ── Footer ── */
footer {
  border-top: 1px solid #1e293b;
  padding: 24px 32px;
  text-align: center;
}

footer p {
  font-size: 13px;
  color: #475569;
}

footer a {
  color: #64748b;
  text-decoration: none;
}

footer a:hover { color: #94a3b8; }

/* ── Responsive ── */
@media (max-width: 600px) {
  nav { padding: 14px 20px; }
  footer { padding: 20px; }
  .hero { padding: 40px 20px 32px; }
  .hero h1 { font-size: 32px; }
  .hero p { font-size: 16px; }
  .features { padding: 0 20px 48px; }
  .content { padding: 40px 20px 48px; }
}
