* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  min-height: 100vh;
  background: linear-gradient(
    135deg,
    #000000 0%,
    #1a1a2e 25%,
    #16213e 50%,
    #0f3460 75%,
    #1a237e 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  overflow: hidden;
}

.container {
  text-align: center;
  padding: 2rem;
  animation: fadeIn 1s ease-in;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.company-name {
  font-size: 4rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 3rem;
  background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 50%, #64b5f6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 30px rgba(100, 181, 246, 0.3);
}

.wip {
  font-size: 1.5rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 3rem;
  opacity: 0.8;
}

.contact-button {
  display: inline-block;
  padding: 0.75rem;
  text-decoration: none;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  transition: opacity 0.2s ease;
  line-height: 0;
}

.contact-button svg {
  display: block;
  width: 24px;
  height: 24px;
}

.contact-button:hover {
  opacity: 0.8;
}

@media (max-width: 768px) {
  .company-name {
    font-size: 2.5rem;
    margin-bottom: 2rem;
  }

  .wip {
    font-size: 1.2rem;
    margin-bottom: 2rem;
  }

  .contact-button {
    padding: 0.75rem;
  }

  .contact-button svg {
    width: 20px;
    height: 20px;
  }
}
