:root {
  color-scheme: light;
  --background: #fbfaf7;
  --surface: #ffffff;
  --ink: #071d26;
  --muted: #41535a;
  --teal: #076d63;
  --teal-dark: #04564f;
  --teal-soft: #eaf3f0;
  --amber: #f2a900;
  --line: rgba(7, 29, 38, 0.12);
  --shell: min(100% - 48px, 1320px);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  background: var(--background);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.6;
}

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

:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 4px;
}

.skip-link {
  background: var(--ink);
  border-radius: 0 0 10px 10px;
  color: white;
  font-weight: 800;
  left: 24px;
  padding: 10px 16px;
  position: fixed;
  top: 0;
  transform: translateY(-120%);
  transition: transform 160ms ease;
  z-index: 100;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header,
.site-footer {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-inline: auto;
  width: var(--shell);
}

.site-header {
  min-height: 76px;
}

.brand {
  align-items: center;
  display: inline-flex;
  font-size: clamp(1.35rem, 2vw, 2rem);
  font-weight: 850;
  gap: 10px;
  letter-spacing: -0.04em;
  min-height: 44px;
}

.brand-mark {
  fill: var(--teal);
  height: 46px;
  width: 40px;
}

.brand-mark circle,
.brand-mark path:nth-of-type(2) {
  fill: var(--background);
}

.site-nav {
  align-items: center;
  display: flex;
  gap: clamp(12px, 3vw, 38px);
}

.site-nav a {
  align-items: center;
  display: inline-flex;
  font-weight: 750;
  min-height: 44px;
  padding: 6px 4px;
}

.site-nav a:hover {
  color: var(--teal);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(480px, 1.08fr);
  margin-inline: auto;
  max-width: 1440px;
  min-height: 470px;
}

.hero-copy {
  align-self: center;
  padding: 36px clamp(32px, 5vw, 76px) 40px
    max(24px, calc((100vw - 1320px) / 2));
}

.hero h1 {
  font-size: clamp(3rem, 5.2vw, 5.1rem);
  font-weight: 900;
  letter-spacing: -0.065em;
  line-height: 0.98;
  margin: 0;
  max-width: 720px;
}

.hero-lead {
  color: var(--muted);
  font-size: clamp(1.05rem, 1.55vw, 1.38rem);
  line-height: 1.55;
  margin: 24px 0 0;
  max-width: 650px;
}

.primary-action {
  align-items: center;
  background: var(--teal);
  border-radius: 10px;
  color: white;
  display: inline-flex;
  font-size: 1.06rem;
  font-weight: 850;
  gap: 42px;
  justify-content: space-between;
  margin-top: 24px;
  min-height: 56px;
  padding: 10px 20px 10px 24px;
  transition:
    background 160ms ease,
    transform 160ms ease;
}

.primary-action svg {
  fill: none;
  height: 24px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  width: 24px;
}

.primary-action:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
}

.launch-note {
  align-items: center;
  color: var(--muted);
  display: flex;
  gap: 12px;
  margin: 18px 0 0;
}

.launch-note span {
  background: var(--amber);
  border-radius: 50%;
  flex: 0 0 14px;
  height: 14px;
}

.hero-media {
  height: 470px;
  min-height: 0;
  min-width: 0;
  overflow: hidden;
}

.hero-media img {
  display: block;
  height: 100%;
  object-fit: cover;
  object-position: 45% center;
  width: 100%;
}

.steps {
  background: var(--surface);
  scroll-margin-top: 18px;
}

.section-shell {
  margin-inline: auto;
  padding: 32px 0 38px;
  width: var(--shell);
}

.section-shell h2,
.privacy h2 {
  font-size: clamp(2rem, 3.1vw, 3rem);
  letter-spacing: -0.045em;
  line-height: 1.08;
  margin: 0;
}

.section-shell h2 {
  text-align: center;
}

.step-list {
  counter-reset: step;
  display: grid;
  gap: clamp(32px, 6vw, 92px);
  grid-template-columns: repeat(3, 1fr);
  list-style: none;
  margin: 30px 0 0;
  padding: 0;
}

.step-list li {
  align-items: center;
  display: flex;
  gap: 22px;
  min-width: 0;
  position: relative;
}

.step-list li:not(:last-child)::after {
  border-right: 2px solid var(--teal);
  border-top: 2px solid var(--teal);
  content: "";
  height: 9px;
  position: absolute;
  right: calc(clamp(32px, 6vw, 92px) / -2 - 4px);
  top: 43px;
  transform: rotate(45deg);
  width: 9px;
}

.step-icon {
  align-items: center;
  background: var(--teal-soft);
  border-radius: 50%;
  display: inline-flex;
  flex: 0 0 76px;
  height: 76px;
  justify-content: center;
  width: 76px;
}

.step-icon svg {
  fill: none;
  height: 46px;
  stroke: var(--teal-dark);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  width: 46px;
}

.step-list strong {
  font-size: clamp(1.05rem, 1.5vw, 1.35rem);
  line-height: 1.3;
}

.privacy {
  background: #e8f1ee;
  overflow: hidden;
  scroll-margin-top: 18px;
}

.privacy-shell {
  align-items: center;
  display: grid;
  gap: 34px;
  grid-template-columns: 118px minmax(0, 1fr);
  margin-inline: auto;
  min-height: 160px;
  padding: 24px 0;
  position: relative;
  width: var(--shell);
}

.privacy-icon {
  fill: none;
  height: 104px;
  stroke: var(--teal-dark);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
  width: 92px;
}

.privacy p {
  color: var(--muted);
  font-size: 1.08rem;
  margin: 12px 0 0;
  max-width: 680px;
}

.privacy-rings {
  border: 2px solid rgba(7, 109, 99, 0.24);
  border-radius: 50%;
  height: 170px;
  position: absolute;
  right: 4%;
  top: 50%;
  transform: translateY(-50%);
  width: 170px;
}

.privacy-rings::before,
.privacy-rings::after {
  border: 2px solid rgba(7, 109, 99, 0.18);
  border-radius: 50%;
  content: "";
  inset: 28px;
  position: absolute;
}

.privacy-rings::after {
  background: var(--teal);
  border: 0;
  inset: 72px;
}

.site-footer {
  background: var(--teal-dark);
  color: white;
  margin: 0;
  gap: 60px;
  justify-content: flex-start;
  min-height: 88px;
  padding-inline: max(24px, calc((100vw - 1320px) / 2));
  width: 100%;
}

.brand-inverse .brand-mark {
  fill: white;
}

.brand-inverse .brand-mark circle,
.brand-inverse .brand-mark path:nth-of-type(2) {
  fill: var(--teal-dark);
}

.site-footer p {
  color: rgba(255, 255, 255, 0.86);
  margin: 0;
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr 1fr;
  }

  .hero-copy {
    padding-left: 24px;
    padding-right: 32px;
  }

  .hero h1 {
    font-size: clamp(3rem, 7vw, 4.6rem);
  }

  .step-list {
    gap: 24px;
  }

  .step-list li {
    align-items: flex-start;
    flex-direction: column;
  }

  .step-list li:not(:last-child)::after {
    right: -16px;
  }
}

@media (max-width: 760px) {
  :root {
    --shell: min(100% - 32px, 640px);
  }

  body {
    font-size: 16px;
  }

  .site-header {
    min-height: 76px;
  }

  .brand {
    font-size: 1.35rem;
  }

  .brand-mark {
    height: 38px;
    width: 33px;
  }

  .site-nav {
    gap: 8px;
  }

  .site-nav a {
    font-size: 0.84rem;
    padding-inline: 6px;
  }

  .hero {
    display: flex;
    flex-direction: column;
  }

  .hero-copy {
    padding: 48px 16px 44px;
    width: 100%;
  }

  .hero h1 {
    font-size: clamp(3rem, 15vw, 4.5rem);
  }

  .hero-lead {
    margin-top: 24px;
  }

  .primary-action {
    min-height: 56px;
    width: 100%;
  }

  .hero-media {
    aspect-ratio: 4 / 3;
    height: auto;
    min-height: 0;
  }

  .hero-media img {
    object-position: 42% center;
  }

  .section-shell {
    padding: 44px 0 50px;
  }

  .section-shell h2 {
    text-align: left;
  }

  .step-list {
    gap: 34px;
    grid-template-columns: 1fr;
    margin-top: 34px;
  }

  .step-list li {
    align-items: center;
    flex-direction: row;
  }

  .step-list li:not(:last-child)::after {
    border: 0;
    border-left: 2px solid rgba(7, 109, 99, 0.28);
    height: 25px;
    left: 43px;
    right: auto;
    top: 92px;
    transform: none;
    width: 1px;
  }

  .step-icon {
    flex-basis: 78px;
    height: 78px;
    width: 78px;
  }

  .privacy-shell {
    gap: 20px;
    grid-template-columns: 72px minmax(0, 1fr);
    min-height: 228px;
  }

  .privacy-icon {
    height: 74px;
    width: 66px;
  }

  .privacy-rings {
    opacity: 0.35;
    right: -92px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    justify-content: center;
    padding-block: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  :root {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
