@font-face {
	font-family: 'TT Interphases Pro Trl';
	src: url('static/fonts/TT-Interphases-Pro-Trial-Regular.ttf') format('truetype');
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'TT Interphases Pro Trl';
	src: url('static/fonts/TT-Interphases-Pro-Trial-Medium.ttf') format('truetype');
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}

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

body {
	background-color: #000;
	color: #DDE3E8;
	font-family: 'TT Interphases Pro Trl', 'Inter', sans-serif;
  overflow: hidden;
	cursor: url('static/cursor.svg'), auto;
}

::selection {
	background-color: #C1D5F3;
	color: #000;
}

::-moz-selection {
	background-color: #C1D5F3;
	color: #000;
}

.bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
  background-color: #000;
  opacity: 0;
  animation: bgFadeIn 2.5s ease-in-out 2s forwards;
}

@keyframes bgFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUpDescription {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.content {
  padding: 0 0 100px 70px;
  margin-top: auto;

	position: absolute;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;


  img {
    width: 95px;
    height: 34px;
    object-fit: contain;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out 0.3s forwards;
  }

  .title {
    font-size: 92px;
    font-weight: 500;
    line-height: 86px;
    margin-top: 24px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out 0.5s forwards;
   
    position: relative;
    z-index: 1;
  }

 
  .description {
    margin-top: 24px;
    font-size: 22px;
    font-weight: 400;
    line-height: 1.5;
    color: #DDE3E88C;
    opacity: 0;
    max-width: 639px;
    transform: translateY(20px);
    animation: fadeInUpDescription 0.8s ease-out 0.7s forwards;
    position: relative;
    z-index: 1;
  }

  .btns-group{
    display: flex;
    gap: 12px;
    margin-top: 24px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out 0.9s forwards;

    .btn {
      padding: 8px 16px;
      border-radius: 200px;
      background-color: #C1D5F3;
      color: #000;
      font-size: 18px;
      font-weight: 500;
      line-height: 1;
      display: flex;
      align-items: center;
      gap: 6px;
      border: none;
      cursor: url('static/cursor.svg'), auto;
    }
    .btn-x {
      text-decoration: none;
      padding: 8px 16px;
      border-radius: 200px;
      border: 1px solid #DDE3E8;
      background-color: transparent;
      color: #DDE3E8;
      font-size: 18px;
      font-weight: 500;
      line-height: 1;
      display: flex;
      align-items: center;
      gap: 6px;
      cursor: url('static/cursor.svg'), auto;
      transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, border-color 0.2s ease-in-out;
      svg {
        path{
          transition: stroke 0.2s ease-in-out;
        }
      }
    }
    .btn-x:hover {
      background-color: #DDE3E8;
      color: #000;
      border-color: #DDE3E8;
    }
    .btn-x:hover svg path {
      stroke: #000;
      transition: stroke 0.2s ease-in-out;
    }
  }
}

.tooltip {
  position: fixed;
  padding: 6px 12px;
  background-color: #FFFFFF;
  color: #000;
  font-size: 14px;
  font-weight: 400;
  border-radius: 200px;
  pointer-events: none;
  z-index: 1000;
  white-space: nowrap;
  transform: translateX(5%);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out;
}

.tooltip.show {
  opacity: 1;
  visibility: visible;
}