:root {
  color-scheme: light;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  background: #f7f8fb;
  color: #13171f;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: #f7f8fb;
}

a {
  color: inherit;
  text-decoration: none;
}

.hero {
  background: radial-gradient(circle at top, #e8f0ff 0%, #ffffff 60%);
  padding: 32px 24px 64px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto 40px;
}

.logo {
  font-weight: 700;
  font-size: 20px;
}

.nav-actions {
  display: flex;
  gap: 20px;
  font-size: 14px;
}

.nav-link {
  color: #2b4b9b;
}

.hero-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.hero-copy h1 {
  font-size: clamp(32px, 4vw, 44px);
  margin-bottom: 16px;
}

.eyebrow {
  color: #2b4b9b;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.subheadline {
  font-size: 18px;
  line-height: 1.5;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0;
}

.button {
  padding: 12px 18px;
  border-radius: 8px;
  border: 1px solid #1d3a77;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.button.primary {
  background: #1d3a77;
  color: #ffffff;
}

.button.secondary {
  background: #ffffff;
  color: #1d3a77;
}

.trust {
  font-size: 14px;
  color: #4b5563;
}

.hero-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 20px 40px rgba(17, 24, 39, 0.08);
}

.hero-card-header {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #6b7280;
}

.hero-card-body {
  margin-top: 12px;
}

.card-title {
  font-weight: 600;
}

.card-meta {
  color: #6b7280;
  font-size: 13px;
}

.section {
  padding: 64px 24px;
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.problem {
  background: #ffffff;
}

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

.bullet {
  background: #f1f5ff;
  border-radius: 12px;
  padding: 16px;
  font-weight: 600;
  color: #1d3a77;
}

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

.feature {
  background: #ffffff;
  padding: 20px;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
}

.steps {
  background: #ffffff;
}

.step-list {
  margin-top: 16px;
  padding-left: 20px;
  line-height: 1.7;
}

.sample {
  background: #f1f5ff;
}

.sample-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 24px;
  margin-top: 24px;
  box-shadow: 0 16px 32px rgba(17, 24, 39, 0.08);
}

.sample-card h3 {
  margin-top: 0;
}

.sample-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 16px;
}

.sample-block {
  background: #f8fafc;
  border-radius: 12px;
  padding: 16px;
}

.pilot {
  background: #ffffff;
}

.pilot-grid,
.interview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  margin-top: 24px;
}

.form {
  background: #f8fafc;
  padding: 20px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form label,
.form fieldset {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 14px;
}

.form input,
.form select,
.form textarea {
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #cbd5f5;
  font-size: 14px;
  font-family: inherit;
}

.form fieldset {
  border: none;
  padding: 0;
}

.form fieldset label {
  flex-direction: row;
  align-items: center;
  gap: 8px;
}

.form fieldset input[type="text"] {
  margin-left: 8px;
  flex: 1;
}

.honeypot {
  display: none;
}

.faq {
  background: #ffffff;
}

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

.footer {
  background: #0f172a;
  color: #e2e8f0;
  padding: 32px 24px;
}

.footer a {
  color: #e2e8f0;
  text-decoration: underline;
}

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

.disclaimer {
  font-size: 12px;
  color: #94a3b8;
}

.thanks {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.thanks-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 32px;
  max-width: 520px;
  text-align: center;
  box-shadow: 0 16px 32px rgba(17, 24, 39, 0.08);
}

.thanks-card h1 {
  margin-top: 0;
}

@media (max-width: 640px) {
  .nav-actions {
    display: none;
  }

  .cta-row {
    flex-direction: column;
  }
}
