/* Shared styles for static SEO landing pages (crawlable HTML) */
:root {
  --bg: #030712;
  --card: #0f172a;
  --border: #1e293b;
  --gold: #d4af37;
  --text: #e2e8f0;
  --muted: #94a3b8;
  --green: #35654d;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 17px;
}
a { color: var(--gold); text-decoration: none; }
a:hover { text-decoration: underline; }
.wrap { max-width: 880px; margin: 0 auto; padding: 1.25rem 1.25rem 4rem; }
header.site {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1rem 0 1.5rem; border-bottom: 1px solid var(--border); margin-bottom: 2rem;
}
header.site img { width: 40px; height: 40px; border-radius: 10px; }
header.site .brand { display: flex; align-items: center; gap: 0.75rem; font-weight: 900; letter-spacing: 0.06em; color: var(--gold); text-transform: uppercase; }
.cta {
  display: inline-block; background: linear-gradient(135deg, #c9a12c, #9d7d1e);
  color: #0f172a !important; font-weight: 900; text-transform: uppercase; letter-spacing: 0.08em;
  font-size: 0.8rem; padding: 0.85rem 1.25rem; border-radius: 14px; text-decoration: none !important;
}
h1 { font-family: Outfit, system-ui, sans-serif; font-size: clamp(1.75rem, 4vw, 2.5rem); line-height: 1.15; margin: 0 0 1rem; color: #fff; }
h2 { font-family: Outfit, system-ui, sans-serif; font-size: 1.35rem; color: var(--gold); margin: 2rem 0 0.75rem; }
h3 { font-size: 1.05rem; color: #fff; margin: 1.25rem 0 0.4rem; }
p, li { color: var(--muted); }
.lead { font-size: 1.15rem; color: var(--text); font-weight: 600; }
.card {
  background: rgba(15, 23, 42, 0.9); border: 1px solid var(--border);
  border-radius: 1.25rem; padding: 1.25rem 1.4rem; margin: 1.25rem 0;
}
.grid { display: grid; gap: 1rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .grid-2 { grid-template-columns: 1fr 1fr; } }
ul.checks { padding-left: 1.1rem; }
ul.checks li { margin: 0.4rem 0; }
.badge {
  display: inline-block; font-size: 0.7rem; font-weight: 800; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--gold); border: 1px solid rgba(212,175,55,0.35);
  padding: 0.3rem 0.6rem; border-radius: 999px; margin-bottom: 0.75rem;
}
footer.site {
  margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid var(--border);
  font-size: 0.85rem; color: var(--muted);
}
footer.site nav { display: flex; flex-wrap: wrap; gap: 0.75rem 1.25rem; margin-bottom: 0.75rem; }
.faq details {
  background: var(--card); border: 1px solid var(--border); border-radius: 12px;
  padding: 0.85rem 1rem; margin: 0.6rem 0;
}
.faq summary { cursor: pointer; font-weight: 700; color: #fff; }
.faq details p { margin: 0.6rem 0 0; }
