/*
Theme Name: Future-Tech OS
Author: Lead Architect
Version: 1.0
Description: Ultra-modern, high-performance technical theme.
*/

:root {
  /* Surface Palette */
  --surface: #0d1515;
  --surface-bright: #333b3b;
  --on-surface: #dce4e5;
  --outline: #849495;
  
  /* Accents */
  --primary: #00f0ff; /* Electric Cyan */
  --secondary: #b600f8; /* Neon Violet */
  --error: #ffb4ab;
  
  /* Glass Effects */
  --glass-bg: rgba(25, 33, 34, 0.75);
  --glass-blur: blur(12px);
  --glass-border: rgba(255, 255, 255, 0.1);
}

body {
  background-color: var(--surface);
  color: var(--on-surface);
  font-family: 'Inter', sans-serif;
  margin: 0;
  line-height: 1.5;
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-top: 0;
}

/* Bento Grid System */
.bento-container {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
}

.bento-card {
  grid-column: span 6;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: 1rem;
  padding: 24px;
  transition: all 0.2s ease-out;
}

.bento-card:hover {
  border-color: var(--primary);
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.4);
}

/* Buttons */
.btn-nexus {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 9999px;
  background: rgba(0, 240, 255, 0.1);
  border: 1px solid var(--primary);
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  transition: 150ms ease-out;
}

.btn-nexus:hover {
  background: var(--primary);
  color: #00363a;
  box-shadow: 0 0 20px var(--primary);
}