/*
Theme Name: Agentic VAI
Theme URI: https://agenticvai.com
Author: Agentic VAI Team
Author URI: https://agenticvai.com
Description: Premium modern AI Voice Agent website theme for WordPress. Built with high-performance responsive layout, interactive voice simulator, pricing toggle, and WordPress Customizer integration.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: agentic-vai
Tags: custom-theme, ai-voice, landing-page, responsive, dark-mode, business, modern
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=JetBrains+Mono:wght@400;500;700&display=swap');

:root {
  --background: #FAFAFA;
  --foreground: #111111;
  --secondary: #666666;
  --border: #EAEAEA;
  --card-bg: #FFFFFF;
  --accent-indigo: #6366F1;
  --accent-violet: #8B5CF6;
  --accent-blue: #3B82F6;
  --ring-glow: rgba(99, 102, 241, 0.15);
}

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--background);
  color: var(--foreground);
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  overflow-x: hidden;
  letter-spacing: -0.015em;
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}

/* Custom Grid & Dot Background Patterns */
.bg-grid-pattern {
  background-image: radial-gradient(circle at 1px 1px, rgba(17, 17, 17, 0.05) 1px, transparent 0);
  background-size: 24px 24px;
}

.bg-dot-grid {
  background-image: radial-gradient(rgba(99, 102, 241, 0.15) 1px, transparent 1px);
  background-size: 20px 20px;
}

/* Glassmorphism utility */
.glass-border {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(234, 234, 234, 0.8);
  box-shadow: 0 4px 20px -2px rgba(0, 0, 0, 0.03);
}

.dark-glass {
  background: rgba(17, 24, 39, 0.7);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Subtle glow card */
.glow-card {
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.glow-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px -4px rgba(99, 102, 241, 0.12), 0 0 0 1px rgba(99, 102, 241, 0.25);
}

/* AI Voice Orb Animations */
@keyframes orbPulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 40px rgba(99, 102, 241, 0.25), inset 0 0 20px rgba(139, 92, 246, 0.3);
  }
  50% {
    transform: scale(1.06);
    box-shadow: 0 0 65px rgba(99, 102, 241, 0.45), inset 0 0 35px rgba(139, 92, 246, 0.55);
  }
}

@keyframes waveBar {
  0%, 100% { height: 8px; }
  50% { height: 36px; }
}

.animate-orb {
  animation: orbPulse 4s ease-in-out infinite;
}

/* Custom Scrollbars */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-track {
  background: #FAFAFA;
}
::-webkit-scrollbar-thumb {
  background: #D1D5DB;
  border-radius: 9999px;
}
::-webkit-scrollbar-thumb:hover {
  background: #9CA3AF;
}

/* WordPress Admin Bar Compatibility */
body.admin-bar header.wp-header-nav {
  top: 32px;
}
@media screen and (max-width: 782px) {
  body.admin-bar header.wp-header-nav {
    top: 46px;
  }
}
