:root {
  color-scheme: light;
  --ink: #16201d;
  --muted: #5d6d67;
  --line: #dce9e4;
  --paper: #ffffff;
  --wash: #f5faf7;
  --mint: #12b78f;
  --cyan: #55d3e3;
  --amber: #eea21a;
  --shadow: 0 24px 70px rgba(22, 32, 29, .12);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--wash);
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 14% 10%, rgba(85, 211, 227, .18), transparent 24rem),
    linear-gradient(180deg, #fbfffd 0%, #f1f7f4 48%, #ffffff 100%);
  letter-spacing: 0;
}

a { color: inherit; }

img { max-width: 100%; display: block; }

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px clamp(18px, 4vw, 56px);
  background: rgba(251, 255, 253, .78);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(220, 233, 228, .75);
}

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

.brand img {
  width: 34px;
  height: 34px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
}

.nav a {
  text-decoration: none;
}

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

.hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, .98fr);
  align-items: center;
  gap: clamp(28px, 6vw, 82px);
  padding: 116px clamp(18px, 5vw, 76px) 48px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--mint);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: .08em;
}

h1, h2, h3, p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(58px, 10vw, 136px);
  line-height: .88;
  max-width: 7.5ch;
}

.lead {
  max-width: 560px;
  color: var(--muted);
  font-size: clamp(18px, 2.1vw, 24px);
  line-height: 1.45;
  margin-bottom: 34px;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 24px;
  border-radius: 999px;
  background: var(--ink);
  color: #ffffff;
  text-decoration: none;
  font-weight: 800;
  box-shadow: 0 14px 36px rgba(22, 32, 29, .22);
}

.button:hover {
  transform: translateY(-1px);
}

.button.secondary {
  background: #ffffff;
  color: var(--ink);
  border: 1px solid var(--line);
  box-shadow: none;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.hero-visual {
  position: relative;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 10% 0 0 8%;
  border-radius: 42px;
  background: linear-gradient(135deg, rgba(18, 183, 143, .2), rgba(238, 162, 26, .12));
  transform: rotate(-4deg);
}

.hero-visual img {
  position: relative;
  width: min(100%, 680px);
}

.section {
  padding: clamp(62px, 9vw, 118px) clamp(18px, 5vw, 76px);
}

.section.tight {
  padding-top: 42px;
}

.section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

h2 {
  font-size: clamp(32px, 5vw, 64px);
  line-height: 1;
  margin-bottom: 18px;
}

h3 {
  font-size: 22px;
  line-height: 1.2;
  margin-bottom: 12px;
}

.section p,
.text-page p,
.text-page li {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

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

.card {
  background: rgba(255, 255, 255, .82);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 26px;
  box-shadow: 0 10px 34px rgba(22, 32, 29, .06);
}

.number {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 50%;
  background: #dffff6;
  color: #087f64;
  font-weight: 900;
}

.split {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
}

.report-shot {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  background: #ffffff;
}

.report-shot img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.quote {
  border-left: 5px solid var(--amber);
  padding-left: 22px;
  color: var(--ink);
  font-size: 24px;
  line-height: 1.45;
}

.band {
  background: #16201d;
  color: #ffffff;
}

.band p,
.band li {
  color: #d4dfdb;
}

.band .card {
  background: #20302b;
  border-color: rgba(255, 255, 255, .12);
}

.check-list {
  padding-left: 20px;
}

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

.footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 30px clamp(18px, 5vw, 76px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.footer a {
  text-decoration: none;
}

.page-hero {
  padding: 142px clamp(18px, 5vw, 76px) 56px;
  background: linear-gradient(135deg, #fbfffd, #eaf8f3);
}

.page-hero h1 {
  max-width: 11ch;
  font-size: clamp(48px, 8vw, 96px);
}

.text-page {
  max-width: 920px;
  padding: 64px clamp(18px, 5vw, 76px) 96px;
}

.text-page h2 {
  font-size: clamp(28px, 4vw, 46px);
  margin-top: 44px;
}

@media (max-width: 860px) {
  .site-header {
    position: absolute;
  }

  .nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 104px;
    align-content: center;
  }

  .hero-visual {
    align-self: end;
  }

  .grid,
  .split,
  .faq {
    grid-template-columns: 1fr;
  }

  .footer {
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  h1 {
    font-size: clamp(54px, 18vw, 76px);
  }

  .button {
    width: 100%;
  }

  .hero-actions {
    width: 100%;
  }

  .card {
    padding: 22px;
  }
}
