.home-section {
  align-items: center;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  height: 100vh;
  inset: 0;
  justify-content: center;
  overflow: hidden;
  padding: 4vw 0;
  position: fixed;
  z-index: 50;
  padding-left: 2.5%;
  padding-right: 2.5%;
}

.scroll-indicator {
  align-items: center;
  bottom: 5vh;
  display: flex;
  flex-direction: column;
  gap: 6px;
  left: 50%;
  opacity: 1;
  pointer-events: none;
  position: absolute;
  transform: translateX(-50%);
  transition: opacity 160ms ease, transform 160ms ease;
  z-index: 60;
}

.scroll-indicator.hidden {
  opacity: 0;
  transform: translateX(-50%) translateY(6px);
}

.scroll-indicator .arrow {
  animation: scrollArrow 1.2s infinite cubic-bezier(0.25, 0.1, 0.25, 1);
  border-bottom: 2px solid rgba(12, 12, 12, 0.9);
  border-right: 2px solid rgba(12, 12, 12, 0.9);
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.15));
  height: 14px;
  opacity: 0.95;
  transform: rotate(45deg);
  width: 14px;
}

.scroll-indicator .label {
  animation: fadeUp 1.2s infinite cubic-bezier(0.25, 0.1, 0.25, 1);
  color: rgba(12, 12, 12, 0.9);
  font-size: 12px;
  letter-spacing: 0.02em;
  opacity: 0.95;
  transform-origin: center;
}

@keyframes fadeUp {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  50% {
    opacity: 0.6;
    transform: translateY(6px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scrollArrow {
  0% {
    opacity: 1;
    transform: rotate(45deg) translateY(0);
  }
  50% {
    opacity: 0.6;
    transform: rotate(45deg) translateY(40);
  }
  100% {
    opacity: 1;
    transform: rotate(45deg) translateY(-40);
  }
}

.sr-only {
  animation: fadeUp 2s infinite cubic-bezier(0.25, 0.1, 0.25, 1);
  font-size: 10pt;
}

body {
  min-height: 140vh;
}

.index-logo,
.index-text {
  align-items: center;
  display: flex;
  flex-direction: column;
  text-align: center;
  width: 100%;
}

h1 {
  font-family: 'montserrat bold', sans-serif;
  font-size: clamp(14pt, 1.2vw, 35pt);
  margin-top: 50px;
  margin-bottom: -50px;
}

h1 span {
  color: #e6007d;
}

.index-logo img {
  margin: 15vh auto 0vh auto;
  width: 50%;
}

.index-text p {
  font-size: clamp(12pt, 1vw, 30pt);
  margin: 10vh auto 5vh auto;
  max-width: 60%;
}

.buttons {
  align-items: center;
  display: flex;
  flex-direction: row;
  gap: 1.6rem;
  justify-content: center;
  margin-top: 2rem;
  width: 100%;
}

.buttons .btn-primary,
.buttons .btn-secondary {
  box-sizing: border-box;
  min-width: 180px;
  width: auto;
}

.btn-primary {
  background-color: transparent;
  border: 2px solid #000;
  border-radius: 30px;
  color: #000;
  cursor: pointer;
  font-size: clamp(12pt, 1vw, 30pt);
  padding: 12px 30px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #e6007d;
  border: 2px solid transparent;
  color: #fff;
  transform: scale(1.05);
}

.btn-secondary {
  background-color: #000;
  border: 2px solid #000;
  border-radius: 30px;
  color: #fff;
  cursor: pointer;
  font-size: clamp(12pt, 1vw, 30pt);
  padding: 12px 30px;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background-color: #e6007d;
  border: 2px solid #e6007d;
  transform: scale(1.05);
}

.briefing-section {
  align-items: center;
  background-color: #e6007d;
  display: flex;
  inset: 0;
  justify-content: center;
  padding-top: 60vh;
  position: fixed;
  text-align: center;
  z-index: 10;
}

.briefing-content h2 {
  color: #fff;
  font-size: clamp(18pt, 3vw, 40pt);
  margin-bottom: 20px;
}

.briefing-content p {
  color: #fff;
  font-size: clamp(14pt, 1vw, 30pt);
  margin: 0 auto;
  max-width: 90%;
}

.btn-briefing {
  background-color: transparent;
  border: 2px solid #fff;
  color: #fff;
  cursor: pointer;
  font-size: clamp(12pt, 1vw, 30pt);
  margin-top: 30px;
  padding: 12px 30px;
  transition: all 0.3s ease;
  border-radius: 30px;
}

.btn-briefing:hover {
  background-color: #fff;
  color: #e6007d;
  transform: scale(1.05);
}


@media screen and (max-width: 890px) {
  .home-section {
    height: 100vh;
    padding-left: 5%;
    padding-right: 5%;
  }

  .index-logo,
  .index-text {
    align-items: center;
    display: flex;
    flex-direction: column;
    text-align: center;
    width: 100%;
  }

  .index-logo img {
    margin: 0vh auto 0vh auto;
    width: 50%;
  }

  h1 {
    font-size: 4vw;
    margin-top: 20px;
    margin-bottom: -20px;
  }


  .index-text p {
    font-size: 4vw;
    margin: 5vh auto 0vh auto;
    max-width: 95%;
  }

  .buttons {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
  }

  .buttons .btn-primary,
  .buttons .btn-secondary {
    margin: 0 auto;
    max-width: 420px;
    width: 100%;
  }

  .btn-primary {
    font-size: 4vw;
  }

  .btn-secondary {
    font-size: 4vw;
  }

  .briefing-content h2 {
    color: #fff;
    font-size: 7vw;
    margin: 0 auto 2vh auto;
    max-width: 95%;
  }

  .briefing-content p {
    color: #fff;
    font-size: 4vw;
    max-width: 90%;
    margin: 0 auto;
  }

  .btn-briefing {
    font-size: 4vw;
    margin-top: 30px;
  }
}