/*
 * Canonical design tokens for Maasloop Tools, mirroring
 * jsonlang/app/src/theme/tokens.js for plain-HTML pages that don't go
 * through the React build (landing page, login page). Keep both in sync.
 */
:root {
  --color-bg: #0F1117;
  --color-surface: #1A1D27;
  --color-border: rgba(255, 255, 255, 0.07);
  --color-primary: #6C63FF;
  --color-primary-light: #9D96FF;
  --color-primary-dark: #4A42CC;
  --color-secondary: #FF6584;
  --color-text: #E8EAF0;
  --color-text-muted: #8B90A7;
  --color-success: #43C59E;
  --color-warning: #FFB74D;
  --color-error: #F06292;
  --font-sans: "Inter", "Roboto", system-ui, sans-serif;
  --radius: 10px;
}

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

body {
  font-family: var(--font-sans);
  background: var(--color-bg);
  color: var(--color-text);
  min-height: 100vh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

.card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
}

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

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--color-primary);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 0.65rem 1.25rem;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.15s ease;
}

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

.wordmark {
  font-weight: 700;
  font-size: 1.6rem;
  letter-spacing: -0.02em;
  color: var(--color-text);
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 0.15em;
}

.wordmark-accent { color: var(--color-primary); }

.wordmark-tools {
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-left: 0.5rem;
}

.radial-glow {
  background: radial-gradient(ellipse at 50% 0%, rgba(108, 99, 255, 0.15) 0%, transparent 70%);
}
