/* Social Poster Pro – Theme CSS */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  --bg:       #0f1117;
  --surface:  #1a1d26;
  --border:   #2a2d3a;
  --accent:   #7c6ef5;
  --accent2:  #4fd1c5;
  --text:     #e8eaf0;
  --muted:    #8a8fa8;
  --success:  #48bb78;
  --radius:   12px;
  --font:     'Plus Jakarta Sans', -apple-system, sans-serif;
}

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

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--accent); text-decoration: none; }
a:hover { opacity: .85; }

/* ── Layout ──────────────────────────────────────────────────────────────── */
.spt-container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* ── Header ──────────────────────────────────────────────────────────────── */
.spt-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(15,17,23,.9); backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.spt-header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.spt-logo {
  display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 18px; color: var(--text);
}
.spt-logo-icon {
  width: 34px; height: 34px; background: var(--accent); border-radius: 8px;
  display: flex; align-items: center; justify-content: center; font-size: 16px;
}
.spt-nav { display: flex; align-items: center; gap: 4px; }
.spt-nav a {
  padding: 7px 14px; border-radius: 8px; font-size: 14px; font-weight: 500;
  color: var(--muted); transition: all .15s;
}
.spt-nav a:hover, .spt-nav a.current { color: var(--text); background: var(--surface); }
.spt-header-cta {
  display: flex; align-items: center; gap: 10px;
}
.spt-btn {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 9px 20px; border-radius: 8px; font-size: 14px; font-weight: 600;
  font-family: var(--font); cursor: pointer; border: none; transition: all .15s;
}
.spt-btn-primary { background: var(--accent); color: #fff; }
.spt-btn-primary:hover { background: #6858e0; color: #fff; }
.spt-btn-ghost { background: transparent; color: var(--text); border: 1px solid var(--border); }
.spt-btn-ghost:hover { background: var(--surface); }

/* ── Hero ────────────────────────────────────────────────────────────────── */
.spt-hero {
  padding: 100px 0 80px;
  text-align: center;
  background: radial-gradient(ellipse 80% 50% at 50% -10%, rgba(124,110,245,.2), transparent);
}
.spt-hero-eyebrow {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(124,110,245,.1); border: 1px solid rgba(124,110,245,.2);
  color: var(--accent); font-size: 13px; font-weight: 600;
  padding: 5px 14px; border-radius: 20px; margin-bottom: 24px;
}
.spt-hero h1 {
  font-size: clamp(40px, 6vw, 68px); font-weight: 800; line-height: 1.1;
  letter-spacing: -.03em; margin-bottom: 22px;
}
.spt-hero h1 span { color: var(--accent); }
.spt-hero p {
  font-size: 18px; color: var(--muted); max-width: 560px; margin: 0 auto 36px; line-height: 1.7;
}
.spt-hero-actions { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; }
.spt-hero-social {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  margin-top: 48px; color: var(--muted); font-size: 13px;
}
.spt-hero-social .soc-icon {
  width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border); background: var(--surface); transition: all .2s;
}
.spt-hero-social .soc-icon:hover { border-color: var(--accent); transform: translateY(-2px); }
.spt-hero-social svg { width: 16px; height: 16px; }

/* ── Features grid ────────────────────────────────────────────────────────── */
.spt-features { padding: 80px 0; }
.spt-section-label {
  text-align: center; font-size: 13px; font-weight: 600; color: var(--accent);
  text-transform: uppercase; letter-spacing: .1em; margin-bottom: 14px;
}
.spt-section-title {
  text-align: center; font-size: clamp(28px, 4vw, 42px); font-weight: 800;
  letter-spacing: -.02em; margin-bottom: 10px;
}
.spt-section-sub {
  text-align: center; font-size: 16px; color: var(--muted); max-width: 480px;
  margin: 0 auto 52px;
}
.spt-features-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px;
}
.spt-feature-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px;
  transition: border-color .2s, transform .2s;
}
.spt-feature-card:hover { border-color: rgba(124,110,245,.4); transform: translateY(-3px); }
.spt-feature-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: rgba(124,110,245,.1); display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 18px;
}
.spt-feature-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.spt-feature-card p  { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* ── Platforms section ────────────────────────────────────────────────────── */
.spt-platforms { padding: 60px 0; border-top: 1px solid var(--border); }
.spt-platform-pills { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 14px; }
.spt-platform-pill {
  display: flex; align-items: center; gap: 10px;
  background: var(--surface); border: 1px solid var(--border); border-radius: 40px;
  padding: 10px 20px; font-size: 14px; font-weight: 600;
  transition: all .2s;
}
.spt-platform-pill:hover { border-color: var(--color); transform: scale(1.05); color: var(--color); }
.spt-platform-pill svg { width: 18px; height: 18px; color: var(--color); }

/* ── CTA section ─────────────────────────────────────────────────────────── */
.spt-cta {
  padding: 80px 0;
  text-align: center;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(124,110,245,.15), transparent);
  border-top: 1px solid var(--border);
}
.spt-cta h2 { font-size: clamp(28px, 4vw, 48px); font-weight: 800; margin-bottom: 16px; letter-spacing: -.02em; }
.spt-cta p  { font-size: 16px; color: var(--muted); margin-bottom: 36px; }

/* ── Footer ───────────────────────────────────────────────────────────────── */
.spt-footer {
  background: var(--surface); border-top: 1px solid var(--border);
  padding: 48px 0 28px;
}
.spt-footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px;
}
@media (max-width: 768px) { .spt-footer-grid { grid-template-columns: 1fr 1fr; } }
.spt-footer-brand p { font-size: 14px; color: var(--muted); margin-top: 12px; max-width: 260px; }
.spt-footer h4 { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--muted); margin-bottom: 14px; }
.spt-footer ul { list-style: none; }
.spt-footer ul li { margin-bottom: 10px; }
.spt-footer ul li a { font-size: 14px; color: var(--muted); transition: color .15s; }
.spt-footer ul li a:hover { color: var(--text); }
.spt-footer-bottom {
  border-top: 1px solid var(--border); padding-top: 24px;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 13px; color: var(--muted);
}

/* ── Blog / page content ──────────────────────────────────────────────────── */
.spt-content { max-width: 720px; margin: 0 auto; padding: 60px 24px; }
.spt-content h1, .spt-content h2, .spt-content h3 { font-weight: 700; margin-bottom: 16px; margin-top: 36px; }
.spt-content p  { margin-bottom: 20px; color: var(--muted); }
.spt-content ul, .spt-content ol { padding-left: 24px; margin-bottom: 20px; color: var(--muted); }
.spt-content li { margin-bottom: 8px; }

/* ── Responsive ───────────────────────────────────────────────────────────── */
@media (max-width: 640px) {
  .spt-nav { display: none; }
  .spt-hero { padding: 60px 0 50px; }
}
