/* Freebirds — shared site styles. Palette and type matched to the live production build. */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  --bg: #000000;
  --panel: #0a0a0f;
  --panel-2: #0d0c14;
  --card: #101019;
  --border: rgba(255,255,255,0.08);
  --border-soft: rgba(255,255,255,0.05);
  --violet: #0dd3b2;
  --violet-bright: #3ee9cb;
  --violet-deep: #0aa88d;
  --green: #34d399;
  --cyan: #4dd6e0;
  --text: #ffffff;
  --text-dim: #9a96a8;
  --text-faint: #6b6878;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
.accent { color: var(--violet-bright); }

/* ===== NAV ===== */
.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 22px 24px;
}
.logo-link { display: flex; align-items: center; gap: 10px; }
.logo-img { height: 36px; width: auto; display: block; }
.nav-links { display: flex; align-items: center; gap: 26px; font-size: 0.9rem; color: var(--text-dim); }
.nav-links a:hover { color: #fff; }
.nav-cta {
  padding: 9px 18px;
  border-radius: 100px;
  background: var(--violet);
  color: #000;
  font-weight: 700;
  font-size: 0.86rem;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--violet-bright); }

@media (max-width: 640px) {
  .nav-links { display: none; }
}

/* ===== FOOTER ===== */
.site-foot {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 24px;
  border-top: 1px solid var(--border-soft);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--text-faint);
  font-size: 0.84rem;
}
.site-foot .logo-img-foot { height: 26px; width: auto; opacity: 0.7; }

/* ===== ARTICLE / SEO PAGE LAYOUT ===== */
.article-wrap { max-width: 720px; margin: 0 auto; padding: 20px 24px 80px; }
.article-eyebrow {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--violet-bright);
  font-weight: 700;
  margin-bottom: 18px;
}
.article-wrap h1 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.12;
  margin-bottom: 20px;
}
.article-dek {
  font-size: 1.08rem;
  color: var(--text-dim);
  margin-bottom: 36px;
  line-height: 1.6;
}
.article-body h2 {
  font-size: 1.4rem;
  font-weight: 700;
  margin: 40px 0 14px;
  letter-spacing: -0.01em;
}
.article-body p {
  font-size: 1rem;
  color: #d8d6e0;
  margin-bottom: 18px;
}
.article-body ul, .article-body ol {
  margin: 0 0 18px 22px;
  color: #d8d6e0;
}
.article-body li { margin-bottom: 8px; }
.article-body strong { color: #fff; }

/* CTA block embedded at end of every article */
.article-cta {
  margin-top: 48px;
  padding: 30px 28px;
  border-radius: 18px;
  background: var(--panel);
  border: 1px solid var(--border-soft);
  text-align: center;
}
.article-cta::before {
  content: '';
}
.article-cta h3 { font-size: 1.3rem; font-weight: 800; margin-bottom: 8px; letter-spacing: -0.01em; }
.article-cta p { color: var(--text-dim); font-size: 0.94rem; margin-bottom: 20px; }
.article-cta .btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: 12px;
  background: var(--violet);
  color: #000;
  font-weight: 700;
  font-size: 0.94rem;
  transition: all 0.2s;
}
.article-cta .btn:hover { background: var(--violet-bright); transform: translateY(-1px); }

/* Related articles */
.related-grid {
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid var(--border-soft);
}
.related-grid h4 { font-size: 0.86rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-faint); margin-bottom: 18px; }
.related-list { display: flex; flex-direction: column; gap: 4px; }
.related-list a {
  padding: 12px 0;
  border-bottom: 1px solid var(--border-soft);
  font-size: 0.96rem;
  color: #d8d6e0;
  transition: color 0.15s;
}
.related-list a:hover { color: var(--violet-bright); }

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; }
}
