/* Shared stylesheet for the static SEO guide pages (outside the React bundle). */
:root {
  --bg: #09090b;
  --panel: #18181b;
  --border: #27272a;
  --text: #d4d4d8;
  --muted: #a1a1aa;
  --dim: #71717a;
  --bright: #fafafa;
  --accent: #34d399;
  --accent-dim: rgba(16, 185, 129, 0.15);
  --accent-ring: rgba(16, 185, 129, 0.3);
}
* { box-sizing: border-box; }
html { color-scheme: dark; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.65;
}
.wrap { max-width: 720px; margin: 0 auto; padding: 24px 24px 64px; }

/* Top nav */
.top {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 0; margin-bottom: 36px;
  border-bottom: 1px solid var(--border);
}
.brand {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--bright); text-decoration: none; font-weight: 600; font-size: 15px;
}
.brand .dot {
  width: 22px; height: 22px; border-radius: 6px;
  background: linear-gradient(135deg, #34d399, #059669);
  box-shadow: 0 2px 10px rgba(16, 185, 129, 0.35);
}
.top a.app {
  color: var(--accent); text-decoration: none; font-size: 13px; font-weight: 600;
}
.top a.app:hover { text-decoration: underline; }

/* Typography */
h1 {
  margin: 0 0 10px; font-size: 2rem; line-height: 1.2;
  letter-spacing: -0.02em; color: var(--bright);
}
.lede { font-size: 1.05rem; color: var(--muted); margin: 0 0 28px; }
h2 {
  margin: 40px 0 10px; font-size: 1.25rem; letter-spacing: -0.01em; color: var(--bright);
}
h3 { margin: 22px 0 6px; font-size: 1rem; color: #e4e4e7; }
p { margin: 0 0 14px; color: var(--muted); }
li { color: var(--muted); margin-bottom: 6px; }
a { color: var(--accent); }
strong { color: #e4e4e7; }
code {
  background: var(--panel); border: 1px solid var(--border);
  border-radius: 5px; padding: 1px 6px; font-size: 0.875em;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace; color: #e4e4e7;
}

/* CTA */
.cta {
  display: block; margin: 30px 0; padding: 18px 20px; text-align: center;
  background: linear-gradient(110deg, #34d399, #10b981 55%, #059669);
  color: #09090b; font-weight: 700; font-size: 1rem;
  border-radius: 14px; text-decoration: none;
  box-shadow: 0 6px 24px rgba(16, 185, 129, 0.3);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.cta:hover { transform: translateY(-1px); box-shadow: 0 10px 32px rgba(16, 185, 129, 0.4); }

/* Numbered steps */
ol.steps { list-style: none; counter-reset: step; padding: 0; margin: 0 0 14px; }
ol.steps li {
  counter-increment: step; position: relative;
  padding: 12px 14px 12px 52px; margin-bottom: 10px;
  background: rgba(24, 24, 27, 0.6); border: 1px solid var(--border); border-radius: 10px;
}
ol.steps li::before {
  content: counter(step);
  position: absolute; left: 14px; top: 13px;
  width: 24px; height: 24px; border-radius: 999px;
  display: flex; align-items: center; justify-content: center;
  background: var(--accent-dim); color: var(--accent);
  font-size: 12px; font-weight: 700;
  box-shadow: inset 0 0 0 1px var(--accent-ring);
}

/* Cards / FAQ */
.card, .faq > div {
  background: rgba(24, 24, 27, 0.5); border: 1px solid var(--border);
  border-radius: 10px; padding: 14px 16px; margin-bottom: 10px;
}
.faq h3 { margin: 0 0 4px; font-size: 0.95rem; }
.faq p { margin: 0; font-size: 0.92rem; }

/* Table */
table { width: 100%; border-collapse: collapse; margin: 0 0 14px; font-size: 0.9rem; }
th, td { text-align: left; padding: 8px 10px; border-bottom: 1px solid var(--border); }
th { color: #e4e4e7; font-weight: 600; }
td { color: var(--muted); }
td code { white-space: nowrap; }

/* Footer */
footer {
  margin-top: 56px; padding-top: 18px; border-top: 1px solid var(--border);
  font-size: 13px; color: var(--dim);
}
footer nav { display: flex; flex-wrap: wrap; gap: 6px 18px; margin-bottom: 10px; }
footer a { color: var(--muted); text-decoration: none; }
footer a:hover { color: var(--accent); }

@media (max-width: 480px) {
  h1 { font-size: 1.6rem; }
  .wrap { padding: 16px 16px 48px; }
}
