:root {
  --navy: #0f172a;
  --navy-light: #1e2937;
  --teal: #0f766e;
  --teal-dark: #0d5c57;
  --accent: #14b8a6;
  --bg: #f8fafc;
  --card: #ffffff;
  --text: #0f172a;
  --text-muted: #475569;
  --border: #e2e8f0;
  --success: #0f766e;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}
.container { max-width: 860px; margin: 0 auto; padding: 0 20px; }
header {
  background: var(--navy);
  color: white;
  padding: 14px 0;
}
.header-inner {
  max-width: 860px; margin: 0 auto; padding: 0 20px;
  display: flex; align-items: center; justify-content: space-between;
}
.logo { font-weight: 700; font-size: 1.1rem; letter-spacing: -.02em; }
.logo a { color: white; text-decoration: none; }
nav a { color: #cbd5e1; text-decoration: none; margin-left: 20px; font-size: 0.95rem; }
nav a:hover { color: white; }
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: white;
  padding: 48px 0 40px;
  text-align: center;
}
.hero h1 { font-size: 2.1rem; margin: 0 0 12px; font-weight: 700; letter-spacing: -.03em; }
.hero .tag { font-size: 1.05rem; opacity: 0.9; max-width: 620px; margin: 0 auto 20px; }
.funnel-callout {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 10px;
  padding: 14px 18px;
  margin: 0 auto 12px;
  max-width: 620px;
  font-size: 0.95rem;
}
.funnel-callout strong { color: #5eead4; }
main { padding: 40px 0 60px; }
.section-title {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 8px;
}
.intro-text {
  color: var(--text-muted);
  font-size: 1.02rem;
  max-width: 640px;
}
.positioning {
  background: #f0fdfa;
  border: 1px solid #99f6e4;
  border-radius: 12px;
  padding: 18px 20px;
  margin: 0 0 24px;
  font-size: 0.98rem;
  color: var(--text-muted);
  line-height: 1.55;
}
.positioning a { color: var(--teal); font-weight: 600; }
.proof-link {
  display: inline-block;
  margin-top: 10px;
  font-size: 0.9rem;
  color: var(--teal);
  font-weight: 600;
  text-decoration: none;
}
.proof-link:hover { text-decoration: underline; }
form {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px;
  margin-top: 24px;
  box-shadow: 0 4px 6px -1px rgb(15 23 42 / 0.05);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
@media (max-width: 640px) {
  .form-grid { grid-template-columns: 1fr; }
  .radio { padding: 12px 12px; }
  .btn { padding: 14px 20px; font-size: 1rem; width: 100%; justify-content: center; }
  nav a { margin-left: 12px; font-size: 0.85rem; }
}
.field { margin-bottom: 18px; }
.field.full { grid-column: 1 / -1; }
label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy-light);
  margin-bottom: 6px;
}
input[type="text"], input[type="email"], input[type="tel"], input[type="number"],
textarea, select {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 1rem;
  background: #fff;
  transition: border .15s ease;
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.1);
}
textarea { min-height: 110px; resize: vertical; }
.radios {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.radio {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  background: #f8fafc;
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px solid var(--border);
}
.radio input { margin: 3px 0 0; accent-color: var(--teal); width: 16px; height: 16px; }
.radio-label { font-size: 0.95rem; line-height: 1.45; }
.actions {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 26px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  cursor: pointer;
  transition: all .15s ease;
  border: none;
}
.btn-primary {
  background: var(--teal);
  color: white;
}
.btn-primary:hover { background: var(--teal-dark); transform: translateY(-1px); }
.btn-secondary {
  background: white;
  color: var(--navy);
  border: 1px solid var(--border);
}
.btn-secondary:hover { background: #f8fafc; }
.success {
  background: #f0fdfa;
  border: 2px solid var(--teal);
  border-radius: 14px;
  padding: 28px;
  margin-top: 24px;
  display: none;
}
.success.visible { display: block; }
.success h2 { color: var(--success); margin: 0 0 12px; font-size: 1.35rem; }
.next-steps {
  background: white;
  border-radius: 10px;
  padding: 18px;
  margin: 18px 0;
  border: 1px solid #ccfbf1;
}
.next-steps ol { margin: 10px 0 0; padding-left: 20px; }
.next-steps li { margin-bottom: 8px; }
.email-preview {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  background: #0f172a;
  color: #e0f2fe;
  padding: 14px;
  border-radius: 8px;
  font-size: 0.85rem;
  white-space: pre-wrap;
  margin: 16px 0;
  max-height: 240px;
  overflow: auto;
}
.meta { font-size: 0.85rem; color: var(--text-muted); }
footer {
  border-top: 1px solid var(--border);
  padding: 28px 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  text-align: center;
}
.trust { font-size: 0.9rem; background: #f1f5f9; padding: 10px 16px; border-radius: 999px; display: inline-block; margin-top: 8px; }