@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(21px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes gradient {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", "Roboto", sans-serif;
  background: linear-gradient(135deg, #00b5ff 0%, #4d7fff 25%, #6555ff 50%, #a855f7 75%, #5b21b6 100%);
  background-size: 400% 400%;
  animation: gradient 30s ease infinite;
  color: #ffffff;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.6;
  position: relative;
}
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../img/agentic-world-background-pattern.svg") bottom right/700px no-repeat;
  z-index: -1;
  pointer-events: none;
}

.container {
  padding: 40px 20px;
  text-align: center;
  max-width: 95%;
}

.logo {
  width: 150px;
  height: auto;
  margin-bottom: 2rem;
  display: block;
  margin-left: auto;
  margin-right: auto;
  animation: fadeInUp 560ms ease-out 0ms both;
}

h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  background: linear-gradient(135deg, #ffffff 0%, #5af8f5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 4px 20px rgba(0, 181, 255, 0.3);
  animation: fadeInUp 560ms ease-out 150ms both;
}

p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 auto;
  font-weight: 400;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  padding: 0 20px;
  animation: fadeInUp 560ms ease-out 300ms both;
}

.glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0, 181, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  z-index: -1;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 6px;
  background: #ffffff;
  color: #231670;
  padding: 8px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
  z-index: 1000;
  transition: top 0.3s ease;
}
.skip-link:focus {
  top: 6px;
}

main {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo:focus {
  outline: 2px solid #ffffff;
  outline-offset: 4px;
}

h1:focus {
  outline: 2px solid #ffffff;
  outline-offset: 4px;
}

@media (prefers-reduced-motion: reduce) {
  .logo, h1, p {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  body {
    animation: none !important;
  }
}
@media (min-width: 768px) {
  body {
    animation: gradient 60s ease infinite;
  }

  body::before {
    background-size: cover;
  }

  .container {
    max-width: 95%;
    padding: 40px 30px;
  }

  h1 {
    font-size: 3.5rem;
  }

  p {
    font-size: 1.2rem;
    padding: 0;
  }

  .glow {
    width: 500px;
    height: 500px;
  }
}
@media (min-width: 1024px) {
  .container {
    max-width: 95%;
    padding: 40px 20px;
  }

  h1 {
    font-size: 4rem;
  }

  p {
    font-size: 1.25rem;
    max-width: 800px;
  }

  .glow {
    width: 600px;
    height: 600px;
  }
}

/*# sourceMappingURL=styles.css.map */
