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

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px 18px;
}

main {
  width: min(760px, 100%);
  background: #ffffff;
  border: 1px solid #dce4ef;
  border-radius: 20px;
  padding: clamp(28px, 6vw, 56px);
  box-shadow: 0 20px 60px rgba(30, 55, 90, 0.1);
}

.eyebrow {
  margin: 0 0 12px;
  color: #3467eb;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2 {
  line-height: 1.15;
}

h1 {
  margin: 0 0 18px;
  font-size: clamp(2rem, 7vw, 3.4rem);
}

h2 {
  margin-top: 32px;
  font-size: 1.25rem;
}

p,
li {
  line-height: 1.65;
  color: #445064;
}

a {
  color: #2457d6;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid #e6ebf2;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  background: #edf8f1;
  color: #217a42;
  font-size: 0.9rem;
  font-weight: 650;
}

.status::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #31a85a;
  content: "";
}

.updated {
  margin-top: 36px;
  font-size: 0.9rem;
}
