/* Static SEO marketing pages — readable without the SPA */
:root {
  --bg: #0f0e13;
  --bg-elevated: #16151d;
  --text: #f4f4f8;
  --text-muted: #a8a8b8;
  --primary: #7c5cfc;
  --primary-light: #9b82fc;
  --border: rgba(255, 255, 255, 0.08);
  --radius: 12px;
  --font: "Inter", system-ui, sans-serif;
  --font-heading: "DM Sans", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

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

a {
  color: var(--primary-light);
}

a:hover {
  color: #c4b5fd;
}

.seo-wrap {
  max-width: 920px;
  margin: 0 auto;
  padding: 0 20px 64px;
}

.seo-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 40px;
}

.seo-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
}

.seo-nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  font-size: 0.9rem;
}

.seo-nav-links a {
  color: var(--text-muted);
  text-decoration: none;
}

.seo-nav-links a:hover {
  color: var(--text);
}

.seo-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.seo-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.seo-btn-primary {
  background: linear-gradient(135deg, #7c5cfc, #6d4ce6);
  color: #fff;
}

.seo-btn-secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 2.75rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin: 0 0 16px;
}

h2 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  margin: 40px 0 12px;
}

.lead {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 0 24px;
}

.seo-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin: 24px 0;
}

.seo-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
}

.seo-card h3 {
  margin: 0 0 8px;
  font-size: 1rem;
}

.seo-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.seo-price-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 0.95rem;
}

.seo-price-table th,
.seo-price-table td {
  text-align: left;
  padding: 12px 14px;
  border-bottom: 1px solid var(--border);
}

.seo-price-table th {
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.seo-list {
  padding-left: 1.2rem;
  color: var(--text-muted);
}

.seo-list li {
  margin-bottom: 8px;
}

.seo-footer {
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--text-muted);
}

.seo-footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 24px;
  margin-bottom: 24px;
}

.seo-footer-grid strong {
  display: block;
  color: var(--text);
  margin-bottom: 8px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.seo-footer-grid a {
  display: block;
  color: var(--text-muted);
  text-decoration: none;
  margin-bottom: 6px;
}

.seo-footer-grid a:hover {
  color: var(--text);
}

.seo-compare-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 20px 0;
}

@media (max-width: 640px) {
  .seo-compare-row {
    grid-template-columns: 1fr;
  }
}
