/* Help / Getting Started page — reuse audit.css design tokens */
*, *::before, *::after { box-sizing: border-box; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: #faf9f7;
  color: #1a1a1a;
  margin: 0;
  line-height: 1.6;
}

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

/* NAV */
.nav {
  position: sticky;
  top: 0;
  background: rgba(250,249,247,0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  z-index: 10;
  padding: 0 24px;
}
.nav-inner {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
}
.nav-logo {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #1a1a1a;
  text-decoration: none;
  letter-spacing: -0.01em;
}
.nav-cta {
  font-size: 0.875rem;
  font-weight: 600;
  color: #1a1a1a;
  text-decoration: none;
  background: #f0ede8;
  padding: 7px 16px;
  border-radius: 6px;
  transition: background 0.15s;
}
.nav-cta:hover { background: #e5e0d8; }

/* HERO */
.hero {
  padding: 72px 24px 56px;
  text-align: center;
  background: linear-gradient(180deg, #faf9f7 0%, #f5f3f0 100%);
}
.hero-badge {
  display: inline-block;
  background: #1a1a1a;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.hero-headline {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 16px;
  color: #111;
  letter-spacing: -0.02em;
}
.hero-sub {
  font-size: 1.0625rem;
  color: #555;
  margin: 0 auto;
  max-width: 560px;
  line-height: 1.6;
}

/* NAV TABS */
.nav-tabs {
  border-bottom: 1px solid #e5e0d8;
  background: #fff;
}
.nav-tabs-inner {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  gap: 0;
  padding: 0 24px;
}
.nav-tab {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 16px 20px;
  font-size: 0.875rem;
  font-weight: 600;
  color: #666;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: color 0.15s, border-color 0.15s;
  cursor: pointer;
}
.nav-tab:hover { color: #1a1a1a; }
.nav-tab.active {
  color: #1a1a1a;
  border-bottom-color: #1a1a1a;
}

/* FAQ SECTIONS */
.faq-section {
  padding: 56px 0;
  border-bottom: 1px solid #e5e0d8;
}
.faq-section:last-of-type { border-bottom: none; }

.faq-category-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 20px;
}

.faq-item {
  margin-bottom: 32px;
}
.faq-item:last-child { margin-bottom: 0; }

.faq-q {
  font-size: 1.0625rem;
  font-weight: 700;
  color: #111;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}
.faq-a {
  font-size: 0.9375rem;
  color: #444;
  margin: 0;
  line-height: 1.65;
}

.faq-steps {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
  counter-reset: steps;
}
.faq-steps li {
  counter-increment: steps;
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.9375rem;
  color: #444;
  line-height: 1.5;
}
.faq-steps li::before {
  content: counter(steps);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #1a1a1a;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.platforms-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}
.platform-tag {
  background: #fff;
  border: 1.5px solid #e0ddd8;
  border-radius: 6px;
  padding: 6px 14px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #333;
}

/* BOTTOM CTA */
.cta-strip {
  background: #1a1a1a;
  padding: 56px 24px;
  text-align: center;
}
.cta-strip h2 {
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 700;
  color: #fff;
  margin: 0 0 12px;
  letter-spacing: -0.02em;
}
.cta-strip p {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  margin: 0 0 24px;
}
.btn-light {
  display: inline-block;
  background: #fff;
  color: #1a1a1a;
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 8px;
  transition: background 0.15s;
}
.btn-light:hover { background: #f0ede8; }

/* FOOTER */
.footer {
  background: #f0ede8;
  padding: 24px;
  text-align: center;
}
.footer p {
  font-size: 0.8125rem;
  color: #999;
  margin: 0;
}
.footer a { color: #666; text-decoration: none; }
.footer a:hover { color: #1a1a1a; }

@media (max-width: 600px) {
  .hero { padding: 48px 16px 40px; }
  .faq-section { padding: 40px 0; }
  .cta-strip { padding: 40px 16px; }
}