:root {
  --bg: #fafbfc;
  --card: #ffffff;
  --text: #1b2a4a;
  --muted: #5a6b7e;
  --muted-2: #8896a6;
  --muted-3: #a0adbb;
  --border: #e2e8ef;
  --border-strong: #d4dbe4;
  --primary: #0d7c8f;
  --primary-dark: #0a6270;
  --primary-soft: #e8f5f7;
  --panel-soft: #f0f8f9;
  --navy: #1b2a4a;
  --teal-accent: #0dd4c0;
  --shadow: 0 10px 30px rgba(16, 24, 40, 0.06);
  --radius: 16px;
  --radius-sm: 10px;
  --max: 960px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "DM Sans", sans-serif;
  color: var(--text);
  background: var(--bg);
}

img {
  max-width: 100%;
  display: block;
}

button,
input {
  font: inherit;
}

button[disabled] {
  opacity: 0.7;
  cursor: not-allowed;
}

.site-shell {
  min-height: 100vh;
}

.topbar {
  max-width: var(--max);
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.form-message.success {
  color: #0f8a5f;
}

.form-message.error {
  color: #c0392b;
}

.form-message.loading {
  color: #0d7c8f;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-mark {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 14px;
  font-family: "Fraunces", serif;
}

.brand-name {
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.3px;
}

.topbar-meta {
  color: var(--muted-2);
  font-size: 13px;
}

.hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: 48px 24px 32px;
  text-align: center;
}

.pill {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
}

.hero h1 {
  margin: 0 auto 16px;
  max-width: 680px;
  font-family: "Fraunces", serif;
  font-size: clamp(32px, 5vw, 48px);
  line-height: 1.15;
  letter-spacing: -1px;
  font-weight: 800;
}

.hero h1 span {
  color: var(--primary);
}

.hero-copy {
  max-width: 520px;
  margin: 0 auto 32px;
  font-size: 17px;
  line-height: 1.6;
  color: var(--muted);
}

.hero-form,
.inline-form {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-form {
  max-width: 460px;
  margin: 0 auto;
}

.hero-form input,
.inline-form input {
  flex: 1 1 240px;
  min-width: 220px;
  padding: 14px 18px;
  border: 1.5px solid var(--border-strong);
  border-radius: 10px;
  background: #fff;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.hero-form input:focus,
.inline-form input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(13, 124, 143, 0.08);
}

.hero-form button,
.inline-form button {
  padding: 14px 22px;
  border: none;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(13, 124, 143, 0.22);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.hero-form button:hover,
.inline-form button:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(13, 124, 143, 0.26);
}

.form-message {
  min-height: 22px;
  margin: 14px 0 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
}

.helper-text {
  margin-top: 12px;
  color: var(--muted-3);
  font-size: 12px;
}

.how-it-works {
  max-width: 720px;
  margin: 24px auto 0;
  padding: 0 24px 48px;
}

.info-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-radius: 14px;
  overflow: hidden;
  background: var(--card);
  border: 1.5px solid var(--border);
}

.info-card {
  padding: 22px 18px;
  border-right: 1px solid var(--border);
}

.info-card:last-child {
  border-right: none;
}

.info-icon {
  font-size: 28px;
  margin-bottom: 8px;
  color: var(--primary);
}

.info-card h3 {
  margin: 0 0 6px;
  font-size: 14px;
  color: var(--text);
}

.info-card p {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
  color: var(--muted);
}

.stats-band {
  background: var(--navy);
  padding: 40px 24px;
}

.stats-wrap {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
}

.stat-value {
  font-family: "Fraunces", serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--teal-accent);
}

.stat-label {
  margin-top: 4px;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted-2);
}

.faq-section {
  max-width: 600px;
  margin: 0 auto;
  padding: 48px 24px;
}

.faq-section h2,
.cta-panel h2 {
  margin: 0 0 24px;
  text-align: center;
  font-family: "Fraunces", serif;
  font-size: 24px;
  font-weight: 700;
}

.faq-list {
  border-top: 1px solid transparent;
}

.faq-item {
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item h3 {
  margin: 0 0 6px;
  font-size: 15px;
  font-weight: 600;
}

.faq-item p {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}

.cta-panel-wrap {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 24px 56px;
}

.cta-panel {
  background: linear-gradient(135deg, var(--panel-soft), var(--primary-soft));
  border-radius: 16px;
  padding: 36px 32px;
  border: 1px solid #d0e8ec;
  text-align: center;
}

.cta-panel p {
  margin: 0 0 20px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
}

.footer {
  padding: 20px 24px;
  text-align: center;
  border-top: 1px solid var(--border);
}

.footer p {
  margin: 0;
  font-size: 12px;
  color: var(--muted-3);
}

.honeypot {
  position: absolute !important;
  left: -9999px !important;
  opacity: 0 !important;
  width: 0 !important;
  height: 0 !important;
  pointer-events: none !important;
}

@media (max-width: 800px) {
  .info-card-grid {
    grid-template-columns: 1fr;
  }

  .info-card {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .info-card:last-child {
    border-bottom: none;
  }
}

@media (max-width: 640px) {
  .topbar,
  .hero,
  .how-it-works,
  .faq-section,
  .cta-panel-wrap {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero-copy {
    font-size: 16px;
  }

  .cta-panel {
    padding: 28px 20px;
  }

  .hero-form button,
  .inline-form button,
  .hero-form input,
  .inline-form input {
    width: 100%;
  }
}
