@font-face {
  font-family: 'Onest Variable';
  font-style: normal;
  font-display: swap;
  font-weight: 100 900;
  src: url('fonts/onest-cyrillic-ext-wght-normal.woff2') format('woff2-variations');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}

@font-face {
  font-family: 'Onest Variable';
  font-style: normal;
  font-display: swap;
  font-weight: 100 900;
  src: url('fonts/onest-cyrillic-wght-normal.woff2') format('woff2-variations');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: 'Onest Variable';
  font-style: normal;
  font-display: swap;
  font-weight: 100 900;
  src: url('fonts/onest-latin-ext-wght-normal.woff2') format('woff2-variations');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: 'Onest Variable';
  font-style: normal;
  font-display: swap;
  font-weight: 100 900;
  src: url('fonts/onest-latin-wght-normal.woff2') format('woff2-variations');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --page: #f5f5f5;
  --paper: #f4f4f3;
  --surface: #ffffff;
  --ink: #0b0b0b;
  --ink-soft: #090909;
  --muted: #858585;
  --muted-2: #525252;
  --muted-3: #585858;
  --teal: #11a59f;
  --poster-red: #f04057;
  --teal-dark: #087f7a;
  --teal-deep: #075f5b;
  --line: #d8dcdb;
  --mint: #dcebea;
  --mint-2: #d9ebea;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --header-h: 52px;
  --u: 1px;
  color-scheme: light;
}

@media (min-width: 1200px) {
  :root {
    --u: 0.0757575758vw;
  }
}

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

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  min-height: 100%;
  overflow-x: hidden;
  background: var(--page);
  color: var(--ink);
  font-family: 'Onest Variable', Onest, Arial, sans-serif;
  font-weight: 430;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open,
body.cik-notice-open {
  overflow: hidden;
}

::selection {
  background: #0dc4bd47;
  color: #021615;
}

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
  border: 0;
}

a {
  color: inherit;
}

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

h1,
h2,
h3,
p {
  margin: 0;
}

#root {
  min-height: 100dvh;
}

.page {
  position: relative;
  isolation: isolate;
  background: var(--page);
}

.page > main {
  position: relative;
  z-index: 1;
}

.page__grain {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.18;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
}

.reveal {
  /* visible by default so the page never depends on JS to be readable */
}

.reveal.is-pending {
  opacity: 0;
  transform: translate3d(0, 28px, 0);
}

.reveal.is-in {
  opacity: 1;
  transform: none;
  transition:
    opacity 0.9s var(--ease-out) var(--reveal-delay, 0ms),
    transform 0.9s var(--ease-out) var(--reveal-delay, 0ms);
}

.page-section {
  position: relative;
  scroll-margin-top: 24px;
}

.section-heading {
  position: relative;
  z-index: 2;
  text-align: center;
}

.section-heading > p,
.section-kicker {
  margin: 0 0 calc(12 * var(--u));
  color: #a0a2a1;
  font-size: 14px;
  font-weight: 450;
}

.section-heading h2 {
  max-width: 830px;
  margin: 0 auto;
  color: #080808;
  font-size: 42px;
  font-weight: 735;
  line-height: 1.02;
  letter-spacing: -0.035em;
}

.section-heading__copy {
  max-width: 760px;
  margin: 20px auto 0;
  color: var(--muted-2);
  font-size: 16px;
  font-weight: 420;
  line-height: 1.35;
}

@media (max-width: 767px) {
  .section-heading h2 {
    font-size: clamp(31px, 9vw, 42px);
  }

  .section-heading__copy {
    font-size: 14px;
  }
}

@media (min-width: 1200px) {
  .section-heading > p,
  .section-kicker {
    font-size: calc(14 * var(--u));
  }

  .section-heading h2 {
    max-width: calc(830 * var(--u));
    font-size: calc(42 * var(--u));
  }

  .section-heading__copy {
    font-size: calc(15.5 * var(--u));
  }
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 720;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  transition:
    background-color 0.18s ease,
    color 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease;
}

.button--primary {
  border: 1px solid var(--teal);
  color: #fff;
  background: var(--teal);
}

.button--primary:hover {
  border-color: var(--teal-dark);
  background: var(--teal-dark);
  box-shadow: 0 10px 28px #2f858230;
}

.button--light {
  min-height: 52px;
  padding: 0 28px;
  color: var(--teal-deep);
  background: #fff;
  font-size: 15px;
}

.button--light:hover {
  background: #f4f4f3;
  box-shadow: 0 14px 34px #4da8a540;
}

.button.cik-exit {
  flex-direction: column;
  gap: 3px;
  min-height: 0;
  padding: 14px 28px;
  white-space: nowrap;
  text-align: center;
  text-transform: none;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.cik-exit__main {
  font-size: 15px;
  font-weight: 720;
}

.cik-exit__sub {
  font-size: 12px;
  font-weight: 480;
  letter-spacing: -0.01em;
  opacity: 0.72;
}

/* ——— Header ——— */

.site-header {
  position: absolute;
  z-index: 20;
  top: 16px;
  right: 16px;
  left: 16px;
  display: flex;
  align-items: center;
  height: 52px;
  min-height: 44px;
  padding: 0 8px 0 18px;
  border-radius: 28px;
  background: #fffffffa;
  box-shadow: 0 5px 24px #112c2b06;
}

.site-header__logo {
  display: flex;
  align-items: center;
  flex: 0 0 154px;
  width: 154px;
  height: 42px;
  text-decoration: none;
}

.brand-logo {
  position: relative;
  display: block;
  width: 149px;
  height: 34px;
  overflow: visible;
}

.brand-logo__vector {
  position: absolute;
  display: block;
  max-width: none;
  pointer-events: none;
}

.brand-logo__vector--left {
  top: 3.35%;
  left: 0.75%;
  width: 92.97%;
  height: 70.56%;
}

.brand-logo__vector--right {
  top: 18.27%;
  left: 49.8%;
  width: 49.46%;
  height: 78.4%;
}

@media (max-width: 767px) {
  .site-header__logo,
  .brand-logo {
    width: 124px;
    height: 30px;
  }

  .site-header__logo {
    flex-basis: 124px;
  }
}

.site-header__nav {
  display: none;
}

.site-header__actions {
  display: none;
}

.site-header__menu {
  position: relative;
  z-index: 3;
  display: grid;
  width: 44px;
  height: 44px;
  margin-left: auto;
  padding: 12px;
  border-radius: 50%;
  background: #eff4f3;
}

.site-header__menu span {
  position: absolute;
  left: 13px;
  width: 18px;
  height: 2px;
  border-radius: 99px;
  background: #151515;
  transition:
    transform 0.22s var(--ease-out),
    opacity 0.16s ease;
}

.site-header__menu span:nth-child(1) {
  top: 14px;
}

.site-header__menu span:nth-child(2) {
  top: 21px;
}

.site-header__menu span:nth-child(3) {
  top: 28px;
}

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

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

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

.site-header__nav {
  position: absolute;
  top: 66px;
  right: 0;
  left: 0;
  display: grid;
  height: auto;
  max-height: 0;
  gap: 0;
  margin: 0;
  padding: 0 16px;
  overflow: hidden;
  border-radius: 24px;
  background: #fffffffa;
  box-shadow: 0 18px 50px #1239361f;
  opacity: 0;
  transform: translateY(-8px);
  transition:
    max-height 0.32s var(--ease-out),
    padding 0.32s var(--ease-out),
    opacity 0.18s ease,
    transform 0.32s var(--ease-out);
}

.site-header__nav.is-open {
  max-height: 460px;
  padding: 12px 16px 16px;
  opacity: 1;
  transform: none;
}

.site-header__nav a {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 0 12px;
  border-bottom: 1px solid #edf0ef;
  color: #313131e6;
  font-size: 15px;
  font-weight: 400;
  text-decoration: none;
}

.site-header__nav a:last-child {
  border-bottom: 0;
}

.site-header__nav .site-header__nav-idea {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  min-height: 52px;
  margin-top: 8px;
  padding: 10px 14px;
  border: 0;
  border-radius: 16px;
  color: #fff;
  background: var(--teal);
  font-weight: 700;
  font-size: 14px;
  line-height: 1.15;
  text-align: center;
  text-transform: none;
  letter-spacing: -0.015em;
  white-space: nowrap;
}

.site-header__nav .site-header__nav-idea .cik-exit__sub {
  font-size: 11px;
  font-weight: 500;
  opacity: 0.8;
}

.site-header__nav .site-header__nav-idea:hover {
  background: var(--teal-dark);
}

@media (min-width: 1200px) {
  .site-header {
    top: calc(30 * var(--u));
    right: calc(130 * var(--u));
    left: calc(130 * var(--u));
    height: auto;
    min-height: calc(52 * var(--u));
    padding: calc(6 * var(--u)) calc(8 * var(--u)) calc(6 * var(--u)) calc(24 * var(--u));
    border-radius: calc(28 * var(--u));
  }

  .site-header__logo {
    flex-basis: calc(158 * var(--u));
    width: calc(149 * var(--u));
    height: calc(34 * var(--u));
  }

  .brand-logo {
    width: calc(149 * var(--u));
    height: calc(34 * var(--u));
  }

  .site-header__menu {
    display: none;
  }

  .site-header__nav {
    position: static;
    display: flex;
    align-items: center;
    max-height: none;
    gap: calc(24 * var(--u));
    margin: 0;
    margin-left: calc(24 * var(--u));
    padding: 0;
    overflow: visible;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    transform: none;
    flex: 1;
  }

  .site-header__nav a {
    position: relative;
    min-height: 0;
    padding: 0;
    border: 0;
    color: #505050;
    font-size: calc(14 * var(--u));
    font-weight: 430;
    white-space: nowrap;
    transition: color 0.18s ease;
  }

  .site-header__nav a:hover,
  .site-header__nav a:focus-visible {
    color: var(--teal-dark);
  }

  .site-header__nav .site-header__nav-idea {
    display: none;
  }

  .site-header__actions {
    display: flex;
    align-items: center;
    align-self: center;
    margin-left: auto;
  }

  .site-header__idea {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1px;
    height: auto;
    min-height: calc(40 * var(--u));
    min-width: 0;
    max-width: none;
    padding: calc(6 * var(--u)) calc(18 * var(--u));
    border-radius: 999px;
    color: #fff;
    background: var(--teal);
    font-size: calc(13 * var(--u));
    font-weight: 710;
    line-height: 1.1;
    text-align: center;
    text-transform: none;
    letter-spacing: -0.015em;
    text-decoration: none;
    white-space: nowrap;
    transition: background-color 0.18s ease;
  }

  .site-header__idea .cik-exit__main {
    font-size: calc(13 * var(--u));
  }

  .site-header__idea .cik-exit__sub {
    font-size: calc(10 * var(--u));
    font-weight: 500;
    opacity: 0.78;
  }

  .site-header__idea:hover {
    background: var(--teal-dark);
  }
}

/* ——— Hero ——— */

.hero {
  position: relative;
  min-height: 100dvh;
  padding: 92px 20px 0;
  overflow: hidden;
  color: #fff;
  background: #0a3f3c;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 40%;
}

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(6, 40, 38, 0.55) 0%, rgba(6, 40, 38, 0.18) 48%, rgba(6, 40, 38, 0.08) 100%);
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
}

.hero-copy {
  position: relative;
  z-index: 3;
  padding: 8px 4px 0;
}

@media (max-width: 1199px) {
  .hero-copy,
  .hero-copy .reveal {
    display: contents;
  }

  .hero-copy h1 {
    order: 1;
  }

  .hero-poster {
    order: 2;
  }

  .hero-copy__lead {
    order: 3;
  }

  .hero-copy__more {
    order: 4;
    margin-bottom: 28px;
  }

  .hero-copy h1,
  .hero-copy__lead,
  .hero-copy__more {
    padding-left: 4px;
    padding-right: 4px;
  }
}

.hero-copy h1 {
  color: #fff;
  font-size: clamp(32px, 8.4vw, 48px);
  font-weight: 790;
  line-height: 1.04;
  letter-spacing: -0.03em;
}

.hero-copy__lead {
  max-width: 34em;
  margin-top: 16px;
  color: #fff;
  font-size: 16px;
  font-weight: 520;
  line-height: 1.22;
}

.hero-copy__more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
}

.hero-copy__more span {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  font-size: 16px;
  animation: bob 1.8s var(--ease-out) infinite;
}

@keyframes bob {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(5px);
  }
}

.hero-poster {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 420px;
  align-items: end;
  justify-items: center;
  margin: 0 -20px;
}

.hero-poster__photo {
  display: block;
  width: min(100%, 520px);
  height: auto;
  filter: drop-shadow(0 18px 40px rgba(4, 28, 26, 0.35));
}

.hero-poster__name {
  position: absolute;
  z-index: 4;
  left: 20px;
  bottom: 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: 0;
}

.hero-poster__first {
  margin: 0 0 6px 4px;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.hero-poster__last {
  display: inline-block;
  padding: 0.22em 0.58em 0.18em 0.32em;
  color: #fff;
  background: var(--poster-red);
  clip-path: polygon(0 0, calc(100% - 0.62em) 0, 100% 100%, 0 100%);
  font-size: clamp(42px, 15vw, 68px);
  font-weight: 820;
  line-height: 1.08;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

@media (min-width: 768px) {
  .hero-copy h1 {
    font-size: clamp(40px, 5.4vw, 56px);
  }

  .hero-copy__lead {
    font-size: 18px;
  }

  .hero-poster {
    min-height: 520px;
  }

  .hero-poster__first {
    font-size: 20px;
  }

  .hero-poster__last {
    font-size: clamp(64px, 10vw, 92px);
  }
}

@media (min-width: 1200px) {
  .hero {
    min-height: 100dvh;
    padding: 0;
  }

  .hero__grid {
    height: max(100dvh, 760px);
    display: block;
  }

  .hero-copy {
    position: absolute;
    top: calc(150 * var(--u));
    bottom: calc(210 * var(--u));
    left: calc(130 * var(--u));
    width: calc(560 * var(--u));
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .hero-copy h1 {
    font-size: calc(42 * var(--u));
    font-weight: 790;
    line-height: 1.04;
    letter-spacing: -0.03em;
  }

  .hero-copy__lead {
    margin-top: calc(22 * var(--u));
    font-size: calc(18 * var(--u));
    font-weight: 520;
    line-height: 1.2;
  }

  .hero-copy__more {
    margin-top: calc(32 * var(--u));
    font-size: calc(16 * var(--u));
  }

  .hero-poster {
    position: absolute;
    z-index: 1;
    top: calc(70 * var(--u));
    right: calc(40 * var(--u));
    bottom: 0;
    left: calc(520 * var(--u));
    display: block;
    min-height: 0;
    margin: 0;
  }

  .hero-poster__photo {
    position: absolute;
    right: 0;
    bottom: 0;
    width: auto;
    height: 108%;
    max-width: none;
  }

  .hero-poster__name {
    position: absolute;
    left: calc(-390 * var(--u));
    bottom: calc(48 * var(--u));
    width: max-content;
  }

  .hero-poster__first {
    margin: 0 0 calc(8 * var(--u)) calc(8 * var(--u));
    font-size: calc(22 * var(--u));
  }

  .hero-poster__last {
    font-size: calc(88 * var(--u));
    padding: 0.24em 0.52em 0.18em 0.3em;
  }
}

/* ——— Bio ——— */

.bio {
  padding: 72px 20px 80px;
}

.bio__layout {
  display: grid;
  gap: 36px;
}

.bio__heading h2 {
  max-width: 11em;
  color: #080808;
  font-size: clamp(32px, 8vw, 48px);
  font-weight: 760;
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.bio__facts {
  display: grid;
  gap: 0;
  max-width: 36em;
}

.bio__facts p {
  color: #2c2c2c;
  font-size: 18px;
  font-weight: 430;
  letter-spacing: -0.02em;
  line-height: 1.4;
}

.bio__facts p + p {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #e5eceb;
}

@media (min-width: 768px) {
  .bio__layout {
    grid-template-columns: minmax(240px, 0.86fr) minmax(280px, 1.14fr);
    align-items: center;
    gap: 40px 56px;
  }

  .bio__facts p {
    font-size: 20px;
  }

  .bio__facts p + p {
    margin-top: 18px;
    padding-top: 18px;
  }
}

@media (min-width: 1200px) {
  .bio {
    padding: calc(100 * var(--u)) calc(130 * var(--u)) calc(110 * var(--u));
  }

  .bio__layout {
    gap: calc(48 * var(--u)) calc(64 * var(--u));
  }

  .bio__heading h2 {
    font-size: calc(48 * var(--u));
  }

  .bio__facts p {
    font-size: calc(20 * var(--u));
  }

  .bio__facts p + p {
    margin-top: calc(20 * var(--u));
    padding-top: calc(20 * var(--u));
  }
}

/* ——— Results ——— */

.results-section {
  padding: 64px 16px 72px;
  border-radius: 36px;
  background: var(--mint);
}

.stats {
  display: grid;
  gap: 12px;
  margin: 32px 0 28px;
}

.stats__item {
  padding: 20px 22px 18px;
  border-radius: 24px;
  background: #fff;
}

.stats__item strong {
  display: block;
  color: var(--teal);
  font-size: 32px;
  font-weight: 780;
  letter-spacing: -0.045em;
  line-height: 1;
}

.stats__item span {
  display: block;
  margin-top: 8px;
  color: #494949;
  font-size: 14px;
  font-weight: 430;
  line-height: 1.3;
}

.results-accordion {
  display: grid;
  gap: 10px;
}

.result-row {
  overflow: hidden;
  border-radius: 22px;
  background: #fff;
}

.result-row__trigger {
  display: grid;
  grid-template-columns: 28px 1fr 32px;
  gap: 9px;
  align-items: center;
  width: 100%;
  min-height: 62px;
  padding: 12px 14px;
  color: #0b0b0b;
  text-align: left;
  background: transparent;
}

.result-row__index {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: #11a59f;
  font-size: 9px;
  font-weight: 750;
}

.result-row__title {
  font-size: 15px;
  font-weight: 650;
  line-height: 1.1;
}

.result-row__icon {
  position: relative;
  display: block;
  width: 28px;
  height: 28px;
  margin-left: auto;
  border: 1.5px solid #11a59f;
  border-radius: 50%;
}

.result-row__icon i {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 11px;
  height: 1.5px;
  border-radius: 99px;
  background: #11a59f;
  transform: translate(-50%, -50%);
  transition:
    transform 0.26s var(--ease-out),
    opacity 0.18s ease;
}

.result-row__icon i:last-child {
  transform: translate(-50%, -50%) rotate(90deg);
}

.result-row.is-open .result-row__icon i:last-child {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(0);
}

.result-row__content {
  overflow: hidden;
  height: 0;
  transition: height 0.42s var(--ease-out);
}

.result-row__content > div {
  padding: 0 16px 22px 51px;
}

.result-row__content p {
  max-width: 900px;
  margin: 0;
  color: #585858;
  font-size: 14px;
  line-height: 1.45;
}

@media (min-width: 768px) {
  .stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
  }

  .result-row {
    border-radius: 28px;
  }

  .result-row__trigger {
    grid-template-columns: 36px 1fr 36px;
    gap: 12px;
    min-height: 64px;
    padding: 13px 20px;
  }

  .result-row__index {
    width: 26px;
    height: 26px;
    font-size: 10px;
  }

  .result-row__title {
    font-size: 18px;
  }

  .result-row__icon {
    width: 30px;
    height: 30px;
    border-width: 1.5px;
  }

  .result-row__content > div {
    padding: 0 68px 26px;
  }

  .result-row__content p {
    margin-bottom: 12px;
    font-size: 15px;
  }
}

@media (min-width: 1200px) {
  .results-section {
    margin: 0 calc(4 * var(--u));
    padding: calc(84 * var(--u)) calc(126 * var(--u)) calc(92 * var(--u));
    border-radius: calc(52 * var(--u));
  }

  .section-heading--results h2 {
    font-size: calc(38 * var(--u));
  }

  .stats {
    gap: calc(18 * var(--u));
    margin: calc(42 * var(--u)) 0 calc(32 * var(--u));
  }

  .stats__item {
    padding: calc(26 * var(--u)) calc(28 * var(--u));
    border-radius: calc(28 * var(--u));
  }

  .stats__item strong {
    font-size: calc(40 * var(--u));
  }

  .stats__item span {
    font-size: calc(15 * var(--u));
  }

  .results-accordion {
    gap: calc(12 * var(--u));
  }

  .result-row {
    border-radius: calc(28 * var(--u));
  }

  .result-row__trigger {
    grid-template-columns: calc(38 * var(--u)) 1fr calc(36 * var(--u));
    gap: calc(10 * var(--u));
    min-height: calc(58 * var(--u));
    padding: calc(11 * var(--u)) calc(21 * var(--u));
  }

  .result-row__index {
    width: calc(25 * var(--u));
    height: calc(25 * var(--u));
    font-size: calc(10 * var(--u));
  }

  .result-row__title {
    font-size: calc(19 * var(--u));
    line-height: 1.1;
  }

  .result-row__icon {
    width: calc(28 * var(--u));
    height: calc(28 * var(--u));
    border-width: calc(1.5 * var(--u));
  }

  .result-row__icon i {
    width: calc(10 * var(--u));
    height: calc(1.5 * var(--u));
  }

  .result-row__content > div {
    padding: 0 calc(75 * var(--u)) calc(25 * var(--u)) calc(69 * var(--u));
  }

  .result-row__content p {
    max-width: calc(980 * var(--u));
    margin: 0 0 calc(10 * var(--u));
    font-size: calc(15 * var(--u));
    line-height: 1.38;
  }

  .result-row__content p:last-child {
    margin-bottom: 0;
  }
}

/* ——— Against ——— */

.against {
  position: relative;
  overflow: hidden;
  margin-top: -1px;
  padding: 88px 24px 96px;
  border-radius: 0 0 36px 36px;
  color: #fff;
  background: linear-gradient(115deg, #2f7f7c, #4caeaa 54%, #63d3cc);
}

.against__ghost {
  position: absolute;
  right: -4%;
  bottom: -8%;
  margin: 0;
  color: #fff;
  font-size: clamp(80px, 22vw, 220px);
  font-weight: 800;
  letter-spacing: -0.07em;
  line-height: 0.8;
  opacity: 0.08;
  text-transform: uppercase;
  pointer-events: none;
  user-select: none;
}

.against .section-kicker {
  color: #ffffffc7;
}

.against h2 {
  max-width: 16ch;
  color: #fff;
  font-size: clamp(32px, 6vw, 48px);
  font-weight: 760;
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.against__copy {
  max-width: 36em;
  margin-top: 18px;
  color: #fffffff0;
  font-size: 17px;
  font-weight: 420;
  line-height: 1.42;
}

.against__question {
  margin-top: 28px;
  color: #fff;
  font-size: clamp(22px, 4vw, 28px);
  font-weight: 600;
  letter-spacing: -0.03em;
}

.against__slogan {
  margin-top: 14px;
  color: #fff;
  font-size: clamp(26px, 5vw, 40px);
  font-weight: 780;
  letter-spacing: -0.045em;
  line-height: 1.05;
}

@media (min-width: 1200px) {
  .against {
    margin: calc(28 * var(--u)) calc(4 * var(--u)) 0;
    padding: calc(110 * var(--u)) calc(130 * var(--u)) calc(120 * var(--u));
    border-radius: calc(52 * var(--u));
  }

  .against h2 {
    font-size: calc(48 * var(--u));
  }

  .against__copy {
    font-size: calc(18 * var(--u));
  }
}

/* ——— Promises ——— */

.will {
  padding: 80px 20px 88px;
}

.will__grid {
  display: grid;
  gap: 14px;
  margin-top: 36px;
}

.program-card {
  position: relative;
  display: flex;
  min-height: 240px;
  flex-direction: column;
  align-items: flex-start;
  padding: 26px 24px 24px;
  overflow: hidden;
  border: 1px solid rgba(77, 168, 165, 0.045);
  border-radius: 32px;
  background: #fff;
  box-shadow: 0 18px 45px #23484609;
  transition:
    transform 0.35s var(--ease-out),
    box-shadow 0.35s var(--ease-out);
}

.program-card.is-in:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 74px #0743401a;
}

.program-card__dots {
  display: flex;
  gap: 5px;
  margin-bottom: 16px;
}

.program-card__dots span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
}

.program-card h3 {
  max-width: 18ch;
  color: #080808;
  font-size: 23px;
  font-weight: 720;
  line-height: 0.98;
  letter-spacing: -0.025em;
}

.program-card p {
  position: relative;
  z-index: 1;
  margin-top: 12px;
  color: #505050;
  font-size: 14px;
  font-weight: 420;
  line-height: 1.12;
}

.program-card__number {
  position: absolute;
  right: 12px;
  bottom: -18px;
  color: #eaf3f2;
  font-size: 155px;
  font-weight: 720;
  letter-spacing: -0.07em;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

@media (min-width: 768px) {
  .will__grid {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }

  .program-card h3 {
    font-size: 25px;
    line-height: 1;
  }

  .program-card p {
    font-size: 15px;
    line-height: 1.35;
  }

  .program-card__number {
    font-size: 180px;
  }
}

@media (min-width: 1200px) {
  .will {
    padding: calc(100 * var(--u)) calc(130 * var(--u)) calc(96 * var(--u));
  }

  .will__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: calc(18 * var(--u));
    margin-top: calc(48 * var(--u));
  }

  .program-card {
    min-height: calc(286 * var(--u));
    padding: calc(30 * var(--u));
    border-radius: calc(36 * var(--u));
  }

  .program-card h3 {
    font-size: calc(25 * var(--u));
    line-height: 0.98;
    letter-spacing: -0.025em;
  }

  .program-card p {
    font-size: calc(14.5 * var(--u));
    line-height: 1.12;
  }

  .program-card__number {
    font-size: calc(170 * var(--u));
    font-weight: 720;
  }
}

/* ——— Year ——— */

.year {
  padding: 24px 16px 40px;
}

.year__inner {
  padding: 56px 24px 60px;
  border-radius: 36px;
  background: #fff;
  box-shadow: 0 20px 60px #0743400b;
}

.year h2 {
  max-width: 14ch;
  color: #080808;
  font-size: clamp(32px, 5vw, 42px);
  font-weight: 735;
  letter-spacing: -0.035em;
  line-height: 1.04;
}

.year__lead {
  max-width: 34em;
  margin-top: 16px;
  color: #525252;
  font-size: 16px;
  line-height: 1.4;
}

.year__marks {
  display: grid;
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.year__marks li {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 56px;
  padding: 0 16px;
  border-radius: 18px;
  background: #f1f7f6;
  color: #0b0b0b;
  font-size: 16px;
  font-weight: 560;
}

.year__marks span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--teal);
  font-size: 11px;
  font-weight: 700;
}

.year__close {
  margin-top: 24px;
  color: var(--teal-dark);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.03em;
}

@media (min-width: 768px) {
  .year__marks {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1200px) {
  .year {
    padding: 0 calc(130 * var(--u)) calc(40 * var(--u));
  }

  .year__inner {
    padding: calc(72 * var(--u)) calc(72 * var(--u)) calc(76 * var(--u));
    border-radius: calc(48 * var(--u));
  }

  .year h2 {
    font-size: calc(42 * var(--u));
  }

  .year__lead {
    font-size: calc(17 * var(--u));
  }
}

/* ——— Personal ——— */

.personal {
  padding: 24px 16px 40px;
}

.personal__layout {
  display: grid;
  grid-template-columns: 1fr;
  overflow: hidden;
  isolation: isolate;
  border-radius: 36px;
  background: #fff;
  box-shadow: 0 20px 60px #0743400b;
}

.personal__photo {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #1c2c26;
}

.personal__photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: 50% 28%;
}

.personal__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px 24px 32px;
}

.personal__copy .section-kicker {
  color: #a0a2a1;
}

.personal__copy h2 {
  max-width: 10em;
  color: #080808;
  font-size: clamp(32px, 7vw, 48px);
  font-weight: 760;
  letter-spacing: -0.045em;
  line-height: 1.04;
}

.personal__facts {
  display: grid;
  gap: 14px;
  max-width: 22em;
  margin: 22px 0 0;
  padding: 22px 0 0;
  border-top: 1px solid #e5eceb;
  list-style: none;
}

.personal__facts li {
  color: #3f4847;
  font-size: 18px;
  font-weight: 450;
  letter-spacing: -0.02em;
  line-height: 1.35;
}

@media (min-width: 768px) {
  .personal__layout {
    grid-template-columns: minmax(280px, 38%) minmax(0, 1fr);
    align-items: stretch;
    min-height: 400px;
  }

  .personal__photo {
    aspect-ratio: unset;
    height: 100%;
    min-height: 0;
    align-self: stretch;
  }

  .personal__copy {
    padding: 40px 40px 40px 36px;
  }
}

@media (min-width: 1200px) {
  .personal {
    padding: 0 calc(130 * var(--u)) calc(40 * var(--u));
  }

  .personal__layout {
    grid-template-columns: minmax(340px, 36%) minmax(0, 1fr);
    min-height: calc(460 * var(--u));
    border-radius: calc(48 * var(--u));
  }

  .personal__copy {
    padding: calc(56 * var(--u)) calc(64 * var(--u)) calc(56 * var(--u)) calc(48 * var(--u));
  }

  .personal__copy h2 {
    font-size: calc(46 * var(--u));
  }

  .personal__facts li {
    font-size: calc(19 * var(--u));
  }
}

/* ——— Finale ——— */

.finale {
  position: relative;
  display: grid;
  gap: 36px;
  padding: 56px 24px 120px;
  overflow: hidden;
  border-radius: 36px 36px 0 0;
  color: #fff;
  background: linear-gradient(115deg, #2f7f7c, #4caeaa 54%, #63d3cc);
}

.finale__dots {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.22;
}

.finale__dots img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.finale__profile,
.finale__cta {
  position: relative;
  z-index: 2;
}

.finale__portrait {
  width: 148px;
  height: 148px;
  margin-bottom: 22px;
  overflow: hidden;
  border-radius: 50%;
  border: 3px solid #ffffff4d;
  background: #0b6763;
}

.finale__portrait img {
  width: 100%;
  height: 118%;
  object-fit: cover;
  object-position: 50% 8%;
}

.finale__profile h2 {
  font-size: 34px;
  font-weight: 780;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

@media (min-width: 768px) and (max-width: 1199px) {
  .finale__profile h2 {
    font-size: clamp(34px, 4vw, 48px);
  }
}

.finale__profile p {
  margin-top: 8px;
  color: #fffffff0;
  font-size: 16px;
  font-weight: 430;
  line-height: 1.35;
}

.finale__date {
  color: #ffffffd1;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.finale__slogan {
  max-width: 10em;
  margin: 12px 0 28px;
  font-size: clamp(32px, 8vw, 48px);
  font-weight: 780;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.campaign-disclaimer {
  position: relative;
  z-index: 2;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  color: #ffffffd1;
  font-size: 10px;
  line-height: 1.4;
  letter-spacing: 0.002em;
  overflow-wrap: anywhere;
}

.campaign-disclaimer p {
  margin: 0;
}

@media (min-width: 1200px) {
  .finale {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: calc(54 * var(--u));
    min-height: calc(610 * var(--u));
    margin-top: calc(12 * var(--u));
    padding: calc(72 * var(--u)) calc(130 * var(--u)) calc(108 * var(--u));
    border-radius: calc(52 * var(--u)) calc(52 * var(--u)) 0 0;
  }

  .finale__portrait {
    width: calc(176 * var(--u));
    height: calc(176 * var(--u));
  }

  .finale__profile h2 {
    font-size: calc(36 * var(--u));
  }

  .finale__cta {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
  }

  .finale__slogan {
    font-size: calc(48 * var(--u));
  }

  .campaign-disclaimer {
    position: absolute;
    right: calc(130 * var(--u));
    bottom: calc(28 * var(--u));
    left: calc(130 * var(--u));
    font-size: clamp(9px, calc(9.5 * var(--u)), 11px);
  }
}

.cik-notice {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 24px;
  background: #031716d8;
  outline: none;
}

.cik-notice[hidden] {
  display: none;
}

.cik-notice__card {
  width: min(100%, 520px);
  padding: 28px 28px 22px;
  overflow: hidden;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 24px 70px #02161566;
}

.cik-notice__card p {
  color: #0b0b0b;
  font-size: clamp(18px, 3.2vw, 22px);
  font-weight: 560;
  letter-spacing: -0.03em;
  line-height: 1.28;
}

.cik-notice__bar {
  width: 100%;
  height: 3px;
  margin-top: 22px;
  border-radius: 99px;
  background: #d7ecea;
  overflow: hidden;
}

.cik-notice__bar::after {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: var(--teal);
  transform-origin: left center;
  animation: cik-notice-bar 10s linear forwards;
}

@keyframes cik-notice-bar {
  from {
    transform: scaleX(1);
  }
  to {
    transform: scaleX(0);
  }
}

@media (min-width: 1200px) {
  .cik-notice__card {
    padding: calc(36 * var(--u)) calc(36 * var(--u)) calc(28 * var(--u));
    border-radius: calc(32 * var(--u));
  }

  .cik-notice__card p {
    font-size: calc(22 * var(--u));
  }
}

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

  .reveal,
  .reveal.is-pending,
  .reveal.is-in {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero-copy__more span,
  .result-row__icon i,
  .result-row__content {
    animation: none;
    transition: none;
  }

  .cik-notice__bar::after {
    animation: none;
    transform: none;
  }
}

@media print {
  @page {
    size: A4;
    margin: 10mm 12mm;
  }

  html,
  body {
    background: #fff;
    overflow: visible;
  }

  .page__grain,
  .site-header,
  .hero-copy__more,
  .result-row__icon,
  .finale__dots,
  .cik-notice {
    display: none !important;
  }

  .reveal,
  .reveal.is-pending,
  .reveal.is-in {
    opacity: 1 !important;
    transform: none !important;
  }

  *,
  *::before,
  *::after {
    -webkit-print-color-adjust: exact !important;
    print-color-adjust: exact !important;
    box-shadow: none !important;
    animation: none !important;
    transition: none !important;
  }

  .hero {
    min-height: 0;
    height: auto;
    padding: 24px 16px 32px;
    overflow: visible;
    break-after: page;
  }

  .hero__grid {
    height: auto;
    display: grid;
    gap: 16px;
  }

  .hero-copy,
  .hero-poster,
  .hero-poster__name,
  .hero-poster__photo {
    position: static;
    inset: auto;
    width: auto;
    height: auto;
    max-width: 100%;
    margin: 0;
  }

  .hero-poster {
    min-height: 0;
    justify-items: start;
  }

  .hero-poster__photo {
    width: 220px;
  }

  .hero-poster__last {
    font-size: 42px;
  }

  .result-row__content {
    height: auto !important;
    overflow: visible !important;
  }

  .result-row__trigger {
    min-height: 0;
  }

  .will__grid,
  .stats {
    break-inside: avoid;
  }

  .program-card,
  .result-row,
  .bio-item,
  .personal__layout {
    break-inside: avoid;
  }

  .against__ghost {
    display: none;
  }

  .finale {
    min-height: 0;
    padding: 32px 20px 24px;
  }

  .campaign-disclaimer {
    position: static;
    margin-top: 24px;
    color: #222;
    font-size: 9px;
  }
}

@media (max-width: 767px) {
  .hero-copy h1 {
    font-size: clamp(30px, 9vw, 42px);
  }

  .hero-copy__lead {
    font-size: 15px;
  }
}

@media (max-width: 380px) {
  .hero-copy h1 {
    font-size: 28px;
  }

  .hero-poster {
    min-height: 340px;
  }

  .hero-poster__last {
    font-size: 40px;
  }
}
