/* ============================================================
   CONTENT ORACLE — VANILLA POWER DESIGN SYSTEM
   Paleta: Índigo + Púrpura oscuro | Glassmorphism | Inter Font
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ─── VARIABLES ─────────────────────────────────────────────── */
:root {
  --bg-dark:       #0a0b14;
  --bg-surface:    #0f1124;
  --bg-card:       rgba(255, 255, 255, 0.04);
  --bg-card-hover: rgba(255, 255, 255, 0.07);

  --indigo-900: #1e1b4b;
  --indigo-800: #312e81;
  --indigo-700: #3730a3;
  --indigo-600: #4f46e5;
  --indigo-500: #6366f1;
  --indigo-400: #818cf8;
  --indigo-300: #a5b4fc;

  --purple-600: #9333ea;
  --purple-500: #a855f7;
  --purple-400: #c084fc;

  --green-600: #16a34a;
  --green-500: #22c55e;
  --green-400: #4ade80;

  --amber-600: #d97706;
  --amber-500: #f59e0b;
  --amber-400: #fbbf24;

  --red-700: #b91c1c;
  --red-600: #dc2626;
  --red-500: #ef4444;
  --red-400: #f87171;

  --gray-800: #1f2937;
  --gray-700: #374151;
  --gray-600: #4b5563;
  --gray-500: #6b7280;
  --gray-400: #9ca3af;
  --gray-300: #d1d5db;
  --gray-200: #e5e7eb;
  --gray-100: #f3f4f6;

  --text-primary:   #f1f5f9;
  --text-secondary: #94a3b8;
  --text-muted:     #64748b;

  --border-color: rgba(255, 255, 255, 0.08);
  --border-accent: rgba(99, 102, 241, 0.4);

  --shadow-sm:  0 1px 3px rgba(0,0,0,0.4);
  --shadow-md:  0 4px 16px rgba(0,0,0,0.5);
  --shadow-lg:  0 10px 40px rgba(0,0,0,0.6);
  --shadow-indigo: 0 0 30px rgba(99, 102, 241, 0.2);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  --transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── RESET & BASE ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-dark);
  color: var(--text-primary);
  min-height: 100vh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--indigo-400); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--indigo-300); }

/* ─── SCROLLBAR ──────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--bg-surface); }
::-webkit-scrollbar-thumb { background: var(--indigo-800); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--indigo-600); }

/* ─── LAYOUT ─────────────────────────────────────────────────── */
.page-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.main-content {
  flex: 1;
  padding: 2rem;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

/* ─── NAVBAR ─────────────────────────────────────────────────── */
.navbar {
  background: rgba(10, 11, 20, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
  padding: 0 2rem;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-primary);
  text-decoration: none;
}

.navbar-brand .brand-icon {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--indigo-600), var(--purple-600));
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}

.navbar-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}

.navbar-nav a {
  color: var(--text-secondary);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  text-decoration: none;
}

.navbar-nav a:hover,
.navbar-nav a.active {
  color: var(--text-primary);
  background: var(--bg-card-hover);
}

.navbar-nav a.active { color: var(--indigo-400); }

/* ─── PAGE HEADER ────────────────────────────────────────────── */
.page-header {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 2rem;
}

.page-header-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.page-title {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--text-primary) 0%, var(--indigo-300) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-subtitle {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-top: 0.25rem;
}

/* ─── CARDS ──────────────────────────────────────────────────── */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
  transition: var(--transition);
}

.card:hover { border-color: var(--border-accent); }

.card-header {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.card-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.card-description {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

.card-body { padding: 1.5rem; }

/* Stat cards */
.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.stat-card.indigo::before { background: linear-gradient(90deg, var(--indigo-600), var(--purple-600)); }
.stat-card.green::before  { background: linear-gradient(90deg, var(--green-600), var(--green-400)); }
.stat-card.gray::before   { background: linear-gradient(90deg, var(--gray-600), var(--gray-400)); }

.stat-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-indigo);
  border-color: var(--border-accent);
}

.stat-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}

.stat-value {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  line-height: 1;
}

.stat-value.indigo { color: var(--indigo-400); }
.stat-value.green  { color: var(--green-400); }

.stat-helper {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

/* ─── BUTTONS ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn:disabled {
  opacity: 0.5;
  pointer-events: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--indigo-600), var(--purple-600));
  color: #fff;
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(99, 102, 241, 0.45);
}

.btn-danger {
  background: linear-gradient(135deg, var(--red-700), var(--red-500));
  color: #fff;
  box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
}

.btn-danger:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(220, 38, 38, 0.45);
}

.btn-outline {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border-color);
}

.btn-outline:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-accent);
  color: var(--text-primary);
}

.btn-ghost {
  background: transparent;
  color: var(--indigo-400);
  border: none;
}

.btn-ghost:hover {
  background: rgba(99, 102, 241, 0.1);
  color: var(--indigo-300);
}

.btn-sm {
  padding: 0.375rem 0.75rem;
  font-size: 0.8rem;
}

.btn-lg {
  padding: 0.875rem 2rem;
  font-size: 1rem;
}

/* ─── BADGES ─────────────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.65rem;
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.badge-indigo    { background: rgba(99,102,241,0.15); color: var(--indigo-400); border: 1px solid rgba(99,102,241,0.25); }
.badge-green     { background: rgba(34,197,94,0.12);  color: var(--green-400);  border: 1px solid rgba(34,197,94,0.2); }
.badge-amber     { background: rgba(245,158,11,0.12); color: var(--amber-400);  border: 1px solid rgba(245,158,11,0.2); }
.badge-red       { background: rgba(239,68,68,0.12);  color: var(--red-400);    border: 1px solid rgba(239,68,68,0.2); }
.badge-gray      { background: rgba(107,114,128,0.12);color: var(--gray-400);   border: 1px solid rgba(107,114,128,0.2); }
.badge-purple    { background: rgba(168,85,247,0.12); color: var(--purple-400); border: 1px solid rgba(168,85,247,0.2); }

/* ─── INPUTS ─────────────────────────────────────────────────── */
.input-group { display: flex; flex-direction: column; gap: 0.5rem; }

.input-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.input {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  padding: 0.625rem 1rem;
  transition: var(--transition);
  width: 100%;
  outline: none;
}

.input:focus {
  border-color: var(--indigo-500);
  background: rgba(99,102,241,0.05);
  box-shadow: 0 0 0 3px rgba(99,102,241,0.1);
}

.input::placeholder { color: var(--text-muted); }

.input-with-icon { position: relative; }
.input-with-icon .input { padding-left: 2.5rem; }
.input-with-icon .input-icon {
  position: absolute;
  left: 0.875rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  pointer-events: none;
}

.textarea {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  padding: 1.25rem;
  transition: var(--transition);
  width: 100%;
  outline: none;
  resize: vertical;
  min-height: 500px;
  line-height: 1.8;
}

.textarea:focus {
  border-color: var(--indigo-500);
  box-shadow: 0 0 0 3px rgba(99,102,241,0.08);
}

.textarea::placeholder { color: var(--text-muted); }

/* ─── PROGRESS BAR ───────────────────────────────────────────── */
.progress-bar {
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-full);
  height: 6px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  border-radius: var(--radius-full);
  background: linear-gradient(90deg, var(--indigo-600), var(--purple-500));
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.progress-fill.green  { background: linear-gradient(90deg, var(--green-600), var(--green-400)); }
.progress-fill.amber  { background: linear-gradient(90deg, var(--amber-600), var(--amber-400)); }
.progress-fill.red    { background: linear-gradient(90deg, var(--red-700), var(--red-500)); }

/* ─── TABLE ──────────────────────────────────────────────────── */
.table-wrapper {
  overflow-x: auto;
  border-radius: var(--radius-md);
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}

thead th {
  background: rgba(255,255,255,0.03);
  color: var(--text-muted);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.875rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border-color);
}

thead th.text-right { text-align: right; }
thead th.text-center { text-align: center; }

tbody tr {
  border-bottom: 1px solid var(--border-color);
  transition: var(--transition);
}

tbody tr:last-child { border-bottom: none; }

tbody tr:hover { background: var(--bg-card-hover); }

tbody tr.row-critical {
  background: rgba(239, 68, 68, 0.05);
  border-left: 3px solid var(--red-500);
}

tbody tr.row-critical:hover { background: rgba(239, 68, 68, 0.09); }

tbody tr.row-warning {
  background: rgba(245, 158, 11, 0.04);
  border-left: 3px solid var(--amber-500);
}

tbody tr.row-warning:hover { background: rgba(245, 158, 11, 0.08); }

td {
  padding: 1rem;
  color: var(--text-primary);
  vertical-align: middle;
}

td.text-right { text-align: right; }
td.text-center { text-align: center; }

/* ─── GRID HELPERS ───────────────────────────────────────────── */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }

@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .page-header-row { flex-direction: column; }
  .main-content { padding: 1rem; }
  .page-title { font-size: 1.5rem; }
}

.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.flex-1 { flex: 1; }
.flex-wrap { flex-wrap: wrap; }

.text-sm { font-size: 0.875rem; }
.text-xs { font-size: 0.75rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }
.font-mono { font-family: 'Courier New', monospace; }
.text-muted { color: var(--text-muted); }
.text-secondary { color: var(--text-secondary); }
.text-indigo { color: var(--indigo-400); }
.text-green { color: var(--green-400); }
.text-amber { color: var(--amber-400); }
.text-red { color: var(--red-400); }
.truncate { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; max-width: 280px; }

.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }

.w-full { width: 100%; }
.hidden { display: none; }

/* ─── EMPTY STATE ────────────────────────────────────────────── */
.empty-state {
  text-align: center;
  padding: 3rem 2rem;
  color: var(--text-muted);
  border: 2px dashed var(--border-color);
  border-radius: var(--radius-lg);
}

.empty-state .empty-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.empty-state h3 { color: var(--text-secondary); font-size: 1rem; margin-bottom: 0.5rem; }
.empty-state p { font-size: 0.8rem; margin-bottom: 1.25rem; }

/* ─── LOADING SPINNER ────────────────────────────────────────── */
.spinner {
  width: 22px; height: 22px;
  border: 3px solid rgba(255,255,255,0.15);
  border-top-color: var(--indigo-400);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  display: inline-block;
}

@keyframes spin { to { transform: rotate(360deg); } }

.loading-overlay {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 3rem;
  color: var(--text-secondary);
}

/* ─── TOAST / NOTIFICATION ───────────────────────────────────── */
#toast-container {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.toast {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  min-width: 280px;
  max-width: 360px;
  box-shadow: var(--shadow-lg);
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  animation: slideIn 0.25s ease-out;
}

.toast.success { border-left: 3px solid var(--green-500); }
.toast.error   { border-left: 3px solid var(--red-500); }
.toast.info    { border-left: 3px solid var(--indigo-500); }

.toast-title { font-size: 0.875rem; font-weight: 700; color: var(--text-primary); }
.toast-desc  { font-size: 0.8rem; color: var(--text-secondary); margin-top: 0.1rem; }

@keyframes slideIn {
  from { opacity: 0; transform: translateX(30px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* ─── INFO BOX / CALLOUT ─────────────────────────────────────── */
.callout {
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  border-left: 3px solid;
  font-size: 0.85rem;
}

.callout-indigo { background: rgba(99,102,241,0.08); border-color: var(--indigo-500); color: var(--indigo-300); }
.callout-red    { background: rgba(239,68,68,0.08);  border-color: var(--red-500);    color: var(--red-400); }
.callout-purple { background: rgba(168,85,247,0.08); border-color: var(--purple-500); color: var(--purple-400); }
.callout-green  { background: rgba(34,197,94,0.08);  border-color: var(--green-500);  color: var(--green-400); }

.callout-title {
  font-weight: 700;
  font-size: 0.8rem;
  margin-bottom: 0.4rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

/* ─── TREND INDICATORS ───────────────────────────────────────── */
.trend-up   { color: var(--green-400); font-weight: 700; }
.trend-down { color: var(--red-400);   font-weight: 700; }
.trend-flat { color: var(--text-muted); }

/* ─── SCORE DISPLAY ──────────────────────────────────────────── */
.score-display {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.score-number {
  font-size: 3.5rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  line-height: 1;
}

.score-grade {
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-full);
  font-size: 1.25rem;
  font-weight: 900;
  color: white;
}

.grade-aplus  { background: linear-gradient(135deg, #16a34a, #22c55e); }
.grade-a      { background: linear-gradient(135deg, #15803d, #16a34a); }
.grade-b      { background: linear-gradient(135deg, #a16207, #eab308); }
.grade-c      { background: linear-gradient(135deg, #c2410c, #f97316); }
.grade-d      { background: linear-gradient(135deg, #b91c1c, #ef4444); }
.grade-f      { background: linear-gradient(135deg, #7f1d1d, #b91c1c); }

/* ─── VERSION HISTORY ITEM ───────────────────────────────────── */
.version-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
  cursor: pointer;
  transition: var(--transition);
}

.version-item:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-accent);
}

/* ─── EDITOR LAYOUT ──────────────────────────────────────────── */
.editor-layout {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.editor-main { flex: 1; min-width: 0; }
.editor-sidebar { width: 300px; flex-shrink: 0; display: flex; flex-direction: column; gap: 1.25rem; }

@media (max-width: 900px) {
  .editor-layout { flex-direction: column; }
  .editor-sidebar { width: 100%; }
}

/* ─── MONITOR LAYOUT ─────────────────────────────────────────── */
.monitor-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 1.5rem;
  align-items: start;
}

@media (max-width: 900px) {
  .monitor-layout { grid-template-columns: 1fr; }
}

/* ─── HERO (landing) ─────────────────────────────────────────── */
.hero {
  text-align: center;
  padding: 4rem 2rem;
  max-width: 700px;
  margin: 0 auto;
}

.hero-logo {
  font-size: 3.5rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, var(--indigo-400), var(--purple-400), #60a5fa);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s ease infinite;
  margin-bottom: 1rem;
}

@keyframes shimmer {
  0%, 100% { background-position: 0% 50%; }
  50%       { background-position: 100% 50%; }
}

.hero-tagline {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  font-weight: 400;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  text-align: left;
  max-width: 1000px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .features-grid { grid-template-columns: 1fr; }
  .hero-logo { font-size: 2.5rem; }
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: var(--transition);
}

.feature-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-3px);
  box-shadow: var(--shadow-indigo);
}

.feature-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.feature-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.feature-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.feature-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.75rem;
}
