@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;
  --teal-bright: #0dc4bd;
  --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 {
  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;
}

/* ——— 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: 380px;
  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;
  justify-content: center;
  min-height: 48px;
  margin-top: 8px;
  border: 0;
  border-radius: 16px;
  color: #fff;
  background: var(--teal);
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.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: calc(52 * var(--u));
    padding: 0 calc(2 * var(--u)) 0 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-self: stretch;
    margin-left: auto;
  }

  .site-header__idea {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: calc(190 * var(--u));
    padding: 0 calc(20 * var(--u));
    border-radius: calc(28 * var(--u));
    color: #fff;
    background: var(--teal);
    font-size: calc(15.5 * var(--u));
    font-weight: 710;
    line-height: 1;
    text-transform: uppercase;
    text-decoration: none;
    white-space: nowrap;
    transition: background-color 0.18s ease;
  }

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

/* ——— Hero ——— */

.hero {
  position: relative;
  min-height: 100dvh;
  padding: 92px 20px 28px;
}

.hero__grid {
  display: grid;
  gap: 28px;
}

.hero-copy {
  padding: 12px 4px 0;
}

.hero-copy__name {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-copy h1 {
  color: var(--teal);
  font-size: clamp(34px, 5vw, 52px);
  font-weight: 790;
  line-height: 1.06;
  letter-spacing: 0;
}

.hero-copy__lead {
  max-width: 34em;
  margin-top: 18px;
  color: #3f4847;
  font-size: 18px;
  font-weight: 440;
  line-height: 1.16;
}

.hero-copy__more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  color: var(--ink);
  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);
  }
}

.portrait-panel {
  position: relative;
  min-height: 420px;
}

.portrait-panel__surface {
  position: absolute;
  inset: 48px 0 0;
  overflow: hidden;
  border-radius: 36px;
  background-color: var(--teal-bright);
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.21) 1.05px, transparent 1.2px),
    linear-gradient(145deg, #ffffff0a, #237e7a0d);
  background-size: 10px 10px, 100% 100%;
}

.portrait-panel__surface::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background: radial-gradient(circle at 42% 35%, rgba(255, 255, 255, 0.25), transparent 44%);
}

.portrait-panel__image-mask {
  position: absolute;
  z-index: 2;
  inset: 0 6% 0 4%;
  overflow: hidden;
  border-radius: 0 0 42px 42px;
  pointer-events: none;
}

.portrait-panel__image {
  width: 108%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 12%;
  filter: drop-shadow(-4px 10px 15px rgba(15, 61, 59, 0.05));
}

.portrait-panel__caption {
  position: absolute;
  z-index: 4;
  left: 16px;
  bottom: 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(280px, calc(100% - 32px));
  min-height: 96px;
  padding: 16px 22px;
  border-radius: 28px;
  background: #fff;
  box-shadow: -8px 10px 30px #1638360b;
}

.portrait-panel__caption strong {
  margin-bottom: 6px;
  color: #0b0b0b;
  font-size: 22px;
  font-weight: 760;
  line-height: 1.05;
  letter-spacing: -0.025em;
}

.portrait-panel__caption span {
  color: #494949;
  font-size: 15px;
  font-weight: 410;
  line-height: 1.15;
}

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

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

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

  .hero-copy__name {
    font-size: calc(15 * var(--u));
    margin-bottom: calc(18 * var(--u));
  }

  .hero-copy h1 {
    font-size: calc(40 * var(--u));
    font-weight: 790;
    line-height: 1.06;
    letter-spacing: 0;
  }

  .hero-copy__lead {
    margin-top: calc(22 * var(--u));
    font-size: calc(20 * var(--u));
    font-weight: 440;
    line-height: 1.16;
  }

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

  .portrait-panel {
    position: absolute;
    z-index: 1;
    top: calc(118 * var(--u));
    right: calc(130 * var(--u));
    bottom: calc(40 * var(--u));
    left: calc(730 * var(--u));
    min-height: 0;
  }

  .portrait-panel__surface {
    inset: 0;
    border-radius: calc(48 * var(--u));
    background-size: calc(10 * var(--u)) calc(10 * var(--u)), 100% 100%;
  }

  .portrait-panel__image-mask {
    top: calc(-36 * var(--u));
    right: calc(-8 * var(--u));
    bottom: 0;
    left: calc(8 * var(--u));
    border-radius: 0 0 calc(50 * var(--u)) calc(50 * var(--u));
  }

  .portrait-panel__image {
    width: 106%;
    margin-left: -3%;
    object-fit: cover;
    object-position: 52% 8%;
  }

  .portrait-panel__caption {
    right: 0;
    left: auto;
    bottom: calc(31 * var(--u));
    width: calc(280 * var(--u));
    min-height: calc(112 * var(--u));
    padding: 0 calc(24 * var(--u)) 0 calc(28 * var(--u));
    border-radius: calc(32 * var(--u));
  }

  .portrait-panel__caption strong {
    font-size: calc(22 * var(--u));
  }

  .portrait-panel__caption span {
    font-size: calc(15.5 * var(--u));
  }
}

/* ——— 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;
  gap: 28px;
  overflow: hidden;
  border-radius: 36px;
  background: #fff;
  box-shadow: 0 20px 60px #0743400b;
}

.personal__photo {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  background: #ecf5f5;
}

.personal__photo img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: 50% 12%;
}

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

.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: 900px) {
  .personal__layout {
    grid-template-columns: 0.92fr 1.08fr;
    min-height: 560px;
  }

  .personal__photo {
    min-height: 100%;
  }

  .personal__photo img {
    min-height: 560px;
  }

  .personal__copy {
    padding: 48px 56px 56px 8px;
  }
}

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

  .personal__layout {
    min-height: calc(620 * var(--u));
    border-radius: calc(48 * var(--u));
  }

  .personal__copy {
    padding: calc(64 * var(--u)) calc(72 * var(--u)) calc(64 * var(--u)) calc(28 * var(--u));
  }

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

  .personal__facts li {
    font-size: calc(20 * 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: 100%;
  object-fit: cover;
  object-position: 50% 18%;
}

.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);
  }
}

@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;
  }
}

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

@media (max-width: 767px) {
  .hero-copy h1 {
    font-size: clamp(34px, 11vw, 50px);
  }

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

  .portrait-panel__caption strong {
    font-size: 19px;
  }

  .portrait-panel__caption span {
    font-size: 13px;
  }
}

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

  .portrait-panel {
    min-height: 360px;
  }
}
