@font-face {
  font-family: "Poppins";
  src: url("fonts/poppins/poppins-400.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("fonts/poppins/poppins-500.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("fonts/poppins/poppins-600.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("fonts/poppins/poppins-700.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("fonts/poppins/poppins-800.ttf") format("truetype");
  font-style: normal;
  font-weight: 800;
  font-display: swap;
}

:root {
  --site-ink: #11272e;
  --site-ink-soft: #3f555c;
  --site-blue: #2864dc;
  --site-blue-dark: #1748b2;
  --site-coral: #ff6847;
  --site-mist: #eef4f4;
  --site-line: rgba(17, 39, 46, 0.14);
  --site-white: #ffffff;
  --site-radius: 28px;
  --site-shadow: 0 30px 80px rgba(17, 39, 46, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body.public-homepage {
  margin: 0;
  color: var(--site-ink);
  background: #f9fbfa;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

.public-homepage a {
  color: inherit;
}

.site-container {
  width: min(100% - 48px, 1380px);
  margin-inline: auto;
}

.site-skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1000;
  padding: 10px 16px;
  border-radius: 12px;
  color: #fff;
  background: var(--site-ink);
  transform: translateY(-140%);
  transition: transform 0.2s ease;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  padding: 20px 0;
  border-bottom: 1px solid transparent;
  transition: padding 0.25s ease, border-color 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  padding: 11px 0;
  border-color: rgba(17, 39, 46, 0.08);
  background: rgba(249, 251, 250, 0.9);
  box-shadow: 0 10px 35px rgba(17, 39, 46, 0.06);
  backdrop-filter: blur(18px);
}

.site-header__inner,
.site-nav,
.site-brand,
.site-header .site-button {
  display: flex;
  align-items: center;
}

.site-header__inner {
  justify-content: space-between;
  gap: 32px;
}

.site-brand {
  gap: 12px;
  min-width: 178px;
  text-decoration: none;
}

.site-brand img {
  width: auto;
  max-width: 190px;
  height: 44px;
  object-fit: contain;
  filter: brightness(0) saturate(100%);
}

.site-brand__mark {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--site-ink);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.site-brand__text {
  max-width: 112px;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.05;
  text-transform: uppercase;
}

.site-nav {
  justify-content: flex-end;
  gap: clamp(14px, 2vw, 28px);
  font-size: 13px;
  font-weight: 700;
}

.site-nav > a {
  position: relative;
  text-decoration: none;
  white-space: nowrap;
}

.site-nav > a:not(.site-button)::after {
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.2s ease;
}

.site-nav > a:not(.site-button):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-nav__profile {
  padding-left: 24px;
  border-left: 1px solid var(--site-line);
}

.site-menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0 12px;
  border: 1px solid var(--site-line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
}

.site-menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 4px 0;
  border-radius: 2px;
  background: var(--site-ink);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border: 1px solid var(--site-blue);
  border-radius: 999px;
  color: #fff !important;
  background: var(--site-blue);
  box-shadow: 0 14px 34px rgba(40, 100, 220, 0.2);
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.site-button:hover {
  color: #fff;
  background: var(--site-blue-dark);
  box-shadow: 0 18px 40px rgba(40, 100, 220, 0.28);
  transform: translateY(-2px);
}

.site-button--small {
  min-height: 42px;
  padding: 11px 17px;
  font-size: 12px;
}

.site-button--secondary {
  border-color: var(--site-line);
  color: var(--site-ink) !important;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: none;
}

.site-button--secondary:hover {
  color: var(--site-ink) !important;
  background: #fff;
  box-shadow: 0 14px 30px rgba(17, 39, 46, 0.1);
}

.site-hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  padding: 142px 0 78px;
  background:
    linear-gradient(rgba(17, 39, 46, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 39, 46, 0.035) 1px, transparent 1px),
    linear-gradient(145deg, #f9fbfa 20%, #eef6fb 76%, #f8fbf2);
  background-size: 44px 44px, 44px 44px, auto;
}

.site-hero__glow {
  position: absolute;
  top: -220px;
  left: 45%;
  width: 680px;
  height: 680px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(40, 100, 220, 0.16), rgba(40, 100, 220, 0));
  pointer-events: none;
}

.site-hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(48px, 7vw, 100px);
  align-items: center;
}

.site-kicker {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 26px;
  color: var(--site-blue);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-kicker span {
  width: 34px;
  height: 2px;
  background: currentColor;
}

.site-hero h1,
.site-section-heading h2,
.content-feature h3,
.site-about h2,
.site-cta h2 {
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  letter-spacing: -0.035em;
}

.site-hero h1 {
  max-width: 760px;
  font-size: clamp(52px, 6.1vw, 92px);
  line-height: 0.94;
}

.site-hero__text {
  max-width: 62ch;
  margin-top: 30px;
  color: var(--site-ink-soft);
  font-size: 15px;
}

.site-richtext > :first-child {
  margin-top: 0;
}

.site-richtext > :last-child {
  margin-bottom: 0;
}

.site-richtext p {
  margin: 0 0 0.85em;
}

.site-richtext a {
  color: var(--site-blue);
  font-weight: 700;
}

.content-feature .site-richtext img {
  width: auto;
  max-width: 100%;
  height: auto;
}

.content-feature .site-richtext table {
  width: 100%;
  display: block;
  overflow-x: auto;
  border-collapse: collapse;
}

.content-feature .site-richtext th,
.content-feature .site-richtext td {
  min-width: 120px;
  padding: 8px 10px;
  border: 1px solid rgba(15, 23, 42, 0.14);
  text-align: left;
  vertical-align: top;
}

.site-hero__actions,
.content-feature__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.site-event-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 28px;
  color: var(--site-ink-soft);
  font-size: 12px;
  font-weight: 700;
}

.site-event-meta span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.site-event-meta i {
  color: var(--site-coral);
  font-size: 18px;
}

.site-hero__visual {
  position: relative;
  min-height: min(68vh, 720px);
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 46% 46% 28px 28px;
  background: rgba(255, 255, 255, 0.42);
  box-shadow: var(--site-shadow);
}

.site-hero__visual > img,
.site-hero__placeholder {
  width: 100%;
  height: 100%;
  min-height: min(64vh, 680px);
  border-radius: 46% 46% 20px 20px;
  object-fit: cover;
}

.site-hero__placeholder {
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.78);
  background: linear-gradient(145deg, var(--site-blue), var(--site-ink));
  font-family: "Poppins", sans-serif;
  font-size: 100px;
}

.site-hero__stamp {
  position: absolute;
  right: -24px;
  bottom: 32px;
  display: grid;
  width: 148px;
  height: 148px;
  align-content: center;
  padding: 22px;
  border-radius: 50%;
  color: #fff;
  background: var(--site-coral);
  box-shadow: 0 18px 45px rgba(255, 104, 71, 0.28);
  transform: rotate(6deg);
}

.site-hero__stamp span {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.site-hero__stamp strong {
  margin-top: 5px;
  font-size: 13px;
  line-height: 1.2;
  text-transform: uppercase;
}

.site-hero__ticker {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  padding: 13px 0;
  color: #fff;
  background: var(--site-ink);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-align: center;
  white-space: nowrap;
}

.site-hero__ticker span {
  margin-inline: 18px;
  color: var(--site-coral);
}

.site-content-stream {
  padding: 132px 0 0;
  background: #fff;
}

.site-content-stream__intro {
  padding: 36px 0 30px;
  border-bottom: 1px solid var(--site-line);
}

.site-content-stream__intro h1 {
  margin: 0;
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.1;
}

.site-content-empty {
  padding: 76px 0 112px;
  color: var(--site-ink-soft);
}

.site-section-heading {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 60px;
  align-items: end;
  padding-bottom: 76px;
  border-bottom: 1px solid var(--site-line);
}

.site-section-heading__index {
  display: block;
  margin-bottom: 32px;
  color: var(--site-coral);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.site-section-heading p {
  max-width: 28ch;
  margin: 0;
  color: var(--site-ink-soft);
  font-size: 13px;
}

.site-section-heading h2 {
  font-size: clamp(44px, 5vw, 72px);
  line-height: 0.98;
}

.content-feature {
  padding: 92px 0;
  border-bottom: 1px solid var(--site-line);
}

.content-feature:nth-of-type(even) {
  background: #f5f8f7;
}

.content-feature__grid {
  display: grid;
  grid-template-columns: minmax(360px, 1fr) minmax(0, 0.92fr);
  gap: clamp(52px, 8vw, 112px);
  align-items: center;
}

.content-feature--image-left .content-feature__media {
  order: 0;
}

.content-feature:not(.content-feature--image-left) .content-feature__media {
  order: 2;
}

.content-feature__media {
  position: relative;
}

.content-feature__media img,
.content-feature__placeholder {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--site-radius);
  box-shadow: 0 24px 60px rgba(17, 39, 46, 0.12);
  object-fit: cover;
}

.content-feature__placeholder {
  display: grid;
  place-items: center;
  color: rgba(17, 39, 46, 0.26);
  background: linear-gradient(145deg, #e8f1f4, #f8f9f5);
  font-size: 52px;
}

.content-feature__body {
  max-width: 570px;
}

.content-feature h3 {
  margin-bottom: 26px;
  font-size: clamp(32px, 3.5vw, 52px);
  line-height: 1.02;
}

.content-feature .site-richtext {
  color: var(--site-ink-soft);
  font-size: 14px;
  line-height: 1.8;
}

.site-text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 6px;
  border-bottom: 1px solid currentColor;
  color: var(--site-ink);
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
}

.site-text-link--accent {
  color: var(--site-blue);
}

.site-text-link i {
  transition: transform 0.2s ease;
}

.site-text-link:hover i {
  transform: translate(3px, -3px);
}

.partner-ribbon {
  padding: 34px 0;
  border-bottom: 1px solid var(--site-line);
  background: #fff;
}

.partner-ribbon__inner {
  display: flex;
  align-items: center;
  justify-content: center;
}

.partner-ribbon__logos {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: space-around;
  gap: 40px;
}

.partner-ribbon__logos img {
  width: auto;
  max-width: 150px;
  height: 42px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.62;
  transition: filter 0.2s ease, opacity 0.2s ease;
}

.partner-ribbon__logos img:hover {
  filter: none;
  opacity: 1;
}

.content-stream-loader,
.content-pagination {
  display: flex;
  min-height: 190px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 48px 24px;
  border-bottom: 1px solid var(--site-line);
  background: #f9fbfa;
  text-align: center;
}

.content-stream-loader {
  flex-direction: column;
}

.content-stream-loader__spinner {
  display: none;
  width: 34px;
  height: 34px;
  border: 3px solid rgba(40, 100, 220, 0.16);
  border-top-color: var(--site-blue);
  border-radius: 50%;
  animation: content-stream-spin 0.8s linear infinite;
}

.content-stream-loader.is-loading .content-stream-loader__spinner {
  display: block;
}

.content-stream-loader__status {
  margin: 0;
  color: var(--site-ink-soft);
  font-size: 13px;
}

.content-stream-loader.is-loading [data-content-load-more] {
  opacity: 0.55;
  pointer-events: none;
}

.content-stream-loader.is-complete [data-content-load-more] {
  display: none;
}

.content-stream-loader.is-complete {
  min-height: 104px;
  padding-block: 30px;
}

.content-pagination {
  flex-wrap: wrap;
}

.content-pagination > span {
  min-width: 72px;
  color: var(--site-ink-soft);
  font-size: 12px;
  font-weight: 800;
}

@keyframes content-stream-spin {
  to {
    transform: rotate(360deg);
  }
}

.site-about {
  padding: 126px 0;
  color: #fff;
  background:
    radial-gradient(circle at 10% 20%, rgba(40, 100, 220, 0.36), transparent 36%),
    var(--site-ink);
}

.site-about__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 38px;
  align-items: start;
}

.site-about .site-section-heading__index,
.site-kicker--light {
  color: #9cb9ff;
}

.site-about h2 {
  max-width: 980px;
  font-size: clamp(48px, 5.4vw, 76px);
  line-height: 0.98;
}

.site-about__body {
  max-width: 980px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.85;
  scrollbar-color: rgba(255, 255, 255, 0.35) transparent;
}

.site-partners {
  padding: 112px 0;
  background: #f7f9f7;
}

.site-section-heading--compact {
  padding-bottom: 54px;
}

.site-section-heading--compact h2 {
  font-size: clamp(46px, 5vw, 68px);
}

.site-partners__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 46px;
  border-top: 1px solid var(--site-line);
  border-left: 1px solid var(--site-line);
}

.site-partners__grid > a,
.site-partners__grid > div {
  display: grid;
  min-height: 170px;
  place-items: center;
  padding: 30px;
  border-right: 1px solid var(--site-line);
  border-bottom: 1px solid var(--site-line);
  background: rgba(255, 255, 255, 0.55);
  transition: background 0.2s ease;
}

.site-partners__grid > a:hover {
  background: #fff;
}

.site-partners__grid img {
  width: auto;
  max-width: 170px;
  height: 68px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.68;
  transition: filter 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}

.site-partners__grid a:hover img {
  filter: none;
  opacity: 1;
  transform: scale(1.04);
}

.site-cta {
  padding: 34px;
  background: #f7f9f7;
}

.site-cta__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 0.8fr);
  gap: clamp(48px, 8vw, 112px);
  align-items: center;
  overflow: hidden;
  padding: clamp(56px, 8vw, 110px);
  border-radius: 34px;
  color: #fff;
  background:
    radial-gradient(circle at 90% 0, rgba(255, 255, 255, 0.24), transparent 32%),
    linear-gradient(135deg, var(--site-blue-dark), var(--site-blue));
}

.site-cta__inner::after {
  position: absolute;
  right: -90px;
  bottom: -180px;
  width: 440px;
  height: 440px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  box-shadow: 0 0 0 44px rgba(255, 255, 255, 0.05), 0 0 0 88px rgba(255, 255, 255, 0.04);
  content: "";
}

.site-cta p {
  position: relative;
  z-index: 1;
  margin: 0 0 20px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-cta h2 {
  position: relative;
  z-index: 1;
  max-width: 760px;
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1.02;
}

.site-cta__copy,
.newsletter-form {
  position: relative;
  z-index: 1;
}

.site-cta__copy > span {
  display: block;
  max-width: 56ch;
  margin-top: 26px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

.newsletter-form {
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 26px;
  background: rgba(9, 36, 89, 0.2);
  backdrop-filter: blur(12px);
}

.newsletter-form__label {
  display: block;
  margin-bottom: 10px;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}

.newsletter-form__row {
  display: flex;
  gap: 10px;
}

.newsletter-form__row input[type="email"] {
  width: 100%;
  min-width: 0;
  height: 54px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.44);
  border-radius: 999px;
  color: var(--site-ink);
  background: #fff;
  font: inherit;
  font-size: 14px;
  outline: none;
}

.newsletter-form__row input[type="email"]:focus {
  border-color: #fff;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.2);
}

.newsletter-form__consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 11px;
  line-height: 1.55;
}

.newsletter-form__consent input {
  flex: 0 0 auto;
  width: 17px;
  height: 17px;
  margin-top: 2px;
  accent-color: #fff;
}

.newsletter-form__consent a {
  color: #fff;
  font-weight: 700;
}

.newsletter-form__message {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  margin: 18px 0 0 !important;
  padding: 12px 14px;
  border-radius: 14px;
  color: #fff !important;
  background: rgba(7, 24, 64, 0.26);
  font-size: 12px !important;
  font-weight: 600;
  letter-spacing: 0 !important;
  line-height: 1.45;
  text-transform: none !important;
}

.newsletter-form__message--success {
  background: rgba(28, 117, 78, 0.48);
}

.newsletter-form__message--error {
  background: rgba(157, 45, 34, 0.48);
}

.newsletter-form__trap {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.site-button--light {
  border-color: #fff;
  color: var(--site-ink) !important;
  background: #fff;
  box-shadow: none;
}

.site-button--light:hover {
  color: var(--site-ink) !important;
  background: #eef4ff;
}

.site-button--ghost-light {
  border-color: rgba(255, 255, 255, 0.45);
  background: transparent;
  box-shadow: none;
}

.site-button--ghost-light:hover {
  background: rgba(255, 255, 255, 0.12);
}

.site-footer {
  padding: 80px 0 32px;
  color: rgba(255, 255, 255, 0.68);
  background: #0b1c21;
}

.site-footer__inner {
  display: grid;
  grid-template-columns: 0.75fr 1.2fr 0.85fr 0.75fr;
  gap: 48px;
  align-items: start;
}

.site-brand--footer img {
  max-width: 180px;
  filter: brightness(0) invert(1);
}

.site-footer p {
  max-width: 42ch;
  margin: 0;
  font-size: 13px;
}

.site-footer__links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.site-footer__links a {
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
}

.site-footer__links a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.site-footer__socials > span {
  display: block;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-footer__socials > div {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.site-footer__socials a {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: #fff;
  font-size: 18px;
  text-decoration: none;
  transition: border-color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.site-footer__socials a:hover {
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.site-footer small {
  grid-column: 1 / -1;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-page {
  min-height: 70vh;
  padding: 154px 0 100px;
  background: #fff;
}

.legal-page__article {
  max-width: 1000px;
}

.legal-page__eyebrow {
  margin: 0 0 16px;
  color: var(--site-blue);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.legal-page h1 {
  margin: 0;
  font-size: clamp(42px, 6vw, 74px);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1;
}

.legal-page__updated {
  margin: 18px 0 0;
  color: var(--site-ink-soft);
  font-size: 12px;
}

.legal-page__lead {
  margin: 48px 0 58px;
  padding: 28px 32px;
  border-left: 4px solid var(--site-blue);
  border-radius: 0 20px 20px 0;
  background: var(--site-mist);
  font-size: 18px;
  line-height: 1.7;
}

.legal-page__lead p,
.legal-page section > :last-child {
  margin-bottom: 0;
}

.legal-page section {
  margin-top: 48px;
}

.legal-page h2 {
  margin: 0 0 18px;
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.legal-page p,
.legal-page li {
  color: var(--site-ink-soft);
  font-size: 14px;
  line-height: 1.85;
}

.legal-page li + li {
  margin-top: 8px;
}

.legal-page a {
  color: var(--site-blue);
  font-weight: 600;
}

.legal-page code {
  padding: 2px 6px;
  border-radius: 6px;
  color: var(--site-ink);
  background: var(--site-mist);
  font-size: 0.9em;
}

.legal-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--site-line);
  border-radius: 18px;
}

.legal-page table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  text-align: left;
}

.legal-page th,
.legal-page td {
  min-width: 145px;
  padding: 17px 18px;
  border-bottom: 1px solid var(--site-line);
  vertical-align: top;
}

.legal-page th {
  color: var(--site-ink);
  background: var(--site-mist);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.legal-page tbody tr:last-child td {
  border-bottom: 0;
}

.legal-page__related {
  margin-top: 64px;
  padding-top: 28px;
  border-top: 1px solid var(--site-line);
}

.legal-page__related a {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  text-decoration: none;
}

.newsletter-result > i {
  display: grid;
  width: 58px;
  height: 58px;
  margin-bottom: 28px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--site-blue);
  font-size: 28px;
}

.newsletter-result > p:not(.legal-page__eyebrow) {
  max-width: 65ch;
  margin: 30px 0;
}

.site-footer--legal {
  padding: 32px 0;
}

.site-footer__legal-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-footer__legal-row small {
  grid-column: auto;
  padding-top: 0;
  border-top: 0;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer__legal-row > div {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.site-footer__legal-row a {
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  text-decoration: none;
}

[data-reveal] {
  opacity: 1;
  transform: none;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1080px) {
  .site-nav {
    gap: 15px;
  }

  .site-nav > a:not(.site-nav__profile):not(.site-button) {
    display: none;
  }

  .site-hero__grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
    gap: 48px;
  }

  .site-hero h1 {
    font-size: clamp(48px, 6vw, 72px);
  }

  .site-partners__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .site-container {
    width: min(100% - 32px, 1380px);
  }

  .site-header {
    padding: 12px 0;
    background: rgba(249, 251, 250, 0.9);
    backdrop-filter: blur(16px);
  }

  .site-brand img {
    max-width: 150px;
    height: 38px;
  }

  .site-menu-toggle {
    display: block;
  }

  .site-menu-toggle.is-open span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .site-menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
  }

  .site-menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 16px;
    left: 16px;
    display: none;
    align-items: stretch;
    padding: 22px;
    border: 1px solid var(--site-line);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--site-shadow);
  }

  .site-nav.is-open {
    display: flex;
    flex-direction: column;
  }

  .site-nav > a:not(.site-nav__profile):not(.site-button) {
    display: block;
  }

  .site-nav > a {
    padding: 10px 2px;
  }

  .site-nav__profile {
    padding-left: 2px;
    border-left: 0;
  }

  .site-nav .site-button {
    margin-top: 6px;
    padding: 12px 18px;
  }

  .site-hero {
    min-height: auto;
    padding: 116px 0 72px;
  }

  .site-hero__grid,
  .content-feature__grid,
  .site-about__grid,
  .site-section-heading {
    grid-template-columns: 1fr;
  }

  .site-hero__grid {
    gap: 48px;
  }

  .site-hero__visual {
    min-height: 520px;
    border-radius: 180px 180px 24px 24px;
  }

  .site-hero__visual > img,
  .site-hero__placeholder {
    min-height: 488px;
    border-radius: 170px 170px 17px 17px;
  }

  .site-hero__stamp {
    right: 8px;
  }

  .site-content-stream {
    padding-top: 96px;
  }

  .site-section-heading {
    gap: 20px;
    padding-bottom: 50px;
  }

  .site-section-heading__index {
    margin-bottom: 18px;
  }

  .content-feature {
    padding: 72px 0;
  }

  .content-feature__grid {
    gap: 42px;
  }

  .content-feature:not(.content-feature--image-left) .content-feature__media {
    order: 0;
  }

  .content-feature__body {
    max-width: none;
  }

  .partner-ribbon__inner {
    display: block;
  }

  .partner-ribbon__logos {
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 8px;
  }

  .site-about {
    padding: 88px 0;
  }

  .site-about__grid {
    gap: 32px;
  }

  .site-about__body {
    max-height: none;
    padding-right: 0;
    overflow: visible;
  }

  .site-partners__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-footer__inner {
    grid-template-columns: 1fr 1fr;
  }

  .site-cta__inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .site-container {
    width: min(100% - 24px, 1380px);
  }

  .site-hero h1 {
    font-size: clamp(44px, 14vw, 62px);
  }

  .site-hero__text,
  .content-feature .site-richtext,
  .site-about__body {
    font-size: 13px;
  }

  .site-hero__actions,
  .site-hero__actions .site-button {
    width: 100%;
  }

  .site-hero__visual {
    min-height: 410px;
    padding: 10px;
  }

  .site-hero__visual > img,
  .site-hero__placeholder {
    min-height: 390px;
  }

  .site-hero__stamp {
    right: -4px;
    bottom: 16px;
    width: 120px;
    height: 120px;
    padding: 17px;
  }

  .site-section-heading h2,
  .site-about h2 {
    font-size: clamp(40px, 12vw, 54px);
  }

  .content-feature h3 {
    font-size: 32px;
  }

  .content-feature__media img,
  .content-feature__placeholder {
    border-radius: 20px;
  }

  .content-pagination {
    align-items: stretch;
    flex-direction: column;
  }

  .content-pagination .site-button,
  .content-stream-loader .site-button {
    width: 100%;
  }

  .site-partners {
    padding: 82px 0;
  }

  .site-partners__grid {
    grid-template-columns: 1fr 1fr;
  }

  .site-partners__grid > a,
  .site-partners__grid > div {
    min-height: 125px;
    padding: 18px;
  }

  .site-partners__grid img {
    max-width: 120px;
    height: 48px;
  }

  .site-cta {
    padding: 12px;
  }

  .site-cta__inner {
    padding: 52px 28px;
    border-radius: 26px;
  }

  .site-cta h2 {
    font-size: clamp(38px, 11vw, 52px);
  }

  .newsletter-form__row,
  .newsletter-form__row .site-button {
    width: 100%;
  }

  .newsletter-form__row {
    align-items: stretch;
    flex-direction: column;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .legal-page {
    padding: 126px 0 72px;
  }

  .legal-page__lead {
    margin: 36px 0 44px;
    padding: 22px;
    font-size: 16px;
  }

  .site-footer__legal-row {
    align-items: flex-start;
    flex-direction: column;
  }
}

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

  .content-stream-loader__spinner {
    animation: none;
  }

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