:root {
  --c-background: #080909;
  --c-text-primary: #f4f4f2;
  --c-text-secondary: #a1a1a1;
  --c-action: #f4f4f2;
  --c-on-action: #080909;
  --page-padding: 80px;
  --hero-content-padding: 130px;
  --section-padding-y: 110px;
}

@media (max-width: 767px) {
  :root {
    --page-padding: 20px;
    --hero-content-padding: 20px;
    --section-padding-y: 32px;
  }
}
@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 200;
  src: url("../fonts/inter-200.ttf") format("truetype");
}
@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 300;
  src: url("../fonts/inter-300.ttf") format("truetype");
}
@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/inter-400.ttf") format("truetype");
}
@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/inter-500.ttf") format("truetype");
}
@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 600;
  src: url("../fonts/inter-600.ttf") format("truetype");
}
* {
  box-sizing: border-box;
}

html {
  background: var(--c-background);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--c-background);
  color: var(--c-text-primary);
  font-family: Inter, Arial, sans-serif;
}

@media (min-width: 768px) {
  .landing {
    width: min(1440px, 100%);
    min-width: 1240px;
    margin-inline: auto;
  }
  body {
    -webkit-font-smoothing: antialiased;
    text-rendering: geometricPrecision;
  }
}
img {
  display: block;
  max-width: 100%;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border-radius: 70px;
  background: var(--c-action);
  color: var(--c-on-action);
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  text-decoration: none;
}

.hero {
  height: 900px;
  min-height: 0;
  overflow: hidden;
  background: var(--c-background);
}

.header {
  display: flex;
  align-items: center;
  position: fixed;
  top: 0;
  left: 50%;
  z-index: 10;
  width: min(1440px, 100%);
  min-width: 1240px;
  height: 80px;
  padding-inline: var(--hero-content-padding);
  background: var(--c-background);
  transform: translateX(-50%);
}

.hero__header-spacer {
  height: 80px;
}

.hero__mobile {
  display: none;
}

.header__brand {
  color: var(--c-text-primary);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.75px;
  line-height: 1.45;
  text-decoration: none;
}

.header__nav {
  display: flex;
  align-items: center;
  height: 18px;
  gap: 20px;
  margin-left: auto;
  margin-right: 44px;
}

.header__nav-item {
  display: flex;
  flex: 0 0 auto;
  align-items: flex-start;
  position: relative;
  padding-bottom: 0;
  color: var(--c-text-primary);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.77px;
  line-height: 1.45;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 180ms ease, padding-bottom 180ms ease;
}

.header__nav-item::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  content: "";
  background: #fff;
  opacity: 0;
  transition: opacity 180ms ease;
}

.header__nav-item:hover {
  padding-bottom: 2px;
  color: #fff;
}

.header__nav-item:hover::after {
  opacity: 1;
}

.header__contact {
  min-width: 102px;
}

.hero__body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 580px;
  align-items: center;
  gap: 40px;
  min-height: 820px;
  padding-inline: var(--hero-content-padding);
}

.hero__copy {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 756px;
}

.hero__eyebrow {
  margin: 0;
  color: var(--c-text-secondary);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.1px;
  line-height: 1.5;
}

.hero__message {
  display: grid;
  gap: 44px;
}

.hero__title {
  margin: 0;
  color: var(--c-text-primary);
  font-size: 76px;
  font-weight: 300;
  letter-spacing: 0;
  line-height: 1.04;
}

.hero__lead {
  margin: 0;
  color: #fff;
  font-size: 24px;
  font-weight: 300;
  line-height: 32px;
}

.hero__cta {
  align-self: flex-start;
  margin-top: 16px;
}

.hero__image {
  width: 580px;
  height: 580px;
  overflow: hidden;
}

.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

@media (min-width: 768px) {
  .hero__body {
    position: relative;
    display: block;
    padding: 0;
  }
  .hero__copy {
    position: absolute;
    top: 220px;
    left: var(--hero-content-padding);
    width: 756px;
    gap: 16px;
    z-index: 1;
  }
  .hero__image {
    position: absolute;
    top: 80px;
    left: calc(50% + 10px);
    z-index: 0;
  }
  .hero__cta {
    position: absolute;
    top: 550px;
    left: var(--hero-content-padding);
    z-index: 1;
    margin-top: 0;
  }
}
@media (max-width: 767px) {
  .hero {
    height: 1045px;
    min-height: 0;
  }
  .header {
    width: 100%;
    min-width: 0;
    height: 84px;
  }
  .hero__header-spacer {
    height: 84px;
  }
  .header__nav {
    display: none;
  }
  .header__contact {
    margin-left: auto;
  }
  .hero__desktop {
    display: none;
  }
  .hero__mobile {
    display: flex;
    flex-direction: column;
    width: 100%;
    overflow: hidden;
  }
  .hero__mobile-intro {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 20px;
  }
  .hero__eyebrow {
    font-size: 12px;
    letter-spacing: 1.2px;
    line-height: 1.45;
  }
  .hero__title {
    font-size: 52px;
    font-weight: 200;
    line-height: 1.08;
  }
  .hero__mobile-cta-wrap {
    display: flex;
    padding: 16px;
  }
  .hero__mobile-cta {
    margin: 0;
  }
  .hero__mobile-image {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
  }
  .hero__mobile-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .hero__mobile-lead {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 20px;
    color: var(--c-text-primary);
    font-size: 24px;
    font-weight: 300;
    line-height: 32px;
  }
  .hero__mobile-lead p {
    margin: 0;
  }
}
.challenge {
  position: relative;
  display: grid;
  grid-template-columns: 580px 518px;
  align-items: center;
  column-gap: 82px;
  height: 700px;
  min-height: 0;
  padding: 0 var(--hero-content-padding);
  overflow: hidden;
}

.challenge__image--desktop {
  width: 580px;
  height: 580px;
  object-fit: cover;
}

.challenge__image--mobile {
  display: none;
}

.challenge__layout {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 518px;
}

.challenge__eyebrow {
  margin: 0;
  color: var(--c-text-secondary);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.1px;
  line-height: 1.5;
}

.challenge__content {
  display: grid;
  gap: 44px;
}

.challenge__title {
  margin: 0;
  color: var(--c-text-primary);
  font-size: 62px;
  font-weight: 200;
  line-height: 1.08;
}

.challenge__description {
  display: grid;
  gap: 20px;
}

.challenge__lead {
  margin: 0;
  color: #fff;
  font-size: 24px;
  font-weight: 300;
  line-height: 32px;
}

.challenge__body {
  margin: 0;
  color: var(--c-text-secondary);
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
}

@media (max-width: 767px) {
  .challenge {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    height: 874px;
    min-height: 0;
    padding: 0;
    overflow: hidden;
  }
  .challenge__image--desktop {
    display: none;
  }
  .challenge__image--mobile {
    display: block;
    width: 100%;
    height: 375px;
    object-fit: cover;
    flex: 0 0 375px;
  }
  .challenge__layout {
    box-sizing: border-box;
    gap: 20px;
    width: auto;
    height: 499px;
    padding: 24px var(--hero-content-padding) 48px;
  }
  .challenge__eyebrow {
    font-size: 12px;
    letter-spacing: 1.2px;
    line-height: 1.45;
  }
  .challenge__content {
    display: contents;
  }
  .challenge__title {
    font-size: 40px;
  }
}
.question {
  position: relative;
  height: 379px;
  min-height: 0;
  padding: 0;
  overflow: hidden;
}

.question__content {
  position: absolute;
  top: 50%;
  left: var(--hero-content-padding);
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 1180px;
  padding: 24px 32px;
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: 25px;
  background: rgba(20, 21, 21, 0.4);
  transform: translateY(-50%);
}

.question__eyebrow {
  margin: 0;
  color: var(--c-text-secondary);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.1px;
  line-height: 1.5;
}

.question__title {
  margin: 0;
  color: var(--c-text-primary);
  font-size: 62px;
  font-weight: 200;
  line-height: 1.08;
}

.question__copy {
  display: flex;
  flex-direction: column;
  gap: 44px;
  width: 100%;
}

.question__lead {
  margin: 0;
  color: #fff;
  font-size: 24px;
  font-weight: 300;
  line-height: 32px;
}

@media (max-width: 767px) {
  .question {
    height: 379px;
    min-height: 0;
    padding: 20px var(--hero-content-padding) 0;
    overflow: hidden;
  }
  .question__content {
    position: static;
    display: flex;
    flex: 1 0 0;
    flex-direction: column;
    width: 100%;
    min-height: 0;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 25px;
    background: #141515;
    transform: none;
  }
  .question__eyebrow {
    font-size: 12px;
    letter-spacing: 1.2px;
    line-height: 1.45;
  }
  .question__title {
    font-size: 40px;
  }
  .question__copy {
    gap: 44px;
    margin-top: auto;
  }
  .question__lead {
    margin: 0;
  }
}
.question__mobile-break {
  display: none;
}

@media (max-width: 767px) {
  .question__mobile-break {
    display: inline;
  }
}
.response {
  position: relative;
  height: 700px;
  min-height: 0;
  padding: 0;
  overflow: hidden;
}

.response__image {
  position: absolute;
  top: 50%;
  left: 730px;
  width: 580px;
  height: 580px;
  object-fit: cover;
  transform: translateY(-50%);
}

.response__content {
  position: absolute;
  top: 50%;
  left: 130px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 518px;
  transform: translateY(-50%);
}

.response__eyebrow {
  margin: 0;
  color: var(--c-text-secondary);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.1px;
  line-height: 1.5;
}

.response__title {
  position: static;
  margin: 0;
  color: var(--c-text-primary);
  font-size: 62px;
  font-weight: 200;
  line-height: 1.08;
}

.response__copy {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.response__description {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.response__lead {
  position: static;
  margin: 0;
  color: #fff;
  font-size: 24px;
  font-weight: 300;
  line-height: 32px;
}

.response__body {
  position: static;
  width: auto;
  margin: 0;
  color: var(--c-text-secondary);
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
}

@media (max-width: 767px) {
  .response {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    height: auto;
    min-height: 0;
    padding: 0;
  }
  .response__image {
    position: static;
    top: auto;
    left: auto;
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    transform: none;
  }
  .response__content {
    position: static;
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    padding: 24px var(--hero-content-padding) 48px;
    transform: none;
  }
  .response__eyebrow {
    position: static;
    display: block;
    margin: 0;
    color: var(--c-text-secondary);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1.2px;
    line-height: 1.45;
  }
  .response__title {
    position: static;
    font-size: 40px;
  }
  .response__description {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .response__copy {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .response__lead,
  .response__body {
    position: static;
  }
}
.mission {
  position: relative;
  height: 800px;
  min-height: 0;
  padding: 36px var(--hero-content-padding);
  overflow: hidden;
}

.mission__eyebrow {
  position: absolute;
  top: 104px;
  left: 339px;
  margin: 0;
  color: var(--c-text-secondary);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.1px;
  line-height: 1.5;
}

.mission__title {
  position: absolute;
  top: 137px;
  left: 339px;
  width: 877px;
  margin: 0;
  color: var(--c-text-primary);
  font-size: 62px;
  font-weight: 200;
  line-height: 1.08;
}

.mission__body {
  position: absolute;
  margin: 0;
  color: var(--c-text-secondary);
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
}

.mission__body--first {
  top: 382px;
  left: var(--hero-content-padding);
  width: 600px;
}

.mission__body--second {
  top: 561px;
  left: 792px;
  width: 518px;
}

@media (max-width: 767px) {
  .mission {
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 657px;
    min-height: 0;
    padding: 24px var(--hero-content-padding) 48px;
    overflow: hidden;
  }
  .mission__eyebrow {
    position: static;
    font-size: 12px;
    letter-spacing: 1.2px;
    line-height: 1.45;
  }
  .mission__title {
    position: static;
    width: auto;
    margin: 0;
    font-size: 40px;
    line-height: 1.08;
  }
  .mission__body {
    position: static;
    width: auto;
    font-size: 18px;
    line-height: 24px;
    word-break: break-word;
  }
}
.research-card {
  display: flex;
  flex: 1 1 0;
  flex-direction: column;
  justify-content: space-between;
  min-height: 194px;
  padding: 24px 32px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 25px;
  background: #141515;
  cursor: default;
  isolation: isolate;
  position: relative;
}

.research-card::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  content: "";
  background: linear-gradient(99.636974deg, rgba(255, 255, 255, 0.06) 2.9495%, rgba(60, 60, 60, 0.06) 31.774%, rgba(255, 255, 255, 0.06) 63.388%, rgba(164, 162, 162, 0.06) 88.028%);
  background-position: 100% 50%;
  background-size: 220% 100%;
  opacity: 0;
  transition: background-position 2.4s linear, opacity 420ms linear;
}

.research-card:hover::before {
  background-position: 0 50%;
  opacity: 1;
}

.research-card > * {
  position: relative;
  z-index: 1;
}

.research-card__number {
  margin: 0;
  color: var(--c-text-secondary);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.8px;
  line-height: 1.45;
}

.research-card__content {
  display: grid;
  gap: 8px;
}

.research-card__title {
  margin: 0;
  color: var(--c-text-primary);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.45;
}

.research-card__description {
  margin: 0;
  color: var(--c-text-secondary);
  font-size: 18px;
  font-weight: 300;
  line-height: 24px;
}

@media (max-width: 767px) {
  .research-card {
    min-height: var(--research-card-mobile-height);
    height: var(--research-card-mobile-height);
  }
}
.research {
  height: 1291px;
  min-height: 0;
  overflow: hidden;
  padding: 36px var(--hero-content-padding) 124px;
}

.research__intro {
  display: grid;
  gap: 16px;
  max-width: 1050px;
}

.research__eyebrow {
  margin: 0;
  color: var(--c-text-secondary);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.1px;
  line-height: 1.5;
}

.research__title {
  margin: 0;
  color: var(--c-text-primary);
  font-size: 62px;
  font-weight: 200;
  line-height: 1.08;
}

.research__body {
  max-width: 670px;
  margin: 24px 0 0;
  color: var(--c-text-secondary);
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
}

.research__grid {
  display: grid;
  gap: 8px;
  margin-top: 72px;
}

.research__row {
  display: grid;
  height: 194px;
  gap: 8px;
}

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

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

@media (max-width: 767px) {
  .research {
    height: 2517px;
    min-height: 0;
    padding: 24px var(--hero-content-padding) 48px;
    overflow: hidden;
  }
  .research__intro {
    gap: 20px;
  }
  .research__eyebrow {
    font-size: 12px;
    letter-spacing: 1.2px;
    line-height: 1.45;
  }
  .research__title {
    font-size: 40px;
  }
  .research__body {
    margin: 0;
  }
  .research__grid {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 20px;
  }
  .research__row {
    display: contents;
  }
  .research-card__number {
    font-weight: 500;
  }
  .research-card__title {
    font-weight: 400;
  }
  .research__row:first-child .research-card:nth-child(2) .research-card__title {
    font-weight: 500;
  }
  .research__row:first-child .research-card:nth-child(2)::before {
    background-position: 0 50%;
    opacity: 1;
  }
}
.why-now-card {
  display: flex;
  flex: 1 1 0;
  flex-direction: column;
  justify-content: space-between;
  min-width: 0;
  height: 100%;
  padding: 24px 32px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 25px;
  background: #141515;
  overflow: hidden;
  cursor: default;
  isolation: isolate;
  position: relative;
}

.why-now-card::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  content: "";
  background: linear-gradient(99.636974deg, rgba(255, 255, 255, 0.06) 2.9495%, rgba(60, 60, 60, 0.06) 31.774%, rgba(255, 255, 255, 0.06) 63.388%, rgba(164, 162, 162, 0.06) 88.028%);
  background-position: 100% 50%;
  background-size: 220% 100%;
  opacity: 0;
  transition: background-position 2.4s linear, opacity 420ms linear;
}

.why-now-card:hover::before {
  background-position: 0 50%;
  opacity: 1;
}

.why-now-card > * {
  position: relative;
  z-index: 1;
}

.why-now-card__number {
  margin: 0;
  color: var(--c-text-secondary);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.8px;
  line-height: 1.45;
}

.why-now-card__content {
  display: grid;
  gap: 8px;
}

.why-now-card__title {
  margin: 0;
  color: var(--c-text-primary);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.45;
}

.why-now-card__description {
  margin: 0;
  color: var(--c-text-secondary);
  font-size: 18px;
  font-weight: 300;
  line-height: 24px;
}

@media (max-width: 767px) {
  .why-now-card {
    min-height: 185px;
    height: 185px;
  }
  .why-now-card__number {
    font-size: 12px;
    letter-spacing: 1.2px;
  }
  .why-now-card__content {
    width: 126px;
  }
  .why-now-card__title,
  .why-now-card__description {
    font-size: 18px;
    line-height: 24px;
  }
}
.why-now {
  height: 800px;
  min-height: 0;
  padding: 16px var(--hero-content-padding) 104px;
  overflow: hidden;
}

.why-now__intro {
  display: grid;
  grid-template-columns: 578px 441px;
  justify-content: space-between;
}

.why-now__headline {
  display: grid;
  gap: 16px;
}

.why-now__eyebrow {
  margin: 0;
  color: var(--c-text-secondary);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.1px;
  line-height: 1.5;
}

.why-now__title {
  margin: 0;
  color: var(--c-text-primary);
  font-size: 62px;
  font-weight: 200;
  line-height: 1.08;
}

.why-now__body {
  margin: 50px 0 0;
  color: var(--c-text-secondary);
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
}

.why-now__cards {
  display: flex;
  gap: 8px;
  height: 283px;
  margin-top: 141px;
}

@media (max-width: 767px) {
  .why-now {
    height: 1259px;
    min-height: 0;
    padding: 24px var(--hero-content-padding) 48px;
    overflow: hidden;
  }
  .why-now__intro {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .why-now__headline {
    gap: 20px;
  }
  .why-now__eyebrow {
    font-size: 12px;
    letter-spacing: 1.2px;
    line-height: 1.45;
  }
  .why-now__title {
    font-size: 40px;
  }
  .why-now__body {
    margin: 0;
  }
  .why-now__cards {
    flex-direction: column;
    height: auto;
    gap: 8px;
    margin-top: 20px;
  }
  .why-now__cards .why-now-card__content {
    width: 100%;
  }
  .why-now__cards .why-now-card__number {
    font-weight: 500;
  }
  .why-now__cards .why-now-card__title,
  .why-now__cards .why-now-card__description {
    font-weight: 400;
  }
}
.roadmap {
  position: relative;
  height: 550px;
  min-height: 0;
  padding: 0;
  overflow: hidden;
}

.roadmap__intro {
  position: absolute;
  top: 36px;
  left: var(--hero-content-padding);
  width: 915px;
}

.roadmap__eyebrow {
  margin: 0;
  color: var(--c-text-secondary);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.2px;
  line-height: 1.45;
}

.roadmap__title {
  margin: 16px 0 0;
  color: var(--c-text-primary);
  font-size: 62px;
  font-weight: 200;
  line-height: 1.08;
}

.roadmap__body {
  width: 700px;
  margin: 44px 0 0;
  color: var(--c-text-secondary);
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
}

.roadmap__timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 40px;
  width: 1180px;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 388px;
  left: var(--hero-content-padding);
  list-style: none;
}

.roadmap__timeline::before {
  position: absolute;
  top: -57px;
  right: 126px;
  left: 0;
  height: 1px;
  background: rgba(217, 217, 217, 0.2);
  content: "";
}

.roadmap__step {
  position: relative;
  display: grid;
  gap: 4px;
  min-width: 0;
  cursor: default;
}

.roadmap__step::before {
  position: absolute;
  z-index: 0;
  top: -188px;
  left: -104px;
  width: 221px;
  height: 260px;
  background: url("../images/timeline-marker-hover.svg") center/221px 260px no-repeat;
  content: "";
  filter: brightness(2.4) contrast(1.5) drop-shadow(0 0 24px rgb(244, 244, 242));
  opacity: 0;
  pointer-events: none;
  transform: rotate(90deg);
  transform-origin: center;
  transition: opacity 120ms linear;
}

.roadmap__marker {
  position: absolute;
  z-index: 1;
  top: -65px;
  left: 0;
  width: 14px;
  height: 14px;
}

.roadmap__step-number,
.roadmap__step-title {
  position: relative;
  z-index: 1;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.2px;
  line-height: 1.45;
}

.roadmap__step-number {
  color: var(--c-text-secondary);
}

.roadmap__step-title {
  color: var(--c-text-primary);
}

.roadmap__step:hover::before {
  opacity: 1;
}

.roadmap__step--active::before {
  opacity: 1;
}

.roadmap__step--final .roadmap__step-title {
  font-size: 10px;
  letter-spacing: 0.8px;
  line-height: 1.5;
}

@media (max-width: 767px) {
  .roadmap {
    height: 831px;
    min-height: 0;
    padding: 24px var(--hero-content-padding) 48px;
    overflow: hidden;
  }
  .roadmap__intro {
    position: static;
    width: auto;
  }
  .roadmap__title {
    margin-top: 20px;
    font-size: 40px;
  }
  .roadmap__body {
    margin-top: 20px;
  }
  .roadmap__timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 20px;
    padding: 0;
    position: relative;
    top: auto;
    left: auto;
    width: auto;
  }
  .roadmap__step {
    min-height: 66px;
    padding-left: 30px;
  }
  .roadmap__marker {
    top: 0;
    left: 0;
    width: 14px;
    height: 66px;
    content: url("../images/timeline-rail-vertical.svg");
  }
  .roadmap__step::before {
    display: none;
  }
  .roadmap__step--final {
    min-height: 14px;
  }
  .roadmap__step--final .roadmap__marker {
    height: 14px;
    content: url("../images/timeline-marker-end.svg");
  }
}
.partner-tile {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 0;
  overflow: hidden;
  padding: 24px 32px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 25px;
  background: #141515;
  cursor: default;
  isolation: isolate;
}

.partner-tile::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(99.637deg, rgba(255, 255, 255, 0.06) 2.95%, rgba(60, 60, 60, 0.06) 31.77%, rgba(255, 255, 255, 0.06) 63.39%, rgba(164, 162, 162, 0.06) 88.03%), #141515;
  background-position: 100% 50%;
  background-size: 220% 100%;
  opacity: 0;
  content: "";
  transition: background-position 2.4s linear, opacity 420ms linear;
}

.partner-tile:hover::before {
  background-position: 0 50%;
  opacity: 1;
}

.partner-tile > * {
  position: relative;
  z-index: 1;
}

.partner-tile__number {
  margin: 0;
  color: var(--c-text-secondary);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.8px;
  line-height: 1.45;
}

.partner-tile__title {
  margin: 0;
  min-width: 0;
  overflow-wrap: anywhere;
  color: var(--c-text-primary);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.45;
}

@media (max-width: 767px) {
  .partner-tile {
    height: 120px;
  }
  .partner-tile__title {
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
  }
}
.partnerships {
  display: grid;
  grid-template-columns: 1fr;
  align-content: start;
  height: 836px;
  min-height: 0;
  padding: 36px 128px 64px;
}

.partnerships__eyebrow {
  margin: 0;
  color: var(--c-text-secondary);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.2px;
  line-height: 1.45;
}

.partnerships__title {
  width: 900px;
  margin: 16px 0 0;
  color: var(--c-text-primary);
  font-size: 62px;
  font-weight: 200;
  line-height: 1.08;
}

.partnerships__tagline {
  width: 650px;
  margin: 44px 0 0;
  color: #fff;
  font-size: 24px;
  font-weight: 300;
  line-height: 32px;
}

.partnerships__body {
  width: 562px;
  margin: 24px 0 0;
  color: var(--c-text-secondary);
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
}

.partnerships__tiles {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-template-rows: 143px 145px;
  gap: 8px;
  width: 1158.5px;
  margin-top: 76px;
}

@media (max-width: 767px) {
  .partnerships {
    display: flex;
    flex-direction: column;
    height: auto;
    min-height: 0;
    padding: 24px var(--hero-content-padding) 48px;
    overflow: visible;
  }
  .partnerships__eyebrow {
    order: 1;
  }
  .partnerships__title {
    order: 2;
    width: auto;
    margin: 20px 0 0;
    font-size: 40px;
  }
  .partnerships__body {
    order: 4;
    width: auto;
    margin: 20px 0 0;
  }
  .partnerships__tiles {
    order: 5;
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: repeat(8, 120px);
    gap: 8px;
    width: auto;
    margin-top: 20px;
  }
  .partnerships__tagline {
    order: 3;
    display: block;
    width: auto;
    margin: 44px 0 0;
  }
}
.about {
  position: relative;
  height: 700px;
  min-height: 0;
  padding: 0;
  overflow: hidden;
}

.about__content {
  position: absolute;
  top: calc(50% - 13px);
  right: 742px;
  left: 134px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transform: translateY(-50%);
}

.about__intro,
.about__copy {
  display: flex;
  flex-direction: column;
}

.about__intro {
  gap: 44px;
}

.about__copy {
  gap: 24px;
}

.about__eyebrow {
  margin: 0;
  color: var(--c-text-secondary);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.2px;
  line-height: 1.45;
}

.about__title {
  margin: 0;
  color: var(--c-text-primary);
  font-size: 62px;
  font-weight: 200;
  line-height: 1.08;
}

.about__lead {
  width: auto;
  margin: 0;
  color: #fff;
  font-size: 24px;
  font-weight: 300;
  line-height: 32px;
}

.about__body {
  width: 530px;
  margin: 0;
  color: var(--c-text-secondary);
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
}

.about__image {
  position: absolute;
  top: 60px;
  left: 730px;
  width: 580px;
  height: 580px;
  object-fit: cover;
}

.about__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 767px) {
  .about {
    display: flex;
    flex-direction: column;
    height: 1023px;
    min-height: 0;
    padding: 0;
    overflow: hidden;
  }
  .about__image {
    order: -1;
    position: static;
    display: block;
    flex: 0 0 375px;
    width: 100%;
    height: 375px;
  }
  .about__content {
    position: static;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 24px var(--hero-content-padding) 48px;
    transform: none;
  }
  .about__intro,
  .about__copy {
    display: flex;
    flex-direction: column;
  }
  .about__intro {
    gap: 44px;
  }
  .about__copy {
    gap: 24px;
  }
  .about__title {
    font-size: 40px;
  }
  .about__lead {
    width: auto;
    margin: 0;
  }
  .about__body {
    width: auto;
    margin: 0;
  }
}
.founder {
  height: 660px;
  min-height: 0;
  padding: 100px 128px;
  overflow: hidden;
}

.founder__eyebrow {
  margin: 0;
  color: var(--c-text-secondary);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.2px;
  line-height: 1.45;
}

.founder__layout {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 100%;
}

.founder__content {
  display: flex;
  flex-direction: column;
  flex: 1 0 0;
  gap: 16px;
  min-width: 1px;
}

.founder__details,
.founder__info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.founder__details {
  gap: 36px;
  width: 491px;
}

.founder__info {
  gap: 44px;
}

.founder__title {
  margin: 0;
  color: var(--c-text-primary);
  font-size: 62px;
  font-weight: 200;
  line-height: 1.08;
}

.founder__bio {
  margin: 0;
  color: var(--c-text-secondary);
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
}

.founder__link {
  position: relative;
  display: inline-flex;
  overflow: hidden;
  align-self: flex-start;
  margin: 0;
  padding: 16px 24px;
  border-radius: 50px;
  background: #141515;
  color: var(--c-text-primary);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.2px;
  line-height: 1.45;
  text-decoration: none;
  transition: background-color 240ms ease;
}

.founder__link-text {
  display: block;
}

.founder__link-text--duplicate {
  display: none;
}

.founder__link:hover {
  background: rgba(255, 255, 255, 0.08);
}

.founder__picture {
  width: 580px;
  height: 580px;
  margin: 0;
  flex: 0 0 580px;
}

.founder__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 767px) {
  .founder {
    display: block;
    height: 833px;
    min-height: 0;
    padding: 0;
    overflow: hidden;
  }
  .founder__layout {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    height: auto;
  }
  .founder__picture {
    width: 100%;
    height: 375px;
    flex: 0 0 375px;
  }
  .founder__content {
    flex: 0 0 auto;
    gap: 16px;
    min-width: 0;
    padding: 24px var(--hero-content-padding) 48px;
  }
  .founder__eyebrow {
    font-size: 12px;
  }
  .founder__details {
    gap: 16px;
    width: 100%;
  }
  .founder__info {
    gap: 24px;
  }
  .founder__title {
    font-size: 40px;
  }
  .founder__bio {
    margin: 0;
  }
  .founder__link {
    margin: 0;
    background: rgba(255, 255, 255, 0.03);
  }
}
.contact {
  display: flex;
  align-items: center;
  height: 700px;
  min-height: 0;
  padding: 100px 128px;
  overflow: hidden;
}

.contact__layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  width: 100%;
  align-items: start;
}

.contact__intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  width: 518px;
  min-width: 0;
  align-self: stretch;
  transform: translateY(-10px);
}

.contact__eyebrow {
  margin: 0;
  color: var(--c-text-secondary);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.2px;
  line-height: 1.45;
}

.contact__intro-copy {
  display: grid;
  gap: 44px;
}

.contact__title {
  margin: 0;
  color: var(--c-text-primary);
  font-size: 62px;
  font-weight: 200;
  line-height: 1.08;
}

.contact__body {
  margin: 0;
  color: #fff;
  font-size: 18px;
  line-height: 24px;
}

.contact__form {
  display: grid;
  gap: 32px;
  min-width: 0;
}

.contact__field {
  display: grid;
  gap: 32px;
  color: var(--c-text-secondary);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.88px;
  line-height: 1.45;
}

.contact__field input, .contact__field textarea {
  width: 100%;
  height: 1px;
  padding: 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: var(--c-text-primary);
  font: inherit;
  resize: none;
}

.contact__submit {
  justify-self: end;
  margin-top: 0;
  border: 0;
}

@media (max-width: 767px) {
  .contact {
    display: block;
    height: 766px;
    min-height: 0;
    padding: 32px 20px 64px;
    overflow: hidden;
  }
  .contact__layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .contact__intro {
    display: grid;
    gap: 28px;
    width: auto;
    transform: none;
  }
  .contact__intro-copy {
    gap: 28px;
  }
  .contact__title {
    font-size: 40px;
  }
  .contact__form {
    gap: 28px;
  }
  .contact__field {
    gap: 24px;
  }
  .contact__submit {
    justify-self: start;
    margin-top: 0;
  }
}
.footer {
  height: 380px;
  min-height: 0;
  padding: 0 40px;
  overflow: hidden;
  background: var(--c-background);
}

.footer__content {
  position: relative;
  height: 380px;
  min-height: 0;
  padding: 80px 90px 30px;
}

.footer__brand {
  display: grid;
  gap: 8px;
  width: 467px;
}

.footer__name {
  margin: 0;
  color: var(--c-text-primary);
  font-size: 42px;
  font-weight: 300;
  letter-spacing: 1.26px;
  line-height: 1.5;
}

.footer__tagline {
  margin: 0;
  color: var(--c-text-primary);
  font-size: 18px;
  line-height: 24px;
}

.footer__description, .footer__copyright {
  margin: 0;
  color: var(--c-text-secondary);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.8px;
  line-height: 1.5;
}

.footer__nav {
  position: absolute;
  right: 90px;
  bottom: 30px;
  display: flex;
  gap: 24px;
}

.footer__nav a {
  color: var(--c-text-primary);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.2px;
  line-height: 1.45;
  text-decoration: none;
}

.footer__copyright {
  position: absolute;
  bottom: 30px;
  left: 90px;
}

@media (max-width: 767px) {
  .footer {
    height: 400px;
    min-height: 0;
    padding: 0;
    overflow: hidden;
  }
  .footer__content {
    height: 400px;
    min-height: 0;
    padding: 32px 20px;
  }
  .footer__brand {
    width: auto;
    gap: 16px;
  }
  .footer__tagline {
    max-width: 320px;
  }
  .footer__nav {
    position: static;
    display: grid;
    gap: 0;
    margin-top: 16px;
  }
  .footer__nav a {
    line-height: 1.45;
  }
  .footer__copyright {
    position: static;
    margin-top: 48px;
  }
}
