/* base.css - GabeHost */
:root {
  --primary: #6366f1;
  --primary-dark: #4f46e5;
  --accent: #06b6d4;
  --bg-dark: #0f172a;
  --bg-card: rgba(30, 41, 59, 0.7);
  --border-color: rgba(51, 65, 85, 0.5);
  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --success: #10b981;
}

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

body {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  scroll-behavior: smooth;
  background-color: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.5;
}

.gradient-text {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Layout Utilities */
.max-w-7xl { max-width: 80rem; margin-left: auto; margin-right: auto; }
.max-w-3xl { max-width: 48rem; margin-left: auto; margin-right: auto; }
.mx-auto { margin-left: auto; margin-right: auto; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.pt-20 { padding-top: 5rem; }
.pt-8 { padding-top: 2rem; }
.pb-6 { padding-bottom: 1.5rem; }
.pb-20 { padding-bottom: 5rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mt-6 { margin-top: 1.5rem; }

.grid { display: grid; }
.gap-4 { gap: 1rem; }
.gap-12 { gap: 3rem; }
.flex { display: flex; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.space-x-2 > :not([hidden]) ~ :not([hidden]) { margin-left: 0.5rem; }
.space-y-4 > :not([hidden]) ~ :not([hidden]) { margin-top: 1rem; }

@media (min-width: 640px) {
  .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sm\:flex-row { flex-direction: row; }
}
@media (min-width: 1024px) {
  .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .lg\:col-span-2 { grid-column: span 2 / span 2; }
}

.flex-col { flex-direction: column; }
.flex-row { flex-direction: row; }

/* Typography */
.text-xs { font-size: 0.75rem; }
.text-sm { font-size: 0.875rem; }
.text-lg { font-size: 1.125rem; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 1.875rem; }
.text-4xl { font-size: 2.25rem; }
.text-5xl { font-size: 3rem; }
.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }
.font-semibold { font-weight: 600; }
.text-center { text-align: center; }
.italic { font-style: italic; }

/* Colors */
.text-white { color: #ffffff; }
.text-gray-200 { color: #e5e7eb; }
.text-gray-300 { color: #d1d5db; }
.text-gray-400 { color: #9ca3af; }
.text-gray-500 { color: #9ca3af; } /* Improved contrast (gray-400 equivalent) */
.text-indigo-500 { color: var(--primary); }
.text-cyan-400 { color: var(--accent); }
.text-green-400 { color: var(--success); }
.bg-indigo-600 { background-color: var(--primary-dark); }
.bg-gray-950 { background-color: #020617; }
.bg-gray-900 { background-color: #0f172a; }
.bg-gray-800 { background-color: #1e293b; }

/* Borders */
.border { border: 1px solid; }
.border-2 { border-width: 2px; }
.border-gray-800 { border-color: #1e293b; }
.border-indigo-500 { border-color: var(--primary); }
.rounded-full { border-radius: 9999px; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-lg { border-radius: 0.5rem; }

section {
  position: relative;
  z-index: 10;
}


/* Additional Restoration Utilities */
.feature-icon { width: 1.5rem; height: 1.5rem; color: var(--primary); }
.feature-icon-wrapper { position: relative; width: 3.5rem; height: 3.5rem; display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; }

/* Hero Improvements */
.hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 8rem;
  padding-bottom: 6rem;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-title { 
  font-size: 3rem; 
  font-weight: 800; 
  line-height: 1.1; 
  text-align: center; 
  margin-bottom: 1.5rem; 
  color: #ffffff; 
  max-width: 900px;
}

.hero-subtitle { 
  font-size: 1.25rem; 
  color: var(--text-secondary); 
  text-align: center; 
  max-width: 700px; 
  margin: 0 auto 2.5rem auto; 
  line-height: 1.6;
}

@media (min-width: 768px) {
  .hero-title { font-size: 4.5rem; }
}

.feature-card:hover { border-color: rgba(99, 102, 241, 0.5); transform: translateY(-4px); }
.feature-card-glow { position: absolute; inset: 0; background: radial-gradient(circle at center, rgba(99, 102, 241, 0.15) 0%, transparent 70%); opacity: 0; transition: opacity 0.4s; }
.feature-card:hover .feature-card-glow { opacity: 1; }
.feature-card-title { font-size: 1.25rem; font-weight: 600; margin-bottom: 1rem; color: #ffffff; }
.feature-card-desc { font-size: 0.875rem; color: var(--text-secondary); line-height: 1.6; }
.feature-card-stat { margin-top: 1.5rem; display: flex; align-items: baseline; gap: 0.5rem; }
.stat-value { font-size: 1.5rem; font-weight: 700; color: var(--primary); }
.stat-label { font-size: 0.75rem; color: var(--text-secondary); text-transform: uppercase; letter-spacing: 0.05em; }

