@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;
  letter-spacing: 0.3px;
  padding: 6px 14px;
  border-radius: 100px;
  background: var(--accent-bg);
  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 */
.btn-primary {
  background: var(--btn-grad);
  color: var(--btn-text);
  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: var(--btn-hover-shadow);
}
.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 */
.ValidatedView-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.ValidatedView-audit {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  padding: 20px 24px;
}
.ValidatedView-audit::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: var(--glass-top);
}
.ValidatedView-audit h2 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 6px;
}
.ValidatedView-audit .audit-list {
  margin-top: 0;
  background: none;
  border: none;
  border-radius: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.ValidatedView-audit-desc {
  font-size: 13px;
  color: var(--text-mut);
  margin-bottom: 14px;
}
.audit-row {
  display: flex;
  align-items: center;
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-sec);
}
.audit-row:last-child {
  border-bottom: none;
}
.audit-text {
  font-size: 13px;
  color: var(--text-sec);
}
/*# sourceMappingURL=ValidatedView.css.map */
@keyframes ProcessingSpinner-pulse {
  0% {
    transform: scale(0.7);
    opacity: 0.8;
  }
  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}
@keyframes ProcessingSpinner-spin {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
.ProcessingSpinner {
  position: relative;
  width: 100px;
  height: 100px;
  margin: 0 auto 32px;
  display: grid;
  place-items: center;
}
.ProcessingSpinner-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid var(--accent);
  opacity: 0;
  animation: ProcessingSpinner-pulse 2.4s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}
.ProcessingSpinner-ring:nth-child(2) {
  animation-delay: 0.8s;
}
.ProcessingSpinner-ring:nth-child(3) {
  animation-delay: 1.6s;
}
.ProcessingSpinner-center {
  position: relative;
  width: 68px;
  height: 68px;
  background: var(--accent-bg);
  border: 2px solid var(--accent-mid);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--accent);
}
.ProcessingSpinner-center svg {
  animation: ProcessingSpinner-spin 2s linear infinite;
  stroke: var(--accent);
}
/*# sourceMappingURL=ProcessingSpinner.css.map */
.ProcessingView-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
/* Progress card */
.ProcessingView-proc-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.ProcessingView-proc-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: var(--glass-top);
}
.ProcessingView-eta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--accent-dim);
  border: 1px solid var(--accent-mid);
  font: 600 12px/1 'JetBrains Mono', ui-monospace, monospace;
  letter-spacing: 0.3px;
  color: var(--accent);
}
.ProcessingView-progress {
  width: 100%;
}
.ProcessingView-progress-labels {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.ProcessingView-progress-label {
  font: 400 16px/1 'Instrument Sans', 'DM Sans', system-ui, sans-serif;
  color: var(--text);
}
.ProcessingView-progress-right {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.ProcessingView-progress-pct {
  font: 700 16px/1 'JetBrains Mono', ui-monospace, monospace;
  color: var(--accent);
  font-feature-settings: "tnum";
  font-variant-numeric: tabular-nums;
}
.ProcessingView-progress-track {
  height: 6px;
  border-radius: 3px;
  background: var(--surface3);
  overflow: hidden;
  position: relative;
}
.ProcessingView-progress-fill {
  height: 100%;
  border-radius: 3px;
  background: var(--progress-grad);
  transition: width 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}
.ProcessingView-progress-fill::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  animation: ProcessingShimmer 1.6s linear infinite;
  transform: translateX(-100%);
}
@keyframes ProcessingShimmer {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(100%);
  }
}
.ProcessingView-wait-copy {
  margin: 0;
  font: 400 15px/1.6 'Instrument Sans', 'DM Sans', system-ui, sans-serif;
  color: var(--text-sec);
  text-align: center;
}
/* Safe-to-leave card */
.ProcessingView-leave-safe {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.ProcessingView-leave-safe::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: var(--glass-top);
}
.ProcessingView-leave-head {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.ProcessingView-mail-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--accent-bg);
  border: 1px solid var(--accent-mid);
  display: grid;
  place-items: center;
  color: var(--accent);
  flex-shrink: 0;
}
.ProcessingView-leave-title {
  font: 600 15px/1.3 'Instrument Sans', 'DM Sans', system-ui, sans-serif;
  color: var(--text);
}
.ProcessingView-leave-desc {
  font: 400 13px/1.5 'Instrument Sans', 'DM Sans', system-ui, sans-serif;
  color: var(--text-mut);
  margin-top: 4px;
}
.ProcessingView-email-target {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 18px;
  border-radius: 14px;
  background: var(--surface2);
  border: 1px solid var(--border);
  font: 600 16px/1 'JetBrains Mono', ui-monospace, monospace;
  color: var(--text);
}
.ProcessingView-email-target svg {
  color: var(--accent);
}
/* Footer row */
.ProcessingView-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4px;
}
.ProcessingView-file-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font: 500 13px/1 'JetBrains Mono', ui-monospace, monospace;
  color: var(--text-mut);
}
.ProcessingView-file-chip svg {
  color: var(--text-dim);
}
.ProcessingView-link-btn {
  background: none;
  border: none;
  cursor: pointer;
  font: 500 13px/1 'Instrument Sans', 'DM Sans', system-ui, sans-serif;
  color: var(--text-mut);
  transition: color 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 0;
}
.ProcessingView-link-btn:hover {
  color: var(--text);
}
/*# sourceMappingURL=ProcessingView.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 {
  position: relative;
  width: 100px;
  height: 100px;
  margin: 0 auto 32px;
  display: grid;
  place-items: center;
}
.ProcessSuccess-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid var(--accent);
  opacity: 0;
  animation: ProcessSuccess-pulse 2.4s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}
.ProcessSuccess-ring:nth-child(2) {
  animation-delay: 0.8s;
}
.ProcessSuccess-ring:nth-child(3) {
  animation-delay: 1.6s;
}
@keyframes ProcessSuccess-pulse {
  0% {
    transform: scale(0.7);
    opacity: 0.8;
  }
  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}
.ProcessSuccess-circle {
  position: relative;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--accent-bg);
  border: 2px solid var(--accent-mid);
  display: grid;
  place-items: center;
  color: var(--accent);
  animation: ProcessSuccess-pop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
.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 */
.CompleteView-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
/* Shared glass card base */
.CompleteView-dl-card,
.CompleteView-summary,
.CompleteView-audit {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}
.CompleteView-dl-card::before,
.CompleteView-summary::before,
.CompleteView-audit::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: var(--glass-top);
}
/* Download card */
.CompleteView-dl-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
}
.CompleteView-dl-left {
  display: flex;
  align-items: center;
  gap: 14px;
}
.CompleteView-dl-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--accent-bg);
  border: 1px solid var(--accent-mid);
  display: grid;
  place-items: center;
  color: var(--accent);
  flex-shrink: 0;
}
.CompleteView-dl-name {
  font: 600 14px/1 'JetBrains Mono', ui-monospace, monospace;
  color: var(--text);
}
.CompleteView-dl-meta {
  font: 400 12px/1 'Instrument Sans', 'DM Sans', system-ui, sans-serif;
  color: var(--text-mut);
  margin-top: 4px;
}
.CompleteView-dl-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  font: 600 14px/1 'Instrument Sans', 'DM Sans', system-ui, sans-serif;
  background: var(--btn-grad);
  color: var(--btn-text);
  transition: opacity 0.2s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.CompleteView-dl-btn:hover {
  box-shadow: var(--btn-hover-shadow);
}
.CompleteView-dl-btn.is-done {
  background: var(--accent-bg);
  color: var(--accent);
  border: 1px solid var(--accent-mid);
  cursor: default;
}
.CompleteView-dl-btn.is-done:hover {
  box-shadow: none;
}
/* Result summary */
.CompleteView-summary-head {
  padding: 18px 22px 16px;
  border-bottom: 1px solid var(--border);
}
.CompleteView-summary-title {
  font: 700 15px/1 'Instrument Sans', 'DM Sans', system-ui, sans-serif;
  color: var(--text);
}
.CompleteView-summary-date {
  font: 400 13px/1.4 'Instrument Sans', 'DM Sans', system-ui, sans-serif;
  color: var(--text-mut);
  margin-top: 4px;
}
.CompleteView-meta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.CompleteView-meta-bordered {
  border-bottom: 1px solid var(--border);
}
.CompleteView-meta-cell {
  padding: 14px 18px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  border-right: 1px solid var(--border);
}
.CompleteView-meta-cell:last-child {
  border-right: none;
}
.CompleteView-meta-label {
  font: 600 10px/1 'Instrument Sans', 'DM Sans', system-ui, sans-serif;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 1.2px;
}
.CompleteView-meta-value {
  font: 500 14px/1 'JetBrains Mono', ui-monospace, monospace;
  color: var(--text);
}
.CompleteView-meta-accent {
  color: var(--accent);
}
.CompleteView-summary-foot {
  display: flex;
  gap: 24px;
  padding: 14px 22px;
  border-top: 1px solid var(--border);
  font: 400 13px/1 'Instrument Sans', 'DM Sans', system-ui, sans-serif;
  color: var(--text-mut);
}
.CompleteView-summary-foot span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
/* Preprocessing audit */
.CompleteView-audit {
  padding: 20px 24px;
}
.CompleteView-audit h2 {
  font: 600 15px/1 'Instrument Sans', 'DM Sans', system-ui, sans-serif;
  color: var(--text);
  margin-bottom: 6px;
}
.CompleteView-audit-desc {
  font: 400 13px/1 'Instrument Sans', 'DM Sans', system-ui, sans-serif;
  color: var(--text-mut);
  margin-bottom: 14px;
}
.CompleteView-audit-list {
  display: flex;
  flex-direction: column;
}
.CompleteView-audit-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 0;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
}
.CompleteView-audit-row:last-child {
  border-bottom: none;
}
.CompleteView-audit-left {
  display: flex;
  align-items: center;
  gap: 10px;
}
.CompleteView-audit .audit-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--accent);
}
.CompleteView-audit .audit-dot.warn {
  background: var(--warn);
}
.CompleteView-audit-text {
  font: 400 13px/1 'Instrument Sans', 'DM Sans', system-ui, sans-serif;
  color: var(--text-sec);
}
.CompleteView-audit-count {
  font: 500 14px/1 'JetBrains Mono', ui-monospace, monospace;
  color: var(--text);
  flex-shrink: 0;
}
/*# sourceMappingURL=CompleteView.css.map */
.Field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.Field--full {
  grid-column: 1 / -1;
}
.Field-label {
  font: 600 11px/1 'Instrument Sans', 'DM Sans', system-ui, sans-serif;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--text-dim);
}
.Field-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.Field-wrap.has-icon .Field-input {
  padding-left: 38px;
}
.Field-icon {
  position: absolute;
  left: 12px;
  color: var(--text-dim);
  pointer-events: none;
  display: inline-flex;
}
.Field-input {
  width: 100%;
  padding: 11px 14px;
  border-radius: 10px;
  background: var(--surface2);
  color: var(--text);
  border: 1px solid var(--border);
  font: 400 14px/1.2 'DM Sans', system-ui, sans-serif;
  outline: none;
  transition: border-color 0.2s cubic-bezier(0.16, 1, 0.3, 1), background 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.Field-input::placeholder {
  color: var(--text-dim);
}
.Field-input:hover {
  border-color: var(--border-hover);
}
.Field-input:focus {
  border-color: var(--accent);
  background: var(--surface);
  box-shadow: 0 0 0 3px var(--accent-dim);
}
/*# sourceMappingURL=Field.css.map */
.Skeleton {
  width: 100%;
}
.Skeleton [class^='circle'] {
  flex-shrink: 0;
  flex-grow: 0;
  border-radius: 50%;
}
.Skeleton [class^='rect'],
.Skeleton [class^='roundRect'],
.Skeleton [class^='buttonRect'] {
  height: 20px;
}
.Skeleton [class^='roundRect'] {
  border-radius: 10px;
}
.Skeleton [class^='buttonRect'] {
  width: 100px;
  height: 50px;
  border-radius: 60px;
}
.Skeleton [class^='circle'],
.Skeleton [class^='rect'],
.Skeleton [class^='roundRect'],
.Skeleton [class^='buttonRect'] {
  background: linear-gradient(to right, var(--surface3) 10%, var(--surface2) 28%, var(--surface3) 38%);
  background-size: 1000px 640px;
  animation: skeleton-shimmer 1.8s linear infinite;
}
@keyframes skeleton-shimmer {
  0% {
    background-position: -468px 0;
  }
  100% {
    background-position: 468px 0;
  }
}
/*# sourceMappingURL=index.css.map */
.InputSkeletonShape {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 24px;
}
.InputSkeletonShape-label {
  font: 600 11px/1 'Instrument Sans', 'DM Sans', system-ui, sans-serif;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--text-dim);
}
.InputSkeletonShape .rect.input {
  height: 40.8px;
  border-radius: 8px;
}
/*# sourceMappingURL=index.css.map */
.ProfilePage-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font: 500 14px/1 'DM Sans', system-ui, sans-serif;
  color: var(--text-mut);
  text-decoration: none;
  padding: 8px 12px 8px 0;
  margin-bottom: 24px;
  transition: color 0.2s cubic-bezier(0.16, 1, 0.3, 1), gap 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.ProfilePage-back:hover {
  color: var(--accent);
  gap: 12px;
}
.ProfilePage-hero {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 32px;
}
.ProfilePage-avatar-wrap {
  position: relative;
  flex-shrink: 0;
}
.ProfilePage-avatar {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: var(--surface2);
  border: 1px solid var(--accent);
  display: grid;
  place-items: center;
  font: 700 30px/1 'DM Sans', system-ui, sans-serif;
  color: var(--text);
  box-shadow: 0 0 0 4px var(--accent-dim), 0 0 30px var(--accent-dim);
}
.ProfilePage-avatar-edit {
  position: absolute;
  right: -2px;
  bottom: -2px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--accent);
  border: 2px solid var(--bg);
  color: var(--btn-text);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.ProfilePage-avatar-edit:hover {
  transform: scale(1.1);
}
.ProfilePage-name {
  font: 400 36px/1.1 'Instrument Serif', Georgia, serif;
  letter-spacing: -0.5px;
  color: var(--text);
  margin: 0 0 8px;
}
.ProfilePage-sub {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  font: 400 14px/1.4 'DM Sans', system-ui, sans-serif;
  color: var(--text-mut);
}
.ProfilePage-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--text-dim);
  flex-shrink: 0;
}
.ProfilePage-tabs {
  display: flex;
  gap: 4px;
  padding: 4px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 24px;
  width: -webkit-fit-content;
  width: fit-content;
}
.ProfilePage-tab {
  -webkit-appearance: none;
          appearance: none;
  background: transparent;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border-radius: 8px;
  font: 500 14px/1 'DM Sans', system-ui, sans-serif;
  color: var(--text-mut);
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.ProfilePage-tab svg {
  color: var(--text-dim);
  transition: color 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.ProfilePage-tab:hover {
  color: var(--text);
}
.ProfilePage-tab:hover svg {
  color: var(--text-mut);
}
.ProfilePage-tab.is-active {
  background: var(--accent-bg);
  color: var(--accent);
}
.ProfilePage-tab.is-active svg {
  color: var(--accent);
}
.ProfilePage-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}
.ProfilePage-card {
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: border-color 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.ProfilePage-card:hover {
  border-color: var(--border-hover);
}
.ProfilePage-card-head {
  margin-bottom: 20px;
}
.ProfilePage-card-head h2 {
  font: 600 17px/1.4 'Instrument Sans', 'DM Sans', system-ui, sans-serif;
  margin: 0 0 6px;
  color: var(--text);
}
.ProfilePage-card-head p {
  font: 400 15px/1.6 'Instrument Sans', 'DM Sans', system-ui, sans-serif;
  color: var(--text-mut);
  margin: 0;
}
.ProfilePage-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 14px 16px;
  gap: 14px 16px;
}
.ProfilePage-form-grid .InputSkeletonShape {
  margin-bottom: 0;
}
.ProfilePage-toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.ProfilePage-toggle-label {
  font: 500 15px/1 'Instrument Sans', 'DM Sans', system-ui, sans-serif;
  color: var(--text);
  margin-bottom: 4px;
}
.ProfilePage-toggle-hint {
  font: 400 13px/1.4 'DM Sans', system-ui, sans-serif;
  color: var(--text-mut);
}
.ProfilePage-switch {
  width: 44px;
  height: 26px;
  border-radius: 13px;
  border: none;
  padding: 0;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
  background: var(--surface3);
  transition: background 0.3s;
}
.ProfilePage-switch.on {
  background: var(--accent);
  box-shadow: var(--toggle-shadow);
}
.ProfilePage-switch-knob {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  position: absolute;
  top: 3px;
  left: 3px;
  background: var(--text-dim);
  transition: left 0.3s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s;
}
.ProfilePage-switch.on .ProfilePage-switch-knob {
  left: 21px;
  background: var(--toggle-knob-text);
}
.ProfilePage-readonly-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.ProfilePage-readonly-label {
  font: 600 11px/1 'Instrument Sans', 'DM Sans', system-ui, sans-serif;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--text-dim);
}
.ProfilePage-readonly-value {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  border-radius: 10px;
  background: var(--surface2);
  border: 1px solid var(--border);
  font: 400 14px/1.2 'DM Sans', system-ui, sans-serif;
  color: var(--text-sec);
}
.ProfilePage-readonly-value svg {
  color: var(--text-dim);
  flex-shrink: 0;
}
.ProfilePage-admin-note {
  font: 400 13px/1.5 'DM Sans', system-ui, sans-serif;
  color: var(--text-mut);
  margin: 0;
}
.ProfilePage-usage-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 8px;
  padding: 32px 24px;
  border-radius: 14px;
  background: var(--surface2);
  border: 1px solid var(--border);
}
.ProfilePage-usage-num {
  font: 400 72px/1 'Instrument Serif', Georgia, serif;
  color: var(--text);
  font-feature-settings: "tnum";
  font-variant-numeric: tabular-nums;
}
.ProfilePage-usage-lbl {
  font: 500 12px/1 'Instrument Sans', 'DM Sans', system-ui, sans-serif;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--text-dim);
}
.ProfilePage-save-bar {
  position: -webkit-sticky;
  position: sticky;
  bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  background: var(--card-bg);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}
.ProfilePage-save-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font: 500 13px/1 'DM Sans', system-ui, sans-serif;
  color: var(--text-mut);
}
.ProfilePage-save-status svg {
  color: var(--accent);
}
.ProfilePage-save-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}
.ProfilePage .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 10px;
  font: 600 15px/1 'Instrument Sans', 'DM Sans', system-ui, sans-serif;
  cursor: pointer;
  text-decoration: none;
  border: none;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.ProfilePage .btn-primary {
  background: var(--btn-grad);
  color: var(--btn-text);
}
.ProfilePage .btn-primary:hover {
  box-shadow: var(--btn-hover-shadow);
  transform: translateY(-1px);
}
.ProfilePage .btn-secondary {
  background: transparent;
  color: var(--text-sec);
  border: 1px solid var(--border);
}
.ProfilePage .btn-secondary:hover {
  border-color: var(--border-hover);
  color: var(--text);
}
/*# 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: #4ea8ff;
  --accent-dk: #2a8cf0;
  --accent-mid: rgba(78, 168, 255, 0.14);
  --accent-dim: rgba(78, 168, 255, 0.08);
  --accent-bg: #0e2e54;
  --accent-glow: rgba(78, 168, 255, 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, #4ea8ff, #2a8cf0);
  --btn-text: #06060a;
  --btn-hover-shadow: 0 6px 30px rgba(78, 168, 255, 0.25);

  --progress-grad: linear-gradient(90deg, #2a8cf0, #4ea8ff, #a7d4ff);
  --glass-top: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
  --vignette: rgba(78, 168, 255, 0.03);

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

  --orb1: rgba(78, 168, 255, 0.1);
  --orb2: rgba(42, 140, 240, 0.06);
  --orb3: rgba(167, 212, 255, 0.035);

  --grid-color: rgba(78, 168, 255, 0.022);
  --pbase: 78, 168, 255;
  --scan-alpha: 0.03;

  --dz-hover-shadow: 0 12px 50px rgba(78, 168, 255, 0.07);

  --toggle-bg: rgba(78, 168, 255, 0.12);
  --toggle-knob: #4ea8ff;
  --toggle-knob-text: #06060a;
  --toggle-shadow: 0 0 8px rgba(78, 168, 255, 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: #0a6fe0;
  --accent-dk: #0a58be;
  --accent-mid: rgba(10, 111, 224, 0.12);
  --accent-dim: rgba(10, 111, 224, 0.06);
  --accent-bg: rgba(10, 111, 224, 0.08);
  --accent-glow: rgba(10, 111, 224, 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, #0a6fe0, #0a58be);
  --btn-text: #ffffff;
  --btn-hover-shadow: 0 6px 24px rgba(10, 111, 224, 0.2);

  --progress-grad: linear-gradient(90deg, #0a58be, #0a6fe0, #3a8cff);
  --glass-top: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.03), transparent);
  --vignette: rgba(10, 111, 224, 0.02);

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

  --orb1: rgba(10, 111, 224, 0.05);
  --orb2: rgba(42, 140, 240, 0.035);
  --orb3: rgba(78, 168, 255, 0.025);

  --grid-color: rgba(10, 111, 224, 0.035);
  --pbase: 10, 111, 224;
  --scan-alpha: 0.025;

  --dz-hover-shadow: 0 12px 40px rgba(10, 111, 224, 0.05);

  --toggle-bg: rgba(10, 111, 224, 0.1);
  --toggle-knob: #0a6fe0;
  --toggle-knob-text: #ffffff;
  --toggle-shadow: 0 0 8px rgba(10, 111, 224, 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;
}
.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 */
