:root {
  color-scheme: light;
  --bg: #f8faf7;
  --surface: #ffffff;
  --ink: #17231f;
  --muted: #5c6a62;
  --line: #d8e0da;
  --brand: #116b5f;
  --brand-strong: #0b4f47;
  --accent: #d87932;
  --support: #315f9d;
  --soft: #e9f4ef;
  --warning-soft: #fff1df;
  --shadow: 0 18px 45px rgb(23 35 31 / 12%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.5;
}

a {
  color: inherit;
}

code,
pre {
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

code {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #f3f6f4;
  padding: 0.1rem 0.35rem;
  font-size: 0.92em;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -10rem;
  z-index: 20;
  background: var(--ink);
  color: #fff;
  padding: 0.65rem 0.85rem;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgb(216 224 218 / 80%);
  background: rgb(248 250 247 / 92%);
  backdrop-filter: blur(14px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 0.85rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-width: max-content;
  text-decoration: none;
  font-weight: 750;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 7px;
  background: var(--brand);
  color: #fff;
  font-size: 0.78rem;
  letter-spacing: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.25rem;
  flex-wrap: wrap;
}

.nav-links a {
  min-height: 2.25rem;
  padding: 0.48rem 0.7rem;
  border-radius: 6px;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.94rem;
  font-weight: 650;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  background: var(--soft);
  color: var(--ink);
  outline: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 440px);
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
  width: min(1120px, calc(100% - 2rem));
  min-height: calc(100vh - 82px);
  margin: 0 auto;
  padding: clamp(3rem, 7vh, 6rem) 0 clamp(2rem, 6vh, 4.5rem);
}

.hero-copy {
  max-width: 720px;
}

.eyebrow {
  margin: 0 0 0.9rem;
  color: var(--brand-strong);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

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

h1 {
  max-width: 12.5ch;
  font-size: clamp(2.55rem, 6.8vw, 4.9rem);
}

h2 {
  font-size: clamp(1.85rem, 4vw, 3rem);
}

h3 {
  font-size: 1.08rem;
}

.lead {
  max-width: 63ch;
  margin: 1.2rem 0 0;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.8vw, 1.22rem);
}

.hero-actions,
.link-list {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.hero-actions {
  margin-top: 1.8rem;
}

.button,
.link-list a,
.action-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.8rem;
  border-radius: 7px;
  padding: 0.72rem 1rem;
  text-decoration: none;
  font-weight: 750;
}

.button.primary {
  background: var(--brand);
  color: #fff;
}

.button.secondary {
  border: 1px solid var(--brand);
  background: #fff;
  color: var(--brand-strong);
}

.button.ghost {
  color: var(--support);
}

.button:hover,
.button:focus-visible,
.link-list a:hover,
.link-list a:focus-visible,
.action-card a:hover,
.action-card a:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.hero-visual {
  margin: 0;
}

.hero-visual img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.status-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto 2rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.status-strip > div {
  min-height: 6rem;
  padding: 1rem;
  background: var(--surface);
}

.metric,
.metric-label {
  display: block;
}

.metric {
  font-size: 1rem;
  font-weight: 800;
}

.metric-label {
  margin-top: 0.25rem;
  color: var(--muted);
  font-size: 0.94rem;
}

.section {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(3rem, 8vw, 5.5rem) 0;
}

.band {
  width: 100%;
  max-width: none;
  padding-inline: max(1rem, calc((100% - 1120px) / 2));
  background: #eef5f0;
  border-block: 1px solid var(--line);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 1.8rem;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 1.25rem;
  align-items: start;
}

.copy-block p,
.note-panel p,
.privacy-grid p,
.support-template p,
.page-title p,
.two-column > p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
}

.copy-block p + p {
  margin-top: 1rem;
}

.note-panel {
  border-left: 4px solid var(--accent);
  background: var(--warning-soft);
  padding: 1.1rem 1.15rem;
}

.note-panel p {
  margin-top: 0.65rem;
}

.action-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.action-card,
.privacy-grid article {
  display: flex;
  flex-direction: column;
  min-height: 14rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  padding: 1.1rem;
}

.action-card p,
.privacy-grid p {
  margin: 0.7rem 0 1rem;
  color: var(--muted);
}

.action-card a {
  align-self: flex-start;
  margin-top: auto;
  background: #eef3fa;
  color: var(--support);
}

.checklist {
  display: grid;
  gap: 0.95rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.checklist li {
  display: grid;
  grid-template-columns: 2.4rem minmax(0, 1fr);
  gap: 0.95rem;
  align-items: start;
  min-height: 5.25rem;
  border-bottom: 1px solid var(--line);
  padding: 0 0 1rem;
}

.checklist span {
  display: inline-grid;
  place-items: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 7px;
  background: var(--brand);
  color: #fff;
  font-weight: 800;
}

.checklist p {
  margin: 0.45rem 0 0;
  color: var(--muted);
}

.support-template {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(300px, 1fr);
  gap: 1.5rem;
  align-items: start;
}

pre {
  width: 100%;
  margin: 0;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #101915;
  color: #eaf5ee;
  padding: 1.1rem;
  font-size: 0.94rem;
  line-height: 1.55;
}

.link-list {
  align-items: flex-start;
}

.link-list a {
  border: 1px solid #b8ccdd;
  background: #f4f8fb;
  color: var(--support);
}

.page-title {
  width: min(920px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(3rem, 8vw, 6rem) 0 2rem;
}

.page-title h1 {
  max-width: 13ch;
}

.page-title p {
  max-width: 68ch;
  margin-top: 1.2rem;
  font-size: 1.1rem;
}

.privacy-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.privacy-grid article {
  min-height: 12rem;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 2rem 0;
  color: var(--muted);
}

.footer p {
  margin: 0;
  font-weight: 750;
  color: var(--ink);
}

.footer div {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 650;
}

.footer a:hover,
.footer a:focus-visible {
  color: var(--brand-strong);
  outline: none;
}

@media (max-width: 920px) {
  .hero,
  .two-column,
  .support-template {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    max-width: 560px;
  }

  .action-grid,
  .privacy-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .brand {
    min-width: 0;
  }

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

  .nav-links a {
    padding-inline: 0.55rem;
  }

  h1 {
    max-width: 11.5ch;
    font-size: 2.55rem;
  }

  .status-strip,
  .action-grid,
  .privacy-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .link-list {
    align-items: stretch;
    flex-direction: column;
  }

  .button,
  .link-list a,
  .action-card a {
    width: 100%;
  }

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

