:root {
  --paper: #f7f4ea;
  --white: #fffef9;
  --ink: #0c1b2b;
  --muted: #51606f;
  --line: rgba(12, 27, 43, 0.22);
  --blue: #275efe;
  --coral: #ff6547;
  --mono: "IBM Plex Mono", monospace;
  --sans: "Manrope", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background-color: var(--paper);
  background-image:
    linear-gradient(rgba(12, 27, 43, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(12, 27, 43, 0.045) 1px, transparent 1px);
  background-size: 32px 32px;
  font-family: var(--sans);
}

a { color: inherit; }

.skipLink {
  position: fixed;
  z-index: 20;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: white;
  background: var(--ink);
  transform: translateY(-160%);
}

.skipLink:focus { transform: translateY(0); }

.siteHeader,
main,
footer {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.siteHeader {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--ink);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 800;
  text-decoration: none;
}

.brand img { object-fit: contain; }

.siteHeader nav {
  display: flex;
  gap: 24px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}

.siteHeader nav a,
footer a { text-underline-offset: 4px; }

.privacyHero {
  min-height: 440px;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  gap: clamp(48px, 8vw, 110px);
  align-items: end;
  padding: clamp(70px, 10vw, 130px) 0 70px;
  border-bottom: 1px solid var(--ink);
}

.eyebrow,
.effective,
aside p,
.sectionNo {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow { color: var(--blue); }

h1 {
  max-width: 760px;
  margin: 18px 0 20px;
  font-size: clamp(54px, 9vw, 118px);
  line-height: 0.9;
  letter-spacing: -0.07em;
}

.heroLead {
  max-width: 700px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.6;
}

.effective { margin-top: 30px; }

.dataRoute {
  margin: 0;
  padding: 0;
  list-style: none;
  border: 1px solid var(--ink);
  background: var(--white);
  box-shadow: 10px 10px 0 var(--ink);
}

.dataRoute li {
  display: grid;
  grid-template-columns: 54px 1fr;
  align-items: center;
  min-height: 64px;
  border-bottom: 1px solid var(--line);
}

.dataRoute li:last-child { border-bottom: 0; }

.dataRoute span {
  align-self: stretch;
  display: grid;
  place-items: center;
  border-right: 1px solid var(--line);
  color: var(--coral);
  font-family: var(--mono);
  font-size: 10px;
}

.dataRoute strong { padding: 0 20px; font-size: 13px; }

.privacyLayout {
  display: grid;
  grid-template-columns: 260px minmax(0, 760px);
  justify-content: space-between;
  gap: clamp(50px, 9vw, 130px);
  padding: 80px 0 120px;
}

aside {
  align-self: start;
  position: sticky;
  top: 32px;
  display: grid;
  gap: 10px;
  padding: 24px;
  border: 1px solid var(--ink);
  background: var(--white);
}

aside p { margin: 18px 0 0; color: var(--blue); }
aside p:first-child { margin-top: 0; }
aside strong { font-size: 13px; line-height: 1.55; }
aside a { overflow-wrap: anywhere; font-size: 12px; }

article section {
  position: relative;
  padding: 0 0 62px 72px;
  border-left: 1px solid var(--ink);
}

article section:last-child { padding-bottom: 0; }

.sectionNo {
  position: absolute;
  top: 4px;
  left: -21px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  color: white;
  background: var(--ink);
}

h2 {
  margin: 0 0 22px;
  font-size: clamp(27px, 4vw, 42px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

article p,
article li {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.85;
}

article p { margin: 0 0 16px; }
article ul { margin: 0 0 20px; padding-left: 22px; }
article a { color: var(--blue); font-weight: 700; text-underline-offset: 3px; }

footer {
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--ink);
  font-family: var(--mono);
  font-size: 10px;
}

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

@media (max-width: 760px) {
  .siteHeader,
  main,
  footer { width: min(100% - 28px, 1180px); }

  .siteHeader { align-items: flex-start; padding: 18px 0; }
  .siteHeader nav { flex-direction: column; align-items: flex-end; gap: 8px; font-size: 9px; }

  .privacyHero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 64px 0 54px;
  }

  h1 { font-size: clamp(52px, 19vw, 82px); }

  .dataRoute { margin-right: 8px; }

  .privacyLayout {
    grid-template-columns: 1fr;
    gap: 58px;
    padding: 60px 0 90px;
  }

  aside { position: static; }

  article section { padding: 0 0 54px 42px; }
  .sectionNo { left: -17px; width: 32px; height: 32px; font-size: 8px; }

  footer { align-items: flex-start; flex-direction: column; justify-content: center; }
}

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