body.halees-onboarding-open {
  overflow: hidden;
}
.halees-onboarding-root[hidden] {
  display: none;
}
.halees-onboarding-root {
  position: fixed;
  inset: 0;
  z-index: 10050;
  font-family: var(--sans);
  color: #1a1a1a;
}
.halees-onboarding-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.58);
  backdrop-filter: blur(14px);
}
.halees-onboarding-modal {
  position: relative;
  z-index: 1;
  width: min(900px, calc(100vw - 24px));
  max-height: 90vh;
  margin: 5vh auto;
  background: #fcfaee;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.45);
}
.halees-dev-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 16px;
  background: #1a1a1a;
  color: #fff;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  flex-wrap: wrap;
}
.halees-dev-toolbar-title {
  color: #c4a962;
  font-weight: 600;
}
.halees-dev-toolbar-controls {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.halees-dev-step,
.halees-dev-toolbar-button,
.halees-dev-toggle-link,
.halees-footer-link,
.halees-footer-primary,
.halees-footer-accent,
.halees-pill,
.halees-availability-cell,
.halees-connector-action,
.halees-enter-button,
.halees-close-button,
.halees-path-card,
.halees-avatar-upload,
.halees-upload-dropzone,
.halees-local-button {
  font: inherit;
}
.halees-dev-step,
.halees-dev-toolbar-button {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-radius: 8px;
  padding: 6px 9px;
  cursor: pointer;
}
.halees-dev-step.is-active {
  background: #c4a962;
  color: #111;
  border-color: #c4a962;
  font-weight: 700;
}
.halees-dev-toolbar-button.is-accent {
  background: rgba(16, 185, 129, 0.18);
  color: #98f3c4;
  border-color: rgba(16, 185, 129, 0.32);
}
.halees-dev-separator {
  width: 1px;
  height: 18px;
  background: rgba(255, 255, 255, 0.16);
}
.halees-modal-header {
  position: relative;
  padding: 24px 28px 18px;
  background: #fcfaee;
}
.halees-modal-header h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 500;
}
.halees-modal-header p {
  margin: 6px 0 0;
  color: #7b7b7b;
  font-size: 0.95rem;
}
.halees-close-button {
  position: absolute;
  top: 18px;
  right: 20px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #8c8c8c;
  font-size: 1.4rem;
  cursor: pointer;
}
.halees-close-button:hover {
  background: rgba(0, 0, 0, 0.05);
  color: #1a1a1a;
}
.halees-progress-track {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  background: #eae5d9;
}
.halees-progress-fill {
  height: 100%;
  background: #c4a962;
  transition: width 0.35s ease;
}
.halees-modal-body {
  position: relative;
  flex: 1;
  overflow: auto;
  padding: 30px 28px 28px;
}
.halees-modal-body::-webkit-scrollbar {
  width: 6px;
}
.halees-modal-body::-webkit-scrollbar-thumb {
  background: #eae5d9;
  border-radius: 999px;
}
.halees-error-banner {
  margin-bottom: 18px;
  padding: 12px 14px;
  border: 1px solid rgba(200, 40, 40, 0.12);
  border-radius: 14px;
  background: #fff2f2;
  color: #a22;
}
.halees-loading-shell {
  min-height: 360px;
  display: grid;
  place-items: center;
  text-align: center;
  gap: 10px;
}
.halees-loading-shell h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.6rem;
}
.halees-loading-shell p {
  margin: 0;
  color: #6b6b6b;
}
.halees-spinner {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 3px solid rgba(196, 169, 98, 0.22);
  border-top-color: #c4a962;
  animation: haleesSpin 0.9s linear infinite;
}
@keyframes haleesSpin {
  to {
    transform: rotate(360deg);
  }
}
.halees-step {
  display: grid;
  gap: 24px;
}
.halees-text-center {
  text-align: center;
}
.halees-step-intro h3,
.halees-section-head h3 {
  margin: 0 0 8px;
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 500;
  color: #1a1a1a;
}
.halees-step-intro p,
.halees-section-head p,
.halees-helper-copy {
  margin: 0;
  color: #8c8c8c;
  font-size: 0.95rem;
  line-height: 1.65;
}
.halees-path-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.halees-path-card {
  position: relative;
  display: grid;
  gap: 18px;
  padding: 24px;
  border: 2px solid #eae5d9;
  border-radius: 20px;
  background: #fff;
  color: #1a1a1a;
  text-align: left;
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}
.halees-path-card:hover,
.halees-path-card.is-selected {
  border-color: #c4a962;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  transform: translateY(-1px);
}
.halees-path-art {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  background: #f0efe9;
  color: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  letter-spacing: 0.06em;
}
.halees-path-card.is-selected .halees-path-art {
  background: #c4a962;
  color: #fff;
}
.halees-path-copy strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 500;
  margin-bottom: 8px;
  color: #1a1a1a;
}
.halees-path-copy span {
  display: block;
  color: #6b6b6b;
  line-height: 1.6;
}
.halees-dev-toggle-row {
  margin-top: 8px;
}
.halees-dev-toggle-link {
  border: 0;
  background: transparent;
  color: #8c8c8c;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  opacity: 0.7;
}
.halees-dev-toggle-link:hover {
  color: #c4a962;
  opacity: 1;
}
.halees-avatar-block {
  display: grid;
  justify-items: center;
  gap: 12px;
}
.halees-avatar-upload {
  position: relative;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.halees-avatar-shell {
  width: 96px;
  height: 96px;
  border-radius: 999px;
  border: 2px dashed rgba(196, 169, 98, 0.45);
  background: #fff;
  display: grid;
  place-items: center;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
.halees-avatar-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.halees-avatar-glyph {
  color: #c4a962;
  font-size: 2rem;
}
.halees-avatar-upload-badge {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: #1a1a1a;
  color: #fff;
  display: grid;
  place-items: center;
  border: 2px solid #fcfaee;
  font-size: 14px;
}
.halees-avatar-label {
  margin: 0;
  color: #8c8c8c;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.halees-grid {
  display: grid;
  gap: 20px;
}
.halees-grid.two-up {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.halees-input-group {
  display: grid;
  gap: 8px;
}
.halees-input-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #4f4a3f;
}
.halees-input-label b {
  color: #c4a962;
}
.halees-input,
.halees-textarea {
  width: 100%;
  padding: 14px 15px;
  border: 1px solid #eae5d9;
  border-radius: 12px;
  background: #fff;
  color: #1a1a1a;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.03);
  outline: none;
}
.halees-input:focus,
.halees-textarea:focus {
  border-color: #c4a962;
  box-shadow: 0 0 0 3px rgba(196, 169, 98, 0.12);
}
.halees-select {
  appearance: none;
  background-image: url(\"data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%238c8c8c'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E\");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 18px;
}
.halees-input-hint {
  color: #8c8c8c;
  font-size: 11px;
}
.halees-textarea {
  min-height: 110px;
  resize: vertical;
}
.halees-insight-card {
  display: flex;
  gap: 12px;
  padding: 15px;
  border: 1px solid #eae5d9;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.04);
}
.halees-insight-icon {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: #f0efe9;
  color: #c4a962;
  display: grid;
  place-items: center;
  font-size: 15px;
  flex: none;
}
.halees-insight-title {
  margin: 0 0 5px;
  font-weight: 600;
}
.halees-insight-copy {
  margin: 0;
  color: #6b6b6b;
  font-size: 0.87rem;
  line-height: 1.6;
}
.halees-stack {
  display: grid;
  gap: 12px;
}
.halees-mini-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #4f4a3f;
}
.halees-mini-label-row {
  display: flex;
  align-items: center;
  gap: 8px;
}
.halees-pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.halees-pill {
  border: 1px solid #eae5d9;
  background: #fff;
  color: #666;
  border-radius: 999px;
  padding: 8px 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    color 0.2s ease;
}
.halees-pill.is-selected {
  background: #1a1a1a;
  border-color: #1a1a1a;
  color: #fff;
}
.halees-pill-check {
  color: #c4a962;
}
.halees-availability-card {
  padding: 18px;
  border: 1px solid #eae5d9;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.04);
}
.halees-availability-grid {
  display: grid;
  grid-template-columns: 62px repeat(4, minmax(0, 1fr));
  gap: 10px;
}
.halees-availability-head,
.halees-availability-day {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8c8c8c;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.halees-availability-cell {
  height: 42px;
  border: 1px solid #eae5d9;
  border-radius: 10px;
  background: rgba(240, 239, 233, 0.55);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition:
    background 0.2s ease,
    border-color 0.2s ease;
}
.halees-availability-cell.is-selected {
  background: #c4a962;
  border-color: #c4a962;
  color: #fff;
  box-shadow: inset 0 0 8px rgba(0, 0, 0, 0.1);
}
.halees-upload-dropzone {
  display: grid;
  justify-items: center;
  gap: 8px;
  padding: 26px;
  border: 2px dashed #eae5d9;
  border-radius: 18px;
  background: #fff;
  cursor: pointer;
  text-align: center;
}
.halees-upload-dropzone strong {
  font-size: 0.95rem;
}
.halees-upload-dropzone small {
  color: #8c8c8c;
  line-height: 1.5;
}
.halees-upload-glyph {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: #f0efe9;
  color: #c4a962;
  display: grid;
  place-items: center;
  font-size: 18px;
}
.halees-connector-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.halees-connector-card {
  padding: 18px;
  border: 1px solid #eae5d9;
  border-radius: 18px;
  background: #fff;
  color: #1a1a1a;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}
.halees-connector-card.is-connected {
  border-color: #c4a962;
  background: rgba(196, 169, 98, 0.05);
}
.halees-connector-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}
.halees-connector-icon {
  min-width: 42px;
  height: 42px;
  padding: 0 10px;
  border-radius: 12px;
  background: #f0efe9;
  color: #1a1a1a;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 12px;
}
.halees-connector-icon.is-connected {
  background: #c4a962;
  color: #fff;
}
.halees-connector-action {
  border: 0;
  border-radius: 999px;
  background: #1a1a1a;
  color: #fff;
  padding: 7px 12px;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
}
.halees-connector-action.is-connected {
  background: transparent;
  color: #666;
  padding: 0;
}
.halees-connector-card h4 {
  margin: 0 0 6px;
  font-size: 0.95rem;
  color: #1a1a1a;
}
.halees-connector-card p {
  margin: 0;
  color: #6b6b6b;
  font-size: 0.82rem;
  line-height: 1.55;
}
.halees-local-access {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px;
  border: 2px dashed #eae5d9;
  border-radius: 18px;
  background: #fff;
}
.halees-local-access-copy {
  display: flex;
  align-items: center;
  gap: 14px;
}
.halees-local-access-copy strong {
  display: block;
  margin-bottom: 4px;
}
.halees-local-access-copy span {
  display: block;
  color: #8c8c8c;
  font-size: 0.82rem;
  line-height: 1.5;
}
.halees-local-icon {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: #eae5d9;
  display: grid;
  place-items: center;
  color: #666;
}
.halees-local-button {
  border: 0;
  border-radius: 10px;
  background: #f0efe9;
  color: #1a1a1a;
  padding: 10px 14px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}
.halees-activation-step {
  gap: 24px;
}
.halees-activation-card {
  padding: 24px;
  border: 1px solid #333;
  border-radius: 22px;
  background: #1a1a1a;
  color: #fff;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.32);
}
.halees-activation-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
}
.halees-activation-avatar {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: #c4a962;
  color: #fff;
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-size: 1.2rem;
}
.halees-activation-card h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 500;
}
.halees-activation-subline {
  margin: 6px 0 0;
  color: #c4a962;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.halees-dev-badge {
  background: rgba(220, 38, 38, 0.18);
  color: #fca5a5;
  border: 1px solid rgba(220, 38, 38, 0.32);
  padding: 2px 6px;
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 10px;
}
.halees-identity-id-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.34);
}
.halees-identity-id-card p {
  margin: 0 0 6px;
  color: #7b7b7b;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.halees-identity-id-card strong {
  font-family: var(--mono);
  font-size: 1.05rem;
  letter-spacing: 0.04em;
}
.halees-identity-check {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: #10b981;
  color: #fff;
  display: grid;
  place-items: center;
  flex: none;
}
.halees-capability-list {
  display: grid;
  gap: 10px;
}
.halees-capability-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid #eae5d9;
  border-radius: 14px;
  background: #fff;
}
.halees-capability-item-accent {
  background: rgba(196, 169, 98, 0.06);
  border-color: rgba(196, 169, 98, 0.3);
}
.halees-capability-item p {
  margin: 0;
  color: #555;
  font-weight: 500;
}
.halees-capability-check {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: #eae5d9;
  color: #1a1a1a;
  display: grid;
  place-items: center;
  flex: none;
}
.halees-activation-actions {
  display: flex;
  justify-content: flex-end;
  padding-top: 4px;
}
.halees-enter-button {
  border: 0;
  border-radius: 14px;
  background: #1a1a1a;
  color: #fff;
  padding: 14px 22px;
  font-size: 0.95rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.12);
}
.halees-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 28px;
  border-top: 1px solid #eae5d9;
  background: #fff;
}
.halees-footer-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.halees-footer-link {
  border: 0;
  background: transparent;
  color: #666;
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
}
.halees-footer-link-plain {
  color: #666;
}
.halees-footer-primary,
.halees-footer-accent {
  border: 0;
  border-radius: 12px;
  padding: 12px 18px;
  cursor: pointer;
  font-size: 0.92rem;
  font-weight: 600;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}
.halees-footer-primary {
  background: #1a1a1a;
  color: #fff;
}
.halees-footer-primary[disabled] {
  opacity: 0.45;
  cursor: not-allowed;
  box-shadow: none;
}
.halees-footer-accent {
  background: #c4a962;
  color: #fff;
}
@media (max-width: 820px) {
  .halees-onboarding-modal {
    width: min(100vw - 16px, 900px);
    max-height: 94vh;
    margin: 3vh auto;
    border-radius: 20px;
  }
  .halees-modal-header,
  .halees-modal-body,
  .halees-footer {
    padding-left: 18px;
    padding-right: 18px;
  }
  .halees-path-grid,
  .halees-grid.two-up,
  .halees-connector-grid {
    grid-template-columns: 1fr;
  }
  .halees-availability-card {
    overflow: auto;
  }
  .halees-availability-grid {
    min-width: 560px;
  }
  .halees-local-access,
  .halees-footer {
    flex-direction: column;
    align-items: stretch;
  }
  .halees-footer-actions {
    flex-direction: column;
  }
  .halees-footer-primary,
  .halees-footer-accent,
  .halees-local-button,
  .halees-enter-button {
    width: 100%;
    justify-content: center;
  }
  .halees-dev-toolbar {
    align-items: flex-start;
  }
  .halees-dev-toolbar-controls {
    width: 100%;
  }
  .halees-step-intro h3,
  .halees-section-head h3 {
    font-size: 1.7rem;
  }
}

.halees-success-banner {
  margin-bottom: 18px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(29, 102, 72, 0.18);
  background: rgba(236, 246, 241, 0.94);
  color: #1d6648;
  font-size: 13px;
  line-height: 1.5;
}

.halees-manage-shell {
  display: grid;
  gap: 18px;
}

.halees-manage-section {
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 24px;
  padding: 20px;
  background: rgba(255, 252, 246, 0.85);
}

.halees-auth-required-card {
  margin: 10px 0 20px;
}

.halees-auth-provider-button {
  min-width: 220px;
}

.halees-activation-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
