body {
  font-family: Arial, sans-serif;
  background: #f6f7fb;
  color: #1f2933;
  margin: 0;
  padding: 0;
  -webkit-text-size-adjust: 100%;
}
header {
  text-align: center;
  padding: 4rem 1rem;
}
.btn {
  display: inline-block;
  margin: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  background: #1e40af;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 10px 30px rgba(30,64,175,0.2);
  transition: transform 150ms ease, box-shadow 150ms ease;
}
.btn.secondary {
  background: #64748b;
  box-shadow: none;
}
.btn:active {
  transform: scale(0.98);
}
form {
  max-width: 500px;
  margin: 2rem auto;
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(15,23,42,0.12);
}
label { display:block; margin-bottom:0.35rem; font-weight:bold; }
input, select, textarea {
  width: 100%;
  padding: 0.5rem;
  margin-bottom: 1rem;
  border: 1px solid #cbd5f5;
  border-radius: 6px;
}
nav a { margin-right: 1rem; }
.status-pill {
  display:inline-block;
  padding:0.25rem 0.75rem;
  border-radius:999px;
  font-size:0.85rem;
  background:#e0e7ff;
  color:#1e3a8a;
}
.watermark {
  margin-top:1.5rem;
  padding:0.5rem;
  border:1px dashed #c2410c;
  background:#fff7ed;
  color:#b45309;
  text-transform:uppercase;
  font-size:0.9rem;
  letter-spacing:1px;
}

.hero {
  max-width: 960px;
  margin: 0 auto;
  text-align: left;
  padding: clamp(2.5rem, 6vw, 5rem) clamp(1rem, 6vw, 2.5rem) 2rem;
}
.badge {
  display: inline-block;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: #e0f2fe;
  color: #0369a1;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.8rem;
}
.hero h1 {
  font-size: clamp(2rem, 6vw, 3.4rem);
  margin-top: 1rem;
}
.hero p {
  font-size: clamp(1rem, 3vw, 1.2rem);
  line-height: 1.5;
}
.hero-footnote {
  font-size: 0.95rem;
  color: #475569;
  max-width: 640px;
}
.hero-footnote.subtle {
  color: #0f172a;
  font-weight: 600;
}
.ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.25rem 0;
}
main {
  max-width: 1100px;
  margin: 0 auto 4rem;
  padding: 0 clamp(1rem, 4vw, 2rem);
}
.section {
  margin-top: 2.5rem;
  background: #fff;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border-radius: 20px;
  box-shadow: 0 25px 70px rgba(15,23,42,0.08);
}
.section h2 {
  margin-top: 0;
}
.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  align-items: center;
}
.card {
  background: #f8fafc;
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: inset 0 0 0 1px rgba(15,23,42,0.05);
}
.card h3 {
  margin-top: 0;
}
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}
.checklist {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}
.checklist li {
  margin-bottom: 0.85rem;
  padding-left: 1.75rem;
  position: relative;
}
.checklist li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #15803d;
  font-weight: bold;
}
.pill {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  background: #fef3c7;
  color: #92400e;
  font-size: 0.85rem;
  font-weight: 600;
}
.micro-copy {
  font-size: 0.85rem;
  color: #475569;
  margin-top: 0.75rem;
}
.light-note {
  background: #0f172a;
  color: #e2e8f0;
}
.light-note p {
  margin: 0.5rem 0 0;
}
.process ol {
  counter-reset: steps;
  list-style: none;
  padding: 0;
}
.process li {
  counter-increment: steps;
  background: #f8fafc;
  padding: 1rem 1.5rem 1rem 3.25rem;
  border-radius: 16px;
  margin-bottom: 1rem;
  position: relative;
}
.process li::before {
  content: counter(steps);
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #1e40af;
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
}
.testimonials .card {
  font-size: 1.05rem;
  font-style: italic;
}
.attribution {
  font-style: normal;
  color: #475569;
  margin-top: 1rem;
}
.cta-panel {
  text-align: center;
}
.disclaimer {
  background: #0f172a;
  color: #e2e8f0;
  font-size: 0.9rem;
}
.disclaimer p {
  margin: 0;
}

@media (max-width: 640px) {
  header {
    padding: 3rem 1rem 2rem;
  }
  .hero {
    text-align: center;
    padding: 2.5rem 1rem;
  }
  .hero-footnote {
    margin: 0 auto;
  }
  .btn,
  .btn.secondary {
    width: 100%;
    text-align: center;
  }
  .ctas {
    flex-direction: column;
  }
  .process li {
    padding-left: 3rem;
  }
  .process li::before {
    left: 0.5rem;
  }
}
