* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #1e293b;
  background: #ffffff;
}

.hp-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 64px;
  background: white;
  border-bottom: 1px solid #f1f5f9;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  z-index: 100;
}

.hp-logo {
  font-size: 18px;
  font-weight: 600;
  color: #111827;
  text-decoration: none;
  letter-spacing: -0.02em;
}

.hp-logo span { color: #2563eb; }

.hp-nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.hp-nav-link {
  font-size: 14px;
  font-weight: 500;
  color: #6b7280;
  text-decoration: none;
}

.hp-nav-link:hover {
  color: #111827;
}

.btn-lg {
  padding: 13px 28px;
  font-size: 16px;
}

.hp-hero {
  padding: 140px 24px 80px;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

.hp-eyebrow {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #2563eb;
  margin-bottom: 20px;
}

.hp-headline {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  color: #0f172a;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  margin-top: 0;
}

.hp-sub {
  font-size: 18px;
  color: #475569;
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto 36px;
}

.hp-cta-row {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
}

.hp-trust {
  font-size: 13px;
  color: #94a3b8;
  margin-top: 16px;
}

.hp-social-proof {
  background: #f9fafb;
  padding: 20px 24px;
  text-align: center;
  font-size: 14px;
  color: #64748b;
}

.hp-section {
  padding: 80px 24px;
}

.hp-section-heading {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  color: #0f172a;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  margin-top: 0;
  text-align: center;
}

.hp-section-sub {
  font-size: 17px;
  color: #475569;
  text-align: center;
  margin-bottom: 48px;
}

.hp-feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}

.hp-feature-card {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 28px;
}

.hp-feature-icon {
  width: 40px;
  height: 40px;
  background: #eff6ff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: #2563eb;
}

.hp-feature-icon svg {
  width: 20px;
  height: 20px;
  stroke-width: 1.75;
}

.hp-feature-title {
  font-size: 17px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 8px;
}

.hp-feature-body {
  font-size: 14px;
  color: #64748b;
  line-height: 1.7;
  margin: 0;
}

.hp-steps {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.hp-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.hp-step-number {
  width: 36px;
  height: 36px;
  background: #2563eb;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
  flex-shrink: 0;
}

.hp-step-title {
  font-size: 17px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 4px;
}

.hp-step-body {
  font-size: 14px;
  color: #64748b;
  line-height: 1.7;
  margin: 0;
}

.hp-pricing-pills {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 36px 0;
}

.hp-plan-pill {
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 16px 24px;
  text-align: center;
  min-width: 160px;
}

.hp-plan-pill.featured {
  border-color: #2563eb;
  background: #eff6ff;
}

.hp-plan-name {
  font-size: 13px;
  font-weight: 600;
  color: #64748b;
  margin-bottom: 4px;
}

.hp-plan-price {
  font-size: 24px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 4px;
}

.hp-plan-pill.featured .hp-plan-price {
  color: #2563eb;
}

.hp-plan-desc {
  font-size: 12px;
  color: #94a3b8;
  margin: 0;
}

.hp-dark {
  background: #111827;
  color: white;
}

.hp-dark .hp-section-heading {
  color: white;
}

.hp-dark .hp-section-sub {
  color: #94a3b8;
}

.hp-dark .hp-trust {
  color: #94a3b8;
}

.hp-footer {
  background: #0f172a;
  padding: 40px 32px;
}

.hp-footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.hp-footer-tagline {
  font-size: 13px;
  color: #6b7280;
  margin: 6px 0 0;
}

.hp-footer-copy {
  font-size: 13px;
  color: #6b7280;
}

.hp-footer-links {
  display: flex;
  gap: 24px;
}

.hp-footer-links a {
  color: #6b7280;
  text-decoration: none;
  font-size: 14px;
}

.hp-footer-links a:hover {
  color: white;
}

/* ---------- Legal pages (privacy / terms) ---------- */

.legal-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 140px 24px 80px;
}

.legal-content h1 {
  font-size: 34px;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
}

.legal-updated {
  font-size: 14px;
  color: #94a3b8;
  margin: 0 0 40px;
}

.legal-content h2 {
  font-size: 19px;
  font-weight: 700;
  color: #0f172a;
  margin: 36px 0 10px;
}

.legal-content p {
  font-size: 15px;
  color: #475569;
  line-height: 1.8;
  margin: 0;
}

.legal-content a {
  color: #2563eb;
}

@media (max-width: 640px) {
  .hp-nav { padding: 0 16px; }
  .hp-hero { padding: 120px 16px 60px; }
  .hp-section { padding: 60px 16px; }
  .hp-cta-row { flex-direction: column; align-items: center; }
  .hp-footer-inner { flex-direction: column; text-align: center; }
  .hp-footer-links { justify-content: center; }
  .legal-content { padding: 120px 16px 60px; }
}
