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

:root {
  --ink: #0b1c2e;
  --ink-soft: #506176;
  --navy-1000: #04101d;
  --navy-950: #071525;
  --navy-900: #0a1b2f;
  --paper: #ffffff;
  --mist: #f3f6f9;
  --line: #dce4ec;
  --line-dark: rgba(224, 237, 250, 0.14);
  --blue: #557fa8;
  --muted-dark: #a7b8ca;
  --container: 1080px;
  --radius: 16px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  background: var(--navy-950);
  scroll-behavior: smooth;
}

body {
  min-height: 100dvh;
  margin: 0;
  color: var(--ink);
  background: var(--mist);
  font-family: Manrope, "Avenir Next", Avenir, sans-serif;
  font-size: 17px;
  line-height: 1.72;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.22em;
}

::selection {
  color: var(--navy-1000);
  background: #b7c8d8;
}

:focus-visible {
  outline: 3px solid #8da8c1;
  outline-offset: 4px;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 10;
  top: 12px;
  left: 12px;
  padding: 9px 14px;
  color: var(--navy-950);
  background: var(--paper);
  border-radius: 9px;
  font-weight: 700;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.site-header {
  color: var(--paper);
  background: var(--navy-1000);
  border-bottom: 1px solid var(--line-dark);
}

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

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  line-height: 0;
}

.brand img {
  width: 118px;
  height: auto;
  filter: invert(1);
}

.home-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #c4d1de;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 680;
  transition: color 180ms ease;
}

.home-link:hover {
  color: var(--paper);
}

.home-link svg {
  width: 17px;
  height: 17px;
  transition: transform 220ms var(--ease);
}

.home-link:hover svg {
  transform: translateX(-3px);
}

.page-intro {
  padding: clamp(52px, 7vw, 84px) 0 clamp(48px, 6vw, 74px);
  color: var(--paper);
  background: var(--navy-950);
}

.eyebrow {
  margin: 0 0 15px;
  color: #9fb4c8;
  font-size: 0.76rem;
  font-weight: 760;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

h1,
h2,
p,
ul,
address {
  margin-top: 0;
}

h1,
h2 {
  line-height: 1.14;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

h1 {
  max-width: 850px;
  margin-bottom: 16px;
  font-size: clamp(2.7rem, 6vw, 4.9rem);
  font-weight: 760;
}

.page-intro p:last-child {
  max-width: 62ch;
  margin-bottom: 0;
  color: var(--muted-dark);
  font-size: clamp(1rem, 1.7vw, 1.18rem);
}

main {
  background: var(--mist);
}

.legal-wrap {
  padding: clamp(44px, 7vw, 84px) 0 clamp(64px, 9vw, 112px);
}

.legal-content {
  max-width: 820px;
  margin-inline: auto;
  padding: clamp(28px, 5vw, 62px);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 46px rgba(4, 16, 29, 0.08);
}

.legal-section + .legal-section {
  margin-top: 38px;
  padding-top: 38px;
  border-top: 1px solid var(--line);
}

.legal-content h2 {
  margin-bottom: 15px;
  color: var(--ink);
  font-size: clamp(1.3rem, 2.6vw, 1.7rem);
  font-weight: 760;
}

.legal-content p,
.legal-content ul,
.legal-content address {
  max-width: 68ch;
  margin-bottom: 16px;
  color: var(--ink-soft);
}

.legal-content p:last-child,
.legal-content address:last-child,
.legal-content ul:last-child {
  margin-bottom: 0;
}

.legal-content ul {
  padding-left: 1.25em;
}

.legal-content li + li {
  margin-top: 3px;
}

.legal-content a {
  color: #2f557d;
  font-weight: 650;
}

.legal-content a:hover {
  color: var(--ink);
}

.contact-card {
  display: grid;
  gap: 4px;
  max-width: 560px;
  margin: 4px 0 22px;
  padding: 22px 24px;
  color: var(--ink-soft);
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: 12px;
  font-style: normal;
}

.contact-card strong {
  color: var(--ink);
  font-size: 1.05rem;
}

.legal-note {
  display: inline-flex;
  margin-top: 10px;
  padding: 7px 11px;
  color: var(--ink-soft);
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 650;
}

.site-footer {
  color: var(--muted-dark);
  background: var(--navy-1000);
  border-top: 1px solid var(--line-dark);
}

.footer-inner {
  display: flex;
  min-height: 88px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  font-size: 0.84rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.footer-links a {
  text-decoration: none;
}

.footer-links a:hover,
.footer-links a[aria-current="page"] {
  color: var(--paper);
}

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .header-inner {
    min-height: 66px;
  }

  .brand img {
    width: 104px;
  }

  .home-link {
    font-size: 0.82rem;
  }

  .page-intro {
    padding: 44px 0 48px;
  }

  h1 {
    font-size: clamp(2.3rem, 13vw, 3.35rem);
  }

  .legal-wrap {
    padding: 22px 0 58px;
  }

  .legal-content {
    padding: 26px 20px;
    border-radius: 12px;
  }

  .legal-section + .legal-section {
    margin-top: 30px;
    padding-top: 30px;
  }

  .contact-card {
    padding: 19px 18px;
  }

  .footer-inner {
    min-height: 0;
    align-items: flex-start;
    flex-direction: column;
    padding: 26px 0;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
