:root {
  color-scheme: light;
  --accent: #0f766e;
  --accent-dark: #115e59;
  --accent-soft: #e7f3f1;
  --background: #f4f6f8;
  --ink: #17202a;
  --line: #dbe2e8;
  --muted: #647181;
  --surface: #ffffff;
  --wide: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  background: var(--background);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

a {
  color: var(--accent-dark);
  text-underline-offset: 3px;
}

a:hover {
  color: var(--accent);
}

a:focus-visible {
  border-radius: 3px;
  outline: 3px solid rgba(15, 118, 110, 0.26);
  outline-offset: 3px;
}

img {
  display: block;
  max-width: 100%;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  letter-spacing: 0;
  line-height: 1.18;
}

h1 {
  margin-bottom: 18px;
  font-size: 52px;
}

h2 {
  margin-bottom: 14px;
  font-size: 30px;
}

h3 {
  margin-bottom: 9px;
  font-size: 18px;
}

.container {
  width: min(var(--wide), calc(100% - 40px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 10;
  top: 10px;
  left: 10px;
  transform: translateY(-160%);
  border-radius: 6px;
  background: var(--ink);
  color: #ffffff;
  padding: 9px 13px;
  font-weight: 750;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
}

.header-inner {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 850;
  text-decoration: none;
}

.brand:hover {
  color: var(--ink);
}

.brand img {
  flex: 0 0 auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 14px;
  font-weight: 700;
}

.site-nav a {
  border-bottom: 2px solid transparent;
  color: var(--muted);
  padding: 5px 0 3px;
  text-decoration: none;
  white-space: nowrap;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  border-bottom-color: var(--accent);
  color: var(--accent-dark);
}

.intro {
  background: var(--surface);
}

.intro-content {
  padding-top: 72px;
  padding-bottom: 78px;
}

.product-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 24px;
}

.eyebrow {
  margin-bottom: 10px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.lead {
  max-width: 720px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.55;
}

.intro-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
}

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 7px;
  padding: 9px 15px;
  font-weight: 780;
  line-height: 1.3;
  text-align: center;
  text-decoration: none;
}

.primary-button {
  border-color: var(--accent);
  background: var(--accent);
  color: #ffffff;
}

.primary-button:hover {
  border-color: var(--accent-dark);
  background: var(--accent-dark);
  color: #ffffff;
}

.text-link {
  font-weight: 750;
}

.facts {
  padding: 64px 0 70px;
}

.section-heading {
  max-width: 700px;
  margin-bottom: 34px;
}

.facts-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.facts-grid article {
  min-width: 0;
  padding: 24px 24px 4px 0;
}

.facts-grid article + article {
  border-left: 1px solid var(--line);
  padding-left: 24px;
}

.facts-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.fact-number {
  display: inline-block;
  margin-bottom: 28px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 850;
}

.policy-band {
  background: #17363a;
  color: #ffffff;
}

.policy-band-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 48px;
  padding-top: 46px;
  padding-bottom: 46px;
}

.policy-band h2 {
  max-width: 680px;
}

.policy-band p:not(.eyebrow) {
  max-width: 720px;
  margin-bottom: 0;
  color: #c9dcda;
}

.light-eyebrow {
  color: #7dd3c7;
}

.light-button {
  border-color: #ffffff;
  background: #ffffff;
  color: #17363a;
}

.light-button:hover {
  border-color: #d9f0ed;
  background: #d9f0ed;
  color: #17363a;
}

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

.footer-inner {
  display: flex;
  min-height: 92px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  font-size: 14px;
}

.footer-inner p {
  margin-bottom: 0;
}

.footer-inner p:first-child {
  color: var(--ink);
  font-weight: 800;
}

.policy-main {
  background: var(--surface);
}

.policy-document {
  max-width: 840px;
  padding-top: 58px;
  padding-bottom: 74px;
}

.policy-header {
  margin-bottom: 34px;
}

.policy-header h1 {
  margin-bottom: 10px;
}

.back-link {
  display: inline-block;
  margin-bottom: 34px;
  font-size: 14px;
  font-weight: 750;
}

.effective-date {
  margin-bottom: 26px;
  color: var(--muted);
  font-size: 14px;
}

.policy-intro {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.6;
}

.policy-summary {
  margin: 0 0 42px;
  border-left: 4px solid var(--accent);
  background: #f0f8f7;
  padding: 18px 20px;
}

.policy-summary strong {
  display: block;
  margin-bottom: 5px;
}

.policy-summary p {
  margin-bottom: 0;
  color: var(--muted);
}

.policy-section {
  padding: 34px 0 12px;
  border-top: 1px solid var(--line);
}

.policy-section p,
.policy-section li,
.permission-list dd {
  color: #4f5d6a;
}

.policy-section ul {
  display: grid;
  gap: 6px;
  margin: 18px 0 22px;
  padding-left: 22px;
}

code {
  border: 1px solid #d7e5e3;
  border-radius: 4px;
  background: #f1f8f7;
  color: var(--accent-dark);
  padding: 1px 5px;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.9em;
  overflow-wrap: anywhere;
}

.permission-list {
  margin: 22px 0;
}

.permission-list div {
  display: grid;
  grid-template-columns: minmax(150px, 220px) minmax(0, 1fr);
  gap: 22px;
  padding: 13px 0;
  border-top: 1px solid var(--line);
}

.permission-list div:last-child {
  border-bottom: 1px solid var(--line);
}

.permission-list dt,
.permission-list dd {
  margin: 0;
}

.permission-list dt {
  font-weight: 750;
}

@media (max-width: 700px) {
  h1 {
    font-size: 38px;
  }

  h2 {
    font-size: 26px;
  }

  .container {
    width: min(100% - 28px, var(--wide));
  }

  .header-inner {
    display: grid;
    gap: 8px;
    padding-top: 13px;
    padding-bottom: 12px;
  }

  .site-nav {
    width: 100%;
    justify-content: space-between;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .intro-content {
    padding-top: 50px;
    padding-bottom: 54px;
  }

  .lead,
  .policy-intro {
    font-size: 18px;
  }

  .facts {
    padding: 48px 0 52px;
  }

  .facts-grid {
    grid-template-columns: 1fr;
  }

  .facts-grid article {
    padding: 22px 0;
  }

  .facts-grid article + article {
    border-top: 1px solid var(--line);
    border-left: 0;
    padding-left: 0;
  }

  .fact-number {
    margin-bottom: 18px;
  }

  .policy-band-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .policy-band .button {
    justify-self: start;
  }

  .footer-inner {
    display: grid;
    gap: 5px;
    padding-top: 22px;
    padding-bottom: 22px;
  }

  .policy-document {
    padding-top: 42px;
    padding-bottom: 54px;
  }

  .permission-list div {
    grid-template-columns: 1fr;
    gap: 7px;
  }
}

@media (max-width: 420px) {
  .site-nav {
    font-size: 12px;
  }

  .intro-actions,
  .intro-actions .button {
    width: 100%;
  }

  .text-link {
    padding: 4px 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
