@font-face {
  font-family: "Zen Kaku Local";
  src: url("./assets/fonts/ZenKakuGothicNew-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Zen Kaku Local";
  src: url("./assets/fonts/ZenKakuGothicNew-Medium.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Zen Kaku Local";
  src: url("./assets/fonts/ZenKakuGothicNew-Bold.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Zen Old Mincho Local";
  src: url("./assets/fonts/ZenOldMincho-Bold.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Josefin Sans Local";
  src: url("./assets/fonts/JosefinSans.ttf") format("truetype");
  font-style: normal;
  font-weight: 100 700;
  font-display: swap;
}

:root {
  --ink: #12091b;
  --ink-soft: #25102d;
  --paper: #fffafb;
  --paper-lilac: #f1edff;
  --white: #ffffff;
  --pink: #f54a9f;
  --rose: #ff7aae;
  --magenta: #cf2f92;
  --violet: #7654e8;
  --ice: #c8f1ff;
  --gold: #edc98d;
  --line-dark: rgba(18, 9, 27, 0.18);
  --line-light: rgba(255, 255, 255, 0.22);
  --page: 1440px;
  --header-height: 82px;
  --hero-x: 0px;
  --hero-y: 0px;
  --hero-scroll: 0px;
}

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

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

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  font-family: "Zen Kaku Local", sans-serif;
  font-size: 16px;
  line-height: 1.85;
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
summary {
  font: inherit;
}

button {
  color: inherit;
}

::selection {
  color: var(--white);
  background: var(--magenta);
}

.preloader {
  display: none;
}

.js .preloader {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-content: center;
  justify-items: center;
  color: var(--white);
  background: var(--ink);
  transition: opacity 0.65s ease, visibility 0.65s ease;
  animation: preloaderExit 0.65s ease 1.05s forwards;
}

.js .preloader.is-gone {
  visibility: hidden;
  pointer-events: none;
  opacity: 0;
  animation: none;
}

.preloader-word {
  font-family: "Josefin Sans Local", sans-serif;
  font-size: 88px;
  font-weight: 300;
  line-height: 1;
}

.preloader-line {
  width: 220px;
  height: 1px;
  margin-top: 24px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.18);
}

.preloader-line span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--rose);
  transform-origin: left;
  animation: loaderLine 1.15s ease-in-out infinite;
}

.preloader p {
  margin: 12px 0 0;
  font-family: "Josefin Sans Local", sans-serif;
  font-size: 10px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  height: var(--header-height);
  padding: 0 34px;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  transition: color 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.site-header.is-scrolled,
body.menu-open .site-header {
  color: var(--ink);
  border-color: rgba(18, 9, 27, 0.12);
  background: rgba(255, 250, 251, 0.94);
  backdrop-filter: blur(16px);
}

.wordmark {
  display: inline-flex;
  gap: 11px;
  align-items: center;
  justify-self: start;
  width: max-content;
}

.wordmark-symbol {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  font-family: "Zen Old Mincho Local", serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  border: 1px solid currentColor;
  transform: rotate(-8deg);
}

.wordmark-symbol::first-letter {
  color: var(--rose);
}

.wordmark-text {
  display: grid;
  line-height: 1;
}

.wordmark-text strong {
  font-family: "Josefin Sans Local", sans-serif;
  font-size: 26px;
  font-weight: 500;
}

.wordmark-text small {
  margin-top: 5px;
  font-family: "Josefin Sans Local", sans-serif;
  font-size: 8px;
  font-weight: 500;
}

.desktop-nav {
  display: flex;
  gap: 28px;
  align-items: center;
  justify-content: center;
}

.desktop-nav a {
  position: relative;
  font-family: "Josefin Sans Local", sans-serif;
  font-size: 13px;
  font-weight: 500;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-self: end;
}

.header-entry {
  display: inline-flex;
  gap: 26px;
  align-items: center;
  justify-content: space-between;
  min-width: 136px;
  height: 42px;
  padding: 0 15px;
  color: var(--ink);
  font-family: "Josefin Sans Local", sans-serif;
  font-size: 13px;
  font-weight: 700;
  background: var(--white);
  transition: color 0.25s ease, background 0.25s ease;
}

.site-header.is-scrolled .header-entry,
body.menu-open .header-entry {
  color: var(--white);
  background: var(--ink);
}

.header-entry:hover,
.header-entry:focus-visible {
  color: var(--white);
  background: var(--pink);
}

.menu-toggle {
  display: none;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  color: inherit;
  font-size: 28px;
  line-height: 1;
  border: 1px solid currentColor;
  border-radius: 0;
  background: transparent;
  cursor: pointer;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  align-content: center;
  padding: 100px 28px 38px;
  color: var(--ink);
  background: var(--paper);
  visibility: hidden;
  opacity: 0;
  transform: translateY(-12px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}

.mobile-menu.is-open {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu nav {
  width: min(620px, 100%);
  margin: 0 auto;
  border-top: 1px solid var(--line-dark);
}

.mobile-menu nav a {
  display: flex;
  gap: 24px;
  align-items: baseline;
  padding: 14px 0 9px;
  font-family: "Josefin Sans Local", sans-serif;
  font-size: 44px;
  font-weight: 500;
  line-height: 1.2;
  border-bottom: 1px solid var(--line-dark);
}

.mobile-menu nav span {
  font-size: 11px;
}

.mobile-menu > p {
  width: min(620px, 100%);
  margin: 24px auto 0;
  font-family: "Josefin Sans Local", sans-serif;
  font-size: 11px;
}

.hero {
  position: relative;
  isolation: isolate;
  height: calc(100svh - 44px);
  min-height: 600px;
  max-height: 930px;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.hero-media,
.hero-shade,
.hero-characters,
.hero-outline {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: -3;
  overflow: hidden;
}

.hero-media img {
  width: 100%;
  height: 108%;
  object-fit: cover;
  object-position: center;
  transform: translate3d(var(--hero-x), calc(var(--hero-y) + var(--hero-scroll)), 0) scale(1.04);
  animation: heroBreathe 14s ease-in-out infinite alternate;
}

.hero-shade {
  z-index: -2;
  background: rgba(10, 4, 19, 0.34);
  box-shadow: inset 0 -180px 140px rgba(10, 4, 19, 0.38), inset 220px 0 220px rgba(10, 4, 19, 0.34);
}

.hero-outline {
  z-index: -1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 44px;
  color: transparent;
  font-family: "Josefin Sans Local", sans-serif;
  font-size: 246px;
  font-weight: 700;
  line-height: 0.7;
  white-space: nowrap;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.22);
}

.hero-characters {
  z-index: 2;
  pointer-events: none;
  transform: translate3d(calc(var(--hero-x) * -0.35), calc(var(--hero-y) * -0.35), 0);
}

.hero-talent {
  position: absolute;
  bottom: -6.5%;
  width: auto;
  max-width: none;
  object-fit: contain;
  filter: drop-shadow(0 24px 22px rgba(12, 4, 20, 0.36));
  transform: translateX(-50%);
  transform-origin: bottom center;
  animation: talentFloat 7s ease-in-out infinite;
}

.talent-1 {
  left: 43%;
  z-index: 2;
  height: 75%;
  animation-delay: -1.5s;
}

.talent-2 {
  left: 55%;
  z-index: 4;
  height: 84%;
  animation-delay: -4s;
}

.talent-3 {
  left: 67%;
  z-index: 3;
  height: 79%;
  animation-delay: -2.6s;
}

.talent-4 {
  left: 79%;
  z-index: 1;
  height: 73%;
  animation-delay: -5.2s;
}

.hero-copy {
  position: absolute;
  top: 19%;
  left: 5%;
  z-index: 7;
  width: min(440px, 38%);
  text-shadow: 0 2px 28px rgba(10, 4, 19, 0.48);
}

.hero-index {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin: 0 0 18px;
  font-family: "Josefin Sans Local", sans-serif;
  font-size: 11px;
  font-weight: 700;
}

.hero h1 {
  display: flex;
  gap: 16px;
  align-items: flex-end;
  margin: 0;
  font-family: "Josefin Sans Local", sans-serif;
  font-weight: 300;
  line-height: 0.82;
}

.hero h1 > span {
  font-size: 106px;
}

.hero h1 small {
  padding-bottom: 8px;
  font-family: "Zen Kaku Local", sans-serif;
  font-size: 12px;
  font-weight: 500;
}

.hero-message {
  margin: 30px 0 0;
  font-family: "Zen Old Mincho Local", serif;
  font-size: 43px;
  font-weight: 700;
  line-height: 1.42;
}

.hero-entry {
  display: grid;
  grid-template-columns: 1fr 56px;
  align-items: center;
  width: 286px;
  height: 58px;
  margin-top: 36px;
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 15px 40px rgba(10, 4, 19, 0.18);
  transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.hero-entry span {
  padding-left: 20px;
  font-size: 14px;
  font-weight: 700;
}

.hero-entry b {
  display: grid;
  place-items: center;
  height: 100%;
  color: var(--white);
  font-size: 20px;
  background: var(--ink);
  transition: background 0.25s ease;
}

.hero-entry:hover,
.hero-entry:focus-visible {
  color: var(--white);
  background: var(--pink);
  transform: translateY(-3px);
}

.hero-entry:hover b,
.hero-entry:focus-visible b {
  background: var(--violet);
}

.hero-note {
  position: absolute;
  top: 50%;
  right: 29px;
  z-index: 7;
  display: flex;
  gap: 16px;
  align-items: center;
  font-size: 10px;
  writing-mode: vertical-rl;
  transform: translateY(-50%);
}

.hero-note span {
  font-family: "Josefin Sans Local", sans-serif;
  font-weight: 700;
}

.hero-note p {
  margin: 0;
  opacity: 0.74;
}

.scroll-cue {
  position: absolute;
  bottom: 26px;
  left: 5%;
  z-index: 8;
  display: flex;
  gap: 12px;
  align-items: center;
  font-family: "Josefin Sans Local", sans-serif;
  font-size: 10px;
  text-transform: uppercase;
}

.scroll-cue i {
  position: relative;
  display: block;
  width: 58px;
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.36);
}

.scroll-cue i::after {
  position: absolute;
  inset: 0;
  content: "";
  background: var(--white);
  animation: scrollLine 1.8s ease-in-out infinite;
}

.section-code {
  display: flex;
  gap: 12px;
  align-items: center;
  margin: 0 0 42px;
  color: var(--ink);
  font-family: "Josefin Sans Local", sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.section-code span {
  display: grid;
  place-items: center;
  width: 31px;
  height: 31px;
  color: var(--white);
  background: var(--ink);
}

.section-code.light {
  color: var(--white);
}

.section-code.light span {
  color: var(--ink);
  background: var(--white);
}

.manifesto {
  display: grid;
  grid-template-columns: 53% 47%;
  min-height: 860px;
  overflow: hidden;
  background: var(--paper);
}

.manifesto-copy {
  align-self: center;
  max-width: 820px;
  padding: 130px 7vw;
}

.manifesto h2,
.growth h2,
.backstage h2,
.journey h2,
.entry h2 {
  margin: 0;
  font-family: "Zen Old Mincho Local", serif;
  font-weight: 700;
  line-height: 1.42;
}

.manifesto h2 {
  max-width: 680px;
  font-size: 62px;
}

.manifesto h2 span {
  display: block;
  white-space: nowrap;
}

.manifesto-lead {
  margin: 44px 0 22px;
  font-size: 19px;
  font-weight: 700;
  line-height: 2;
}

.manifesto-copy > p:not(.section-code):not(.manifesto-lead) {
  max-width: 640px;
  margin: 0;
  color: #5b5060;
}

.manifesto-signature {
  display: flex;
  gap: 18px;
  align-items: baseline;
  margin-top: 42px;
  padding-top: 20px;
  font-family: "Josefin Sans Local", sans-serif;
  border-top: 1px solid var(--line-dark);
}

.manifesto-signature strong {
  font-size: 22px;
}

.manifesto-signature span {
  color: var(--magenta);
  font-size: 13px;
  font-weight: 700;
}

.manifesto-visual {
  position: relative;
  min-height: 860px;
  overflow: hidden;
  color: var(--ink);
  background: var(--paper-lilac);
  border-left: 1px solid var(--ink);
}

.manifesto-color {
  position: absolute;
  top: 0;
  right: 0;
  width: 22%;
  height: 100%;
  background: var(--pink);
}

.manifesto-visual > p {
  position: absolute;
  top: 66px;
  left: 6%;
  z-index: 1;
  margin: 0;
  color: transparent;
  font-family: "Josefin Sans Local", sans-serif;
  font-size: 126px;
  font-weight: 700;
  line-height: 0.82;
  -webkit-text-stroke: 1px rgba(18, 9, 27, 0.46);
}

.manifesto-visual img {
  position: absolute;
  right: -7%;
  bottom: -11%;
  z-index: 2;
  width: auto;
  max-width: none;
  height: 110%;
  filter: drop-shadow(0 22px 22px rgba(38, 24, 61, 0.22));
}

.manifesto-visual > span {
  position: absolute;
  bottom: 28px;
  left: 28px;
  z-index: 3;
  font-family: "Josefin Sans Local", sans-serif;
  font-size: 11px;
  font-weight: 700;
  writing-mode: vertical-rl;
}

.possibility {
  color: var(--white);
  background: var(--ink);
}

.section-heading {
  display: grid;
  grid-template-columns: 220px 1fr;
  width: min(var(--page), 100%);
  margin: 0 auto;
  padding: 126px 52px 72px;
}

.section-heading .section-code {
  margin: 9px 0 0;
}

.section-heading > div {
  display: flex;
  gap: 40px;
  align-items: flex-end;
  justify-content: space-between;
}

.section-heading h2 {
  margin: 0;
  font-family: "Josefin Sans Local", sans-serif;
  font-size: 102px;
  font-weight: 600;
  line-height: 0.86;
}

.section-heading > div > p {
  max-width: 250px;
  margin: 0 0 7px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
}

.possibility-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.possibility-panel {
  position: relative;
  min-width: 0;
  min-height: 720px;
  overflow: hidden;
  color: var(--ink);
  border-right: 1px solid rgba(18, 9, 27, 0.52);
}

.possibility-panel:last-child {
  border-right: 0;
}

.panel-voice {
  background: #ffd5e7;
}

.panel-story {
  color: var(--white);
  background: #57113f;
}

.panel-dream {
  background: #dcd3ff;
}

.panel-light {
  background: var(--ice);
}

.panel-meta {
  position: absolute;
  top: 26px;
  right: 24px;
  left: 24px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: "Josefin Sans Local", sans-serif;
}

.panel-meta span {
  font-size: 12px;
}

.panel-meta small {
  font-size: 12px;
  font-weight: 700;
}

.possibility-panel h3 {
  position: absolute;
  top: 80px;
  left: 24px;
  z-index: 3;
  margin: 0;
  font-family: "Zen Old Mincho Local", serif;
  font-size: 35px;
  line-height: 1.45;
}

.possibility-panel img {
  position: absolute;
  right: 50%;
  bottom: -8%;
  z-index: 2;
  width: auto;
  max-width: none;
  height: 84%;
  filter: drop-shadow(0 20px 18px rgba(18, 9, 27, 0.22));
  transform: translateX(50%);
  transition: transform 0.7s cubic-bezier(0.2, 0.7, 0, 1);
}

.possibility-panel:hover img {
  transform: translateX(50%) scale(1.045);
}

.possibility-panel > p {
  position: absolute;
  right: 22px;
  bottom: 18px;
  left: 22px;
  z-index: 4;
  margin: 0;
  font-family: "Josefin Sans Local", sans-serif;
  font-size: 9px;
  font-weight: 700;
  text-align: center;
}

.growth {
  padding: 138px 6vw 150px;
  background: var(--paper);
}

.growth-heading,
.growth-list {
  width: min(1260px, 100%);
  margin-right: auto;
  margin-left: auto;
}

.growth-heading {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 70px;
  align-items: end;
  margin-bottom: 88px;
}

.growth-heading .section-code {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.growth h2 {
  font-size: 73px;
}

.growth-heading > p:last-child {
  max-width: 560px;
  margin: 0 0 9px;
  color: #5b5060;
}

.growth-list {
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--ink);
}

.growth-list li {
  display: grid;
  grid-template-columns: 94px minmax(260px, 0.9fr) minmax(320px, 1.25fr);
  gap: 38px;
  align-items: center;
  min-height: 168px;
  border-bottom: 1px solid var(--line-dark);
}

.growth-list > li > span {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  color: var(--white);
  font-family: "Josefin Sans Local", sans-serif;
  font-size: 14px;
  background: var(--ink);
}

.growth-list small {
  color: var(--magenta);
  font-family: "Josefin Sans Local", sans-serif;
  font-size: 10px;
  font-weight: 700;
}

.growth-list h3 {
  margin: 7px 0 0;
  font-size: 25px;
  line-height: 1.45;
}

.growth-list p {
  margin: 0;
  color: #655969;
}

.backstage {
  position: relative;
  isolation: isolate;
  min-height: 920px;
  overflow: hidden;
  color: var(--white);
  background: #0d0711;
}

.backstage-media {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  width: 48%;
  overflow: hidden;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.backstage-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 34% center;
  opacity: 0.48;
}

.backstage-media::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background: rgba(12, 5, 16, 0.38);
  box-shadow: inset -100px 0 120px rgba(13, 7, 17, 0.7);
}

.backstage-talent {
  position: absolute;
  right: 47%;
  bottom: -9%;
  z-index: 2;
  width: auto;
  max-width: none;
  height: 108%;
  filter: drop-shadow(0 26px 28px rgba(0, 0, 0, 0.44));
  transform: translateX(50%);
}

.backstage-content {
  width: 52%;
  margin-left: 48%;
  padding: 126px 6vw 110px;
}

.backstage h2 {
  max-width: 680px;
  font-size: 60px;
}

.backstage-lead {
  max-width: 580px;
  margin: 34px 0 55px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
}

.support-lines {
  max-width: 670px;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.42);
}

.support-lines li {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  align-items: center;
  min-height: 74px;
  border-bottom: 1px solid var(--line-light);
}

.support-lines span {
  color: var(--rose);
  font-family: "Josefin Sans Local", sans-serif;
  font-size: 11px;
  font-weight: 700;
}

.support-lines strong {
  font-size: 15px;
}

.journey {
  position: relative;
  padding: 142px 5vw 150px;
  overflow: hidden;
  background: var(--paper-lilac);
}

.journey::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 38%;
  height: 1px;
  content: "";
  background: var(--pink);
}

.journey-inner {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(620px, 1.28fr);
  gap: clamp(70px, 9vw, 150px);
  align-items: start;
  width: min(1320px, 100%);
  margin: 0 auto;
}

.journey-heading .section-code {
  margin-bottom: 72px;
}

.journey-kicker {
  margin: 0 0 19px;
  color: #a52b70;
  font-family: "Josefin Sans Local", sans-serif;
  font-size: 11px;
  font-weight: 700;
}

.journey h2 {
  font-size: 56px;
  line-height: 1.46;
}

.journey-intro {
  max-width: 430px;
  margin: 35px 0 0;
  color: #5e5265;
  font-size: 15px;
}

.journey-steps {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--ink);
}

.journey-steps li {
  position: relative;
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) 14px;
  gap: 26px;
  align-items: start;
  min-height: 172px;
  padding: 33px 4px 31px;
  border-bottom: 1px solid var(--ink);
}

.journey-step-number {
  display: block;
  padding-top: 4px;
  color: #a52b70;
  font-family: "Josefin Sans Local", sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
}

.journey-step-copy small {
  display: block;
  color: #7b7080;
  font-family: "Josefin Sans Local", sans-serif;
  font-size: 9px;
  font-weight: 700;
}

.journey-steps h3 {
  margin: 7px 0 10px;
  font-family: "Zen Old Mincho Local", serif;
  font-size: 26px;
}

.journey-steps p {
  max-width: 540px;
  margin: 0;
  color: #5f5365;
  font-size: 14px;
}

.journey-step-mark {
  align-self: center;
  width: 9px;
  height: 9px;
  border: 1px solid #a52b70;
  transform: rotate(45deg);
}

.journey-steps li:last-child .journey-step-mark {
  background: var(--pink);
  border-color: var(--pink);
}

.faq {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(520px, 1.3fr);
  gap: 80px;
  padding: 134px max(5vw, 24px) 145px;
  color: var(--white);
  background: var(--ink);
}

.faq-heading {
  max-width: 460px;
}

.faq-heading h2 {
  margin: 0;
  font-family: "Josefin Sans Local", sans-serif;
  font-size: 116px;
  font-weight: 500;
  line-height: 0.9;
}

.faq-heading > p:last-child {
  margin: 34px 0 0;
  color: rgba(255, 255, 255, 0.66);
}

.faq-list {
  border-top: 1px solid rgba(255, 255, 255, 0.44);
}

.faq details {
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
}

.faq summary {
  display: grid;
  grid-template-columns: 50px 1fr 30px;
  gap: 20px;
  align-items: center;
  min-height: 98px;
  cursor: pointer;
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary > span {
  color: var(--rose);
  font-family: "Josefin Sans Local", sans-serif;
  font-size: 12px;
  font-weight: 700;
}

.faq summary > b {
  justify-self: end;
  font-size: 24px;
  font-weight: 300;
  transition: transform 0.25s ease;
}

.faq details[open] summary > b {
  transform: rotate(45deg);
}

.faq details > p {
  margin: -5px 50px 30px 70px;
  color: rgba(255, 255, 255, 0.68);
}

.entry {
  position: relative;
  isolation: isolate;
  display: grid;
  place-items: center;
  min-height: 720px;
  overflow: hidden;
  color: var(--ink);
  background: var(--pink);
}

.entry::before,
.entry::after {
  position: absolute;
  z-index: -1;
  content: "";
  background: var(--paper);
}

.entry::before {
  top: 0;
  left: 7%;
  width: 1px;
  height: 100%;
}

.entry::after {
  right: 7%;
  bottom: 0;
  width: 1px;
  height: 100%;
}

.entry-outline {
  position: absolute;
  top: 34px;
  left: 50%;
  color: transparent;
  font-family: "Josefin Sans Local", sans-serif;
  font-size: 190px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  transform: translateX(-50%);
  -webkit-text-stroke: 1px rgba(18, 9, 27, 0.32);
}

.entry-inner {
  display: grid;
  justify-items: center;
  width: min(860px, calc(100% - 40px));
  padding-top: 102px;
  text-align: center;
}

.entry-inner .section-code {
  margin-bottom: 30px;
}

.entry h2 {
  font-size: 64px;
}

.entry-inner > p:not(.section-code) {
  margin: 30px 0 38px;
  font-size: 17px;
  font-weight: 500;
}

.entry-status {
  display: grid;
  place-items: center;
  min-width: 360px;
  min-height: 64px;
  padding: 16px 28px;
  color: var(--white);
  font-weight: 700;
  background: var(--ink);
  border: 1px solid var(--ink);
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 70px;
  align-items: end;
  padding: 70px 5vw 42px;
  color: var(--white);
  background: #08040c;
}

.footer-wordmark {
  font-family: "Josefin Sans Local", sans-serif;
  font-size: 72px;
  font-weight: 300;
  line-height: 1;
}

.site-footer p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.52);
  font-family: "Josefin Sans Local", sans-serif;
  font-size: 10px;
}

.footer-links {
  display: flex;
  gap: 24px;
  padding-bottom: 6px;
  font-family: "Josefin Sans Local", sans-serif;
  font-size: 11px;
}

.site-footer > small {
  padding-bottom: 6px;
  color: rgba(255, 255, 255, 0.5);
  font-family: "Josefin Sans Local", sans-serif;
  font-size: 10px;
}

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

.js .reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.2, 0.7, 0, 1);
}

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

@keyframes loaderLine {
  0% {
    transform: scaleX(0);
  }
  48% {
    transform: scaleX(1);
  }
  100% {
    transform: translateX(100%) scaleX(0.25);
  }
}

@keyframes preloaderExit {
  to {
    visibility: hidden;
    pointer-events: none;
    opacity: 0;
  }
}

@keyframes heroBreathe {
  from {
    transform: translate3d(var(--hero-x), calc(var(--hero-y) + var(--hero-scroll)), 0) scale(1.04);
  }
  to {
    transform: translate3d(var(--hero-x), calc(var(--hero-y) + var(--hero-scroll)), 0) scale(1.08);
  }
}

@keyframes talentFloat {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-7px);
  }
}

@keyframes scrollLine {
  0% {
    transform: translateX(-100%);
  }
  55%,
  100% {
    transform: translateX(100%);
  }
}

@media (max-width: 1380px) {
  .manifesto h2 {
    font-size: 48px;
  }

  .growth h2,
  .journey h2 {
    font-size: 56px;
  }

  .backstage h2 {
    font-size: 50px;
  }
}

@media (max-width: 1180px) {
  .site-header {
    padding: 0 24px;
  }

  .desktop-nav {
    gap: 20px;
  }

  .hero-outline {
    font-size: 190px;
  }

  .hero-copy {
    left: 4%;
    width: 400px;
  }

  .hero h1 > span {
    font-size: 88px;
  }

  .hero-message {
    font-size: 38px;
  }

  .talent-1 {
    left: 44%;
    height: 70%;
  }

  .talent-2 {
    left: 57%;
    height: 80%;
  }

  .talent-3 {
    left: 70%;
    height: 74%;
  }

  .talent-4 {
    left: 83%;
    height: 68%;
  }

  .manifesto h2 {
    font-size: 46px;
  }

  .manifesto-copy {
    padding-right: 5vw;
    padding-left: 5vw;
  }

  .manifesto-visual > p {
    font-size: 96px;
  }

  .section-heading {
    grid-template-columns: 170px 1fr;
  }

  .section-heading h2 {
    font-size: 82px;
  }

  .possibility-panel {
    min-height: 620px;
  }

  .possibility-panel h3 {
    font-size: 29px;
  }

  .growth h2,
  .journey h2 {
    font-size: 52px;
  }

  .backstage h2 {
    font-size: 46px;
  }

  .growth-list li {
    grid-template-columns: 76px minmax(230px, 0.9fr) minmax(280px, 1.25fr);
    gap: 26px;
  }
}

@media (max-width: 960px) {
  :root {
    --header-height: 74px;
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: grid;
  }

  .hero-copy {
    top: 15%;
    width: 360px;
  }

  .hero h1 > span {
    font-size: 78px;
  }

  .hero-message {
    font-size: 34px;
  }

  .hero-outline {
    font-size: 150px;
  }

  .talent-1 {
    left: 40%;
    height: 64%;
  }

  .talent-2 {
    left: 55%;
    height: 73%;
  }

  .talent-3 {
    left: 70%;
    height: 68%;
  }

  .talent-4 {
    left: 85%;
    height: 63%;
  }

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

  .manifesto-copy {
    max-width: 760px;
    padding: 110px 7vw;
  }

  .manifesto-visual {
    min-height: 720px;
    border-top: 1px solid var(--ink);
    border-left: 0;
  }

  .manifesto-visual img {
    right: 5%;
    height: 112%;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 38px;
    padding: 108px 30px 60px;
  }

  .section-heading > div {
    align-items: flex-end;
  }

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

  .possibility-panel {
    min-height: 650px;
    border-bottom: 1px solid var(--ink);
  }

  .possibility-panel:nth-child(2) {
    border-right: 0;
  }

  .growth-heading {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .journey-inner {
    grid-template-columns: 1fr;
    gap: 72px;
  }

  .journey-heading {
    max-width: 680px;
  }

  .growth-list li {
    grid-template-columns: 72px minmax(220px, 0.8fr) 1.2fr;
  }

  .backstage-media {
    width: 42%;
  }

  .backstage-content {
    width: 62%;
    margin-left: 38%;
    padding-right: 4vw;
    padding-left: 5vw;
    background: rgba(13, 7, 17, 0.78);
  }

  .faq {
    grid-template-columns: 1fr;
    gap: 70px;
  }

  .faq-heading h2 {
    font-size: 96px;
  }

  .entry-outline {
    font-size: 140px;
  }

  .site-footer {
    grid-template-columns: 1fr auto;
  }

  .site-footer > small {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  :root {
    --header-height: 66px;
  }

  body {
    font-size: 15px;
  }

  .site-header {
    padding: 0 14px;
  }

  .wordmark {
    gap: 8px;
  }

  .wordmark-symbol {
    width: 31px;
    height: 31px;
    font-size: 21px;
  }

  .wordmark-text strong {
    font-size: 23px;
  }

  .wordmark-text small {
    display: none;
  }

  .header-entry {
    display: none;
  }

  .menu-toggle {
    width: 38px;
    height: 38px;
  }

  .mobile-menu nav a {
    padding: 11px 0 7px;
    font-size: 36px;
  }

  .preloader-word {
    font-size: 66px;
  }

  .hero {
    height: calc(100svh - 40px);
    min-height: 520px;
    max-height: 760px;
  }

  .hero-media img {
    height: 103%;
    object-position: 52% center;
  }

  .hero-shade {
    background: rgba(10, 4, 19, 0.42);
    box-shadow: inset 0 140px 110px rgba(10, 4, 19, 0.34), inset 0 -100px 90px rgba(10, 4, 19, 0.46);
  }

  .hero-outline {
    align-items: center;
    padding: 110px 0 0;
    font-size: 92px;
    opacity: 0.7;
  }

  .hero-copy {
    top: 88px;
    left: 20px;
    width: calc(100% - 40px);
  }

  .hero-index {
    width: 100%;
    margin-bottom: 12px;
    font-size: 9px;
  }

  .hero h1 {
    gap: 10px;
  }

  .hero h1 > span {
    font-size: 62px;
  }

  .hero h1 small {
    padding-bottom: 5px;
    font-size: 10px;
  }

  .hero-message {
    margin-top: 17px;
    font-size: 29px;
    line-height: 1.35;
  }

  .hero-entry {
    grid-template-columns: 1fr 48px;
    width: 238px;
    height: 51px;
    margin-top: 19px;
  }

  .hero-entry span {
    padding-left: 15px;
    font-size: 12px;
  }

  .hero-characters {
    transform: none;
  }

  .hero-talent {
    bottom: -4%;
  }

  .talent-1 {
    left: 12%;
    height: 49%;
  }

  .talent-2 {
    left: 38%;
    height: 57%;
  }

  .talent-3 {
    left: 64%;
    height: 53%;
  }

  .talent-4 {
    left: 88%;
    height: 49%;
  }

  .hero-note,
  .scroll-cue {
    display: none;
  }

  .section-code {
    margin-bottom: 31px;
  }

  .manifesto-copy {
    padding: 88px 20px 94px;
  }

  .manifesto h2 {
    font-size: 40px;
    line-height: 1.5;
  }

  .manifesto-lead {
    margin-top: 34px;
    font-size: 16px;
  }

  .manifesto-signature {
    display: grid;
    gap: 2px;
  }

  .manifesto-visual {
    min-height: 570px;
  }

  .manifesto-visual > p {
    top: 38px;
    left: 20px;
    font-size: 72px;
  }

  .manifesto-visual img {
    right: -29%;
    bottom: -7%;
    height: 103%;
  }

  .manifesto-color {
    width: 27%;
  }

  .section-heading {
    gap: 30px;
    padding: 88px 20px 48px;
  }

  .section-heading > div {
    display: grid;
    gap: 26px;
  }

  .section-heading h2 {
    font-size: 56px;
  }

  .section-heading > div > p {
    max-width: none;
  }

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

  .possibility-panel {
    min-height: 570px;
    border-right: 0;
  }

  .possibility-panel h3 {
    font-size: 31px;
  }

  .possibility-panel img {
    height: 82%;
  }

  .growth {
    padding: 88px 20px 96px;
  }

  .growth-heading {
    margin-bottom: 58px;
  }

  .growth h2,
  .journey h2,
  .backstage h2,
  .entry h2 {
    font-size: 43px;
  }

  .growth-list li {
    grid-template-columns: 46px 1fr;
    gap: 18px;
    min-height: auto;
    padding: 26px 0;
  }

  .growth-list > li > span {
    width: 42px;
    height: 42px;
    font-size: 11px;
  }

  .growth-list h3 {
    font-size: 21px;
  }

  .growth-list p {
    grid-column: 2;
    font-size: 14px;
  }

  .backstage {
    min-height: auto;
  }

  .backstage-media {
    width: 100%;
    border-right: 0;
  }

  .backstage-bg {
    opacity: 0.32;
  }

  .backstage-media::after {
    background: rgba(13, 7, 17, 0.78);
    box-shadow: none;
  }

  .backstage-talent {
    right: 2%;
    bottom: -6%;
    height: 72%;
    opacity: 0.22;
    transform: none;
  }

  .backstage-content {
    width: 100%;
    margin-left: 0;
    padding: 88px 20px 95px;
    background: transparent;
  }

  .backstage-lead {
    margin: 28px 0 42px;
  }

  .support-lines li {
    grid-template-columns: 38px 1fr;
    min-height: 70px;
  }

  .support-lines strong {
    font-size: 14px;
  }

  .journey {
    padding: 88px 20px 96px;
  }

  .journey-heading {
    max-width: none;
  }

  .journey-heading .section-code {
    margin-bottom: 55px;
  }

  .journey-kicker {
    margin-bottom: 14px;
  }

  .journey-intro {
    margin-top: 28px;
  }

  .journey-steps li {
    grid-template-columns: 42px minmax(0, 1fr) 12px;
    gap: 14px;
    min-height: auto;
    padding: 27px 2px 26px;
  }

  .journey-steps h3 {
    margin: 7px 0 9px;
    font-size: 23px;
  }

  .journey-steps p {
    font-size: 13px;
  }

  .faq {
    gap: 52px;
    padding: 88px 20px 96px;
  }

  .faq-heading h2 {
    font-size: 76px;
  }

  .faq summary {
    grid-template-columns: 34px 1fr 24px;
    gap: 12px;
    min-height: 88px;
    font-size: 14px;
    line-height: 1.55;
  }

  .faq details > p {
    margin: 0 36px 26px 46px;
    font-size: 13px;
  }

  .entry {
    min-height: 620px;
  }

  .entry-outline {
    top: 46px;
    font-size: 82px;
  }

  .entry-inner {
    width: calc(100% - 40px);
    padding-top: 64px;
  }

  .entry-inner > p:not(.section-code) {
    font-size: 15px;
  }

  .entry-status {
    min-width: 0;
    width: 100%;
    font-size: 14px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 58px 20px 36px;
  }

  .footer-wordmark {
    font-size: 58px;
  }

  .footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px 20px;
  }

  .site-footer > small {
    grid-column: auto;
  }
}

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

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

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