/* PAS team application — v3 */
.crew-modal {
  width: min(1040px, calc(100% - 32px));
  max-width: none;
  height: min(820px, calc(100svh - 32px));
  max-height: none;
  margin: auto;
  padding: 0;
  overflow: hidden;
  border: 1px solid #d9dee6;
  border-radius: 20px;
  color: #171719;
  background: #fff;
  box-shadow: none;
}

.crew-modal::backdrop {
  background: rgba(18, 18, 20, 0.58);
}

.crew-modal[open] {
  display: grid;
  grid-template-rows: 58px minmax(0, 1fr);
  animation: crew-modal-in 220ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.crew-modal:focus { outline: none; }

.crew-topbar {
  position: relative;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  padding: 0 14px 0 20px;
  border-bottom: 1px solid #e7e7e9;
  background: #fff;
}

.crew-brand { display: flex; align-items: center; gap: 10px; }
.crew-brand > img { width: 24px; height: 34px; object-fit: contain; }
.crew-brand > span {
  width: 29px;
  height: 29px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  color: #fff;
  background: #1d1d1f;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.crew-brand strong { font-size: 0.82rem; letter-spacing: -0.01em; }

.crew-window-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}
.crew-window-control {
  --control-background: transparent;
  --control-icon: transparent;
  width: 25px;
  height: 25px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--control-background);
  box-shadow: none;
  cursor: pointer;
}
.crew-window-control svg {
  width: 14px;
  height: 14px;
  fill: var(--control-icon);
}
.crew-window-close {
  --control-background: #fa0d18;
  --control-icon: #9f0000;
}
.crew-window-minimize {
  --control-background: #f6cb45;
  --control-icon: #996f24;
}
.crew-window-expand {
  --control-background: #00ca48;
  --control-icon: #016f00;
}
.crew-window-control:focus-visible { outline: 3px solid rgba(0, 115, 235, 0.32); outline-offset: 2px; }

@media (min-width: 561px) {
  .crew-modal.is-maximized {
    width: calc(100% - 20px);
    height: calc(100svh - 20px);
    border-radius: 20px;
  }
}

.crew-layout { min-height: 0; display: grid; grid-template-columns: 310px minmax(0, 1fr); }

.crew-intro {
  position: relative;
  min-height: 0;
  padding: 35px 32px 28px;
  overflow: hidden;
  border-right: 1px solid #e5ebf2;
  background: #f5f7fa;
}

.crew-mole {
  position: relative;
  width: 156px;
  height: 156px;
  display: grid;
  place-items: center;
  margin: -17px auto 16px;
}
.crew-mole span {
  position: absolute;
  inset: 12px;
  border-radius: 34px;
  border: 1px solid #e1e6ed;
  background: #fff;
  box-shadow: none;
  transform: rotate(7deg);
}
.crew-mole img { position: relative; width: 148px; height: 148px; object-fit: contain; filter: none; }

.crew-open-pill {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 0 0 13px;
  padding: 7px 10px;
  border: 1px solid #c9ead4;
  border-radius: 999px;
  color: #247c43;
  background: #f8fdf9;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.crew-open-pill span { width: 7px; height: 7px; border-radius: 50%; background: #2caf67; box-shadow: none; }

.crew-intro h2 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 2.7rem);
  font-weight: 700;
  letter-spacing: -0.065em;
  line-height: 0.98;
}
.crew-intro > p:not(.crew-open-pill, .crew-time) { margin: 15px 0 0; color: #68686d; font-size: 0.86rem; line-height: 1.5; }

.crew-steps { display: grid; gap: 14px; margin: 27px 0 0; padding: 0; list-style: none; }
.crew-steps li { position: relative; display: grid; grid-template-columns: 30px 1fr; gap: 11px; align-items: start; }
.crew-steps li:not(:last-child)::after { content: ""; position: absolute; top: 31px; left: 14px; width: 1px; height: 19px; background: #cdccd1; }
.crew-steps li > span { width: 30px; height: 30px; display: grid; place-items: center; border: 1px solid #d0d0d4; border-radius: 10px; color: #525257; background: rgba(255, 255, 255, 0.8); font-size: 0.7rem; font-weight: 700; }
.crew-steps div { display: grid; gap: 2px; padding-top: 1px; }
.crew-steps strong { font-size: 0.76rem; }
.crew-steps small { color: #818187; font-size: 0.66rem; line-height: 1.35; }

.crew-time { position: absolute; left: 32px; right: 32px; bottom: 25px; margin: 0; padding-top: 15px; border-top: 1px solid #d7d7db; color: #77777c; font-size: 0.67rem; }
.crew-time { display: flex; align-items: center; gap: 7px; }
.crew-time img { width: 16px; height: 16px; flex: 0 0 auto; opacity: 0.55; }

.crew-content { min-width: 0; min-height: 0; overflow: auto; overscroll-behavior: contain; background: #fff; scrollbar-gutter: auto; }
.crew-form { width: min(100%, 680px); margin: 0 auto; padding: 38px 38px 44px; }
.crew-section { padding: 0 0 34px; border-bottom: 1px solid #e7edf4; }
.crew-section + .crew-section { padding-top: 34px; }

.crew-section-head { display: grid; grid-template-columns: 32px 1fr; align-items: start; gap: 13px; margin-bottom: 22px; }
.crew-section-head > span { width: 32px; height: 32px; display: grid; place-items: center; border: 0; border-radius: 50%; color: #fff; background: #2f6fbd; box-shadow: none; font-size: 0.75rem; font-weight: 800; line-height: 1; }
.crew-section-head h3 { margin: 0; font-size: 1.42rem; letter-spacing: -0.035em; line-height: 1.1; }
.crew-section-head p { margin: 4px 0 0; color: #7a7a80; font-size: 0.75rem; }

.crew-field-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 15px; }
.crew-field { display: grid; gap: 8px; min-width: 0; }
.crew-field > span:first-child, .crew-role-field legend { color: #242426; font-size: 0.76rem; font-weight: 400; }
.crew-roblox-label { display: flex; align-items: center; gap: 7px; min-height: 15px; }
.crew-roblox-label img { width: 58px; height: 12px; object-fit: contain; }
.crew-discord-label { display: flex; align-items: center; gap: 7px; min-height: 15px; }
.crew-discord-label img { width: 58px; height: 9px; object-fit: contain; }
.crew-roblox-label b, .crew-discord-label b { font-size: 0.76rem; line-height: 1; }
.crew-field > small, .crew-role-field > small, .crew-textarea-meta, .crew-note { color: #818187; font-size: 0.66rem; line-height: 1.4; }
.crew-contact { margin-top: 17px; }

.crew-discord-note {
  margin: 16px 0 0;
  padding: 13px 15px;
  border: 1px solid rgba(105, 125, 171, 0.2);
  border-radius: 12px;
  color: #5d6674;
  background: #f7faff;
  box-shadow: none;
}
.crew-discord-note > strong { display: block; margin-bottom: 4px; color: #66718a; font-size: 0.61rem; font-weight: 700; letter-spacing: 0.075em; text-transform: uppercase; }
.crew-discord-note p { margin: 0; font-size: 0.71rem; line-height: 1.55; }
.crew-discord-note a { display: inline-flex; align-items: center; gap: 5px; color: #315fbd; font-weight: 700; text-decoration: none; vertical-align: middle; }
.crew-discord-note a:hover { text-decoration: underline; text-underline-offset: 2px; }
.crew-discord-note img { width: 16px; height: 16px; display: block; flex: 0 0 auto; object-fit: contain; }

.crew-input {
  min-height: 51px;
  display: flex;
  align-items: center;
  min-width: 0;
  padding: 0 13px;
  border: 1px solid #dce4ee;
  border-radius: 12px;
  background: #fff;
  box-shadow: none;
  transition: border-color 150ms ease, background 150ms ease;
}
.crew-input:focus-within { border-color: #3f7fc9; background: #fff; box-shadow: none; outline: 3px solid #e5f0fc; outline-offset: 0; }
.crew-input > img { width: 25px; height: 25px; flex: 0 0 auto; margin-right: 9px; object-fit: contain; }
.crew-input > b { flex: 0 0 auto; margin-right: 3px; color: #77777d; font-weight: 400; }
.crew-input > b[hidden] { display: none; }
.crew-input input { width: 100%; min-width: 0; height: 49px; padding: 0; border: 0; outline: 0; color: #171719; background: transparent; font: inherit; font-size: 0.83rem; }
.crew-input input::placeholder, .crew-field textarea::placeholder { color: #a5aeba; }
.crew-input:has(input:user-invalid), .crew-field textarea:user-invalid { border-color: #e15a66; }

.crew-select { position: relative; }
.crew-select-trigger { width: 100%; min-height: 51px; display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 0 13px; border: 1px solid #d5d5d9; border-radius: 12px; color: #171719; background: #fafafa; cursor: pointer; transition: border-color 150ms ease, background 150ms ease; }
.crew-select-trigger:hover { border-color: #b4b4b9; background: #fff; }
.crew-select-trigger:focus-visible, .crew-select-trigger[aria-expanded="true"] { outline: 3px solid #ececef; outline-offset: 0; border-color: #88888d; background: #fff; box-shadow: none; }
.crew-select-trigger > span { display: flex; align-items: center; gap: 9px; font: inherit; font-size: 0.83rem; }
.crew-select-trigger > span img { width: 25px; height: 25px; object-fit: contain; }
.crew-select-trigger > span b { font-weight: 500; }
.crew-select-arrow { width: 27px; height: 27px; flex: 0 0 auto; padding: 6px; border-radius: 50%; background: #e9e9ec; opacity: 0.82; transition: transform 150ms ease, background 150ms ease; }
.crew-select-trigger:hover .crew-select-arrow { background: #dfdfe3; }
.crew-select-trigger[aria-expanded="true"] .crew-select-arrow { transform: rotate(180deg); }
.crew-select-menu { position: absolute; z-index: 30; top: calc(100% + 7px); left: 0; right: 0; max-height: 274px; padding: 7px 3px 7px 7px; overflow-x: hidden; overflow-y: auto; border: 1px solid #d9dee6; border-radius: 12px; background: #fff; box-shadow: none; }
.crew-select-menu[hidden] { display: none; }
.crew-select-menu button { width: 100%; min-height: 41px; display: grid; grid-template-columns: 27px 1fr 20px; align-items: center; gap: 9px; padding: 6px 9px; border: 0; border-radius: 9px; color: #202022; background: transparent; font: inherit; font-size: 0.78rem; text-align: left; cursor: pointer; }
.crew-select-menu button:hover, .crew-select-menu button:focus-visible { outline: 0; background: #f0f0f2; }
.crew-select-menu button img { width: 24px; height: 24px; object-fit: contain; }
.crew-select-menu button > b { opacity: 0; }
.crew-select-menu button[aria-selected="true"] > b { opacity: 1; }

.crew-content,
.crew-select-menu {
  scrollbar-width: thin;
  scrollbar-color: rgba(29, 29, 31, 0.3) transparent;
}

.crew-content::-webkit-scrollbar { width: 10px; }
.crew-select-menu::-webkit-scrollbar { width: 8px; }

.crew-content::-webkit-scrollbar-track,
.crew-select-menu::-webkit-scrollbar-track {
  margin-block: 11px;
  border-radius: 999px;
  background: transparent;
}

.crew-content::-webkit-scrollbar-thumb,
.crew-select-menu::-webkit-scrollbar-thumb {
  border: 3px solid transparent;
  border-radius: 999px;
  background: rgba(29, 29, 31, 0.3);
  background-clip: padding-box;
}

.crew-content::-webkit-scrollbar-thumb:hover,
.crew-select-menu::-webkit-scrollbar-thumb:hover {
  background: rgba(29, 29, 31, 0.46);
  background-clip: padding-box;
}

.crew-content::-webkit-scrollbar-button,
.crew-select-menu::-webkit-scrollbar-button {
  width: 0;
  height: 0;
  display: none;
}

.crew-role-field { min-width: 0; margin: 0 0 22px; padding: 0; border: 0; }
.crew-role-field legend { padding: 0; }
.crew-role-field > small { display: block; margin-top: 6px; }
.crew-role-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 9px; margin-top: 13px; }
.crew-role-grid label { position: relative; min-width: 0; cursor: pointer; }
.crew-role-grid input, .crew-questions input, .crew-consent input { position: absolute; width: 1px; height: 1px; opacity: 0; }
.crew-role-grid label > span { position: relative; min-height: 64px; display: grid; grid-template-columns: 34px minmax(0, 1fr); align-items: center; gap: 10px; padding: 9px 11px; border: 1px solid #dce3eb; border-radius: 12px; background: #fff; box-shadow: none; transition: border-color 150ms ease, background 150ms ease; }
.crew-role-grid label:hover > span { border-color: #8fb3df; background: #f8fbff; box-shadow: none; }
.crew-role-grid img { width: 32px; height: 32px; object-fit: contain; }
.crew-role-grid b { min-width: 0; padding-right: 18px; overflow-wrap: anywhere; font-size: 0.74rem; line-height: 1.15; white-space: normal; }
.crew-role-grid i { position: absolute; top: 7px; right: 7px; width: 20px; height: 20px; display: grid; place-items: center; border-radius: 6px; color: #fff; background: #147ce5; font-size: 0.65rem; font-style: normal; opacity: 0; transform: scale(0.65); transition: opacity 150ms ease, transform 150ms ease; }
.crew-role-grid input:checked + span { border-color: #4d8bd3; background: #edf5ff; box-shadow: none; }
.crew-role-grid input:checked + span i { opacity: 1; color: #fff; transform: scale(1); }
.crew-role-grid input:focus-visible + span { outline: 3px solid rgba(0, 115, 235, 0.27); outline-offset: 2px; }

.crew-field textarea { width: 100%; min-height: 130px; padding: 14px 15px; resize: vertical; border: 1px solid #dce4ee; border-radius: 12px; outline: 0; color: #171719; background: #fff; box-shadow: none; font: inherit; font-size: 0.82rem; line-height: 1.5; transition: border-color 150ms ease, background 150ms ease; }
.crew-other-field[hidden] { display: none; }
.crew-other-field:not([hidden]) { margin: -4px 0 19px; }
.crew-field textarea:focus { border-color: #3f7fc9; background: #fff; box-shadow: none; outline: 3px solid #e5f0fc; }
.crew-textarea-meta { display: flex; justify-content: space-between; gap: 12px; }
.crew-textarea-meta b { font-weight: 700; }

.crew-questions { display: grid; border: 1px solid #dce3eb; border-radius: 12px; overflow: hidden; box-shadow: none; }
.crew-question { min-width: 0; display: grid; grid-template-columns: minmax(0, 1fr) 190px; align-items: center; gap: 14px; padding: 13px 14px; background: #fff; }
.crew-question + .crew-question { border-top: 1px solid #e6ecf3; }
.crew-question > p { margin: 0; font-size: 0.75rem; font-weight: 700; }
.crew-question > div { display: grid; grid-template-columns: repeat(2, 1fr); gap: 7px; }
.crew-questions label { position: relative; cursor: pointer; }
.crew-questions label span { min-height: 37px; display: flex; align-items: center; justify-content: center; gap: 6px; padding: 6px 9px; border: 1px solid #e3eaf2; border-radius: 10px; color: #5f6875; background: #f5f8fc; font-size: 0.7rem; font-weight: 700; transition: color 150ms ease, background 150ms ease, box-shadow 150ms ease; }
.crew-questions label:hover span { background: #eef4fb; box-shadow: none; }
.crew-questions img { width: 14px; height: 14px; opacity: 0.8; }
.crew-yes img { filter: invert(43%) sepia(72%) saturate(641%) hue-rotate(101deg) brightness(86%) contrast(91%); }
.crew-no img { filter: invert(31%) sepia(73%) saturate(1715%) hue-rotate(328deg) brightness(91%) contrast(89%); }
.crew-yes input:checked + span { color: #fff; border-color: #198754; background: #198754; box-shadow: none; }
.crew-no input:checked + span { color: #fff; border-color: #d63c4a; background: #d63c4a; box-shadow: none; }
.crew-questions input:checked + span img { filter: brightness(0) invert(1); opacity: 1; }
.crew-questions input:focus-visible + span { outline: 3px solid rgba(0, 115, 235, 0.27); outline-offset: 2px; }

.crew-finish { padding-top: 28px; text-align: center; }
.crew-consent { position: relative; display: grid; grid-template-columns: 24px minmax(0, 1fr); align-items: center; gap: 10px; padding: 14px; border: 1px solid #dce3eb; border-radius: 12px; background: #f8fafc; box-shadow: none; color: #5f6875; text-align: left; cursor: pointer; }
.crew-consent > span { width: 24px; height: 24px; display: grid; place-items: center; border: 1px solid #bdbdc2; border-radius: 7px; background: #fff; }
.crew-consent input:checked + span { border-color: #1d1d1f; background: #1d1d1f; }
.crew-consent input:checked + span::after { content: "✓"; color: #fff; font-size: 0.8rem; font-weight: 700; }
.crew-consent input:focus-visible + span { outline: 3px solid rgba(0, 115, 235, 0.27); outline-offset: 2px; }
.crew-consent > b { padding: 0; font-size: 0.69rem; font-weight: 500; line-height: 1.45; }
.crew-consent a { color: #1d1d1f; font-weight: 700; text-decoration: underline; text-underline-offset: 2px; }

.crew-status { width: 100%; margin: 14px 0 0; padding: 10px 12px; border: 1px solid #ecc746; border-radius: 11px; color: #695400; background: #fff9d9; font-size: 0.7rem; font-weight: 700; line-height: 1.4; }
.crew-status:empty { display: none; }
.crew-status.is-error { border-color: #ed6671; color: #8c2330; background: #fff0f2; }
.crew-submit { width: min(100%, 310px); min-height: 53px; display: inline-flex; align-items: center; justify-content: space-between; gap: 18px; margin-top: 18px; padding: 9px 10px 9px 21px; border: 1px solid #1d1d1f; border-radius: 12px; color: #fff; background: #1d1d1f; box-shadow: none; font: inherit; font-size: 0.79rem; font-weight: 700; cursor: pointer; transition: background 150ms ease, border-color 150ms ease; }
.crew-submit > b { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 8px; color: #1d1d1f; background: #fff; font-size: 1rem; }
.crew-submit > b img { width: 18px; height: 18px; }
.crew-submit:hover { border-color: #08080a; background: #08080a; box-shadow: none; }
.crew-submit:focus-visible { outline: 3px solid rgba(0, 115, 235, 0.32); outline-offset: 3px; }
.crew-submit:disabled { border-color: #dcdcdf; color: #99999f; background: #dcdcdf; box-shadow: none; cursor: not-allowed; transform: none; }
.crew-submit:disabled > b { color: #aaaab0; background: #eeeeef; }
.crew-submit:disabled > b img { opacity: 0.32; }
.crew-form[aria-busy="true"] .crew-submit:disabled { cursor: wait; }
.crew-note { margin: 10px 0 0; }
.join-turnstile { display: flex; justify-content: center; width: 100%; margin: 14px 0 0; }

.crew-leopard-footer {
  width: 100%;
  height: clamp(116px, 15vw, 164px);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-top: -42px;
  overflow: hidden;
  pointer-events: none;
}
.crew-leopard-footer img {
  width: clamp(170px, 22vw, 230px);
  height: auto;
  display: block;
  flex: 0 0 auto;
  transform: translateY(1px);
}
.crew-form[hidden] + .crew-leopard-footer { display: none; }

.crew-success { min-height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 50px 36px; text-align: center; }
.crew-success[hidden] { display: none; }
.crew-success > div { width: 80px; height: 80px; display: grid; place-items: center; margin-bottom: 18px; border-radius: 25px; background: #f0f0f2; transform: rotate(5deg); }
.crew-success > div img { width: 58px; height: 58px; transform: rotate(-5deg); }
.crew-success > p:first-of-type { margin: 0 0 8px; color: #6f6f74; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.crew-success h3 { max-width: 520px; margin: 0; font-size: clamp(2rem, 4vw, 3.1rem); letter-spacing: -0.055em; line-height: 1; }
.crew-success > p:last-of-type { max-width: 520px; margin: 16px 0 0; color: #707076; font-size: 0.84rem; line-height: 1.55; }
.crew-success button { min-width: 130px; min-height: 45px; margin-top: 24px; padding: 9px 20px; border: 1px solid #1d1d1f; border-radius: 12px; color: #fff; background: #1d1d1f; box-shadow: none; font: inherit; font-size: 0.75rem; font-weight: 700; cursor: pointer; }
.crew-success button:hover { background: #08080a; box-shadow: none; }

@keyframes crew-modal-in { from { opacity: 0; transform: translateY(16px) scale(0.975); } to { opacity: 1; transform: none; } }

@media (max-width: 1100px) and (min-width: 801px) {
  .crew-modal { width: calc(100% - 24px); }
  .crew-layout { grid-template-columns: 250px minmax(0, 1fr); }
  .crew-intro { padding: 30px 24px 26px; }
  .crew-intro h2 { font-size: 2.3rem; }
  .crew-intro > p:not(.crew-open-pill, .crew-time) { font-size: 0.8rem; }
  .crew-steps { gap: 12px; }
  .crew-time { left: 24px; right: 24px; }
  .crew-form { padding: 34px 28px 40px; }
  .crew-role-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .crew-role-grid label > span { min-height: 66px; }
}

@media (max-width: 800px) {
  .crew-modal { width: min(650px, calc(100% - 20px)); height: calc(100svh - 20px); border-radius: 22px; }
  .crew-layout { grid-template-columns: 1fr; }
  .crew-intro { min-height: 210px; display: grid; grid-template-columns: minmax(0, 1fr) 140px; grid-template-rows: auto auto auto; column-gap: 20px; align-content: center; padding: 20px 24px; border-right: 0; border-bottom: 1px solid #e4e4e7; }
  .crew-mole { position: relative; grid-column: 2; grid-row: 1 / 4; align-self: center; justify-self: center; width: 140px; height: 140px; margin: 0; }
  .crew-mole img { width: 134px; height: 134px; }
  .crew-open-pill { grid-column: 1; grid-row: 1; margin-bottom: 11px; }
  .crew-intro h2 { grid-column: 1; grid-row: 2; max-width: none; font-size: 2.15rem; }
  .crew-intro > p:not(.crew-open-pill, .crew-time) { grid-column: 1; grid-row: 3; max-width: none; margin-top: 10px; }
  .crew-steps, .crew-time { display: none; }
  .crew-content { min-height: 0; }
  .crew-form { padding: 28px 24px 36px; }
}

@media (max-width: 560px) {
  .crew-modal { width: calc(100% - 10px); height: calc(100svh - 10px); border-radius: 18px; }
  .crew-modal[open] { grid-template-rows: 54px minmax(0, 1fr); }
  .crew-topbar { padding-left: 14px; }
  .crew-window-expand { cursor: default; }
  .crew-intro { min-height: 190px; grid-template-columns: minmax(0, 1fr) 118px; column-gap: 14px; padding: 16px 18px; }
  .crew-mole { width: 118px; height: 118px; }
  .crew-mole span { inset: 10px; border-radius: 27px; }
  .crew-mole img { width: 114px; height: 114px; }
  .crew-intro h2 { max-width: none; font-size: 1.78rem; }
  .crew-intro > p:not(.crew-open-pill, .crew-time) { max-width: none; padding-right: 0; font-size: 0.76rem; }
  .crew-form { padding: 25px 16px 32px; }
  .crew-leopard-footer { height: 118px; margin-top: -30px; }
  .crew-leopard-footer img { width: 172px; }
  .crew-field-grid { grid-template-columns: 1fr; }
  .crew-role-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .crew-question { grid-template-columns: 1fr; gap: 10px; padding: 13px; }
  .crew-section-head h3 { font-size: 1.25rem; }
}

@media (max-width: 350px) {
  .crew-intro { min-height: 180px; grid-template-columns: minmax(0, 1fr) 104px; column-gap: 10px; }
  .crew-mole { width: 112px; height: 112px; }
  .crew-mole img { width: 108px; height: 108px; }
  .crew-role-grid { grid-template-columns: 1fr; }
  .crew-intro > p:not(.crew-open-pill, .crew-time) { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .crew-modal[open] { animation: none; }
}
