/* Streamliner unified design tokens and minimal component styles */

:root {
  /* Brand colors */
  --primary: #6D10E0;
  --primary-hover: #5a0fc0;
  --primary-light: #8030f0;
  --primary-dark: #4a0a9f;

  /* Surfaces & backgrounds */
  --background: #0B0B10;
  --surface: #12121A;
  --surface-hover: #1A1A22;
  --border: #23232C;

  /* Text */
  --text-primary: #FFFFFF;
  --text-secondary: #C9CAD1;

  /* Accents */
  --success: #22C55E;
  --warning: #F59E0B;
  --danger: #EF4444;

  /* Radii & shadows */
  --radius: 12px;
  --shadow-purple: 0 4px 14px rgba(109, 16, 224, 0.30);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  font-weight: 500;
  line-height: 1.2;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, transform 0.05s ease;
}

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

.btn:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(109, 16, 224, 0.35);
}

.btn:active {
  transform: translateY(1px);
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: var(--shadow-purple);
}

.btn-primary:hover {
  background: var(--primary-hover);
}

.btn-secondary {
  background: var(--surface);
  color: var(--text-primary);
  border-color: var(--border);
}

.btn-secondary:hover {
  background: var(--surface-hover);
}

/* Inputs (opt-in) */
.input {
  background: var(--surface);
  color: var(--text-primary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.625rem 0.875rem;
}

.input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(109, 16, 224, 0.25);
}


