/*
 * QGENX Shared Theme
 * Common design tokens across qfluenx.nz, qgenx.co.nz, and coalescent.qgenx.co.nz
 * Created: 2026-03-09
 */

:root {
  --brand-darkest: #0a1628;
  --brand-dark: #0f172a;
  --brand-navy: #1e293b;
  --brand-blue-deep: #1e3a5f;
  --brand-primary: #1e40af;
  --brand-secondary: #3b82f6;
  --brand-accent: #60a5fa;
  --brand-glow: rgba(59, 130, 246, 0.12);
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --white: #ffffff;
  --status-active: #2bb673;
  --status-coming: #f59e0b;
  --status-private: #ef4444;
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --shadow-card: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 12px 32px rgba(0, 0, 0, 0.3);
  --shadow-glow: 0 0 40px rgba(59, 130, 246, 0.25);
}

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

body {
  font-family: var(--font-family);
  background: var(--brand-dark);
  color: var(--white);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.bg-gradient {
  position: fixed;
  inset: 0;
  z-index: 0;
  background: linear-gradient(135deg, var(--brand-dark) 0%, var(--brand-navy) 40%, var(--brand-blue-deep) 70%, var(--brand-dark) 100%);
}
.bg-gradient::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, var(--brand-glow) 0%, transparent 70%);
}

.site-footer {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 2rem;
  color: var(--gray-500);
  font-size: 0.75rem;
  margin-top: auto;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
