:root {
  --yellow: #fcaf01;
  --black: #000000;
  --white: #ffffff;
  --muted-white: rgba(255, 255, 255, 0.8);
  --field-placeholder: #757575;
  --content-max: 1280px;
  --content-width: min(var(--content-max), calc(100vw - 120px));
  --loader-offset: -300ms;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--black);
}

body {
  margin: 0;
  color: var(--white);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--black);
  overflow-x: clip;
}

html[data-language="zh"] body {
  font-family:
    "Noto Sans SC",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "PingFang SC",
    "Microsoft YaHei",
    sans-serif;
}

body::before {
  position: fixed;
  z-index: 2000;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.25) 50%),
    linear-gradient(
      90deg,
      rgba(255, 0, 0, 0.01),
      rgba(0, 255, 0, 0.005),
      rgba(0, 0, 255, 0.01)
    );
  background-size:
    100% 2px,
    3px 100%;
}

body.is-page-loading {
  overflow: hidden;
}

button,
input,
textarea {
  font: inherit;
}

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

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

.site-shell {
  width: 100%;
  overflow: visible;
}

.page-loader {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: flex;
  align-items: center;
  background: var(--yellow);
  color: var(--black);
  overflow: hidden;
  transform: translateY(0);
  transition: transform 720ms cubic-bezier(0.76, 0, 0.24, 1);
}

.page-loader.is-leaving {
  transform: translateY(-100%);
}

.page-loader.is-hidden {
  display: none;
}

.page-loader__bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 12vw;
  height: 6px;
  background: var(--black);
  transform: translateX(-100vw);
  animation:
    loader-stretch 1500ms cubic-bezier(0.76, 0, 0.24, 1) forwards,
    loader-word-fly 1500ms cubic-bezier(0.76, 0, 0.24, 1) forwards;
  animation-delay: var(--loader-offset), var(--loader-offset);
}

.page-loader__word-track {
  position: absolute;
  top: 50%;
  left: 0;
  width: 12vw;
  overflow: hidden;
  transform: translateY(-50%);
  animation: loader-stretch 1500ms cubic-bezier(0.76, 0, 0.24, 1) forwards;
  animation-delay: var(--loader-offset);
}

.page-loader__word {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  color: var(--black);
  font-size: clamp(72px, 9.722vw, 140px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.9;
  text-transform: uppercase;
  transform: translateX(-100vw);
  animation: loader-word-fly 1500ms cubic-bezier(0.76, 0, 0.24, 1) forwards;
  animation-delay: var(--loader-offset);
  white-space: nowrap;
}

.page-loader__word span {
  display: block;
  flex: 0 0 auto;
  line-height: 0.9;
}

.toast {
  position: fixed;
  z-index: 100;
  top: 72px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  color: var(--black);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  white-space: nowrap;
  background: var(--white);
  border: 2px solid var(--black);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -18px);
  transition:
    opacity 0.24s ease,
    transform 0.24s ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

.toast img {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
}

@keyframes loader-stretch {
  to {
    width: 100%;
  }
}

@keyframes loader-word-fly {
  to {
    transform: translateX(0);
  }
}

.screen {
  position: relative;
  width: 100%;
  height: 100svh;
  min-height: 640px;
  overflow: hidden;
}

.hero {
  background: var(--black);
}

.nav {
  position: relative;
  z-index: 5;
  top: 0;
  left: 50%;
  display: flex;
  width: var(--content-width);
  height: 72px;
  align-items: center;
  justify-content: center;
  padding: 20px 0;
  transform: translateX(-50%);
}

.brand {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  width: clamp(32px, 2.882vw, 41.5px);
  height: clamp(25px, 2.222vw, 32px);
}

.brand img {
  width: 100%;
  height: 100%;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: 0;
}

.nav-link {
  font-size: 13px;
  font-weight: 500;
  color: var(--muted-white);
  transition: color 0.2s;
  white-space: nowrap;
  padding: 0;
}

.nav-link:hover,
.nav-link.active {
  color: var(--yellow);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 22px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  margin-left: auto;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: background 0.2s;
}

@media (max-width: 860px) {
  .nav-toggle {
    display: flex;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
  }

  .brand {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }

  .nav-links {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin-left: 0;
    padding: 16px 24px 24px;
    background: rgba(0, 0, 0, 0.95);
    border-top: 1px solid #222;
    display: none;
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-link {
    padding: 12px 0;
    font-size: 16px;
    border-bottom: 1px solid #1a1a1a;
  }

  .language-switcher {
    margin-top: 16px;
  }
}

.language-switcher {
  position: relative;
}

.language-switcher::after {
  position: absolute;
  top: 100%;
  right: 0;
  width: 130px;
  height: 8px;
  content: "";
}

.language-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 5px;
  color: var(--black);
  background: linear-gradient(var(--yellow), var(--yellow)) center / calc(100% - 10px) 28px no-repeat;
  border: 1px solid var(--white);
  cursor: pointer;
}

.language-button span {
  display: inline-flex;
  height: 28px;
  align-items: center;
  justify-content: center;
  padding-left: 8px;
  font-size: 14px;
  font-weight: 500;
  line-height: normal;
}

.language-button img {
  width: 20px;
  height: 20px;
  margin-right: 8px;
  transition: transform 0.2s ease;
}

.language-switcher:hover .language-button img,
.language-switcher:focus-within .language-button img,
.language-switcher.is-open .language-button img {
  transform: rotate(180deg);
}

.language-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 10;
  display: flex;
  width: 130px;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  color: var(--white);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  white-space: nowrap;
  background: #222222;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-2px);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease,
    visibility 0.2s ease;
  visibility: hidden;
}

.language-menu button {
  padding: 0;
  color: inherit;
  font: inherit;
  text-align: left;
  background: transparent;
  border: 0;
  cursor: pointer;
  transition: color 0.18s ease;
}

.language-menu button:hover,
.language-menu button:focus-visible,
.language-menu button.active {
  color: var(--yellow);
}

.language-menu button.active {
  text-decoration: underline;
  text-underline-position: from-font;
}

.language-switcher:hover .language-menu,
.language-switcher:focus-within .language-menu,
.language-switcher.is-open .language-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
}

.hero-frame {
  position: absolute;
  top: 0;
  left: 50%;
  display: flex;
  width: var(--content-width);
  height: 100%;
  align-items: center;
  justify-content: space-between;
  gap: clamp(24px, 3.5vw, 48px);
  padding-top: 72px;
  transform: translateX(-50%);
}

.hero-copy {
  position: relative;
  z-index: 3;
  display: flex;
  flex: 0 0 42%;
  width: auto;
  min-width: 0;
  max-width: 540px;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  transform: translateY(-3%);
}

.status-row {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 20px;
  padding: 0 6px;
  margin-bottom: 10px;
}

.status-row img {
  width: 25px;
  height: 8px;
}

.status-row span {
  color: var(--yellow);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 1px;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.hero h1 {
  display: flex;
  width: 100%;
  flex-direction: column;
  margin: 0;
  color: var(--white);
  font-size: clamp(70px, 7.7vw, 122px);
  font-weight: 900;
  letter-spacing: -0.0417em;
  line-height: 0.9;
  text-transform: uppercase;
  white-space: nowrap;
}

.hero h1 .accent {
  color: var(--yellow);
}

html[data-language="zh"] .hero h1 {
  line-height: 1;
}

.hero-copy p {
  width: 100%;
  margin: 0;
  color: var(--muted-white);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  margin-top: 10px;
}

.cta {
  position: relative;
  z-index: 0;
  display: inline-flex;
  height: 63px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  overflow: visible;
  border: 0;
  cursor: pointer;
  font-weight: 500;
  isolation: isolate;
  text-transform: uppercase;
  background: transparent;
}

.cta::before,
.cta::after {
  position: absolute;
  inset: 0;
  content: "";
}

.cta::before {
  z-index: 0;
  background: var(--cta-offset-bg);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.cta::after {
  z-index: 1;
  background: var(--cta-bg);
  transition: transform 0.3s ease;
  will-change: transform;
}

.cta:not(:disabled):hover::before,
.cta:not(:disabled):focus-visible::before {
  opacity: 1;
}

.cta:not(:disabled):hover::after,
.cta:not(:disabled):focus-visible::after {
  transform: translate(5px, -5px);
}

.cta span {
  position: relative;
  z-index: 2;
  font-size: 20px;
  line-height: normal;
  transition: transform 0.3s ease;
  white-space: nowrap;
}

.cta img {
  position: relative;
  z-index: 2;
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}

.cta:not(:disabled):hover > span:not(.loading-animation),
.cta:not(:disabled):focus-visible > span:not(.loading-animation) {
  transform: translate(5px, -5px);
}

.cta:not(:disabled):hover img,
.cta:not(:disabled):focus-visible img {
  transform: translate(11px, -5px);
}

.cta:disabled:not(.is-loading) {
  cursor: not-allowed;
  opacity: 0.45;
}

.loading-animation {
  display: none;
  width: 60px;
  height: 60px;
}

.loading-animation svg {
  display: block;
  width: 100%;
  height: 100%;
}

.cta.is-loading {
  cursor: wait;
}

.cta.is-loading:disabled {
  opacity: 1;
}

.cta.is-loading .button-label,
.cta.is-loading img {
  display: none;
}

.cta.is-loading .loading-animation {
  display: block;
}

.primary {
  --cta-bg: var(--yellow);
  --cta-offset-bg: var(--white);
  margin-top: min(6.667svh, 60px);
  padding: 20px;
  color: var(--black);
}

.cta-link {
  --cta-bg: var(--yellow);
  --cta-offset-bg: var(--white);
  padding: 0 32px;
  color: var(--black);
  text-decoration: none;
  margin-top: 0;
}

.hero-media {
  --hero-rotate-x: 0deg;
  --hero-rotate-y: 0deg;
  --hero-shift-x: 0px;
  --hero-shift-y: 0px;
  --hero-content-y: -3%;
  position: relative;
  flex: 0 0 50%;
  width: auto;
  min-width: 0;
  aspect-ratio: 721 / 695;
  cursor: pointer;
  isolation: isolate;
  transform: translateY(var(--hero-content-y)) perspective(1100px) rotateX(var(--hero-rotate-x))
    rotateY(var(--hero-rotate-y)) translate3d(var(--hero-shift-x), var(--hero-shift-y), 0);
  transform-origin: center center;
  transform-style: preserve-3d;
  transition: transform 560ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.hero-media.is-tilting {
  transition-duration: 90ms;
}

.hero-media video,
.hero-dot-canvas {
  display: block;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  transform: translateZ(24px);
}

.hero-media video {
  position: relative;
  z-index: 0;
  object-fit: cover;
  object-position: center;
  opacity: 1;
  transition: opacity 340ms ease;
  will-change: opacity, transform;
}

.hero-dot-canvas {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  background: transparent;
  opacity: 0;
  pointer-events: none;
  transition: opacity 340ms ease;
  will-change: opacity;
}

.hero-media.is-dot-active.is-dot-ready video {
  opacity: 0.18;
}

.hero-media.is-dot-active.is-dot-ready .hero-dot-canvas {
  opacity: 1;
}

.hero-media::before,
.hero-media::after {
  position: absolute;
  z-index: 3;
  background: var(--yellow);
  content: "";
  pointer-events: none;
}

.hero-media::before {
  top: 20px;
  right: 0;
  bottom: 0;
  width: 20px;
  transform: translateZ(10px);
}

.hero-media::after {
  right: 20px;
  bottom: 0;
  left: 20px;
  height: 20px;
  transform: translateZ(10px);
}

.team {
  position: relative;
  height: 235svh;
  min-height: 1600px;
  color: var(--black);
  background: var(--yellow);
}

.tagline {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  padding: 80px 24px 100px;
  background: var(--black);
  color: var(--white);
  text-align: center;
  gap: 28px;
}

.tagline h2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0;
  font-size: clamp(28px, 3.4vw, 48px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.tagline h2 span:last-child {
  color: var(--yellow);
}

.tagline-chips {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.tagline-chips li {
  padding: 8px 18px;
  border: 1px solid var(--yellow);
  border-radius: 999px;
  color: var(--yellow);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.team-sticky {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100svh;
  min-height: 620px;
  overflow: hidden;
  background: var(--yellow);
  --team-progress: 0;
  --team-font-size: 120px;
  --team-gap: 24px;
  --team-row-height: 145px;
  --team-thumb-height: 120px;
  --team-headline-x: 0px;
  --team-ribbon-x: 0px;
}

.team-marks {
  position: absolute;
  top: 70px;
  left: 50%;
  display: flex;
  width: min(82.222vw, 1184px);
  align-items: center;
  justify-content: space-between;
  transform: translateX(-50%);
}

.team-marks img:first-child {
  width: 19px;
  height: 16px;
}

.team-marks img:last-child {
  width: 33px;
  height: 16px;
}

.team-row {
  position: absolute;
  display: flex;
  width: max-content;
  height: var(--team-row-height);
  align-items: center;
  gap: var(--team-gap);
  will-change: transform;
}

.team-row-headline {
  top: calc(50% - 183px);
  left: 0;
  transform: translate3d(var(--team-headline-x), 0, 0);
}

.team-row-ribbon {
  top: calc(50% - 29px);
  left: 0;
  transform: translate3d(var(--team-ribbon-x), 0, 0);
}

.team-word {
  color: var(--black);
  font-size: var(--team-font-size);
  font-weight: 900;
  line-height: normal;
  letter-spacing: 0;
  text-transform: uppercase;
  white-space: nowrap;
}

.team-thumb {
  height: var(--team-thumb-height);
  width: auto;
  flex: 0 0 auto;
  border: 3px solid var(--white);
  border-radius: 0;
  object-fit: contain;
}

.team-footer {
  position: absolute;
  left: 50%;
  bottom: 70px;
  display: flex;
  width: min(760px, calc(100% - 40px));
  min-width: 0;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--black);
  text-align: center;
  transform: translateX(-50%);
}

.team-footer img {
  width: 50px;
  height: 16px;
  margin-bottom: 34px;
}

.team-footer p {
  width: 100%;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
}

.team-footer p:last-child {
  width: max-content;
  max-width: calc(100vw - 40px);
  white-space: nowrap;
  font-size: clamp(10px, 1.112vw, 16px);
}

.join-section {
  position: relative;
  display: grid;
  width: var(--content-width);
  min-height: 807px;
  grid-template-columns: minmax(320px, 438px) minmax(420px, 680px);
  column-gap: 40px;
  align-items: start;
  justify-content: space-between;
  padding: 100px 0 72px;
  margin-inline: auto;
  background: var(--black);
}

.join-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding-top: 50px;
}

.join-copy h2 {
  display: flex;
  flex-direction: column;
  margin: 0;
  color: var(--white);
  font-size: 72px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

html[data-language="kk"] .join-copy h2 {
  max-width: 100%;
  font-size: clamp(44px, 3.8vw, 52px);
}

.join-copy p {
  width: 438px;
  max-width: 100%;
  margin: 0;
  color: var(--muted-white);
  font-size: 16px;
  line-height: 1.5;
}

.join-copy img {
  width: 50px;
  height: 16px;
  margin-top: 30px;
}

.join-form {
  display: flex;
  width: 100%;
  min-width: 0;
  max-width: 680px;
  flex-direction: column;
  gap: 24px;
  padding: 42px;
  border: 2px solid var(--white);
}

.join-form label {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.join-form label > span {
  color: var(--white);
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
}

.join-form input,
.join-form textarea {
  width: 100%;
  color: var(--white);
  background: var(--black);
  border: 2px solid var(--white);
  border-radius: 0;
  outline: none;
  transition: border-color 0.2s ease;
}

.join-form input {
  height: 58px;
  padding: 17px;
}

.join-form textarea {
  min-height: 129px;
  padding: 17px;
  resize: vertical;
}

.join-form input::placeholder,
.join-form textarea::placeholder {
  color: var(--field-placeholder);
  font-size: 16px;
  font-weight: 500;
  opacity: 1;
}

.join-form input:hover,
.join-form textarea:hover,
.join-form input:focus,
.join-form textarea:focus {
  border-color: var(--yellow);
}

.secondary {
  --cta-bg: var(--white);
  --cta-offset-bg: var(--yellow);
  width: 100%;
  color: var(--black);
}

.footer {
  display: flex;
  width: var(--content-width);
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 0 0 40px;
  margin-inline: auto;
  background: var(--black);
}

.footer strong {
  color: var(--white);
  font-size: clamp(84px, 20.903vw, 301px);
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.footer-bottom {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom p {
  margin: 0;
  color: var(--white);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 14px;
  line-height: 1.5;
  white-space: nowrap;
}

html[data-language="zh"] .footer-bottom p {
  font-family:
    "Noto Sans SC",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "PingFang SC",
    "Microsoft YaHei",
    sans-serif;
}

.socials {
  display: flex;
  align-items: center;
  gap: 20px;
}

.socials a {
  display: inline-flex;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  transition: background-color 0.2s ease;
}

.socials img {
  width: 100%;
  height: 100%;
  transition: filter 0.2s ease;
}

.socials a:hover,
.socials a:focus-visible {
  background: var(--yellow);
}

.socials a:hover img,
.socials a:focus-visible img {
  filter: brightness(0);
}

@media (max-width: 1080px) {
  .hero-copy {
    flex-basis: 41%;
    max-width: none;
  }

  .hero-media {
    flex-basis: 50%;
  }

  .hero h1 {
    font-size: clamp(68px, 8.2vw, 90px);
  }

  .join-section {
    grid-template-columns: 1fr;
    row-gap: 48px;
    padding-top: 86px;
  }

  .join-copy {
    padding-top: 0;
  }

  .join-form {
    max-width: none;
  }
}

@media (max-width: 900px) {
  .screen {
    height: auto;
    min-height: 100svh;
  }

  .hero-frame {
    position: relative;
    min-height: 100svh;
    flex-direction: column;
    align-items: stretch;
    gap: 44px;
    padding-top: 112px;
    padding-bottom: 64px;
  }

  .hero-copy {
    flex: 0 0 auto;
    width: 100%;
    max-width: none;
  }

  .hero h1,
  .join-copy h2 {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.18em;
    white-space: normal;
  }

  .hero h1 span:nth-child(3),
  .join-copy h2 span:nth-child(3) {
    flex-basis: 100%;
  }

  .hero-media {
    flex: 0 0 auto;
    width: 100%;
    margin-top: 8px;
  }

  .hero-media video,
  .hero-dot-canvas {
    width: calc(100% - 20px);
    height: calc(100% - 20px);
  }
}

@media (max-width: 720px) {
  :root {
    --content-width: calc(100vw - 40px);
  }

  .page-loader__word {
    font-size: clamp(42px, 16vw, 72px);
  }

  .nav {
    padding-inline: 0;
  }

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

  .brand img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .hero h1 {
    font-size: 60px;
    letter-spacing: -0.03em;
    line-height: 0.8;
  }

  .status-row {
    gap: 8px;
  }

  .hero-copy p {
    max-width: 430px;
    font-size: 14px;
  }

  .cta {
    height: 56px;
  }

  .cta span {
    font-size: 16px;
  }

  .primary {
    margin-top: 28px;
  }

  .team {
    height: 245svh;
    min-height: 1580px;
  }

  .team-sticky {
    min-height: 680px;
    --team-font-size: 64px;
    --team-gap: 12px;
    --team-row-height: 96px;
    --team-thumb-height: 86px;
  }

  .team-marks {
    top: 70px;
    width: calc(100% - 60px);
  }

  .team-row-headline {
    top: calc(50% - 118px);
    left: 0;
    transform: translate3d(var(--team-headline-x), 0, 0);
  }

  .team-row-ribbon {
    top: calc(50% - 20px);
    left: 0;
    transform: translate3d(var(--team-ribbon-x), 0, 0);
  }

  .team-footer {
    width: calc(100% - 40px);
    min-width: 0;
    bottom: 70px;
  }

  .team-footer img {
    margin-bottom: 28px;
  }

  .team-footer p {
    font-size: 14px;
  }

  .team-footer p:last-child {
    font-size: 14px;
  }

  .join-section {
    min-height: auto;
    padding: 100px 0 80px;
  }

  .join-copy h2 {
    font-size: 42px;
  }

  .join-copy p,
  .join-form label > span,
  .join-form input::placeholder,
  .join-form textarea::placeholder {
    font-size: 14px;
  }

  .join-form {
    padding: 26px;
  }

  .footer {
    padding: 0 0 30px;
  }

  .footer strong {
    display: block;
    width: 100%;
    font-size: clamp(58px, 21vw, 142px);
    letter-spacing: 0;
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column-reverse;
    gap: 22px;
    align-items: flex-start;
  }

  .footer-bottom p {
    white-space: normal;
  }
}

/* Survey banner — pinned to top of homepage, dismissable */
.survey-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 24px;
  background: var(--yellow, #f7d046);
  color: #0c0c0c;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  transition: background 0.15s ease;
}
.survey-banner:hover,
.survey-banner:focus {
  background: #ffd75e;
  text-decoration: none;
  outline: none;
}
.survey-banner__text {
  flex: 1;
  text-align: left;
}
.survey-banner__cta {
  padding: 6px 14px;
  background: #0c0c0c;
  color: #f7d046;
  border-radius: 4px;
  font-weight: 700;
  font-size: 13px;
  white-space: nowrap;
  transition: transform 0.15s ease;
}
.survey-banner:hover .survey-banner__cta {
  transform: translateX(2px);
}
@media (max-width: 600px) {
  .survey-banner {
    flex-direction: column;
    gap: 8px;
    padding: 10px 16px;
    text-align: center;
  }
  .survey-banner__text { text-align: center; }
}
