@font-face {
  font-family: "Suisse Int'l";
  src: url("./SuisseIntl-Regular.subset.d5365557.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
  overscroll-behavior: none;
  background: #fff;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
}

* {
  box-sizing: border-box;
}

.ascii-stage {
  position: fixed;
  inset: 0;
  z-index: 1;
  display: grid;
  place-items: center;
  background: #000;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 720ms cubic-bezier(0.19, 1, 0.22, 1), visibility 720ms;
}

.ascii-frame {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #000;
}

.ascii-frame video,
.ascii-frame canvas {
  display: none;
}

#asciiVisualizer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
  color: #f4f2ed;
  background: #000;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: var(--ascii-font-size, 10px);
  font-weight: 400;
  line-height: var(--ascii-line-height, 10px);
  letter-spacing: var(--ascii-grid-spacing, 0px);
  font-variant-ligatures: none;
  white-space: pre;
  user-select: none;
}

body.is-ascii .ascii-stage {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

body.is-ascii .ascii-stage,
body.is-ascii .ascii-frame,
body.is-ascii #asciiVisualizer {
  background: #fff;
}

body.is-ascii #asciiVisualizer {
  color: #0c0c0c;
}

.sidebar-toggle {
  position: fixed;
  left: 49px;
  bottom: 28px;
  z-index: 5;
  height: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: #0c0c0c;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
  cursor: pointer;
  font: 9px/1 "Suisse Int'l", Arial, sans-serif;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: opacity 180ms ease;
}

.sidebar-toggle:hover,
.sidebar-toggle:focus-visible {
  opacity: 0.58;
}

.sidebar-toggle:focus-visible {
  outline: 1px solid #0c0c0c;
  outline-offset: 4px;
}

.controls {
  position: fixed;
  left: 49px;
  bottom: 52px;
  z-index: 4;
  display: grid;
  gap: 12px;
  width: min(260px, calc(100vw - 28px));
  max-height: calc(100vh - 76px);
  overflow: auto;
  padding: 12px;
  border: 1px solid rgb(12 12 12 / 12%);
  border-radius: 8px;
  color: #0c0c0c;
  background: rgb(255 255 255 / 82%);
  backdrop-filter: blur(18px);
  box-shadow: 0 14px 34px rgb(12 12 12 / 10%);
  font: 10px/1 ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  text-transform: uppercase;
  transition: transform 180ms ease, opacity 180ms ease;
}

.refinement-nav {
  position: fixed;
  inset: 16px 16px auto 16px;
  z-index: 3;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: start;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 360ms cubic-bezier(0.19, 1, 0.22, 1), visibility 360ms;
}

body.nav-option-2 .refinement-nav {
  opacity: 1;
  visibility: visible;
}

.refinement-main,
.refinement-thumbs {
  display: grid;
  gap: 2px;
  pointer-events: auto;
}

.refinement-main {
  grid-template-columns: 148px 148px 148px;
  grid-template-rows: 36px 28px;
  width: 448px;
}

.refinement-logo,
.refinement-action,
.refinement-marquee,
.refinement-thumb {
  background: #f1f1f1;
}

.refinement-logo {
  display: grid;
  place-items: center;
  padding: 0 28px;
}

.refinement-logo img {
  display: block;
  width: 80px;
  height: auto;
}

.refinement-action {
  appearance: none;
  display: grid;
  place-items: center;
  border: 0;
  padding: 0;
  color: #0c0c0c;
  cursor: pointer;
  font: 9px/1 "Suisse Int'l", Arial, sans-serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: opacity 180ms ease;
}

.refinement-action:hover,
.refinement-action:focus-visible,
.refinement-logo:hover,
.refinement-logo:focus-visible,
.refinement-thumb:not(.is-active):hover,
.refinement-thumb:focus-visible {
  opacity: 0.58;
}

.refinement-action:focus-visible,
.refinement-logo:focus-visible,
.refinement-thumb:focus-visible {
  outline: 1px solid #0c0c0c;
  outline-offset: 3px;
}

.refinement-marquee {
  grid-column: 1 / -1;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 32px;
  color: #0c0c0c;
  font: 9px/1 "Suisse Int'l", Arial, sans-serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.refinement-thumbs {
  justify-self: end;
  grid-auto-flow: column;
  grid-auto-columns: 30px;
  grid-template-rows: 30px;
}

.refinement-thumb {
  appearance: none;
  border: 1px solid transparent;
  padding: 2px;
  cursor: pointer;
  overflow: hidden;
  opacity: 1;
  transition: opacity 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.refinement-thumb.is-active {
  border-color: rgb(12 12 12 / 26%);
  box-shadow: inset 0 0 0 0.5px rgb(12 12 12 / 24%);
  opacity: 1;
}

.refinement-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: normal;
  filter: none;
}

.ascii-controls {
  color: #f4f2ed;
  background: rgb(12 12 12 / 72%);
  border-color: rgb(244 242 237 / 14%);
}

.ascii-controls .control-section {
  border-top-color: rgb(244 242 237 / 14%);
}

.ascii-controls .control-section legend,
.ascii-controls .control-row span,
.ascii-controls .toggle-control span,
.ascii-controls .control-file span {
  color: rgb(244 242 237 / 68%);
}

.ascii-controls .control-row output {
  color: rgb(244 242 237 / 78%);
}

.ascii-controls input,
.ascii-controls select {
  min-width: 0;
  width: 100%;
  color: #f4f2ed;
  border: 1px solid rgb(244 242 237 / 16%);
  border-radius: 5px;
  background: rgb(0 0 0 / 52%);
  font: inherit;
  text-transform: uppercase;
}

.ascii-controls input[type="text"] {
  padding: 5px 7px;
  text-transform: none;
}

.ascii-controls input[type="file"] {
  padding: 7px 8px;
  font-size: 9px;
}

.ascii-controls input[type="range"] {
  accent-color: #f4f2ed;
}

.ascii-controls .control-button {
  color: #f4f2ed;
  background: #0c0c0c;
  border-color: rgb(244 242 237 / 16%);
}

.ascii-controls .control-button:hover,
.ascii-controls .control-button.is-saved {
  color: #0c0c0c;
  background: #f4f2ed;
}

.ascii-controls .segmented-control label {
  color: rgb(244 242 237 / 70%);
  background: rgb(0 0 0 / 42%);
  border-color: rgb(244 242 237 / 16%);
}

.ascii-controls .segmented-control label.is-active,
.ascii-controls .segmented-control label:has(input:checked) {
  color: #0c0c0c;
  background: #f4f2ed;
  border-color: #f4f2ed;
}

.control-file {
  display: grid;
  gap: 8px;
}

.ascii-tool-actions {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-flow: row;
}

.ascii-tool-actions .control-button {
  width: 100%;
}

.settings-copy-fallback {
  position: fixed;
  left: 50%;
  bottom: 28px;
  z-index: 62;
  display: grid;
  gap: 8px;
  width: min(420px, calc(100vw - 32px));
  padding: 10px;
  border: 1px solid rgb(244 242 237 / 18%);
  border-radius: 6px;
  color: #f4f2ed;
  background: rgb(12 12 12 / 86%);
  box-shadow: 0 14px 34px rgb(0 0 0 / 24%);
  transform: translateX(-50%);
}

.settings-copy-fallback textarea {
  width: 100%;
  min-height: 140px;
  resize: vertical;
  border: 1px solid rgb(244 242 237 / 16%);
  border-radius: 5px;
  color: #f4f2ed;
  background: #000;
  font: 10px/1.35 ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
}

.settings-copy-fallback button {
  justify-self: end;
  height: 24px;
  border: 1px solid rgb(244 242 237 / 16%);
  border-radius: 5px;
  color: #0c0c0c;
  background: #f4f2ed;
  font: 10px/1 "Suisse Int'l", Arial, sans-serif;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.controls.is-hidden {
  transform: translateX(calc(-100% - 20px));
  opacity: 0;
  pointer-events: none;
}

.controls-header,
.controls-actions,
.control-row {
  display: grid;
  align-items: center;
}

.controls-header {
  grid-template-columns: 1fr auto;
  gap: 8px;
}

.controls-actions {
  grid-auto-flow: column;
  gap: 6px;
}

.control-section {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 10px 0 0;
  border: 0;
  border-top: 1px solid rgb(12 12 12 / 10%);
}

.control-section legend {
  padding: 0 0 2px;
  color: rgb(12 12 12 / 58%);
}

.control-row {
  grid-template-columns: 70px minmax(0, 1fr) 34px;
  gap: 8px;
}

.control-row span,
.toggle-control span {
  color: rgb(12 12 12 / 62%);
}

.control-row output {
  text-align: right;
  color: rgb(12 12 12 / 76%);
  font-variant-numeric: tabular-nums;
}

.control-row input[type="range"] {
  width: 100%;
  min-width: 0;
  accent-color: #0c0c0c;
}

.control-row input[type="range"]:disabled {
  opacity: 0.38;
}

.control-button {
  min-width: 44px;
  height: 24px;
  border: 1px solid rgb(12 12 12 / 14%);
  border-radius: 5px;
  color: #0c0c0c;
  background: #fff;
  cursor: pointer;
  font: inherit;
  text-transform: uppercase;
}

.control-button:hover,
.control-button.is-saved {
  background: #f1f1f1;
}

.toggle-control {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 38px;
  gap: 8px;
  align-items: center;
  min-height: 24px;
  cursor: pointer;
}

.toggle-control input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.toggle-control::after {
  content: "";
  width: 38px;
  height: 22px;
  border: 1px solid rgb(12 12 12 / 16%);
  border-radius: 999px;
  background: #fff;
  transition: background 140ms ease, border-color 140ms ease;
}

.toggle-control::before {
  content: "";
  position: absolute;
  right: 19px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #0c0c0c;
  transition: transform 140ms ease;
}

.toggle-control:has(input:checked)::after {
  background: #0c0c0c;
  border-color: #0c0c0c;
}

.toggle-control:has(input:checked)::before {
  transform: translateX(17px);
  background: #fff;
}

.segmented-control {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}

.segmented-control label {
  position: relative;
  display: grid;
  place-items: center;
  height: 24px;
  border: 1px solid rgb(12 12 12 / 16%);
  border-radius: 5px;
  background: rgb(255 255 255 / 72%);
  color: rgb(12 12 12 / 70%);
  cursor: pointer;
}

.segmented-control input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.segmented-control label.is-active,
.segmented-control label:has(input:checked) {
  color: #fff;
  background: #0c0c0c;
  border-color: #0c0c0c;
}

.segmented-control label:has(input:focus-visible),
.toggle-control:has(input:focus-visible)::after,
.control-button:focus-visible {
  outline: 2px solid #111;
  outline-offset: 2px;
}

.info-is-open .refinement-nav,
.info-is-open .sidebar-toggle,
.info-is-open .ascii-stage {
  opacity: 0;
  pointer-events: none;
}

.info-overlay {
  position: fixed;
  inset: 0;
  z-index: 12;
  display: block;
  padding: 32px;
  color: #0c0c0c;
  background: rgb(255 255 255 / 15%);
  backdrop-filter: blur(58px);
  -webkit-backdrop-filter: blur(58px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 950ms cubic-bezier(0.19, 1, 0.22, 1), visibility 950ms;
}

.info-overlay.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.info-content {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  margin-top: 0;
  text-align: center;
  opacity: 0;
  filter: blur(3px);
  transform: translateY(4px);
  transition: opacity 900ms cubic-bezier(0.19, 1, 0.22, 1) 110ms, filter 900ms cubic-bezier(0.19, 1, 0.22, 1) 110ms, transform 900ms cubic-bezier(0.19, 1, 0.22, 1) 110ms;
}

.info-overlay.is-visible .info-content {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

.info-logo {
  appearance: none;
  position: absolute;
  top: 58px;
  left: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 75px;
  height: 17.69px;
  margin: 0;
  padding: 0;
  border: 0;
  color: #0c0c0c;
  background: transparent;
  cursor: pointer;
  transform: translateX(-50%);
}

.info-logo svg {
  display: block;
  width: 75px;
  height: auto;
}

.info-copy {
  display: grid;
  justify-items: center;
  gap: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(626px, calc(100vw - 48px));
  font-family: "Suisse Int'l", Arial, sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 17px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transform: translate(-50%, -50%);
}

.info-copy p {
  max-width: 626px;
  margin: 0;
}

.info-apply {
  position: absolute;
  left: 50%;
  bottom: 158px;
  appearance: none;
  width: 91px;
  height: 29px;
  margin-top: 0;
  border: 0;
  border-radius: 5px;
  color: #fff;
  background: #0c0c0c;
  cursor: pointer;
  font-family: "Suisse Int'l", Arial, sans-serif;
  font-size: 9.5px;
  font-weight: 400;
  line-height: 29px;
  letter-spacing: 0.18em;
  text-align: center;
  text-transform: uppercase;
  transition: color 220ms ease, background 220ms ease;
  transform: translateX(-50%);
}

.info-apply:hover,
.info-apply:focus-visible {
  color: #0c0c0c;
  background: #fff;
}

.info-logo:focus-visible,
.info-apply:focus-visible {
  outline: 1px solid #0c0c0c;
  outline-offset: 3px;
}

.apply-loader,
.apply-page {
  position: fixed;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.apply-loader {
  z-index: 40;
  display: grid;
  place-items: center;
  background: #fff;
  perspective: 600px;
  transition: opacity 420ms cubic-bezier(0.19, 1, 0.22, 1), visibility 420ms;
}

.apply-loader.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.apply-loader-mark {
  display: block;
  width: 56px;
  height: auto;
  transform-origin: 50% 50%;
  transform-style: preserve-3d;
  animation: applySpin 1200ms linear infinite;
}

@keyframes applySpin {
  to {
    transform: rotateY(360deg);
  }
}

.apply-page {
  z-index: 38;
  overflow: hidden;
  color: #f4f2ed;
  background: #0c0c0c;
  font-family: "Suisse Int'l", Arial, sans-serif;
  transition: opacity 720ms cubic-bezier(0.19, 1, 0.22, 1), visibility 720ms;
}

.apply-page.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.home-is-hidden .ascii-stage,
.home-is-hidden .refinement-nav,
.home-is-hidden .sidebar-toggle,
.home-is-hidden .controls {
  opacity: 0;
  pointer-events: none;
}

.apply-logo {
  position: fixed;
  top: 268px;
  left: 50%;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 19px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  transform: translateX(-50%);
}

.apply-logo svg {
  display: block;
  width: 80px;
  height: auto;
}

.apply-shell {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  align-content: start;
  width: 100%;
  height: 100%;
  padding-top: 446px;
}

.apply-step-nav {
  display: grid;
  grid-template-columns: 20px minmax(0, 420px) 20px;
  align-items: center;
  gap: 42px;
  width: min(578px, calc(100vw - 48px));
  margin-bottom: 80px;
}

.apply-step-track {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 12px;
}

.apply-step-label {
  position: absolute;
  left: 50%;
  width: max-content;
  max-width: 190px;
  font-size: 10px;
  line-height: 12px;
  letter-spacing: 0;
  text-align: center;
  text-transform: uppercase;
  color: rgb(244 242 237 / 20%);
  opacity: 0;
  filter: blur(2px);
  transform: translate(-50%, 3px);
  transition: opacity 700ms cubic-bezier(0.19, 1, 0.22, 1), filter 700ms cubic-bezier(0.19, 1, 0.22, 1), transform 700ms cubic-bezier(0.19, 1, 0.22, 1), color 500ms ease;
}

.apply-step-label.is-visible {
  opacity: 0.2;
  filter: blur(0);
  transform: translate(-50%, 0);
}

.apply-step-label.is-active {
  opacity: 1;
  color: #f4f2ed;
}

.apply-step-label.is-prev {
  transform: translate(calc(-50% - 210px), 0);
}

.apply-step-label.is-next {
  transform: translate(calc(-50% + 210px), 0);
}

.apply-step-arrow {
  appearance: none;
  width: 20px;
  height: 18px;
  border: 0;
  color: #f4f2ed;
  background: transparent;
  cursor: pointer;
  font: 16px/18px "Suisse Int'l", Arial, sans-serif;
  transition: opacity 220ms ease;
}

.apply-step-arrow:disabled {
  opacity: 0.18;
  cursor: default;
}

.apply-form {
  width: min(462px, calc(100vw - 48px));
}

.apply-step {
  display: none;
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  opacity: 0;
  filter: blur(3px);
  transform: translateY(6px);
}

.apply-step.is-active {
  display: grid;
  gap: 14px;
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
  animation: applyStepIn 680ms cubic-bezier(0.19, 1, 0.22, 1) both;
}

@keyframes applyStepIn {
  from {
    opacity: 0;
    filter: blur(3px);
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}

.apply-grid-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
}

.apply-input,
.apply-textarea {
  width: 100%;
  border: 1px solid rgb(244 242 237 / 54%);
  border-radius: 5px;
  color: #f4f2ed;
  background: transparent;
  font-family: "Suisse Int'l", Arial, sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  outline: none;
  transition: border-color 220ms ease, background 220ms ease;
}

.apply-input {
  height: 36px;
  padding: 0 15px;
}

.apply-input-short {
  max-width: 158px;
}

.apply-textarea {
  min-height: 154px;
  padding: 13px 15px;
  line-height: 15px;
  resize: vertical;
}

.apply-input::placeholder,
.apply-textarea::placeholder {
  color: rgb(244 242 237 / 38%);
}

.apply-input:focus,
.apply-textarea:focus {
  border-color: rgb(244 242 237 / 88%);
  background: rgb(255 255 255 / 3%);
}

.apply-check,
.apply-choice,
.apply-chip-row {
  cursor: pointer;
  color: rgb(244 242 237 / 68%);
  font-size: 10px;
  line-height: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.apply-check {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 8px;
}

.apply-check input,
.apply-choice input,
.apply-chip-row input {
  accent-color: #f4f2ed;
}

.apply-choice-grid {
  display: grid;
  gap: 12px;
}

.apply-choice {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px 12px;
  padding: 15px;
  border: 1px solid rgb(244 242 237 / 34%);
  border-radius: 5px;
}

.apply-choice small {
  grid-column: 2;
  color: rgb(244 242 237 / 44%);
  font-size: 10px;
  line-height: 15px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.apply-chip-row {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  min-width: 92px;
  min-height: 32px;
  padding: 0 12px;
  border: 1px solid rgb(244 242 237 / 34%);
  border-radius: 5px;
}

.apply-agreement {
  align-items: flex-start;
}

.apply-next {
  appearance: none;
  width: 88px;
  height: 34px;
  margin-top: 96px;
  border: 0;
  border-radius: 5px;
  color: #0c0c0c;
  background: #f1f1f1;
  cursor: pointer;
  font-family: "Suisse Int'l", Arial, sans-serif;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: color 220ms ease, background 220ms ease, opacity 220ms ease;
}

.apply-next:hover,
.apply-next:focus-visible {
  color: #f4f2ed;
  background: rgb(244 242 237 / 18%);
}

.apply-exit {
  position: fixed;
  inset: 0;
  z-index: 8;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 28px;
  color: #f4f2ed;
  background: rgb(12 12 12 / 42%);
  backdrop-filter: blur(34px);
  -webkit-backdrop-filter: blur(34px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 520ms cubic-bezier(0.19, 1, 0.22, 1), visibility 520ms;
}

.apply-exit.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.apply-exit-copy {
  display: grid;
  gap: 10px;
  text-align: center;
  font-size: 10px;
  line-height: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.apply-exit-copy p {
  margin: 0;
}

.apply-exit-actions {
  display: flex;
  gap: 16px;
}

.apply-exit-actions button {
  width: 108px;
  height: 30px;
  border: 1px solid rgb(244 242 237 / 38%);
  border-radius: 5px;
  color: #f4f2ed;
  background: transparent;
  cursor: pointer;
  font-family: "Suisse Int'l", Arial, sans-serif;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: color 220ms ease, background 220ms ease;
}

.apply-exit-actions button:hover,
.apply-exit-actions button:focus-visible {
  color: #0c0c0c;
  background: #f4f2ed;
}

.apply-logo:focus-visible,
.apply-step-arrow:focus-visible,
.apply-next:focus-visible,
.apply-exit-actions button:focus-visible {
  outline: 1px solid #f4f2ed;
  outline-offset: 3px;
}

.loading {
  position: fixed;
  left: 50%;
  top: 50%;
  z-index: 2;
  transform: translate(-50%, -50%);
  padding: 12px 18px;
  border-radius: 16px;
  color: #fff;
  background: rgb(0 0 0 / 20%);
  backdrop-filter: blur(16px);
  font-size: 12px;
  line-height: 1;
  text-transform: uppercase;
  transition: opacity 400ms ease;
}

.loading.is-hidden {
  opacity: 0;
  pointer-events: none;
}

@media (max-width: 700px) {
  .intro {
    padding: 18px;
  }

  .intro-copy {
    width: calc(100vw - 36px);
    height: 48px;
  }

  .intro-line {
    font-size: 12px;
    line-height: 16px;
    white-space: normal;
  }

  .controls {
    left: 18px;
    bottom: 48px;
    max-height: min(318px, calc(50vh - 42px));
  }

  .sidebar-toggle {
    left: 18px;
    bottom: 22px;
  }

  .refinement-nav {
    inset: 12px 12px auto;
    align-items: start;
  }

  .refinement-main {
    grid-template-columns: 96px 96px 96px;
    grid-template-rows: 32px 24px;
    width: 292px;
  }

  .refinement-logo {
    padding: 0 18px;
  }

  .refinement-logo img {
    width: 62px;
  }

  .refinement-action,
  .refinement-marquee {
    font-size: 8px;
  }

  .refinement-thumbs {
    grid-auto-columns: 24px;
    grid-template-rows: 24px;
  }

  .info-overlay {
    padding: 24px 18px;
    overflow: auto;
  }

  .info-content {
    min-height: 820px;
  }

  .info-logo {
    top: 48px;
  }

  .info-copy {
    top: 390px;
    width: calc(100vw - 36px);
    font-size: 12px;
    line-height: 16px;
    gap: 16px;
  }

  .info-apply {
    bottom: 72px;
  }

  .apply-logo {
    top: 140px;
    width: 70px;
  }

  .apply-logo svg {
    width: 70px;
  }

  .apply-shell {
    padding: 230px 18px 40px;
    overflow: auto;
  }

  .apply-step-nav {
    grid-template-columns: 20px minmax(0, 1fr) 20px;
    gap: 18px;
    width: 100%;
    margin-bottom: 48px;
  }

  .apply-grid-two {
    grid-template-columns: 1fr;
  }

  .apply-input-short {
    max-width: none;
  }

  .apply-next {
    margin-top: 58px;
  }

  .apply-exit {
    padding: 24px;
  }
}

#loading {
  display: none !important;
}

body .refinement-nav,
body.nav-option-2 .refinement-nav {
  opacity: 1;
  visibility: visible;
}

body .site-footer {
  opacity: 1;
  visibility: visible;
}

.apply-member-signin {
  width: max-content;
  justify-items: start;
  text-align: left;
}

.apply-exit-trigger {
  display: grid;
  width: max-content;
  justify-items: end;
  text-align: right;
}

.apply-exit-trigger span,
.apply-exit-hover {
  position: static;
  inset: auto;
  display: block !important;
  grid-area: 1 / 1;
  padding: 0;
  text-align: right;
}

.apply-primary-next.is-blocked,
.apply-next.is-blocked {
  opacity: 0.62;
}

/* CONTROL — Figma 3:2 */
.ascii-controls {
  gap: 2px;
  width: min(386.446px, calc(100vw - 52px));
  font-family: var(--gala-ui-font);
  font-size: var(--gala-ui-size);
  letter-spacing: var(--gala-ui-tracking);
}

.ascii-controls .controls-header {
  grid-template-columns: repeat(3, 127.482px);
  gap: 2px;
}

.ascii-controls .controls-header > .control-close {
  display: grid;
  place-items: center;
}

.ascii-controls .control-button,
.ascii-controls .control-row,
.ascii-controls .control-file span {
  height: 31.433px;
  min-height: 31.433px;
  color: #0c0c0c;
  background: #f1f1f1;
  backdrop-filter: blur(6.116px);
  -webkit-backdrop-filter: blur(6.116px);
}

.ascii-controls .control-section:first-of-type .segmented-control,
.ascii-controls .ascii-tool-actions {
  display: none;
}

.ascii-controls .control-file {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  min-height: 31.433px;
  padding: 0;
  background: transparent;
  cursor: pointer;
  overflow: hidden;
}

.ascii-controls .control-file input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.ascii-controls .control-file span {
  display: grid;
  place-items: center;
  min-width: 0;
  padding: 0 10px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ascii-controls .control-row {
  grid-template-columns: 96px 125.513px minmax(0, 1fr);
  gap: 8px;
  min-height: 31.433px;
  padding: 0 24px 0 50px;
}

.ascii-controls .control-row span,
.ascii-controls .control-row output {
  color: #0c0c0c;
}

.ascii-controls .control-row input[type="range"] {
  appearance: none;
  width: 125.513px;
  height: 2.665px;
  margin: 0;
  border: 0;
  border-radius: 0;
  background: #0c0c0c;
}

.ascii-controls .control-row input[type="range"]::-webkit-slider-thumb {
  appearance: none;
  width: 6.228px;
  height: 6.228px;
  border: 0;
  border-radius: 0;
  background: #0c0c0c;
}

.ascii-controls .control-row input[type="range"]::-moz-range-thumb {
  width: 6.228px;
  height: 6.228px;
  border: 0;
  border-radius: 0;
  background: #0c0c0c;
}

@media (max-width: 700px) {
  .ascii-controls {
    width: calc(100vw - 24px);
  }

  .ascii-controls .controls-header {
    grid-template-columns: repeat(3, 1fr);
  }

  .ascii-controls .control-row {
    grid-template-columns: 88px minmax(80px, 1fr) 42px;
    padding: 0 12px;
  }

  .ascii-controls .control-row input[type="range"] {
    width: 100%;
  }
}

@media (min-width: 701px) and (max-height: 900px) {
  .info-copy {
    top: 45%;
    gap: 16px;
  }

  .info-apply {
    bottom: 80px;
  }

  .apply-logo {
    top: 180px;
  }

  .apply-shell {
    padding-top: 300px;
  }

  .apply-step-nav {
    margin-bottom: 55px;
  }

  .apply-step.is-active {
    gap: 12px;
  }

  .apply-input {
    height: 34px;
  }

  .apply-textarea {
    min-height: 118px;
  }

  .apply-next {
    margin-top: 55px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .intro,
  .intro-line,
  .info-overlay,
  .info-content {
    animation-duration: 1ms;
    animation-delay: 0ms;
    transition-duration: 1ms;
  }
}

/* NAV 2 / APPLICATION SITE */
:root {
  --gala-panel: rgb(241 241 241 / 60%);
  --gala-black: #0c0c0c;
  --gala-white: #f4f2ed;
  --gala-gap: 2px;
  --gala-nav-width: 448px;
  --gala-cell-height: 36px;
  --gala-ui-font: "Suisse Int'l", Arial, sans-serif;
  --gala-ui-size: 9px;
  --gala-ui-tracking: 0.08em;
  --gala-ui-transform: none;
}

.refinement-action,
.refinement-marquee,
.sidebar-toggle,
.footer-links,
.controls,
.apply-page,
.apply-exit-trigger,
.apply-member-signin {
  font-family: var(--gala-ui-font);
  font-size: var(--gala-ui-size);
  letter-spacing: var(--gala-ui-tracking);
  text-transform: var(--gala-ui-transform);
}

.refinement-nav {
  inset: 19px auto auto 26px;
  z-index: 30;
  grid-template-columns: var(--gala-nav-width) 1fr auto;
  width: calc(100vw - 52px);
}

.refinement-main {
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: var(--gala-cell-height) 32px;
  width: var(--gala-nav-width);
}

.refinement-logo,
.refinement-action,
.refinement-marquee,
.refinement-thumb {
  background: var(--gala-panel);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.refinement-info-action {
  display: flex;
  gap: 5px;
  align-items: center;
  justify-content: center;
}

.refinement-plus {
  display: inline-block;
  font-size: 1.05em;
  line-height: 1;
  transform: rotate(0deg);
  transform-origin: 50% 47%;
  transition: transform 460ms cubic-bezier(0.19, 1, 0.22, 1);
}

.refinement-info-action[aria-expanded="true"] .refinement-plus {
  transform: rotate(45deg);
}

.site-footer {
  position: fixed;
  inset: auto 26px 20px;
  z-index: 10;
  display: flex;
  align-items: end;
  justify-content: space-between;
  pointer-events: none;
  transition: opacity 360ms ease;
}

body:not(.nav-option-2) .site-footer {
  opacity: 0;
  visibility: hidden;
}

.site-footer .sidebar-toggle {
  position: static;
  width: auto;
  height: auto;
  padding: 0;
  color: var(--gala-black);
  background: var(--gala-panel);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  pointer-events: auto;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: var(--gala-cell-height);
  padding: 0 15px;
  color: var(--gala-black);
  background: var(--gala-panel);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  pointer-events: auto;
}

.footer-links-left,
.footer-links-right {
  padding: 0;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.footer-credit {
  position: relative;
  display: inline-grid;
  place-items: center;
}

.footer-credit-default,
.footer-credit-hover {
  grid-area: 1 / 1;
  white-space: nowrap;
  transition: opacity 180ms ease;
}

.footer-credit-hover {
  opacity: 0;
}

.footer-credit:hover .footer-credit-default {
  opacity: 0;
}

.footer-credit:hover .footer-credit-hover {
  opacity: 1;
}

.footer-faq.text-swap {
  position: relative;
  display: inline-block;
  width: 18.8px;
  color: inherit;
  text-decoration: none;
  outline: none;
  transition: width 180ms ease;
}

.footer-faq.text-swap:hover,
.footer-faq.text-swap:focus-visible {
  width: 65px;
}

.footer-faq.text-swap > .text-swap-default {
  display: block;
}

.footer-faq.text-swap > .text-swap-hover {
  position: absolute;
  top: 0;
  right: 0;
  width: max-content;
  text-align: right;
}

.controls {
  left: 26px;
  bottom: 58px;
  gap: var(--gala-gap);
  width: var(--gala-nav-width);
  max-height: calc(100vh - 96px);
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  overflow: auto;
}

.controls-header {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gala-gap);
}

.controls-header > .control-close,
.controls-header .controls-actions {
  display: contents;
}

.control-button,
.control-section,
.control-row,
.toggle-control,
.control-file,
.segmented-control label {
  border: 0;
  border-radius: 0;
  color: var(--gala-black);
  background: var(--gala-panel);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.controls .control-button {
  min-height: var(--gala-cell-height);
  padding: 0 10px;
  font: inherit;
}

.control-section {
  display: grid;
  gap: var(--gala-gap);
  padding: 0;
  background: transparent;
  border: 0;
}

.control-section legend {
  display: none;
}

.control-row,
.toggle-control,
.control-file {
  min-height: var(--gala-cell-height);
  padding: 0 18px;
}

.control-row {
  grid-template-columns: 145px 1fr 48px;
}

.ascii-controls {
  color: var(--gala-black);
  background: transparent;
}

.ascii-controls .control-section,
.ascii-controls .control-button,
.ascii-controls .control-row,
.ascii-controls .control-file,
.ascii-controls .toggle-control,
.ascii-controls .segmented-control label {
  border-color: transparent;
  color: var(--gala-black);
  background: var(--gala-panel);
}

.ascii-controls .control-button:hover,
.ascii-controls .control-button.is-saved {
  color: var(--gala-white);
  background: rgb(12 12 12 / 82%);
}

.info-is-open .refinement-nav {
  opacity: 1;
  pointer-events: auto;
}

.info-is-open .site-footer,
.home-is-hidden .site-footer {
  opacity: 0;
  pointer-events: none;
}

.info-overlay {
  inset: 0;
  z-index: 24;
  padding: 0;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transition: visibility 540ms;
}

.info-content {
  position: absolute;
  top: 57px;
  left: 26px;
  width: var(--gala-nav-width);
  height: auto;
  max-height: calc(100vh - 88px);
  margin: 0;
  padding: 50px 64px 58px;
  overflow: auto;
  color: var(--gala-black);
  background: var(--gala-panel);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  text-align: left;
  opacity: 0;
  filter: none;
  transform: translateY(-20px) scaleY(0.96);
  transform-origin: top;
  transition: opacity 380ms ease, transform 620ms cubic-bezier(0.19, 1, 0.22, 1);
}

.info-overlay.is-visible .info-content {
  opacity: 1;
  transform: translateY(0) scaleY(1);
}

.info-logo,
.info-apply {
  display: none;
}

.info-copy {
  position: static;
  display: grid;
  justify-items: start;
  gap: 26px;
  width: 100%;
  font-family: var(--gala-ui-font);
  font-size: var(--gala-ui-size);
  line-height: 1.32;
  letter-spacing: var(--gala-ui-tracking);
  text-align: left;
  text-transform: var(--gala-ui-transform);
  transform: none;
}

.info-copy .info-kicker {
  margin-bottom: 14px;
}

.info-copy p {
  max-width: none;
}

.apply-loader {
  background: rgb(255 255 255 / 60%);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.apply-page {
  color: var(--gala-white);
  background: transparent;
  font-family: var(--gala-ui-font);
  font-size: var(--gala-ui-size);
  letter-spacing: var(--gala-ui-tracking);
  text-transform: var(--gala-ui-transform);
}

.apply-page::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(90deg, rgb(255 255 255 / 98%) 0%, rgb(255 255 255 / 93%) 52%, rgb(255 255 255 / 52%) 78%, rgb(12 12 12 / 48%) 100%);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

.home-is-hidden .ascii-stage {
  opacity: 1;
  pointer-events: none;
}

.home-is-hidden .refinement-nav {
  opacity: 0 !important;
  visibility: hidden;
  pointer-events: none;
}

.apply-chrome {
  position: fixed;
  top: 15px;
  left: 20px;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 48px 48px;
  gap: var(--gala-gap);
  width: min(576px, calc(100vw - 40px));
}

.apply-chrome > span,
.apply-chrome-action,
.apply-chrome-logo,
.apply-title-marquee {
  display: grid;
  place-items: center;
  min-width: 0;
  border: 0;
  color: var(--gala-white);
  background: var(--gala-black);
  font: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
}

.apply-chrome-action {
  appearance: none;
  border: 0;
  cursor: pointer;
}

.apply-info-action {
  display: flex;
  gap: 5px;
  align-items: center;
  justify-content: center;
}

.apply-chrome-logo {
  cursor: pointer;
}

.apply-chrome-logo img {
  display: block;
  width: 112px;
  filter: invert(1);
}

.apply-title-marquee {
  grid-column: 1 / -1;
  display: flex;
  overflow: hidden;
  white-space: nowrap;
}

.apply-title-marquee > div {
  flex: 0 0 auto;
  min-width: 200%;
  animation: applyMarquee 18s linear infinite;
}

@keyframes applyMarquee {
  to {
    transform: translateX(-50%);
  }
}

.apply-logo-legacy,
.apply-step-track,
#applyNext {
  display: none;
}

.apply-exit-trigger,
.apply-member-signin {
  position: fixed;
  z-index: 3;
  height: 36px;
  border: 0;
  color: var(--gala-white);
  background: var(--gala-black);
  cursor: pointer;
}

.apply-exit-trigger {
  top: 15px;
  right: 20px;
  min-width: 112px;
  padding: 0 18px;
}

.apply-exit-trigger span {
  display: block;
  white-space: nowrap;
  transition: opacity 180ms ease;
}

.apply-exit-hover {
  position: absolute;
  inset: 0;
  display: grid !important;
  place-items: center;
  padding: 0 14px;
  opacity: 0;
}

.apply-exit-trigger:hover,
.apply-exit-trigger:focus-visible {
  min-width: 246px;
}

.apply-exit-trigger:hover .apply-exit-default,
.apply-exit-trigger:focus-visible .apply-exit-default {
  opacity: 0;
}

.apply-exit-trigger:hover .apply-exit-hover,
.apply-exit-trigger:focus-visible .apply-exit-hover {
  opacity: 1;
}

.apply-member-signin {
  left: 20px;
  bottom: 20px;
  padding: 0 20px;
}

.apply-shell {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 190px 1fr 190px;
  align-content: start;
  justify-items: stretch;
  width: min(576px, calc(100vw - 40px));
  height: 100%;
  margin-left: 20px;
  padding-top: 193px;
}

.apply-step-nav {
  display: contents;
}

.apply-step-arrow#applyPrev {
  grid-column: 1;
  grid-row: 3;
  width: 190px;
  height: 48px;
  margin-top: 81px;
  border: 0;
  color: var(--gala-white);
  background: var(--gala-black);
  font: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
}

.apply-step-arrow#applyPrev:disabled {
  opacity: 0;
  pointer-events: none;
}

.apply-form {
  grid-column: 1 / -1;
  grid-row: 1;
  width: 100%;
}

.apply-step.is-active {
  gap: var(--gala-gap);
}

.apply-grid-two {
  gap: var(--gala-gap);
}

.apply-input,
.apply-textarea,
.apply-choice,
.apply-chip-row {
  border: 0;
  border-radius: 0;
  color: var(--gala-white);
  background: var(--gala-black);
  font-family: var(--gala-ui-font);
  font-size: var(--gala-ui-size);
  letter-spacing: var(--gala-ui-tracking);
  text-transform: var(--gala-ui-transform);
}

.apply-input {
  height: 48px;
  padding: 0 20px;
}

.apply-textarea {
  min-height: 172px;
  padding: 17px 20px;
}

.apply-intro-copy,
.apply-question-copy,
.apply-follow-up,
.apply-confirmation-copy {
  color: var(--gala-black);
  text-transform: none;
}

.apply-intro-copy {
  display: grid;
  gap: 18px;
  max-width: 360px;
  font-size: 12px;
  line-height: 17px;
  letter-spacing: 0;
}

.apply-intro-copy p,
.apply-question-copy p,
.apply-follow-up p,
.apply-confirmation-copy p {
  margin: 0;
}

.apply-question-copy {
  display: grid;
  gap: 6px;
  margin-bottom: 8px;
  font-size: 10px;
  line-height: 14px;
  letter-spacing: 0;
}

.apply-review-copy {
  gap: 14px;
  margin-bottom: 18px;
}

.apply-chip-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gala-gap);
}

.apply-chip-grid .apply-chip-row {
  width: 100%;
  min-width: 0;
}

.apply-follow-up {
  display: grid;
  gap: 8px;
  margin-top: 12px;
  font-size: 10px;
  line-height: 14px;
  letter-spacing: 0;
}

.apply-follow-up .apply-textarea,
.apply-conditional .apply-textarea {
  min-height: 104px;
}

.apply-conditional {
  display: none;
}

.apply-conditional.is-visible {
  display: grid;
  margin-top: 10px;
}

.apply-confirmation-copy {
  display: grid;
  gap: 18px;
  max-width: 350px;
  font-size: 12px;
  line-height: 17px;
  letter-spacing: 0;
}

.apply-input::placeholder,
.apply-textarea::placeholder {
  color: rgb(244 242 237 / 86%);
}

.apply-input:focus,
.apply-textarea:focus {
  background: #222;
  outline: 1px solid var(--gala-white);
  outline-offset: -3px;
}

.apply-check {
  color: var(--gala-black);
  font: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
}

.apply-check input {
  appearance: none;
  width: 15px;
  height: 15px;
  margin: 0;
  border: 1px solid var(--gala-black);
  border-radius: 0;
  background: transparent;
}

.apply-check input:checked {
  background: var(--gala-black);
  box-shadow: inset 0 0 0 3px white;
}

.apply-choice,
.apply-chip-row {
  padding: 16px 20px;
}

.apply-next {
  grid-column: 3;
  grid-row: 3;
  justify-self: stretch;
  width: 190px;
  height: 48px;
  margin-top: 81px;
  border-radius: 0;
  color: var(--gala-white);
  background: var(--gala-black);
  font-family: var(--gala-ui-font);
  font-size: var(--gala-ui-size);
  letter-spacing: var(--gala-ui-tracking);
  text-transform: var(--gala-ui-transform);
}

.apply-page[data-step-index="0"] .apply-next {
  grid-column: 1;
}

.apply-page.is-confirmation .apply-next {
  grid-column: 1;
}

.apply-next:hover,
.apply-next:focus-visible {
  color: var(--gala-black);
  background: var(--gala-white);
}

.apply-exit {
  z-index: 10;
  color: var(--gala-white);
  background: rgb(12 12 12 / 55%);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

@media (max-width: 700px) {
  :root {
    --gala-nav-width: calc(100vw - 24px);
    --gala-cell-height: 34px;
  }

  .refinement-nav {
    inset: 12px auto auto 12px;
    width: calc(100vw - 24px);
  }

  .refinement-main {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 34px 28px;
    width: var(--gala-nav-width);
  }

  .refinement-logo img {
    width: 64px;
  }

  .refinement-thumbs {
    display: none;
  }

  .site-footer {
    inset: auto 12px 12px;
  }

  .site-footer .sidebar-toggle {
    width: 96px;
  }

  .footer-links {
    max-width: calc(100vw - 122px);
    overflow: hidden;
  }

  .footer-credit,
  .footer-links > span[aria-hidden="true"],
  .footer-links > .footer-legal {
    display: none;
  }

  .controls {
    left: 12px;
    bottom: 48px;
    width: calc(100vw - 24px);
    max-height: calc(100vh - 120px);
  }

  .control-row {
    grid-template-columns: 100px 1fr 42px;
  }

  .info-content {
    top: 48px;
    left: 12px;
    width: calc(100vw - 24px);
    max-height: calc(100vh - 72px);
    min-height: 0;
    padding: 38px 28px 44px;
  }

  .info-copy {
    top: auto;
    gap: 20px;
    width: 100%;
    font-size: var(--gala-ui-size);
    line-height: 1.35;
  }

  .apply-chrome {
    top: 12px;
    left: 12px;
    grid-template-rows: 40px 36px;
    width: calc(100vw - 24px);
  }

  .apply-chrome-logo img {
    width: 72px;
  }

  .apply-exit-trigger {
    top: 92px;
    right: 12px;
  }

  .apply-shell {
    grid-template-columns: 1fr 18px 1fr;
    width: calc(100vw - 24px);
    margin-left: 12px;
    padding-top: 160px;
    overflow: auto;
  }

  .apply-step-arrow#applyPrev,
  .apply-next {
    width: 100%;
    margin-top: 42px;
  }

  .apply-member-signin {
    left: 12px;
    bottom: 12px;
  }

  .apply-grid-two {
    grid-template-columns: 1fr 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .refinement-plus,
  .info-content,
  .apply-title-marquee > div {
    animation: none;
    transition-duration: 1ms;
  }
}

/* Browser review refinements */
@media (min-width: 701px) {
  :root {
    --gala-nav-width: 385.883px;
    --gala-cell-height: 31.433px;
  }
}

.refinement-main {
  grid-template-rows: var(--gala-cell-height) var(--gala-cell-height);
}

.refinement-action:hover,
.refinement-action:focus-visible,
.refinement-logo:hover,
.refinement-logo:focus-visible,
.refinement-thumb:not(.is-active):hover,
.refinement-thumb:focus-visible {
  opacity: 1;
  background: #f1f1f1;
}

.info-is-open .refinement-marquee {
  opacity: 0;
  visibility: hidden;
}

.info-content {
  top: calc(19px + var(--gala-cell-height) + 2px);
  padding-left: 26px;
  padding-right: 26px;
}

.site-footer .sidebar-toggle,
.footer-links {
  min-height: 0;
  height: auto;
  padding-top: 0;
  padding-bottom: 0;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.site-footer .sidebar-toggle {
  width: auto;
}

.apply-loader {
  display: none;
}

.apply-chrome {
  grid-template-rows: 31.433px 31.433px;
  width: min(385.883px, calc(100vw - 40px));
}

.apply-chrome-logo img {
  width: 75px;
}

.apply-title-marquee > div {
  display: flex;
  width: max-content;
  min-width: 0;
}

.apply-title-marquee > div > span {
  flex: 0 0 auto;
}

.apply-shell {
  grid-template-columns: 127.482px 1fr 127.482px;
  width: min(385.883px, calc(100vw - 40px));
  padding-top: 135.866px;
}

.apply-input {
  height: 31.433px;
  padding: 0 14px;
}

.apply-input:focus,
.apply-textarea:focus {
  color: var(--gala-white);
  background: var(--gala-black);
  outline: none;
}

.apply-step-arrow#applyPrev,
.apply-next {
  width: 127.482px;
  height: 31.433px;
  margin-top: 56px;
}

.apply-exit-trigger,
.apply-member-signin {
  height: auto;
  padding: 0;
  color: var(--gala-black);
  background: transparent;
}

.apply-exit-trigger {
  min-width: 0;
}

.apply-exit-trigger:hover,
.apply-exit-trigger:focus-visible {
  min-width: 0;
}

.apply-member-signin {
  display: grid;
}

.apply-member-signin span {
  grid-area: 1 / 1;
  white-space: nowrap;
  transition: opacity 180ms ease;
}

.apply-member-hover {
  opacity: 0;
}

.apply-member-signin:hover .apply-member-default,
.apply-member-signin:focus-visible .apply-member-default {
  opacity: 0;
}

.apply-member-signin:hover .apply-member-hover,
.apply-member-signin:focus-visible .apply-member-hover {
  opacity: 1;
}

@media (max-width: 700px) {
  .info-content {
    top: calc(12px + var(--gala-cell-height) + 2px);
  }

  .apply-chrome {
    grid-template-rows: 31.433px 31.433px;
    width: min(385.883px, calc(100vw - 24px));
  }

  .apply-shell {
    grid-template-columns: 127.482px minmax(2px, 1fr) 127.482px;
    width: min(385.883px, calc(100vw - 24px));
    padding-top: 132px;
  }

  .apply-step-arrow#applyPrev,
  .apply-next {
    width: 127.482px;
    height: 31.433px;
    margin-top: 56px;
  }
}

.controls.ascii-controls {
  width: min(386.446px, calc(100vw - 52px));
}

/* Yuri Roga-style accordion motion: the surface is revealed by height only. */
.info-overlay,
.info-content,
.apply-page,
.controls {
  transition: none;
}

.info-overlay {
  opacity: 1;
}

.info-content {
  height: calc(100vh - 88px);
  opacity: 1;
  filter: none;
  padding-top: 11px;
  transform: none;
  transform-origin: top;
  will-change: height;
}

.info-overlay.is-visible .info-content {
  opacity: 1;
  transform: none;
}

.apply-page {
  opacity: 1;
  transform-origin: top;
  will-change: height;
}

.controls {
  opacity: 1;
  transform: none;
  transform-origin: bottom;
  will-change: height;
}

.controls.is-hidden {
  visibility: hidden;
  opacity: 1;
  transform: none;
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  .info-content,
  .apply-page,
  .controls {
    will-change: auto;
  }
}

@media (max-width: 700px) {
  .info-content {
    height: calc(100vh - 72px);
    padding-top: 11px;
  }

  .controls.ascii-controls {
    width: calc(100vw - 24px);
  }
}

/* MORE INFO — Figma 11:121 */
body.nav-option-2 {
  --gala-info-panel-max: min(466px, calc(100vh - 118px));
}

.refinement-marquee {
  transform: translateY(var(--gala-info-marquee-shift, 0px));
}

.info-is-open .refinement-marquee {
  opacity: 1;
  visibility: visible;
  transform: translateY(var(--gala-info-marquee-shift, 0px));
}

.info-content {
  top: calc(19px + var(--gala-cell-height) + 2px);
  left: 26px;
  width: var(--gala-nav-width);
  height: auto;
  max-height: var(--gala-info-panel-max);
  padding: 40.5px 58.949px 35.5px 31px;
  overflow: auto;
}

.info-copy {
  display: block;
  width: 296.497px;
  max-width: 100%;
  font-size: 9px;
  line-height: 13px;
  white-space: pre-wrap;
}

.info-copy p {
  margin: 0;
  white-space: pre-wrap;
}

.info-overlay,
.info-overlay.is-visible {
  pointer-events: none;
}

.info-overlay.is-visible .info-content {
  pointer-events: auto;
}

.info-is-open .site-footer {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.info-is-open .site-footer .sidebar-toggle,
.info-is-open .ascii-stage {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

@media (max-width: 700px) {
  body.nav-option-2 {
    --gala-info-panel-max: min(466px, calc(100vh - 96px));
  }

  .info-content {
    top: calc(12px + var(--gala-cell-height) + 2px);
    left: 12px;
    width: calc(100vw - 24px);
    height: auto;
    max-height: var(--gala-info-panel-max);
    padding: 40.5px 28px 35.5px;
  }
}

/* APPLICATION — shared landing-page navigation behavior */
.apply-info-action[aria-expanded="true"] .refinement-plus {
  transform: rotate(45deg);
}

.apply-page::before {
  background: rgb(255 255 255 / 42%);
  opacity: 0;
  transition: opacity 420ms cubic-bezier(0.77, 0, 0.175, 1);
}

/* APPLICATION — Figma 15:437 through 16:1414 */
.apply-page {
  overflow: hidden;
  color: #f1f1f1;
  background: transparent;
  font: 400 9px/normal var(--gala-ui-font);
  letter-spacing: 1.08px;
  text-transform: uppercase;
  will-change: auto;
}

.apply-page::before {
  z-index: 0;
  background: rgb(255 255 255 / 10%);
  opacity: 1;
  backdrop-filter: blur(42px);
  -webkit-backdrop-filter: blur(42px);
}

.apply-panel {
  position: fixed;
  top: 19px;
  left: 26px;
  z-index: 3;
  width: min(387px, calc(100vw - 52px));
}

.apply-panel-main {
  display: flex;
  flex-direction: column;
  gap: 2px;
  width: 100%;
}

.apply-chrome {
  position: static;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: 31.433px;
  gap: 2px;
  width: 100%;
}

.apply-chrome > span,
.apply-chrome-action,
.apply-chrome-logo {
  display: grid;
  place-items: center;
  min-width: 0;
  height: 31.433px;
  padding: 0;
  border: 0;
  color: #f1f1f1;
  background: #0c0c0c;
  font: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
}

.apply-info-action {
  display: flex;
}

.apply-chrome-logo img {
  display: block;
  width: 75px;
  filter: invert(1);
}

.apply-shell {
  position: static;
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  height: auto;
  margin: 0;
  padding: 40px 20px;
  overflow: hidden;
  color: #f1f1f1;
  background: #0c0c0c;
  transform-origin: top;
  will-change: height;
}

.apply-form {
  width: 100%;
}

.apply-step,
.apply-step.is-active {
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  opacity: 1;
  filter: none;
  transform: none;
}

.apply-step.is-active {
  display: flex;
  flex-direction: column;
  gap: 2px;
  animation: none;
}

.apply-grid-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.apply-input,
.apply-textarea {
  width: 100%;
  border: 0;
  border-radius: 0;
  color: #0c0c0c;
  background: #f1f1f1;
  font: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  outline: 0;
}

.apply-input {
  height: 31.433px;
  padding: 0 14px;
}

.apply-textarea {
  min-height: 154.433px;
  padding: 11px 14px;
  line-height: normal;
  resize: vertical;
}

.apply-input::placeholder,
.apply-textarea::placeholder {
  color: #0c0c0c;
  opacity: 1;
}

.apply-input:focus,
.apply-textarea:focus {
  color: #0c0c0c;
  background: #fff;
  outline: 1px solid #0c0c0c;
  outline-offset: -2px;
}

.apply-intro-copy,
.apply-question-copy,
.apply-follow-up,
.apply-confirmation-copy {
  color: #f1f1f1;
  font: inherit;
  letter-spacing: inherit;
  text-transform: uppercase;
}

.apply-intro-copy,
.apply-confirmation-copy {
  display: flex;
  flex-direction: column;
  gap: 13px;
  max-width: 321px;
}

.apply-question-copy {
  display: block;
  margin: 0 0 22px;
  font: inherit;
  letter-spacing: inherit;
}

.apply-question-copy p + p {
  margin-top: 13px;
}

.apply-review-copy {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 22px;
}

.apply-intro-copy p,
.apply-question-copy p,
.apply-follow-up p,
.apply-confirmation-copy p,
.apply-conditional p,
.apply-exit p {
  margin: 0;
}

.apply-check {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 7px;
  color: #f1f1f1;
  font: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
}

.apply-check input,
.apply-choice input,
.apply-chip-row input {
  appearance: none;
  flex: 0 0 10px;
  width: 10px;
  height: 10px;
  margin: 0;
  border: 0;
  border-radius: 0;
}

.apply-check input {
  background: #f1f1f1;
}

.apply-check input:checked {
  background: #0c0c0c;
  box-shadow: inset 0 0 0 2px #f1f1f1;
}

.apply-choice-grid,
.apply-chip-grid {
  display: flex;
  flex-direction: column;
  gap: 2px;
  width: 100%;
}

.apply-choice,
.apply-chip-row {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  width: 100%;
  min-width: 0;
  padding: 11px 14px;
  border: 0;
  border-radius: 0;
  color: #0c0c0c;
  background: #f1f1f1;
  font: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
}

.apply-choice {
  min-height: 56.433px;
}

.apply-choice input,
.apply-chip-row input {
  background: #0c0c0c;
}

.apply-choice input:checked,
.apply-chip-row input:checked {
  background: #fff;
  box-shadow: 0 0 0 1px #0c0c0c;
}

.apply-choice > span {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.apply-choice small {
  color: rgb(12 12 12 / 58%);
  font: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
}

.apply-chip-row {
  min-height: 37px;
  align-items: center;
}

.apply-follow-up {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-top: 22px;
}

.apply-follow-up .apply-textarea,
.apply-conditional .apply-textarea {
  min-height: 154.433px;
}

.apply-conditional {
  display: none;
}

.apply-conditional.is-visible {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-top: 22px;
}

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

.apply-step-arrow,
.apply-next,
.apply-follow,
.apply-exit-actions button {
  display: grid;
  place-items: center;
  width: 127.48px;
  height: 31.433px;
  margin: 0;
  padding: 0 14px;
  border: 0;
  border-radius: 0;
  color: #0c0c0c;
  background: #f1f1f1;
  font: inherit;
  letter-spacing: inherit;
  text-decoration: none;
  text-transform: inherit;
  cursor: pointer;
}

.apply-step-arrow:disabled {
  display: none;
}

.apply-follow {
  display: none;
}

.apply-page[data-step-index="0"] .apply-actions {
  justify-content: flex-start;
}

.apply-page.is-confirmation .apply-actions {
  justify-content: space-between;
}

.apply-page.is-confirmation .apply-follow {
  display: grid;
}

.apply-step-arrow:hover,
.apply-step-arrow:focus-visible,
.apply-next:hover,
.apply-next:focus-visible,
.apply-follow:hover,
.apply-follow:focus-visible,
.apply-exit-actions button:hover,
.apply-exit-actions button:focus-visible {
  color: #f1f1f1;
  background: #242424;
  outline: 0;
}

.apply-title-marquee {
  position: relative;
  display: flex;
  width: 100%;
  height: 31.433px;
  overflow: hidden;
  border: 0;
  color: #f1f1f1;
  background: #0c0c0c;
  white-space: nowrap;
}

.apply-title-marquee > div {
  position: absolute;
  inset: 0 auto 0 0;
  display: none;
  align-items: center;
  width: max-content;
  min-width: 0;
}

.apply-title-marquee > .is-visible,
.apply-title-marquee.show-progress .apply-marquee-progress {
  display: flex;
}

.apply-title-marquee.show-progress .apply-marquee-step {
  display: none;
}

.apply-title-marquee span {
  flex: 0 0 auto;
}

.apply-exit-trigger,
.apply-member-signin {
  position: fixed;
  z-index: 3;
  height: auto;
  padding: 0;
  border: 0;
  color: #0c0c0c;
  background: transparent;
  font: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  cursor: pointer;
}

.apply-exit-trigger {
  top: 25px;
  right: 26px;
  min-width: 0;
}

.apply-member-signin {
  left: 26px;
  bottom: 21px;
}

.apply-exit-trigger:hover,
.apply-exit-trigger:focus-visible {
  min-width: 0;
}

.apply-exit {
  position: static;
  display: none;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  padding: 40px 20px;
  color: #f1f1f1;
  background: #0c0c0c;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.apply-exit.is-visible {
  display: flex;
}

.apply-exit-actions {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.apply-page.exit-confirmation-is-visible .apply-panel-main {
  display: none;
}

.home-is-hidden.info-is-open .apply-shell {
  display: none;
}

.home-is-hidden .info-content {
  top: calc(19px + 31.433px + 2px);
  left: 26px;
  width: min(387px, calc(100vw - 52px));
}

.apply-actions {
  align-items: flex-start;
}

.apply-page .apply-step-arrow#applyPrev,
.apply-page .apply-next,
.apply-page .apply-follow {
  align-self: flex-start;
  margin-top: 0;
}

.apply-online-row {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  min-height: 31.433px;
  padding: 0 14px;
  color: #0c0c0c;
  background: #f1f1f1;
}

.apply-online-selector {
  display: grid;
  flex: 0 0 10px;
  place-items: center;
  width: 10px;
  height: 10px;
  cursor: pointer;
}

.apply-online-selector input,
.apply-choice input,
.apply-chip-row input {
  appearance: none;
  width: 10px;
  height: 10px;
  margin: 0;
  border: 0 solid #0c0c0c;
  border-radius: 0;
  background: #0c0c0c;
  box-sizing: border-box;
  cursor: pointer;
}

.apply-online-selector input:checked,
.apply-choice input:checked,
.apply-chip-row input:checked {
  border-width: 2px;
  background: #f1f1f1;
  box-shadow: none;
}

.apply-online-selector input:focus,
.apply-choice input:focus,
.apply-chip-row input:focus {
  outline: 0;
}

.apply-online-input {
  flex: 1 1 auto;
  min-width: 0;
  height: 31.433px;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: #0c0c0c;
  background: transparent;
  font: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  outline: 0;
}

.apply-online-input::placeholder {
  color: #0c0c0c;
  opacity: 1;
}

@media (max-width: 700px) {
  .home-is-hidden .info-content {
    top: calc(12px + 31.433px + 2px);
    left: 12px;
    width: calc(100vw - 24px);
  }
}

/* Final shared motion and footer-link behavior. */
.refinement-marquee,
.apply-title-marquee {
  transition: opacity 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.footer-legal.text-swap {
  position: relative;
  display: inline-block;
  width: 32.36px;
  outline: none;
  transition: width 180ms ease;
}

.footer-legal.text-swap:hover,
.footer-legal.text-swap:focus-visible {
  width: 74.18px;
}

.footer-legal.text-swap > .text-swap-default {
  display: block;
}

.footer-legal.text-swap > .text-swap-hover {
  position: absolute;
  top: 0;
  right: 0;
  width: max-content;
}

/* Final responsive references — desktop 1440, tablet 768, mobile 390 */
.apply-location-conditional {
  display: none;
  width: 100%;
  margin-top: 22px;
}

.apply-location-conditional.is-visible {
  display: block;
}

/* One checkbox geometry across every application control. */
.apply-page .apply-check input,
.apply-page .apply-online-selector input,
.apply-page .apply-choice input,
.apply-page .apply-chip-row input,
.apply-page .apply-size-options input {
  appearance: none;
  flex: 0 0 10px;
  width: 10px;
  height: 10px;
  margin: 0;
  border: 1px solid currentColor;
  border-radius: 0;
  box-shadow: none;
  box-sizing: border-box;
  cursor: pointer;
}

.apply-page .apply-check input,
.apply-page .apply-size-options input {
  color: #f1f1f1;
  background: #f1f1f1;
}

.apply-page .apply-online-selector input,
.apply-page .apply-choice input,
.apply-page .apply-chip-row input {
  color: #0c0c0c;
  background: #f1f1f1;
}

.apply-page .apply-check input:checked,
.apply-page .apply-online-selector input:checked,
.apply-page .apply-choice input:checked,
.apply-page .apply-chip-row input:checked,
.apply-page .apply-size-options input:checked {
  border-width: 1px;
  background: linear-gradient(#0c0c0c, #0c0c0c) center / 4px 4px no-repeat #f1f1f1;
  box-shadow: none;
}

.apply-page .apply-check input:focus-visible,
.apply-page .apply-online-selector input:focus-visible,
.apply-page .apply-choice input:focus-visible,
.apply-page .apply-chip-row input:focus-visible,
.apply-page .apply-size-options input:focus-visible {
  outline: 1px solid currentColor;
  outline-offset: 2px;
}

/* Exit confirmation becomes a full responsive surface with its own marquee. */
.apply-page .apply-exit {
  position: fixed;
  inset: 18px 26px auto;
  z-index: 60;
  display: none;
  flex-direction: column;
  gap: 2px;
  width: auto;
  max-height: calc(100vh - 36px);
  padding: 0;
  color: #f1f1f1;
  background: transparent;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.apply-page .apply-exit.is-visible {
  display: flex;
}

.apply-exit-dialog {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: clamp(56px, 9vh, 84px);
  min-height: min(490px, calc(100vh - 70px));
  padding: clamp(52px, 8vh, 76px) clamp(42px, 4vw, 62px) clamp(72px, 11vh, 104px);
  background: #0c0c0c;
}

.apply-exit-message {
  display: flex;
  flex-direction: column;
  gap: 2px;
  max-width: 620px;
  color: #f1f1f1;
}

.apply-exit-message p {
  margin: 0;
}

.apply-page .apply-exit-actions {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
}

.apply-page .apply-exit-actions button {
  width: min(394px, 35%);
  height: 64px;
}

.apply-exit-marquee {
  position: relative;
  height: 31.433px;
  overflow: hidden;
  color: #f1f1f1;
  background: #0c0c0c;
  white-space: nowrap;
}

.apply-exit-marquee-track {
  position: absolute;
  inset: 0 auto 0 0;
  display: flex;
  align-items: center;
  width: max-content;
  min-width: 100%;
}

.apply-exit-marquee-track span {
  flex: 0 0 auto;
}

.refinement-thumbs {
  grid-auto-columns: 35.929px;
  grid-template-rows: 29.294px;
  gap: 2px;
}

@media (min-width: 1025px) {
  .refinement-nav {
    inset: 18px 26px auto;
    width: calc(100vw - 52px);
  }

  .apply-panel {
    top: 18px;
    left: 26px;
  }

  .site-footer {
    inset: auto 32px 25px;
  }
}

@media (min-width: 701px) and (max-width: 1024px) {
  .refinement-nav {
    inset: 17px 29px auto;
    width: calc(100vw - 58px);
  }

  .apply-panel {
    top: 17px;
    left: 29px;
  }

  .apply-page .apply-exit {
    inset: 17px 29px auto;
  }

  .site-footer {
    inset: auto 29px 21px;
  }
}

@media (max-width: 700px) {
  :root {
    --gala-nav-width: calc(100vw - 22px);
    --gala-cell-height: 31.433px;
  }

  .refinement-nav {
    inset: 14px 11px auto;
    display: block;
    width: calc(100vw - 22px);
  }

  .refinement-main {
    grid-template-rows: 31.433px 31.433px;
    width: 100%;
  }

  .refinement-thumbs {
    position: fixed;
    right: auto;
    bottom: 61.75px;
    left: 11px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-template-rows: 37.319px;
    gap: 4.9px;
    justify-self: stretch;
    width: calc(100vw - 22px);
  }

  .refinement-thumb {
    padding: 2.6px;
  }

  .refinement-thumb img {
    object-fit: contain;
    mix-blend-mode: multiply;
  }

  .site-footer {
    inset: auto 11px 10px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-rows: 13px 13px;
    row-gap: 7px;
    width: auto;
    align-items: center;
  }

  .site-footer .sidebar-toggle {
    grid-column: 1;
    grid-row: 1;
    justify-self: stretch;
    width: auto;
    height: 13px;
    text-align: center;
  }

  .footer-links {
    display: contents;
  }

  .footer-instagram {
    grid-column: 2;
    grid-row: 1;
    justify-self: center;
  }

  .footer-credit {
    grid-column: 1 / -1;
    grid-row: 2;
    display: inline-grid;
    justify-self: center;
  }

  .footer-credit-default {
    opacity: 1;
  }

  .footer-credit-hover {
    display: none;
  }

  .footer-links > span[aria-hidden="true"] {
    display: none;
  }

  .footer-links > .footer-legal {
    grid-column: 3;
    grid-row: 1;
    display: block;
    justify-self: center;
  }

  .apply-panel {
    top: 14px;
    left: 11px;
    width: calc(100vw - 22px);
  }

  .apply-chrome,
  .apply-shell {
    width: 100%;
  }

  .apply-shell {
    max-height: calc(100vh - 116px);
    padding: 40px 20px;
  }

  .apply-exit-trigger {
    top: auto;
    right: auto;
    bottom: 236px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
  }

  .apply-member-signin {
    right: auto;
    bottom: 30px;
    left: 11px;
    width: calc((100vw - 22px) / 3);
    text-align: center;
  }

  .apply-member-default {
    display: none;
  }

  .apply-member-hover {
    position: static;
    opacity: 1;
  }

  .apply-page .apply-exit {
    inset: 14px 11px auto;
    width: auto;
    max-height: calc(100vh - 28px);
  }

  .apply-exit-dialog {
    gap: 40px;
    min-height: min(460px, calc(100vh - 94px));
    padding: 40px 20px 72px;
  }

  .apply-page .apply-exit-actions {
    gap: 0;
  }

  .apply-page .apply-exit-actions button {
    width: 127.48px;
    height: 31.433px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .apply-exit-marquee-track {
    animation: none;
  }
}

/* Application selection and piece-detail states */
.apply-page p,
.apply-page small,
.apply-page label,
.apply-page span {
  text-wrap: pretty;
}

.apply-page .apply-online-selector input,
.apply-page .apply-choice input,
.apply-page .apply-chip-row input,
.apply-page .apply-size-options input {
  appearance: none;
  width: 10px;
  height: 10px;
  margin: 0;
  border: 1px solid #0c0c0c;
  border-radius: 0;
  background: #f1f1f1;
  box-shadow: none;
  box-sizing: border-box;
  cursor: pointer;
}

.apply-page .apply-online-selector input:checked,
.apply-page .apply-choice input:checked,
.apply-page .apply-chip-row input:checked,
.apply-page .apply-size-options input:checked {
  border-width: 1px;
  background: linear-gradient(#0c0c0c, #0c0c0c) center / 4px 4px no-repeat #f1f1f1;
  box-shadow: none;
}

.apply-page .apply-online-selector input:focus,
.apply-page .apply-choice input:focus,
.apply-page .apply-chip-row input:focus,
.apply-page .apply-size-options input:focus {
  outline: 0;
}

.apply-piece-option {
  display: flex;
  flex-direction: column;
  gap: 2px;
  width: 100%;
}

.apply-piece-details {
  display: none;
  flex-direction: column;
  gap: 11px;
  width: 100%;
  padding: 9px 0 0;
}

.apply-piece-details.is-visible {
  display: flex;
}

.apply-size-options {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.apply-size-options label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #f1f1f1;
  cursor: pointer;
}

.apply-piece-notes {
  min-height: 104px;
}

.apply-online-fields {
  display: flex;
  flex-direction: column;
  gap: 2px;
  width: 100%;
}

.apply-optional-note {
  color: #f1f1f1;
  font-size: calc(var(--gala-ui-size) - 2px);
  line-height: normal;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  white-space: nowrap;
}

.apply-online-offline {
  margin-top: 7px;
}

@media (max-width: 700px) {
  .apply-panel {
    top: 12px;
    left: 12px;
    width: calc(100vw - 24px);
  }

  .apply-shell {
    max-height: calc(100vh - 105px);
    overflow-y: auto;
    padding: 32px 20px;
  }

  .apply-exit-trigger {
    top: auto;
    right: 12px;
    bottom: 12px;
  }

  .apply-member-signin {
    left: 12px;
    bottom: 12px;
  }
}

/* Unified interactive system */
.ascii-controls .control-button,
.ascii-controls .control-row,
.ascii-controls .control-file span {
  color: var(--gala-black);
  background: rgb(241 241 241 / 60%);
  backdrop-filter: blur(6.116px);
  -webkit-backdrop-filter: blur(6.116px);
}

.ascii-controls .controls-header .control-button:hover,
.ascii-controls .controls-header .control-button:focus-visible,
.ascii-controls .control-file:hover span,
.ascii-controls .control-file:focus-within span {
  color: var(--gala-black);
  background: #f1f1f1;
}

.text-swap {
  display: inline-grid;
  align-items: center;
}

.text-swap > .text-swap-default,
.text-swap > .text-swap-hover {
  grid-area: 1 / 1;
  white-space: nowrap;
  transition: opacity 180ms ease;
}

.text-swap > .text-swap-hover {
  opacity: 0;
}

.text-swap:hover > .text-swap-default,
.text-swap:focus-visible > .text-swap-default {
  opacity: 0;
}

.text-swap:hover > .text-swap-hover,
.text-swap:focus-visible > .text-swap-hover {
  opacity: 1;
}

.site-footer .sidebar-toggle:hover,
.site-footer .sidebar-toggle:focus-visible,
.footer-instagram:hover,
.footer-instagram:focus-visible {
  opacity: 1;
}

.footer-instagram {
  min-width: max-content;
  color: inherit;
  text-decoration: none;
  outline: none;
}

.footer-legal {
  color: inherit;
  text-decoration: none;
}

.footer-instagram > .text-swap-hover {
  justify-self: start;
  text-align: left;
}

.site-footer .sidebar-toggle.text-swap {
  justify-items: start;
  text-align: left;
}

.site-footer .sidebar-toggle.text-swap > span {
  justify-self: start;
  text-align: left;
  transition: none;
}

.footer-instagram.text-swap > span {
  transition: none;
}

/* Keep SIGN IN compact at rest; let its hover copy reflow the left footer group. */
.footer-links-left .sidebar-toggle.text-swap > .text-swap-hover {
  display: none;
  opacity: 1;
}

.footer-links-left .sidebar-toggle.text-swap:hover > .text-swap-default,
.footer-links-left .sidebar-toggle.text-swap:focus-visible > .text-swap-default {
  display: none;
}

.footer-links-left .sidebar-toggle.text-swap:hover > .text-swap-hover,
.footer-links-left .sidebar-toggle.text-swap:focus-visible > .text-swap-hover {
  display: block;
}

.footer-signin-apply {
  display: none;
}

.apply-is-open .footer-signin-home {
  display: none !important;
}

.apply-is-open .footer-signin-apply {
  display: block;
}

.apply-is-open .footer-links-left .sidebar-toggle.text-swap > .footer-signin-apply.text-swap-default {
  display: block;
  grid-area: 1 / 1;
  opacity: 1;
}

.apply-is-open .footer-links-left .sidebar-toggle.text-swap:hover > .footer-signin-apply.text-swap-default,
.apply-is-open .footer-links-left .sidebar-toggle.text-swap:focus-visible > .footer-signin-apply.text-swap-default {
  display: block;
  opacity: 0;
}

.apply-is-open .footer-links-left .sidebar-toggle.text-swap > .footer-signin-apply.text-swap-hover,
.apply-is-open .footer-links-left .sidebar-toggle.text-swap:hover > .footer-signin-apply.text-swap-hover,
.apply-is-open .footer-links-left .sidebar-toggle.text-swap:focus-visible > .footer-signin-apply.text-swap-hover {
  display: block;
  grid-area: 1 / 1;
}

.apply-is-open .footer-links-left .sidebar-toggle.text-swap > .footer-signin-apply.text-swap-hover {
  opacity: 0;
}

.apply-is-open .footer-links-left .sidebar-toggle.text-swap:hover > .footer-signin-apply.text-swap-hover,
.apply-is-open .footer-links-left .sidebar-toggle.text-swap:focus-visible > .footer-signin-apply.text-swap-hover {
  opacity: 1;
}

.home-is-hidden.apply-is-open .site-footer .sidebar-toggle {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

@media (max-width: 700px) {
  .apply-is-open .site-footer .sidebar-toggle {
    font-size: 7px;
    letter-spacing: 0.7px;
  }
}

/* Form actions remain black at rest; hover communicates validity. */
.apply-step-arrow#applyPrev,
.apply-next,
.apply-next.is-ready {
  color: var(--gala-white);
  background: var(--gala-black);
  box-shadow: none;
  opacity: 1;
}

.apply-step-arrow#applyPrev:hover,
.apply-step-arrow#applyPrev:focus-visible,
.apply-next.is-ready:hover,
.apply-next.is-ready:focus-visible {
  color: var(--gala-black);
  background: #f1f1f1;
  box-shadow: inset 0 0 0 1px var(--gala-black);
}

.apply-next:not(.is-ready):hover,
.apply-next:not(.is-ready):focus-visible {
  color: var(--gala-white);
  background: rgb(12 12 12 / 60%);
  box-shadow: none;
}

.apply-step-arrow:disabled,
.apply-next:disabled {
  opacity: 0.3;
  pointer-events: none;
}

.apply-page > * {
  opacity: 0;
  transition: opacity 420ms cubic-bezier(0.77, 0, 0.175, 1);
}

.apply-is-open .apply-page::before,
.apply-is-open .apply-page > * {
  opacity: 1;
}

.apply-title-marquee {
  transform: translateY(var(--gala-info-marquee-shift, 0px));
  transition: opacity 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.home-is-hidden.info-is-open .apply-title-marquee {
  transform: translateY(var(--gala-info-marquee-shift, 0px));
}

.home-is-hidden .info-overlay {
  z-index: 44;
}

.home-is-hidden .info-content {
  top: calc(15px + 31.433px + 2px);
  left: 20px;
  width: min(385.883px, calc(100vw - 40px));
  height: auto;
  max-height: var(--gala-info-panel-max);
  color: var(--gala-white);
  background: var(--gala-black);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.home-is-hidden .site-footer {
  z-index: 45;
  opacity: 1;
  visibility: visible;
  pointer-events: none;
}

.home-is-hidden .site-footer .sidebar-toggle {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.home-is-hidden .site-footer .footer-links {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

@media (max-width: 700px) {
  .home-is-hidden .info-content {
    top: calc(12px + 31.433px + 2px);
    left: 12px;
    width: min(385.883px, calc(100vw - 24px));
  }
}

/* Persistent application marquee tracks */
.apply-title-marquee {
  position: relative;
}

.apply-title-marquee > .apply-marquee-track {
  position: absolute;
  inset: 0 auto 0 0;
  display: flex;
  align-items: center;
  width: max-content;
  min-width: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease-in-out;
}

.apply-title-marquee > .apply-marquee-step,
.apply-title-marquee.show-progress > .apply-marquee-progress {
  opacity: 1;
}

.apply-title-marquee.show-progress > .apply-marquee-step {
  opacity: 0;
}

.apply-marquee-track > span {
  flex: 0 0 auto;
}

/* Inline exit-confirmation state */
.apply-exit {
  position: fixed;
  inset: 15px auto auto 20px;
  z-index: 6;
  display: grid;
  grid-template-rows: 31.433px 31.433px;
  gap: 2px;
  width: min(385.883px, calc(100vw - 40px));
  padding: 0;
  color: var(--gala-white);
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 220ms ease-in-out, visibility 220ms;
}

.apply-is-open .apply-page > .apply-exit.is-visible,
.apply-exit.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.apply-is-open .apply-page > .apply-exit:not(.is-visible) {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.apply-exit-copy {
  display: grid;
  place-items: center;
  width: 100%;
  height: 31.433px;
  padding: 0 12px;
  color: var(--gala-white);
  background: var(--gala-black);
  font-size: 9px;
  line-height: 1;
  letter-spacing: 0.08em;
  text-align: center;
  white-space: nowrap;
}

/* Form progression buttons: solid at rest, softly faded on interaction */
.apply-step-arrow#applyPrev,
.apply-next {
  color: var(--gala-white);
  background: var(--gala-black);
  opacity: 1;
  transition: color 180ms ease, background-color 180ms ease, opacity 180ms ease;
}

.apply-step-arrow#applyPrev:hover,
.apply-step-arrow#applyPrev:focus-visible,
.apply-next:hover,
.apply-next:focus-visible {
  color: var(--gala-black);
  background: #f1f1f1;
  box-shadow: inset 0 0 0 1px var(--gala-black);
}

.apply-primary-next.is-blocked,
.apply-next.is-blocked {
  opacity: 1;
}

.apply-exit-actions {
  display: grid;
  grid-template-columns: 127.482px 1fr 127.482px;
  gap: 2px;
  width: 100%;
}

.apply-exit-actions button {
  width: 127.482px;
  height: 31.433px;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: var(--gala-white);
  background: var(--gala-black);
  font: inherit;
  letter-spacing: inherit;
}

.apply-exit-actions button:hover,
.apply-exit-actions button:focus-visible {
  color: var(--gala-black);
  background: #f1f1f1;
  box-shadow: inset 0 0 0 1px var(--gala-black);
}

.apply-exit-actions button:first-child {
  grid-column: 1;
}

.apply-exit-actions button:last-child {
  grid-column: 3;
}

.apply-chrome,
.apply-shell,
.apply-exit-trigger {
  transition: opacity 220ms ease-in-out;
}

.apply-page.exit-confirmation-is-visible .apply-chrome,
.apply-page.exit-confirmation-is-visible .apply-shell,
.apply-page.exit-confirmation-is-visible .apply-exit-trigger {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

@media (max-width: 700px) {
  .apply-exit {
    inset: 12px auto auto 12px;
    width: min(385.883px, calc(100vw - 24px));
  }

  .apply-exit-actions {
    grid-template-columns: minmax(0, 127.482px) 1fr minmax(0, 127.482px);
  }

  .apply-exit-actions button {
    width: 100%;
  }
}

/* Final application specificity: the Figma application uses white controls on black. */
.apply-page .apply-step-arrow#applyPrev,
.apply-page .apply-next,
.apply-page .apply-next.is-ready,
.apply-page .apply-follow,
.apply-page .apply-exit-actions button {
  color: #0c0c0c;
  background: #f1f1f1;
  box-shadow: none;
  white-space: nowrap;
}

.apply-page .apply-step-arrow#applyPrev:hover,
.apply-page .apply-step-arrow#applyPrev:focus-visible,
.apply-page .apply-next:hover,
.apply-page .apply-next:focus-visible,
.apply-page .apply-follow:hover,
.apply-page .apply-follow:focus-visible,
.apply-page .apply-exit-actions button:hover,
.apply-page .apply-exit-actions button:focus-visible {
  color: #f1f1f1;
  background: #242424;
  box-shadow: none;
}

.apply-page .apply-step-arrow:disabled {
  display: none;
}

.apply-page .apply-check input:focus,
.apply-page .apply-choice input:focus,
.apply-page .apply-chip-row input:focus {
  outline: 0;
}

.apply-page .apply-exit {
  position: static;
  inset: auto;
  display: none;
  flex-direction: column;
  place-items: initial;
  gap: 24px;
  width: 100%;
  padding: 40px 20px;
  color: #f1f1f1;
  background: #0c0c0c;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.apply-page .apply-exit.is-visible {
  display: flex;
}

.apply-page .apply-exit-actions {
  display: flex;
  justify-content: space-between;
  gap: 0;
}

.apply-page.exit-confirmation-is-visible .apply-panel-main {
  display: none;
}

.home-is-hidden.info-is-open .apply-shell {
  display: none;
}

.home-is-hidden .info-content {
  top: calc(19px + 31.433px + 2px);
  left: 26px;
  width: min(387px, calc(100vw - 52px));
}

.apply-actions {
  align-items: flex-start;
}

.apply-page .apply-step-arrow#applyPrev,
.apply-page .apply-next,
.apply-page .apply-follow {
  align-self: flex-start;
  margin-top: 0;
}

/* Application actions: centered labels with a crisp monochrome interaction. */
.apply-page .apply-step-arrow#applyPrev,
.apply-page .apply-next,
.apply-page .apply-follow,
.apply-page .apply-exit-actions button {
  padding: 0;
  color: #0c0c0c;
  background: #f1f1f1;
  box-shadow: none;
  line-height: 1;
  place-items: center;
  text-align: center;
  transition: color 120ms ease, background-color 120ms ease, box-shadow 120ms ease, transform 80ms ease;
}

.apply-page .apply-step-arrow#applyPrev:hover,
.apply-page .apply-step-arrow#applyPrev:focus-visible,
.apply-page .apply-next:hover,
.apply-page .apply-next:focus-visible,
.apply-page .apply-follow:hover,
.apply-page .apply-follow:focus-visible,
.apply-page .apply-exit-actions button:hover,
.apply-page .apply-exit-actions button:focus-visible {
  color: #f1f1f1;
  background: #0c0c0c;
  box-shadow: inset 0 0 0 1px #f1f1f1;
}

.apply-page .apply-step-arrow#applyPrev:active,
.apply-page .apply-next:active,
.apply-page .apply-follow:active,
.apply-page .apply-exit-actions button:active {
  transform: translateY(1px);
}

.apply-online-row {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  min-height: 31.433px;
  padding: 0 14px;
  color: #0c0c0c;
  background: #f1f1f1;
}

.apply-online-selector {
  display: grid;
  flex: 0 0 10px;
  place-items: center;
  width: 10px;
  height: 10px;
  cursor: pointer;
}

.apply-online-selector input,
.apply-choice input,
.apply-chip-row input {
  appearance: none;
  width: 10px;
  height: 10px;
  margin: 0;
  border: 0 solid #0c0c0c;
  border-radius: 0;
  background: #0c0c0c;
  box-sizing: border-box;
  cursor: pointer;
}

.apply-online-selector input:checked,
.apply-choice input:checked,
.apply-chip-row input:checked {
  border-width: 2px;
  background: #f1f1f1;
  box-shadow: none;
}

.apply-online-selector input:focus,
.apply-choice input:focus,
.apply-chip-row input:focus {
  outline: 0;
}

.apply-online-input {
  flex: 1 1 auto;
  min-width: 0;
  height: 31.433px;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: #0c0c0c;
  background: transparent;
  font: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  outline: 0;
}

.apply-online-input::placeholder {
  color: #0c0c0c;
  opacity: 1;
}

@media (max-width: 700px) {
  .home-is-hidden .info-content {
    top: calc(12px + 31.433px + 2px);
    left: 12px;
    width: calc(100vw - 24px);
  }
}
