:root {
  color-scheme: light;
  --bg: #f7f5ef;
  --surface: #ffffff;
  --ink: #1e2426;
  --muted: #687276;
  --line: #d9ded9;
  --accent: #0d6b5f;
  --accent-dark: #084940;
  --soft: #e8efe7;
  --shadow: 0 24px 70px rgba(26, 35, 38, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  min-height: 100%;
  margin: 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(13, 107, 95, 0.1), transparent 28rem),
    linear-gradient(135deg, #fbfaf6 0%, var(--bg) 58%, #edf2ec 100%);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

.page {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 44px 0 52px;
}

.hero {
  min-height: calc(100vh - 96px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  align-items: end;
  gap: 32px;
  padding: 8vh 0 36px;
}

.hero__content {
  max-width: 780px;
}

.eyebrow {
  width: fit-content;
  margin: 0 0 28px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.65);
  color: var(--muted);
  font-size: 14px;
}

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

h1 {
  margin-bottom: 18px;
  font-size: clamp(64px, 12vw, 160px);
  line-height: 0.92;
  font-weight: 780;
  letter-spacing: 0;
}

.lead {
  max-width: 720px;
  margin-bottom: 30px;
  color: #334044;
  font-size: clamp(22px, 3.5vw, 42px);
  line-height: 1.14;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: 1px solid var(--accent);
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
}

.button--primary {
  background: var(--accent);
  color: #ffffff;
  box-shadow: 0 12px 28px rgba(13, 107, 95, 0.2);
}

.button--primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
}

.note {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
}

.note__label,
.tile__number {
  display: block;
  margin-bottom: 16px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.note p {
  margin-bottom: 0;
  color: #405053;
  font-size: 18px;
}

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

.tile {
  min-height: 260px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.74);
}

.tile h2 {
  margin-bottom: 12px;
  font-size: 24px;
  line-height: 1.15;
}

.tile p,
.tile li {
  color: var(--muted);
  font-size: 17px;
}

.tile ul {
  margin: 0;
  padding-left: 20px;
}

.tile li + li {
  margin-top: 8px;
}

@media (max-width: 860px) {
  .page {
    width: min(100% - 28px, 680px);
    padding-top: 26px;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    align-items: start;
    padding: 42px 0 24px;
  }

  .lead {
    font-size: clamp(24px, 9vw, 38px);
  }

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

  .tile {
    min-height: 0;
  }
}

@media (max-width: 420px) {
  .page {
    width: calc(100% - 24px);
  }

  .eyebrow {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  h1 {
    font-size: 68px;
  }

  .note,
  .tile {
    padding: 18px;
  }
}
