:root {
  --ink: #171313;
  --coral: #ef6f67;
  --pink: #ffaaa4;
  --blush: #f6deda;
  --paper: #fff8f5;
  --muted: #76534f;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--blush);
  color: var(--ink);
  font-family: Inter, ui-rounded, -apple-system, BlinkMacSystemFont, 'Segoe UI',
    sans-serif;
}
a {
  color: inherit;
}
.wrap {
  width: min(1120px, calc(100% - 36px));
  margin: auto;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 21px;
  font-weight: 900;
  text-decoration: none;
}
.brand img {
  width: 42px;
  height: 42px;
  border-radius: 13px;
}
.navlinks {
  display: flex;
  gap: 22px;
  align-items: center;
}
.navlinks a {
  text-decoration: none;
  font-weight: 700;
  color: var(--muted);
}
.pill {
  background: var(--paper);
  padding: 11px 16px;
  border-radius: 999px;
}
.hero {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 42px;
  align-items: center;
  padding: 54px 0 80px;
}
.eyebrow {
  text-transform: uppercase;
  color: #8b403b;
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 2px;
}
.hero h1 {
  font-size: clamp(52px, 7vw, 92px);
  line-height: 0.95;
  letter-spacing: -5px;
  margin: 18px 0;
}
.lead {
  font-size: 20px;
  line-height: 1.65;
  color: var(--muted);
  max-width: 650px;
}
.cta {
  display: inline-flex;
  background: var(--ink);
  color: white;
  text-decoration: none;
  border-radius: 999px;
  padding: 17px 24px;
  font-weight: 800;
  margin-top: 18px;
}
.phone {
  background: var(--paper);
  border: 10px solid white;
  border-radius: 52px;
  padding: 24px;
  box-shadow: 0 28px 70px #b9797040;
}
.phone-card {
  background: var(--pink);
  border-radius: 32px;
  padding: 28px;
}
.phone-card h2 {
  font-size: 44px;
  line-height: 1;
  margin: 12px 0 70px;
}
.phone-button {
  background: var(--ink);
  color: white;
  border-radius: 999px;
  padding: 18px;
  text-align: center;
  font-weight: 800;
}
.section {
  padding: 76px 0;
}
.section h2,
.legal-page h1 {
  font-size: clamp(38px, 5vw, 64px);
  letter-spacing: -2px;
  margin: 0 0 28px;
}
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.card {
  background: var(--paper);
  border-radius: 28px;
  padding: 28px;
}
.card b {
  display: block;
  font-size: 22px;
  margin-bottom: 10px;
}
.card p,
.legal-page p,
.legal-page li {
  color: var(--muted);
  line-height: 1.7;
}
.support {
  background: var(--pink);
  border-radius: 40px;
  padding: 42px;
}
.footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 34px 0 46px;
  color: var(--muted);
  font-size: 14px;
}
.footer div {
  display: flex;
  gap: 18px;
}
.legal-page {
  background: var(--paper);
  border-radius: 36px;
  padding: clamp(24px, 5vw, 60px);
  margin: 36px auto 70px;
  max-width: 900px;
}
.legal-page h2 {
  margin-top: 34px;
}
.disclosure {
  font-size: 13px;
  color: var(--muted);
}
@media (max-width: 760px) {
  .navlinks a:not(.pill) {
    display: none;
  }
  .hero {
    grid-template-columns: 1fr;
    padding-top: 25px;
  }
  .hero h1 {
    letter-spacing: -3px;
  }
  .phone {
    max-width: 430px;
  }
  .grid {
    grid-template-columns: 1fr;
  }
  .footer {
    flex-direction: column;
  }
}
.soft-section {
  background: #efcbc6;
}
.two-column {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 48px;
  align-items: start;
}
.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
  counter-reset: step;
}
.steps li {
  counter-increment: step;
  background: var(--paper);
  border-radius: 24px;
  padding: 22px 22px 22px 68px;
  position: relative;
}
.steps li:before {
  content: counter(step);
  position: absolute;
  left: 20px;
  top: 20px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: white;
  font-weight: 900;
}
.steps b,
.steps span {
  display: block;
}
.steps b {
  font-size: 19px;
}
.steps span {
  color: var(--muted);
  line-height: 1.6;
  margin-top: 5px;
}
.content-callout {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 38px;
}
.text-link {
  font-weight: 900;
  color: #9d403a;
  text-decoration: none;
  white-space: nowrap;
}
.article-page {
  max-width: 900px;
}
.article-page > p:first-of-type {
  font-size: 20px;
}
.article-page ol li {
  margin-bottom: 16px;
}
.related {
  background: var(--pink);
  border-radius: 24px;
  padding: 22px;
  margin-top: 38px;
}
.faq {
  padding-top: 36px;
}
@media (max-width: 760px) {
  .two-column {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .content-callout {
    align-items: start;
    flex-direction: column;
  }
  .text-link {
    white-space: normal;
  }
  .footer div {
    flex-wrap: wrap;
  }
}
