@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap");

:root {
  --ink: #101828;
  --muted: #667085;
  --blue: #1d4ed8;
  --blue-dark: #153eaa;
  --blue-soft: #eaf1ff;
  --line: #d9e2f0;
  --surface: #f6f8fc;
  --green: #07835c;
  --amber: #b85c08;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Manrope", "Segoe UI", sans-serif;
  letter-spacing: 0;
}

a {
  color: inherit;
}

.site-header {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 12px max(24px, calc((100vw - 1240px) / 2));
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 8px;
  background: var(--blue);
  color: var(--white);
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 14px;
}

.brand small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 11px;
}

.header-actions,
.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.text-link {
  color: #344054;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid var(--blue);
  border-radius: 8px;
  background: var(--blue);
  color: var(--white);
  font-size: 15px;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.button:hover {
  border-color: var(--blue-dark);
  background: var(--blue-dark);
  transform: translateY(-1px);
}

.button-small {
  min-height: 42px;
  padding: 0 16px;
  font-size: 13px;
}

.button-secondary {
  border-color: #b8c7df;
  background: rgba(255, 255, 255, 0.88);
  color: var(--ink);
}

.button-secondary:hover {
  border-color: var(--blue);
  background: var(--white);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100svh - 138px);
  background-color: #fbfcff;
}

.hero-visual {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-inner,
.section-inner {
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: inherit;
  align-items: center;
  padding: 64px 0 72px;
}

.hero-copy {
  width: 49%;
  max-width: 590px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  letter-spacing: 0;
}

h1 {
  max-width: 580px;
  margin: 0;
  font-size: 58px;
  line-height: 1.08;
}

.hero-lead {
  max-width: 560px;
  margin: 24px 0 30px;
  color: #475467;
  font-size: 18px;
  line-height: 1.65;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 34px;
  color: #475467;
  font-size: 13px;
  font-weight: 600;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.hero-proof b {
  color: var(--blue);
  font-size: 16px;
}

.how-section,
.result-section {
  padding: 96px 0;
}

.how-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.section-heading {
  max-width: 680px;
  margin-bottom: 42px;
}

.section-heading h2,
.final-cta h2 {
  margin: 0;
  font-size: 40px;
  line-height: 1.18;
}

.section-heading > p:last-child {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.step-card {
  min-height: 230px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.step-number {
  display: inline-grid;
  width: 46px;
  height: 34px;
  place-items: center;
  border-radius: 6px;
  background: var(--blue-soft);
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
}

.step-number-green {
  background: #e7f7f0;
  color: var(--green);
}

.step-number-amber {
  background: #fff2df;
  color: var(--amber);
}

.step-card h3 {
  margin: 26px 0 10px;
  font-size: 20px;
}

.step-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.result-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(420px, 1.15fr);
  gap: 88px;
  align-items: start;
}

.result-heading {
  position: sticky;
  top: 32px;
  margin-bottom: 0;
}

.result-list {
  border-top: 1px solid var(--line);
}

.result-list > div {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 22px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.result-list strong {
  font-size: 15px;
}

.result-list span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.final-cta {
  padding: 72px 0;
  background: #102a56;
  color: var(--white);
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.cta-inner > div {
  max-width: 720px;
}

.eyebrow-light {
  color: #a9c7ff;
}

.button-light {
  flex: 0 0 auto;
  border-color: var(--white);
  background: var(--white);
  color: #102a56;
}

.button-light:hover {
  border-color: #dce8ff;
  background: #dce8ff;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 18px max(24px, calc((100vw - 1240px) / 2));
  color: var(--muted);
  font-size: 13px;
}

.site-footer a {
  color: #344054;
  font-weight: 700;
  text-decoration: none;
}

@media (max-width: 900px) {
  h1 {
    font-size: 44px;
  }

  .hero {
    min-height: calc(100svh - 100px);
  }

  .hero-visual {
    inset: auto auto 0 50%;
    width: 1180px;
    height: auto;
    max-width: none;
    transform: translateX(-58%);
  }

  .hero-inner {
    align-items: flex-start;
    padding-top: 54px;
    padding-bottom: 390px;
  }

  .hero-copy {
    width: 72%;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .step-card {
    min-height: 0;
  }

  .result-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .result-heading {
    position: static;
  }
}

@media (max-width: 620px) {
  .site-header {
    min-height: 68px;
    padding: 10px 16px;
  }

  .brand small,
  .text-link {
    display: none;
  }

  .button-small {
    min-height: 40px;
    padding: 0 12px;
  }

  .hero-inner,
  .section-inner {
    width: min(100% - 32px, 1240px);
  }

  .hero {
    min-height: calc(100svh - 195px);
  }

  .hero-visual {
    width: 720px;
    transform: translateX(-60%);
  }

  .hero-inner {
    padding-top: 42px;
    padding-bottom: 130px;
  }

  .hero-copy {
    width: 100%;
  }

  h1 {
    max-width: 460px;
    font-size: 36px;
  }

  .hero-lead {
    max-width: 500px;
    margin-top: 18px;
    font-size: 16px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-proof {
    gap: 10px 18px;
    margin-top: 24px;
  }

  .how-section,
  .result-section {
    padding: 70px 0;
  }

  .section-heading h2,
  .final-cta h2 {
    font-size: 30px;
  }

  .step-card {
    padding: 22px;
  }

  .result-list > div {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .cta-inner {
    align-items: stretch;
    flex-direction: column;
  }

  .site-footer {
    padding: 18px 16px;
  }
}

@media (max-width: 620px) and (max-height: 750px) {
  .hero {
    min-height: calc(100svh - 150px);
  }

  .hero-visual {
    width: 620px;
    transform: translate(-60%, 125px);
  }

  .hero-inner {
    padding-top: 28px;
    padding-bottom: 65px;
  }

  .hero-proof {
    display: none;
  }
}
