:root {
  color-scheme: light;
  --canvas: #f6f8fb;
  --surface: #ffffff;
  --surface-alt: #eff6f4;
  --brand: #225142;
  --action: #0f766e;
  --action-hover: #115e59;
  --icon: #13877a;
  --soft-teal: #def7f2;
  --text: #111827;
  --muted: #667085;
  --border: #d0d5dd;
  --focus: #1d4ed8;
  --header-height: 72px;
  --page-gutter: 32px;
  font-family: Roboto, "Segoe UI", Helvetica, Arial, sans-serif;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--canvas);
  color: var(--text);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 280px;
  background: var(--canvas);
  font-size: 17px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--action);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

a:hover {
  color: var(--action-hover);
  text-decoration-thickness: 2px;
}

a:focus-visible,
summary:focus-visible {
  border-radius: 4px;
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

code {
  overflow-wrap: anywhere;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.88em;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  transform: translateY(-180%);
  border-radius: 6px;
  background: var(--text);
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
}

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

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  height: var(--header-height);
  border-bottom: 1px solid rgba(208, 213, 221, 0.9);
  background: var(--surface);
}

.header-inner {
  display: flex;
  width: min(1120px, calc(100% - (2 * var(--page-gutter))));
  height: 100%;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand,
.footer-brand {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 12px;
  color: var(--brand);
  font-size: 19px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
}

.brand:hover,
.footer-brand:hover {
  color: var(--brand);
  text-decoration: none;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 15px;
  font-weight: 700;
}

.header-nav a {
  color: var(--text);
  text-decoration: none;
}

.header-nav a:hover {
  color: var(--action);
  text-decoration: underline;
}

.header-nav .support-link {
  display: inline-flex;
  min-height: 44px;
  padding: 0 18px;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--surface);
  color: var(--action);
}

.header-nav .support-link:hover {
  border-color: var(--action);
  background: var(--surface-alt);
  text-decoration: none;
}

.intro {
  padding: 88px var(--page-gutter) 0;
  background: var(--surface);
}

.intro-inner {
  display: grid;
  width: min(1040px, 100%);
  margin: 0 auto;
  grid-template-columns: minmax(0, 1fr) 248px;
  align-items: center;
  gap: 56px;
}

.intro-copy {
  max-width: 760px;
}

.eyebrow,
.section-label {
  margin: 0 0 12px;
  color: var(--action);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.4;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1,
h2,
h3 {
  margin-top: 0;
  color: var(--text);
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: 52px;
  font-weight: 800;
  line-height: 1.12;
}

h2 {
  margin-bottom: 20px;
  font-size: 30px;
  font-weight: 800;
  line-height: 1.27;
}

h3 {
  margin: 32px 0 12px;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.4;
}

.lede {
  max-width: 680px;
  margin: 0 0 24px;
  color: #344054;
  font-size: 20px;
  line-height: 1.6;
}

.policy-meta {
  display: flex;
  margin: 0;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.intro-mark {
  display: grid;
  width: 248px;
  height: 248px;
  place-items: center;
}

.intro-mark img {
  width: 224px;
  height: 224px;
}

.trust-facts {
  display: grid;
  width: min(1120px, 100%);
  margin: 72px auto 0;
  padding: 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  grid-template-columns: repeat(4, 1fr);
  list-style: none;
}

.trust-facts li {
  min-width: 0;
  padding: 24px 28px;
}

.trust-facts li + li {
  border-left: 1px solid var(--border);
}

.trust-facts strong,
.trust-facts span {
  display: block;
}

.trust-facts strong {
  color: var(--brand);
  font-size: 15px;
  line-height: 1.4;
}

.trust-facts span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.policy-layout {
  display: grid;
  width: min(1120px, calc(100% - (2 * var(--page-gutter))));
  margin: 72px auto 96px;
  grid-template-columns: 216px minmax(0, 760px);
  justify-content: center;
  align-items: start;
  gap: 56px;
}

.section-index {
  position: sticky;
  top: calc(var(--header-height) + 32px);
}

.section-index > p {
  margin: 0 0 12px;
  color: var(--text);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.section-index nav {
  display: flex;
  padding-left: 16px;
  border-left: 1px solid var(--border);
  flex-direction: column;
  gap: 4px;
}

.section-index a {
  display: flex;
  min-height: 38px;
  padding: 7px 8px;
  align-items: center;
  border-radius: 4px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
  text-decoration: none;
}

.section-index a:hover {
  background: var(--surface-alt);
  color: var(--action-hover);
  text-decoration: underline;
}

.policy {
  padding: 56px 64px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface);
}

.policy section {
  scroll-margin-top: calc(var(--header-height) + 28px);
}

.policy section + section {
  margin-top: 56px;
  padding-top: 56px;
  border-top: 1px solid #e4e7ec;
}

.policy p,
.policy li,
.permission-list dd {
  color: #344054;
}

.policy p {
  margin: 0 0 20px;
}

.policy p:last-child {
  margin-bottom: 0;
}

.policy ul {
  margin: 8px 0 24px;
  padding-left: 24px;
}

.policy li {
  padding-left: 6px;
}

.policy li + li {
  margin-top: 12px;
}

.policy li::marker {
  color: var(--icon);
}

.section-label {
  margin-bottom: 8px !important;
}

.mobile-index {
  display: none;
}

.permission-list {
  margin: 8px 0 28px;
  border-top: 1px solid var(--border);
}

.permission-list > div {
  display: grid;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  grid-template-columns: 152px minmax(0, 1fr);
  gap: 24px;
}

.permission-list dt {
  color: var(--brand);
  font-size: 15px;
  font-weight: 800;
}

.permission-list dd {
  margin: 0;
}

.contact-band {
  display: grid;
  padding: 72px max(var(--page-gutter), calc((100vw - 1040px) / 2));
  scroll-margin-top: var(--header-height);
  background: var(--brand);
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 64px;
}

.contact-band > div:first-child {
  max-width: 680px;
}

.contact-band .eyebrow {
  color: #9de4d7;
}

.contact-band h2,
.contact-band p {
  color: #ffffff;
}

.contact-band h2 {
  margin-bottom: 16px;
}

.contact-band p {
  margin: 0;
  color: #d8e7e2;
}

.contact-band p a {
  color: #ffffff;
  font-weight: 700;
}

.contact-band p a:hover {
  color: #ffffff;
}

.contact-actions {
  display: flex;
  gap: 12px;
}

.primary-action {
  display: inline-flex;
  min-height: 48px;
  padding: 0 20px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  background: #ffffff;
  color: var(--brand);
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
}

.primary-action:hover {
  background: var(--soft-teal);
  color: var(--brand);
  text-decoration: underline;
}

.site-footer {
  display: flex;
  width: min(1120px, calc(100% - (2 * var(--page-gutter))));
  margin: 0 auto;
  padding: 48px 0 56px;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
}

.site-footer p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.site-footer > p {
  max-width: 360px;
  text-align: right;
}

.not-found {
  display: flex;
  width: min(680px, calc(100% - (2 * var(--page-gutter))));
  min-height: 100vh;
  margin: 0 auto;
  padding: 64px 0;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
}

.not-found > img {
  margin-bottom: 32px;
}

.not-found h1 {
  margin-bottom: 16px;
  font-size: 44px;
}

.not-found > p:not(.eyebrow) {
  max-width: 520px;
  margin: 0 0 28px;
  color: var(--muted);
}

.not-found .primary-action {
  background: var(--brand);
  color: #ffffff;
}

.not-found .primary-action:hover {
  background: var(--action-hover);
  color: #ffffff;
}

@media (max-width: 900px) {
  .intro-inner {
    grid-template-columns: minmax(0, 1fr) 136px;
    gap: 40px;
  }

  .intro-mark {
    width: 136px;
    height: 136px;
  }

  .intro-mark img {
    width: 112px;
    height: 112px;
  }

  .trust-facts {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-facts li + li {
    border-left: 0;
  }

  .trust-facts li:nth-child(even) {
    border-left: 1px solid var(--border);
  }

  .trust-facts li:nth-child(n + 3) {
    border-top: 1px solid var(--border);
  }

  .policy-layout {
    grid-template-columns: minmax(0, 760px);
  }

  .section-index {
    display: none;
  }

  .mobile-index {
    display: block;
    margin: 0 0 48px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--surface-alt);
  }

  .mobile-index summary {
    min-height: 48px;
    padding: 10px 16px;
    color: var(--brand);
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
  }

  .mobile-index nav {
    display: grid;
    padding: 0 16px 16px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4px 12px;
  }

  .mobile-index a {
    display: flex;
    min-height: 44px;
    padding: 8px 0;
    align-items: center;
    font-size: 14px;
    font-weight: 700;
  }

  .contact-band {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 32px;
  }
}

@media (max-width: 680px) {
  :root {
    --header-height: 64px;
    --page-gutter: 20px;
  }

  body {
    font-size: 16px;
    line-height: 1.62;
  }

  .header-inner {
    gap: 16px;
  }

  .brand {
    gap: 9px;
    font-size: 17px;
  }

  .brand img {
    width: 34px;
    height: 34px;
  }

  .header-nav {
    gap: 0;
  }

  .header-nav > a:not(.support-link) {
    display: none;
  }

  .header-nav .support-link {
    min-height: 44px;
    padding: 0 14px;
  }

  .intro {
    padding-top: 56px;
  }

  .intro-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .intro-mark {
    display: none;
  }

  h1 {
    margin-bottom: 20px;
    font-size: 40px;
    line-height: 1.2;
  }

  h2 {
    font-size: 26px;
    line-height: 1.3;
  }

  h3 {
    font-size: 19px;
  }

  .lede {
    font-size: 18px;
    line-height: 1.55;
  }

  .policy-meta {
    display: grid;
    gap: 2px;
  }

  .policy-meta span {
    display: none;
  }

  .trust-facts {
    margin-top: 48px;
    grid-template-columns: 1fr;
  }

  .trust-facts li,
  .trust-facts li:nth-child(even) {
    padding: 18px 0;
    border-left: 0;
  }

  .trust-facts li + li,
  .trust-facts li:nth-child(n + 3) {
    border-top: 1px solid var(--border);
  }

  .policy-layout {
    width: 100%;
    margin: 40px auto 64px;
  }

  .policy {
    padding: 0 var(--page-gutter);
    border: 0;
    border-radius: 0;
    background: transparent;
  }

  .policy section + section {
    margin-top: 44px;
    padding-top: 44px;
  }

  .mobile-index {
    margin-bottom: 40px;
    background: var(--surface);
  }

  .mobile-index nav {
    grid-template-columns: 1fr;
  }

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

  .contact-band {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .contact-actions {
    display: grid;
    width: 100%;
  }

  .primary-action {
    width: 100%;
  }

  .site-footer {
    padding-top: 40px;
    padding-bottom: 44px;
    align-items: flex-start;
    flex-direction: column;
    gap: 24px;
  }

  .site-footer > p {
    text-align: left;
  }
}

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

@media print {
  .skip-link,
  .site-header,
  .section-index,
  .mobile-index,
  .contact-actions {
    display: none;
  }

  body,
  .intro,
  .policy,
  .contact-band {
    background: #ffffff;
    color: #000000;
  }

  .intro {
    padding-top: 24px;
  }

  .policy-layout {
    display: block;
    width: 100%;
    margin: 24px 0;
  }

  .policy {
    padding: 0;
    border: 0;
  }

  .contact-band {
    display: block;
    padding: 24px 0;
    border-top: 1px solid #000000;
  }

  .contact-band h2,
  .contact-band p,
  .contact-band .eyebrow {
    color: #000000;
  }
}
