body {
  box-sizing: border-box; }

:root {
  --primary-orange: #FF6600;
  --primary-blue: #0066FF;
  --accent-orange: #CC6600;
  --accent-orange-light: #FF9900;
  --accent-blue-light: #0099FF; }

.font-orbitron {
  font-family: 'Orbitron', sans-serif; }

.font-inter {
  font-family: 'Inter', sans-serif; }

.gradient-bg {
  background: linear-gradient(135deg, #0a0a1a 0%, #0d1a2d 50%, #0a0a1a 100%); }

.hero-gradient {
  background: radial-gradient(ellipse at center, rgba(0, 102, 255, 0.15) 0%, transparent 70%), radial-gradient(ellipse at 20% 80%, rgba(255, 102, 0, 0.1) 0%, transparent 50%); }

.glow-orange {
  box-shadow: 0 0 30px rgba(255, 102, 0, 0.3), 0 0 60px rgba(255, 102, 0, 0.1); }

.glow-blue {
  box-shadow: 0 0 30px rgba(0, 102, 255, 0.3), 0 0 60px rgba(0, 102, 255, 0.1); }

.card-glow {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px); }

.card-glow:hover {
  border-color: rgba(0, 153, 255, 0.3);
  box-shadow: 0 8px 32px rgba(0, 102, 255, 0.15); }

.text-gradient-orange {
  background: linear-gradient(135deg, #FF6600 0%, #FF9900 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text; }

.text-gradient-blue {
  background: linear-gradient(135deg, #0066FF 0%, #0099FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text; }

.btn-primary {
  background: linear-gradient(135deg, #FF6600 0%, #FF9900 100%);
  transition: all 0.3s ease; }

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(255, 102, 0, 0.4); }

.btn-secondary {
  background: transparent;
  border: 2px solid #0066FF;
  transition: all 0.3s ease; }

.btn-secondary:hover {
  background: rgba(0, 102, 255, 0.1);
  box-shadow: 0 10px 40px rgba(0, 102, 255, 0.2); }

.grid-pattern {
  background-image: linear-gradient(rgba(0, 102, 255, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 102, 255, 0.03) 1px, transparent 1px);
  background-size: 50px 50px; }

.floating {
  animation: float 6s ease-in-out infinite; }

.floating-delay {
  animation: float 6s ease-in-out infinite;
  animation-delay: -3s; }

.logo {
  position: relative;
  top: -1.5rem;
  left: -2rem;
  z-index: 500; }

@keyframes float {
  0%, 100% {
    transform: translateY(0px); }
  50% {
    transform: translateY(-20px); } }
@keyframes pulse-glow {
  0%, 100% {
    opacity: 0.5; }
  50% {
    opacity: 1; } }
.pulse-glow {
  animation: pulse-glow 3s ease-in-out infinite;
  z-index: 100; }

@keyframes scan-line {
  0% {
    transform: translateY(-100%); }
  100% {
    transform: translateY(100%); } }
.scan-line {
  animation: scan-line 3s linear infinite; }

.shield-container {
  position: relative; }

.shield-ring {
  position: absolute;
  border: 2px solid rgba(0, 102, 255, 0.3);
  border-radius: 50%;
  animation: ring-pulse 2s ease-out infinite; }

@keyframes ring-pulse {
  0% {
    transform: scale(0.8);
    opacity: 1; }
  100% {
    transform: scale(1.5);
    opacity: 0; } }
.nav-link {
  position: relative; }

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #FF6600, #FF9900);
  transition: width 0.3s ease; }

.nav-link:hover::after {
  width: 100%; }

.feature-icon {
  background: linear-gradient(145deg, rgba(0, 102, 255, 0.2) 0%, rgba(0, 102, 255, 0.05) 100%);
  border: 1px solid rgba(0, 102, 255, 0.3); }

.section-divider {
  background: linear-gradient(90deg, transparent, rgba(0, 102, 255, 0.3), transparent);
  height: 1px; }

.smooth-scroll {
  scroll-behavior: smooth; }

@view-transition {
  navigation: auto; }

/*# sourceMappingURL=style.css.map */
