@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  overflow-x: hidden;
}

.layout-content {
  height: 100vh;
  width: 100%;
  overflow-x: hidden;
}

.hero-section {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
  min-height: 100vh;
  width: 100%;
  background: linear-gradient(180deg, #1a0b2e 0%, #160e29 50%, #0d0615 100%);
  padding: 2rem;
  overflow: hidden;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.hero-section::before {
  content: "";
  position: absolute;
  height: 600px;
  width: 600px;
  background: linear-gradient(135deg, rgb(59, 56, 235) 0%, rgb(102, 0, 211) 100%);
  opacity: 0.15;
  border-radius: 50%;
  filter: blur(80px);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
  animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.15;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 0.2;
  }
}
.container {
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  text-align: center;
}

h1 {
  font-size: clamp(2.5rem, 8vw, 7rem);
  line-height: 1.1;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

h1 span {
  display: block;
  background: linear-gradient(135deg, #6b46ff 0%, #8b5cf6 50%, #a78bfa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-top: 0.5rem;
}

.field--name-field-description p {
  color: #b8b4c7;
  font-size: clamp(1rem, 2vw, 1.6rem);
  margin-bottom: 0.75rem;
  font-weight: 400;
}

.subtitle {
  color: #9b95ab;
  font-size: clamp(0.95rem, 1.8vw, 1.6rem);
  margin-bottom: 3rem;
  line-height: 1.6;
}

.button-group {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 4rem;
  margin-top: 40px;
}
.button-group .btn-primary {
  padding: 1.8rem 4.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  border: none;
  font-family: inherit;
  background: linear-gradient(135deg, #6b46ff 0%, #8b5cf6 100%);
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(107, 70, 255, 0.4);
}
.button-group .btn-primary a {
  color: #fff;
  text-decoration: none;
}
.button-group .btn-primary {
  background: linear-gradient(135deg, #6b46ff 0%, #8b5cf6 100%);
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(107, 70, 255, 0.4);
}
.button-group .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(107, 70, 255, 0.6);
}
.button-group .btn-secondary {
  padding: 1.8rem 4.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  border: none;
  font-family: inherit;
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.2);
}
.button-group .btn-secondary a {
  color: #fff !important;
  text-decoration: none;
}
.button-group .btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-2px);
}

.scroll-indicator {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(10px);
  }
}
.arrow {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.4);
}

@media (max-width: 768px) {
  .button-group {
    flex-direction: column;
    align-items: stretch;
  }
  .btn {
    justify-content: center;
    width: 100%;
  }
}/*# sourceMappingURL=style.css.map */