/* Standalone 레이아웃 보정 — apply 페이지가 자체 TopBar를 가지므로 외곽 header/padding 제거 */
body[data-route="apply"] .eq-standalone-header,
body[data-route="apply_demo"] .eq-standalone-header,
body[data-view=""][data-route="apply"] .eq-standalone-header,
body[data-view=""][data-route="apply_demo"] .eq-standalone-header {
  display: none;
}
body[data-route="apply"] .eq-standalone-main,
body[data-route="apply_demo"] .eq-standalone-main,
body[data-route="apply"] .eq-content,
body[data-route="apply_demo"] .eq-content {
  padding: 0;
  margin: 0;
  max-width: none;
  width: 100%;
}
body[data-route="apply"] .eq-standalone-shell,
body[data-route="apply_demo"] .eq-standalone-shell {
  padding: 0;
  margin: 0;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}
/* ─────────────────────────────────────────────
   EntryQ Public Apply — real apply page design
   Scope: .eq-page-public-apply public apply pages.
   Legacy prototype styles were removed; selectors below are kept stable.
   ───────────────────────────────────────────── */
.eq-page-public-apply:not(.q-pa-root) {
  --eq-apply-bg: #f5f7fa;
  --eq-apply-canvas: #ebeef3;
  --eq-apply-surface: #ffffff;
  --eq-apply-muted: rgba(238, 243, 247, 0.96);
  --eq-apply-primary: #1F3F95;
  --eq-apply-primary-strong: #1A3582;
  --eq-apply-primary-soft: rgba(31, 63, 149, 0.10);
  --eq-apply-primary-line: rgba(31, 63, 149, 0.26);
  --eq-apply-text: #17202e;
  --eq-apply-text-muted: #5e6a7d;
  --eq-apply-text-soft: #8492a5;
  --eq-apply-border: rgba(32, 48, 64, 0.11);
  --eq-apply-border-strong: rgba(32, 48, 64, 0.20);
  --eq-apply-danger: #c0392b;
  --eq-apply-shadow: 0 1px 0 rgba(27, 39, 36, 0.04), 0 4px 16px -8px rgba(27, 39, 36, 0.10);

  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 100vh;
  max-width: 520px;
  margin: 0 auto;
  padding: 0 16px 24px;
  background: var(--eq-apply-bg);
  color: var(--eq-apply-text);
}

[data-theme="dark"] .eq-page-public-apply:not(.q-pa-root) {
  --eq-apply-bg: #0e1520;
  --eq-apply-canvas: #080d14;
  --eq-apply-surface: #141e2a;
  --eq-apply-muted: rgba(22, 34, 50, 0.96);
  --eq-apply-primary: #9DBEEF;
  --eq-apply-primary-strong: #B8CEF4;
  --eq-apply-primary-soft: rgba(157, 190, 239, 0.12);
  --eq-apply-primary-line: rgba(157, 190, 239, 0.28);
  --eq-apply-text: #edf3f8;
  --eq-apply-text-muted: #8aa4b8;
  --eq-apply-text-soft: #5a7080;
  --eq-apply-border: rgba(210, 230, 245, 0.11);
  --eq-apply-border-strong: rgba(210, 230, 245, 0.20);
  --eq-apply-danger: #e57373;
  --eq-apply-shadow: 0 1px 0 rgba(0, 0, 0, 0.24), 0 4px 16px -8px rgba(0, 0, 0, 0.55);
}

.eq-page-public-apply:not(.q-pa-root) *,
.eq-page-public-apply:not(.q-pa-root) *::before,
.eq-page-public-apply:not(.q-pa-root) *::after {
  box-sizing: border-box;
}

.eq-apply-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 56px;
  padding: 10px 2px 4px;
}

.eq-apply-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.eq-page-public-apply:not(.q-pa-root) .eq-apply-brand .eq-brand-name {
  display: inline-flex;
}

.eq-apply-step-count {
  min-width: 44px;
  height: 28px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--eq-apply-border);
  background: var(--eq-apply-surface);
  color: var(--eq-apply-text-soft);
  font-size: 12px;
  font-weight: 900;
}

.eq-apply-step-count [data-eq-apply-step-count] {
  color: var(--eq-apply-text);
}

.eq-apply-web-stage {
  display: block;
}

.eq-apply-web-side {
  display: none;
}

.eq-apply-web-main {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 14px;
}

.eq-page-public-apply:not(.q-pa-root) .eq-apply-hero {
  margin: 0;
  padding: 2px 0 0;
  border: 0;
  background: transparent;
}

.eq-page-public-apply:not(.q-pa-root) .eq-page-title {
  color: var(--eq-apply-text);
}

.eq-page-public-apply:not(.q-pa-root) .eq-page-subtitle {
  color: var(--eq-apply-text-muted);
}

.eq-page-public-apply:not(.q-pa-root) .eq-apply-stepbar {
  position: sticky;
  top: 0;
  z-index: 5;
  margin: 0 -16px;
  padding: 10px 16px;
  background: var(--eq-apply-bg);
  border-bottom: 1px solid var(--eq-apply-border);
}

.eq-page-public-apply:not(.q-pa-root) .stepper {
  display: flex;
  align-items: center;
  gap: 0;
  width: 100%;
}

.eq-page-public-apply:not(.q-pa-root) .step-node {
  display: flex;
  flex: 0 0 auto;
  min-width: 0;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.eq-page-public-apply:not(.q-pa-root) .step-circle {
  width: 32px;
  height: 32px;
  border: 1.5px solid var(--eq-apply-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--eq-apply-surface);
  color: var(--eq-apply-text-soft);
  font-size: 13px;
  font-weight: 700;
  transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.25s;
}

.eq-page-public-apply:not(.q-pa-root) .step-circle.is-done,
.eq-page-public-apply:not(.q-pa-root) .step-circle.is-current {
  border-color: var(--eq-apply-primary);
  background: var(--eq-apply-primary);
  color: #fff;
}

.eq-page-public-apply:not(.q-pa-root) .step-circle.is-current {
  box-shadow: 0 0 0 4px var(--eq-apply-primary-soft);
}

.eq-page-public-apply:not(.q-pa-root) .step-circle svg {
  width: 14px;
  height: 14px;
}

.eq-page-public-apply:not(.q-pa-root) .step-label {
  color: var(--eq-apply-text-soft);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0;
  white-space: nowrap;
}

.eq-page-public-apply:not(.q-pa-root) .step-label.is-active {
  color: var(--eq-apply-text);
  font-weight: 600;
}

.eq-page-public-apply:not(.q-pa-root) .step-conn {
  position: relative;
  flex: 1 1 auto;
  min-width: 16px;
  height: 1.5px;
  margin: -22px 6px 0;
  overflow: hidden;
  background: var(--eq-apply-border);
}

.eq-page-public-apply:not(.q-pa-root) .step-conn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--eq-apply-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.eq-page-public-apply:not(.q-pa-root) .step-conn.is-done::after {
  transform: scaleX(1);
}

.eq-apply-flow {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.eq-apply-flow[hidden] {
  display: none !important;
}

.eq-apply-section-head {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding-top: 4px;
}

.eq-apply-section-head h1 {
  margin: 0;
  font-size: 22px;
  line-height: 1.28;
  font-weight: 900;
  color: var(--eq-apply-text);
}

.eq-apply-section-head p {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: var(--eq-apply-text-muted);
}

.eq-page-public-apply:not(.q-pa-root) .eq-apply-card {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--eq-apply-border);
  border-radius: 14px;
  background: var(--eq-apply-surface);
  box-shadow: var(--eq-apply-shadow);
}

.eq-page-public-apply:not(.q-pa-root) [data-eq-apply-section="terms"] .eq-apply-card::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 4px;
  background: var(--eq-apply-primary);
}

.eq-page-public-apply:not(.q-pa-root) [data-eq-apply-section="terms"] .eq-apply-card--optional::before {
  background: var(--eq-apply-text-soft);
  opacity: 0.5;
}

.eq-page-public-apply:not(.q-pa-root) .eq-apply-card:has(.eq-apply-check input[type="checkbox"]:checked) {
  border-color: var(--eq-apply-primary);
}

.eq-page-public-apply:not(.q-pa-root) .eq-apply-card__header {
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px 12px 22px;
  border-bottom: 1px dashed var(--eq-apply-border);
}

.eq-page-public-apply:not(.q-pa-root) .eq-apply-card__header > div {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.eq-page-public-apply:not(.q-pa-root) .eq-apply-card__body {
  padding: 0;
}

.eq-page-public-apply:not(.q-pa-root) .eq-apply-card__header .eq-panel__title {
  margin: 0;
  color: var(--eq-apply-text);
  font-size: 14.5px;
  font-weight: 600;
  line-height: 1.35;
}

.eq-apply-card__badge {
  display: inline-flex;
  align-items: center;
  height: 20px;
  padding: 0 8px;
  border-radius: 999px;
  background: var(--eq-apply-primary-soft);
  color: var(--eq-apply-primary);
  font-size: 10.5px;
  font-weight: 600;
  white-space: nowrap;
}

.eq-apply-card__badge--optional {
  background: var(--eq-apply-muted);
  color: var(--eq-apply-text-muted);
}

.eq-apply-card__meta {
  margin-left: auto;
  color: var(--eq-apply-text-soft);
  font-size: 11.5px;
  white-space: nowrap;
}

.eq-page-public-apply:not(.q-pa-root) .eq-apply-scroll {
  max-height: 140px;
  margin: 0;
  padding: 12px 16px 14px 22px;
  border: 0;
  border-bottom: 1px solid var(--eq-apply-border);
  background: var(--eq-apply-bg);
  color: var(--eq-apply-text-muted);
  font-size: 12.5px;
  line-height: 1.65;
  scrollbar-color: var(--eq-apply-border-strong) transparent;
  scrollbar-width: thin;
}

.eq-page-public-apply:not(.q-pa-root) .eq-apply-scroll strong {
  color: var(--eq-apply-text);
  font-weight: 600;
}

.eq-page-public-apply:not(.q-pa-root) .eq-apply-scroll::-webkit-scrollbar {
  width: 6px;
}

.eq-page-public-apply:not(.q-pa-root) .eq-apply-scroll::-webkit-scrollbar-thumb {
  border-radius: 3px;
  background: var(--eq-apply-border-strong);
}

.eq-page-public-apply:not(.q-pa-root) .eq-apply-scroll p {
  margin: 0 0 8px;
}

.eq-page-public-apply:not(.q-pa-root) .eq-apply-scroll p:last-child {
  margin-bottom: 0;
}

.eq-apply-check {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  min-height: 50px;
  padding: 12px 16px 14px 22px;
  background: var(--eq-apply-surface);
  cursor: pointer;
  user-select: none;
}

.eq-apply-check--master {
  min-height: 54px;
  padding: 14px 18px;
  border: 1px solid var(--eq-apply-border);
  border-radius: 14px;
  box-shadow: var(--eq-apply-shadow);
}

.eq-apply-check input[type="checkbox"] {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.eq-apply-check__box {
  width: 22px;
  height: 22px;
  border-radius: 7px;
  flex-shrink: 0;
  margin-top: 1px;
  border: 1.5px solid var(--eq-apply-border-strong);
  background: var(--eq-apply-surface);
  transition: background 150ms ease, border-color 150ms ease, transform 150ms ease;
}

.eq-apply-check input[type="checkbox"]:focus-visible + .eq-apply-check__box {
  outline: 3px solid var(--eq-apply-primary-soft);
  outline-offset: 2px;
}

.eq-apply-check__box::after {
  content: "";
  display: block;
  width: 9px;
  height: 6px;
  margin: 5px auto 0;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
  opacity: 0;
}

.eq-apply-check:has(input[type="checkbox"]:checked) {
  background: var(--eq-apply-primary-soft);
}

.eq-apply-check:has(input[type="checkbox"]:checked) .eq-apply-check__box {
  background: var(--eq-apply-primary);
  border-color: var(--eq-apply-primary);
}

.eq-apply-check:has(input[type="checkbox"]:checked) .eq-apply-check__box::after {
  opacity: 1;
}

.eq-apply-check__label {
  color: var(--eq-apply-text);
  font-size: 13.5px;
  font-weight: 600;
  line-height: 1.45;
}

.eq-apply-check--master .eq-apply-check__label {
  font-size: 15px;
  font-weight: 600;
}

.eq-apply-field-grid {
  display: flex;
  flex-direction: column;
  gap: 13px;
  padding: 15px 16px 16px;
}

.eq-page-public-apply:not(.q-pa-root) .eq-apply-field {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 6px;
  margin: 0;
}

.eq-page-public-apply:not(.q-pa-root) .eq-form-rows > .eq-field--row.eq-apply-field {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 6px;
  padding: 0;
  border-bottom: 0;
}

.eq-page-public-apply:not(.q-pa-root) .eq-field__label {
  flex: 0 0 auto;
  margin: 0;
  color: var(--eq-apply-text-muted);
  font-size: 12.5px;
  font-weight: 600;
}

.eq-page-public-apply:not(.q-pa-root) .eq-form-rows > .eq-field--row.eq-apply-field > .eq-field__label {
  flex: 0 0 auto;
  width: auto;
}

.eq-page-public-apply:not(.q-pa-root) .eq-form-rows > .eq-field--row.eq-apply-field > .eq-apply-control,
.eq-page-public-apply:not(.q-pa-root) .eq-form-rows > .eq-field--row.eq-apply-field > [data-q-select-shell] {
  flex: 0 0 auto;
  width: 100%;
  min-width: 0;
}

.eq-page-public-apply:not(.q-pa-root) .eq-apply-control,
.eq-page-public-apply:not(.q-pa-root) .q-select__button.q-input,
.eq-page-public-apply:not(.q-pa-root) .q-select__button {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 1.5px solid var(--eq-apply-border);
  border-radius: 12px;
  background: var(--eq-apply-surface);
  color: var(--eq-apply-text);
  font: inherit;
  font-size: 14.5px;
}

.eq-page-public-apply:not(.q-pa-root) .eq-apply-control::placeholder {
  color: var(--eq-apply-text-soft);
}

.eq-page-public-apply:not(.q-pa-root) .eq-apply-control:hover:not(:focus),
.eq-page-public-apply:not(.q-pa-root) .q-select__button:hover {
  border-color: var(--eq-apply-border-strong);
}

.eq-page-public-apply:not(.q-pa-root) .eq-apply-control:focus,
.eq-page-public-apply:not(.q-pa-root) .q-select__button:focus {
  outline: none;
  border-color: var(--eq-apply-primary);
  box-shadow: 0 0 0 3px var(--eq-apply-primary-soft);
}

.eq-page-public-apply:not(.q-pa-root) .eq-apply-field--inline {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
}

.eq-page-public-apply:not(.q-pa-root) .eq-form-rows > .eq-field--row.eq-apply-field--inline {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
}

.eq-page-public-apply:not(.q-pa-root) .eq-apply-field--inline .eq-field__label {
  grid-column: 1 / -1;
}

.eq-apply-inline-button,
.eq-apply-add-button {
  height: 48px;
  min-height: 48px;
  border: 1.5px solid var(--eq-apply-border-strong);
  border-radius: 12px;
  background: var(--eq-apply-surface);
  color: var(--eq-apply-text);
  font-size: 14.5px;
  font-weight: 600;
}

.eq-page-public-apply:not(.q-pa-root) .eq-apply-field--date {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: end;
}

.eq-page-public-apply:not(.q-pa-root) .eq-form-rows > .eq-field--row.eq-apply-field--date {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: end;
}

.eq-page-public-apply:not(.q-pa-root) .eq-apply-field--date .eq-field__label {
  grid-column: 1 / -1;
}

.eq-apply-date-sep {
  align-self: center;
  color: var(--eq-apply-text-soft);
  font-weight: 800;
}

.eq-apply-selected-host {
  display: none;
  padding: 10px 12px;
  border: 1px solid var(--eq-apply-primary-line);
  border-radius: 12px;
  background: var(--eq-apply-primary-soft);
  color: var(--eq-apply-primary);
  font-size: 12px;
  font-weight: 800;
}

.eq-apply-selected-host.is-visible {
  display: block;
}

.eq-apply-visitors-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.eq-apply-visitors-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.eq-apply-visitors-head__eyebrow {
  display: inline-flex;
  align-items: center;
  color: var(--eq-apply-primary);
  font-size: 12px;
  font-weight: 900;
}

.eq-apply-visitors-head h3 {
  margin: 2px 0 0;
  color: var(--eq-apply-text);
  font-size: 17px;
  font-weight: 900;
}

.eq-apply-visitors-head h3 span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 23px;
  height: 23px;
  margin-left: 4px;
  padding: 0 7px;
  border-radius: 999px;
  background: var(--eq-apply-primary);
  color: #fff;
  font-size: 12px;
}

.eq-apply-visitor-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.eq-apply-visitor-card {
  overflow: hidden;
  border: 1px solid var(--eq-apply-border);
  border-radius: 14px;
  background: var(--eq-apply-surface);
  box-shadow: var(--eq-apply-shadow);
}

.eq-apply-visitor-card--self {
  border-color: var(--eq-apply-primary-line);
}

.eq-apply-visitor-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 12px 14px;
  border-bottom: 1px solid var(--eq-apply-border);
  background: var(--eq-apply-muted);
}

.eq-apply-visitor-card--self .eq-apply-visitor-card__header {
  background: var(--eq-apply-primary-soft);
}

.eq-apply-visitor-card__title {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.eq-apply-visitor-card__num {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 999px;
  background: var(--eq-apply-primary);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

.eq-apply-visitor-card__label {
  min-width: 0;
  color: var(--eq-apply-text);
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.eq-page-public-apply:not(.q-pa-root) .eq-visitor-self-tag {
  display: inline-flex;
  align-items: center;
  min-height: 20px;
  padding: 2px 7px;
  border-radius: 999px;
  background: var(--eq-apply-primary);
  color: #fff;
  font-size: 10px;
  font-weight: 900;
}

.eq-apply-visitor-card__remove {
  width: 44px;
  height: 44px;
  border: 1px solid var(--eq-apply-border);
  border-radius: 10px;
  background: var(--eq-apply-surface);
  color: var(--eq-apply-text-soft);
  font-size: 18px;
  line-height: 1;
}

.eq-apply-visitor-card__remove:disabled {
  opacity: 0.42;
  cursor: not-allowed;
}

.eq-apply-visitor-card__body {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 14px;
}

.eq-apply-note {
  margin: 0;
  padding: 12px 14px;
  border-radius: 12px;
  background: var(--eq-apply-primary-soft);
  color: var(--eq-apply-primary);
}

.eq-apply-actionbar {
  display: flex;
  gap: 8px;
  width: 100%;
  margin-top: 0;
  padding-top: 0;
}

.eq-page-public-apply:not(.q-pa-root) .eq-action-bar--end.eq-apply-actionbar {
  justify-content: stretch;
}

.eq-page-public-apply:not(.q-pa-root) .eq-action-bar--split.eq-apply-actionbar {
  justify-content: space-between;
}

.eq-page-public-apply:not(.q-pa-root) .eq-action-bar--split.eq-apply-actionbar > .eq-button:first-child {
  flex: 0 0 auto;
  min-width: 112px;
  min-height: 52px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  background: var(--eq-apply-surface);
  border: 1px solid var(--eq-apply-border);
  color: var(--eq-apply-text-muted);
  font-size: 14.5px;
  font-weight: 600;
}

.eq-page-public-apply:not(.q-pa-root) .eq-action-bar--end.eq-apply-actionbar .eq-apply-primary-action,
.eq-page-public-apply:not(.q-pa-root) .eq-action-bar--split.eq-apply-actionbar .eq-apply-primary-action {
  flex: 1 1 auto;
}

.eq-page-public-apply:not(.q-pa-root) .eq-apply-primary-action {
  min-height: 52px;
  border-radius: 12px;
  background: var(--eq-apply-primary);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
}

.eq-page-public-apply:not(.q-pa-root) .eq-apply-primary-action:disabled {
  opacity: 0.55;
}

.eq-apply-done-card {
  text-align: center;
}

.eq-apply-done-icon {
  width: 76px;
  height: 76px;
  margin: 4px auto 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--eq-apply-primary);
  color: #fff;
  font-size: 38px;
  font-weight: 900;
  box-shadow: 0 0 0 14px var(--eq-apply-primary-soft);
}

.eq-apply-ref-list {
  margin: 16px 0;
  padding: 14px;
  border: 1px dashed var(--eq-apply-primary-line);
  border-radius: 14px;
  background: var(--eq-apply-primary-soft);
  color: var(--eq-apply-primary);
  text-align: left;
}

.eq-apply-ref-list .eq-help {
  margin: 0;
  color: var(--eq-apply-primary);
  font-weight: 900;
}

.eq-page-public-apply:not(.q-pa-root) .q-select {
  position: relative;
  display: block;
  width: 100%;
  min-width: 0;
  min-height: 48px;
}

.eq-page-public-apply:not(.q-pa-root) .q-select__native {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 1px;
  max-width: 1px;
  max-height: 1px;
  min-height: 0;
  margin: 0;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  border: 0;
  opacity: 0;
  pointer-events: none;
  white-space: nowrap;
}

.eq-page-public-apply:not(.q-pa-root) .q-select__button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 48px;
  min-height: 48px;
  cursor: pointer;
}

.eq-page-public-apply:not(.q-pa-root) .q-select__button-text {
  min-width: 0;
  flex: 1 1 auto;
  overflow: hidden;
  color: var(--eq-apply-text);
  text-align: left;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.eq-page-public-apply:not(.q-pa-root) .q-select__button::after {
  content: "";
  width: 8px;
  height: 8px;
  margin-left: 10px;
  flex: 0 0 auto;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  opacity: 0.65;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 150ms ease;
}

.eq-page-public-apply:not(.q-pa-root) .q-select.is-open .q-select__button::after {
  transform: rotate(225deg) translateY(-2px);
}

.eq-page-public-apply:not(.q-pa-root) .q-select__list {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  z-index: 50;
  max-height: 260px;
  overflow-y: auto;
  padding: 6px;
  border: 1px solid var(--eq-apply-border);
  border-radius: 12px;
  background: var(--eq-apply-surface);
  box-shadow: var(--eq-apply-shadow);
}

.eq-page-public-apply:not(.q-pa-root) .q-select__list[hidden] {
  display: none;
}

.eq-page-public-apply:not(.q-pa-root) .q-select__option {
  display: block;
  width: 100%;
  padding: 11px 12px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--eq-apply-text);
  font: inherit;
  text-align: left;
}

.eq-page-public-apply:not(.q-pa-root) .q-select__option:hover,
.eq-page-public-apply:not(.q-pa-root) .q-select__option.is-active,
.eq-page-public-apply:not(.q-pa-root) .q-select__option[aria-selected="true"] {
  background: var(--eq-apply-primary-soft);
  color: var(--eq-apply-primary);
}

.eq-page-public-apply:not(.q-pa-root) .eq-apply-safety__body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 14px 16px 16px 22px;
}

.eq-page-public-apply:not(.q-pa-root) .eq-apply-safety__label {
  display: block;
  margin: 0;
}

.eq-page-public-apply:not(.q-pa-root) .eq-apply-safety__stage {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--eq-apply-border);
  border-radius: 14px;
  overflow: hidden;
  background: #0a0a0a;
}

.eq-page-public-apply:not(.q-pa-root) .eq-apply-safety__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0;
  border: 0;
  background: linear-gradient(135deg, #1f2e2a 0%, #0f1714 100%);
  color: #fff;
  cursor: pointer;
}

.eq-page-public-apply:not(.q-pa-root) .eq-apply-safety__play-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(6px);
}

.eq-page-public-apply:not(.q-pa-root) .eq-apply-safety__title {
  font-size: 15px;
  font-weight: 700;
}

.eq-page-public-apply:not(.q-pa-root) .eq-apply-safety__duration {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.72);
}

.eq-page-public-apply:not(.q-pa-root) .eq-apply-safety__iframe {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.eq-page-public-apply:not(.q-pa-root) .eq-apply-safety__iframe[hidden] {
  display: none;
}

.eq-page-public-apply:not(.q-pa-root) .eq-apply-safety__complete {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #1f4f3e 0%, #0e2a22 100%);
  color: #fff;
}

.eq-page-public-apply:not(.q-pa-root) .eq-apply-safety__complete[hidden] {
  display: none;
}

.eq-page-public-apply:not(.q-pa-root) .eq-apply-safety__check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #2b7a65;
  color: #fff;
}

.eq-page-public-apply:not(.q-pa-root) .eq-apply-safety__complete-text {
  font-size: 15px;
  font-weight: 700;
}

.eq-page-public-apply:not(.q-pa-root) .eq-apply-safety__progress {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  height: 3px;
  background: rgba(255, 255, 255, 0.18);
  pointer-events: none;
}

.eq-page-public-apply:not(.q-pa-root) .eq-apply-safety__progress > i {
  display: block;
  width: 0%;
  height: 100%;
  background: var(--eq-apply-primary);
  transition: width 1s linear;
}

.eq-page-public-apply:not(.q-pa-root) .eq-apply-safety__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-size: 12px;
  color: var(--eq-apply-text-muted);
}

.eq-page-public-apply:not(.q-pa-root) .eq-apply-safety__lock {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 4px;
  color: var(--eq-apply-text-soft);
}

.eq-page-public-apply:not(.q-pa-root) .eq-apply-safety__ok {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 4px;
  color: var(--eq-apply-primary);
  font-weight: 700;
}

.eq-page-public-apply:not(.q-pa-root) .eq-apply-safety__lock[hidden],
.eq-page-public-apply:not(.q-pa-root) .eq-apply-safety__ok[hidden] {
  display: none;
}

.eq-page-public-apply:not(.q-pa-root) .eq-apply-safety__error {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 2px;
  color: var(--eq-apply-danger);
  font-size: 12px;
}

.eq-page-public-apply:not(.q-pa-root) .eq-apply-safety__error[hidden] {
  display: none;
}

@media (max-width: 567px) {
  .eq-page-public-apply:not(.q-pa-root) .eq-apply-safety__meta {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (min-width: 768px) {
  body[data-route="apply"] {
    --eq-apply-canvas: #ebeef3;
    background: var(--eq-apply-canvas);
  }

  [data-theme="dark"] body[data-route="apply"] {
    --eq-apply-canvas: #080d14;
  }

  body[data-route="apply"] .eq-standalone-shell,
  body[data-route="apply"] .eq-standalone-main {
    background: var(--eq-apply-canvas);
  }

  .eq-page-public-apply:not(.q-pa-root) {
    width: min(calc(100% - 32px), 1180px);
    max-width: 1180px;
    min-height: 0;
    margin: 32px auto 48px;
    padding: 0;
    gap: 0;
    border: 1px solid var(--eq-apply-border);
    border-radius: 24px;
    background: var(--eq-apply-bg);
    box-shadow: var(--eq-apply-shadow);
    overflow: hidden;
  }

  .eq-page-public-apply:not(.q-pa-root) .eq-apply-topbar {
    height: 64px;
    min-height: 64px;
    padding: 0 28px;
    background: var(--eq-apply-surface);
    border-bottom: 1px solid var(--eq-apply-border);
  }

  .eq-page-public-apply:not(.q-pa-root) .eq-apply-stepbar {
    display: none;
  }

  .eq-page-public-apply:not(.q-pa-root) .eq-apply-web-stage {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 32px;
    padding: 36px 36px 48px;
    align-items: start;
  }

  .eq-page-public-apply:not(.q-pa-root) .eq-apply-web-side {
    position: sticky;
    top: 76px;
    display: block;
    align-self: start;
  }

  .eq-page-public-apply:not(.q-pa-root) .eq-apply-web-main {
    min-height: 560px;
    padding: 32px 36px;
    border: 1px solid var(--eq-apply-border);
    border-radius: 14px;
    background: var(--eq-apply-surface);
  }

  .eq-page-public-apply:not(.q-pa-root) .web-stepper-v {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 22px;
    border: 1px solid var(--eq-apply-border);
    border-radius: 14px;
    background: var(--eq-apply-surface);
  }

  .eq-page-public-apply:not(.q-pa-root) .v-step {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 12px 0;
  }

  .eq-page-public-apply:not(.q-pa-root) .v-step + .v-step::before {
    content: "";
    position: absolute;
    top: -28px;
    left: 15.5px;
    width: 1.5px;
    height: 28px;
    background: var(--eq-apply-border);
  }

  .eq-page-public-apply:not(.q-pa-root) .v-step.is-done + .v-step::before,
  .eq-page-public-apply:not(.q-pa-root) .v-step.is-current::before {
    background: var(--eq-apply-primary);
  }

  .eq-page-public-apply:not(.q-pa-root) .v-num {
    width: 32px;
    height: 32px;
    border: 1.5px solid var(--eq-apply-border);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    background: var(--eq-apply-surface);
    color: var(--eq-apply-text-soft);
    font-size: 13px;
    font-weight: 700;
  }

  .eq-page-public-apply:not(.q-pa-root) .v-step.is-done .v-num,
  .eq-page-public-apply:not(.q-pa-root) .v-step.is-current .v-num {
    border-color: var(--eq-apply-primary);
    background: var(--eq-apply-primary);
    color: #fff;
  }

  .eq-page-public-apply:not(.q-pa-root) .v-step.is-current .v-num {
    box-shadow: 0 0 0 4px var(--eq-apply-primary-soft);
  }

  .eq-page-public-apply:not(.q-pa-root) .v-num svg {
    width: 14px;
    height: 14px;
  }

  .eq-page-public-apply:not(.q-pa-root) .v-text {
    padding-top: 5px;
  }

  .eq-page-public-apply:not(.q-pa-root) .v-text .label {
    color: var(--eq-apply-text-soft);
    font-size: 13.5px;
    font-weight: 600;
  }

  .eq-page-public-apply:not(.q-pa-root) .v-step.is-done .v-text .label,
  .eq-page-public-apply:not(.q-pa-root) .v-step.is-current .v-text .label {
    color: var(--eq-apply-text);
  }

  .eq-page-public-apply:not(.q-pa-root) .v-text .hint {
    margin-top: 2px;
    color: var(--eq-apply-text-soft);
    font-size: 11.5px;
  }
}

@media (max-width: 767.98px) {
  .eq-page-public-apply:not(.q-pa-root) .eq-apply-web-stage {
    display: block;
  }

  .eq-page-public-apply:not(.q-pa-root) .eq-apply-web-side {
    display: none;
  }
}

@media (max-width: 560px) {
  .eq-page-public-apply:not(.q-pa-root) {
    max-width: none;
    padding-right: 14px;
    padding-left: 14px;
  }

  .eq-page-public-apply:not(.q-pa-root) .eq-apply-field--date,
  .eq-page-public-apply:not(.q-pa-root) .eq-form-rows > .eq-field--row.eq-apply-field--date,
  .eq-apply-visitor-card__body {
    grid-template-columns: 1fr;
  }

  .eq-apply-date-sep {
    display: none;
  }

  .eq-apply-visitors-head {
    align-items: flex-end;
  }

  .eq-apply-add-button {
    min-width: 116px;
  }
}
