:root {
  color: #071014;
  background: #f7f8f4;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 74% 12%, rgba(40, 100, 216, .12), transparent 28rem),
    linear-gradient(180deg, #fbfcf8 0%, #eef3f5 100%);
}

a {
  color: #2864d8;
  text-decoration-thickness: .08em;
  text-underline-offset: .16em;
}

.site-shell {
  width: min(100% - 2rem, 1040px);
  margin: 0 auto;
}

.seo-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.4rem 0;
}

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: .05em;
  color: #071014;
  font-size: 1.45rem;
  font-weight: 900;
  letter-spacing: 0;
  text-decoration: none;
}

.brand span:first-child,
.brand span:nth-child(2) {
  color: #2864d8;
}

.brand span:last-child {
  color: #53616a;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: .8rem 1rem;
  font-size: .95rem;
  font-weight: 800;
}

.hero {
  padding: clamp(3.6rem, 8vw, 7rem) 0 2rem;
}

.eyebrow {
  margin: 0 0 1rem;
  color: #2864d8;
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

h1 {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(3rem, 9vw, 6.8rem);
  line-height: .9;
  letter-spacing: 0;
}

.lede {
  max-width: 760px;
  margin: 1.35rem 0 0;
  color: #53616a;
  font-size: clamp(1.08rem, 2.1vw, 1.45rem);
  font-weight: 750;
  line-height: 1.45;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 1.6rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0 1.15rem;
  border: 1px solid rgba(7, 16, 20, .12);
  border-radius: 999px;
  background: #fff;
  color: #071014;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(18, 31, 38, .08);
}

.button.primary {
  border-color: rgba(40, 100, 216, .35);
  background: linear-gradient(180deg, #5d8ee7 0%, #2864d8 100%);
  color: #fff;
}

.section-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 3rem 0;
  overflow: hidden;
  border: 1px solid rgba(7, 16, 20, .12);
  border-radius: 28px;
  background: rgba(7, 16, 20, .12);
  box-shadow: 0 18px 60px rgba(7, 16, 20, .08);
}

.field {
  min-height: 13rem;
  padding: 1.25rem;
  background: rgba(255, 255, 255, .82);
}

.field h2,
.field h3 {
  margin: 0 0 .8rem;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  line-height: 1.05;
}

.field p,
.field li {
  color: #53616a;
  font-weight: 700;
  line-height: 1.55;
}

.field ul {
  margin: 0;
  padding-left: 1.1rem;
}

.wide {
  grid-column: span 2;
}

.footer {
  padding: 2rem 0 3rem;
  color: #66757c;
  font-weight: 750;
}

@media (max-width: 760px) {
  .seo-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    justify-content: flex-start;
  }

  .section-grid {
    display: block;
  }

  .field + .field {
    border-top: 1px solid rgba(7, 16, 20, .12);
  }
}
