@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/fonts/inter-400.woff2") format("woff2");
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/fonts/inter-600.woff2") format("woff2");
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/fonts/inter-700.woff2") format("woff2");
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("/fonts/inter-800.woff2") format("woff2");
}

:root {
  --legal-blue: #3d5afe;
  --legal-blue-deep: #2b45ed;
  --legal-blue-soft: #e7ebff;
  --legal-ink: #1a1918;
  --legal-paper: #f5f4f2;
  --legal-white: #fff;
  --legal-line: rgba(26, 25, 24, 0.14);
  --legal-muted: rgba(26, 25, 24, 0.68);
}

html {
  background: var(--legal-paper);
}

body {
  min-width: 320px;
  margin: 0;
  background: var(--legal-paper);
  color: var(--legal-ink);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.7;
}

::selection {
  background: var(--legal-blue-soft);
  color: var(--legal-ink);
}

.legal-site-header {
  width: 100%;
  padding: 0 24px;
  border: 0;
  background: var(--legal-blue);
  color: var(--legal-white);
}

.legal-site-header__inner {
  display: grid;
  width: min(1320px, 100%);
  min-height: 92px;
  margin: 0 auto;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.legal-site-header a {
  color: var(--legal-white);
  text-decoration: none;
  opacity: 1;
}

.legal-brand {
  display: inline-flex;
  width: max-content;
  align-items: center;
  gap: 12px;
  color: var(--legal-white);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.045em;
}

.legal-brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  place-items: center;
  overflow: visible;
  background: transparent;
}

.legal-brand-mark img {
  position: static;
  display: block;
  width: 31px;
  height: 42px;
  max-width: none;
  object-fit: fill;
  transform: none;
}

.legal-site-header nav {
  display: flex;
  align-items: center;
  gap: clamp(24px, 3vw, 44px);
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 700;
}

.legal-site-header nav a:hover {
  color: var(--legal-white);
}

.legal-site-header .legal-header-cta {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  justify-self: end;
  padding: 0 18px;
  border: 1px solid var(--legal-ink);
  border-radius: 7px;
  background: var(--legal-ink);
  color: var(--legal-white);
  font-size: 14px;
  font-weight: 800;
}

body > main {
  width: min(940px, calc(100% - 40px));
  max-width: none;
  margin: 64px auto;
  padding: 0;
}

.card {
  padding: clamp(28px, 5vw, 58px);
  border: 1px solid var(--legal-line);
  border-radius: 28px;
  background: var(--legal-white);
  box-shadow: none;
}

.card h1 {
  margin: 0 0 12px;
  color: var(--legal-ink);
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 1;
}

.card .meta {
  margin-bottom: 32px;
  color: rgba(26, 25, 24, 0.5);
  font-size: 13px;
}

.card h2 {
  border-color: var(--legal-line);
  color: var(--legal-ink);
}

.card h3,
.card h4,
.card th,
.card label {
  color: var(--legal-blue-deep);
}

.card p,
.card li,
.card table,
.card .help,
.card .checkbox {
  color: var(--legal-muted);
}

.card a {
  color: var(--legal-blue-deep);
  text-underline-offset: 3px;
}

.card .callout,
.card .safe,
.card .agent,
.card .status {
  border-left-color: var(--legal-blue);
  background: var(--legal-blue-soft);
  color: var(--legal-ink);
}

.card th {
  background: #f0f2ff;
}

.card input[type="text"],
.card input[type="email"],
.card input[type="url"],
.card textarea,
.card select {
  border-color: var(--legal-line);
  background: var(--legal-white);
  color: var(--legal-ink);
}

.card .submit,
.card .email-btn,
.card .actions button {
  border-color: var(--legal-blue);
  background: var(--legal-blue);
  color: var(--legal-white);
}

.card .submit:hover,
.card .email-btn:hover,
.card .actions button:hover {
  background: var(--legal-blue-deep);
}

.card .actions button.secondary {
  background: var(--legal-white);
  color: var(--legal-blue-deep);
}

body > footer {
  padding: 32px 20px;
  background: var(--legal-ink);
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
  text-align: center;
}

body > footer a {
  color: rgba(255, 255, 255, 0.72);
}

@media (max-width: 900px) {
  .legal-site-header__inner {
    grid-template-columns: 1fr auto;
  }

  .legal-site-header nav {
    display: none;
  }
}

@media (max-width: 620px) {
  .legal-site-header {
    padding: 0 12px;
  }

  .legal-site-header__inner {
    min-height: 76px;
  }

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

  .legal-brand-mark {
    width: 36px;
    height: 36px;
    flex-basis: 36px;
  }

  .legal-brand-mark img {
    width: 27px;
    height: 36px;
  }

  .legal-site-header .legal-header-cta {
    min-height: 38px;
    padding: 0 13px;
    font-size: 10px;
  }

  body > main {
    width: calc(100% - 24px);
    margin: 32px auto;
  }

  .card {
    padding: 28px 18px;
    border-radius: 20px;
  }

  .card h1 {
    font-size: clamp(34px, 12vw, 48px);
  }
}
