.shell {
  width: min(100% - 32px, 720px);
  margin: 0 auto;
  padding: 34px 0 64px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  text-decoration: none;
}
.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 12px;
  color: white;
  background: linear-gradient(135deg, var(--primary), #ad4858);
  box-shadow: 0 14px 28px -18px rgba(122, 31, 43, 0.9);
}
.hero { padding: 70px 0 30px; text-align: center; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 16px;
  padding: 7px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--text-muted);
  background: rgba(255, 253, 249, 0.78);
  font-size: 0.78rem;
  font-weight: 700;
}
.hero h1 {
  max-width: 700px;
  margin-right: auto;
  margin-bottom: 14px;
  margin-left: auto;
  font-size: clamp(2.6rem, 9vw, 4.7rem);
  line-height: 0.98;
}
.hero-copy {
  max-width: 590px;
  margin: 0 auto 28px;
  color: var(--text-muted);
  font-size: clamp(1rem, 3vw, 1.15rem);
  line-height: 1.65;
}
.features { display: grid; gap: 14px; margin-top: 44px; }
.feature-card, .card {
  border: 1px solid rgba(228, 214, 202, 0.92);
  background: rgba(255, 253, 249, 0.92);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}
.feature-card {
  display: flex;
  gap: 15px;
  padding: 20px;
  border-radius: var(--radius-md);
}
.feature-icon {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 12px;
  color: var(--primary);
  background: var(--primary-soft);
  font-size: 1.1rem;
}
.feature-card h2 { margin-bottom: 5px; font-size: 1.12rem; }
.feature-card p, .muted { color: var(--text-muted); line-height: 1.55; }
.page-header { padding: 22px 0 26px; text-align: center; }
.page-header h1 { margin-bottom: 8px; font-size: clamp(2rem, 7vw, 3rem); }
.card { padding: clamp(20px, 5vw, 34px); border-radius: var(--radius-lg); }
.steps {
  display: flex;
  align-items: center;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}
.step {
  display: flex;
  min-width: 0;
  flex: 1;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.76rem;
  font-weight: 700;
}
.step:not(:last-child)::after {
  height: 1px;
  flex: 1;
  content: "";
  background: var(--border);
}
.step-number {
  display: grid;
  width: 29px;
  height: 29px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--surface-muted);
}
.step.is-active, .step.is-complete { color: var(--text); }
.step.is-active .step-number, .step.is-complete .step-number {
  color: white;
  background: var(--primary);
}
.step.is-complete:not(:last-child)::after { background: rgba(122, 31, 43, 0.48); }
.section-title { margin-bottom: 6px; font-size: 1.65rem; }
.section-lead { margin-bottom: 24px; color: var(--text-muted); line-height: 1.55; }
.footer {
  margin-top: 32px;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.78rem;
}
.footer a, .inline-link { color: var(--primary); font-weight: 700; }
.privacy-section { padding: 19px 0; border-bottom: 1px solid var(--border); }
.privacy-section:last-child { border-bottom: 0; }
.privacy-section h2 { margin-bottom: 7px; font-size: 1.18rem; }
.privacy-section p { margin-bottom: 0; color: var(--text-muted); line-height: 1.65; }
