@font-face {
  font-family: "Geist";
  src: url("assets/fonts/geist-300.woff2") format("woff2");
  font-style: normal;
  font-weight: 300;
  font-display: swap;
}

@font-face {
  font-family: "Geist";
  src: url("assets/fonts/geist-400.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Geist";
  src: url("assets/fonts/geist-600.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

:root {
  --black: #000;
  --off-black: #222;
  --webtouch-blue: #09f;
  --button-black: #000;
  --button-black-hover: #222;
  --ink: #151515;
  --gray-900: #2a2a2a;
  --gray-700: #646464;
  --gray-500: #969696;
  --gray-300: #d7d7d7;
  --gray-200: #e8e8e8;
  --gray-100: #f5f5f5;
  --gray-050: #fafafa;
  --funnel-bg: #f3f4f6;
  --white: #fff;
  --danger: #a4372e;
  --container: min(1224px, calc(100vw - 56px));
  --flow-container: min(960px, calc(100vw - 56px));
  --radius: 12px;
  --pill: 64px;
}

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

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

body {
  margin: 0;
  color: var(--black);
  background: var(--white);
  font-family: "Geist", Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body.is-recording,
body.is-busy {
  cursor: progress;
}

@keyframes page-enter {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes progress-enter {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

@keyframes hero-detail-enter {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-media-enter {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.992);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (prefers-reduced-motion: no-preference) {
  body > main {
    animation: page-enter 440ms cubic-bezier(0.22, 1, 0.36, 1) backwards;
    transition: opacity 160ms ease, transform 160ms ease;
  }

  body.is-page-leaving > main {
    opacity: 0;
    transform: translateY(-8px);
  }

  body.is-page-leaving .site-header,
  body.is-page-leaving .mobile-apply {
    opacity: 0;
    transition: opacity 140ms ease;
  }

  .motion-reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 660ms cubic-bezier(0.22, 1, 0.36, 1), transform 660ms cubic-bezier(0.22, 1, 0.36, 1);
  }

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

  .motion-group .motion-item {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 600ms cubic-bezier(0.22, 1, 0.36, 1), transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: calc(var(--motion-order, 0) * 60ms);
  }

  .motion-group.is-visible .motion-item {
    opacity: 1;
    transform: translateY(0);
  }

  body:not(.flow-body) .hero-copy h1,
  body:not(.flow-body) .hero-intro,
  body:not(.flow-body) .job-meta,
  body:not(.flow-body) .hero-actions {
    animation: hero-detail-enter 680ms cubic-bezier(0.22, 1, 0.36, 1) backwards;
  }

  body:not(.flow-body) .hero-intro {
    animation-delay: 70ms;
  }

  body:not(.flow-body) .job-meta {
    animation-delay: 140ms;
  }

  body:not(.flow-body) .hero-actions {
    animation-delay: 210ms;
  }

  body:not(.flow-body) .hero-team-card,
  body:not(.flow-body) .hero-image-mobile {
    animation: hero-media-enter 760ms cubic-bezier(0.22, 1, 0.36, 1) backwards;
  }

  body:not(.flow-body) .hero-team-catamaran {
    animation-delay: 180ms;
  }

  body:not(.flow-body) .hero-team-relax {
    animation-delay: 240ms;
  }

  body:not(.flow-body) .hero-team-lunch {
    animation-delay: 300ms;
  }

  body:not(.flow-body) .hero-team-workshop {
    animation-delay: 360ms;
  }
}

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

a {
  color: inherit;
}

button,
input {
  font: inherit;
}

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

.wt-button span,
.mobile-apply span {
  transition: transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

button {
  cursor: pointer;
}

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

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--black);
  border-radius: 8px;
  transform: translateY(-160%);
}

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

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

.site-header {
  position: relative;
  z-index: 20;
  color: var(--black);
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
}

.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 64px;
}

.header-inner > .wt-button-small {
  position: absolute;
  right: 0;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.wordmark img {
  width: 131px;
  height: auto;
}

.wt-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  min-height: 50px;
  padding: 13px 30px;
  color: var(--white);
  background: var(--button-black);
  border: 1px solid var(--button-black);
  border-radius: var(--pill);
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  transition: color 160ms ease, background 160ms ease, transform 160ms ease;
}

.wt-button:hover {
  color: var(--white);
  background: var(--button-black-hover);
  border-color: var(--button-black-hover);
  transform: translateY(-1px);
}

.wt-button:active {
  transform: scale(0.985);
}

.wt-button:focus-visible,
.back-link:focus-visible,
.text-action:focus-visible,
.file-button:focus-within,
.answer-card:focus-within,
input:focus-visible,
button:focus-visible,
a:focus-visible {
  outline: 2px solid var(--button-black);
  outline-offset: 4px;
}

.wt-button-small {
  min-height: 42px;
  padding: 11px 24px;
  font-size: 12px;
}

.wt-button-light {
  color: var(--white);
  background: var(--button-black);
  border-color: var(--button-black);
}

.wt-button-light:hover {
  color: var(--white);
  background: var(--button-black-hover);
  border-color: var(--button-black-hover);
}

.wt-button-outline {
  color: var(--button-black);
  background: transparent;
  border-color: var(--button-black);
}

.wt-button-outline:hover {
  color: var(--white);
  background: var(--button-black-hover);
  border-color: var(--button-black-hover);
}

.wt-button:disabled {
  color: #8a8a8a;
  background: var(--gray-200);
  border-color: var(--gray-200);
  cursor: not-allowed;
  transform: none;
}

.hero-section {
  padding: 86px 0 80px;
}

.hero-copy {
  max-width: none;
}

.hero-copy h1 {
  max-width: 930px;
  margin: 0;
  font-size: clamp(58px, 6vw, 82px);
  font-weight: 300;
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.hero-intro {
  max-width: 720px;
  margin: 34px 0 0;
  color: var(--gray-900);
  font-size: 20px;
  font-weight: 300;
  line-height: 1.48;
}

.job-meta {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 0.86fr) minmax(0, 1.14fr) minmax(0, 1.3fr);
  max-width: none;
  margin: 48px 0 0;
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}

.job-meta > div {
  display: flex;
  gap: 14px;
  align-items: center;
  min-height: 92px;
  padding: 16px 26px 16px 0;
}

.job-meta > div + div {
  padding-left: 26px;
  border-left: 1px solid var(--gray-200);
}

.meta-icon {
  display: grid;
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  font-family: "Apple Color Emoji", "Segoe UI Emoji", sans-serif;
  font-size: 25px;
  place-items: center;
}

.job-meta p {
  display: flex;
  flex-direction: column;
  margin: 0;
}

.job-meta small {
  color: var(--gray-700);
  font-size: 12px;
}

.job-meta strong {
  margin-top: 4px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  text-wrap: balance;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 34px;
}

.hero-actions p {
  margin: 0;
  color: var(--gray-700);
  font-size: 12px;
}

.hero-image {
  position: relative;
  height: min(650px, 57vw);
  margin: 72px 0 0;
  overflow: hidden;
  border-radius: var(--radius);
}

.hero-team-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.34fr) minmax(320px, 0.86fr);
  grid-template-rows: minmax(0, 1.08fr) minmax(0, 0.92fr);
  grid-template-areas:
    "boats lunch"
    "boats workshop";
  gap: 14px;
  height: min(650px, 57vw);
  margin: 72px 0 0;
}

.hero-team-card {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--gray-100);
  border-radius: var(--radius);
}

.hero-team-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-team-workshop {
  grid-area: workshop;
}

.hero-team-workshop img {
  object-position: center 50%;
}

.hero-team-lunch img {
  object-position: center 57%;
}

.hero-team-lunch {
  grid-area: lunch;
}

.hero-team-small {
  display: grid;
  grid-area: boats;
  min-width: 0;
  min-height: 0;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 14px;
}

.hero-team-catamaran img {
  object-position: center 68%;
}

.hero-team-relax img {
  object-position: center 66%;
}

.hero-image-mobile {
  display: none;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-image figcaption {
  position: absolute;
  z-index: 2;
  right: 30px;
  bottom: 28px;
  left: 30px;
  color: var(--white);
}

.hero-image figcaption span,
.hero-image figcaption strong {
  display: block;
}

.hero-image figcaption span {
  margin-bottom: 6px;
  font-size: 10px;
  letter-spacing: 0.09em;
}

.hero-image figcaption strong {
  font-size: 24px;
  font-weight: 400;
  letter-spacing: -0.03em;
}

.wt-section {
  padding: 112px 0;
}

.wt-section-muted {
  color: var(--white);
  background: var(--off-black);
}

.wt-section-muted .section-head > p:last-child,
.wt-section-muted .founders-head > p:last-child,
.wt-section-muted .founder-profile-card p,
.wt-section-muted .about-copy p {
  color: #b8b8b8;
}

.section-head {
  display: grid;
  grid-template-columns: 0.4fr 1fr 0.65fr;
  gap: 32px;
  align-items: end;
  margin-bottom: 64px;
}

.section-head h2,
.split-copy h2,
.final-card h2 {
  margin: 0;
  font-size: clamp(46px, 5vw, 64px);
  font-weight: 300;
  letter-spacing: -0.05em;
  line-height: 1.08;
}

.section-head > p:last-child,
.split-copy > p:last-child {
  margin: 0 0 5px;
  color: var(--gray-700);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.65;
}

#benefits .section-head {
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  gap: 64px;
  margin-bottom: 56px;
}

#benefits .section-head > p:last-child {
  grid-column: auto;
  max-width: 380px;
  margin: 0 0 5px;
  justify-self: end;
}

.section-head-wide {
  grid-template-columns: 0.4fr 1.2fr 0.8fr;
}

.section-head-clean {
  grid-template-columns: 1.2fr 0.65fr;
}

.component-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.component-card {
  display: flex;
  min-height: 260px;
  flex-direction: column;
  align-items: center;
  padding: 30px 26px 28px;
  color: var(--black);
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  text-align: center;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.component-card-featured {
  grid-column: 1 / -1;
  min-height: 220px;
}

.component-card-featured p {
  max-width: 560px;
}

.component-icon {
  display: grid;
  width: 44px;
  height: 44px;
  margin: 0 auto 22px;
  font-family: "Apple Color Emoji", "Segoe UI Emoji", sans-serif;
  font-size: 30px;
  place-items: center;
  transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.component-card h2,
.component-card h3 {
  margin: 0 0 12px;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.035em;
}

.component-card p {
  max-width: 340px;
  margin: 0 auto;
  color: var(--gray-700);
  font-size: 16px;
  line-height: 1.5;
}

.role-fit-head {
  align-items: start;
}

.role-fit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.role-fit-grid-single {
  grid-template-columns: 1fr;
}

.role-fit-card {
  padding: 42px;
  background: var(--gray-050);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
}

.role-fit-card h3,
.qualification-panel h3 {
  margin: 0;
  font-size: 34px;
  font-weight: 300;
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.role-fit-intro {
  max-width: 480px;
  margin: 20px 0 34px;
  color: var(--gray-700);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.65;
}

.role-checklist,
.qualification-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.role-checklist {
  border-top: 1px solid var(--gray-300);
}

.role-checklist li {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 14px;
  align-items: start;
  padding: 20px 0;
  border-bottom: 1px solid var(--gray-300);
}

.role-checklist li > span,
.qualification-list li > span {
  font-family: "Apple Color Emoji", "Segoe UI Emoji", sans-serif;
  font-size: 21px;
  line-height: 1.2;
}

.role-checklist li > div {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.role-checklist strong {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.role-checklist small {
  color: var(--gray-700);
  font-size: 12px;
  line-height: 1.55;
}

.role-fit-card-dark {
  color: var(--white);
  background: var(--black);
  border-color: var(--black);
}

.role-fit-card-dark .role-fit-intro,
.role-fit-card-dark .role-checklist small {
  color: #b8b8b8;
}

.role-fit-card-dark .role-checklist {
  border-color: #343434;
}

.role-fit-card-dark .role-checklist li {
  border-color: #343434;
}

.qualification-panel {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 70px;
  align-items: end;
  margin-top: 16px;
  padding: 38px 42px;
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
}

.qualification-panel > div > p:last-child {
  max-width: 440px;
  margin: 18px 0 0;
  color: var(--gray-700);
  font-size: 13px;
  line-height: 1.6;
}

.qualification-list {
  display: grid;
  gap: 10px;
}

.qualification-list li {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 10px;
  align-items: center;
  min-height: 58px;
  padding: 12px 16px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 9px;
}

.qualification-list strong {
  font-size: 14px;
  font-weight: 500;
}

.founders-head {
  max-width: 780px;
  margin: 0 auto 58px;
  text-align: center;
}

.founders-head h2 {
  margin: 0;
  font-size: clamp(46px, 5vw, 64px);
  font-weight: 300;
  letter-spacing: -0.05em;
  line-height: 1.05;
}

.founders-head h3 {
  margin: 0;
  font-size: clamp(30px, 3.6vw, 44px);
  font-weight: 300;
  letter-spacing: -0.05em;
  line-height: 1.08;
}

.founders-head > p:last-child {
  max-width: 650px;
  margin: 24px auto 0;
  color: var(--gray-700);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.65;
}

.founders-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  max-width: 700px;
  margin: 0 auto;
}

.founders-subsection {
  max-width: 1050px;
  margin-top: 96px;
  padding-top: 76px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.founders-subsection .founders-head {
  max-width: 700px;
  margin: 0 auto 38px;
  text-align: left;
}

.founders-subsection .founders-head > p:last-child {
  max-width: 560px;
  margin: 0;
}

.founder-profile-card {
  margin: 0;
}

.founder-profile-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius);
  transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.founder-profile-card > div {
  padding: 18px 4px 2px;
}

.founder-profile-card p,
.founder-profile-card h3 {
  margin: 0;
}

.founder-profile-card p {
  color: var(--gray-700);
  font-size: 11px;
  line-height: 1.4;
  letter-spacing: 0.08em;
}

.founder-profile-card h3 {
  margin-top: 8px;
  font-size: 28px;
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.1;
}

@media (min-width: 901px) {
  #benefits .section-head {
    grid-template-columns: 1fr;
    gap: 18px;
    align-items: start;
  }

  #benefits .section-head > p:last-child {
    max-width: 620px;
    margin: 0;
    justify-self: start;
  }

  #ueber-uns {
    padding: 92px 0 88px;
  }

  #ueber-uns .about-copy,
  #ueber-uns .founders-subsection {
    max-width: 1120px;
    margin-inline: auto;
  }

  #ueber-uns .about-copy {
    grid-template-columns: 1fr;
    gap: 18px;
    max-width: 920px;
  }

  #ueber-uns .about-copy h2 {
    grid-row: auto;
    margin-bottom: 8px;
    font-size: clamp(58px, 5vw, 72px);
  }

  #ueber-uns .about-copy p {
    max-width: 760px;
    line-height: 1.62;
  }

  #ueber-uns .founders-subsection {
    margin-top: 64px;
    padding-top: 48px;
    padding-inline: clamp(48px, 8vw, 112px);
  }

  #ueber-uns .founders-subsection .founders-head {
    max-width: 920px;
    margin: 0 auto 28px;
  }

  #ueber-uns .founders-subsection .founders-head > p:last-child {
    max-width: none;
    font-size: 16px;
  }

  #ueber-uns .founders-grid {
    max-width: 920px;
    gap: 20px;
  }

  #ueber-uns .founder-profile-card img {
    aspect-ratio: 4 / 3;
    object-position: center 50%;
  }

  #ueber-uns .founder-profile-card > div {
    padding: 16px 2px 0;
  }

  #ueber-uns .founder-profile-card p {
    font-size: 11px;
  }

  #ueber-uns .founder-profile-card h3 {
    margin-top: 7px;
    font-size: 30px;
  }
}

.founder-collaboration {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  max-width: 1040px;
  margin: 38px auto 0;
  padding: 0;
  overflow: hidden;
  background: var(--gray-200);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  list-style: none;
}

.founder-collaboration li {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 12px;
  min-height: 116px;
  padding: 24px;
  background: var(--white);
}

.founder-collaboration li > span {
  font-family: "Apple Color Emoji", "Segoe UI Emoji", sans-serif;
  font-size: 23px;
  line-height: 1.2;
}

.founder-collaboration li > div {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.founder-collaboration strong {
  font-size: 15px;
  font-weight: 500;
}

.founder-collaboration small {
  color: var(--gray-700);
  font-size: 11px;
  line-height: 1.55;
}

.split-section {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 115px;
}

.split-copy {
  position: sticky;
  top: 40px;
  align-self: start;
}

.split-copy > p:last-child {
  max-width: 450px;
  margin-top: 28px;
}

.lined-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--gray-300);
}

.lined-list li {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid var(--gray-300);
}

.lined-list li > span {
  color: var(--gray-500);
  font-size: 11px;
}

.lined-list h3 {
  margin: 0 0 7px;
  font-size: 21px;
  font-weight: 500;
  letter-spacing: -0.035em;
}

.lined-list p {
  margin: 0;
  color: var(--gray-700);
  font-size: 14px;
  line-height: 1.65;
}

.quote-section {
  padding: 0 0 112px;
}

.quote-section-featured {
  padding-top: 112px;
}

.quote-card {
  position: relative;
  width: min(100%, 820px);
  aspect-ratio: 3 / 4;
  margin-inline: auto;
  overflow: hidden;
  color: var(--white);
  background: transparent;
  border-radius: 28px;
}

.quote-background {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: inherit;
  transition: transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

.quote-panel {
  position: absolute;
  z-index: 2;
  right: 6%;
  bottom: 5%;
  left: 6%;
  display: flex;
  width: auto;
  min-height: 38%;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(34px, 5vw, 52px);
  margin: 0;
  background: rgba(24, 24, 24, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.18);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.quote-mark {
  height: 42px;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 72px;
  font-weight: 300;
  letter-spacing: -0.08em;
  line-height: 0.8;
}

.quote-spotlight-copy {
  max-width: 640px;
  margin: 0 0 30px;
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 300;
  letter-spacing: -0.045em;
  line-height: 1.1;
  text-wrap: balance;
}

.quote-mark-close {
  display: inline-block;
  margin-left: 0.08em;
}

.quote-card footer {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1px;
}

.quote-card footer strong {
  font-size: 16px;
  font-weight: 500;
}

.quote-card footer span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.team-gallery {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr;
  gap: 16px;
}

.team-photo,
.about-card {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
}

.team-photo {
  min-height: 470px;
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-photo-wide img {
  object-position: center;
}

.team-photo-tall img {
  object-position: center;
}

.team-photo::after {
  position: absolute;
  inset: 55% 0 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.72));
  content: "";
}

.team-photo figcaption {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 22px;
  left: 24px;
  color: var(--white);
  font-size: 17px;
  font-weight: 400;
  letter-spacing: -0.025em;
}

.about-card {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 330px;
  padding: 30px;
}

.about-card h3 {
  margin: 80px 0 17px;
  font-size: 29px;
  font-weight: 300;
  letter-spacing: -0.045em;
  line-height: 1.12;
}

.about-card > p:last-child {
  margin: 0;
  color: var(--gray-700);
  font-size: 13px;
  line-height: 1.65;
}

.about-copy {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 20px 90px;
  align-items: start;
  max-width: 1050px;
}

.about-copy h2 {
  grid-row: 1 / span 3;
  margin: 0;
  font-size: clamp(52px, 6vw, 76px);
  font-weight: 300;
  letter-spacing: -0.055em;
  line-height: 1;
}

.about-copy p {
  margin: 0;
  color: var(--gray-700);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.68;
}

.process-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-section {
  background: var(--gray-100);
}

.process-card {
  padding: 44px 32px 0;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 18px;
}

.process-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  align-items: start;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--gray-300);
}

.process-head h2,
.process-head p {
  margin: 0;
}

.process-head h2 {
  font-size: clamp(46px, 5vw, 64px);
  font-weight: 300;
  letter-spacing: -0.05em;
  line-height: 1.08;
}

.process-head p {
  max-width: 620px;
  color: var(--gray-700);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.65;
}

.process-list li {
  display: grid;
  grid-template-columns: 80px 1fr 180px;
  gap: 30px;
  align-items: center;
  min-height: 108px;
  border-bottom: 1px solid var(--gray-300);
}

.process-list li:last-child {
  border-bottom: 0;
}

.process-list li > span {
  color: var(--gray-500);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: -0.02em;
}

.process-list h3,
.process-list p {
  margin: 0;
}

.process-list h3 {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.process-list p {
  margin-top: 5px;
  color: var(--gray-700);
  font-size: 14px;
}

.process-list small {
  color: var(--gray-700);
  font-size: 13px;
  text-align: right;
}

.final-section {
  padding: 0 0 80px;
}

.final-card {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 70px;
  align-items: end;
  min-height: 460px;
  padding: 56px;
  color: var(--white);
  background: var(--black);
  border-radius: var(--radius);
}

.final-card > div:last-child p {
  max-width: 400px;
  margin: 0 0 25px;
  color: #b9b9b9;
  font-size: 14px;
}

.site-footer {
  padding: 30px 0;
  border-top: 1px solid var(--gray-200);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
}

.footer-inner > p {
  margin: 0;
  color: var(--gray-700);
  font-size: 11px;
  text-align: center;
}

.footer-inner nav,
.flow-footer .flow-container {
  display: flex;
  justify-content: flex-end;
  gap: 22px;
}

.footer-inner nav a,
.flow-footer a {
  color: var(--gray-700);
  font-size: 11px;
  text-decoration: none;
}

.mobile-apply {
  position: fixed;
  z-index: 50;
  right: 12px;
  bottom: 12px;
  left: 12px;
  display: none;
  align-items: center;
  justify-content: space-between;
  min-height: 56px;
  padding: 0 22px;
  color: var(--white);
  background: var(--button-black);
  border: 1px solid var(--button-black);
  border-radius: var(--pill);
  font-size: 14px;
  text-decoration: none;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.22);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(18px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.mobile-apply:hover {
  color: var(--white);
  background: var(--button-black-hover);
  border-color: var(--button-black-hover);
}

body:not(.flow-body) .mobile-apply,
body:not(.flow-body) .mobile-apply:hover {
  border: 2px solid var(--white);
}

/* Funnel page 2 */
.flow-body {
  min-height: 100vh;
  background: var(--funnel-bg);
}

.flow-body:not(.application-body) {
  background: var(--funnel-bg);
}

.flow-body .wt-button:not(.wt-button-outline),
.flow-body .mobile-apply {
  color: var(--white);
  background: var(--button-black);
  border-color: var(--button-black);
}

.flow-body .wt-button:not(.wt-button-outline):hover,
.flow-body .mobile-apply:hover {
  color: var(--white);
  background: var(--button-black-hover);
  border-color: var(--button-black-hover);
}

.flow-header {
  position: sticky;
  top: 0;
}

.page-progress {
  height: 5px;
  overflow: hidden;
  background: var(--gray-200);
}

.page-progress span {
  display: block;
  height: 100%;
  background: repeating-linear-gradient(
    135deg,
    #050505 0 8px,
    #5f5f5f 8px 16px
  );
  transform-origin: left;
  transition: width 360ms cubic-bezier(0.22, 1, 0.36, 1);
  animation: progress-enter 520ms cubic-bezier(0.22, 1, 0.36, 1) backwards;
}

.benefits-page {
  padding: 96px 0 48px;
  color: var(--black);
  background: var(--funnel-bg);
}

.flow-title {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.flow-title h1,
.question-step h1 {
  margin: 0;
  font-size: clamp(52px, 7vw, 76px);
  font-weight: 300;
  letter-spacing: -0.058em;
  line-height: 1;
}

.flow-title > p:last-child,
.question-intro {
  max-width: 660px;
  margin: 24px 0 0;
  color: var(--gray-700);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.6;
}

.flow-title > p:last-child {
  margin-inline: auto;
}

.benefits-page .flow-title > p:last-child,
.benefits-page .role-overview-head > p:last-child {
  color: var(--gray-700);
}

.component-grid-flow {
  margin-top: 52px;
}

.profile-requirements {
  max-width: 780px;
  margin: 52px auto 0;
  padding: 0;
  border-top: 1px solid var(--gray-300);
  list-style: none;
}

.profile-requirements li {
  display: grid;
  grid-template-columns: 40px minmax(0, 560px);
  gap: 18px;
  justify-content: center;
  align-items: start;
  padding: 24px 0;
  border-bottom: 1px solid var(--gray-300);
}

.profile-requirements li > span {
  font-family: "Apple Color Emoji", "Segoe UI Emoji", sans-serif;
  font-size: 23px;
  line-height: 1.2;
  text-align: center;
}

.profile-requirements h3,
.profile-requirements p {
  margin: 0;
}

.profile-requirements h3 {
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.025em;
}

.profile-requirements p {
  margin-top: 5px;
  color: var(--gray-700);
  font-size: 13px;
  line-height: 1.55;
}

.component-grid-flow .component-card {
  color: var(--black);
}

.benefit-overview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 52px;
}

.benefit-overview article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  min-height: 165px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
}

.benefit-overview article > span {
  color: var(--gray-500);
  font-size: 11px;
}

.benefit-overview article > .benefit-emoji {
  color: initial;
  font-family: "Apple Color Emoji", "Segoe UI Emoji", sans-serif;
  font-size: 27px;
  line-height: 1;
}

.benefit-overview h2,
.benefit-overview p {
  margin: 0;
}

.role-overview {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 72px;
  margin-top: 96px;
  padding-top: 72px;
  border-top: 1px solid var(--gray-300);
}

.role-overview-head h2 {
  max-width: 480px;
  margin: 0;
  font-size: clamp(40px, 5vw, 58px);
  font-weight: 300;
  letter-spacing: -0.05em;
  line-height: 1.05;
}

.role-overview-head > p:last-child {
  max-width: 480px;
  margin: 22px 0 0;
  color: var(--gray-700);
  font-size: 14px;
  line-height: 1.65;
}

.requirements-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.requirements-grid article {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 13px;
  align-items: start;
  min-height: 132px;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
}

.requirements-grid article > span {
  font-family: "Apple Color Emoji", "Segoe UI Emoji", sans-serif;
  font-size: 23px;
  line-height: 1.2;
}

.requirements-grid article:last-child:nth-child(odd) {
  grid-column: 1 / -1;
}

.requirements-grid h3,
.requirements-grid p {
  margin: 0;
}

.requirements-grid h3 {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.025em;
}

.requirements-grid p {
  margin-top: 7px;
  color: var(--gray-700);
  font-size: 12px;
  line-height: 1.55;
}

.role-overview-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--gray-300);
  list-style: none;
}

.role-overview-list li {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  padding: 24px 0;
  border-bottom: 1px solid var(--gray-300);
}

.role-overview-list li > span {
  color: var(--gray-500);
  font-size: 15px;
}

.role-overview-list h3,
.role-overview-list p {
  margin: 0;
}

.role-overview-list h3 {
  font-size: 19px;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.role-overview-list p {
  margin-top: 7px;
  color: var(--gray-700);
  font-size: 13px;
  line-height: 1.6;
}

.benefit-overview h2 {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.025em;
}

.benefit-overview p {
  margin-top: 8px;
  color: var(--gray-700);
  font-size: 12px;
  line-height: 1.6;
}

.flow-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  margin-top: 34px;
}

.benefits-page .flow-actions {
  margin-top: 56px;
  padding-top: 30px;
  border-top: 1px solid var(--gray-300);
}

.benefits-page .back-link {
  color: var(--gray-700);
}

.benefits-page .back-link:hover {
  color: var(--black);
}

.benefits-page .flow-actions .wt-button {
  color: var(--white);
  background: var(--button-black);
  border-color: var(--button-black);
}

.benefits-page .flow-actions .wt-button:hover {
  color: var(--white);
  background: var(--button-black-hover);
  border-color: var(--button-black-hover);
}

.back-link,
.text-action {
  padding: 0;
  color: var(--gray-700);
  background: transparent;
  border: 0;
  font-size: 12px;
  text-decoration: none;
}

.back-link:hover,
.text-action:hover {
  color: var(--black);
}

.flow-footer {
  padding: 24px 0 34px;
}

.flow-body:not(.application-body) .flow-footer {
  background: var(--funnel-bg);
}

.flow-body:not(.application-body) .flow-footer a {
  color: var(--gray-700);
}

/* Funnel page 3 */
.application-body {
  background: var(--funnel-bg);
}

.application-body .header-inner {
  justify-content: center;
}

.application-page {
  width: var(--flow-container);
  min-height: calc(100vh - 110px);
  margin-inline: auto;
  padding: 64px 0 35px;
}

.question-step {
  display: none;
  min-height: 530px;
  text-align: center;
  animation: question-in 320ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.question-step.is-active {
  display: block;
}

@keyframes question-in {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.question-step h1 {
  max-width: 790px;
  margin-inline: auto;
  font-size: clamp(42px, 5.2vw, 62px);
}

.answer-grid {
  display: grid;
  gap: 12px;
  max-width: 820px;
  margin: 48px auto 0;
  padding: 0;
  border: 0;
}

.answer-grid-four,
.answer-grid-two {
  grid-template-columns: 1fr 1fr;
}

.answer-grid-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.answer-card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
  flex-direction: column;
  padding: 22px;
  color: var(--white);
  background: var(--off-black);
  border: 1px solid var(--off-black);
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 150ms ease, border-color 150ms ease, box-shadow 150ms ease, transform 150ms ease;
}

.answer-card:hover {
  background: #2d2d2d;
  border-color: #2d2d2d;
  transform: translateY(-2px);
}

.answer-card:has(input:checked) {
  color: var(--white);
  background: var(--off-black);
  border-color: var(--white);
  box-shadow: 0 0 0 2px var(--off-black);
  transform: translateY(-2px);
}

.answer-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.answer-card strong,
.answer-card small {
  display: block;
}

.answer-card strong {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.025em;
}

.answer-visual {
  display: grid;
  min-width: 0;
  height: auto;
  margin-bottom: 26px;
  padding: 0;
  color: var(--white);
  background: transparent;
  border-radius: 0;
  font-size: 36px;
  font-weight: 500;
  line-height: 1;
  place-items: center;
}

.answer-visual-emoji {
  font-family: "Apple Color Emoji", "Segoe UI Emoji", sans-serif;
  font-size: 34px;
}

.answer-card small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  line-height: 1.5;
}

.answer-card:has(input:checked) small {
  color: rgba(255, 255, 255, 0.78);
}

.answer-card i {
  color: var(--white);
  font-style: normal;
  text-align: right;
}

.answer-card:has(input:checked) i {
  font-size: 0;
}

.answer-card:has(input:checked) i::after {
  content: "✓";
  font-size: 16px;
}

.answer-card-large {
  min-height: 235px;
}

.auto-hint {
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 13px 2px 0;
  color: var(--gray-500);
  font-size: 10px;
}

.field-error,
.voice-error {
  min-height: 20px;
  margin: 10px 0 0;
  color: var(--danger);
  font-size: 12px;
}

.question-step > .field-error {
  text-align: center;
}

.application-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-height: 64px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--gray-200);
}

#submitButton {
  display: none;
}

.final-question {
  max-width: 840px;
  min-height: auto;
  margin: 0 auto;
  text-align: left;
}

.final-question h1 {
  margin-inline: auto;
  text-align: center;
}

.final-question > .question-intro {
  margin-inline: auto;
  text-align: center;
}

.voice-card,
.contact-card {
  margin-top: 42px;
  padding: 0;
  background: transparent;
  border: 0;
}

.voice-card {
  margin-top: 30px;
}

.contact-card {
  margin-top: 30px;
  padding-top: 0;
  border-top: 0;
}

.contact-card .form-fields {
  margin-top: 0;
}

.application-block-head h2,
.application-block-head p {
  margin: 0;
}

.application-block-head h2 {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: -0.02em;
}

.application-block-head p {
  max-width: 690px;
  margin-top: 5px;
  color: var(--gray-700);
  font-size: 14px;
  line-height: 1.5;
}

.recorder {
  margin-top: 0;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: 10px;
}

.recorder .application-block-head {
  margin-bottom: 22px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--gray-200);
}

.recorder-status {
  display: flex;
  align-items: center;
  gap: 13px;
}

.record-dot {
  width: 10px;
  height: 10px;
  background: var(--gray-300);
  border-radius: 50%;
}

.record-dot.is-live {
  background: #d33b32;
  box-shadow: 0 0 0 6px rgba(211, 59, 50, 0.12);
  animation: pulse 1.2s ease-in-out infinite;
}

@keyframes pulse {
  50% { opacity: 0.45; }
}

.recorder-status div {
  display: flex;
  flex-direction: column;
}

.recorder-status strong {
  font-size: 16px;
  font-weight: 400;
}

.recorder-status small {
  color: var(--gray-700);
  font-size: 11px;
}

.recorder-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
}

.recorder-actions .wt-button {
  min-height: 58px;
  padding: 0 24px;
  font-size: 16px;
}

.recorder-actions .button-emoji {
  font-family: "Apple Color Emoji", "Segoe UI Emoji", sans-serif;
  font-size: 20px;
  line-height: 1;
}

.text-action {
  margin-left: 5px;
}

.recorder audio {
  width: 100%;
  margin-top: 20px;
}

.microphone-note {
  margin: 17px 0 0;
  color: var(--gray-500);
  font-size: 10px;
}

.upload-fallback {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--gray-200);
}

.upload-fallback > span,
.upload-fallback small {
  color: var(--gray-700);
  font-size: 11px;
}

.file-button {
  position: relative;
  display: inline-flex;
  min-height: 35px;
  align-items: center;
  padding: 8px 14px;
  border: 1px solid var(--gray-300);
  border-radius: var(--pill);
  font-size: 11px;
  cursor: pointer;
}

.file-button input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.form-fields {
  display: grid;
  gap: 15px;
  margin-top: 24px;
}

.contact-fields {
  gap: 12px;
}

.contact-field {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 10px;
  align-items: center;
  min-height: 60px;
  padding: 0 15px;
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: 10px;
}

.contact-field-phone {
  grid-template-columns: 34px auto 1fr;
  gap: 8px;
}

.contact-field > span:first-child {
  margin: 0 !important;
  color: initial !important;
  font-family: "Apple Color Emoji", "Segoe UI Emoji", sans-serif;
  font-size: 20px !important;
}

.contact-field .phone-prefix {
  color: var(--gray-700);
  font-size: 15px;
}

.contact-field:focus-within {
  border-color: var(--black);
}

.contact-field input[type="text"],
.contact-field input[type="email"],
.contact-field input[type="tel"] {
  width: 100%;
  height: 58px;
  padding: 0;
  color: var(--black);
  background: transparent;
  border: 0;
  outline: 0;
  font: inherit;
}

.contact-field input::placeholder {
  color: #8a8f9d;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-fields label > span:first-child {
  display: block;
  margin-bottom: 7px;
  color: var(--gray-700);
  font-size: 11px;
}

.form-fields input[type="text"],
.form-fields input[type="email"],
.form-fields input[type="tel"] {
  width: 100%;
  height: 50px;
  padding: 0 14px;
  color: var(--black);
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: 8px;
  outline: 0;
}

.form-fields input[type="text"]:focus,
.form-fields input[type="email"]:focus,
.form-fields input[type="tel"]:focus {
  border-color: var(--black);
}

.contact-field input[type="text"],
.contact-field input[type="email"],
.contact-field input[type="tel"] {
  height: 58px;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.consent-check {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 9px;
  align-items: start;
  margin-top: 2px;
  color: var(--gray-700);
  font-size: 10px;
  line-height: 1.5;
}

.consent-check input {
  width: 17px;
  height: 17px;
  margin: 1px 0 0;
  accent-color: var(--black);
}

.consent-check > span {
  margin: 0 !important;
}

.result-step {
  max-width: 780px;
  padding: 65px 0 100px;
}

.result-mark {
  display: grid;
  width: 54px;
  height: 54px;
  margin-bottom: 35px;
  color: var(--white);
  background: var(--black);
  border-radius: 50%;
  place-items: center;
}

.result-step > p {
  max-width: 650px;
  margin: 25px 0;
  color: var(--gray-700);
  line-height: 1.65;
}

.application-actions.is-hidden,
.page-progress.is-hidden {
  display: none;
}

.application-actions.is-final #submitButton {
  min-width: 320px;
  justify-content: space-between;
}

@media (max-width: 900px) {
  .hero-team-grid {
    display: grid;
    height: auto;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: clamp(250px, 70vw, 430px) clamp(150px, 38vw, 240px);
    grid-template-areas:
      "catamaran workshop"
      "lunch relax";
    gap: 10px;
    margin-top: 56px;
  }

  .hero-image-mobile {
    display: none;
  }

  .hero-team-small {
    display: contents;
  }

  .hero-team-catamaran {
    grid-area: catamaran;
  }

  .hero-team-relax {
    grid-area: relax;
  }

  .job-meta {
    grid-template-columns: 1fr 1fr;
  }

  .job-meta > div:nth-child(3) {
    padding-left: 0;
    border-top: 1px solid var(--gray-200);
    border-left: 0;
  }

  .job-meta > div:nth-child(4) {
    border-top: 1px solid var(--gray-200);
  }

  .section-head,
  .section-head-wide {
    grid-template-columns: 0.4fr 1.2fr;
  }

  .section-head-clean {
    grid-template-columns: 1.2fr 0.65fr;
  }

  .section-head-clean > p:last-child {
    grid-column: auto;
  }

  .section-head > p:last-child {
    grid-column: 2;
  }

  #benefits .section-head {
    grid-template-columns: 1fr;
    gap: 18px;
    align-items: start;
    margin-bottom: 44px;
  }

  #benefits .section-head > p:last-child {
    grid-column: auto;
    max-width: 560px;
    margin: 0;
    justify-self: start;
  }

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

  .role-fit-grid,
  .qualification-panel {
    grid-template-columns: 1fr;
  }

  .role-overview,
  .about-copy {
    grid-template-columns: 1fr;
  }

  .about-copy h2 {
    grid-row: auto;
    margin-bottom: 26px;
  }

  .founder-collaboration {
    grid-template-columns: 1fr;
  }

  .qualification-panel {
    gap: 35px;
  }

  .split-section {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .split-copy {
    position: static;
  }

  .team-gallery {
    grid-template-columns: 1fr 1fr;
  }

  .about-card {
    grid-column: 1 / -1;
    min-height: 340px;
  }

  .answer-grid-three {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  :root {
    --container: calc(100vw - 28px);
    --flow-container: calc(100vw - 28px);
  }

  body:not(.flow-body) {
    padding-bottom: 76px;
  }

  .header-inner {
    height: 62px;
  }

  .site-header .wt-button-small {
    display: none;
  }

  .wordmark {
    font-size: 19px;
  }

  .hero-section {
    padding: 58px 0 64px;
  }

  .hero-copy h1 {
    font-size: clamp(46px, 12vw, 60px);
  }

  .hero-intro {
    margin-top: 25px;
    font-size: 17px;
  }

  .job-meta {
    grid-template-columns: 1fr;
    margin-top: 35px;
  }

  .job-meta > div {
    min-height: 78px;
    padding: 13px 0;
  }

  .job-meta > div + div {
    padding-left: 0;
    border-top: 1px solid var(--gray-200);
    border-left: 0;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 8px;
  }

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

  .hero-actions p {
    margin-top: 2px;
    text-align: center;
  }

  .hero-image {
    height: 470px;
    margin-top: 46px;
  }

  .hero-image img {
    object-position: 50% center;
  }

  .hero-image figcaption {
    right: 20px;
    bottom: 20px;
    left: 20px;
  }

  .hero-image figcaption strong {
    font-size: 19px;
  }

  .wt-section {
    padding: 78px 0;
  }

  .section-head,
  .section-head-wide {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 40px;
  }

  #benefits .section-head {
    gap: 14px;
    margin-bottom: 36px;
  }

  .section-head > p:last-child {
    grid-column: auto;
    margin-top: 10px;
  }

  .section-head h2,
  .split-copy h2,
  .final-card h2 {
    font-size: 48px;
  }

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

  .component-card {
    min-height: 188px;
    padding: 18px 18px 20px;
  }

  .component-card h2,
  .component-card h3 {
    margin: 0 0 9px;
    font-size: 22px;
  }

  .component-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 12px;
    font-size: 28px;
  }

  .component-card p {
    font-size: 15px;
    line-height: 1.48;
  }

  .role-fit-grid {
    gap: 10px;
  }

  .founders-head {
    margin-bottom: 40px;
    text-align: left;
  }

  .founders-head h2 {
    font-size: 48px;
  }

  .founders-head h3 {
    font-size: 32px;
  }

  .founders-head > p:last-child {
    margin-left: 0;
  }

  .founders-subsection {
    margin-top: 64px;
    padding-top: 54px;
  }

  .founders-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .founder-profile-card > div {
    padding: 13px 2px 2px;
  }

  .founder-profile-card p {
    font-size: 9px;
    line-height: 1.4;
    letter-spacing: 0.055em;
  }

  .founder-profile-card h3 {
    margin-top: 7px;
    font-size: 21px;
  }

  .founder-collaboration {
    gap: 1px;
    margin-top: 24px;
  }

  .founder-collaboration li {
    min-height: 94px;
    padding: 20px;
  }

  .role-fit-card,
  .qualification-panel {
    padding: 26px;
  }

  .role-fit-card h3,
  .qualification-panel h3 {
    font-size: 30px;
  }

  .role-fit-intro {
    margin: 17px 0 28px;
  }

  .role-checklist li {
    grid-template-columns: 34px 1fr;
    gap: 11px;
    padding: 18px 0;
  }

  .qualification-panel {
    gap: 28px;
  }

  .quote-section {
    padding-bottom: 78px;
  }

  .quote-section-featured {
    padding-top: 78px;
  }

  .quote-card {
    border-radius: 22px;
  }

  .quote-background {
    top: -20%;
    height: 120%;
  }

  .quote-panel {
    padding: 22px;
  }

  .quote-mark {
    height: 28px;
    margin-bottom: 8px;
    font-size: 56px;
  }

  .quote-spotlight-copy {
    margin-bottom: 18px;
    font-size: clamp(24px, 6.4vw, 28px);
    line-height: 1.08;
  }

  .team-gallery {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .about-copy {
    gap: 18px;
  }

  .about-copy h2 {
    font-size: 48px;
  }

  .about-copy p {
    font-size: 15px;
  }

  .team-photo {
    min-height: 320px;
  }

  .team-photo-tall {
    min-height: 390px;
  }

  .about-card {
    grid-column: auto;
    min-height: 330px;
    padding: 24px;
  }

  .flow-header .wordmark img {
    width: 131px;
  }

  .about-card h3 {
    font-size: 27px;
  }

  .process-list li {
    grid-template-columns: 36px 1fr;
    gap: 13px;
    padding: 18px 0;
  }

  .process-card {
    padding: 18px 18px 0;
    border-radius: 14px;
  }

  .process-head {
    grid-template-columns: 1fr;
    gap: 14px;
    padding-bottom: 26px;
  }

  .process-head h2 {
    font-size: 42px;
  }

  .process-head p {
    margin: 0;
    font-size: 15px;
  }

  .process-list li > span {
    font-size: 16px;
  }

  .process-list small {
    grid-column: 2;
    text-align: left;
  }

  .final-section {
    padding-bottom: 50px;
  }

  .final-card {
    grid-template-columns: 1fr;
    gap: 55px;
    min-height: 520px;
    padding: 28px;
  }

  .final-card .wt-button {
    width: 100%;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 18px;
    justify-items: center;
  }

  .footer-inner > p {
    display: none;
  }

  .footer-inner nav {
    justify-content: center;
  }

  .mobile-apply {
    display: flex;
  }

  .mobile-apply.is-visible,
  .mobile-apply[data-always-visible] {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  /* Page 2 mobile */
  .flow-body:not(.application-body) {
    padding-bottom: 76px;
  }

  .benefits-page {
    padding-top: 64px;
  }

  .flow-title h1,
  .question-step h1 {
    font-size: 45px;
  }

  .question-step:not(.final-question):not(.result-step) h1 {
    max-width: 350px;
    font-size: 35px;
    line-height: 1.04;
  }

  .flow-title > p:last-child,
  .question-intro {
    font-size: 14px;
  }

  .component-grid-flow {
    margin-top: 38px;
  }

  .profile-requirements {
    margin-top: 38px;
  }

  .profile-requirements li {
    grid-template-columns: 32px minmax(0, 1fr);
    gap: 13px;
    padding: 20px 0;
  }

  .profile-requirements li > span {
    font-size: 21px;
  }

  .profile-requirements h3 {
    font-size: 16px;
  }

  .profile-requirements p {
    font-size: 12px;
  }

  .component-grid-flow .component-card {
    min-height: 156px;
    padding: 17px 16px 18px;
  }

  .component-grid-flow .component-icon {
    margin-bottom: 9px;
  }

  .component-grid-flow .component-card p {
    font-size: 15px;
    line-height: 1.42;
  }

  .role-overview {
    gap: 38px;
    margin-top: 68px;
    padding-top: 56px;
  }

  .role-overview-head h2 {
    font-size: 42px;
  }

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

  .requirements-grid article:last-child:nth-child(odd) {
    grid-column: auto;
  }

  .flow-actions {
    align-items: stretch;
    flex-direction: column-reverse;
  }

  .flow-actions .wt-button {
    display: none;
  }

  .flow-actions .back-link {
    text-align: center;
  }

  .flow-footer .flow-container {
    justify-content: center;
  }

  /* Page 3 mobile */
  .application-body {
    padding-bottom: 92px;
  }

  .application-page {
    padding-top: 48px;
  }

  .question-step {
    min-height: 590px;
  }

  .final-question {
    min-height: auto;
  }

  .answer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 30px;
  }

  .answer-card,
  .answer-card-large {
    min-height: 174px;
    padding: 15px 10px;
  }

  .answer-card strong {
    font-size: 16px;
    line-height: 1.25;
  }

  .answer-visual {
    min-width: 0;
    height: auto;
    margin-bottom: 22px;
    padding: 0;
    font-size: 34px;
  }

  .application-actions {
    position: sticky;
    bottom: 0;
    background: var(--funnel-bg);
  }

  .application-actions.is-final {
    position: fixed;
    z-index: 60;
    right: 12px;
    bottom: 12px;
    left: 12px;
    min-height: auto;
    margin: 0;
    padding: 0;
    background: transparent;
    border: 0;
  }

  .application-actions.is-final #backButton {
    display: none;
  }

  .application-actions.is-final #submitButton {
    width: 100%;
    min-width: 0;
    min-height: 56px;
    justify-content: space-between;
    border: 1px solid var(--button-black);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.22);
  }

  .voice-card {
    padding: 0;
  }

  .contact-card {
    padding-top: 0;
  }

  .recorder {
    padding: 17px;
  }

  .recorder-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .recorder-actions .wt-button {
    width: 100%;
  }

  .text-action {
    margin: 5px 0 0;
  }

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

@media (min-width: 541px) and (max-width: 900px) {
  .quote-card {
    width: 80%;
  }
}

@media (min-width: 901px) {
  .quote-section {
    padding-bottom: 96px;
  }

  .quote-section-featured {
    padding-top: 96px;
  }

  .quote-card {
    width: min(100%, 720px);
    aspect-ratio: 4 / 5;
    border-radius: 24px;
  }

  .quote-panel {
    right: 7%;
    bottom: 5%;
    left: 7%;
    min-height: 36%;
    padding: 36px;
    border-radius: 21px;
  }

  .quote-mark {
    height: 34px;
    margin-bottom: 12px;
    font-size: 64px;
  }

  .quote-spotlight-copy {
    max-width: 520px;
    margin-bottom: 24px;
    font-size: 38px;
  }

  .quote-card footer strong {
    font-size: 15px;
  }

  .quote-card footer span {
    font-size: 12px;
  }
}

@media (hover: hover) and (pointer: fine) {
  .wt-button:hover span,
  .mobile-apply:hover span {
    transform: translateX(3px);
  }

  .component-card:hover {
    border-color: var(--gray-300);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.055);
    transform: translateY(-4px);
  }

  .component-card:hover .component-icon {
    transform: translateY(-2px) scale(1.04);
  }

  .hero-team-card:hover img,
  .quote-card:hover .quote-background {
    transform: scale(1.015);
  }

  .founder-profile-card:hover img {
    transform: scale(1.012);
  }
}

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

  .wt-button:hover,
  .wt-button:active,
  .component-card:hover,
  .component-card:hover .component-icon,
  .hero-team-card:hover img,
  .quote-card:hover .quote-background,
  .founder-profile-card:hover img,
  .answer-card:hover,
  .answer-card:has(input:checked) {
    transform: none !important;
  }

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