:root {
  --paper: #fff;
  --ink: #000;
  --quiet: #8a8a8a;
  --blue: #2478ff;
  --large: clamp(2.02rem, 8.3vw, 4.45rem);
  --small: clamp(1.02rem, 4.7vw, 1.55rem);
  --measure: 18.5rem;
  --ease: cubic-bezier(.2, .7, .2, 1);
}

* {
  box-sizing: border-box;
}

html {
  height: 100%;
  background: var(--paper);
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
  transition: background-color 1650ms var(--ease);
}

html.snap-paused {
  scroll-snap-type: none;
  scroll-behavior: auto;
}

body {
  min-height: 100%;
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Times New Roman", Times, serif;
  font-size: var(--small);
  font-weight: 400;
  line-height: 1.18;
  scroll-snap-type: y mandatory;
  text-transform: lowercase;
  transition: background-color 1650ms var(--ease), color 1650ms var(--ease);
}

body.snap-paused {
  scroll-snap-type: none;
  scroll-behavior: auto;
}

html.is-inverted,
body.is-inverted {
  background: #000;
}

body.is-inverted {
  color: #fff;
}

main {
  width: 100%;
}

.page {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5rem 2rem;
  scroll-snap-align: center;
  scroll-snap-stop: always;
}

.copy {
  width: min(100%, var(--measure));
  margin: 0 auto;
}

.large {
  font-size: var(--large);
  line-height: .98;
}

.small {
  font-size: var(--small);
}

p {
  margin: 0;
}

p + p {
  margin-top: 2.15em;
}

a {
  color: inherit;
}

.text-link {
  text-decoration: none;
  cursor: pointer;
}

.text-link::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  margin-top: .09em;
  background: currentColor;
  transform: scaleX(.72);
  transform-origin: left center;
  transition: transform 900ms var(--ease);
}

.text-link:hover::after,
.text-link:focus-visible::after {
  transform: scaleX(1);
}

.bracket-link {
  color: inherit;
  text-decoration: none;
}

.bracket-link {
  transition: color 900ms var(--ease);
}

.bracket-link:hover,
.bracket-link:focus-visible {
  color: var(--blue);
}

.section-apply-link {
  display: inline-block;
  min-width: 3.4em;
  text-align: left;
  transition: color 900ms var(--ease), opacity 850ms var(--ease), transform 850ms var(--ease);
}

.section-apply-link.is-symbol-exiting {
  opacity: 0;
  transform: translateY(.12em);
}

.section-apply-link.symbol-arriving {
  animation: symbol-arrive 1050ms var(--ease) both;
}

.apply-heading-link {
  color: inherit;
  text-decoration: none;
  transition: color 900ms var(--ease);
}

.apply-heading-link:hover,
.apply-heading-link:focus-visible {
  color: var(--blue);
}

.title-link {
  color: inherit;
  text-decoration: none;
  transition: color 900ms var(--ease);
}

.title-link:hover,
.title-link:focus-visible {
  color: var(--blue);
}

body.is-inverted .title-link:hover,
body.is-inverted .title-link:focus-visible,
body.is-inverted .bracket-link:hover,
body.is-inverted .bracket-link:focus-visible {
  color: #9cbfff;
}

.mode-home-link {
  position: fixed;
  left: 50%;
  bottom: calc(.75rem + env(safe-area-inset-bottom));
  z-index: 12;
  color: #fff;
  font-size: .86rem;
  line-height: 1;
  text-decoration: none;
  transform: translateX(-50%);
  transition: color 900ms var(--ease);
}

.mode-home-link:hover,
.mode-home-link:focus-visible {
  color: #9cbfff;
}

.opening-copy {
  width: min(100%, 20rem);
}

.opening-copy p {
  margin: 0;
}

.opening-line {
  display: block;
  opacity: 0;
  transform: translateY(.35em);
  animation: opening-rise 2400ms var(--ease) forwards;
}

.first-line {
  white-space: nowrap;
}

.second-line {
  margin-top: .12em;
  white-space: nowrap;
}

.word {
  display: inline-block;
  opacity: 0;
  transform: translateY(.3em);
  animation: opening-rise 2300ms var(--ease) forwards;
}

.first-line {
  animation-delay: 220ms;
}

.second-line {
  animation-delay: 1560ms;
}

.word:first-child {
  animation-delay: 1740ms;
}

.word:last-child {
  animation-delay: 2240ms;
}

.muted {
  color: var(--quiet);
}

.definition-copy {
  width: min(100%, 20rem);
  transform: translateY(-1.8rem);
  font-size: clamp(1.82rem, 8.7vw, 4.65rem);
  line-height: .95;
}

.def-term {
  margin: 0 0 .18em;
  font-size: 2.45em;
  line-height: .78;
}

.def-part {
  margin: 0 0 .62em;
  font-size: .72em;
  line-height: 1;
}

.def-list {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: .82em;
}

.def-list li {
  display: grid;
  grid-template-columns: .7em 1fr;
  column-gap: .55em;
  align-items: baseline;
  margin: 0;
}

.def-list li + li {
  margin-top: .42em;
}

.def-number {
  display: block;
}

.def-text {
  display: block;
  white-space: nowrap;
}

.definition {
  padding-left: 2.75rem;
  padding-right: 2.75rem;
}

.perspective .copy,
.translation .copy,
.page-sequence .copy,
.project-page .copy,
.edition .copy,
.lifestream .copy,
.people .copy,
.application-intro .copy {
  width: min(100%, 18rem);
}

.small p + p {
  margin-top: 1.55em;
}

.nowrap {
  white-space: nowrap;
}

.perspective .copy,
.translation .copy,
.page-sequence .copy,
.project-page .copy,
.edition .copy {
  line-height: 1.17;
}

.video-wrap {
  width: 100%;
  margin-top: 3.3rem;
  aspect-ratio: 16 / 9;
  background: #fafafa;
  outline: 1px solid #ececec;
  outline-offset: -1px;
}

.video-wrap iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.image-slot {
  width: min(100%, 12rem);
  aspect-ratio: 4 / 5;
  margin-top: 2.25rem;
  background: #fafafa;
  outline: 1px solid #ececec;
  outline-offset: -1px;
}

.project-image {
  display: block;
  width: min(100%, 13.5rem);
  height: auto;
  margin-top: 2.25rem;
  object-fit: cover;
}

.project-image-wide {
  width: min(100%, 15rem);
}

.project-image-square {
  width: min(100%, 10.5rem);
}

.bring-section .small p + p {
  margin-top: 1.05em;
}

.names {
  white-space: nowrap;
}

.people-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.6rem;
  margin-top: 0;
}

.person {
  margin: 0;
}

.person figcaption {
  margin-bottom: .85rem;
  text-align: center;
}

.person-slot {
  position: relative;
  width: min(100%, 7.2rem);
  aspect-ratio: 4 / 5;
  margin: 0 auto;
  background: #fafafa;
  outline: 1px solid #ededed;
  outline-offset: -1px;
  overflow: hidden;
}

.person-slot img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 0;
}

.person-slot img[src]:not([src=""]) {
  opacity: 1;
}

.people-subtext {
  margin-top: 3.4rem;
  text-align: center;
}

.people-subtext .reveal-word {
  transition-delay: calc(var(--delay, 0ms) + 2400ms);
}

.application-intro {
  min-height: 100vh;
  min-height: 100svh;
  padding-top: 4.6rem;
  padding-bottom: 3.2rem;
}

.application-intro p + p {
  margin-top: 1.85em;
}

a:focus-visible {
  outline: 1px solid currentColor;
  outline-offset: .32rem;
}

.contact-link {
  color: inherit;
  text-decoration: none;
  transition: color 900ms var(--ease);
}

.contact-link:hover,
.contact-link:focus-visible {
  color: var(--blue);
}

.apply-contact {
  line-height: 1.18;
}

.apply-contact .contact-link {
  display: block;
}

.contact-separator {
  display: none;
}

.progress-dots {
  position: fixed;
  right: .9rem;
  top: 50%;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: .55rem;
  transform: translateY(-50%);
}

.progress-dot {
  appearance: none;
  width: .32rem;
  height: .32rem;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(0, 0, 0, .16);
  cursor: pointer;
  transition: background-color 900ms var(--ease), transform 900ms var(--ease);
}

.progress-dot.is-active {
  background: rgba(0, 0, 0, .58);
  transform: scale(1.08);
}

.progress-dot:focus-visible {
  outline: 1px solid rgba(0, 0, 0, .38);
  outline-offset: .22rem;
}

body.is-inverted .progress-dot {
  background: rgba(255, 255, 255, .22);
}

body.is-inverted .progress-dot.is-active {
  background: rgba(255, 255, 255, .72);
}

.page-footer {
  position: fixed;
  left: 0;
  right: 0;
  bottom: .85rem;
  z-index: 11;
  text-align: center;
  font-size: .86rem;
  line-height: 1;
}

.page-footer a {
  color: inherit;
  text-decoration: none;
  transition: color 900ms var(--ease);
}

.page-footer a:hover,
.page-footer a:focus-visible {
  color: var(--blue);
}

.reveal-word,
.reveal-unit,
.stagger {
  display: inline-block;
  opacity: 0;
  transform: translateY(.72em);
  transition-property: opacity, transform;
  transition-duration: 2400ms;
  transition-timing-function: var(--ease);
  transition-delay: calc(var(--delay, 0ms) + var(--line-delay, 0ms));
}

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

.no-replay .reveal-word,
.no-replay .reveal-unit {
  opacity: 1;
  transform: none;
  transition: none;
}

.late-line .reveal-word,
.late-line.reveal-unit,
.delayed-phrase .reveal-word,
.delayed-phrase.reveal-unit {
  transition-delay: calc(var(--delay, 0ms) + 1600ms);
}

.only-felt .reveal-word {
  transition-delay: calc(var(--delay, 0ms) + 3000ms);
}

.only-felt {
  margin-top: .52em;
  padding-right: .12em;
  text-align: right;
  font-style: italic;
}

.perspective .reveal-text:nth-child(2) .reveal-word {
  transition-delay: calc(var(--delay, 0ms) + 1200ms);
}

.perspective .reveal-text:nth-child(3) .reveal-word {
  transition-delay: calc(var(--delay, 0ms) + 2400ms);
}

.perspective .reveal-text:nth-child(4) .reveal-word {
  transition-delay: calc(var(--delay, 0ms) + 3600ms);
}

.perspective .reveal-text:nth-child(5) .reveal-word {
  transition-delay: calc(var(--delay, 0ms) + 4050ms);
}

.perspective .reveal-text:nth-child(6) .reveal-word {
  transition-delay: calc(var(--delay, 0ms) + 4500ms);
}

.perspective .reveal-text:nth-child(7) .reveal-word {
  transition-delay: calc(var(--delay, 0ms) + 5900ms);
}

.perspective .reveal-text:nth-child(8) .reveal-word {
  transition-delay: calc(var(--delay, 0ms) + 7100ms);
}

.perspective .reveal-text:nth-child(8) .care-phrase .reveal-word {
  transition-delay: calc(var(--delay, 0ms) + 7500ms);
}

.perspective .reveal-text:nth-child(8) .care-phrase .reveal-word:nth-of-type(2) {
  transition-delay: calc(var(--delay, 0ms) + 7800ms);
}

.perspective .reveal-text:nth-child(9) .reveal-word {
  transition-delay: calc(var(--delay, 0ms) + 9300ms);
}

.perspective .strategy-line + .strategy-line {
  margin-top: .32em;
}

.translation .reveal-text:nth-child(2) .reveal-word {
  transition-delay: calc(var(--delay, 0ms) + 1500ms);
}

.translation .reveal-text:nth-child(3) .reveal-word {
  transition-delay: calc(var(--delay, 0ms) + 3600ms);
}

.edition .reveal-text:nth-child(2) .reveal-word {
  transition-delay: calc(var(--delay, 0ms) + 1500ms);
}

.edition .reveal-text:nth-child(3) .reveal-word {
  transition-delay: calc(var(--delay, 0ms) + 3600ms);
}

.application-intro .reveal-text:nth-child(2) .reveal-word {
  transition-delay: calc(var(--delay, 0ms) + 1400ms);
}

.application-intro .reveal-text:nth-child(3) .reveal-word {
  transition-delay: calc(var(--delay, 0ms) + 3000ms);
}

.application-intro .reveal-text:nth-child(4) .reveal-word {
  transition-delay: calc(var(--delay, 0ms) + 4300ms);
}

.video-wrap.reveal-unit {
  display: block;
}

.people-grid.reveal-unit {
  display: grid;
}

.people .people-grid.reveal-unit {
  transition-delay: 300ms;
}

@keyframes opening-rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes symbol-arrive {
  from {
    opacity: 0;
    transform: translateY(.12em);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (min-width: 36rem) {
  .definition-copy {
    width: min(100%, 34rem);
    font-size: clamp(2.6rem, 7.4vw, 3.95rem);
  }
}

@media (min-width: 48rem) {
  :root {
    --measure: 32rem;
    --large: 4.35rem;
    --small: 1.28rem;
  }

  .page {
    padding: 7rem 4.25rem;
  }

  .application-intro {
    min-height: 100vh;
    min-height: 100svh;
    padding-bottom: 3rem;
  }

  .opening-copy {
    width: 32rem;
  }

  .definition-copy {
    width: 49rem;
    transform: translateY(-.9rem);
    font-size: 3.95rem;
  }

  .perspective .copy,
  .translation .copy,
  .page-sequence .copy,
  .project-page .copy,
  .edition .copy,
  .lifestream .copy,
  .people .copy,
  .application-intro .copy {
    width: 28rem;
  }

  .apply-contact .contact-link,
  .contact-separator {
    display: inline;
  }

  .people-grid {
    gap: 2.2rem;
    width: 19rem;
    margin-left: auto;
    margin-right: auto;
  }

  .person-slot {
    width: 7.4rem;
  }

}

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

  body {
    scroll-snap-type: none;
  }

  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-delay: 0ms !important;
    transition-duration: 1ms !important;
    transition-delay: 0ms !important;
  }

  .reveal,
  .stagger,
  .reveal-word,
  .reveal-unit,
  .opening-line,
  .word {
    opacity: 1;
    transform: none;
  }
}
