@font-face {
  font-family: "Gabarito";
  src: url("assets/fonts/gabarito-regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gabarito";
  src: url("assets/fonts/gabarito-semibold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Onest";
  src: url("assets/fonts/onest-light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Onest";
  src: url("assets/fonts/onest-regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Onest";
  src: url("assets/fonts/onest-medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #080a09;
  --ink-soft: #101311;
  --graphite: #181c19;
  --steel: #c8cfcb;
  --steel-dark: #818b85;
  --mist: #eef1ee;
  --white: #f8faf8;
  --warm: #bda275;
  --green: #2f4939;
  --line: rgba(220, 227, 223, 0.18);
  --header-height: 84px;
  --shell: min(1240px, calc(100vw - 64px));
  --ease-out: cubic-bezier(.16, 1, .3, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
  background: var(--ink);
}

body {
  margin: 0;
  color: var(--mist);
  background: var(--ink);
  font-family: "Onest", "Trebuchet MS", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

::selection {
  color: var(--ink);
  background: var(--steel);
}

a {
  color: inherit;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--ink);
  background: var(--white);
  border-radius: 999px;
  transform: translateY(-150%);
  transition: transform .2s ease;
}

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

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: max(32px, calc((100vw - 1240px) / 2));
  border-bottom: 1px solid transparent;
  transition: background-color .35s ease, border-color .35s ease;
}

.site-header.is-scrolled {
  background: rgba(8, 10, 9, .92);
  border-color: rgba(255, 255, 255, .09);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  text-decoration: none;
  font-family: "Gabarito", sans-serif;
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .16em;
  white-space: nowrap;
}

.brand img {
  width: 46px;
  height: 46px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .14);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.main-nav a {
  position: relative;
  color: rgba(248, 250, 248, .72);
  font-size: .86rem;
  font-weight: 400;
  text-decoration: none;
  transition: color .2s ease;
}

.main-nav a:not(.nav-action)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: var(--steel);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s var(--ease-out);
}

.main-nav a:hover {
  color: var(--white);
}

.main-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-action {
  padding: 10px 18px;
  color: var(--ink) !important;
  background: var(--mist);
  border-radius: 999px;
  font-weight: 500 !important;
  transition: background-color .2s ease, transform .2s ease !important;
}

.nav-action:hover {
  background: var(--white);
  transform: translateY(-1px);
}

.menu-button {
  display: none;
  align-items: center;
  gap: 12px;
  min-width: 48px;
  min-height: 48px;
  padding: 0;
  color: var(--white);
  background: transparent;
  border: 0;
  font: inherit;
  cursor: pointer;
}

.menu-button__label {
  font-size: .82rem;
}

.menu-button__lines,
.menu-button__lines::before,
.menu-button__lines::after {
  display: block;
  width: 22px;
  height: 1px;
  background: currentColor;
  transition: transform .25s var(--ease-out), opacity .2s ease;
}

.menu-button__lines {
  position: relative;
}

.menu-button__lines::before,
.menu-button__lines::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-button__lines::before { top: -7px; }
.menu-button__lines::after { top: 7px; }

.menu-button[aria-expanded="true"] .menu-button__lines {
  background: transparent;
}

.menu-button[aria-expanded="true"] .menu-button__lines::before {
  top: 0;
  transform: rotate(45deg);
}

.menu-button[aria-expanded="true"] .menu-button__lines::after {
  top: 0;
  transform: rotate(-45deg);
}

.hero {
  position: relative;
  min-height: max(760px, 100svh);
  display: grid;
  align-items: end;
  isolation: isolate;
  overflow: hidden;
}

.hero__media,
.hero__shade {
  position: absolute;
  inset: 0;
}

.hero__media {
  z-index: -3;
  background: url("assets/hero-pelego-rota.png") center / cover no-repeat;
  transform: scale(1.025);
  animation: hero-breathe 14s var(--ease-out) both;
}

.hero__shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(3, 5, 4, .9) 0%, rgba(3, 5, 4, .72) 36%, rgba(3, 5, 4, .16) 72%, rgba(3, 5, 4, .26) 100%),
    linear-gradient(0deg, rgba(3, 5, 4, .82) 0%, transparent 45%);
}

.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .18), transparent 30%);
  pointer-events: none;
}

.hero__content {
  padding-bottom: clamp(92px, 12vh, 148px);
}

.hero__place {
  width: fit-content;
  margin: 0 0 26px;
  padding: 9px 14px;
  color: rgba(248, 250, 248, .82);
  border: 1px solid rgba(248, 250, 248, .22);
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .16em;
}

.hero h1,
.purpose h2,
.origin h2,
.path h2,
.launch h2,
.manifesto h2 {
  margin: 0;
  font-family: "Gabarito", "Trebuchet MS", sans-serif;
  font-weight: 400;
  letter-spacing: -.035em;
  line-height: .98;
  text-wrap: balance;
}

.hero h1 {
  max-width: 870px;
  font-size: clamp(3.6rem, 7.3vw, 6rem);
}

.hero h1 span {
  color: var(--steel);
}

.hero__intro {
  max-width: 660px;
  margin: 30px 0 0;
  color: rgba(238, 241, 238, .78);
  font-size: clamp(1.05rem, 1.5vw, 1.28rem);
  font-weight: 300;
  line-height: 1.58;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: .92rem;
  font-weight: 500;
  text-decoration: none;
  transition: transform .25s var(--ease-out), background-color .25s ease, border-color .25s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--primary {
  color: var(--ink);
  background: var(--mist);
}

.button--primary:hover {
  background: var(--white);
}

.button--quiet {
  color: var(--white);
  background: rgba(255, 255, 255, .04);
  border-color: rgba(255, 255, 255, .25);
}

.button--quiet:hover {
  border-color: rgba(255, 255, 255, .5);
  background: rgba(255, 255, 255, .08);
}

.hero__scroll {
  position: absolute;
  right: max(32px, calc((100vw - 1240px) / 2));
  bottom: 44px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(248, 250, 248, .52);
  font-size: .72rem;
  letter-spacing: .13em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.hero__scroll span {
  width: 1px;
  height: 54px;
  background: linear-gradient(var(--steel), transparent);
}

.route-section {
  position: relative;
}

.route-line {
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: rgba(255, 255, 255, .1);
}

.route-line__progress {
  position: absolute;
  inset: 0 0 auto;
  height: var(--route-progress, 0%);
  background: linear-gradient(180deg, var(--steel), var(--warm));
  box-shadow: 0 8px 24px rgba(189, 162, 117, .3);
}

.purpose {
  padding: clamp(120px, 15vw, 220px) 0;
  background: var(--ink);
}

.purpose__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(70px, 10vw, 160px);
  align-items: start;
}

.purpose__statement {
  padding-right: clamp(0px, 4vw, 60px);
}

.purpose h2 {
  font-size: clamp(3.1rem, 6vw, 5.7rem);
}

.purpose__copy {
  max-width: 560px;
  padding-top: 10px;
}

.purpose__copy p {
  margin: 0 0 24px;
  color: rgba(238, 241, 238, .63);
  font-size: 1.03rem;
}

.purpose__copy .lead {
  color: var(--white);
  font-family: "Gabarito", sans-serif;
  font-size: clamp(1.45rem, 2.2vw, 2.05rem);
  line-height: 1.25;
}

.purpose__copy .purpose__signal {
  margin-top: 34px;
  padding: 18px 0 18px 22px;
  color: var(--steel);
  border-left: 1px solid var(--warm);
  font-family: "Gabarito", sans-serif;
  font-size: 1.08rem;
  line-height: 1.45;
}

.origin {
  position: relative;
  padding: clamp(110px, 14vw, 190px) 0 clamp(130px, 17vw, 240px);
  color: var(--ink);
  background: var(--mist);
  overflow: hidden;
}

.origin__layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: clamp(56px, 9vw, 144px);
  align-items: center;
}

.origin__number {
  color: var(--ink);
  font-family: "Gabarito", sans-serif;
  font-size: clamp(9rem, 25vw, 23rem);
  font-weight: 600;
  letter-spacing: -.075em;
  line-height: .72;
}

.origin__content {
  max-width: 600px;
}

.origin h2 {
  max-width: 620px;
  font-size: clamp(3rem, 5vw, 5.2rem);
}

.origin__content > p {
  max-width: 570px;
  margin: 32px 0 0;
  color: rgba(8, 10, 9, .68);
  font-size: 1.05rem;
}

.origin blockquote {
  margin: 52px 0 0;
  padding-top: 24px;
  border-top: 1px solid rgba(8, 10, 9, .24);
  color: var(--ink);
  font-family: "Gabarito", sans-serif;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  line-height: 1.35;
}

.origin__horizon {
  position: absolute;
  z-index: 1;
  right: -8vw;
  bottom: -19vw;
  width: 64vw;
  aspect-ratio: 1;
  border: 1px solid rgba(8, 10, 9, .12);
  border-radius: 50%;
}

.origin__horizon::before,
.origin__horizon::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(8, 10, 9, .09);
  border-radius: inherit;
}

.origin__horizon::before { inset: 10%; }
.origin__horizon::after { inset: 22%; }

.path {
  position: relative;
  padding: clamp(120px, 15vw, 210px) 0;
  background: #0d100e;
}

.path__heading {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 72px;
  align-items: end;
}

.path h2 {
  font-size: clamp(3.4rem, 6.5vw, 6rem);
}

.path__heading p {
  max-width: 460px;
  margin: 0 0 6px;
  color: rgba(238, 241, 238, .6);
}

.path__stages {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6vw;
  margin: clamp(90px, 11vw, 140px) 0 0;
  padding: 0;
  list-style: none;
}

.path__stages::before {
  content: "";
  position: absolute;
  top: 11px;
  right: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--steel-dark), var(--steel), var(--warm));
}

.path__stage {
  position: relative;
  padding-top: 46px;
}

.path__dot {
  position: absolute;
  z-index: 1;
  top: 5px;
  left: 0;
  width: 13px;
  height: 13px;
  background: var(--ink-soft);
  border: 2px solid var(--steel);
  border-radius: 50%;
  box-shadow: 0 0 0 7px #0d100e;
}

.path__stage:nth-child(3) .path__dot {
  border-color: var(--warm);
}

.path__stage h3 {
  margin: 0 0 14px;
  font-family: "Gabarito", sans-serif;
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  font-weight: 400;
  letter-spacing: -.03em;
}

.path__stage p {
  max-width: 310px;
  margin: 0;
  color: rgba(238, 241, 238, .58);
}

.launch {
  position: relative;
  padding: clamp(120px, 14vw, 196px) 0;
  background:
    radial-gradient(circle at 78% 18%, rgba(189, 162, 117, .12), transparent 34%),
    var(--ink);
  overflow: hidden;
}

.route-line--launch {
  left: 50%;
  background: linear-gradient(180deg, transparent, rgba(200, 207, 203, .32) 22%, rgba(189, 162, 117, .38) 78%, transparent);
}

.launch__layout {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(440px, 1.08fr);
  gap: clamp(70px, 10vw, 150px);
  align-items: center;
}

.launch__content {
  max-width: 590px;
}

.launch h2 {
  max-width: 640px;
  font-size: clamp(3.2rem, 6vw, 5.7rem);
}

.launch__lead {
  max-width: 560px;
  margin: 34px 0 0;
  color: var(--white);
  font-family: "Gabarito", sans-serif;
  font-size: clamp(1.45rem, 2.3vw, 2.05rem);
  line-height: 1.28;
}

.launch__content > p:not(.launch__lead) {
  max-width: 540px;
  margin: 24px 0 0;
  color: rgba(238, 241, 238, .65);
}

.instagram-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  max-width: 540px;
  margin-top: 42px;
  padding: 20px 0;
  color: var(--mist);
  border-top: 1px solid rgba(238, 241, 238, .22);
  border-bottom: 1px solid rgba(238, 241, 238, .22);
  text-decoration: none;
  transition: color .2s ease, border-color .2s ease;
}

.instagram-link span:first-child {
  font-family: "Gabarito", sans-serif;
  font-size: 1.1rem;
}

.instagram-link span:last-child {
  color: rgba(238, 241, 238, .62);
  font-size: .82rem;
}

.instagram-link:hover {
  color: var(--white);
  border-color: rgba(238, 241, 238, .55);
}

.interest-form {
  position: relative;
  padding: clamp(34px, 5vw, 58px);
  color: var(--ink);
  background: var(--mist);
  border-radius: 32px;
  box-shadow: 0 34px 90px rgba(0, 0, 0, .42);
}

.interest-form__label {
  display: block;
  margin-bottom: 10px;
  font-family: "Gabarito", sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
}

.interest-form__field + .interest-form__field {
  margin-top: 22px;
}

.interest-form input[type="text"],
.interest-form input[type="email"] {
  width: 100%;
  min-height: 58px;
  padding: 0 18px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(8, 10, 9, .25);
  border-radius: 15px;
  font: inherit;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.interest-form input[type="text"]::placeholder,
.interest-form input[type="email"]::placeholder,
.phone-field input::placeholder {
  color: rgba(8, 10, 9, .52);
}

.interest-form input[type="text"]:focus,
.interest-form input[type="email"]:focus,
.phone-field:focus-within {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(47, 73, 57, .17);
}

.phone-field {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  min-height: 58px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(8, 10, 9, .25);
  border-radius: 15px;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.phone-field__prefix {
  display: grid;
  align-self: stretch;
  place-items: center;
  padding: 0 14px 0 18px;
  color: var(--green);
  border-right: 1px solid rgba(8, 10, 9, .14);
  font-weight: 700;
}

.phone-field input[type="tel"] {
  width: 100%;
  min-width: 0;
  min-height: 56px;
  padding: 0 16px;
  color: var(--ink);
  background: transparent;
  border: 0;
  outline: 0;
  font: inherit;
}

.interest-options {
  margin: 30px 0 0;
  padding: 0;
  border: 0;
}

.interest-options legend {
  margin-bottom: 13px;
  padding: 0;
  font-family: "Gabarito", sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
}

.interest-options__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.interest-option {
  display: flex;
  align-items: center;
  min-height: 54px;
  gap: 11px;
  padding: 12px 14px;
  color: rgba(8, 10, 9, .78);
  background: rgba(248, 250, 248, .72);
  border: 1px solid rgba(8, 10, 9, .2);
  border-radius: 14px;
  cursor: pointer;
  transition: color .2s ease, background .2s ease, border-color .2s ease;
}

.interest-option:hover,
.interest-option:has(input:checked) {
  color: var(--ink);
  background: var(--white);
  border-color: var(--green);
}

.interest-option input {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: var(--green);
}

.interest-option--other {
  grid-column: 1 / -1;
}

.other-interest {
  margin-top: 14px;
  padding: 18px;
  background: rgba(255, 255, 255, .52);
  border: 1px solid rgba(8, 10, 9, .12);
  border-radius: 16px;
}

.interest-form .button {
  width: 100%;
  min-height: 58px;
  min-width: 176px;
  border: 0;
  color: var(--white);
  background: var(--ink);
  cursor: pointer;
}

.interest-form .button:hover {
  background: var(--graphite);
}

.interest-form .button:disabled {
  color: rgba(248, 250, 248, .62);
  background: var(--steel-dark);
  cursor: wait;
  transform: none;
}

.interest-form__submit {
  margin-top: 26px;
}

.interest-form__help {
  margin: 9px 4px 0;
  color: rgba(8, 10, 9, .66);
  font-size: .78rem;
  line-height: 1.45;
}

.interest-form__consent {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  margin-top: 24px;
  color: rgba(8, 10, 9, .72);
  font-size: .82rem;
  line-height: 1.5;
  cursor: pointer;
}

.interest-form__consent input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--green);
}

.interest-form__status {
  margin: 22px 0 0;
  padding-top: 18px;
  color: var(--green);
  border-top: 1px solid rgba(8, 10, 9, .16);
  font-weight: 500;
}

.form-trap {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.manifesto {
  position: relative;
  min-height: min(900px, 92svh);
  display: grid;
  place-items: center;
  isolation: isolate;
  overflow: hidden;
}

.manifesto__texture {
  position: absolute;
  z-index: -2;
  inset: 0;
  background: url("assets/hero-pelego-rota.png") center / cover no-repeat;
  transform: scaleX(-1) scale(1.04);
}

.manifesto::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: rgba(3, 5, 4, .78);
  backdrop-filter: saturate(.7);
}

.manifesto__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 920px;
  padding-block: 100px;
  text-align: center;
}

.manifesto__content img {
  width: 156px;
  height: 156px;
  margin-bottom: 36px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 50%;
  box-shadow: 0 26px 70px rgba(0, 0, 0, .45);
}

.manifesto h2 {
  font-size: clamp(3.2rem, 6.8vw, 6rem);
}

.manifesto p {
  margin: 24px 0 34px;
  color: rgba(238, 241, 238, .66);
  font-size: 1.08rem;
}

.site-footer {
  padding: 34px 0;
  color: rgba(238, 241, 238, .5);
  background: #050706;
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.site-footer__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
}

.brand--footer {
  width: fit-content;
  font-size: .78rem;
}

.brand--footer img {
  width: 38px;
  height: 38px;
}

.site-footer p {
  margin: 0;
  font-size: .78rem;
  letter-spacing: .06em;
}

.site-footer p:last-child {
  justify-self: end;
}

.site-footer p a {
  color: inherit;
  text-decoration-color: rgba(238, 241, 238, .3);
  text-underline-offset: 4px;
}

.site-footer p a:hover {
  color: var(--mist);
}

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

.motion-ready .reveal {
  opacity: 0;
  transform: translateY(28px);
  filter: blur(6px);
  transition: opacity .85s var(--ease-out), transform .85s var(--ease-out), filter .85s var(--ease-out);
}

.motion-ready .reveal.is-visible {
  opacity: 1;
  transform: none;
  filter: none;
}

@keyframes hero-breathe {
  from { transform: scale(1.08); filter: brightness(.72); }
  to { transform: scale(1.025); filter: brightness(1); }
}

@media (max-width: 960px) {
  :root {
    --shell: min(100% - 40px, 760px);
    --header-height: 74px;
  }

  .site-header {
    padding-inline: 20px;
  }

  .menu-button {
    display: inline-flex;
  }

  .main-nav {
    position: fixed;
    inset: var(--header-height) 0 0;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    padding: 32px 20px 60px;
    background: rgba(8, 10, 9, .98);
    visibility: hidden;
    opacity: 0;
    transform: translateY(-12px);
    transition: opacity .25s ease, transform .3s var(--ease-out), visibility .3s;
  }

  .main-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: none;
  }

  .main-nav a {
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    font-family: "Gabarito", sans-serif;
    font-size: clamp(1.7rem, 7vw, 2.4rem);
  }

  .main-nav a::after {
    display: none;
  }

  .main-nav .nav-action {
    margin-top: 28px;
    padding: 16px 22px;
    text-align: center;
    border: 0;
    font-family: "Onest", sans-serif;
    font-size: 1rem;
  }

  .purpose__grid,
  .origin__layout,
  .path__heading,
  .launch__layout {
    grid-template-columns: 1fr;
  }

  .route-line {
    left: 20px;
  }

  .launch__layout {
    gap: 58px;
    padding-left: 34px;
  }

  .purpose__grid {
    gap: 58px;
    padding-left: 34px;
  }

  .origin__layout {
    gap: 70px;
  }

  .origin__number {
    font-size: clamp(10rem, 46vw, 18rem);
  }

  .origin__content {
    margin-left: min(10vw, 72px);
  }

  .path__heading {
    gap: 26px;
  }

  .path__stages {
    grid-template-columns: 1fr;
    gap: 56px;
    padding-left: 38px;
  }

  .path__stages::before {
    top: 0;
    bottom: 0;
    left: 6px;
    width: 1px;
    height: auto;
    background: linear-gradient(180deg, var(--steel-dark), var(--steel), var(--warm));
  }

  .path__stage {
    padding-top: 0;
  }

  .path__dot {
    top: 9px;
    left: -38px;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 14px;
  }

  .site-footer p:last-child {
    justify-self: start;
  }
}

@media (max-width: 620px) {
  :root {
    --shell: calc(100% - 32px);
  }

  .brand {
    gap: 9px;
    font-size: .76rem;
    letter-spacing: .12em;
  }

  .brand img {
    width: 40px;
    height: 40px;
  }

  .menu-button__label {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  .hero {
    min-height: 820px;
  }

  .hero__media {
    background-position: 58% center;
  }

  .hero__shade {
    background:
      linear-gradient(90deg, rgba(3, 5, 4, .91) 0%, rgba(3, 5, 4, .58) 100%),
      linear-gradient(0deg, rgba(3, 5, 4, .9), transparent 58%);
  }

  .hero__content {
    padding-bottom: 88px;
  }

  .hero__place {
    margin-bottom: 22px;
    font-size: .64rem;
  }

  .hero h1 {
    font-size: clamp(3.35rem, 15.8vw, 4.5rem);
  }

  .hero__intro {
    margin-top: 24px;
    font-size: 1rem;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
    margin-top: 30px;
  }

  .button {
    width: 100%;
  }

  .hero__scroll {
    display: none;
  }

  .purpose {
    padding: 108px 0;
  }

  .purpose h2,
  .origin h2,
  .path h2,
  .launch h2,
  .manifesto h2 {
    font-size: clamp(3rem, 14vw, 4.15rem);
  }

  .purpose__grid {
    padding-left: 22px;
  }

  .origin {
    padding: 112px 0 140px;
  }

  .origin__content {
    margin-left: 0;
  }

  .origin blockquote {
    margin-top: 38px;
    font-size: 1.35rem;
  }

  .path {
    padding: 112px 0 128px;
  }

  .path__stages {
    margin-top: 76px;
  }

  .launch {
    padding: 108px 0;
  }

  .launch__layout {
    padding-left: 22px;
  }

  .interest-form {
    padding: 28px 22px;
    border-radius: 24px;
  }

  .interest-form__row {
    grid-template-columns: 1fr;
  }

  .interest-form .button {
    width: 100%;
  }

  .instagram-link {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .manifesto {
    min-height: auto;
  }

  .manifesto__content {
    padding-block: 112px 96px;
  }

  .manifesto__content img {
    width: 112px;
    height: 112px;
    margin-bottom: 30px;
  }

  .manifesto h2 {
    max-width: 100%;
    font-size: clamp(1.95rem, 8.1vw, 2.6rem);
    line-height: 1.08;
    letter-spacing: -.025em;
    text-wrap: pretty;
  }

  .manifesto p {
    margin: 22px 0 30px;
  }

  .manifesto .button {
    width: min(100%, 340px);
    padding-inline: 18px;
  }
}

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

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

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