:root {
  color-scheme: dark;
  --ink: #f5f7fb;
  --muted: #aeb7c8;
  --line: #2a3140;
  --canvas: #0b0e14;
  --accent: #20d4e8;
  --header: #07090d;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--canvas);
  font-family: "Aptos", "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.7;
}

a {
  color: #55ddeb;
  text-underline-offset: 3px;
}

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

.header-inner,
.document,
.site-footer-inner {
  width: min(100% - 40px, 920px);
  margin: 0 auto;
}

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

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand img {
  display: block;
  width: 154px;
  height: auto;
}

.legal-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.legal-nav a {
  color: #aeb7c8;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.legal-nav a[aria-current="page"],
.legal-nav a:hover {
  color: #ffffff;
}

.document {
  min-height: calc(100vh - 164px);
  padding: 72px 0 88px;
}

.document-header {
  max-width: 720px;
  margin-bottom: 52px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--line);
}

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

h1,
h2 {
  font-family: "Charter", "Iowan Old Style", "Palatino Linotype", serif;
}

h1 {
  margin: 0;
  font-size: clamp(42px, 7vw, 68px);
  line-height: 1.04;
  font-weight: 700;
}

.operator {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.legal-section {
  max-width: 760px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.legal-section:first-of-type {
  padding-top: 0;
}

.legal-section:last-child {
  border-bottom: 0;
}

h2 {
  margin: 0 0 14px;
  font-size: 26px;
  line-height: 1.25;
}

p {
  margin: 0 0 14px;
}

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

ul {
  margin: 10px 0 16px;
  padding-left: 24px;
}

li {
  margin: 5px 0;
  padding-left: 4px;
}

li::marker {
  color: var(--accent);
}

.contact-line {
  font-weight: 700;
}

.site-footer {
  color: #aeb6c4;
  background: var(--header);
  border-top: 1px solid var(--line);
}

.site-footer-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 13px;
}

.site-footer a {
  color: #ffffff;
}

@media (max-width: 640px) {
  .header-inner {
    min-height: 112px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    padding: 18px 0;
  }

  .brand img {
    width: 128px;
  }

  .legal-nav {
    width: 100%;
    gap: 18px;
    overflow-x: auto;
  }

  .legal-nav a {
    white-space: nowrap;
  }

  .document {
    padding: 48px 0 64px;
  }

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

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 23px;
  }

  .site-footer-inner {
    min-height: 92px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
  }
}
