@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,650;9..144,800&family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  --bg: #f0f7ff;
  --surface: #ffffff;
  --accent: #6366f1;
  --accent-hover: #4f46e5;
  --text: #0f172a;
  --muted: #64748b;
  --border: rgba(15, 23, 42, 0.08);
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 25px 50px -12px rgba(99, 102, 241, 0.15);
  --radius: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
}

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

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

.page { max-width: 960px; margin: 0 auto; padding: 24px 20px 64px; }

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 8px 0 28px;
  flex-wrap: wrap;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 18px;
  color: var(--text);
  text-decoration: none;
  white-space: nowrap;
}

.logo img {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  box-shadow: var(--shadow);
}

.logo span { color: var(--accent); }

.nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 500;
}

.nav a {
  color: var(--muted);
  text-decoration: none;
  white-space: nowrap;
}

.nav a:hover,
.nav a[aria-current="page"] { color: var(--accent-hover); }

.nav .btn-primary {
  background: var(--accent);
  color: white;
  padding: 8px 14px;
  border-radius: var(--radius);
  font-weight: 600;
}

.breadcrumb {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 20px;
}

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

.seo-hero {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px;
  margin-bottom: 28px;
  box-shadow: var(--shadow);
}

.eyebrow {
  display: inline-flex;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-hover);
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.16);
  border-radius: 999px;
  padding: 6px 12px;
  margin-bottom: 14px;
}

.seo-hero h1 {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(30px, 5vw, 44px);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
}

.seo-hero .lead {
  font-size: 18px;
  color: var(--muted);
  max-width: 720px;
  margin-bottom: 22px;
}

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

.seo-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: var(--shadow);
}

.seo-card strong {
  display: block;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent-hover);
  margin-bottom: 8px;
}

.seo-card h2 {
  font-size: 18px;
  margin-bottom: 8px;
}

.seo-card p { font-size: 14px; color: var(--muted); }

.seo-list {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  margin-bottom: 28px;
}

.seo-list h2 {
  font-size: 20px;
  margin-bottom: 12px;
}

.seo-list ul {
  list-style: none;
  display: grid;
  gap: 10px;
}

.seo-list li {
  font-size: 15px;
  color: var(--muted);
  padding-left: 18px;
  position: relative;
}

.seo-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 800;
}

.section-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

a.cta-primary,
button.cta-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  min-width: 200px;
  padding: 0 22px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  white-space: nowrap;
  background: var(--accent);
  color: white;
  border: 2px solid transparent;
  box-shadow: var(--shadow);
}

a.cta-primary:hover { background: var(--accent-hover); }

a.cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  min-width: 200px;
  padding: 0 22px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  white-space: nowrap;
  border: 2px solid var(--accent);
  color: var(--accent-hover);
  background: white;
}

a.cta-secondary:hover { background: rgba(99, 102, 241, 0.06); }

.seo-related {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.seo-related h2 {
  font-size: 16px;
  margin-bottom: 12px;
}

.seo-related-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.seo-related-links a {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-hover);
  text-decoration: none;
  padding: 8px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: white;
}

.seo-related-links a:hover { border-color: var(--accent); }

.site-footer {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 14px;
  color: var(--muted);
  text-align: center;
}

.site-footer a { color: inherit; margin: 0 6px; }

@media (max-width: 640px) {
  .seo-hero { padding: 24px; }
  .section-cta { justify-content: center; }
}
