:root {
  color-scheme: light;
  --teal: #00a6a7;
  --deep-teal: #01484d;
  --ink: #102124;
  --muted: #5d6a6d;
  --line: #d9e7e8;
  font-family: Inter, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: #f5fbfb;
  color: var(--ink);
}

header {
  background: var(--teal);
  color: #fff;
  padding: 32px clamp(20px, 5vw, 72px);
}

header a,
footer a {
  color: inherit;
  font-weight: 800;
  text-decoration: none;
}

main {
  padding: clamp(28px, 5vw, 72px);
}

article {
  max-width: 980px;
}

h1 {
  font-size: clamp(44px, 9vw, 96px);
  line-height: 0.95;
  margin: 20px 0;
  text-transform: uppercase;
}

h2 {
  font-size: 24px;
  margin: 36px 0 12px;
}

p,
li {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

ul {
  padding-left: 22px;
}

.eyebrow {
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.notice {
  border: 1px solid var(--line);
  background: #fff;
  padding: 20px;
  margin-top: 28px;
}

footer {
  border-top: 1px solid var(--line);
  padding: 24px clamp(20px, 5vw, 72px);
  color: var(--muted);
}
