/* MotoZeka - Custom Enterprise Aesthetic (No-AI Generic Clutter) */

:root {
  --primary-color: #0f172a;
  --accent-blue: #0284c7;
  --accent-indigo: #4338ca;
  --text-dark: #0f172a;
  --text-muted: #475569;
  --bg-color: #ffffff;
  --bg-subtle: #fafafa;
  --white: #ffffff;
  --border-color: #e2e8f0;
  --border-subtle: #f1f5f9;
  --shadow-card: 0 1px 3px 0 rgba(15, 23, 42, 0.05), 0 10px 30px -10px rgba(15, 23, 42, 0.08);
  --shadow-hero: 0 20px 40px -15px rgba(15, 23, 42, 0.12);
}

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

body {
  background-color: var(--bg-color);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Segoe UI", Roboto, sans-serif;
  -webkit-font-smoothing: antialiased;
}

/* Typography */
h1, h2, h3, h4 {
  font-family: 'Outfit', -apple-system, sans-serif;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text-dark);
}

h1 {
  font-size: 3.75rem;
  line-height: 1.1;
  margin-bottom: 1.25rem;
}

h2 {
  font-size: 2.25rem;
  margin-bottom: 0.75rem;
  text-align: center;
}

p {
  color: var(--text-muted);
  font-size: 1.1rem;
}

/* Clean Micro Grid Pattern (No AI Blobs) */
.bg-mesh {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(#e2e8f0 0.8px, transparent 0.8px);
  background-size: 24px 24px;
  opacity: 0.6;
  z-index: -1;
  pointer-events: none;
}

/* Utilities */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.text-gradient {
  color: var(--text-dark);
}

/* Navigation */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 1.25rem 0;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  z-index: 1000;
  transition: all 0.2s ease;
}

nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-dark);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  letter-spacing: -0.02em;
}

.logo-symbol {
  width: 32px;
  height: 32px;
  background: #0f172a;
  color: white;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 900;
  letter-spacing: 0;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--text-dark);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.25rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
  border: 1px solid transparent;
}

.btn-primary {
  background: #0f172a;
  color: var(--white);
}

.btn-primary:hover {
  background: #1e293b;
  transform: translateY(-1px);
}

.btn-outline {
  background: var(--white);
  color: var(--text-dark);
  border: 1px solid var(--border-color);
}

.btn-outline:hover {
  background: var(--bg-subtle);
  border-color: #cbd5e1;
}

/* Hero Section */
.hero {
  padding: 8.5rem 0 4.5rem 0;
  position: relative;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.3rem 0.85rem;
  background: #f1f5f9;
  color: #334155;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  letter-spacing: 0.04em;
  border: 1px solid #e2e8f0;
}

.hero .container {
  display: flex;
  align-items: center;
  gap: 3.5rem;
}

.hero-content {
  flex: 1;
}

.hero-content p {
  margin-bottom: 2rem;
  font-size: 1.15rem;
  line-height: 1.65;
}

.hero-buttons {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.hero-image-wrapper {
  flex: 1.15;
  position: relative;
}

.hero-image {
  width: 100%;
  border-radius: 16px;
  box-shadow: var(--shadow-hero);
  position: relative;
  z-index: 2;
  border: 1px solid var(--border-color);
}

/* Features Section - Clean Cards */
.features {
  padding: 5rem 0;
  background: var(--bg-subtle);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
  max-width: 680px;
  margin-inline: auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.feature-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid var(--border-color);
  transition: all 0.2s ease;
  box-shadow: 0 1px 2px 0 rgba(0,0,0,0.03);
}

.feature-card:hover {
  border-color: #cbd5e1;
  box-shadow: var(--shadow-card);
}

.feature-icon-svg {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  color: #0f172a;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.feature-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.feature-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* AI Insights / Core Engine Section */
.ai-insights {
  padding: 5rem 0;
  background: var(--white);
}

.ai-insights .container {
  display: flex;
  align-items: center;
  gap: 3.5rem;
}

.ai-image-wrapper {
  flex: 1.15;
}

.ai-image {
  width: 100%;
  border-radius: 16px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-color);
}

.ai-content {
  flex: 1;
}

.ai-list {
  list-style: none;
  margin-top: 1.75rem;
}

.ai-list li {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.ai-list-icon-svg {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: #f1f5f9;
  color: #0f172a;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ai-list h4 {
  font-size: 1.05rem;
  margin-bottom: 0.2rem;
}

.ai-list p {
  font-size: 0.9rem;
}

/* App Screens Section */
.app-screens {
  padding: 5rem 0;
  background: var(--bg-subtle);
}

/* Footer */
footer {
  background: #0f172a;
  color: #94a3b8;
  padding: 3.5rem 0 2rem 0;
}

.footer-logo {
  color: var(--white);
  font-size: 1.35rem;
  font-weight: 800;
  text-decoration: none;
}

.footer-bottom {
  border-top: 1px solid #1e293b;
  padding-top: 1.75rem;
  margin-top: 2.5rem;
  text-align: center;
}

@media (max-width: 992px) {
  
  .ai-list li {
    text-align: left;
  }
}

@media (max-width: 768px) {
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }
  .nav-links { display: none; }
}

/* Animations */
.fade-in-up {
  animation: fadeInUp 0.8s ease forwards;
  opacity: 0;
  transform: translateY(20px);
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
