@keyframes orbFloat {
  0% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(20px, -15px) scale(1.06);
  }
  100% {
    transform: translate(-10px, 10px) scale(0.95);
  }
}
/*# sourceMappingURL=TechCanvas.css.map */
.Header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--header-bg);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border-bottom: 1px solid var(--border);
  transition: all 0.5s ease;
}
.Header-inner {
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 40px;
  height: 75px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.Header-left {
  display: flex;
  align-items: center;
  gap: 14px;
}
.Header-logo {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: 36px;
  line-height: 1;
  text-decoration: none;
  color: var(--text);
  transition: color 0.5s ease;
}
.Header-logo em {
  font-style: normal;
  color: var(--text);
  transition: color 0.5s ease;
}
.Header-right {
  display: flex;
  align-items: center;
  gap: 24px;
}
.Header-nav-item {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 16px;
  color: var(--text);
  cursor: pointer;
  transition: color 0.2s;
  opacity: 0.8;
  text-decoration: none;
}
.Header-nav-item:hover {
  opacity: 1;
}
.Header-theme-toggle {
  width: 52px;
  height: 28px;
  border-radius: 14px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  padding: 0 3px;
  background: var(--toggle-bg);
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.15);
  transition: all 0.3s;
}
.Header-toggle-knob {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--toggle-knob);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--toggle-knob-text);
  box-shadow: var(--toggle-shadow);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s;
}
.Header-toggle-knob svg {
  width: 13px;
  height: 13px;
}
.Header-toggle-knob.light {
  transform: translateX(24px);
}
.Header-user-name {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 16px;
  color: var(--text);
  text-decoration: none;
  transition: color 0.5s ease;
}
.Header-user-name:hover {
  color: var(--accent);
}
.Header-avatar-wrap {
  position: relative;
}
.Header-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--surface2);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  cursor: pointer;
  transition: all 0.5s ease;
}
.Header-avatar:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.Header-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 140px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.32);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  z-index: 100;
}
.Header-dropdown-item {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 15px;
  color: var(--text);
  text-decoration: none;
  background: none;
  border: none;
  padding: 10px 16px;
  text-align: left;
  cursor: pointer;
  transition: background 0.5s ease, color 0.5s ease;
}
.Header-dropdown-item:hover {
  background: var(--surface2);
  color: var(--accent);
}
/*# sourceMappingURL=Header.css.map */
.Steps {
  display: flex;
  align-items: center;
  gap: 0;
}
.step {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-dim);
}
.step.active {
  color: var(--text);
}
.step.done {
  color: var(--accent);
}
.dot {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  border: 1.5px solid var(--border);
  background: var(--surface);
  color: var(--text-dim);
}
.step.active .dot {
  border-color: var(--accent);
  background: var(--accent-bg);
  color: var(--accent);
  box-shadow: 0 0 16px var(--accent-glow);
}
.step.done .dot {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--bg);
}
.conn {
  width: 48px;
  height: 1.4px;
  background: var(--border);
  margin: 0 8px;
}
.conn.done {
  background: var(--accent);
}
/*# sourceMappingURL=Steps.css.map */
.info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
}
.info-group {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-family: 'DM Sans', system-ui, sans-serif;
  color: var(--text-dim);
}
.info-group.accent {
  color: var(--accent);
  opacity: 0.65;
}
/*# sourceMappingURL=UploadView.css.map */
.Dropzone {
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 34px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  background: var(--surface);
  position: relative;
  overflow: hidden;
}
.Dropzone:hover {
  border-color: var(--accent);
  box-shadow: var(--dz-hover-shadow);
}
.Dropzone:hover .dz-icon {
  color: var(--accent);
  transform: translateY(-4px);
}
.Dropzone.drag-over {
  border-color: var(--accent);
  box-shadow: 0 0 60px var(--accent-dim);
}
.dz-icon {
  color: var(--text);
  margin-bottom: 11px;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 0.6;
}
.dz-text {
  font-family: 'Instrument Sans', 'DM Sans', system-ui, sans-serif;
  font-size: 15px;
  color: var(--text);
  margin-bottom: 11px;
  position: relative;
  z-index: 1;
  opacity: 0.85;
}
.dz-text strong {
  color: var(--accent);
  font-weight: 500;
  opacity: 1;
}
.dz-hint {
  font-family: 'Instrument Sans', 'DM Sans', system-ui, sans-serif;
  font-size: 13px;
  color: var(--text-dim);
  margin-bottom: 11px;
  position: relative;
  z-index: 1;
}
.format-badge {
  display: inline-flex;
  padding: 6px 16px;
  border-radius: 8px;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 16px;
  font-weight: 500;
  background: var(--surface3);
  color: var(--text-mut);
  border: 1px solid var(--border);
  transition: all 0.5s ease;
}
/*# sourceMappingURL=Dropzone.css.map */
.ToggleCard {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  border-radius: 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  margin-bottom: 20px;
  transition: all 0.5s ease;
}
.ToggleCard:hover {
  border-color: var(--border-hover);
}
.ToggleCard-label {
  font-family: 'Instrument Sans', 'DM Sans', system-ui, sans-serif;
  font-size: 16px;
  color: var(--text-sec);
}
.ToggleCard-switch {
  width: 36px;
  height: 22px;
  border-radius: 11px;
  cursor: pointer;
  position: relative;
  transition: background 0.3s;
  border: none;
  padding: 0;
  flex-shrink: 0;
}
.ToggleCard-switch.on {
  background: var(--accent);
  border: 1px solid var(--accent);
}
.ToggleCard-switch.off {
  background: var(--surface3);
  border: 1px solid var(--border);
}
.ToggleCard-knob {
  width: 19px;
  height: 19px;
  border-radius: 50%;
  position: absolute;
  top: 0.5px;
  transition: left 0.35s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s;
}
.ToggleCard-switch.on .ToggleCard-knob {
  left: 15px;
  background: #1a2128;
}
.ToggleCard-switch.off .ToggleCard-knob {
  left: 1.5px;
  background: var(--text-dim);
}
/*# sourceMappingURL=ToggleCard.css.map */
.GlassCard {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}
.GlassCard::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: var(--glass-top);
}
.GlassCard-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  border-bottom: 1px solid var(--border);
}
.GlassCard-left {
  display: flex;
  align-items: center;
  gap: 14px;
}
.GlassCard-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--accent-bg);
  border: 1px solid var(--accent-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}
.GlassCard-name {
  font-size: 14px;
  font-weight: 600;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
}
.GlassCard-meta {
  font-size: 12px;
  color: var(--text-mut);
  margin-top: 2px;
}
.GlassCard-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  padding: 5px 12px;
  border-radius: 100px;
  background: var(--accent-dim);
  color: var(--accent);
  border: 1px solid var(--accent-mid);
}
.GlassCard-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.GlassCard-cell {
  padding: 14px 18px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  border-right: 1px solid var(--border);
}
.GlassCard-cell:last-child {
  border-right: none;
}
.GlassCard-label {
  font-size: 10px;
  font-weight: 600;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 1.2px;
}
.GlassCard-value {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 14px;
  font-weight: 500;
}
/*# sourceMappingURL=GlassCard.css.map */
.meta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--border);
  border-left: none;
  border-right: none;
  border-bottom: none;
  background: var(--surface);
  border-radius: 14px;
  overflow: hidden;
}
.meta-cell {
  padding: 16px 18px;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.meta-cell:last-child {
  border-right: none;
}
.meta-label {
  font-size: 10px;
  font-weight: 600;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 6px;
}
.meta-value {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 15px;
  font-weight: 500;
}
.meta-value.accent {
  color: var(--accent);
}
.audit-list {
  margin-top: 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px 18px;
}
.audit-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-sec);
}
.audit-item:last-child {
  border-bottom: none;
}
.audit-left {
  display: flex;
  gap: 12px;
  align-items: center;
}
.audit-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}
.audit-count {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 12px;
  color: var(--text-dim);
}
/*# sourceMappingURL=MetaAudit.css.map */
.btn-primary {
  background: linear-gradient(135deg, #6ee7b7, #34d399);
  color: #06060a;
  font-weight: 600;
  font-size: 16px;
  border: none;
  padding: 14px 36px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-family: var(--sans);
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-primary:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(110, 231, 183, 0.25);
}
.btn-primary:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}
.btn-secondary {
  background: transparent;
  color: var(--text-sec);
  font-weight: 500;
  font-size: 15px;
  border: 1px solid var(--border);
  padding: 13px 28px;
  border-radius: 12px;
  cursor: pointer;
  font-family: var(--sans);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.btn-secondary:hover:not(:disabled) {
  border-color: var(--border-hover);
  color: var(--text);
  background: var(--surface2);
}
/*# sourceMappingURL=Buttons.css.map */
@keyframes ProcessingSpinner-pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.7);
    opacity: 0;
  }
}
@keyframes ProcessingSpinner-spin {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
.ProcessingSpinner {
  position: relative;
  width: 88px;
  height: 88px;
  margin: 0 auto 20px;
}
.ProcessingSpinner-ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid var(--accent-mid);
  animation: ProcessingSpinner-pulse 2s ease-out infinite;
}
.ProcessingSpinner-ring:nth-child(1) {
  inset: 0;
}
.ProcessingSpinner-ring:nth-child(2) {
  inset: 11px;
  animation-delay: 0.4s;
}
.ProcessingSpinner-ring:nth-child(3) {
  inset: 22px;
  animation-delay: 0.8s;
}
.ProcessingSpinner-center {
  position: absolute;
  inset: 24px;
  background: var(--accent-dim);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ProcessingSpinner-center svg {
  animation: ProcessingSpinner-spin 2s linear infinite;
  stroke: var(--accent);
}
/*# sourceMappingURL=ProcessingSpinner.css.map */
.ProgressToggle {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px 20px;
  display: block;
}
.lbl {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--text-mut);
  margin-bottom: 10px;
}
.pct {
  color: var(--accent);
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-weight: 600;
}
.track {
  height: 7px;
  background: var(--surface3);
  border-radius: 4px;
  overflow: hidden;
}
.fill {
  height: 100%;
  border-radius: 4px;
  background: linear-gradient(90deg, #34d399, #6ee7b7, #a7f3d0);
  position: relative;
  transition: width 0.4s;
}
.fill::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  background-size: 200% 100%;
  animation: shimmer 1.4s infinite;
}
@keyframes shimmer {
  from {
    background-position: -200% 0;
  }
  to {
    background-position: 200% 0;
  }
}
.row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
}
.toggle-label {
  font-size: 14px;
  color: var(--text-sec);
}
.toggle {
  width: 36px;
  height: 22px;
  border-radius: 11px;
  background: var(--accent);
  position: relative;
  cursor: pointer;
  transition: background 0.3s;
}
.toggle .k {
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #1a2128;
  top: 2px;
  left: 16px;
  transition: left 0.3s, background 0.3s;
}
.toggle.off {
  background: var(--surface3);
  border: 1px solid var(--border);
}
.toggle.off .k {
  background: var(--text-dim);
  left: 2px;
}
/*# sourceMappingURL=ProgressToggle.css.map */
@keyframes ProcessSuccess-pop {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  60% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes ProcessSuccess-check {
  from {
    stroke-dashoffset: 24;
  }
  to {
    stroke-dashoffset: 0;
  }
}
.ProcessSuccess {
  animation: ProcessSuccess-pop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  margin-bottom: 10px;
}
.ProcessSuccess-circle {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: var(--accent-dim);
  border: 2px solid var(--accent-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 50px var(--accent-dim);
  color: var(--accent);
}
.ProcessSuccess-check {
  stroke-dasharray: 24;
  animation: ProcessSuccess-check 0.6s ease 0.3s forwards;
  stroke-dashoffset: 24;
}
.success-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--accent-dim);
  border: 2px solid var(--accent-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 50px var(--accent-dim);
  flex: none;
}
.success-label {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px;
  color: var(--text-mut);
  text-align: center;
  margin-top: 8px;
}
/*# sourceMappingURL=ProcessSuccess.css.map */
.ProfilePage-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Instrument Sans', 'DM Sans', system-ui, sans-serif;
  font-size: 15px;
  color: var(--text-sec);
  text-decoration: none;
  margin-bottom: 40px;
  transition: color 0.2s;
}
.ProfilePage-back:hover {
  color: var(--text);
}
.ProfilePage-card {
  border-radius: 20px;
}
.ProfilePage-avatar-row {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 28px;
  border-bottom: 1px solid var(--border);
}
.ProfilePage-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--accent-dim);
  border: 1px solid var(--accent-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--accent);
  flex-shrink: 0;
}
.ProfilePage-name {
  font-family: 'Instrument Sans', 'DM Sans', system-ui, sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}
.ProfilePage-email {
  font-family: 'Instrument Sans', 'DM Sans', system-ui, sans-serif;
  font-size: 15px;
  color: var(--text-sec);
}
/*# sourceMappingURL=ProfilePage.css.map */
.HistoryPage-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Instrument Sans', 'DM Sans', system-ui, sans-serif;
  font-size: 15px;
  color: var(--text-sec);
  text-decoration: none;
  margin-bottom: 40px;
  transition: color 0.2s;
}
.HistoryPage-back:hover {
  color: var(--text);
}
.HistoryPage-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}
.HistoryPage-search {
  flex: 1 1;
  max-width: 360px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 16px;
  font-family: 'Instrument Sans', 'DM Sans', system-ui, sans-serif;
  font-size: 15px;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s;
}
.HistoryPage-search::placeholder {
  color: var(--text-dim);
}
.HistoryPage-search:focus {
  border-color: var(--accent);
}
.HistoryPage-count {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 13px;
  color: var(--text-dim);
  white-space: nowrap;
}
.HistoryPage-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.HistoryPage-empty {
  text-align: center;
  padding: 48px 0;
  font-family: 'Instrument Sans', 'DM Sans', system-ui, sans-serif;
  font-size: 15px;
  color: var(--text-dim);
}
.HistoryPage-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 24px;
  border-radius: 16px;
  transition: border-color 0.2s;
}
.HistoryPage-row:hover {
  border-color: var(--border-hover);
}
.HistoryPage-row-left {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}
.HistoryPage-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--accent-dim);
  border: 1px solid var(--accent-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}
.HistoryPage-filename {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.HistoryPage-meta {
  font-family: 'Instrument Sans', 'DM Sans', system-ui, sans-serif;
  font-size: 13px;
  color: var(--text-mut);
  margin-top: 3px;
}
.HistoryPage-row-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.HistoryPage-date {
  font-family: 'Instrument Sans', 'DM Sans', system-ui, sans-serif;
  font-size: 13px;
  color: var(--text-dim);
}
.HistoryPage-duration {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 13px;
  color: var(--text-sec);
}
.HistoryPage-status {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: 100px;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 12px;
  font-weight: 600;
}
.HistoryPage-status.complete {
  background: var(--accent-dim);
  color: var(--accent);
  border: 1px solid var(--accent-mid);
}
.HistoryPage-status.processing {
  background: var(--accent-mid);
  color: var(--accent);
  border: 1px solid var(--accent);
}
.HistoryPage-status.failed {
  background: var(--warn-dim);
  color: var(--warn);
  border: 1px solid var(--warn-mid);
}
.HistoryPage-download {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: transparent;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-sec);
  cursor: pointer;
  transition: all 0.2s;
}
.HistoryPage-download:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-dim);
}
/*# sourceMappingURL=HistoryPage.css.map */
.auth-loader {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  background: var(--bg);
}
.auth-loader__logo {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 400;
  color: var(--text);
  letter-spacing: -0.5px;
  line-height: 1;
}
.auth-loader__logo em {
  font-style: italic;
  color: var(--accent);
}
.auth-loader__spinner {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid var(--border);
  border-top-color: var(--accent);
  animation: authLoaderSpin 0.75s linear infinite;
  opacity: 0.7;
}
@keyframes authLoaderSpin {
  to {
    transform: rotate(360deg);
  }
}
/*# sourceMappingURL=AuthLoader.css.map */
/* =============================================================
   Ei Zero — runtime CSS custom properties
   Two themes: dark (default) and light.
   Toggled by setting data-theme="dark|light" on <html>.
   ============================================================= */

/* ── DARK (default) ─────────────────────────────────────────── */
[data-theme='dark'],
:root {
  --bg: #06060a;
  --surface: #0e0e12;
  --surface2: #141418;
  --surface3: #1a1a1f;

  --border: #2a2a30;
  --border-hover: rgba(255, 255, 255, 0.12);

  --text: #fafafa;
  --text-sec: #a1a1aa;
  --text-mut: #71717a;
  --text-dim: #52525b;

  --accent: #6ee7b7;
  --accent-dk: #059669;
  --accent-mid: rgba(110, 231, 183, 0.14);
  --accent-dim: rgba(110, 231, 183, 0.08);
  --accent-bg: #163b2c;
  --accent-glow: rgba(110, 231, 183, 0.18);

  --warn: #fbbf24;
  --warn-dim: rgba(251, 191, 36, 0.07);
  --warn-mid: rgba(251, 191, 36, 0.2);

  --header-bg: rgba(6, 6, 10, 0.7);
  --card-bg: #0e0e12;

  --btn-grad: linear-gradient(135deg, #6ee7b7, #34d399);
  --btn-text: #06060a;
  --btn-hover-shadow: 0 6px 30px rgba(110, 231, 183, 0.25);

  --progress-grad: linear-gradient(90deg, #34d399, #6ee7b7, #a7f3d0);
  --glass-top: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
  --vignette: rgba(110, 231, 183, 0.03);

  --noise-opacity: 0.5;
  --canvas-opacity: 0.4;
  --canvas-proc: 0.65;

  --orb1: rgba(110, 231, 183, 0.1);
  --orb2: rgba(52, 211, 153, 0.06);
  --orb3: rgba(167, 243, 208, 0.035);

  --grid-color: rgba(110, 231, 183, 0.022);
  --pbase: 110, 231, 183;
  --scan-alpha: 0.03;

  --dz-hover-shadow: 0 12px 50px rgba(110, 231, 183, 0.07);

  --toggle-bg: rgba(110, 231, 183, 0.12);
  --toggle-knob: #6ee7b7;
  --toggle-knob-text: #06060a;
  --toggle-shadow: 0 0 8px rgba(110, 231, 183, 0.3);
}

/* ── LIGHT ───────────────────────────────────────────────────── */
[data-theme='light'] {
  --bg: #f6f8fa;
  --surface: rgba(255, 255, 255, 0.8);
  --surface2: #eff1f3;
  --surface3: #e5e7eb;

  --border: rgba(0, 0, 0, 0.08);
  --border-hover: rgba(0, 0, 0, 0.14);

  --text: #111318;
  --text-sec: #4b5563;
  --text-mut: #6b7280;
  --text-dim: #9ca3af;

  --accent: #059669;
  --accent-dk: #047857;
  --accent-mid: rgba(5, 150, 105, 0.12);
  --accent-dim: rgba(5, 150, 105, 0.06);
  --accent-bg: rgba(5, 150, 105, 0.08);
  --accent-glow: rgba(5, 150, 105, 0.18);

  --warn: #d97706;
  --warn-dim: rgba(217, 119, 6, 0.07);
  --warn-mid: rgba(217, 119, 6, 0.2);

  --header-bg: rgba(246, 248, 250, 0.75);
  --card-bg: rgba(255, 255, 255, 0.85);

  --btn-grad: linear-gradient(135deg, #059669, #047857);
  --btn-text: #ffffff;
  --btn-hover-shadow: 0 6px 24px rgba(5, 150, 105, 0.2);

  --progress-grad: linear-gradient(90deg, #047857, #059669, #10b981);
  --glass-top: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.03), transparent);
  --vignette: rgba(5, 150, 105, 0.02);

  --noise-opacity: 0.12;
  --canvas-opacity: 0.3;
  --canvas-proc: 0.45;

  --orb1: rgba(5, 150, 105, 0.05);
  --orb2: rgba(16, 185, 129, 0.035);
  --orb3: rgba(110, 231, 183, 0.025);

  --grid-color: rgba(5, 150, 105, 0.035);
  --pbase: 5, 150, 105;
  --scan-alpha: 0.025;

  --dz-hover-shadow: 0 12px 40px rgba(5, 150, 105, 0.05);

  --toggle-bg: rgba(5, 150, 105, 0.1);
  --toggle-knob: #059669;
  --toggle-knob-text: #ffffff;
  --toggle-shadow: 0 0 8px rgba(5, 150, 105, 0.25);
}

@font-face {
  font-family: 'Instrument Sans';
  src: url(/static/media/InstrumentSans-VariableFont_wdth_wght.98cb9d715b8ac999e67e.ttf) format('truetype-variations');
  font-weight: 100 900;
  font-stretch: 75% 125%;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Instrument Sans';
  src: url(/static/media/InstrumentSans-Italic-VariableFont_wdth_wght.08fc25226420d1b14cd4.ttf) format('truetype-variations');
  font-weight: 100 900;
  font-stretch: 75% 125%;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Instrument Serif';
  src: url(/static/media/InstrumentSerif-Regular.7d317e5281fda1af95bd.ttf) format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Instrument Serif';
  src: url(/static/media/InstrumentSerif-Italic.363ea827117ebf8876a5.ttf) format('truetype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
body {
  margin: 0;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
.app-root {
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: 'Instrument Sans', 'DM Sans', system-ui, sans-serif;
  transition: background 0.5s ease, color 0.5s ease;
}
.app-main-area {
  padding: 48px 40px 100px;
  position: relative;
}
.wrapper {
  max-width: 1008px;
  margin: 0 auto;
}
.narrow {
  max-width: 754px;
  margin: 0 auto;
}
.steps-row {
  display: flex;
  justify-content: center;
  margin-bottom: 57px;
}
.app-footer {
  margin-top: 57px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  text-align: center;
}
.app-footer span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-family: 'DM Sans', system-ui, sans-serif;
  color: var(--text-dim);
}
/*# sourceMappingURL=app.css.map */
.phase-view {
  animation: fadeUp 0.55s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.view-header {
  text-align: center;
  margin-bottom: 57px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.view-title {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: 64px;
  font-weight: 400;
  letter-spacing: -1.4px;
  line-height: 1.05;
  margin-bottom: 10px;
}
.view-title em {
  font-style: italic;
  color: var(--accent);
}
.view-subtitle {
  font-family: 'Instrument Sans', 'DM Sans', system-ui, sans-serif;
  font-size: 16px;
  color: var(--text);
  line-height: 1.7;
  max-width: 600px;
  font-weight: 400;
  opacity: 0.85;
}
.cta-row {
  display: flex;
  gap: 14px;
  margin-top: 32px;
  justify-content: center;
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/*# sourceMappingURL=views.css.map */
