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

:root {
  --navy: #00204d;
  --navy-dark: #001a41;
  --orange: #e65100;
  --orange-hover: #bf4300;
  --gray-bg: #f8f9fa;
  --gray-border: #e1e3e4;
  --text-main: #191c1d;
  --text-muted: #44474f;
  --glow-orange: 0 0 20px rgba(230, 81, 0, 0.4);
}

body {
  font-family: "Public Sans", sans-serif;
  @apply bg-white text-slate-900 antialiased overflow-x-hidden;
}

h1,
h2,
h3,
h4,
.font-heading {
  font-family: "Inter", sans-serif;
}

.instititutional-shadow {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.btn-primary {
  background-color: var(--orange);
  color: white;
  font-weight: 800;
  padding: 0.75rem 1.5rem;
  border-radius: 2px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(230, 81, 0, 0.2);
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #e65100;
  color: #ffffff !important;
  font-weight: 900;
  padding: 1rem 1rem;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 11px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 10px 30px -10px rgba(230, 81, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  white-space: nowrap;
  text-decoration: none !important;
}

.btn-hero-primary:hover {
  background-color: #ff6d00;
  transform: translateY(-4px);
  box-shadow: 0 15px 40px -10px rgba(230, 81, 0, 0.7);
}

.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.05);
  color: #ffffff !important;
  font-weight: 900;
  padding: 1rem 1rem;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 11px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
  white-space: nowrap;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  text-decoration: none !important;
}

.btn-hero-secondary:hover {
  background-color: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

.utility-bar {
  background-color: #001a41;
  color: white;
}

.hero-section {
  background: radial-gradient(circle at 30% 20%, #00204d 0%, #00081d 100%);
  position: relative;
  overflow: hidden;
}

/* Floating Particles Background */
.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle at 2px 2px,
    rgba(255, 255, 255, 0.05) 1px,
    transparent 0
  );
  background-size: 40px 40px;
  pointer-events: none;
  z-index: 1;
}

.hero-section::after {
  content: "";
  position: absolute;
  top: -10%;
  left: -10%;
  width: 120%;
  height: 120%;
  background: radial-gradient(
    circle at 70% 30%,
    rgba(230, 81, 0, 0.1) 0%,
    transparent 60%
  );
  animation: bg-pulse 15s infinite alternate ease-in-out;
  pointer-events: none;
  z-index: 0;
}

@keyframes bg-pulse {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }
  100% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Custom Accordion */
.faq-item.active .faq-answer {
  @apply max-h-[500px] pb-6;
}

.faq-item.active svg {
  @apply rotate-180;
}

.network-grid div {
  @apply border-r border-b border-slate-100 p-8 flex items-center justify-center grayscale opacity-60 hover:grayscale-0 hover:opacity-100 transition-all duration-300;
}

.network-grid div:nth-child(5n) {
  @apply border-r-0;
}

.btn-solid-orange {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--orange);
  color: #ffffff !important;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 14px;
  border-radius: 4px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 10px 30px -10px rgba(230, 81, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-decoration: none !important;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn-solid-orange:hover {
  background-color: #ff6d00;
  transform: translateY(-4px);
  box-shadow: 0 15px 40px -10px rgba(230, 81, 0, 0.8);
}

.btn-solid-orange::before {
  content: "";
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: all 0.6s ease;
  left: -100%;
}

.btn-solid-orange:hover::before {
  left: 100%;
}

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  color: #ffffff !important;
  font-weight: 800;
  border: 1px solid rgba(255, 255, 255, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.btn-outline-white:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
}
