:root {
  --ink: #0a0a0a;
  --paper: #f7f7f2;
  --cream: #efefe8;
  --line: #d8d8d2;
  --muted: #5a5a55;
  --yellow: #f9ff00;
  --cyan: #00e5ff;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: #006f7c;
  font-weight: 700;
  text-underline-offset: 3px;
}

.policy-top {
  background:
    linear-gradient(to right, rgba(0, 229, 255, .055) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0, 229, 255, .055) 1px, transparent 1px),
    var(--ink);
  background-size: 38px 38px;
  color: var(--paper);
}

.policy-nav {
  width: min(980px, calc(100% - 40px));
  min-height: 82px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--paper);
  text-decoration: none;
}

.brand img {
  width: 74px;
  height: auto;
}

.brand span {
  color: var(--paper);
  font-family: "Anton", Impact, sans-serif;
  font-size: 22px;
  line-height: .92;
  letter-spacing: .01em;
  text-transform: uppercase;
}

.home-link {
  color: var(--yellow);
  font-size: 13px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.policy-hero {
  width: min(980px, calc(100% - 40px));
  margin: 0 auto;
  padding: 54px 0 64px;
}

.kicker {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  margin: 0 0 18px;
  color: var(--yellow);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
}

h1,
h2 {
  margin: 0;
}

h1 {
  max-width: 780px;
  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(44px, 7vw, 76px);
  font-weight: 400;
  line-height: .95;
  letter-spacing: .01em;
  text-transform: uppercase;
}

.meta {
  margin: 20px 0 0;
  color: #d8d8d1;
  font-size: 15px;
}

main {
  width: min(760px, calc(100% - 40px));
  margin: 0 auto;
  padding: 54px 0 76px;
}

main > p:first-child {
  margin-top: 0;
  font-size: 18px;
  color: #2e2e2e;
}

h2 {
  margin: 34px 0 10px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-size: 20px;
  line-height: 1.2;
}

p,
li {
  font-size: 16px;
}

p {
  margin: 0 0 16px;
}

.email-callout {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-left: 5px solid var(--cyan);
  border-radius: 6px;
  background: #fffffd;
}

.policy-footer {
  border-top: 1px solid var(--line);
  background: var(--cream);
}

.policy-footer-inner {
  width: min(980px, calc(100% - 40px));
  margin: 0 auto;
  padding: 28px 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px 20px;
  color: var(--muted);
  font-size: 13px;
}

.policy-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
}

.policy-links a {
  color: var(--ink);
}

@media (max-width: 640px) {
  .policy-nav,
  .policy-hero,
  main,
  .policy-footer-inner {
    width: calc(100% - 28px);
  }

  .policy-nav {
    min-height: 74px;
  }

  .brand img {
    width: 62px;
  }

  .brand span {
    font-size: 18px;
  }

  .home-link {
    font-size: 11px;
  }

  .policy-hero {
    padding: 42px 0 52px;
  }

  main {
    padding: 42px 0 62px;
  }
}
