/* Reset & Core Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: #000000;
  color: #FFFFFF;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  overflow-x: hidden;
}

/* Subtle top navigation overlay */
header {
  width: 100%;
  max-width: 1200px;
  padding: 40px 24px;
  display: flex;
  justify-content: flex-end;
}

.nav-link {
  color: #A0A0A0;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  transition: color 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.nav-link:hover {
  color: #FFFFFF;
}

/* Main Hero Area */
main {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 24px;
  width: 100%;
}

.logo-container {
  width: 100%;
  max-width: 320px; /* Restricts the logo to a clean, balanced presentation size */
  height: auto;
  margin-bottom: 48px;
  animation: fadeIn 1.2s ease-out forwards;
}

.logo-image {
  width: 100%;
  height: auto;
  display: block;
}

/* Primary Call To Action Button */
.cta-button {
  display: inline-block;
  background: transparent;
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 16px 40px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 6px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 0px; /* Sharp corners for minimalist tech look */
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  position: relative;
  overflow: hidden;
}

.cta-button:hover {
  color: #000000;
  background-color: #FFFFFF;
  border-color: #FFFFFF;
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.cta-button:active {
  transform: translateY(0);
}

/* Footer Social Navigation */
footer {
  width: 100%;
  max-width: 1200px;
  padding: 40px 24px;
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.social-link {
  color: #555555;
  text-decoration: none;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  transition: color 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.social-link:hover {
  color: #FFFFFF;
}

/* Entrance Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive scaling optimizations */
@media (max-width: 480px) {
  .logo-container {
    max-width: 260px;
  }
  footer {
    gap: 20px;
    padding-bottom: 60px;
  }
}