:root {
  color-scheme: light;
  --ink: #142033;
  --muted: #5c6b7d;
  --line: #dce5ec;
  --paper: #ffffff;
  --soft: #f4f8fb;
  --blue: #2f72ef;
  --blue-ink: #173d89;
  --green: #25c59a;
  --green-ink: #0e6f56;
  --shadow: 0 18px 48px rgba(20, 32, 51, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
}

a {
  color: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 16px clamp(18px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid rgba(220, 229, 236, 0.82);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--blue), var(--green));
  font-size: 13px;
  letter-spacing: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(12px, 3vw, 28px);
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.nav-links a {
  text-decoration: none;
}

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 92svh;
  padding: 112px clamp(18px, 6vw, 80px) 76px;
  overflow: hidden;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.86) 33%, rgba(255, 255, 255, 0.2) 72%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.76) 0%, rgba(255, 255, 255, 0) 35%, rgba(255, 255, 255, 0.7) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 690px;
}

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

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(42px, 7vw, 82px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin: 18px 0 10px;
  font-size: 21px;
}

.hero-copy {
  max-width: 620px;
  margin: 28px 0 0;
  color: #33445a;
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.55;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
  line-height: 1.15;
}

.button-primary {
  color: #ffffff;
  background: var(--blue);
  box-shadow: 0 10px 24px rgba(47, 114, 239, 0.26);
}

.button-secondary {
  color: var(--blue-ink);
  background: rgba(255, 255, 255, 0.84);
  border-color: var(--line);
}

.stats-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stat {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 112px;
  padding: 24px clamp(18px, 5vw, 56px);
  background: var(--paper);
}

.stat strong {
  color: var(--blue);
  font-size: 46px;
  line-height: 1;
}

.stat span {
  color: var(--muted);
  font-weight: 700;
  line-height: 1.35;
}

.section,
.process,
.contact {
  padding: clamp(64px, 10vw, 120px) clamp(18px, 6vw, 80px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(180px, 0.8fr) minmax(0, 1.7fr);
  gap: 28px;
  align-items: end;
  max-width: 1120px;
  margin: 0 auto 36px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1120px;
  margin: 0 auto;
}

.feature-card {
  min-height: 260px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 14px 36px rgba(20, 32, 51, 0.06);
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  color: var(--green-ink);
  background: #dff8f0;
  font-weight: 800;
}

.feature-card p,
.process-copy p,
.contact p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.process {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: clamp(32px, 7vw, 96px);
  align-items: start;
  background: var(--soft);
}

.process-copy {
  max-width: 620px;
}

.timeline {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.timeline li {
  padding: 22px 24px;
  border-left: 4px solid var(--blue);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
  color: var(--muted);
  line-height: 1.55;
}

.timeline span {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
  font-weight: 800;
}

.contact {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  align-items: center;
  background: #132033;
  color: #ffffff;
}

.contact .eyebrow {
  color: #73e3c4;
}

.contact h2 {
  max-width: 660px;
}

.contact p {
  max-width: 640px;
  color: #c8d4e2;
}

.contact .button-secondary {
  color: #ffffff;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.34);
}

@media (max-width: 840px) {
  .site-header {
    position: sticky;
    flex-wrap: wrap;
    min-height: auto;
  }

  .nav-links {
    width: 100%;
    justify-content: space-between;
  }

  .hero {
    min-height: auto;
    padding-top: 56px;
    padding-bottom: 42px;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.9) 47%, rgba(255, 255, 255, 0.28) 100%);
  }

  h1 {
    max-width: 11ch;
  }

  .stats-band,
  .feature-grid,
  .section-heading,
  .process {
    grid-template-columns: 1fr;
  }

  .stat {
    min-height: 92px;
  }

  .feature-card {
    min-height: auto;
  }

  .contact {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .brand {
    font-size: 15px;
  }

  .nav-links {
    font-size: 13px;
  }

  .hero-actions,
  .contact-actions {
    flex-direction: column;
    width: 100%;
  }

  .button {
    width: 100%;
  }

  .hero {
    min-height: auto;
  }

  h1 {
    font-size: 37px;
  }

  .hero-copy {
    margin-top: 22px;
  }

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