:root {
  --blue: #2c4176;
  --teal: #3f7775;
  --ink: #263047;
  --muted: #667085;
  --line: #dfe4e8;
  --paper: #f6f7f4;
  font-family: "Avenir Next", Avenir, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
}

* { box-sizing: border-box; }

body { margin: 0; }

a { color: inherit; }

header, main, footer {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

header {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  color: var(--blue);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

header img { width: 185px; display: block; }

.intro {
  min-height: 220px;
  display: grid;
  align-content: center;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--teal);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 14px;
  color: var(--blue);
  font-size: clamp(2.25rem, 5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -.035em;
}

.intro > p:last-child {
  max-width: 650px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
}

.tools { padding: 32px 0 60px; }

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.section-heading > p { max-width: 330px; margin-bottom: 5px; color: var(--muted); line-height: 1.6; }

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

.card {
  min-height: 200px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  text-decoration: none;
  transition: translate .2s, box-shadow .2s, border-color .2s;
}

a.card:hover, a.card:focus-visible { translate: 0 -3px; border-color: var(--teal); box-shadow: 0 10px 24px #2c41761a; outline: none; }

.number { color: #98a2b3; font-size: .75rem; letter-spacing: .12em; }

.icon {
  width: 42px;
  height: 42px;
  margin: 14px 0 12px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #e8f0ed;
  color: var(--teal);
  font-size: 1.2rem;
}

.card h3 { margin-bottom: 10px; color: var(--blue); font-size: 1.35rem; line-height: 1.2; }
.card p { margin-bottom: 14px; color: var(--muted); line-height: 1.5; }
.action { margin-top: auto; color: var(--teal); font-size: .78rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.action b { margin-left: 8px; font-size: 1.15rem; }
.coming { background: transparent; border-style: dashed; }
.coming .icon { background: #e9ecf3; color: var(--blue); }
.coming .action { color: #98a2b3; }

footer {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: .82rem;
}

footer p { margin: 0; }
footer a { color: var(--blue); }

@media (max-width: 800px) {
  header { min-height: 76px; }
  header img { width: 175px; }
  .intro { min-height: 220px; }
  .section-heading { display: block; }
  .section-heading > p { margin-top: 10px; }
  .grid { grid-template-columns: 1fr; }
  .card { min-height: 200px; }
}

@media (max-width: 480px) {
  header, main, footer { width: min(100% - 28px, 1180px); }
  header span { display: none; }
  .intro { min-height: 210px; }
  h1 { font-size: 2.35rem; }
  .tools { padding: 28px 0 55px; }
  footer { align-items: flex-start; flex-direction: column; justify-content: center; gap: 8px; }
}

@media (prefers-reduced-motion: reduce) {
  .card { transition: none; }
}
