:root {
  --bg: #000;
  --text: #fff;
  --muted: #cbcbcb;
  --content-max: 1160px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  background: var(--bg);
  color: var(--text);
}

body {
  font-family: "Inter", "Avenir Next", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

.scroller {
  scroll-snap-type: y mandatory;
}

.screen {
  min-height: 100svh;
  scroll-snap-align: start;
  display: grid;
  place-items: center;
  padding: clamp(1rem, 3vw, 2.5rem) 1rem;
}

.screen__inner {
  width: min(100%, var(--content-max));
  display: grid;
  gap: clamp(1.2rem, 2.7vw, 2.5rem);
}

.logo-lockup {
  display: block;
  width: min(100%, 820px);
  height: auto;
  margin-inline: auto;
}

.hero {
  min-height: 30svh;
  display: grid;
  place-items: center;
  text-align: center;
}

.hero__title {
  margin: 0;
  font-size: clamp(3.5rem, 13vw, 8rem);
  line-height: 0.93;
  letter-spacing: 0.03em;
  font-weight: 500;
}

.hero__subtitle {
  margin: clamp(0.45rem, 1.2vw, 0.85rem) 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 3vw, 2rem);
  font-weight: 450;
}

.screen--facts .screen__inner {
  align-content: center;
}

.facts__heading {
  margin: 0;
  text-align: center;
  font-size: clamp(1.08rem, 3.2vw, 2.25rem);
  font-weight: 700;
}

.facts__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: clamp(0.45rem, 1.4vw, 1rem);
}

.stat {
  display: flex;
  align-items: baseline;
  gap: clamp(0.4rem, 0.9vw, 0.75rem);
}

.stat__value {
  margin: 0;
  font-size: clamp(3.05rem, 14vw, 5.7rem);
  line-height: 0.9;
  font-weight: 520;
}

.stat__label {
  margin: 0;
  text-transform: uppercase;
  font-size: clamp(0.95rem, 2.7vw, 1.58rem);
  font-weight: 700;
  max-width: 19ch;
}

.facts__note {
  margin: clamp(0.6rem, 1.5vw, 1rem) 0 0;
  text-align: center;
  font-size: clamp(0.95rem, 2.1vw, 1.55rem);
  line-height: 1.25;
}

.facts__note strong {
  color: var(--text);
  font-weight: 760;
}

.facts__source {
  margin: 0;
  text-align: right;
  color: var(--muted);
  font-style: italic;
  font-size: clamp(0.66rem, 1.35vw, 1rem);
}

.logo-lockup--bottom {
  width: min(100%, 740px);
  margin-top: clamp(0.7rem, 1.8vw, 1.2rem);
}

.footer-note {
  margin: 0 auto clamp(0.9rem, 1.9vw, 1.3rem);
  text-align: center;
  color: #a3a3a3;
  font-size: 0.78rem;
}

.footer-note a {
  color: #d8d8d8;
}

.footer-note a:hover,
.footer-note a:focus-visible {
  color: #ffffff;
}

.cookie-settings-btn {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 60;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(0, 0, 0, 0.85);
  color: #fff;
  border-radius: 999px;
  font-size: 0.82rem;
  padding: 0.6rem 0.9rem;
  cursor: pointer;
}

.cookie-consent[hidden],
.cookie-settings-btn[hidden] {
  display: none !important;
}

.cookie-consent {
  position: fixed;
  inset: auto 1rem 1rem 1rem;
  z-index: 70;
}

.cookie-consent__card {
  margin-inline: auto;
  width: min(100%, 760px);
  background: #0b0b0b;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.85rem;
  padding: 1rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.cookie-consent__card h2 {
  margin: 0;
  font-size: clamp(1rem, 2.6vw, 1.25rem);
}

.cookie-consent__card p {
  margin: 0.65rem 0 0;
  color: #d4d4d4;
  font-size: 0.92rem;
  line-height: 1.4;
}

.cookie-consent__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.9rem;
}

.btn {
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: transparent;
  color: #fff;
  border-radius: 0.62rem;
  padding: 0.58rem 0.82rem;
  font-size: 0.88rem;
  line-height: 1;
  cursor: pointer;
}

.btn--primary {
  background: #fff;
  color: #000;
  border-color: #fff;
}

.cookie-consent__preferences {
  margin-top: 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  padding-top: 0.8rem;
}

.cookie-consent__preferences[hidden] {
  display: none !important;
}

.cookie-consent__option {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 0.55rem;
  font-size: 0.92rem;
}

.cookie-consent__option input[type="checkbox"] {
  width: 1rem;
  height: 1rem;
}

.cookie-consent__actions--preferences {
  margin-top: 0.95rem;
}

.legal-page {
  min-height: 100svh;
  padding: 1rem;
  display: grid;
  place-items: center;
}

.legal-page__inner {
  width: min(100%, 760px);
  background: #0a0a0a;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 0.75rem;
  padding: 1.25rem;
}

.legal-page__inner h1,
.legal-page__inner h2 {
  margin: 0 0 0.6rem;
}

.legal-page__inner h2 {
  margin-top: 1rem;
}

.legal-page__inner p,
.legal-page__inner li {
  color: #d5d5d5;
  line-height: 1.5;
}

.legal-page__back {
  display: inline-block;
  margin-top: 0.5rem;
}

@media (max-width: 919.98px) {
  .hero__title {
    font-size: clamp(4.74rem, 19.2vw, 7.56rem);
    line-height: 0.86;
  }

  .hero__subtitle {
    margin-top: clamp(0.02rem, 0.2vw, 0.1rem);
  }
}

@media (min-width: 920px) {
  .facts__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: clamp(1.6rem, 3.4vw, 2.8rem);
    row-gap: clamp(0.85rem, 1.8vw, 1.3rem);
  }

  .hero {
    min-height: 63svh;
  }
}
