@font-face {
  font-family: BuilderDisplay;
  src: url("assets/fonts/display.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: BuilderMono;
  src: url("assets/fonts/mono-open.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}
:root {
  --paper: #f8f8f6;
  --ink: #171915;
  --muted: #64685e;
  --line: #d8dbd2;
  --green: #355e36;
  --serif: BuilderDisplay, Georgia, serif;
  --mono: BuilderMono, "Courier New", monospace;
}
* {
  box-sizing: border-box;
}
html {
  scroll-padding-top: 28px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  font: 16px/1.7 var(--mono);
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
h1,
h2,
h3,
p,
figure {
  margin: 0;
}
h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1.04;
}
a:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 6px;
}
::selection {
  background: #dce6ce;
}
.wrap {
  width: min(1080px, calc(100% - 96px));
  margin-inline: auto;
}
.skip-link {
  position: fixed;
  top: -100px;
  left: 15px;
  background: var(--ink);
  color: white;
  padding: 10px 18px;
  z-index: 20;
}
.skip-link:focus {
  top: 10px;
}
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 91px;
  border-bottom: 1px solid var(--line);
  gap: 20px;
}
.wordmark {
  font-size: 20px;
  letter-spacing: -1px;
}
.nav-cta {
  font-size: 13px;
}
.nav-cta span {
  margin-left: 14px;
  font-size: 22px;
}
.label {
  font-size: 12px;
  letter-spacing: 0.07em;
  line-height: 1.7;
  color: var(--muted);
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 16px 22px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--paper);
  background: var(--ink);
  border: 1px solid var(--ink);
  border-radius: 2px;
}
.button:hover {
  background: var(--green);
  border-color: var(--green);
}
.button span {
  font: 26px/1 var(--mono);
}
.hero {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: 28px;
  padding-block: 65px 64px;
}
.hero h1 {
  font-size: clamp(65px, 7.2vw, 99px);
  line-height: 1.01;
  letter-spacing: -0.055em;
  margin-block: 23px 28px;
  white-space: nowrap;
}
.intro {
  font-size: 17px;
  line-height: 1.8;
}
.hero .button {
  margin-top: 31px;
}
.hero-art {
  min-width: 0;
  position: relative;
}
.hero-sprite {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  position: relative;
  mix-blend-mode: multiply;
}
.hero-sprite img {
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0 auto auto 0;
}
.hero-render-3d .sprite-base {
  width: 90%;
  height: 90%;
  inset: 5%;
  object-fit: contain;
  filter: brightness(1.045);
}
.hero-animated {
  --hero-cycle: 6.4s;
}
.hero-animated .pose {
  position: absolute;
  inset: 5%;
  width: 90%;
  height: 90%;
  opacity: 0;
  clip-path: inset(0 0 calc(559 / 1254 * 100%) 0);
  filter: brightness(1.045);
  animation-duration: var(--hero-cycle);
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
  animation-play-state: paused;
}
.hero-animated .pose-typing {
  animation-name: type-3d;
}
.hero-animated .pose-front {
  animation-name: camera-3d;
}
.hero-animated .pose-lift {
  animation-name: lift-3d;
  animation-timing-function: steps(1, end);
}
.hero-animated .pose-wave {
  animation-name: greet-3d;
  animation-timing-function: steps(1, end);
}
.hero-animated .greeting-palm {
  width: calc(160 / 1254 * 100%);
  height: calc(185 / 1254 * 100%);
  left: calc(330 / 1254 * 100%);
  top: calc(218 / 1254 * 100%);
  transform-origin: 48.125% 92.43%;
  animation: wrist-3d var(--hero-cycle) ease-in-out infinite paused;
}
.hero-animated.animation-playing .pose,
.hero-animated.animation-playing .greeting-palm {
  animation-play-state: running;
}
.hero-pixel .sprite-base,
.hero-pixel .pose {
  inset: 0;
  width: 100%;
  height: 100%;
  image-rendering: pixelated;
}
.hero-pixel .pose {
  clip-path: inset(0 0 calc(534 / 1254 * 100%) 0);
}
.hero-pixel .greeting-arm {
  --wave-angle: 7deg;
  width: calc(195 / 1254 * 100%);
  height: calc(300 / 1254 * 100%);
  left: calc(300 / 1254 * 100%);
  top: calc(305 / 1254 * 100%);
  transform-origin: 69.7436% 82.6667%;
  image-rendering: pixelated;
}
.hero-pixel .greeting-elbow {
  width: calc(85 / 1254 * 100%);
  height: calc(125 / 1254 * 100%);
  left: calc(440 / 1254 * 100%);
  top: calc(455 / 1254 * 100%);
  image-rendering: pixelated;
}
.hero-motion-toggle {
  position: absolute;
  bottom: -16px;
  right: 0;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 13px;
  cursor: pointer;
}
.hero-motion-toggle:hover {
  color: var(--ink);
}
.hero-motion-toggle:focus-visible {
  outline: 1px solid currentColor;
}
@keyframes type-3d {
  0%,
  4%,
  8%,
  12%,
  16%,
  20%,
  68%,
  72%,
  76%,
  80%,
  84%,
  88%,
  92%,
  96%,
  100% {
    opacity: 0;
  }
  2%,
  6%,
  10%,
  14%,
  18%,
  70%,
  74%,
  78%,
  82%,
  86%,
  90%,
  94%,
  98% {
    opacity: 1;
  }
  21%,
  67% {
    opacity: 0;
  }
}
@keyframes camera-3d {
  0%,
  20%,
  68%,
  100% {
    opacity: 0;
  }
  24%,
  64% {
    opacity: 1;
  }
}
@keyframes lift-3d {
  0%,
  59%,
  100% {
    opacity: 0;
  }
  28% {
    opacity: 1;
  }
}
@keyframes greet-3d {
  0%,
  56%,
  100% {
    opacity: 0;
  }
  31% {
    opacity: 1;
  }
}
@keyframes wrist-3d {
  0%,
  32%,
  54%,
  100% {
    transform: rotate(0deg);
  }
  35%,
  43%,
  51% {
    transform: rotate(calc(-1 * var(--wave-angle, 10deg)));
  }
  39%,
  47% {
    transform: rotate(var(--wave-angle, 10deg));
  }
}
.hero-sprite .sprite-hand {
  left: calc(558 / 1254 * 100%);
  top: calc(543 / 1254 * 100%);
  width: calc(116 / 1254 * 100%);
  height: calc(71 / 1254 * 100%);
  opacity: 0;
  animation: builder-typing 2.4s steps(1, end) infinite;
}
.hero-sprite .sprite-eyes {
  left: calc(574 / 1254 * 100%);
  top: calc(311 / 1254 * 100%);
  width: calc(127 / 1254 * 100%);
  height: calc(48 / 1254 * 100%);
  opacity: 0;
  animation: builder-blink 2.4s steps(1, end) infinite;
}
@keyframes builder-typing {
  0%,
  10%,
  20%,
  30%,
  40%,
  50%,
  60%,
  70%,
  80%,
  90%,
  100% {
    opacity: 0;
  }
  5%,
  15%,
  25%,
  35%,
  45%,
  55%,
  65%,
  73%,
  85%,
  95% {
    opacity: 1;
  }
}
@keyframes builder-blink {
  0%,
  76%,
  100% {
    opacity: 0;
  }
  70% {
    opacity: 1;
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-sprite .sprite-hand,
  .hero-sprite .sprite-eyes {
    animation: none;
  }
}
.hero-sprite,
.coop-art img {
  mask-image:
    linear-gradient(to right, transparent, #000 9%, #000 91%, transparent),
    linear-gradient(to bottom, transparent, #000 9%, #000 91%, transparent);
  mask-composite: intersect;
}
.hero-art figcaption {
  font-size: 10px;
  color: var(--muted);
  text-align: center;
  margin-top: -7px;
  letter-spacing: 0.035em;
}
.support {
  border-top: 1px solid var(--line);
  padding-top: 51px;
}
.section-heading {
  display: flex;
  gap: 21px;
  align-items: baseline;
}
.section-number {
  font-size: 12px;
  color: var(--muted);
  flex: none;
}
.section-heading h2 {
  font-size: 53px;
}
.mentoring {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 42px;
  margin-top: 13px;
}
.coop-art {
  width: 100%;
}
.coop-art img {
  width: 100%;
  mix-blend-mode: multiply;
}
.mentoring-copy {
  min-width: 0;
  padding-bottom: 9px;
}
.session-count {
  font: 136px/0.95 var(--serif);
  letter-spacing: -0.06em;
}
.session-count span {
  display: block;
  font: 37px/1.2 var(--serif);
  letter-spacing: -0.025em;
  margin-top: 12px;
}
.session-detail {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.85;
  margin-top: 19px;
}
.daily-support {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  border-block: 1px solid var(--line);
  padding-block: 26px;
}
.daily-label {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.035em;
}
.daily-support p {
  font-size: 16px;
}
.daily-support strong {
  font-weight: 400;
  color: var(--green);
}
.included {
  margin: 0;
  padding: 27px 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
.included li {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 14px;
}
.included li:nth-child(2) {
  justify-content: center;
}
.included li:last-child {
  justify-content: flex-end;
}
.included img {
  width: 29px;
  height: 29px;
  image-rendering: pixelated;
  flex: none;
}
.journey {
  border-top: 1px solid var(--line);
  padding-top: 54px;
  margin-top: 23px;
}
.steps {
  list-style: none;
  padding: 0;
  margin: 49px 0 66px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.steps li {
  padding-inline: 37px;
  border-right: 1px solid var(--line);
}
.steps li:first-child {
  padding-left: 0;
}
.steps li:last-child {
  border: 0;
}
.steps img {
  width: 52px;
  height: 52px;
  image-rendering: pixelated;
  margin-bottom: 22px;
}
.steps h3 {
  font-size: 40px;
}
.level {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 14px;
}
.level span {
  letter-spacing: 3px;
  font-size: 15px;
}
.steps li:last-child .level {
  color: var(--green);
}
.transformation .steps {
  margin-bottom: 28px;
}
.transformation-note {
  max-width: 640px;
  font-size: 14px;
  line-height: 1.85;
  color: var(--muted);
  margin-bottom: 48px;
}
.steps p {
  font-size: 14px;
  color: var(--muted);
  margin-top: 14px;
  line-height: 1.85;
}
.enroll {
  border-top: 1px solid var(--line);
  padding-block: 65px 52px;
  text-align: center;
}
.enroll h2 {
  font-size: 70px;
  margin: 24px 0 23px;
}
.enroll > p:not(.label):not(.purchase-note) {
  font-size: 15px;
}
.enroll .button {
  margin-top: 28px;
  min-width: 268px;
}
.enroll .purchase-note {
  font-size: 11px;
  color: var(--muted);
  margin-top: 18px;
}
.faq {
  max-width: 740px;
  margin: 0 auto 54px;
}
.faq details {
  border-top: 1px solid var(--line);
}
.faq details:last-child {
  border-bottom: 1px solid var(--line);
}
.faq summary {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding-block: 19px;
  font-size: 13px;
  list-style: none;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary span {
  font-size: 21px;
  flex: none;
}
.faq details[open] summary span {
  transform: rotate(45deg);
}
.faq details p {
  font-size: 13px;
  color: var(--muted);
  padding: 0 30px 20px 0;
  line-height: 1.85;
}
.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
  padding-block: 26px;
  font-size: 12px;
}
.site-footer > span {
  color: var(--muted);
  font-size: 10px;
}
@media (max-width: 1000px) {
  .hero {
    grid-template-columns: 1.15fr 1fr;
    gap: 10px;
  }
  .hero h1 {
    font-size: 7.5vw;
  }
  .intro {
    font-size: 15px;
  }
  .hero-art figcaption {
    font-size: 8px;
  }
  .section-heading h2 {
    font-size: 45px;
  }
  .session-count {
    font-size: 117px;
  }
  .session-count span {
    font-size: 32px;
  }
  .session-detail {
    font-size: 14px;
  }
  .daily-support {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
  .daily-support p {
    font-size: 15px;
  }
  .included {
    gap: 16px;
  }
  .included li {
    gap: 10px;
    font-size: 12px;
  }
  .steps li {
    padding-inline: 25px;
  }
  .steps h3 {
    font-size: 34px;
  }
  .steps p {
    font-size: 13px;
  }
  .enroll h2 {
    font-size: 62px;
  }
}
@media (max-width: 700px) {
  .wrap {
    width: calc(100% - 48px);
  }
  .site-header {
    min-height: 76px;
  }
  .wordmark {
    font-size: 18px;
  }
  .nav-cta {
    font-size: 12px;
  }
  .hero {
    grid-template-columns: 1fr;
    padding-top: 39px;
    padding-bottom: 38px;
    gap: 8px;
  }
  .hero h1 {
    font-size: clamp(52px, 10.7vw, 75px);
    margin-block: 21px 22px;
  }
  .label {
    font-size: 11px;
  }
  .intro {
    font-size: 15px;
  }
  .hero .button {
    margin-top: 23px;
  }
  .hero-art {
    width: 300px;
    max-width: 80%;
    margin: 4px auto 0;
  }
  .hero-art figcaption {
    font-size: 8px;
    margin-top: -8px;
  }
  .support {
    padding-top: 36px;
  }
  .section-heading {
    gap: 13px;
  }
  .section-heading h2 {
    font-size: clamp(32px, 6.1vw, 43px);
  }
  .section-number {
    font-size: 11px;
  }
  .mentoring {
    gap: 18px;
    margin-top: 23px;
    grid-template-columns: 1fr 1fr;
  }
  .session-count {
    font-size: 91px;
  }
  .session-count span {
    font-size: 28px;
  }
  .session-detail {
    font-size: 12px;
    margin-top: 13px;
  }
  .daily-support {
    padding-block: 21px;
    margin-top: 25px;
    gap: 9px;
  }
  .daily-label {
    font-size: 10px;
  }
  .daily-support p {
    font-size: 14px;
  }
  .included {
    gap: 15px;
    padding-block: 23px;
  }
  .included li,
  .included li:nth-child(2),
  .included li:last-child {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    font-size: 12px;
    gap: 13px;
  }
  .included img {
    width: 28px;
    height: 28px;
  }
  .journey {
    margin-top: 13px;
    padding-top: 36px;
  }
  .steps {
    margin-block: 33px 43px;
  }
  .steps li {
    padding-inline: 18px;
  }
  .steps img {
    width: 42px;
    height: 42px;
    margin-bottom: 19px;
  }
  .steps h3 {
    font-size: 28px;
  }
  .steps p {
    font-size: 11px;
  }
  .enroll {
    padding-block: 45px 37px;
  }
  .enroll h2 {
    font-size: 50px;
  }
  .enroll > p:not(.label):not(.purchase-note) {
    font-size: 13px;
  }
  .enroll .purchase-note {
    font-size: 10px;
  }
  .faq {
    margin-bottom: 38px;
  }
  .faq summary {
    font-size: 12px;
  }
  .faq details p {
    font-size: 12px;
  }
  .site-footer {
    font-size: 11px;
  }
  .site-footer > span {
    font-size: 9px;
  }
}
@media (max-width: 430px) {
  .wrap {
    width: calc(100% - 40px);
  }
  .hero h1 {
    font-size: 13.7vw;
  }
  .hero-art {
    width: 255px;
    margin-top: 10px;
  }
  .button {
    font-size: 13px;
    padding: 14px 19px;
  }
  .intro {
    font-size: 14px;
  }
  .section-heading h2 {
    font-size: 32px;
  }
  .mentoring {
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
  }
  .mentoring-copy {
    grid-row: 1;
    text-align: center;
    padding: 3px 0 0;
  }
  .session-count {
    font-size: 102px;
  }
  .session-count span {
    font-size: 30px;
    margin-top: 7px;
  }
  .session-detail {
    font-size: 13px;
  }
  .coop-art {
    width: 310px;
    max-width: 100%;
    margin: 8px auto 0;
  }
  .daily-support {
    margin-top: 12px;
  }
  .daily-support p {
    font-size: 13px;
  }
  .included {
    grid-template-columns: 1fr;
    padding-block: 23px;
    gap: 20px;
  }
  .included li,
  .included li:nth-child(2),
  .included li:last-child {
    flex-direction: row;
    align-items: center;
    gap: 15px;
    font-size: 14px;
  }
  .included img {
    width: 25px;
    height: 25px;
  }
  .steps {
    grid-template-columns: 1fr;
    gap: 27px;
    margin-top: 30px;
  }
  .steps li,
  .steps li:first-child,
  .steps li:last-child {
    border: 0;
    padding: 0 0 0 69px;
    position: relative;
  }
  .steps img {
    position: absolute;
    left: 0;
    top: 4px;
    width: 42px;
    height: 42px;
  }
  .steps h3 {
    font-size: 34px;
  }
  .steps p {
    font-size: 13px;
    margin-top: 8px;
  }
  .enroll h2 {
    font-size: 45px;
  }
}
@media print {
  .site-header,
  .button,
  .nav-cta,
  .skip-link {
    display: none;
  }
  .wrap {
    width: 100%;
  }
  .hero,
  .support,
  .journey,
  .enroll {
    break-inside: avoid;
  }
  .hero {
    padding-top: 0;
  }
}
