@font-face {
  font-family: "Organetto";
  src: url("../fonts/organetto-bold.otf") format("opentype");
  font-weight: bold;
  font-style: normal;
}

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

body {
  font-family: "Organetto", sans-serif;
  overflow: hidden;
  background: #0a0e12;
  color: #ffffff;
}

#energyCanvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.pylon-bg {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 87vh;
  height: 87vh;
  z-index: 1;
  object-fit: contain;
  object-position: bottom center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 3.5s ease-out;
  mask-image: linear-gradient(
    to top,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.3) 50%,
    rgba(0, 0, 0, 1) 100%
  );
  -webkit-mask-image: linear-gradient(
    to top,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.3) 50%,
    rgba(0, 0, 0, 1) 100%
  );
}

body.pylon-start .pylon-bg {
  opacity: 0.48;
}

.content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  pointer-events: none;
}

.logo-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: fadeIn 1.5s ease-out;
}

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

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.company-name {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

h1 {
  font-size: clamp(3rem, 10vw, 7rem);
  letter-spacing: 0.5rem;
  text-transform: uppercase;
  background: linear-gradient(135deg, #ffffff 0%, #a0c4ff 50%, #ffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 40px rgba(160, 196, 255, 0.3);
  filter: drop-shadow(0 0 20px rgba(160, 196, 255, 0.2));
  margin: 0;
}

.subtitle {
  font-size: clamp(1rem, 3vw, 2rem);
  letter-spacing: 0.7rem;
  text-transform: uppercase;
  color: #a0c4ff;
  opacity: 0.9;
  font-weight: bold;
}

@media (max-width: 768px) {
  h1 {
    letter-spacing: 0.3rem;
  }
}
