/* pagecat-seo.css — Shared styles for PageCat SEO landing pages
   CSP constraints: no inline styles, no external fonts, no scripts.
   Dark-only. Violet accent (#7c3aed). System font stack with Inter preference. */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg:         #09090f;
  --bg2:        #111118;
  --bg3:        #18181f;
  --border:     #27272f;
  --text:       #f0f0f8;
  --text2:      #9090a8;
  --text3:      #60607a;
  --accent:     #7c3aed;
  --accent-h:   #6d28d9;
  --accent-dim: rgba(124,58,237,.12);
  --coral:      #e85d3a;
  --radius:     14px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  min-height: 100vh;
}

/* ── Header ─────────────────────────────────────── */

.site-header {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid var(--border);
}

.brand {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -.4px;
  color: var(--coral);
  text-decoration: none;
}

.coming-badge {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  color: var(--text3);
  border: 1px solid var(--border);
  padding: 3px 8px;
  border-radius: 99px;
}

.header-cta {
  margin-left: auto;
  background: var(--accent);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 8px;
  text-decoration: none;
  transition: background .2s;
}

.header-cta:hover {
  background: var(--accent-h);
  color: #fff;
}

/* ── Hero ────────────────────────────────────────── */

.hero {
  max-width: 820px;
  margin: 80px auto 72px;
  padding: 0 24px;
  text-align: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent-dim);
  border: 1px solid rgba(124,58,237,.3);
  color: #a78bfa;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 99px;
  margin-bottom: 22px;
  letter-spacing: .3px;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(32px, 5.5vw, 54px);
  font-weight: 800;
  letter-spacing: -1.8px;
  line-height: 1.08;
  color: var(--text);
  margin-bottom: 18px;
}

.hero h1 em {
  font-style: normal;
  color: #a78bfa;
}

.hero-sub {
  font-size: 18px;
  color: var(--text2);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 10px;
  transition: background .2s, transform .15s;
}

.hero-cta:hover {
  background: var(--accent-h);
  transform: translateY(-1px);
}

.hero-note {
  display: block;
  margin-top: 13px;
  font-size: 13px;
  color: var(--text3);
}

/* ── Sections ────────────────────────────────────── */

.section {
  max-width: 1100px;
  margin: 0 auto 88px;
  padding: 0 24px;
}

.section-label {
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #a78bfa;
  margin-bottom: 10px;
}

.section-title {
  text-align: center;
  font-size: clamp(22px, 3.5vw, 32px);
  font-weight: 800;
  letter-spacing: -.8px;
  color: var(--text);
  margin-bottom: 10px;
}

.section-sub {
  text-align: center;
  font-size: 15px;
  color: var(--text2);
  max-width: 520px;
  margin: 0 auto 44px;
  line-height: 1.65;
}

/* ── Grid layouts ────────────────────────────────── */

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 18px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

/* ── Cards ───────────────────────────────────────── */

.card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color .2s, transform .2s;
}

.card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}

.card-icon {
  font-size: 26px;
  margin-bottom: 14px;
  display: block;
}

.card-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.card-text {
  font-size: 14px;
  color: var(--text2);
  line-height: 1.65;
}

/* ── Checklist ───────────────────────────────────── */

.checklist {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 10px;
}

.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 13px 16px;
  font-size: 14px;
  color: var(--text2);
}

.checklist li::before {
  content: "✓";
  color: #a78bfa;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── Related pages ───────────────────────────────── */

.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.related-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  text-decoration: none;
  transition: border-color .2s, transform .2s;
  display: block;
}

.related-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}

.related-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #a78bfa;
  margin-bottom: 6px;
}

.related-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}

.related-card p {
  font-size: 13px;
  color: var(--text2);
  line-height: 1.5;
}

/* ── Bottom CTA ──────────────────────────────────── */

.bottom-cta {
  max-width: 1100px;
  margin: 0 auto 88px;
  padding: 0 24px;
}

.bottom-cta-inner {
  background: var(--bg2);
  border: 1px solid rgba(124,58,237,.3);
  border-radius: 18px;
  padding: 64px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.bottom-cta-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(124,58,237,.1) 0%, transparent 65%);
  pointer-events: none;
}

.bottom-cta-inner h2 {
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 800;
  letter-spacing: -.8px;
  color: var(--text);
  margin-bottom: 12px;
  position: relative;
}

.bottom-cta-inner p {
  font-size: 16px;
  color: var(--text2);
  max-width: 440px;
  margin: 0 auto 28px;
  position: relative;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  padding: 13px 30px;
  border-radius: 10px;
  transition: background .2s, transform .15s;
  position: relative;
}

.cta-btn:hover {
  background: var(--accent-h);
  transform: translateY(-1px);
}

/* ── Footer ──────────────────────────────────────── */

footer {
  border-top: 1px solid var(--border);
  padding: 32px 24px;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 14px;
}

footer a {
  color: var(--text3);
  text-decoration: none;
  font-size: 13px;
  transition: color .2s;
}

footer a:hover {
  color: #a78bfa;
}

.footer-copy {
  font-size: 12px;
  color: var(--text3);
}

.footer-copy span {
  color: var(--coral);
  font-weight: 600;
}

/* ── Responsive ──────────────────────────────────── */

@media (max-width: 640px) {
  .site-header {
    flex-wrap: wrap;
    gap: 10px;
  }

  .header-cta {
    margin-left: 0;
  }

  .bottom-cta-inner {
    padding: 40px 20px;
  }

  footer {
    padding: 24px 16px;
  }
}
