/* Page-specific styles for the static SEO landing pages.
   Shared header/nav/footer/button styles live in /assets/shell.css. */

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink-600);
  background: var(--surface-page);
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: var(--font-display);
  color: var(--ink-900);
  margin: 0 0 0.6em;
}

h1 { font-size: clamp(2rem, 4.4vw, 2.75rem); line-height: 1.12; letter-spacing: -0.01em; }
h2 { font-size: clamp(1.4rem, 2.6vw, 1.75rem); line-height: 1.25; }
h3 { font-size: 1.1rem; color: var(--ink-700); }

p { margin: 0 0 1em; }

a { color: var(--pine-600); }
a:hover { text-decoration: underline; }
.site-header a, .site-footer a, .button { text-decoration: none; }
.site-header a:hover, .button:hover { text-decoration: none; }

.hero-sm {
  padding: 150px 0 40px;
  background:
    radial-gradient(circle at 18% 0%, rgba(222,246,250,0.7), transparent 34rem),
    linear-gradient(180deg, #f7fcfb 0%, #fffdf9 100%);
}

.hero-sm .lede { font-size: 18px; max-width: 640px; }
.hero-sm .actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 22px; }

.hero-sm img.hero-shot {
  display: block;
  margin: 32px auto 0;
  max-width: 100%;
  width: 560px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
}

.section { padding: 48px 0; }
.section-tint { background: var(--mint-100); }

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

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

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

.checklist li {
  position: relative;
  padding-left: 26px;
  font-size: 15px;
}

.checklist li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 16px;
  height: 16px;
  border-radius: 5px;
  background: var(--mint-card);
  border: 1px solid var(--pine-600);
}

table.compare {
  width: 100%;
  border-collapse: collapse;
  margin-top: 24px;
  font-size: 14px;
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

table.compare th, table.compare td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--line-200);
  text-align: left;
}

table.compare th { background: var(--mint-100); font-family: var(--font-display); }

.faq details {
  background: var(--surface);
  border: 1px solid var(--line-200);
  border-radius: var(--radius);
  padding: 14px 18px;
  margin-bottom: 10px;
}

.faq summary {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--ink-900);
  cursor: pointer;
}

.faq details p { margin: 10px 0 0; }

.cta-band {
  background: var(--grad-primary);
  border-radius: var(--radius-xl);
  padding: 44px;
  text-align: center;
  color: #fff;
}

.cta-band h2 { color: #fff; }
.cta-band .actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 16px; }
.cta-band .button-secondary { background: rgba(255,255,255,0.16); color: #fff; }

.internal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.internal-links a {
  background: var(--surface);
  border: 1px solid var(--line-200);
  border-radius: var(--radius-full, 999px);
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--pine-700);
  text-decoration: none;
}
