/* Tokens and layout from Framer export — https://easygoing-dance-678214.framer.app/ */

@font-face {
  font-family: "Aspekta Variable";
  src: url("https://framerusercontent.com/assets/MQthzhqtkV99jFAFdccXwW1PRf0.woff2") format("woff2");
  font-weight: 100 1000;
  font-style: normal;
  font-display: swap;
}

:root {
  --cream: #f8f7f3;
  --cream-body: #f8f7f0;
  --text-light: #f2f2f2;
  --text-dark: #0f0f0f;
  --text-dark-2: #101010;
  --text-muted: #71706b;
  --sage: #7b8a6f;
  --indigo-line: #5462bf;
  --indigo-text: #545ebf;
  --border-hair: #e9ebe5;
  --border-logo: rgb(220, 219, 208);
  --border-footer: rgb(4, 50, 51);
  --cta-bg: #031f21;
  --footer-bg: #01191c;
  --nav-glass: rgba(16, 16, 16, 0.5);
  --nav-radius: 4px;
  --font-aspekta: "Aspekta Variable", "Aspekta Variable Variable", system-ui, sans-serif;
  --font-times: "Times New Roman", Times, serif;
  --max-page: 1400px;
  --max-nav: 1200px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream-body);
  color: var(--text-dark);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.layout {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.nav-slot {
  position: fixed;
  z-index: 50;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: min(var(--max-nav), calc(100% - 32px));
  pointer-events: none;
}

.nav {
  pointer-events: auto;
}

.nav__bar {
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background: var(--nav-glass);
  border-radius: var(--nav-radius);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 32px;
  width: 100%;
}

.nav__links {
  display: none;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 16px;
}

.nav__link {
  font-family: var(--font-aspekta);
  font-size: 14px;
  font-weight: 650;
  letter-spacing: -0.01em;
  font-feature-settings: "ss05" on, "ss04" on;
  color: var(--text-light);
}

.nav__link:hover {
  color: #fff;
  text-decoration: none;
}

.nav__burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}

.nav__burger span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text-light);
  border-radius: 1px;
  transition: transform 0.2s, opacity 0.2s;
}

.nav__burger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav__burger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav__burger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-drawer {
  position: fixed;
  inset: 0;
  top: 88px;
  z-index: 40;
  background: rgba(1, 25, 28, 0.92);
  backdrop-filter: blur(8px);
  padding: 24px;
}

.nav-drawer[hidden] {
  display: none;
}

.nav-drawer__inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: var(--max-nav);
  margin: 0 auto;
}

.nav-drawer__link {
  font-family: var(--font-aspekta);
  font-size: 16px;
  color: var(--text-light);
}

@media (min-width: 810px) {
  .nav__links--desktop {
    display: flex;
  }

  .nav__burger {
    display: none;
  }

  .nav-drawer {
    display: none !important;
  }
}

.hero {
  position: relative;
  width: 100%;
  max-width: var(--max-page);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding: 48px 24px 56px;
  overflow: clip;
}

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

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

.hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  justify-content: center;
}

.hero__stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  width: 100%;
  max-width: 592px;
}

.hero__logo-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.hero__logo-mark {
  width: 36px;
  height: 36px;
  border-radius: 100px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__logo-mark img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.hero__stats {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 18px;
}

.hero__stat {
  margin: 0;
  font-family: var(--font-aspekta);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.4;
  font-feature-settings: "ss02" on;
  color: #fff;
}

.hero__stat--muted {
  opacity: 0.6;
}

.hero__title {
  margin: 0;
  font-family: var(--font-times);
  font-weight: 400;
  text-align: center;
  letter-spacing: -0.04em;
  line-height: 0.95;
  color: var(--text-light);
  font-size: 45px;
}

.hero__lede {
  margin: 0;
  font-family: var(--font-aspekta);
  font-size: 16px;
  font-weight: 650;
  line-height: 1.4;
  letter-spacing: -0.01em;
  text-align: center;
  font-feature-settings: "ss03" on;
  color: var(--text-light);
  max-width: 100%;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-aspekta);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.2;
  font-feature-settings: "ss05" on, "ss04" on;
  padding: 20px 52px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  text-decoration: none;
}

.btn:hover {
  text-decoration: none;
  filter: brightness(1.03);
}

.btn--hero {
  background: var(--text-light);
  color: var(--text-dark);
}

.btn--cta {
  background: var(--text-light);
  color: var(--text-dark);
}

@media (min-width: 810px) {
  .hero__title {
    font-size: 66px;
  }
}

@media (min-width: 1400px) {
  .hero__title {
    font-size: 83px;
  }
}

.main {
  width: 100%;
  max-width: var(--max-page);
  flex: 1;
}

.section {
  width: 100%;
}

.section--intro {
  border-bottom: 1px solid var(--border-hair);
  padding: clamp(48px, 8vw, 100px);
  display: flex;
  justify-content: center;
}

.section__intro-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
  max-width: 900px;
  text-align: center;
}

.eyebrow-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.eyebrow-row--center {
  justify-content: center;
}

.eyebrow-dot {
  width: 8px;
  height: 16px;
  border-radius: 100px;
  background: var(--sage);
  flex-shrink: 0;
}

.eyebrow-dot--blue {
  background: var(--indigo-line);
}

.eyebrow {
  margin: 0;
  font-family: var(--font-aspekta);
  font-size: 14px;
  font-weight: 650;
  letter-spacing: -0.01em;
  font-feature-settings: "ss05" on, "ss04" on;
}

.eyebrow--sage {
  color: var(--sage);
}

.eyebrow--indigo {
  color: var(--indigo-text);
}

.title {
  margin: 0;
  font-family: var(--font-times);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.95;
}

.title--dark {
  color: var(--text-dark);
  text-align: center;
}

.title--section {
  font-size: 34px;
}

.title--impact {
  font-size: 30px;
  text-align: center;
  max-width: 878px;
}

.title--light {
  color: var(--text-light);
  text-align: center;
}

.title--cta {
  font-size: 34px;
  max-width: 592px;
}

@media (min-width: 810px) {
  .title--section {
    font-size: 48px;
  }

  .title--impact {
    font-size: 39px;
  }

  .title--cta {
    font-size: 48px;
  }
}

@media (min-width: 1400px) {
  .title--section {
    font-size: 56px;
  }

  .title--cta {
    font-size: 56px;
  }
}

.section--cards {
  padding: 0 24px 80px;
  display: flex;
  justify-content: center;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 48px;
  width: 100%;
  max-width: 1100px;
}

@media (min-width: 810px) {
  .cards {
    flex-direction: row;
    gap: 10px;
    align-items: flex-start;
  }
}

.card {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  min-width: 0;
}

.card__icon {
  width: 80px;
  height: 80px;
  position: relative;
  flex-shrink: 0;
}

.card__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.card__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  max-width: 308px;
  text-align: center;
}

.card__title {
  margin: 0;
  font-family: var(--font-aspekta);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.4;
  font-feature-settings: "ss02" on;
  color: rgb(16, 16, 16);
}

.card__body {
  margin: 0;
  font-family: var(--font-aspekta);
  font-size: 16px;
  font-weight: 650;
  line-height: 1.4;
  letter-spacing: -0.01em;
  font-feature-settings: "ss03" on;
  color: var(--text-muted);
}

.section--impact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 56px;
  padding: clamp(48px, 8vw, 100px) 24px;
  width: 100%;
}

.impact__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  max-width: 1400px;
  width: 100%;
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(50px, 1fr));
  width: 100%;
  max-width: 1200px;
  min-height: 160px;
}

.logo-cell {
  position: relative;
  height: 160px;
  border: 1px solid var(--border-logo);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  background: var(--cream);
}

.logo-cell img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0.8;
}

.logo-cell--no-left {
  border-left-width: 0;
}

@media (max-width: 809px) {
  .logo-grid {
    grid-template-columns: 1fr;
  }

  .logo-cell--no-left {
    border-left-width: 1px;
    border-top-width: 0;
  }

  .logo-grid .logo-cell:first-child {
    border-top-width: 1px;
  }
}

.ticker {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  opacity: 0.8;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.ticker__track {
  display: flex;
  flex-wrap: nowrap;
  gap: 24px;
  align-items: center;
  width: max-content;
  animation: ticker 32s linear infinite;
}

@keyframes ticker {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.ticker__item {
  font-family: var(--font-aspekta);
  font-size: 16px;
  font-weight: 650;
  letter-spacing: -0.01em;
  white-space: pre;
  flex-shrink: 0;
  font-feature-settings: "ss03" on;
  color: var(--text-dark-2);
}

.ticker__item--text {
  opacity: 0.6;
}

.ticker__item--sep {
  opacity: 0.2;
}

@media (prefers-reduced-motion: reduce) {
  .ticker__track {
    animation: none;
  }
}

.cta {
  position: relative;
  width: 100%;
  max-width: var(--max-page);
  min-height: 500px;
  height: 500px;
  background: var(--cta-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  overflow: clip;
  padding: 48px 24px;
}

.cta__deco {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 339px;
  max-width: 28vw;
  z-index: 0;
  pointer-events: none;
}

.cta__deco img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.cta__deco--left {
  left: 0;
}

.cta__deco--right {
  right: 0;
}

.cta__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  max-width: 592px;
}

@media (max-width: 809px) {
  .cta__deco {
    display: none;
  }

  .cta {
    height: auto;
    min-height: 420px;
  }
}

.footer {
  width: 100%;
  max-width: var(--max-page);
  background: var(--footer-bg);
  color: var(--text-light);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 32px;
}

.footer__wave {
  width: 100%;
  max-width: 1048px;
  height: 56px;
  overflow: hidden;
}

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

.footer__grid {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1200px;
  min-height: 200px;
  border: 1px solid var(--border-footer);
  margin-top: -1px;
}

@media (min-width: 810px) {
  .footer__grid {
    flex-direction: row;
    min-height: 280px;
  }
}

.footer__col {
  padding: 46px 28px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

@media (min-width: 810px) {
  .footer__col {
    flex: 1 1 0;
    width: auto;
    min-width: 0;
    border-right: 1px solid var(--border-footer);
  }

  .footer__col:last-child {
    border-right: none;
  }
}

.footer__label {
  margin: 0;
  font-family: var(--font-aspekta);
  font-size: 12px;
  font-weight: 650;
  opacity: 0.8;
  letter-spacing: 0.02em;
}

.footer__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer__list a {
  font-family: var(--font-aspekta);
  font-size: 16px;
  font-weight: 650;
  opacity: 0.4;
  letter-spacing: -0.01em;
  font-feature-settings: "ss03" on;
}

.footer__list a:hover {
  opacity: 0.85;
  text-decoration: none;
}

.footer__credit {
  margin: 32px 28px 0;
  width: calc(100% - 56px);
  max-width: 1200px;
  padding-top: 24px;
  border-top: 1px solid var(--border-footer);
  font-family: var(--font-aspekta);
  font-size: 16px;
  text-align: center;
  opacity: 0.5;
}

.footer__credit a:hover {
  opacity: 1;
}

@media (max-width: 809px) {
  .footer__col + .footer__col {
    border-top: 1px solid var(--border-footer);
  }
}
