* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  color: #1f2937;
  background: #ffffff;
  line-height: 1.6;
}

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

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.narrow {
  width: min(760px, 92%);
  margin: 0 auto;
}

.site-header {
  padding: 20px 0;
  border-bottom: 1px solid #e5e7eb;
  background: #ffffff;
}

.brand {
  font-size: 1.25rem;
  font-weight: 700;
}

.hero {
  padding: 72px 0 56px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
  align-items: center;
}

.eyebrow {
  font-size: 0.9rem;
  font-weight: 700;
  color: #0f766e;
  margin-bottom: 12px;
}

h1 {
  font-size: 3rem;
  line-height: 1.1;
  margin: 0 0 16px;
}

h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}

h3 {
  margin-top: 0;
}

.hero-text {
  font-size: 1.1rem;
  margin-bottom: 24px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 12px 18px;
  border-radius: 10px;
  font-weight: 600;
}

.btn.primary {
  background: #0f766e;
  color: #ffffff;
}

.btn.secondary {
  border: 1px solid #cbd5e1;
  color: #1f2937;
  background: #ffffff;
}

.hero-panel {
  display: flex;
  justify-content: center;
}

.panel-card,
.card,
.step {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 20px;
}

.section {
  padding: 64px 0;
}

.alt-bg {
  background: #f8fafc;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 24px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 24px;
}

.step span {
  display: inline-block;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: #0f766e;
  color: #ffffff;
  text-align: center;
  line-height: 32px;
  font-weight: 700;
  margin-bottom: 12px;
}

.why-list {
  padding-left: 20px;
}

.cta-section {
  text-align: center;
}

.email-line {
  margin-top: 16px;
  font-weight: 600;
}

.site-footer {
  border-top: 1px solid #e5e7eb;
  padding: 28px 0;
  text-align: center;
  background: #ffffff;
}

.site-footer p {
  margin: 6px 0;
}

@media (max-width: 900px) {
  .hero-grid,
  .cards,
  .steps {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 2.2rem;
  }

  h2 {
    font-size: 1.6rem;
  }
}
