:root {
  --paper: #f7f8f5;
  --porcelain: #ffffff;
  --mist: #e8f2f4;
  --aqua: #14c7d7;
  --mint: #87e4c4;
  --graphite: #182230;
  --slate: #5c6b77;
  --line: rgba(24, 34, 48, 0.12);
  --shadow: 0 18px 44px rgba(24, 34, 48, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--graphite);
  background: linear-gradient(180deg, #fbfcfa 0%, var(--paper) 54%, var(--mist) 100%);
  font-family: "SF Pro Display", "SF Pro Text", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

p,
li {
  color: var(--slate);
  font-size: 1rem;
  line-height: 1.75;
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: 0;
}

h1 {
  max-width: 12ch;
  font-size: 4rem;
  line-height: 0.98;
}

h2 {
  font-size: 1.7rem;
  line-height: 1.12;
}

h3 {
  font-size: 1.1rem;
  line-height: 1.2;
}

ul {
  margin: 14px 0 0;
  padding-left: 20px;
}

.legal-shell {
  width: min(100%, 980px);
  margin: 0 auto;
  padding: 0 20px 56px;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 72px;
  margin-inline: -20px;
  padding: 12px max(20px, calc((100vw - 980px) / 2));
  border-bottom: 1px solid rgba(255, 255, 255, 0.58);
  background: rgba(247, 248, 245, 0.9);
  backdrop-filter: blur(20px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 750;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  overflow: hidden;
  border: 1px solid rgba(24, 34, 48, 0.08);
  border-radius: 12px;
  background: var(--porcelain);
  box-shadow: 0 8px 18px rgba(24, 34, 48, 0.12);
}

.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.topbar-links {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
  color: var(--slate);
  font-size: 0.94rem;
  font-weight: 650;
}

.topbar-links a:hover,
.topbar-links a:focus-visible,
.footer-links a:hover,
.footer-links a:focus-visible,
.section a:hover,
.section a:focus-visible {
  color: var(--graphite);
}

.hero {
  padding: 84px 0 36px;
}

.eyebrow {
  margin: 0 0 14px;
  color: #087b88;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero p {
  max-width: 66ch;
  margin-top: 20px;
  font-size: 1.08rem;
}

.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.meta span {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--graphite);
  font-size: 0.9rem;
  font-weight: 700;
}

.content-card {
  display: grid;
  gap: 12px;
}

.section {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 24px rgba(24, 34, 48, 0.06);
}

.section p + p,
.section ul + p,
.section p + ul {
  margin-top: 14px;
}

.section h2 + p,
.section h2 + ul {
  margin-top: 14px;
}

.section h3 {
  margin-top: 18px;
}

.section h3 + p,
.section h3 + ul {
  margin-top: 10px;
}

.section a {
  color: #087b88;
  font-weight: 750;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 30px 0 0;
  color: var(--slate);
  font-size: 0.94rem;
}

.footer-links {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
}

@media (max-width: 760px) {
  h1 {
    font-size: 3rem;
  }

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

  .topbar-links {
    justify-content: flex-start;
  }

  .hero {
    padding-top: 58px;
  }

  .section {
    padding: 20px;
  }

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

  .footer-links {
    justify-content: flex-start;
  }
}
