@font-face {
  font-family: "Bricolage Grotesque";
  src: url("/assets/fonts/BricolageGrotesque-Variable.ttf") format("truetype");
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
}

@font-face {
  font-family: "DM Sans";
  src: url("/assets/fonts/DMSans-Variable.ttf") format("truetype");
  font-style: normal;
  font-weight: 100 1000;
  font-display: swap;
}

:root {
  color-scheme: light;
  --ink: #173b2f;
  --ink-2: #294c41;
  --paper: #fffdf8;
  --ground: #f4efe3;
  --cream: #f8e9c9;
  --tomato: #ed5b3f;
  --tomato-dark: #c8402b;
  --sky: #a8d8e2;
  --sky-pale: #dceff2;
  --yellow: #f5c95f;
  --green: #286249;
  --mint: #b8d8c5;
  --line: #173b2f;
  --muted: #566b63;
  --error: #b42318;
  --success: #135d3b;
  --display: "Bricolage Grotesque", "Trebuchet MS", sans-serif;
  --heading: "DM Sans", "Trebuchet MS", sans-serif;
  --body: "DM Sans", "Trebuchet MS", sans-serif;
  --max: 1220px;
  --radius: 26px;
  --shadow: 10px 10px 0 var(--ink);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 104px;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: clip;
  background:
    radial-gradient(circle at 12% 2%, rgb(168 216 226 / 52%) 0 7%, transparent 7.2%),
    radial-gradient(circle at 94% 15%, rgb(245 201 95 / 45%) 0 8%, transparent 8.2%),
    var(--ground);
  color: var(--ink);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image: radial-gradient(rgb(23 59 47 / 11%) 0.8px, transparent 0.8px);
  background-size: 18px 18px;
  content: "";
  pointer-events: none;
}

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

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  color: inherit;
  cursor: pointer;
}

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

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1,
h2,
h3 {
  font-family: var(--heading);
}

h1,
h2,
h3,
p,
ul,
ol,
dl,
figure {
  margin-top: 0;
}

.section-shell,
.nav-shell {
  width: min(var(--max), calc(100% - 48px));
  margin-inline: auto;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-160%);
  border: 2px solid var(--paper);
  border-radius: 12px;
  background: var(--ink);
  color: var(--paper);
  padding: 12px 16px;
  font-weight: 800;
  transition: transform 150ms ease;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 14px 0;
  transition: padding 180ms ease;
}

.site-header.is-scrolled {
  padding-block: 8px;
}

.nav-shell {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  min-height: 72px;
  border: 2px solid var(--ink);
  border-radius: 20px;
  background: rgb(255 253 248 / 94%);
  box-shadow: 5px 5px 0 rgb(23 59 47 / 88%);
  padding: 9px 11px 9px 14px;
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  width: fit-content;
  color: var(--ink);
  font-family: var(--display);
  font-size: 21px;
  font-variation-settings: "opsz" 48, "wdth" 94;
  font-weight: 800;
  letter-spacing: -0.035em;
  text-decoration: none;
}

.brand img {
  flex: 0 0 auto;
  border-radius: 13px;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
}

.primary-nav > a:not(.button) {
  min-height: 44px;
  border-radius: 12px;
  padding: 10px 12px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
}

.primary-nav > a:not(.button):hover {
  background: var(--sky-pale);
}

.language-link {
  display: inline-grid;
  min-width: 44px;
  place-items: center;
  border: 1px solid var(--ink);
  margin-inline: 5px;
}

.menu-button {
  display: none;
}

.button,
.role-action {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border: 2px solid var(--ink);
  border-radius: 14px;
  padding: 13px 20px;
  font-family: var(--display);
  font-variation-settings: "opsz" 30, "wdth" 96;
  font-weight: 750;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
  transition:
    transform 150ms ease,
    box-shadow 150ms ease,
    background 150ms ease;
}

.button:hover,
.role-action:hover {
  transform: translate(-2px, -2px);
  box-shadow: 4px 4px 0 var(--ink);
}

.button:active,
.role-action:active {
  transform: translate(0);
  box-shadow: none;
}

.button-small {
  min-height: 44px;
  padding: 10px 16px;
  font-size: 15px;
}

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

.button-primary:hover {
  background: #ffda78;
}

.button-dark {
  background: var(--ink);
  color: var(--paper);
}

.button-light {
  border-color: var(--paper);
  background: var(--paper);
  color: var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(480px, 1.08fr);
  align-items: center;
  gap: clamp(36px, 6vw, 88px);
  min-height: min(780px, calc(100svh - 84px));
  padding-block: clamp(58px, 8vw, 108px) clamp(74px, 9vw, 126px);
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  margin-bottom: 24px;
  background: var(--paper);
  padding: 8px 13px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.025em;
  text-transform: uppercase;
}

.status-pill span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgb(40 98 73 / 17%);
}

.hero h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(52px, 6.2vw, 94px);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.hero-lede {
  max-width: 650px;
  margin-bottom: 30px;
  color: var(--ink-2);
  font-size: clamp(19px, 2vw, 25px);
  font-weight: 560;
  line-height: 1.35;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 22px;
}

.text-link {
  border-bottom: 2px solid currentColor;
  padding: 5px 0;
  font-weight: 750;
  text-underline-offset: 5px;
  text-decoration: none;
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin: 28px 0 0;
  padding: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
  list-style: none;
}

.trust-list li::before {
  color: var(--green);
  content: "✓";
  font-weight: 900;
  margin-right: 7px;
}

.hero-visual {
  position: relative;
  z-index: 1;
  margin: 0;
}

.hero-visual::before {
  position: absolute;
  top: -30px;
  right: -34px;
  z-index: -1;
  width: 42%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--yellow);
  content: "";
}

.hero-visual::after {
  position: absolute;
  bottom: -28px;
  left: -32px;
  z-index: -1;
  width: 40%;
  height: 37%;
  border-radius: 50% 50% 20px 20px;
  background: var(--sky);
  content: "";
  transform: rotate(-7deg);
}

.hero-visual picture {
  overflow: hidden;
  border: 3px solid var(--ink);
  border-radius: 38px 38px 38px 10px;
  background: var(--cream);
  box-shadow: var(--shadow);
}

.hero-visual img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.hero-visual figcaption {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
}

.deposit-note {
  position: absolute;
  right: -18px;
  bottom: -34px;
  display: grid;
  width: 174px;
  border: 2px solid var(--ink);
  border-radius: 18px 18px 18px 4px;
  background: var(--paper);
  box-shadow: 6px 6px 0 var(--ink);
  padding: 16px 18px;
  transform: rotate(2deg);
}

.deposit-note strong {
  font-family: var(--display);
  font-size: 38px;
  letter-spacing: -0.06em;
  line-height: 1;
}

.deposit-note span {
  margin-top: 4px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
}

.fact-ribbon {
  border-block: 2px solid var(--ink);
  background: var(--yellow);
  transform: rotate(-0.55deg) scale(1.015);
}

.fact-ribbon-inner {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 15px;
  transform: rotate(0.55deg);
}

.fact-ribbon p {
  margin: 0;
}

.fact-ribbon a {
  flex: 0 0 auto;
  font-weight: 800;
}

.section-heading {
  max-width: 760px;
}

.section-heading h2,
.safety-copy h2,
.pilot-copy h2,
.partner-layout h2,
.signup-copy h2,
.legal-hero h1,
.not-found h1 {
  margin-bottom: 20px;
  font-size: clamp(42px, 6vw, 76px);
  font-weight: 780;
  letter-spacing: -0.04em;
  line-height: 1.02;
}

.section-heading > p:last-child {
  max-width: 630px;
  color: var(--muted);
  font-size: 19px;
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--tomato-dark);
  font-family: var(--display);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.role-section {
  padding-block: clamp(110px, 13vw, 180px);
}

.role-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 52px;
}

.role-panel {
  position: relative;
  min-height: 530px;
  overflow: hidden;
  border: 3px solid var(--ink);
  border-radius: 34px;
  padding: clamp(30px, 4vw, 58px);
}

.role-panel::after {
  position: absolute;
  right: -70px;
  bottom: -100px;
  width: 260px;
  aspect-ratio: 1;
  border: 48px solid rgb(255 255 255 / 18%);
  border-radius: 50%;
  content: "";
}

.role-panel-offer {
  background: var(--sky);
  color: var(--ink);
}

.role-panel-collect {
  background: var(--mint);
}

.role-number {
  position: absolute;
  top: 28px;
  right: 34px;
  font-family: var(--display);
  font-size: clamp(64px, 10vw, 132px);
  font-weight: 800;
  letter-spacing: -0.08em;
  line-height: 0.8;
  opacity: 0.18;
}

.role-kicker {
  margin-bottom: 34px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.role-panel h3 {
  max-width: 440px;
  margin-bottom: 18px;
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 780;
  letter-spacing: -0.04em;
  line-height: 1;
}

.role-panel > p:not(.role-kicker) {
  max-width: 490px;
  font-size: 19px;
  font-weight: 560;
}

.role-panel ul {
  display: grid;
  gap: 8px;
  margin: 28px 0 34px;
  padding: 0;
  list-style: none;
}

.role-panel li::before {
  content: "↳";
  font-weight: 900;
  margin-right: 8px;
}

.role-action {
  position: relative;
  z-index: 1;
  margin-top: auto;
  background: var(--paper);
  color: var(--ink);
}

.role-panel-offer .role-action {
  border-color: var(--ink);
}

.process-section {
  position: relative;
  border-block: 2px solid var(--ink);
  background: var(--paper);
  padding-block: clamp(90px, 11vw, 150px);
}

.process-section::before {
  position: absolute;
  top: -22px;
  left: 5%;
  width: 120px;
  height: 42px;
  background: var(--sky);
  content: "";
  transform: rotate(-4deg);
}

.process-heading {
  margin-bottom: 60px;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  counter-reset: step;
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  min-height: 275px;
  border-top: 3px solid var(--ink);
  padding: 32px 30px 10px 0;
}

.process-list li + li {
  border-left: 1px solid rgb(23 59 47 / 28%);
  padding-left: 30px;
}

.step-icon {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--yellow);
  font-family: var(--display);
  font-size: 24px;
  font-weight: 800;
}

.process-list li:nth-child(2) .step-icon {
  background: var(--sky);
}

.process-list li:nth-child(3) .step-icon {
  background: var(--tomato);
  color: white;
}

.step-label {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.process-list h3 {
  margin-bottom: 8px;
  font-size: 30px;
  letter-spacing: -0.04em;
}

.process-list p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 16px;
}

.source-note {
  max-width: 850px;
  margin: 46px 0 0;
  border-left: 5px solid var(--yellow);
  padding: 4px 0 4px 18px;
  color: var(--muted);
  font-size: 14px;
}

.source-note a {
  font-weight: 750;
}

.safety-section {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: var(--paper);
  padding-block: clamp(100px, 13vw, 170px);
}

.safety-section::after {
  position: absolute;
  top: -120px;
  right: -110px;
  width: 390px;
  aspect-ratio: 1;
  border: 70px solid rgb(168 216 226 / 13%);
  border-radius: 50%;
  content: "";
}

.safety-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(480px, 1.16fr);
  align-items: start;
  gap: clamp(54px, 9vw, 130px);
}

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

.safety-copy h2 {
  max-width: 560px;
}

.safety-copy > p:not(.eyebrow) {
  max-width: 560px;
  color: rgb(255 253 248 / 72%);
  font-size: 19px;
}

.safety-copy .button {
  margin-top: 20px;
}

.safety-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.safety-list li {
  display: grid;
  grid-template-columns: 66px 1fr;
  gap: 22px;
  border-top: 1px solid rgb(255 255 255 / 27%);
  padding: 30px 0;
}

.safety-list li:last-child {
  border-bottom: 1px solid rgb(255 255 255 / 27%);
}

.safety-list li > span {
  color: var(--yellow);
  font-family: var(--display);
  font-size: 30px;
  font-weight: 800;
}

.safety-list strong {
  font-family: var(--display);
  font-size: 23px;
}

.safety-list p {
  margin: 6px 0 0;
  color: rgb(255 253 248 / 68%);
  font-size: 15px;
}

.pilot-story {
  display: grid;
  grid-template-columns: 0.55fr 1.2fr 0.9fr;
  align-items: center;
  gap: clamp(34px, 7vw, 100px);
  padding-block: clamp(100px, 13vw, 175px);
}

.city-stamp {
  display: grid;
  min-height: 270px;
  place-items: center;
  border: 4px double var(--ink);
  border-radius: 50%;
  background: var(--yellow);
  font-family: var(--display);
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 0.82;
  text-align: center;
  transform: rotate(-7deg);
}

.pilot-copy p:not(.eyebrow) {
  max-width: 620px;
  color: var(--muted);
}

.pilot-principles {
  display: grid;
  gap: 0;
  margin: 0;
  border-block: 2px solid var(--ink);
}

.pilot-principles div {
  padding: 19px 0;
}

.pilot-principles div + div {
  border-top: 1px solid rgb(23 59 47 / 25%);
}

.pilot-principles dt {
  font-family: var(--display);
  font-size: 29px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.pilot-principles dd {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.partner-banner {
  border-block: 2px solid var(--ink);
  background: var(--sky);
  padding-block: 44px;
}

.partner-layout {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 36px;
}

.partner-mark {
  margin: 0;
  border: 2px solid var(--ink);
  border-radius: 12px;
  background: var(--paper);
  box-shadow: 4px 4px 0 var(--ink);
  padding: 16px;
  font-family: var(--display);
  font-size: 24px;
  font-weight: 800;
  transform: rotate(-3deg);
}

.partner-layout .eyebrow {
  margin-bottom: 5px;
}

.partner-layout h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(27px, 3.5vw, 44px);
}

.faq-section {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  align-items: start;
  gap: clamp(50px, 9vw, 130px);
  padding-block: clamp(110px, 13vw, 180px);
}

.faq-heading {
  position: sticky;
  top: 120px;
}

.faq-list {
  border-top: 2px solid var(--ink);
}

.faq-list details {
  border-bottom: 2px solid var(--ink);
}

.faq-list summary {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 25px 4px;
  font-family: var(--display);
  font-size: clamp(20px, 2.5vw, 27px);
  font-weight: 720;
  letter-spacing: -0.03em;
  list-style: none;
  cursor: pointer;
}

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

.faq-list summary::after {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1.5px solid var(--ink);
  border-radius: 50%;
  content: "+";
  font-family: var(--body);
  font-size: 25px;
  font-weight: 500;
  line-height: 1;
}

.faq-list details[open] summary::after {
  background: var(--yellow);
  content: "−";
}

.faq-list details p {
  max-width: 700px;
  margin: -5px 54px 25px 4px;
  color: var(--muted);
}

.signup-section {
  position: relative;
  overflow: hidden;
  border-top: 2px solid var(--ink);
  background: var(--cream);
  padding-block: clamp(90px, 12vw, 155px);
}

.signup-section::before {
  position: absolute;
  top: -60px;
  left: -50px;
  width: 240px;
  aspect-ratio: 1;
  border: 48px solid rgb(237 91 63 / 17%);
  border-radius: 50%;
  content: "";
}

.signup-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(460px, 1.1fr);
  align-items: start;
  gap: clamp(48px, 9vw, 130px);
}

.status-pill-light {
  background: rgb(255 253 248 / 65%);
}

.signup-copy h2 {
  max-width: 620px;
}

.signup-copy > p:not(.status-pill, .signup-aside) {
  max-width: 610px;
  color: var(--ink-2);
  font-size: 19px;
}

.signup-aside {
  max-width: 560px;
  border-left: 4px solid var(--tomato);
  margin-top: 32px;
  padding: 4px 0 4px 16px;
  font-size: 15px;
}

.signup-form {
  display: grid;
  gap: 20px;
  border: 3px solid var(--ink);
  border-radius: 30px 30px 30px 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
  padding: clamp(26px, 4vw, 44px);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-field {
  display: grid;
  gap: 7px;
}

.form-field label {
  font-size: 14px;
  font-weight: 800;
}

.form-field label span {
  color: var(--muted);
  font-weight: 500;
}

.form-field input,
.form-field select {
  width: 100%;
  min-height: 54px;
  border: 2px solid var(--ink);
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
  padding: 12px 14px;
}

.form-field input::placeholder {
  color: #71837c;
}

.form-field input:focus-visible,
.form-field select:focus-visible {
  outline-offset: 1px;
}

.consent-field {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 11px;
  color: var(--muted);
  font-size: 14px;
  cursor: pointer;
}

.consent-field input {
  width: 22px;
  height: 22px;
  accent-color: var(--tomato);
}

.consent-field a {
  color: var(--ink);
  font-weight: 750;
}

.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-submit {
  width: 100%;
  margin-top: 4px;
}

.form-submit[disabled] {
  cursor: wait;
  opacity: 0.62;
}

.form-status {
  min-height: 1.5em;
  margin: -4px 0 0;
  font-size: 14px;
  font-weight: 700;
}

.form-status.is-error {
  color: var(--error);
}

.form-status.is-success {
  color: var(--success);
}

.site-footer {
  background: var(--ink);
  color: var(--paper);
  padding-block: 58px;
}

.footer-layout {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 36px 60px;
  align-items: start;
}

.brand-light {
  color: var(--paper);
}

.footer-layout > div > p {
  max-width: 460px;
  margin: 16px 0 0;
  color: rgb(255 253 248 / 67%);
}

.footer-layout nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 22px;
  max-width: 560px;
}

.footer-layout nav a {
  font-size: 14px;
  font-weight: 700;
}

.footer-note {
  grid-column: 1 / -1;
  margin: 10px 0 0;
  border-top: 1px solid rgb(255 255 255 / 24%);
  padding-top: 22px;
  color: rgb(255 253 248 / 55%);
  font-size: 13px;
}

.legal-main {
  padding-block: 62px 120px;
}

.legal-hero {
  max-width: 900px;
  padding-block: 60px 68px;
}

.legal-hero .status-pill {
  margin-bottom: 22px;
}

.legal-hero > p:last-child {
  max-width: 760px;
  color: var(--muted);
  font-size: 20px;
}

.legal-grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.34fr) minmax(0, 0.66fr);
  gap: 60px;
  border-top: 3px solid var(--ink);
  padding-top: 45px;
}

.legal-index {
  position: sticky;
  top: 120px;
  align-self: start;
}

.legal-index p {
  color: var(--muted);
  font-size: 14px;
}

.legal-content {
  display: grid;
  gap: 44px;
}

.legal-content section {
  scroll-margin-top: 120px;
}

.legal-content h2 {
  margin-bottom: 14px;
  font-size: clamp(28px, 4vw, 40px);
  letter-spacing: -0.045em;
}

.legal-content h3 {
  margin: 25px 0 8px;
  font-size: 21px;
}

.legal-content p,
.legal-content li {
  color: var(--ink-2);
}

.legal-content ul {
  padding-left: 23px;
}

.legal-notice {
  border: 2px solid var(--ink);
  border-radius: 18px;
  background: var(--yellow);
  padding: 20px 22px;
}

.not-found {
  display: grid;
  min-height: calc(100svh - 112px);
  place-items: center;
  padding-block: 80px;
  text-align: center;
}

.not-found > div {
  max-width: 760px;
}

.not-found-code {
  margin-bottom: 5px;
  color: var(--tomato);
  font-family: var(--display);
  font-size: clamp(100px, 25vw, 230px);
  font-weight: 800;
  letter-spacing: -0.09em;
  line-height: 0.7;
}

.not-found p {
  color: var(--muted);
  font-size: 19px;
}

.not-found .hero-actions {
  justify-content: center;
  margin-top: 30px;
}

@keyframes hero-enter {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

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

.js .hero > [data-reveal] {
  animation: hero-enter 620ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.js .hero > [data-reveal]:nth-child(2) {
  animation-delay: 100ms;
}

@media (max-width: 1040px) {
  .primary-nav > a:not(.button, .language-link) {
    display: none;
  }

  .hero {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 38px;
  }

  .hero h1 {
    font-size: clamp(54px, 7vw, 76px);
  }

  .pilot-story {
    grid-template-columns: 0.5fr 1.2fr;
  }

  .pilot-principles {
    grid-column: 1 / -1;
    grid-template-columns: repeat(3, 1fr);
  }

  .pilot-principles div + div {
    border-top: 0;
    border-left: 1px solid rgb(23 59 47 / 25%);
    padding-left: 24px;
  }
}

@media (max-width: 820px) {
  .section-shell,
  .nav-shell {
    width: min(100% - 28px, var(--max));
  }

  .site-header {
    padding-block: 9px;
  }

  .nav-shell {
    position: relative;
    grid-template-columns: 1fr auto;
    min-height: 64px;
    border-radius: 17px;
  }

  .menu-button {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    gap: 9px;
    border: 1.5px solid var(--ink);
    border-radius: 11px;
    background: var(--paper);
    padding: 9px 12px;
    font-size: 14px;
    font-weight: 750;
  }

  .menu-button > span:first-child {
    width: 18px;
    height: 12px;
    border-block: 2px solid currentColor;
  }

  .menu-button[aria-expanded="true"] > span:first-child {
    height: 2px;
    border: 0;
    background: currentColor;
    transform: rotate(45deg);
  }

  .menu-button[aria-expanded="true"] > span:first-child::after {
    display: block;
    width: 18px;
    height: 2px;
    background: currentColor;
    content: "";
    transform: rotate(-90deg);
  }

  .primary-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: -2px;
    left: -2px;
    display: none;
    align-items: stretch;
    border: 2px solid var(--ink);
    border-radius: 17px;
    background: var(--paper);
    box-shadow: 5px 5px 0 var(--ink);
    padding: 10px;
  }

  .primary-nav.is-open {
    display: grid;
  }

  .site-header:not([data-header]) .primary-nav {
    position: static;
    width: auto;
    display: flex;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    padding: 0;
  }

  .primary-nav > a:not(.button, .language-link) {
    display: flex;
    align-items: center;
  }

  .language-link {
    margin: 2px 0 6px;
  }

  .site-header:not([data-header]) .language-link {
    margin: 0;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-block: 48px 94px;
  }

  .hero-copy {
    max-width: 700px;
  }

  .hero h1 {
    font-size: clamp(54px, 12vw, 82px);
  }

  .hero-visual {
    width: calc(100% - 12px);
  }

  .deposit-note {
    right: -10px;
  }

  .role-grid,
  .safety-layout,
  .faq-section,
  .signup-layout,
  .legal-grid {
    grid-template-columns: 1fr;
  }

  .role-panel {
    min-height: auto;
  }

  .process-list {
    grid-template-columns: 1fr;
  }

  .process-list li {
    min-height: auto;
    padding: 28px 0;
  }

  .process-list li + li {
    border-left: 0;
    padding-left: 0;
  }

  .safety-layout {
    gap: 60px;
  }

  .pilot-story {
    grid-template-columns: 0.55fr 1.45fr;
  }

  .city-stamp {
    min-height: 220px;
  }

  .pilot-principles {
    grid-column: 1 / -1;
  }

  .partner-layout {
    grid-template-columns: auto 1fr;
  }

  .partner-layout .button {
    grid-column: 1 / -1;
    justify-self: start;
  }

  .faq-heading,
  .legal-index {
    position: static;
  }

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

  .footer-layout nav {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  body {
    font-size: 16px;
  }

  .brand {
    font-size: 18px;
  }

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

  .menu-label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip-path: inset(50%);
  }

  .menu-button {
    min-width: 44px;
    justify-content: center;
  }

  .hero {
    gap: 48px;
    padding-top: 38px;
  }

  .hero h1 {
    font-size: clamp(48px, 15.4vw, 72px);
    line-height: 0.96;
  }

  .hero-lede {
    font-size: 19px;
  }

  .hero-actions {
    align-items: stretch;
  }

  .hero-actions .button {
    width: 100%;
  }

  .trust-list {
    display: grid;
    gap: 6px;
  }

  .hero-visual picture {
    border-radius: 26px 26px 26px 8px;
    box-shadow: 7px 7px 0 var(--ink);
  }

  .hero-visual img {
    aspect-ratio: 4 / 3;
    object-position: 58% center;
  }

  .deposit-note {
    bottom: -54px;
    width: 146px;
    padding: 12px 14px;
  }

  .deposit-note strong {
    font-size: 31px;
  }

  .fact-ribbon-inner {
    display: grid;
    gap: 8px;
    padding-block: 20px;
  }

  .fact-ribbon a {
    width: fit-content;
  }

  .role-section {
    padding-block: 110px;
  }

  .role-grid {
    margin-top: 34px;
  }

  .role-panel {
    border-width: 2px;
    border-radius: 25px;
    padding: 28px 24px;
  }

  .role-panel h3 {
    font-size: 42px;
  }

  .role-panel > p:not(.role-kicker) {
    font-size: 17px;
  }

  .process-list li {
    grid-template-columns: 48px 1fr;
    gap: 14px;
  }

  .step-icon {
    width: 46px;
    height: 46px;
  }

  .safety-list li {
    grid-template-columns: 48px 1fr;
    gap: 14px;
  }

  .pilot-story {
    grid-template-columns: 1fr;
  }

  .city-stamp {
    width: 210px;
    min-height: 210px;
    justify-self: center;
  }

  .pilot-principles {
    grid-template-columns: 1fr;
  }

  .pilot-principles div + div {
    border-top: 1px solid rgb(23 59 47 / 25%);
    border-left: 0;
    padding-left: 0;
  }

  .partner-layout {
    grid-template-columns: 1fr;
  }

  .partner-mark {
    width: fit-content;
  }

  .partner-layout .button {
    grid-column: auto;
    width: 100%;
  }

  .faq-list summary {
    font-size: 20px;
  }

  .signup-form {
    border-width: 2px;
    border-radius: 23px 23px 23px 7px;
    box-shadow: 7px 7px 0 var(--ink);
    padding: 24px 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-layout nav {
    display: grid;
  }

  .legal-main {
    padding-block: 30px 90px;
  }
}

@media (max-width: 350px) {
  .site-header:not([data-header]) .brand span {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    clip: rect(0 0 0 0) !important;
    clip-path: inset(50%) !important;
    white-space: nowrap !important;
  }
}

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

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

  .js .hero > [data-reveal] {
    animation: none;
  }
}

@media (forced-colors: active) {
  .status-pill span,
  .hero-visual::before,
  .hero-visual::after,
  .role-panel::after,
  .safety-section::after,
  .signup-section::before {
    display: none;
  }
}
