:root {
  --ink: #102827;
  --muted: #526565;
  --paper: #f8f7f2;
  --line: #dbe1d7;
  --lime: #c9ed55;
  --coral: #ff866a;
  --white: #ffffff;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: Georgia, "Times New Roman", serif; }
a { color: inherit; text-decoration: none; }
p { margin: 0; }

.site-header, main > section, footer { padding-left: max(24px, calc((100% - 1160px) / 2)); padding-right: max(24px, calc((100% - 1160px) / 2)); }
.site-header { height: 78px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--line); font-family: Arial, sans-serif; }
.brand { font-size: 26px; font-weight: 800; letter-spacing: 0; color: var(--ink); }
.header-link { font-size: 14px; font-weight: 700; }

.hero { min-height: 640px; display: grid; grid-template-columns: 1.15fr .85fr; align-items: center; gap: 52px; padding-top: 72px; padding-bottom: 72px; }
.eyebrow { margin-bottom: 18px; color: #4e7044; font: 700 12px/1.2 Arial, sans-serif; letter-spacing: 1.4px; text-transform: uppercase; }
h1, h2, h3 { margin: 0; font-weight: 500; letter-spacing: 0; }
h1 { max-width: 700px; font-size: clamp(46px, 6vw, 82px); line-height: .98; }
.intro { max-width: 550px; margin-top: 28px; color: var(--muted); font-size: 20px; line-height: 1.5; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 36px; font-family: Arial, sans-serif; }
.button { display: inline-flex; align-items: center; min-height: 48px; padding: 0 20px; border: 1px solid var(--ink); font-size: 14px; font-weight: 700; }
.button-primary { background: var(--ink); color: var(--white); }
.button-secondary { background: transparent; }
.hero-mark { aspect-ratio: 1; display: flex; flex-direction: column; justify-content: space-between; padding: 34px; background: var(--lime); border-radius: 50% 50% 4px 50%; color: var(--ink); }
.hero-mark span { font: 500 clamp(150px, 20vw, 270px)/.7 Arial, sans-serif; }
.mark-detail { align-self: flex-end; font-size: 19px; line-height: 1.15; }

.paths { display: grid; grid-template-columns: 1fr 1fr; padding-top: 0; padding-bottom: 88px; gap: 18px; }
.path-card { min-height: 330px; padding: 38px; display: flex; flex-direction: column; align-items: flex-start; border-radius: 4px; }
.customer-card { background: var(--ink); color: var(--white); }
.provider-card { background: var(--coral); }
.path-card .eyebrow { color: currentColor; opacity: .72; }
.path-card h2 { max-width: 360px; font-size: 38px; line-height: 1.05; }
.path-card > p:not(.eyebrow) { max-width: 380px; margin-top: 16px; font-size: 17px; line-height: 1.45; opacity: .82; }
.path-card a { margin-top: auto; padding-top: 30px; font: 700 14px Arial, sans-serif; }
.path-card a span { padding-left: 8px; font-size: 20px; }

.how-it-works { padding-top: 96px; padding-bottom: 96px; border-top: 1px solid var(--line); }
.section-heading h2 { max-width: 590px; font-size: clamp(38px, 4vw, 56px); line-height: 1.05; }
.steps { margin: 64px 0 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); list-style: none; counter-reset: steps; }
.steps li { padding: 24px 28px 0 0; border-top: 1px solid var(--ink); }
.steps li + li { padding-left: 28px; border-left: 1px solid var(--line); }
.steps span { display: block; margin-bottom: 42px; color: #59704d; font: 700 13px Arial, sans-serif; }
.steps h3 { font-size: 26px; }
.steps p { margin-top: 12px; max-width: 260px; color: var(--muted); font-size: 16px; line-height: 1.45; }

.trust { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; padding-top: 74px; padding-bottom: 74px; background: #e3eddb; }
.trust h2 { max-width: 440px; font-size: 42px; line-height: 1.08; }
.trust > p { align-self: end; max-width: 470px; color: #34504d; font-size: 19px; line-height: 1.5; }

.download { padding-top: 96px; padding-bottom: 96px; text-align: center; background: var(--ink); color: var(--white); }
.download .eyebrow { color: var(--lime); }
.download h2 { font-size: clamp(45px, 6vw, 76px); line-height: .98; }
.store-badges { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; margin-top: 38px; font-family: Arial, sans-serif; }
.store-badges span { min-width: 154px; padding: 13px 18px; border: 1px solid #718382; text-align: left; font-weight: 700; }
.store-badges small { display: block; margin-top: 3px; color: #b9c8c5; font-size: 11px; font-weight: 400; }

footer { display: grid; grid-template-columns: 1fr auto; gap: 28px; padding-top: 40px; padding-bottom: 30px; background: var(--paper); font-family: Arial, sans-serif; }
footer nav { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 20px; font-size: 13px; }
footer p { grid-column: 1 / -1; color: var(--muted); font-size: 12px; }

@media (max-width: 720px) {
  .hero { min-height: auto; grid-template-columns: 1fr; gap: 48px; padding-top: 62px; }
  .hero-mark { width: min(74vw, 360px); justify-self: end; }
  .paths, .steps, .trust { grid-template-columns: 1fr; }
  .path-card { min-height: 290px; padding: 28px; }
  .how-it-works { padding-top: 70px; padding-bottom: 70px; }
  .steps { gap: 30px; margin-top: 46px; }
  .steps li, .steps li + li { padding: 20px 0 0; border-left: 0; }
  .steps span { margin-bottom: 22px; }
  .trust { gap: 28px; padding-top: 58px; padding-bottom: 58px; }
  footer { grid-template-columns: 1fr; }
  footer nav { justify-content: flex-start; }
}