/* Siteable — site styles */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue:     #2271b1;
  --blue-dk:  #135e96;
  --green:    #00a32a;
  --text:     #1a1a1a;
  --muted:    #5a6270;
  --hairline: #e8e8e8;
  --bg-soft:  #f7f8fa;
  --radius:   6px;
  --max:      860px;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── Layout ── */
.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

/* ── Nav ── */
nav {
  border-bottom: 1px solid var(--hairline);
  padding: 16px 0;
  position: sticky;
  top: 0;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(4px);
  z-index: 10;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.nav-logo { font-size: 18px; font-weight: 700; color: var(--text); letter-spacing: -.3px; }
.nav-logo span { color: var(--blue); }
.nav-cta { background: var(--blue); color: #fff; padding: 8px 18px; border-radius: var(--radius); font-size: 14px; font-weight: 600; }
.nav-cta:hover { background: var(--blue-dk); text-decoration: none; }

/* ── Hero ── */
.hero {
  text-align: center;
  padding: 80px 24px 72px;
  max-width: 680px;
  margin: 0 auto;
}
.hero-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--blue);
  background: #e8f0fb;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.5px;
  color: var(--text);
  margin-bottom: 20px;
}
.hero p {
  font-size: 18px;
  color: var(--muted);
  margin-bottom: 32px;
  line-height: 1.65;
}
.hero-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.btn-primary {
  background: var(--blue);
  color: #fff;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 600;
  display: inline-block;
}
.btn-primary:hover { background: var(--blue-dk); text-decoration: none; }
.btn-ghost {
  color: var(--muted);
  padding: 13px 20px;
  border-radius: var(--radius);
  font-size: 15px;
  display: inline-block;
  border: 1px solid var(--hairline);
}
.btn-ghost:hover { border-color: #aaa; text-decoration: none; color: var(--text); }

/* ── Section ── */
section { padding: 64px 0; }
section + section { border-top: 1px solid var(--hairline); }
.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 10px;
}
.section-title {
  font-size: clamp(24px, 3.5vw, 34px);
  font-weight: 800;
  letter-spacing: -.3px;
  line-height: 1.2;
  margin-bottom: 14px;
}
.section-sub {
  font-size: 17px;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.6;
}

/* ── Steps ── */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 32px; margin-top: 40px; }
.step-num { font-size: 13px; font-weight: 700; color: var(--blue); margin-bottom: 10px; }
.step h3 { font-size: 17px; font-weight: 700; margin-bottom: 6px; }
.step p { font-size: 14px; color: var(--muted); line-height: 1.55; }

/* ── Features ── */
.features { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; margin-top: 40px; }
.feature {
  background: var(--bg-soft);
  border-radius: 8px;
  padding: 24px;
}
.feature-icon { font-size: 22px; margin-bottom: 10px; }
.feature h3 { font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.feature p { font-size: 13px; color: var(--muted); line-height: 1.55; }

/* ── Narrative callout ── */
.narrative-callout {
  background: var(--bg-soft);
  border-radius: 10px;
  padding: 32px 36px;
  margin-top: 40px;
  border-left: 3px solid var(--blue);
  font-family: Georgia, 'Times New Roman', serif;
}
.narrative-callout .label {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}
.narrative-callout p { font-size: 15px; line-height: 1.75; color: var(--text); }
.narrative-callout .gap { margin-top: 16px; font-size: 13px; color: #c0392b; font-family: -apple-system, sans-serif; }
.narrative-callout .gap strong { font-family: -apple-system, sans-serif; }

/* ── Pricing ── */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; margin-top: 40px; align-items: start; }
.plan {
  border: 1px solid var(--hairline);
  border-radius: 10px;
  padding: 28px;
}
.plan.pro {
  border-color: var(--blue);
  box-shadow: 0 0 0 1px var(--blue);
}
.plan-name { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); margin-bottom: 8px; }
.plan.pro .plan-name { color: var(--blue); }
.plan-price { font-size: 36px; font-weight: 800; letter-spacing: -.5px; margin-bottom: 4px; }
.plan-price span { font-size: 15px; font-weight: 400; color: var(--muted); }
.plan-desc { font-size: 13px; color: var(--muted); margin-bottom: 20px; line-height: 1.5; }
.plan-features { list-style: none; margin-bottom: 24px; }
.plan-features li { font-size: 14px; padding: 6px 0; border-bottom: 1px solid var(--hairline); display: flex; align-items: center; gap: 8px; }
.plan-features li:last-child { border-bottom: none; }
.plan-features .check { color: var(--green); font-weight: 700; }
.plan-features .dash { color: #ccc; }
.btn-plan { display: block; text-align: center; padding: 11px; border-radius: var(--radius); font-size: 14px; font-weight: 600; }
.btn-plan.free { border: 1px solid var(--hairline); color: var(--muted); }
.btn-plan.free:hover { border-color: #aaa; text-decoration: none; color: var(--text); }
.btn-plan.paid { background: var(--blue); color: #fff; }
.btn-plan.paid:hover { background: var(--blue-dk); text-decoration: none; }

/* ── Footer ── */
footer {
  border-top: 1px solid var(--hairline);
  padding: 32px 0;
  font-size: 13px;
  color: var(--muted);
}
.footer-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-logo { font-weight: 700; color: var(--text); }
.footer-logo span { color: var(--blue); }
.footer-links { display: flex; gap: 20px; }
.footer-links a { color: var(--muted); }
.footer-links a:hover { color: var(--text); text-decoration: none; }

@media (max-width: 600px) {
  .hero { padding: 52px 0 48px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .footer-inner { flex-direction: column; }
  nav .nav-cta { display: none; }
}
