:root {
  --brand-blue:#3b82f6;
  --brand-teal:#14b8a6;
  --brand-blue-600:#2563eb;
  --brand-teal-600:#0d9488;
  --surface-0:#ffffff;
  --surface-1:#fafbfc;
  --text-primary:#0f172a;
  --text-secondary:#475569;
  --text-weak:#64748b;
  --border-color:#e2e8f0;
  --shadow-sm:0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md:0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg:0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

* {
  box-sizing: border-box;
}

body {
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, sans-serif;
  background-color: var(--surface-0);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Modern Navbar */
.navbar-blur {
  backdrop-filter: blur(20px) saturate(180%);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.navbar .navbar-brand, .navbar .nav-link {
  color: var(--text-primary);
  font-weight: 500;
  transition: color 0.2s ease;
}

.navbar .nav-link:hover {
  color: var(--brand-blue);
}

/* Modern Hero Section */
.hero {
  padding-top: 120px;
  padding-bottom: 80px;
  min-height: auto;
  background: var(--surface-0);
  display: flex;
  align-items: center;
}

.hero h1 {
  font-family: "DM Sans", sans-serif;
  letter-spacing: -0.03em;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

.gradient-text {
  background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-teal) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Modern Sections - Clean and Minimal */
section {
  background-color: var(--surface-0);
  padding: 60px 0;
  position: relative;
}

section h2 {
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

section.section-muted {
  background-color: var(--surface-1);
}

/* Modern Cards - Ultra Modern Digital Design for All Boxes */
.card-neo,
.border.rounded-4,
.border.rounded {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(59, 130, 246, 0.15) !important;
  border-radius: 20px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06), 0 0 0 1px rgba(255, 255, 255, 0.5) inset, 0 1px 0 rgba(255, 255, 255, 0.8) inset;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.card-neo::before,
.border.rounded-4::before,
.border.rounded::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--brand-blue) 20%, var(--brand-teal) 50%, var(--brand-blue) 80%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.card-neo::after,
.border.rounded-4::after,
.border.rounded::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.card-neo:hover,
.border.rounded-4:hover,
.border.rounded:hover {
  background: rgba(255, 255, 255, 0.95);
  border-color: var(--brand-blue) !important;
  box-shadow: 0 16px 48px rgba(59, 130, 246, 0.15), 0 0 0 1px rgba(59, 130, 246, 0.25) inset, 0 1px 0 rgb(255, 255, 255) inset, 0 0 30px rgba(59, 130, 246, 0.1);
  transform: translateY(-6px) scale(1.01);
}

.card-neo:hover::before,
.border.rounded-4:hover::before,
.border.rounded:hover::before {
  opacity: 1;
}

.card-neo:hover::after,
.border.rounded-4:hover::after,
.border.rounded:hover::after {
  opacity: 1;
}

/* Hero specific card enhancements - Ultra Modern Digital Design */
.hero .card-neo {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(255, 255, 255, 0.5) inset, 0 1px 0 rgba(255, 255, 255, 0.8) inset;
  position: relative;
  overflow: hidden;
}

.hero .card-neo::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--brand-blue) 20%, var(--brand-teal) 50%, var(--brand-blue) 80%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  animation: shimmer 3s infinite;
}

.hero .card-neo::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.hero .card-neo:hover {
  background: rgba(255, 255, 255, 0.9);
  border-color: var(--brand-blue);
  box-shadow: 0 20px 60px rgba(59, 130, 246, 0.2), 0 0 0 1px rgba(59, 130, 246, 0.3) inset, 0 1px 0 rgb(255, 255, 255) inset, 0 0 40px rgba(59, 130, 246, 0.15);
  transform: translateY(-8px) scale(1.02);
}

.hero .card-neo:hover::before {
  opacity: 1;
}

.hero .card-neo:hover::after {
  opacity: 1;
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}
/* General border - apply modern effects if not already styled */
.border:not(.rounded-4):not(.rounded) {
  border: 1px solid var(--border-color) !important;
  border-radius: 12px;
  background: var(--surface-0);
  transition: all 0.2s ease;
}

.border:not(.rounded-4):not(.rounded):hover {
  border-color: var(--brand-blue);
  box-shadow: var(--shadow-md);
}

/* Features section - Ultra Modern Digital Design */
section#features .border {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(59, 130, 246, 0.15) !important;
  border-radius: 20px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06), 0 0 0 1px rgba(255, 255, 255, 0.5) inset, 0 1px 0 rgba(255, 255, 255, 0.8) inset;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

section#features .border::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--brand-blue) 20%, var(--brand-teal) 50%, var(--brand-blue) 80%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

section#features .border::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

section#features .border:hover {
  background: rgba(255, 255, 255, 0.95);
  border-color: var(--brand-blue) !important;
  box-shadow: 0 16px 48px rgba(59, 130, 246, 0.15), 0 0 0 1px rgba(59, 130, 246, 0.25) inset, 0 1px 0 rgb(255, 255, 255) inset, 0 0 30px rgba(59, 130, 246, 0.1);
  transform: translateY(-6px) scale(1.01);
}

section#features .border:hover::before {
  opacity: 1;
}

section#features .border:hover::after {
  opacity: 1;
}

/* Feature box lead text with modern gradient */
section#features .feature-box-lead {
  background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-teal) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 600;
  position: relative;
}

/* Icon Badges */
.icon-badge {
  background: linear-gradient(135deg, var(--brand-teal), var(--brand-blue));
  color: #fff;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
}

/* Hero icon containers with ultra modern digital effects */
.hero .card-neo .rounded-4 {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.08) 0%, rgba(20, 184, 166, 0.08) 50%, rgba(59, 130, 246, 0.08) 100%);
  border: 2px solid rgba(59, 130, 246, 0.15);
  border-radius: 20px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.hero .card-neo .rounded-4::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, transparent 0deg, rgba(59, 130, 246, 0.1) 90deg, transparent 180deg, rgba(20, 184, 166, 0.1) 270deg, transparent 360deg);
  animation: rotate 4s linear infinite;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.hero .card-neo .rounded-4::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.12) 0%, rgba(20, 184, 166, 0.12) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: 18px;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.hero .card-neo:hover .rounded-4 {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(20, 184, 166, 0.15) 100%);
  border-color: var(--brand-blue);
  transform: scale(1.08) rotate(1deg);
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.8), 0 0 20px rgba(59, 130, 246, 0.2);
}

.hero .card-neo:hover .rounded-4::before {
  opacity: 1;
}

.hero .card-neo:hover .rounded-4::after {
  opacity: 1;
}

.hero .card-neo:hover svg {
  transform: scale(1.15) rotate(-2deg);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  filter: drop-shadow(0 4px 8px rgba(59, 130, 246, 0.3));
}

.logo-badge {
  background: var(--surface-0);
  color: var(--text-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  box-shadow: var(--shadow-md);
}

.logo-badge img {
  height: 46px;
  width: auto;
  display: block;
}

/* CTA Section */
.cta-band {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(20, 184, 166, 0.05) 100%);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  position: relative;
}

.cta-band::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.03) 0%, rgba(20, 184, 166, 0.03) 100%);
  pointer-events: none;
}

.cta-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.95) 100%);
  backdrop-filter: blur(10px);
  color: var(--text-primary);
  border: 2px solid rgba(59, 130, 246, 0.2);
  border-radius: 20px;
  box-shadow: 0 20px 25px -5px rgba(59, 130, 246, 0.1), 0 10px 10px -5px rgba(59, 130, 246, 0.04);
  padding: 48px;
  position: relative;
  overflow: hidden;
}

.cta-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-blue), var(--brand-teal));
}

.cta-card .lead {
  color: var(--text-secondary);
  font-weight: 500;
}

.cta-card h2 {
  background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-teal) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Text Utilities */
.text-white-90 {
  color: var(--text-primary);
}

.text-white-75 {
  color: var(--text-secondary);
}

/* Footer */
.footer {
  border-top: 1px solid var(--border-color);
  background: var(--surface-1);
  padding: 60px 0 40px;
}

/* Links */
a.nav-link {
  font-weight: 500;
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Mobile Responsive */
@media (max-width: 991.98px) {
  html, body {
    overflow-x: hidden;
    max-width: 100%;
  }
  .hero, .cta-band {
    overflow-x: hidden;
    position: relative;
  }
  section {
    padding: 60px 0;
  }
  .hero {
    padding-top: 80px;
    min-height: auto;
  }
}
/* Section Spacing */
section[id] {
  scroll-margin-top: 100px;
}

/* Modern Buttons */
.btn-primary {
  --bs-btn-bg: var(--brand-blue);
  --bs-btn-border-color: var(--brand-blue);
  --bs-btn-hover-bg: var(--brand-blue-600);
  --bs-btn-hover-border-color: var(--brand-blue-600);
  --bs-btn-focus-shadow-rgb: 59, 130, 246;
  border-radius: 8px;
  font-weight: 500;
  padding: 12px 24px;
  transition: all 0.2s ease;
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-success {
  --bs-btn-bg: var(--brand-teal);
  --bs-btn-border-color: var(--brand-teal);
  --bs-btn-hover-bg: var(--brand-teal-600);
  --bs-btn-hover-border-color: var(--brand-teal-600);
  --bs-btn-focus-shadow-rgb: 20, 184, 166;
  --bs-btn-color: #ffffff;
  border-radius: 8px;
  font-weight: 500;
  padding: 12px 24px;
  transition: all 0.2s ease;
  color: #ffffff !important;
}

.btn-success:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
  color: #ffffff !important;
}

.navbar .btn-success {
  color: #ffffff !important;
  background-color: var(--brand-teal) !important;
  border-color: var(--brand-teal) !important;
}

.navbar .btn-success:hover {
  color: #ffffff !important;
  background-color: var(--brand-teal-600) !important;
  border-color: var(--brand-teal-600) !important;
}

.btn-outline-primary {
  border-radius: 8px;
  font-weight: 500;
  padding: 12px 24px;
  border-width: 2px;
  transition: all 0.2s ease;
}

.btn-outline-primary:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

/* Form Elements */
#contactForm input::placeholder,
#contactForm textarea::placeholder {
  font-size: 0.875rem;
  color: var(--text-weak);
  opacity: 1;
}

.form-control {
  border-radius: 8px;
  border: 2px solid var(--border-color);
  transition: all 0.2s ease;
}

.form-control:focus {
  border-color: var(--brand-blue);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

/* Feature Box Lead */
.feature-box-lead {
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Remove all old gradient backgrounds - clean modern look */
section#features,
section#ai,
section#targets,
section#cta,
section#pricing,
section#market,
section#faq,
section#contact {
  background: var(--surface-0);
}

section#ai.section-muted,
section#pricing.section-muted {
  background: var(--surface-1);
  border-bottom: 1px solid var(--border-color);
}

section#ai .row {
  margin-bottom: 0 !important;
}

section#market {
  background: var(--surface-0);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

section#faq.section-muted {
  background: var(--surface-1);
}

/* Hide Marketplace link in menu and section */
.nav-link[href*=market] {
  display: none !important;
}

section#market {
  display: none !important;
}

/*# sourceMappingURL=main.css.map */
