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

.consent-banner {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  z-index: 10;
  max-width: 42rem;
  margin-inline: auto;
  padding: 1rem;
  border: 1px solid #d8d8d8;
  border-radius: 0.75rem;
  background: #fff;
  box-shadow: 0 0.75rem 2rem rgb(0 0 0 / 12%);
}

.consent-banner p {
  margin: 0;
  line-height: 1.5;
}

.consent-banner__actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.75rem;
  margin-top: 1rem;
}

.consent-banner button,
.text-button {
  padding: 0.6rem 0.9rem;
  border: 1px solid #222;
  border-radius: 0.4rem;
  color: #222;
  background: #fff;
  font: inherit;
  cursor: pointer;
}

.consent-banner .button-primary {
  color: #fff;
  background: #222;
}

.text-button {
  padding: 0;
  border: 0;
  text-decoration: underline;
}

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

:root {
  --navy: #071a44;
  --navy-muted: rgba(7, 26, 68, 0.58);
  --navy-faint: rgba(7, 26, 68, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  color-scheme: light;
  background: #fff;
}

body {
  min-width: 320px;
  min-height: 100vh;
  min-height: 100dvh;
  margin: 0;
  padding: clamp(1.25rem, 4vw, 2.5rem);
  color: var(--navy);
  background: #fff;
  font-family: "Roboto", sans-serif;
  -webkit-font-smoothing: antialiased;
}

.landing-page {
  display: grid;
  grid-template-rows: 1fr auto;
}

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: center;
  width: min(100%, 40rem);
  margin-inline: auto;
  text-align: center;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin: 0;
  font-size: clamp(3.25rem, 9vw, 5.5rem);
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 1;
}

.brand img {
  flex: 0 0 auto;
  width: 0.85em;
  height: 0.85em;
}

.claim {
  max-width: 34rem;
  margin: clamp(1.5rem, 4vw, 2rem) 0 0;
  color: var(--navy);
  font-size: clamp(1.1rem, 3vw, 1.45rem);
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1.45;
}

.status {
  margin: 0.9rem 0 0;
  color: var(--navy-muted);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  line-height: 1.4;
  text-transform: uppercase;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  align-items: center;
  justify-content: center;
  padding-top: 2rem;
  color: var(--navy-faint);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.site-footer__links {
  display: flex;
  gap: 1.25rem;
}

.site-footer a,
.legal-content a {
  color: inherit;
  text-decoration-color: transparent;
  text-underline-offset: 0.22em;
  transition: color 160ms ease, text-decoration-color 160ms ease;
}

.site-footer a:hover,
.site-footer a:focus-visible,
.legal-content a:hover,
.legal-content a:focus-visible {
  color: var(--navy);
  text-decoration-color: #fe5300;
}

.legal-page {
  display: flex;
  flex-direction: column;
}

.legal-header,
.legal-content,
.legal-page .site-footer {
  width: min(100%, 48rem);
  margin-inline: auto;
}

.legal-header {
  padding-bottom: clamp(3.5rem, 10vw, 6rem);
}

.legal-brand {
  display: inline-flex;
  gap: 0.55rem;
  align-items: center;
  color: var(--navy);
  font-size: 1.65rem;
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1;
  text-decoration: none;
}

.legal-brand img {
  width: 1.25em;
  height: 1.25em;
}

.legal-content {
  flex: 1;
  color: var(--navy-muted);
  font-size: 1rem;
  line-height: 1.7;
}

.legal-content h1 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  letter-spacing: -0.055em;
  line-height: 1;
}

.legal-content h2 {
  margin: 2.75rem 0 0.6rem;
  color: var(--navy);
  font-size: 1rem;
  letter-spacing: 0.01em;
  line-height: 1.4;
}

.legal-content p,
.legal-content address,
.legal-content ul {
  max-width: 42rem;
  margin-block: 0.7rem;
}

.legal-content address {
  font-style: normal;
}

.legal-content ul {
  padding-left: 1.2rem;
}

.legal-content li + li {
  margin-top: 0.35rem;
}

.legal-intro {
  margin-top: 1.25rem !important;
  font-size: 1.1rem;
}

.legal-page .site-footer {
  justify-content: space-between;
  margin-top: clamp(4rem, 12vw, 7rem);
}

@media (max-width: 32rem) {
  .legal-page .site-footer {
    flex-direction: column;
    justify-content: center;
  }
}
