@import "https://fonts.googleapis.com/css2?family=Rajdhani:wght@400;500;600;700&family=JetBrains+Mono:wght@300;400;500;600;700&family=Share+Tech+Mono&display=swap";
/* [project]/src/styles/globals.css [client] (css) */
:root {
  --sc-void: #020202;
  --sc-base: #080a0d;
  --sc-surface: #0d1117;
  --sc-elevated: #131920;
  --sc-overlay: #1a2332;
  --sc-green-dim: #003b00;
  --sc-green-muted: #00640a;
  --sc-green-base: #00c853;
  --sc-green-bright: #00ff41;
  --sc-cyan-dim: #001a2e;
  --sc-cyan-muted: #004d6e;
  --sc-cyan-base: #00b4d8;
  --sc-cyan-bright: #00e5ff;
  --sc-amber-base: #ff8f00;
  --sc-amber-bright: #ffb300;
  --sc-red-base: #c62828;
  --sc-red-bright: #ff1744;
  --sc-text-primary: #e2eaf0;
  --sc-text-secondary: #8b9bb4;
  --sc-text-muted: #4a5568;
  --sc-text-ghost: #2d3748;
  --sc-border: #1e2d3d;
  --sc-border-active: #2a4060;
  --font-display: "Rajdhani", sans-serif;
  --font-mono: "JetBrains Mono", monospace;
  --font-terminal: "Share Tech Mono", monospace;
  --radius-sm: 2px;
  --radius-base: 4px;
  --radius-md: 6px;
  --radius-lg: 8px;
  --glow-green: 0 0 10px #00ff414d, 0 0 30px #00ff411a;
  --glow-green-intense: 0 0 15px #00ff4180, 0 0 45px #00ff4133;
  --glow-cyan: 0 0 10px #00e5ff4d, 0 0 30px #00e5ff1a;
  --glow-cyan-intense: 0 0 15px #00e5ff80, 0 0 45px #00e5ff33;
  --glow-red: 0 0 10px #ff17444d, 0 0 30px #ff17441a;
  --glow-amber: 0 0 10px #ff8f004d, 0 0 30px #ff8f001a;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  font-family: var(--font-mono);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: var(--sc-void);
  color: var(--sc-text-primary);
  min-height: 100vh;
  line-height: 1.6;
  position: relative;
}

body:before {
  content: "";
  pointer-events: none;
  z-index: 0;
  background-image: linear-gradient(#00ff4108 1px, #0000 1px), linear-gradient(90deg, #00ff4108 1px, #0000 1px);
  background-size: 40px 40px;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
}

body:after {
  content: "";
  pointer-events: none;
  z-index: 9999;
  background: repeating-linear-gradient(0deg, #0000, #0000 2px, #00000014 2px 4px);
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
}

#__next {
  z-index: 1;
  position: relative;
}

a {
  color: var(--sc-green-bright);
  text-decoration: none;
  transition: all .2s;
}

a:hover {
  color: var(--sc-cyan-bright);
  text-shadow: 0 0 8px #00e5ff80;
}

button {
  cursor: pointer;
  font-family: var(--font-mono);
}

input, textarea, select {
  font-family: var(--font-mono);
  font-size: inherit;
}

button:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 1px solid var(--sc-green-bright);
  outline-offset: 2px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--sc-text-primary);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: .5rem;
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: 2rem;
}

h2 {
  font-size: 1.5rem;
}

h3 {
  font-size: 1.25rem;
}

h4 {
  font-size: 1.125rem;
}

h5 {
  font-size: 1rem;
}

h6 {
  font-size: .875rem;
}

p {
  color: var(--sc-text-secondary);
  margin-bottom: 1rem;
  font-size: .875rem;
}

strong {
  color: var(--sc-text-primary);
  font-weight: 700;
}

code, pre {
  background: var(--sc-base);
  border-radius: var(--radius-base);
  font-family: var(--font-mono);
  font-size: .8125rem;
}

code {
  color: var(--sc-green-bright);
  border: 1px solid var(--sc-border);
  padding: .125rem .5rem;
}

pre {
  border: 1px solid var(--sc-border);
  color: var(--sc-green-base);
  margin-bottom: 1rem;
  padding: 1rem;
  overflow-x: auto;
}

pre code {
  color: inherit;
  background: none;
  border: none;
  padding: 0;
}

.sc-terminal {
  background: var(--sc-surface);
  border: 1px solid var(--sc-border);
  border-radius: var(--radius-lg);
  transition: border-color .3s, box-shadow .3s;
  overflow: hidden;
}

.sc-terminal:hover {
  border-color: var(--sc-border-active);
  box-shadow: var(--glow-green);
}

.sc-terminal-bar {
  background: var(--sc-base);
  border-bottom: 1px solid var(--sc-border);
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  display: flex;
}

.sc-terminal-dot {
  border-radius: 50%;
  width: 10px;
  height: 10px;
}

.sc-terminal-dot--red {
  background: #ff5f57;
}

.sc-terminal-dot--amber {
  background: #ffbd2e;
}

.sc-terminal-dot--green {
  background: #28c840;
}

.sc-terminal-title {
  font-family: var(--font-terminal);
  color: var(--sc-text-muted);
  letter-spacing: .05em;
  margin-left: 8px;
  font-size: .75rem;
}

.sc-terminal-body {
  padding: 1.5rem;
}

.sc-card {
  background: var(--sc-surface);
  border: 1px solid var(--sc-border);
  border-radius: var(--radius-lg);
  transition: border-color .3s, box-shadow .3s;
}

.sc-card:hover {
  border-color: var(--sc-border-active);
}

.sc-card-elevated {
  background: var(--sc-elevated);
  border: 1px solid var(--sc-border);
  border-radius: var(--radius-lg);
  transition: border-color .3s;
}

.sc-card-elevated:hover {
  border-color: var(--sc-border-active);
}

.sc-input-wrapper {
  background: var(--sc-base);
  border: 1px solid var(--sc-border);
  border-radius: var(--radius-base);
  align-items: center;
  transition: all .2s;
  display: flex;
  overflow: hidden;
}

.sc-input-wrapper:focus-within {
  border-color: var(--sc-green-base);
  box-shadow: var(--glow-green);
}

.sc-input-wrapper.sc-input-error {
  border-color: var(--sc-red-base);
  box-shadow: var(--glow-red);
}

.sc-input-prefix {
  font-family: var(--font-mono);
  color: var(--sc-green-bright);
  -webkit-user-select: none;
  user-select: none;
  flex-shrink: 0;
  padding: .75rem 0 .75rem .75rem;
  font-size: .875rem;
  line-height: 1;
}

.sc-input {
  color: var(--sc-text-primary);
  width: 100%;
  font-size: .875rem;
  font-family: var(--font-mono);
  appearance: none;
  background: none;
  padding: .75rem .75rem .75rem .4rem;
  box-shadow: none !important;
  border: none !important;
  outline: none !important;
}

.sc-input::placeholder {
  color: var(--sc-text-muted);
}

.sc-input:disabled {
  color: var(--sc-text-ghost);
  cursor: not-allowed;
}

.glass-input {
  background: var(--sc-base);
  border: 1px solid var(--sc-border);
  border-radius: var(--radius-base);
  color: var(--sc-text-primary);
  font-size: .875rem;
  font-family: var(--font-mono);
  width: 100%;
  padding: .75rem 1rem;
  transition: all .2s;
}

.glass-input::placeholder {
  color: var(--sc-text-muted);
}

.glass-input:focus {
  border-color: var(--sc-green-base);
  box-shadow: var(--glow-green);
  outline: none;
}

.glass-input:disabled {
  color: var(--sc-text-ghost);
  cursor: not-allowed;
}

.glass-input.error {
  border-color: var(--sc-red-base);
  box-shadow: var(--glow-red);
}

.glass-select {
  background: var(--sc-base);
  border: 1px solid var(--sc-border);
  border-radius: var(--radius-base);
  color: var(--sc-text-primary);
  font-family: var(--font-mono);
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%234a5568' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
  background-position: right .5rem center;
  background-repeat: no-repeat;
  background-size: 1.5em 1.5em;
  width: 100%;
  padding: .75rem .875rem;
  font-size: .875rem;
  transition: all .2s;
}

.glass-select option {
  background: var(--sc-surface);
  color: var(--sc-text-primary);
}

.glass-select:focus {
  border-color: var(--sc-green-base);
  box-shadow: var(--glow-green);
  outline: none;
}

.glass-select.error {
  border-color: var(--sc-red-base);
}

button {
  border-radius: var(--radius-base);
  font-weight: 600;
  font-family: var(--font-mono);
  letter-spacing: .03em;
  border: none;
  padding: .5rem 1rem;
  font-size: .8125rem;
  transition: all .2s;
}

button:disabled {
  opacity: .35;
  cursor: not-allowed;
}

.btn-cmd {
  background: var(--sc-green-dim);
  color: var(--sc-green-bright);
  border: 1px solid var(--sc-green-muted);
  border-radius: var(--radius-base);
  font-family: var(--font-mono);
  letter-spacing: .03em;
  padding: .75rem 1.5rem;
  font-size: .875rem;
  font-weight: 600;
  transition: all .2s;
  position: relative;
}

.btn-cmd:hover:not(:disabled) {
  background: var(--sc-green-muted);
  box-shadow: var(--glow-green);
  text-shadow: 0 0 8px #00ff4180;
}

.btn-cmd:active:not(:disabled) {
  background: var(--sc-green-dim);
}

.btn-cmd:disabled {
  opacity: .35;
  cursor: not-allowed;
}

.btn-gradient-primary {
  background: var(--sc-green-dim);
  color: var(--sc-green-bright);
  border: 1px solid var(--sc-green-muted);
  border-radius: var(--radius-base);
  font-family: var(--font-mono);
  letter-spacing: .03em;
  padding: .75rem 1.5rem;
  font-size: .875rem;
  font-weight: 600;
  transition: all .2s;
}

.btn-gradient-primary:before {
  display: none;
}

.btn-gradient-primary:hover:not(:disabled) {
  background: var(--sc-green-muted);
  box-shadow: var(--glow-green);
  text-shadow: 0 0 8px #00ff4180;
  transform: none;
}

.btn-gradient-primary:active:not(:disabled) {
  transform: none;
}

.btn-gradient-primary:disabled {
  opacity: .35;
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
}

.btn-glass {
  background: var(--sc-elevated);
  border: 1px solid var(--sc-border);
  color: var(--sc-text-secondary);
  border-radius: var(--radius-base);
  font-weight: 600;
  font-family: var(--font-mono);
  padding: .625rem 1.25rem;
  transition: all .2s;
}

.btn-glass:hover:not(:disabled) {
  background: var(--sc-overlay);
  border-color: var(--sc-border-active);
  color: var(--sc-text-primary);
  transform: none;
}

.btn-glass:disabled {
  opacity: .35;
  cursor: not-allowed;
}

.btn-danger {
  color: var(--sc-red-bright);
  border-radius: var(--radius-base);
  font-weight: 600;
  font-family: var(--font-mono);
  background: #c6282826;
  border: 1px solid #c6282866;
  padding: .625rem 1.25rem;
  transition: all .2s;
}

.btn-danger:hover:not(:disabled) {
  box-shadow: var(--glow-red);
  background: #c6282840;
  border-color: #ff174480;
}

.btn-danger:disabled {
  opacity: .35;
  cursor: not-allowed;
}

.btn-cyan {
  background: var(--sc-cyan-dim);
  color: var(--sc-cyan-bright);
  border: 1px solid var(--sc-cyan-muted);
  border-radius: var(--radius-base);
  font-family: var(--font-mono);
  padding: .75rem 1.5rem;
  font-weight: 600;
  transition: all .2s;
}

.btn-cyan:hover:not(:disabled) {
  background: var(--sc-cyan-muted);
  box-shadow: var(--glow-cyan);
  text-shadow: 0 0 8px #00e5ff80;
}

.sc-alert {
  border-radius: var(--radius-base);
  font-size: .8125rem;
  font-family: var(--font-mono);
  border-left: 3px solid;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 1rem;
  padding: 12px 16px;
  animation: .3s ease-out fadeIn;
  display: flex;
}

.sc-alert-error {
  border-left-color: var(--sc-red-bright);
  color: var(--sc-red-bright);
  background: #c6282814;
}

.sc-alert-success {
  border-left-color: var(--sc-green-bright);
  color: var(--sc-green-bright);
  background: #00c85314;
}

.sc-alert-warning {
  border-left-color: var(--sc-amber-bright);
  color: var(--sc-amber-bright);
  background: #ff8f0014;
}

.sc-alert-info {
  border-left-color: var(--sc-cyan-bright);
  color: var(--sc-cyan-bright);
  background: #00b4d814;
}

.sc-alert-prefix {
  font-family: var(--font-terminal);
  white-space: nowrap;
  flex-shrink: 0;
  font-weight: 600;
}

.sc-alert-body {
  color: var(--sc-text-secondary);
  flex: 1;
}

.sc-alert-dismiss {
  color: var(--sc-text-muted);
  cursor: pointer;
  background: none;
  border: none;
  flex-shrink: 0;
  padding: 0;
  font-size: 1rem;
  line-height: 1;
  transition: color .2s;
}

.sc-alert-dismiss:hover {
  color: var(--sc-text-primary);
}

.sc-badge {
  border-radius: var(--radius-sm);
  font-family: var(--font-mono);
  letter-spacing: .05em;
  text-transform: uppercase;
  border: 1px solid;
  align-items: center;
  gap: 4px;
  padding: 2px 8px;
  font-size: .6875rem;
  font-weight: 600;
  display: inline-flex;
}

.sc-badge-success {
  color: var(--sc-green-bright);
  border-color: var(--sc-green-muted);
  background: #00c8531a;
}

.sc-badge-error {
  color: var(--sc-red-bright);
  border-color: var(--sc-red-base);
  background: #c628281a;
}

.sc-badge-warning {
  color: var(--sc-amber-bright);
  border-color: var(--sc-amber-base);
  background: #ff8f001a;
}

.sc-badge-info {
  color: var(--sc-cyan-bright);
  border-color: var(--sc-cyan-muted);
  background: #00e5ff14;
}

.sc-badge-running {
  color: var(--sc-cyan-bright);
  border-color: var(--sc-cyan-muted);
  background: #00b4d81a;
}

.sc-badge-running:before {
  content: "";
  background: var(--sc-cyan-bright);
  border-radius: 50%;
  width: 6px;
  height: 6px;
  animation: 1.5s ease-in-out infinite pulse;
}

.sc-nav {
  background: var(--sc-base);
  border-bottom: 1px solid var(--sc-border);
  z-index: 50;
  position: sticky;
  top: 0;
}

.sc-nav-inner {
  justify-content: space-between;
  align-items: center;
  max-width: 1280px;
  height: 56px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
}

.sc-nav-brand {
  font-family: var(--font-display);
  color: var(--sc-green-bright);
  letter-spacing: .05em;
  align-items: center;
  gap: 10px;
  font-size: 1.125rem;
  font-weight: 700;
  text-decoration: none;
  display: flex;
}

.sc-nav-brand:hover {
  text-shadow: 0 0 12px #00ff4180;
}

.sc-nav-brand-icon {
  background: var(--sc-green-dim);
  border: 1px solid var(--sc-green-muted);
  border-radius: var(--radius-base);
  width: 32px;
  height: 32px;
  font-family: var(--font-display);
  color: var(--sc-green-bright);
  justify-content: center;
  align-items: center;
  font-size: .75rem;
  font-weight: 700;
  display: flex;
}

.sc-nav-links {
  align-items: center;
  gap: 4px;
  display: flex;
}

.sc-nav-link {
  font-family: var(--font-mono);
  color: var(--sc-text-muted);
  border-radius: var(--radius-base);
  padding: 6px 12px;
  font-size: .8125rem;
  text-decoration: none;
  transition: all .2s;
}

.sc-nav-link:hover {
  color: var(--sc-green-base);
  background: var(--sc-surface);
  text-shadow: none;
}

.sc-nav-link--active {
  color: var(--sc-green-bright);
  background: var(--sc-green-dim);
}

.sc-nav-user {
  background: var(--sc-surface);
  border: 1px solid var(--sc-border);
  border-radius: var(--radius-base);
  cursor: pointer;
  align-items: center;
  gap: 8px;
  padding: 4px 12px 4px 4px;
  transition: all .2s;
  display: flex;
}

.sc-nav-user:hover {
  border-color: var(--sc-border-active);
}

.sc-nav-user-avatar {
  background: var(--sc-green-dim);
  border: 1px solid var(--sc-green-muted);
  border-radius: var(--radius-sm);
  width: 28px;
  height: 28px;
  font-family: var(--font-mono);
  color: var(--sc-green-bright);
  justify-content: center;
  align-items: center;
  font-size: .6875rem;
  font-weight: 700;
  display: flex;
}

.sc-nav-user-info {
  text-align: left;
}

.sc-nav-user-name {
  color: var(--sc-text-primary);
  font-size: .75rem;
  font-weight: 600;
  line-height: 1.2;
}

.sc-nav-user-tier {
  color: var(--sc-text-muted);
  text-transform: uppercase;
  letter-spacing: .05em;
  font-size: .625rem;
}

.sc-dropdown {
  background: var(--sc-elevated);
  border: 1px solid var(--sc-border);
  border-radius: var(--radius-md);
  z-index: 100;
  width: 220px;
  animation: .15s ease-out slideIn;
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  overflow: hidden;
}

.sc-dropdown-header {
  border-bottom: 1px solid var(--sc-border);
  padding: 10px 14px;
}

.sc-dropdown-item {
  width: 100%;
  font-size: .8125rem;
  font-family: var(--font-mono);
  color: var(--sc-text-secondary);
  text-align: left;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px 14px;
  text-decoration: none;
  transition: all .15s;
  display: block;
}

.sc-dropdown-item:hover {
  background: var(--sc-overlay);
  color: var(--sc-green-bright);
  text-shadow: none;
}

.sc-dropdown-item--danger {
  color: var(--sc-red-bright);
}

.sc-dropdown-item--danger:hover {
  color: var(--sc-red-bright);
  background: #c628281a;
}

.sc-dropdown-divider {
  border: none;
  border-top: 1px solid var(--sc-border);
  margin: 4px 0;
}

.sc-tabs {
  background: var(--sc-base);
  border: 1px solid var(--sc-border);
  border-radius: var(--radius-base);
  gap: 2px;
  padding: 3px;
  display: inline-flex;
}

.sc-tab {
  font-family: var(--font-mono);
  color: var(--sc-text-muted);
  border-radius: var(--radius-sm);
  cursor: pointer;
  white-space: nowrap;
  background: none;
  border: 1px solid #0000;
  padding: 6px 16px;
  font-size: .8125rem;
  font-weight: 500;
  transition: all .2s;
}

.sc-tab:hover {
  color: var(--sc-text-secondary);
  background: var(--sc-surface);
}

.sc-tab--active {
  color: var(--sc-green-bright);
  background: var(--sc-green-dim);
  border-color: var(--sc-green-muted);
}

.sc-label {
  font-family: var(--font-mono);
  color: var(--sc-text-muted);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 6px;
  font-size: .6875rem;
  font-weight: 600;
  display: block;
}

.sc-label:before {
  content: "// ";
  color: var(--sc-text-ghost);
}

.sc-label-required:after {
  content: " *";
  color: var(--sc-red-bright);
}

.sc-metric {
  flex-direction: column;
  gap: 2px;
  display: flex;
}

.sc-metric-label {
  font-family: var(--font-mono);
  color: var(--sc-text-muted);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .6875rem;
}

.sc-metric-label:before {
  content: "// ";
  color: var(--sc-text-ghost);
}

.sc-metric-value {
  font-family: var(--font-mono);
  color: var(--sc-text-primary);
  font-size: 1rem;
  font-weight: 500;
}

.sc-process {
  background: var(--sc-base);
  border: 1px solid var(--sc-border);
  border-radius: var(--radius-base);
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 12px 16px;
  transition: all .2s;
  display: flex;
}

.sc-process:hover {
  border-color: var(--sc-border-active);
  background: var(--sc-surface);
}

.sc-process-info {
  flex: 1;
  min-width: 0;
}

.sc-process-name {
  font-family: var(--font-mono);
  color: var(--sc-text-primary);
  font-size: .875rem;
  font-weight: 600;
}

.sc-process-meta {
  font-family: var(--font-mono);
  color: var(--sc-text-muted);
  margin-top: 2px;
  font-size: .6875rem;
}

.sc-process-key {
  font-family: var(--font-terminal);
  color: var(--sc-text-ghost);
  margin-top: 4px;
  font-size: .75rem;
}

.sc-process-actions {
  flex-shrink: 0;
  gap: 8px;
  display: flex;
}

.sc-strength-bar {
  gap: 3px;
  height: 4px;
  display: flex;
}

.sc-strength-block {
  background: var(--sc-border);
  border-radius: 1px;
  flex: 1;
  transition: background .3s;
}

.sc-strength-block--filled-weak {
  background: var(--sc-red-bright);
}

.sc-strength-block--filled-medium {
  background: var(--sc-amber-bright);
}

.sc-strength-block--filled-strong {
  background: var(--sc-green-bright);
}

.sc-loading {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 12px;
  padding: 2rem;
  display: flex;
}

.sc-loading-text {
  font-family: var(--font-terminal);
  color: var(--sc-green-base);
  font-size: .875rem;
}

.sc-loading-text:after {
  content: "";
  animation: 1s step-end infinite blink;
}

.sc-loading-cursor {
  background: var(--sc-green-bright);
  width: 8px;
  height: 14px;
  margin-left: 2px;
  animation: 1s step-end infinite blink;
  display: inline-block;
}

.sc-glitch {
  font-family: var(--font-display);
  color: var(--sc-green-bright);
  text-shadow: 0 0 10px #00ff4180, 0 0 40px #00ff4133;
  font-weight: 700;
  position: relative;
}

.sc-glitch-cyan {
  color: var(--sc-cyan-bright);
  text-shadow: 0 0 10px #00e5ff80, 0 0 40px #00e5ff33;
}

.sc-separator {
  border: none;
  border-top: 1px solid var(--sc-border);
  margin: 0;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
}

.flex-center {
  justify-content: center;
  align-items: center;
  display: flex;
}

.flex-between {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.text-truncate {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

input[type="text"], input[type="email"], input[type="password"], input[type="number"], textarea, select {
  background: var(--sc-base);
  border: 1px solid var(--sc-border);
  border-radius: var(--radius-base);
  width: 100%;
  color: var(--sc-text-primary);
  font-family: var(--font-mono);
  padding: .75rem .875rem;
  font-size: .875rem;
  transition: all .2s;
}

input[type="text"]::placeholder, input[type="email"]::placeholder, input[type="password"]::placeholder, input[type="number"]::placeholder, textarea::placeholder {
  color: var(--sc-text-muted);
}

input[type="text"]:focus, input[type="email"]:focus, input[type="password"]:focus, input[type="number"]:focus, textarea:focus, select:focus {
  border-color: var(--sc-green-base);
  box-shadow: var(--glow-green);
  outline: none;
}

input[type="text"]:disabled, input[type="email"]:disabled, input[type="password"]:disabled, input[type="number"]:disabled, textarea:disabled, select:disabled {
  background: var(--sc-void);
  color: var(--sc-text-ghost);
  cursor: not-allowed;
}

input.error, textarea.error, select.error {
  border-color: var(--sc-red-base);
}

input.error:focus, textarea.error:focus, select.error:focus {
  border-color: var(--sc-red-base);
  box-shadow: var(--glow-red);
}

input[type="checkbox"], input[type="radio"] {
  cursor: pointer;
  width: 1rem;
  height: 1rem;
  accent-color: var(--sc-green-base);
}

table {
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 1rem;
}

th, td {
  text-align: left;
  border-bottom: 1px solid var(--sc-border);
  padding: .625rem .75rem;
  font-size: .8125rem;
}

th {
  background: var(--sc-base);
  color: var(--sc-text-muted);
  text-transform: uppercase;
  letter-spacing: .05em;
  font-size: .6875rem;
  font-weight: 600;
}

tr:hover {
  background: #00ff4105;
}

::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-track {
  background: var(--sc-void);
}

::-webkit-scrollbar-thumb {
  background: var(--sc-border);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--sc-border-active);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(4px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes spin {
  from {
    transform: rotate(0);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }

  50% {
    opacity: .3;
  }
}

@keyframes blink {
  0%, 100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

@keyframes glitch {
  0% {
    transform: translate(0);
  }

  20% {
    transform: translate(-2px, 2px);
  }

  40% {
    transform: translate(-2px, -2px);
  }

  60% {
    transform: translate(2px, 2px);
  }

  80% {
    transform: translate(2px, -2px);
  }

  100% {
    transform: translate(0);
  }
}

@keyframes typewriter {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}

@keyframes scanline {
  0% {
    top: -10%;
  }

  100% {
    top: 110%;
  }
}

.animate-fadeIn {
  animation: .3s ease-out fadeIn;
}

.animate-slideIn {
  animation: .2s ease-out slideIn;
}

.animate-slideUp {
  animation: .4s ease-out slideUp;
}

.animate-spin {
  animation: 1s linear infinite spin;
}

.animate-pulse {
  animation: 1.5s ease-in-out infinite pulse;
}

.animate-blink {
  animation: 1s step-end infinite blink;
}

.sc-hero {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  display: flex;
  position: relative;
  overflow: hidden;
}

.sc-hero-content {
  text-align: center;
  z-index: 10;
  animation: .6s ease-out fadeIn;
  position: relative;
}

.sc-hero-logo {
  background: var(--sc-green-dim);
  border: 2px solid var(--sc-green-muted);
  border-radius: var(--radius-lg);
  width: 72px;
  height: 72px;
  box-shadow: var(--glow-green);
  justify-content: center;
  align-items: center;
  margin-bottom: 1.5rem;
  display: inline-flex;
}

.sc-hero-logo span {
  font-family: var(--font-display);
  color: var(--sc-green-bright);
  font-size: 1.75rem;
  font-weight: 700;
}

.sc-hero-title {
  font-family: var(--font-display);
  color: var(--sc-green-bright);
  text-shadow: 0 0 20px #00ff4166, 0 0 60px #00ff4126;
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-bottom: .5rem;
  font-size: 3.5rem;
  font-weight: 700;
}

.sc-hero-subtitle {
  font-family: var(--font-terminal);
  color: var(--sc-text-muted);
  letter-spacing: .1em;
  font-size: 1rem;
}

.sc-hero-cta {
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-top: 2.5rem;
  display: flex;
}

.sc-hero-divider {
  font-family: var(--font-terminal);
  color: var(--sc-text-ghost);
  font-size: .75rem;
}

.sc-hero-features {
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 3rem;
  display: flex;
}

.sc-hero-feature {
  background: var(--sc-surface);
  border: 1px solid var(--sc-border);
  border-radius: var(--radius-base);
  font-family: var(--font-mono);
  color: var(--sc-text-muted);
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  font-size: .75rem;
  display: flex;
}

.sc-hero-feature-dot {
  border-radius: 50%;
  width: 6px;
  height: 6px;
}

.sc-hero-feature-dot--green {
  background: var(--sc-green-bright);
}

.sc-hero-feature-dot--cyan {
  background: var(--sc-cyan-bright);
}

.sc-hero-feature-dot--amber {
  background: var(--sc-amber-bright);
}

.sc-auth-page {
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 2rem 1rem;
  display: flex;
  position: relative;
}

.sc-auth-container {
  z-index: 10;
  width: 100%;
  max-width: 480px;
  animation: .4s ease-out slideUp;
  position: relative;
}

.sc-dashboard {
  min-height: 100vh;
  position: relative;
}

.sc-dashboard-header {
  background: var(--sc-base);
  border-bottom: 1px solid var(--sc-border);
  padding: 1.25rem 0;
}

.sc-dashboard-header-inner {
  justify-content: space-between;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
}

.sc-dashboard-title {
  font-family: var(--font-display);
  color: var(--sc-green-bright);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin: 0;
  font-size: 1.5rem;
  font-weight: 700;
}

.sc-dashboard-subtitle {
  font-family: var(--font-terminal);
  color: var(--sc-text-muted);
  letter-spacing: .03em;
  margin: 0;
  font-size: .75rem;
}

.sc-dashboard-main {
  z-index: 10;
  max-width: 1280px;
  margin: 0 auto;
  padding: 1.5rem 1rem;
  position: relative;
}

.sc-footer {
  border-top: 1px solid var(--sc-border);
  margin-top: 3rem;
  padding: 1.5rem 0;
}

.sc-footer-inner {
  text-align: center;
  max-width: 1280px;
  font-family: var(--font-terminal);
  color: var(--sc-text-ghost);
  letter-spacing: .05em;
  margin: 0 auto;
  padding: 0 1rem;
  font-size: .6875rem;
}

.skip-to-main {
  background: var(--sc-green-base);
  color: var(--sc-void);
  z-index: 100;
  padding: 8px;
  text-decoration: none;
  position: absolute;
  top: -40px;
  left: 0;
}

.skip-to-main:focus {
  top: 0;
}

.sr-only {
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  position: absolute;
  overflow: hidden;
}

@media (max-width: 640px) {
  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  h3 {
    font-size: 1.125rem;
  }

  .sc-hero-title {
    font-size: 2.25rem;
  }

  .sc-terminal-body {
    padding: 1rem;
  }

  .sc-nav-inner {
    padding: 0 .75rem;
  }
}

@media print {
  body {
    color: #000;
    background: #fff;
  }

  body:before, body:after {
    display: none;
  }
}

.sc-sidebar {
  background: var(--sc-surface);
  border-right: 1px solid var(--sc-border);
  z-index: 100;
  flex-direction: column;
  width: 240px;
  height: 100vh;
  transition: transform .25s;
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  transform: translateX(-100%);
}

.sc-sidebar--open {
  transform: translateX(0);
}

.sc-sidebar-overlay {
  z-index: 99;
  background: #0009;
  position: fixed;
  inset: 0;
}

.sc-sidebar-brand {
  border-bottom: 1px solid var(--sc-border);
  align-items: center;
  gap: .75rem;
  padding: 1rem 1.25rem;
  display: flex;
}

.sc-sidebar-nav {
  flex-direction: column;
  gap: 2px;
  padding: .75rem .5rem;
  display: flex;
}

.sc-sidebar-item {
  width: 100%;
  font-family: var(--font-mono);
  color: var(--sc-text-secondary);
  cursor: pointer;
  text-align: left;
  background: none;
  border: none;
  border-left: 2px solid #0000;
  border-radius: 0;
  align-items: center;
  gap: .75rem;
  padding: 10px 16px;
  font-size: .8125rem;
  transition: all .15s;
  display: flex;
}

.sc-sidebar-item:hover {
  background: var(--sc-elevated);
  color: var(--sc-text-primary);
}

.sc-sidebar-item--active {
  color: var(--sc-green-bright);
  background: var(--sc-green-dim);
  border-left-color: var(--sc-green-bright);
  box-shadow: inset 4px 0 8px #00ff411a;
}

.sc-sidebar-item-icon {
  width: 16px;
  color: var(--sc-text-muted);
  font-size: .875rem;
  font-family: var(--font-mono);
  text-align: center;
  flex-shrink: 0;
}

.sc-sidebar-item--active .sc-sidebar-item-icon {
  color: var(--sc-green-bright);
}

.sc-sidebar-footer {
  border-top: 1px solid var(--sc-border);
  margin-top: auto;
  padding: 1rem;
}

.sc-sidebar-user {
  align-items: center;
  gap: .75rem;
  padding: .5rem;
  display: flex;
}

.sc-sidebar-user-avatar {
  background: var(--sc-green-dim);
  width: 32px;
  height: 32px;
  color: var(--sc-green-bright);
  font-family: var(--font-mono);
  border-radius: 50%;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  font-size: .8125rem;
  font-weight: 600;
  display: flex;
}

.sc-sidebar-user-name {
  color: var(--sc-text-primary);
  font-size: .75rem;
  font-weight: 600;
  font-family: var(--font-mono);
}

.sc-sidebar-user-tier {
  text-transform: uppercase;
  color: var(--sc-text-muted);
  letter-spacing: .1em;
  font-size: .625rem;
  font-family: var(--font-terminal);
}

.sc-layout-body {
  min-height: calc(100vh - 56px);
  display: flex;
}

.sc-layout-content {
  flex: 1;
  width: 100%;
  padding: 1.5rem;
  overflow-y: auto;
}

.sc-topbar-hamburger {
  border: 1px solid var(--sc-border);
  width: 40px;
  height: 40px;
  color: var(--sc-text-secondary);
  border-radius: var(--radius-base);
  cursor: pointer;
  background: none;
  justify-content: center;
  align-items: center;
  transition: all .15s;
  display: flex;
}

.sc-topbar-hamburger:hover {
  color: var(--sc-text-primary);
  border-color: var(--sc-border-active);
}

.sc-quota-section {
  flex-direction: column;
  gap: 1rem;
  display: flex;
}

.sc-quota-card {
  background: var(--sc-surface);
  border: 1px solid var(--sc-border);
  border-radius: var(--radius-md);
  padding: 1.25rem;
}

.sc-quota-header {
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: .5rem;
  display: flex;
}

.sc-quota-label {
  font-size: .6875rem;
  font-family: var(--font-mono);
  color: var(--sc-text-muted);
  text-transform: uppercase;
  letter-spacing: .1em;
}

.sc-quota-value {
  font-family: var(--font-mono);
  color: var(--sc-green-bright);
  font-size: .8125rem;
}

.sc-quota-bar {
  background: var(--sc-elevated);
  border: 1px solid var(--sc-border);
  border-radius: var(--radius-sm);
  height: 6px;
  overflow: hidden;
}

.sc-quota-fill {
  height: 100%;
  transition: width .3s;
}

.sc-quota-meta {
  color: var(--sc-text-muted);
  font-size: .6875rem;
  font-family: var(--font-terminal);
  margin-top: .375rem;
}

.sc-section-divider {
  border: none;
  border-top: 1px solid var(--sc-border);
  text-align: center;
  margin: 2rem 0;
  position: relative;
}

.sc-section-divider:before {
  content: attr(data-label);
  background: var(--sc-base);
  font-family: var(--font-terminal);
  color: var(--sc-text-ghost);
  white-space: nowrap;
  padding: 0 .75rem;
  font-size: .65rem;
  position: absolute;
  top: -.6rem;
  left: 50%;
  transform: translateX(-50%);
}

@media (min-width: 769px) {
  .sc-sidebar {
    transform: translateX(0);
  }

  .sc-sidebar-overlay {
    display: none;
  }

  .sc-layout-content {
    margin-left: 240px;
  }

  .sc-topbar-hamburger {
    display: none;
  }
}

/*# sourceMappingURL=src_styles_globals_0fuav90.css.map*/