/* Base Reset and Cybersecurity Midnight Blue Canvas */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #02112e; /* Elite Ultra-Dark Midnight Blue */
  font-family: 'Inter', sans-serif;
  color: #F5F5F5;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

/* Centralized Corporate Container Layout */
.container {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  max-width: 600px;
}

/* Scalable Responsive Brand Icon */
.brand-icon {
  width: 140px;
  height: 140px;
  margin-bottom: 30px;
  filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.5));
}

/* Heavy Institutional Typography */
.brand-name {
  font-family: 'Cinzel', serif;
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: #E6E8EA; /* Polished Platinum Silver */
  margin-bottom: 12px;
  text-transform: uppercase;
}

/* Modern Clean Sub-text */
.tagline {
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  color: #8A94A6; /* Muted corporate blue-gray */
  margin-bottom: 35px;
  line-height: 1.5;
}

/* Live Operational Status Indicator */
.status-badge {
  display: inline-flex;
  align-items: center;
  background-color: rgba(224, 224, 224, 0.04);
  border: 1px stroke rgba(224, 224, 224, 0.1);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #A3AED0;
  margin-bottom: 40px;
}

/* Glowing Cyan Pulse Animation */
.pulse-dot {
  width: 6px;
  height: 6px;
  background-color: #00F0FF; /* Digital Cyan Teal */
  border-radius: 50%;
  margin-right: 8px;
  box-shadow: 0 0 8px #00F0FF;
  animation: pulse 2s infinite;
}

/* Cyan Button - Changes from Silver to Electric Border on Hover */
.cta-button {
  font-size: 0.80rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #E6E8EA;
  text-decoration: none;
  padding: 14px 36px;
  border: 1px solid rgba(230, 232, 234, 0.3);
  border-radius: 4px;
  transition: all 0.3s ease;
  background: transparent;
}

.cta-button:hover {
  border-color: #00F0FF;
  color: #00F0FF;
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.2);
  background-color: rgba(0, 240, 255, 0.02);
}

@keyframes pulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 240, 255, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(0, 240, 255, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 240, 255, 0); }
}
/* Center and space out both buttons */
.button-container {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-top: 10px;
}

/* Optional: Make the call button stand out slightly */
.call-btn:hover {
  border-color: #ffffff;
  color: #ffffff;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.15);
}
