:root {
  color-scheme: light;
  --scene-background: #fff;
  --blue: #0b2ce9;
  --blue-dark: #071b9c;
  --lime: #f2ffd0;
  --lime-bright: #dfff54;
  --ink: #10110f;
  --paper: #ffffff;
  --mist: #edf0ff;
  --coral: #ff745d;
  --line: rgb(16 17 15 / 18%);
  --mono: "Space Mono", "SFMono-Regular", Consolas, monospace;
  --body: "Geist", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --display: "Archivo Black", Impact, sans-serif;
  --page-pad: clamp(18px, 3vw, 48px);
  --radius: clamp(18px, 1.8vw, 30px);
  --header-height: 82px;
}

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

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

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: var(--scene-background);
  color: var(--ink);
  font-family: var(--body);
  text-rendering: geometricPrecision;
}

button,
input {
  font: inherit;
}

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

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

button,
input {
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 2000;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  background: var(--ink);
  color: #fff;
  transform: translateY(-160%);
}

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

:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: 4px;
}

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: var(--header-height);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 10px var(--page-pad);
  border-bottom: 1px solid transparent;
  background: #fff;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 8px 26px rgb(16 17 15 / 7%);
}

.brand {
  width: clamp(135px, 11vw, 170px);
  display: block;
}

.brand img {
  width: 100%;
  height: auto;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 3vw, 48px);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: -0.02em;
}

.primary-nav a,
.text-link {
  position: relative;
}

.primary-nav a::after,
.text-link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -4px;
  left: 0;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.primary-nav a:hover::after,
.text-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: end;
  padding: 0 24px;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  transition: background-color 160ms ease;
}

.header-cta:hover {
  background: var(--blue-dark);
}

.eyebrow,
.card-index,
.circle-steps > li > span {
  margin: 0;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.eyebrow {
  font-weight: 700;
}

.eyebrow-light {
  color: var(--lime);
}

.button {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 25px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 400;
  transition:
    background-color 160ms ease,
    color 160ms ease;
}

.button:hover {
  background: var(--ink);
  color: #fff;
}

.button-blue {
  border-color: var(--blue);
  background: var(--blue);
  color: #fff;
}

.button-blue:hover {
  border-color: var(--blue-dark);
  background: var(--blue-dark);
}

.hero {
  --hero-photo-1: 0;
  --hero-photo-2: 0;
  --hero-photo-3: 0;
  --hero-scene-exit: 0;
  position: relative;
  height: 300svh;
  background: var(--scene-background);
}

.hero-sticky {
  position: sticky;
  top: 0;
  height: 100svh;
  min-height: 740px;
  overflow: hidden;
  padding-top: var(--header-height);
  background: var(--scene-background);
}

.hero-copy {
  position: relative;
  z-index: 6;
  width: min(100%, 1800px);
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-inline: auto;
  padding: calc(var(--header-height) + 24px) var(--page-pad) 54px;
  text-align: center;
  transform: translateY(calc(var(--hero-scene-exit) * -24vh));
  will-change: transform;
  mix-blend-mode: difference;
  pointer-events: none;
}

.hero-lede {
  pointer-events: auto;
}

.hero h1 {
  position: relative;
  z-index: 5;
  max-width: 1840px;
  margin: 0;
  color: #fff;
  font-family: var(--display);
  font-size: clamp(62px, 6.85vw, 148px);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -0.065em;
  text-transform: uppercase;
  text-wrap: balance;
}

.hero h1 span {
  display: block;
}

@media (min-width: 1081px) {
  .hero h1 span {
    white-space: nowrap;
  }
}

.hero-lede {
  position: relative;
  z-index: 5;
  width: min(90vw, 1840px);
  max-width: none;
  margin: clamp(34px, 4.8vh, 54px) 0 0;
  color: #fff;
  font-size: clamp(20px, 1.85vw, 40px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.035em;
  text-align: center;
}

.hero-photo-stack {
  position: absolute;
  z-index: 2;
  inset: var(--header-height) 0 0;
  transform: translateY(calc(var(--hero-scene-exit) * -24vh));
  will-change: transform;
  pointer-events: none;
}

.hero-photo {
  position: absolute;
  top: 52%;
  left: 50%;
  margin: 0;
  overflow: hidden;
  border-radius: 0;
  will-change: transform, opacity;
}

.hero-photo img {
  height: 100%;
  object-fit: cover;
}

.hero-photo-one {
  width: min(32vw, 700px);
  aspect-ratio: 4 / 5;
  opacity: var(--hero-photo-1);
  transform:
    translate(-50%, calc(-50% + (1 - var(--hero-photo-1)) * 180px))
    rotate(calc(-5deg + (1 - var(--hero-photo-1)) * -6deg))
    scale(calc(0.92 + var(--hero-photo-1) * 0.08));
}

.hero-photo-two {
  width: min(42vw, 900px);
  aspect-ratio: 1 / 1;
  opacity: var(--hero-photo-2);
  transform:
    translate(-50%, calc(-50% + (1 - var(--hero-photo-2)) * 200px))
    rotate(calc(6deg + (1 - var(--hero-photo-2)) * 7deg))
    scale(calc(0.92 + var(--hero-photo-2) * 0.08));
}

.hero-photo-three {
  width: min(49vw, 1060px);
  aspect-ratio: 3 / 2;
  opacity: var(--hero-photo-3);
  transform:
    translate(-50%, calc(-50% + (1 - var(--hero-photo-3)) * 220px))
    rotate(calc(5deg + (1 - var(--hero-photo-3)) * 8deg))
    scale(calc(0.92 + var(--hero-photo-3) * 0.08));
}

.definition-section {
  --definition-title-opacity: 0;
  --definition-title-shift: 36px;
  --definition-copy-opacity: 0;
  position: relative;
  height: 300svh;
  padding-top: 70svh;
  background: var(--scene-background);
  color: var(--ink);
}

.definition-sticky {
  position: sticky;
  top: 0;
  height: 100svh;
  min-height: 720px;
  display: flex;
  align-items: flex-start;
  overflow: hidden;
}

.definition-shell {
  width: min(100%, 1800px);
  margin-inline: auto;
  padding: clamp(150px, 20vh, 230px) var(--page-pad) clamp(190px, 24vh, 310px);
}

.definition-shell h2 {
  max-width: 1300px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(50px, 6.4vw, 118px);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -0.06em;
  text-transform: uppercase;
  text-wrap: balance;
}

#definition-title {
  opacity: var(--definition-title-opacity);
  transform: translateY(var(--definition-title-shift));
  will-change: transform, opacity;
}

.definition-meaning {
  margin-top: clamp(24px, 5vh, 56px) !important;
  font-size: clamp(50px, 6.4vw, 118px) !important;
  line-height: 0.9 !important;
}

.definition-meaning span {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.25em);
  will-change: transform, opacity;
}

.definition-copy {
  max-width: 670px;
  margin: clamp(34px, 6vh, 72px) 0 0;
  font-size: clamp(18px, 1.45vw, 25px);
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: -0.025em;
  opacity: var(--definition-copy-opacity);
  transform: translateY(calc((1 - var(--definition-copy-opacity)) * 28px));
}

.section-shell,
.connect-shell,
.newsletter-shell,
.bridge-shell {
  width: min(100%, 1800px);
  margin-inline: auto;
  padding-inline: var(--page-pad);
}

.circles-section {
  position: relative;
  z-index: 2;
  padding: clamp(110px, 12vw, 210px) 0;
  background: #fff;
}

.circles-intro {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 16px;
  align-items: start;
}

.circles-eyebrow {
  grid-column: 1 / 3;
}

.circles-content h2,
.initiatives-heading h2,
.connect-heading h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(50px, 6.4vw, 118px);
  font-weight: 400;
  line-height: 0.88;
  letter-spacing: -0.06em;
  text-transform: uppercase;
  text-wrap: balance;
}

.circles-content > p:not(.eyebrow) {
  max-width: 650px;
  margin: 32px 0 0;
  color: rgb(16 17 15 / 68%);
  font-size: clamp(17px, 1.25vw, 22px);
  line-height: 1.55;
  letter-spacing: -0.025em;
}

.circles-content {
  grid-column: 5 / 13;
  align-self: start;
  max-width: 980px;
}

.circles-content .button {
  margin-top: 38px;
}

.steps-heading {
  margin-top: clamp(100px, 12vw, 190px);
  padding-bottom: 18px;
  border-bottom: 1px solid var(--ink);
}

.circle-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 3vw, 52px);
  margin: 0;
  padding: 28px 0 0;
  list-style: none;
}

.circle-steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: start;
}

.circle-steps > li > span {
  color: var(--blue);
  font-size: 10px;
}

.circle-steps h3,
.initiative-card h3,
.connect-card h3,
.newsletter-section h3 {
  margin: 0;
  font-family: var(--body);
  font-weight: 400;
  letter-spacing: -0.04em;
  text-transform: none;
}

.circle-steps h3 {
  font-size: clamp(21px, 1.75vw, 30px);
  line-height: 1.05;
}

.circle-steps p {
  max-width: 380px;
  margin: 11px 0 0;
  color: rgb(16 17 15 / 62%);
  font-size: 14px;
  line-height: 1.5;
}

.bridge-section {
  padding: clamp(90px, 10vw, 170px) 0;
  overflow: hidden;
  background: var(--coral);
}

.bridge-shell {
  display: grid;
  grid-template-columns: 0.5fr 2fr;
  gap: clamp(34px, 8vw, 150px);
}

.bridge-statement {
  max-width: 1260px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(42px, 5.8vw, 105px);
  font-weight: 400;
  line-height: 0.93;
  letter-spacing: -0.06em;
  text-transform: uppercase;
}

.bridge-statement em {
  display: inline-block;
  padding: 0.04em 0.13em 0.1em;
  background: var(--blue);
  color: var(--lime);
  font-style: normal;
  transform: rotate(-2deg);
}

.bridge-labels {
  grid-column: 2;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  margin-top: 60px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 400;
  text-transform: uppercase;
}

.bridge-labels i {
  height: 4px;
  background-image: radial-gradient(circle, rgb(16 17 15 / 24%) 1px, transparent 1.2px);
  background-position: center;
  background-size: 9px 4px;
}

.initiatives-section {
  padding: clamp(110px, 12vw, 210px) 0;
  background: var(--mist);
}

.initiatives-heading {
  display: grid;
  grid-template-columns: 1.7fr 0.7fr;
  gap: clamp(34px, 8vw, 150px);
  align-items: end;
  margin-bottom: clamp(64px, 8vw, 120px);
}

.initiatives-heading h2 {
  margin-top: 0;
}

.initiatives-heading > p {
  margin: 0;
  color: rgb(16 17 15 / 66%);
  font-size: 16px;
  line-height: 1.55;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 330px;
  gap: 16px;
}

.initiative-card {
  grid-column: span 3;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(24px, 2.7vw, 44px);
  overflow: hidden;
  border: 1px solid rgb(16 17 15 / 8%);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  transition:
    background-color 150ms ease,
    color 150ms ease,
    transform 150ms ease;
}

.initiative-card:hover {
  background: var(--blue);
  color: var(--lime);
  transform: translateY(-5px);
}

.initiative-wide {
  grid-column: span 6;
}

.initiative-card h3 {
  font-size: clamp(27px, 2.35vw, 42px);
  line-height: 1.02;
}

.initiative-card div > p {
  max-width: 520px;
  margin: 15px 0 0;
  color: rgb(16 17 15 / 62%);
  font-size: 15px;
  line-height: 1.5;
  transition: color 150ms ease;
}

.initiative-card:hover div > p {
  color: rgb(242 255 208 / 74%);
}

.card-index {
  opacity: 0.58;
}

.connect-section {
  padding: clamp(110px, 12vw, 210px) 0 clamp(90px, 10vw, 160px);
  background: var(--blue);
  color: #fff;
}

.connect-heading {
  display: block;
}

.connect-heading h2 {
  margin-top: 0;
  color: var(--lime);
}

.connect-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: clamp(70px, 8vw, 125px);
}

.connect-card {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  padding: clamp(26px, 3vw, 46px);
  border: 1px solid rgb(242 255 208 / 42%);
  border-radius: var(--radius);
  transition:
    background-color 170ms ease,
    color 170ms ease,
    transform 170ms ease;
}

.connect-card:hover {
  background: var(--lime);
  color: var(--blue);
  transform: translateY(-5px);
}

.connect-card > span {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.connect-card h3 {
  margin-top: auto;
  font-size: clamp(30px, 2.7vw, 48px);
  line-height: 1;
}

.newsletter-section {
  padding: clamp(100px, 11vw, 180px) 0;
  background: #fff;
}

.newsletter-shell {
  display: grid;
  grid-template-columns: 0.5fr 2fr;
  grid-template-areas:
    "eyebrow heading"
    ". form";
  gap: clamp(50px, 9vw, 160px);
  row-gap: clamp(36px, 5vw, 70px);
  align-items: start;
}

.newsletter-shell > .eyebrow {
  grid-area: eyebrow;
}

.newsletter-section h3 {
  grid-area: heading;
  max-width: 720px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(35px, 4.1vw, 70px);
  line-height: 1;
}

.signup-form {
  grid-area: form;
}

.signup-form label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.signup-fields {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  padding: 6px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: #fff;
}

.signup-fields input[type="email"] {
  min-width: 0;
  padding: 0 18px;
  outline: none;
  background: transparent;
  color: var(--ink);
  font-size: 17px;
}

.signup-fields input::placeholder {
  color: rgb(16 17 15 / 48%);
}

.signup-fields button {
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  font-size: 13px;
  font-weight: 400;
  cursor: pointer;
}

.form-note {
  margin: 12px 0 0;
  color: rgb(16 17 15 / 54%);
  font-size: 11px;
}

.form-note.is-confirmed {
  color: var(--blue);
  font-weight: 400;
}

.site-footer {
  padding: clamp(85px, 10vw, 150px) var(--page-pad) 30px;
  background: var(--ink);
  color: #fff;
}

.footer-top,
.footer-bottom {
  width: min(100%, 1800px);
  margin-inline: auto;
}

.footer-top {
  min-height: 360px;
  display: grid;
  place-items: center;
  text-align: center;
}

.footer-top > p {
  max-width: 1180px;
  margin: 0;
  color: #fff;
  font-family: var(--display);
  font-size: clamp(44px, 6.5vw, 118px);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -0.06em;
  text-transform: uppercase;
}

.footer-bottom {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 36px;
  align-items: end;
  margin-top: clamp(80px, 10vw, 160px);
  padding-top: 20px;
  border-top: 1px solid rgb(255 255 255 / 22%);
}

.footer-brand {
  width: clamp(135px, 12vw, 180px);
}

.footer-brand img {
  width: 100%;
  height: auto;
  filter: invert(1);
}

.footer-meta {
  display: grid;
  gap: 8px;
  justify-items: end;
  color: rgb(255 255 255 / 58%);
  font-family: var(--mono);
  font-size: 10px;
  text-align: right;
  text-transform: uppercase;
}

.footer-meta p {
  margin: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 650ms ease,
    transform 650ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.circle-steps .reveal:nth-child(2),
.connect-grid .reveal:nth-child(2) {
  transition-delay: 80ms;
}

.circle-steps .reveal:nth-child(3),
.connect-grid .reveal:nth-child(3) {
  transition-delay: 160ms;
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .primary-nav {
    display: none;
  }

  .hero h1 {
    font-size: clamp(62px, 9vw, 100px);
  }

  .hero-photo-one {
    width: min(45vw, 570px);
  }

  .hero-photo-two {
    width: min(58vw, 700px);
  }

  .hero-photo-three {
    width: min(72vw, 820px);
  }

  .initiative-card,
  .initiative-wide {
    grid-column: span 6;
  }

}

@media (max-width: 760px) {
  :root {
    --header-height: 68px;
  }

  .site-header {
    padding: 8px 10px;
  }

  .brand {
    width: 120px;
  }

  .header-cta {
    min-height: 46px;
    padding: 0 18px;
  }

  .hero {
    height: 270svh;
  }

  .hero-sticky {
    min-height: 650px;
  }

  .hero-copy {
    padding: calc(var(--header-height) + 20px) var(--page-pad) 36px;
  }

  .hero h1 {
    margin: 0;
    font-size: clamp(45px, 12.8vw, 74px);
    line-height: 0.9;
  }

  .hero-lede {
    width: min(94vw, 520px);
    margin-top: 28px;
    font-size: 17px;
  }

  .hero-photo {
    top: 51%;
  }

  .hero-photo-one {
    width: min(68vw, 430px);
  }

  .hero-photo-two {
    width: min(82vw, 500px);
  }

  .hero-photo-three {
    width: min(96vw, 580px);
  }

  .definition-section {
    height: 280svh;
    padding-top: 62svh;
  }

  .definition-sticky {
    min-height: 650px;
  }

  .definition-shell {
    padding: clamp(160px, 23vh, 220px) var(--page-pad) clamp(150px, 21vh, 220px);
  }

  .definition-shell h2 {
    font-size: clamp(50px, 14vw, 78px);
    line-height: 0.9;
  }

  .definition-copy {
    margin-top: 38px;
    font-size: 17px;
  }

  .circles-intro,
  .bridge-shell,
  .initiatives-heading,
  .connect-heading,
  .newsletter-shell {
    grid-template-columns: 1fr;
  }

  .circles-intro {
    gap: 34px;
  }

  .circles-eyebrow,
  .circles-content {
    grid-column: 1;
  }

  .newsletter-shell {
    grid-template-areas:
      "eyebrow"
      "heading"
      "form";
    row-gap: 28px;
  }

  .circles-content h2,
  .initiatives-heading h2,
  .connect-heading h2 {
    font-size: clamp(48px, 14vw, 78px);
  }

  .steps-heading {
    margin-top: 96px;
  }

  .circle-steps {
    grid-template-columns: 1fr;
    gap: 0;
    padding-top: 0;
  }

  .circle-steps li {
    padding: 24px 0;
    border-bottom: 1px solid var(--line);
  }

  .bridge-statement {
    margin-top: 18px;
    font-size: clamp(41px, 12vw, 68px);
  }

  .bridge-labels {
    grid-column: 1;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .bridge-labels i {
    width: 100%;
  }

  .initiatives-heading {
    align-items: start;
  }

  .initiatives-heading > p {
    max-width: 560px;
  }

  .bento-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 290px;
  }

  .initiative-card,
  .initiative-wide {
    grid-column: 1;
  }

  .connect-heading h2 {
    margin-top: 18px;
  }

  .connect-grid {
    grid-template-columns: 1fr;
  }

  .connect-card {
    min-height: 280px;
  }

  .newsletter-shell {
    align-items: start;
  }

  .signup-fields {
    grid-template-columns: 1fr;
    padding: 6px;
    border-radius: 24px;
  }

  .signup-fields input[type="email"] {
    min-height: 54px;
  }

  .signup-fields button {
    min-height: 54px;
  }

  .footer-top {
    min-height: 280px;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .footer-meta {
    justify-items: start;
    text-align: left;
  }
}

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

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

  .hero {
    --hero-photo-1: 1;
    --hero-photo-2: 1;
    --hero-photo-3: 1;
    --hero-scene-exit: 0;
  }

  .definition-section {
    --definition-title-opacity: 1;
    --definition-title-shift: 0px;
    --definition-copy-opacity: 1;
    background: var(--blue) !important;
    color: var(--lime) !important;
  }

  .definition-meaning span {
    opacity: 1;
    transform: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
