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

:root {
  --background: hsl(220, 20%, 8%);
  --foreground: hsl(0, 0%, 98%);
  --muted: hsl(220, 15%, 18%);
  --muted-foreground: hsl(220, 10%, 60%);
  --primary: hsl(188, 100%, 50%);
  --brand-cyan: hsl(180, 100%, 50%);
  --brand-blue: hsl(212, 100%, 50%);
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Background glow effects */
.glow {
  position: absolute;
  width: 24rem;
  height: 24rem;
  border-radius: 50%;
  filter: blur(48px);
  pointer-events: none;
}

.glow-cyan {
  top: 25%;
  left: 25%;
  background: var(--brand-cyan);
  opacity: 0.2;
}

.glow-blue {
  bottom: 25%;
  right: 25%;
  background: var(--brand-blue);
  opacity: 0.15;
}

/* Content */
.content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.5rem;
  text-align: center;
}

/* Logo */
.logo-container {
  margin-bottom: 3rem;
  animation: float 6s ease-in-out infinite;
}

.logo {
  width: 16rem;
  height: auto;
}

@media (min-width: 768px) {
  .logo {
    width: 20rem;
  }
}

@media (min-width: 1024px) {
  .logo {
    width: 24rem;
  }
}

/* Title */
.title {
  font-size: 2.25rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .title {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .title {
    font-size: 3.75rem;
  }
}

.gradient-text {
  font-weight: 600;
  background: linear-gradient(135deg, var(--brand-cyan), var(--brand-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.subtitle {
  color: var(--muted-foreground);
  font-size: 1.125rem;
  margin-bottom: 4rem;
  max-width: 28rem;
}

@media (min-width: 768px) {
  .subtitle {
    font-size: 1.25rem;
  }
}

/* Contact Section */
.contact-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.contact-title {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--muted-foreground);
  font-weight: 500;
}

.contact-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .contact-links {
    flex-direction: row;
    gap: 2.5rem;
  }
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--foreground);
  text-decoration: none;
  font-size: 1.125rem;
  transition: color 0.3s ease;
}

.contact-link:hover {
  color: var(--primary);
}

.icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  border-radius: 50%;
  background-color: var(--muted);
  color: var(--primary);
  transition: background-color 0.3s ease;
}

.contact-link:hover .icon-wrapper {
  background-color: hsla(188, 100%, 50%, 0.1);
}

.company-name {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  margin-top: 1rem;
}

/* Footer */
.footer {
  position: absolute;
  bottom: 1.5rem;
  color: var(--muted-foreground);
  font-size: 0.75rem;
}

/* Animations */
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}