.index-page {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: var(--text-strong-color);
}

.index-wrap {
  position: fixed;
  inset: 0;
  display: flex;
  flex-direction: column;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("../../images/full-1.jpg");
  background-size: cover;
  background-position: center;
  animation: index-bg-zoom 8s ease forwards;
  will-change: transform;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(1, 30, 24, .30) 0%,
    rgba(1, 30, 24, .18) 35%,
    rgba(1, 30, 24, .55) 65%,
    rgba(1, 30, 24, .88) 100%
  );
}

@keyframes index-bg-zoom {
  from {
    transform: scale(1.06);
  }

  to {
    transform: scale(1);
  }
}

.index-topbar {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: calc(16px + env(safe-area-inset-top, 0px)) 24px 16px;
}

.index-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  text-decoration: none;
}

.index-logo:hover {
  color: #fff;
  text-decoration: none;
}

.index-logo .brand-mark {
  box-shadow: 0 2px 8px rgba(2, 121, 106, .5);
}

.index-brand-name {
  color: #fff;
  text-shadow: 0 1px 4px rgba(0, 0, 0, .3);
}

.index-brand-sub {
  color: rgba(255, 255, 255, .65);
  max-width: 250px;
}

.index-content {
  flex: 1;
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 24px calc(32px + env(safe-area-inset-bottom, 0px));
}

.feature-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 28px;
  animation: index-fade-up .5s .1s ease both;
}

.index-pill {
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .18);
  color: rgba(255, 255, 255, .9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-weight: 600;
}

.index-pill i {
  color: #6EE7B7;
  font-size: 12px;
}

.index-headline {
  color: #fff;
  font-size: 38px;
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: 0;
  margin: 0 0 14px;
  animation: index-fade-up .5s .2s ease both;
}

.index-headline span {
  color: #6EE7B7;
}

.index-subline {
  max-width: 340px;
  color: rgba(255, 255, 255, .72);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.55;
  margin: 0 0 32px;
  animation: index-fade-up .5s .3s ease both;
}

.cta-wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
  animation: index-fade-up .5s .4s ease both;
}

.btn-cta-primary,
.btn-cta-secondary {
  width: 100%;
  min-height: 52px;
  border-radius: var(--radius-lg);
  font-size: 15px;
}

.btn-cta-primary {
  box-shadow: 0 4px 20px rgba(2, 121, 106, .55);
}

.btn-cta-primary:hover {
  box-shadow: 0 6px 24px rgba(2, 121, 106, .65);
}

.btn-cta-secondary {
  background: rgba(255, 255, 255, .10);
  border-color: rgba(255, 255, 255, .25);
  color: #fff;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.btn-cta-secondary:hover {
  background: rgba(255, 255, 255, .16);
  border-color: rgba(255, 255, 255, .4);
  color: #fff;
}

.cta-or {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, .44);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .04em;
}

.cta-or::before,
.cta-or::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, .15);
}

.preloader-brand {
  color: #fff;
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
}

.notify-toast {
  position: fixed;
  top: calc(16px + env(safe-area-inset-top, 0px));
  left: 50%;
  transform: translateX(-50%);
  z-index: 200;
  max-width: calc(100vw - 32px);
  background: rgba(13, 17, 23, .92);
  border: 1px solid rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .9);
  font-size: 13px;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(0, 0, 0, .3);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  animation: index-fade-up .3s ease both, index-fade-out .3s 3s ease forwards;
}

@keyframes index-fade-up {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes index-fade-out {
  to {
    opacity: 0;
    transform: translateX(-50%) translateY(-6px);
  }
}

@media (max-width: 420px) {
  .index-topbar,
  .index-content {
    padding-left: 20px;
    padding-right: 20px;
  }

  .index-headline {
    font-size: 34px;
  }
}
