:root {
  --ice: #dce9ec;
  --frost: #f7fbfa;
  --ink: #16333c;
  --blue: #2d7185;
  --cold: #78b8c4;
  --label: #f2c95c;
  --rule: #94abb0;
}

* { box-sizing: border-box; }

html {
  background: #b9ced2;
  color: var(--ink);
  color-scheme: light;
}

body {
  margin: 0;
  background: #b9ced2;
  color: var(--ink);
  font-family: "DIN Alternate", "Arial Narrow", "Helvetica Neue", sans-serif;
  line-height: 1.6;
}

a {
  color: var(--blue);
  text-underline-offset: .18em;
}

a:hover { text-decoration-thickness: .16em; }

a:focus-visible {
  outline: 3px solid var(--label);
  outline-offset: 4px;
}

.policy-shell {
  width: min(1120px, calc(100% - 2rem));
  margin: 1rem auto;
  border: 8px solid var(--ink);
  background: var(--frost);
  box-shadow: 10px 10px 0 #78979e;
}

.policy-header {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: center;
  padding: 1rem clamp(1rem, 3vw, 2.5rem);
  border-bottom: 5px solid var(--ink);
  background: var(--ice);
}

.home-link {
  color: var(--ink);
  font-weight: 900;
  letter-spacing: .06em;
  text-decoration: none;
  text-transform: uppercase;
}

.language-list {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
  font-family: ui-monospace, "SFMono-Regular", Menlo, monospace;
  font-size: .75rem;
}

.policy-hero {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(15rem, 1fr);
  gap: clamp(2rem, 7vw, 7rem);
  padding: clamp(3rem, 8vw, 7rem) clamp(1.25rem, 6vw, 6rem);
  border-bottom: 5px solid var(--ink);
}

.status {
  margin: 0 0 .75rem;
  color: var(--blue);
  font-family: ui-monospace, "SFMono-Regular", Menlo, monospace;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

h1 {
  max-width: 10ch;
  margin: 0;
  font-size: clamp(3.5rem, 9vw, 8rem);
  letter-spacing: -.07em;
  line-height: .82;
  text-transform: uppercase;
}

.lede {
  max-width: 48rem;
  margin: 2rem 0 0;
  color: var(--blue);
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  font-weight: 700;
  line-height: 1.28;
}

.privacy-ledger {
  align-self: end;
  margin: 0;
  padding: 0;
  border: 3px solid var(--ink);
  list-style: none;
  background: var(--ice);
  font-family: ui-monospace, "SFMono-Regular", Menlo, monospace;
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.privacy-ledger li {
  padding: .8rem 1rem;
  border-bottom: 1px solid var(--rule);
}

.privacy-ledger li:last-child { border-bottom: 0; }
.privacy-ledger li::before { content: "✓ "; color: var(--blue); }

.policy-sections {
  padding-inline: clamp(1.25rem, 6vw, 6rem);
}

.policy-sections section {
  display: grid;
  grid-template-columns: minmax(10rem, 13rem) minmax(0, 1fr);
  gap: clamp(1.5rem, 5vw, 5rem);
  padding-block: clamp(2rem, 5vw, 4rem);
  border-bottom: 1px solid var(--rule);
}

.policy-sections h2 {
  margin: 0;
  color: var(--blue);
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: .05em;
  line-height: 1.2;
  text-transform: uppercase;
}

.policy-copy {
  max-width: 48rem;
}

.policy-copy > :first-child { margin-top: 0; }
.policy-copy > :last-child { margin-bottom: 0; }
.policy-copy li + li { margin-top: .65rem; }

.policy-note {
  padding: 1rem 1.25rem;
  border-left: 5px solid var(--label);
  background: var(--ice);
}

.policy-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.4rem clamp(1.25rem, 6vw, 6rem);
  background: var(--ink);
  color: var(--frost);
  font-family: ui-monospace, "SFMono-Regular", Menlo, monospace;
  font-size: .75rem;
}

.policy-footer a { color: var(--label); }

@media (max-width: 760px) {
  .policy-shell {
    width: 100%;
    margin: 0;
    border-width: 5px;
    box-shadow: none;
  }

  .policy-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .policy-hero { grid-template-columns: 1fr; }
  .privacy-ledger { max-width: 25rem; }

  .policy-sections section {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

@media (max-width: 430px) {
  h1 { font-size: clamp(3rem, 18vw, 4.7rem); }
  .language-list { gap: .4rem .75rem; }
}
