:root {
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #17201f;
  background: #f5f7f6;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: #f5f7f6;
}

a {
  color: inherit;
}

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

.site-header {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid #d9dfdc;
}

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

.brand-mark {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  color: #ffffff;
  background: #0f766e;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #52605e;
  font-size: 14px;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #16a34a;
  box-shadow: 0 0 0 4px #dcfce7;
}

main {
  padding: 96px 0 72px;
}

.intro {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 14px;
  color: #0f766e;
  font-size: 13px;
  font-weight: 750;
  text-transform: uppercase;
}

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

h1 {
  max-width: 720px;
  margin-bottom: 24px;
  font-size: clamp(42px, 7vw, 76px);
  line-height: 1.03;
  font-weight: 760;
}

.lead {
  max-width: 660px;
  margin-bottom: 0;
  color: #52605e;
  font-size: 20px;
  line-height: 1.65;
}

.services {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 84px;
  border-top: 1px solid #cbd4d0;
  border-bottom: 1px solid #cbd4d0;
}

.services article {
  min-height: 230px;
  padding: 28px 28px 34px;
}

.services article + article {
  border-left: 1px solid #cbd4d0;
}

.service-number {
  margin-bottom: 42px;
  color: #71807d;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 13px;
}

h2 {
  margin-bottom: 12px;
  font-size: 20px;
}

.services article > p:last-child,
.notice time {
  color: #52605e;
  line-height: 1.6;
}

.notice {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-top: 64px;
  padding: 32px;
  border: 1px solid #b8c7c2;
  border-radius: 8px;
  background: #ffffff;
}

.notice h2,
.notice .eyebrow {
  margin-bottom: 0;
}

.notice .eyebrow {
  margin-bottom: 10px;
}

.notice time {
  flex: none;
  font-size: 14px;
}

footer {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid #d9dfdc;
  color: #65716f;
  font-size: 14px;
}

footer a {
  text-underline-offset: 3px;
}

@media (max-width: 720px) {
  .site-header,
  main,
  footer {
    width: min(100% - 28px, 1120px);
  }

  .site-header {
    min-height: 68px;
  }

  .status {
    font-size: 0;
  }

  main {
    padding: 64px 0 48px;
  }

  h1 {
    font-size: 44px;
  }

  .lead {
    font-size: 17px;
  }

  .services {
    grid-template-columns: 1fr;
    margin-top: 56px;
  }

  .services article {
    min-height: 0;
    padding: 26px 4px 30px;
  }

  .services article + article {
    border-top: 1px solid #cbd4d0;
    border-left: 0;
  }

  .service-number {
    margin-bottom: 24px;
  }

  .notice,
  footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .notice {
    gap: 24px;
    padding: 24px;
  }

  footer {
    justify-content: center;
    padding: 24px 0;
  }
}
