/* PawNexus static SEO pages — shared stylesheet */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  color: #1e293b;
  line-height: 1.65;
  background:
    radial-gradient(800px circle at 20% 0%, rgba(167,243,208,0.25) 0%, transparent 60%),
    radial-gradient(600px circle at 90% 20%, rgba(254,215,170,0.20) 0%, transparent 55%),
    radial-gradient(700px circle at 50% 80%, rgba(191,219,254,0.22) 0%, transparent 50%),
    #e2e8f0;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

header.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 32px;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  position: sticky;
  top: 0;
  z-index: 10;
}
.site-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #1e293b;
}
.site-brand img { height: 36px; width: auto; border-radius: 8px; }
.site-brand strong { font-size: 1.15rem; font-weight: 700; letter-spacing: -0.01em; }
.site-nav { display: flex; gap: 22px; flex-wrap: wrap; }
.site-nav a {
  color: #475569;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.92rem;
}
.site-nav a:hover, .site-nav a[aria-current="page"] { color: #2563eb; }

main { max-width: 880px; margin: 0 auto; padding: 56px 32px 80px; }

.hero { margin-bottom: 48px; }
.hero h1 {
  font-size: 2.6rem;
  line-height: 1.15;
  margin: 0 0 18px;
  color: #1e293b;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.hero .lede { font-size: 1.25rem; color: #475569; margin: 0 0 24px; }

.badge {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 14px;
  text-transform: uppercase;
}
.badge-live { background: #d1fae5; color: #065f46; }
.badge-soon { background: #fef3c7; color: #92400e; }

.cta {
  display: inline-block;
  padding: 14px 28px;
  background: #3b82f6;
  color: white !important;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 600;
  margin-top: 8px;
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.25);
  transition: background 0.15s ease;
}
.cta:hover { background: #2563eb; }
.cta-secondary {
  background: rgba(255, 255, 255, 0.6);
  color: #1e293b !important;
  border: 1px solid rgba(0, 0, 0, 0.08);
  margin-left: 12px;
  box-shadow: none;
}
.cta-secondary:hover { background: rgba(255, 255, 255, 0.85); }

section.block {
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 20px;
  padding: 32px;
  margin-bottom: 24px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}
section.block h2 {
  margin: 0 0 14px;
  font-size: 1.5rem;
  color: #1e293b;
  font-weight: 700;
  letter-spacing: -0.01em;
}
section.block h3 {
  margin: 24px 0 10px;
  font-size: 1.15rem;
  color: #1e293b;
  font-weight: 600;
}
section.block p { color: #334155; margin: 0 0 14px; }
section.block ul, section.block ol { color: #334155; padding-left: 22px; }
section.block li { margin-bottom: 8px; }
section.block a { color: #2563eb; }

.faq-item { margin-bottom: 22px; padding-bottom: 18px; border-bottom: 1px solid rgba(0, 0, 0, 0.06); }
.faq-item:last-child { border-bottom: none; }
.faq-q { font-weight: 600; color: #1e293b; margin-bottom: 6px; font-size: 1.05rem; }
.faq-a { color: #475569; }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 16px;
}
.feature-card {
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 14px;
  padding: 18px;
}
.feature-card strong { display: block; margin-bottom: 6px; color: #1e293b; }
.feature-card p { font-size: 0.9rem; color: #475569; margin: 0; }

footer.site-footer {
  padding: 40px 32px;
  text-align: center;
  color: #64748b;
  font-size: 0.88rem;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  background: rgba(255, 255, 255, 0.35);
}
footer.site-footer a {
  color: #475569;
  text-decoration: none;
  margin: 0 8px;
}
footer.site-footer a:hover { color: #2563eb; }

@media (max-width: 640px) {
  header.site-header { padding: 14px 18px; flex-wrap: wrap; gap: 10px; }
  .site-nav { gap: 14px; font-size: 0.86rem; }
  main { padding: 32px 18px 60px; }
  .hero h1 { font-size: 2rem; }
  .hero .lede { font-size: 1.05rem; }
  section.block { padding: 22px; }
  .cta-secondary { margin-left: 0; margin-top: 10px; display: inline-block; }
}
