:root {
  --purple: #3a0054;
  --green: #3e9d2b;
  --ink: #1d1720;
  --muted: #716a73;
  --paper: #f7f6ef;
  --line: #e9e3e9;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 5%, rgba(62, 157, 43, .13), transparent 32rem),
    radial-gradient(circle at 92% 16%, rgba(58, 0, 84, .10), transparent 30rem),
    var(--paper);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
}

a { color: var(--purple); }

.shell { width: min(920px, calc(100% - 32px)); margin: 0 auto; }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--purple);
  font-size: 21px;
  font-weight: 800;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 15px;
  color: #fff;
  background: var(--green);
  box-shadow: 0 10px 24px rgba(62, 157, 43, .22);
}

.home-link { font-size: 14px; font-weight: 650; text-decoration: none; }

.hero { padding: 64px 0 34px; }

.eyebrow {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

h1 {
  max-width: 760px;
  margin: 0;
  color: var(--purple);
  font-size: clamp(42px, 8vw, 72px);
  line-height: 1.02;
  letter-spacing: -.045em;
}

.lead { max-width: 700px; margin: 22px 0 0; color: var(--muted); font-size: 18px; }
.updated { margin-top: 18px; color: #8b838d; font-size: 13px; }

.card {
  margin: 22px 0 64px;
  padding: clamp(24px, 5vw, 54px);
  border: 1px solid rgba(255, 255, 255, .8);
  border-radius: 34px;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 24px 70px rgba(41, 21, 46, .09);
}

h2 { margin: 34px 0 8px; color: var(--purple); font-size: 23px; line-height: 1.25; }
h2:first-child { margin-top: 0; }
h3 { margin: 24px 0 7px; font-size: 16px; }
p { margin: 8px 0 14px; }
ul { margin: 10px 0 18px; padding-left: 23px; }
li { margin: 7px 0; }

.callout {
  margin: 24px 0;
  padding: 20px;
  border-radius: 20px;
  background: #edf6ea;
  border: 1px solid #d8ead2;
}

.steps { counter-reset: step; display: grid; gap: 12px; margin: 22px 0; }
.step { position: relative; padding: 18px 18px 18px 58px; border-radius: 18px; background: #f6f2f7; }
.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 16px;
  top: 15px;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 11px;
  color: #fff;
  background: var(--purple);
  font-weight: 800;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  margin-top: 10px;
  padding: 0 22px;
  border-radius: 16px;
  color: #fff;
  background: var(--green);
  font-weight: 750;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(62, 157, 43, .22);
}

.footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  padding: 0 0 42px;
  color: #847c86;
  font-size: 13px;
}

.footer-links { display: flex; flex-wrap: wrap; gap: 16px; }
.footer a { color: inherit; }

@media (max-width: 600px) {
  .hero { padding-top: 40px; }
  .card { border-radius: 26px; }
  .home-link { display: none; }
}
