:root {
  --aiura-navy: #1e3a8a;
  --aiura-blue: #1d4ed8;
  --aiura-green: #16a34a;
  --aiura-green-light: #22c55e;
  --aiura-dark: #0f172a;
  --aiura-soft: #f8fafc;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  color: var(--aiura-dark);
  background: #ffffff;
  overflow-x: hidden;
}

.font-display {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  letter-spacing: -0.025em;
}

.gradient-text {
  background: linear-gradient(135deg, #1d4ed8 0%, #16a34a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.gradient-bg-dark {
  background: radial-gradient(ellipse at top left, #1e3a8a 0%, #0f172a 60%);
}

.gradient-bg-hero {
  background:
    radial-gradient(circle at 10% 20%, rgba(29, 78, 216, 0.12), transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(22, 163, 74, 0.15), transparent 40%),
    linear-gradient(180deg, #fafbff 0%, #ffffff 100%);
}

.glass {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.card-shadow {
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04), 0 8px 32px rgba(15, 23, 42, 0.06);
}

.card-shadow-lg {
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.1);
}

.hover-lift {
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}

.hover-lift:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
  border-color: #1d4ed8;
}

.logo-mark {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #1d4ed8 0%, #16a34a 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 800;
  font-size: 20px;
  box-shadow: 0 4px 14px rgba(29, 78, 216, 0.3);
  letter-spacing: -0.05em;
}

.brand-logo-img {
  height: 96px;
  width: auto;
  display: block;
  max-width: 100%;
}

.brand-logo-img.lg {
  height: 120px;
}

.brand-logo-img.footer {
  height: 96px;
}

header {
  padding: 6px 0;
}

.mobile-menu-btn {
  display: none;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  bottom: 0;
  width: 80%;
  max-width: 320px;
  background: white;
  z-index: 60;
  transition: right 0.3s;
  box-shadow: -10px 0 40px rgba(15, 23, 42, 0.15);
  padding: 20px;
  overflow-y: auto;
}

.mobile-drawer.open {
  right: 0;
}

.mobile-drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.5);
  z-index: 55;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}

.mobile-drawer-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-drawer a {
  display: block;
  padding: 12px 16px;
  border-radius: 8px;
  font-weight: 600;
  color: #1e293b;
}

.mobile-drawer a:active,
.mobile-drawer a:hover {
  background: #f1f5f9;
  color: #1d4ed8;
}

.mobile-drawer .btn-primary.drawer-cta-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  white-space: nowrap;
  color: #ffffff;
}

.mobile-drawer .btn-primary.drawer-cta-dark i,
.mobile-drawer .btn-primary.drawer-cta-dark svg {
  color: #ffffff;
  flex-shrink: 0;
}

.mobile-drawer .btn-primary.drawer-cta-dark:hover,
.mobile-drawer .btn-primary.drawer-cta-dark:active {
  background: linear-gradient(135deg, #1d4ed8, #1e3a8a);
  color: #ffffff;
}

.mobile-nav-link {
  display: block;
  padding: 14px 16px;
  border-radius: 10px;
  font-weight: 600;
  color: #1e293b;
  transition: all 0.15s;
  font-size: 15px;
}

.mobile-nav-link:hover,
.mobile-nav-link:active {
  background: #eff6ff;
  color: #1d4ed8;
}

@keyframes pulse-soft {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.6;
  }
}

.pulse-soft {
  animation: pulse-soft 2.5s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.floating {
  animation: float 6s ease-in-out infinite;
}

@keyframes float-slow {
  0%,
  100% {
    transform: translateY(0) rotate(0);
  }

  50% {
    transform: translateY(-6px) rotate(2deg);
  }
}

.floating-slow {
  animation: float-slow 8s ease-in-out infinite;
}

.dot-pattern {
  background-image: radial-gradient(rgba(15, 23, 42, 0.08) 1px, transparent 1px);
  background-size: 24px 24px;
}

.grid-pattern {
  background-image:
    linear-gradient(rgba(29, 78, 216, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(29, 78, 216, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  background: rgba(29, 78, 216, 0.08);
  color: #1d4ed8;
  border: 1px solid rgba(29, 78, 216, 0.15);
}

.badge-green {
  background: rgba(22, 163, 74, 0.08);
  color: #16a34a;
  border: 1px solid rgba(22, 163, 74, 0.15);
}

.badge-live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: rgba(22, 163, 74, 0.1);
  color: #16a34a;
  border: 1px solid rgba(22, 163, 74, 0.2);
}

.badge-live::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #16a34a;
  animation: pulse-soft 2s infinite;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 10px;
  background: linear-gradient(135deg, #1d4ed8, #1e3a8a);
  color: white;
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 4px 14px rgba(29, 78, 216, 0.35);
  transition: all 0.2s;
}

.btn-primary,
.btn-primary i,
.btn-primary svg {
  color: #ffffff;
}

.btn-primary {
  white-space: nowrap;
}

.btn-primary i,
.btn-primary svg {
  flex-shrink: 0;
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(29, 78, 216, 0.45);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 10px;
  background: white;
  color: var(--aiura-dark);
  border: 1px solid #e2e8f0;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.2s;
}

.btn-ghost:hover {
  border-color: #1d4ed8;
  color: #1d4ed8;
}

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 10px;
  background: white;
  color: #1d4ed8;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.2s;
}

.btn-white:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.section-rule {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #1d4ed8, #16a34a);
  border-radius: 2px;
}

.solution-card {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  padding: 28px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.solution-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #1d4ed8, #16a34a);
  opacity: 0;
  transition: opacity 0.3s;
}

.solution-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 60px rgba(15, 23, 42, 0.12);
  border-color: #1d4ed8;
}

.solution-card:hover::before {
  opacity: 1;
}

.solution-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(29, 78, 216, 0.1), rgba(22, 163, 74, 0.1));
  color: #1d4ed8;
  margin-bottom: 16px;
}

.industry-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 10px;
  background: white;
  border: 1px solid #e2e8f0;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.2s;
}

.industry-pill:hover {
  border-color: #1d4ed8;
  color: #1d4ed8;
  transform: translateY(-2px);
}

.stat-block {
  text-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
}

@keyframes scroll-x {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.marquee {
  display: flex;
  gap: 4rem;
  animation: scroll-x 35s linear infinite;
}

.pillar-card {
  background: linear-gradient(180deg, white, #fafbff);
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  padding: 24px;
  transition: all 0.25s;
}

.pillar-card:hover {
  background: linear-gradient(180deg, white, #f0f7ff);
  border-color: #93c5fd;
}

@media (min-width: 1025px) {
  .site-header {
    padding: 3px 0;
  }

  .site-header .header-inner {
    padding-top: 0.55rem;
    padding-bottom: 0.55rem;
  }

  .site-header .brand-logo-img {
    height: 88px;
  }
}

@media (max-width: 1024px) {
  .mobile-menu-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
  }

  .desktop-nav {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .brand-logo-img {
    height: 72px;
  }

  .brand-logo-img.lg {
    height: 90px;
  }

  .brand-logo-img.footer {
    height: 80px;
  }

  .btn-primary,
  .btn-ghost,
  .btn-white {
    padding: 14px 22px;
    font-size: 15px;
    width: auto;
  }

  section {
    padding-top: 64px !important;
    padding-bottom: 64px !important;
  }

  h1.font-display {
    font-size: 38px !important;
    line-height: 1.1 !important;
  }

  h2.font-display {
    font-size: 26px !important;
    line-height: 1.15 !important;
  }

  h3.font-display {
    font-size: 18px !important;
  }

  .solution-card {
    padding: 22px;
  }

  .solution-icon {
    width: 48px;
    height: 48px;
  }

  .gap-6 {
    gap: 1rem !important;
  }

  .rounded-3xl {
    padding: 28px !important;
  }

  .mobile-drawer {
    width: 88%;
  }

  .hero-section .text-2xl.font-display.gradient-text {
    font-size: 1.35rem !important;
  }

  .about-stats-grid .font-display.text-lg {
    font-size: 1.02rem !important;
  }
}

@media (max-width: 640px) {
  .hero-section {
    padding-top: 112px !important;
    padding-bottom: 56px !important;
  }

  .hero-section .max-w-7xl {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero-section h1.font-display {
    font-size: 32px !important;
    line-height: 1.12 !important;
  }

  .hero-section p {
    font-size: 16px !important;
    line-height: 1.65 !important;
  }

  .hero-section .grid.grid-cols-2 {
    grid-template-columns: 1fr;
  }

  .marquee {
    animation-duration: 48s;
  }
}
