body {
  background: url("../assets/home-bg.jpg") no-repeat center center fixed;
  background-size: cover;
  background-color: rgba(0, 0, 0, 0.4);
  font-family: mulish;
  color: #ffffff;
  width: 100%;
  min-height: 100vh;
  height: 100%;
  display: flex;
  flex-direction: column;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  transform: none !important;
}

input,
textarea,
button,
select {
  font-family: inherit;
}

a {
  all: unset;
  cursor: pointer;
}

.floating-blobs {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(2.5rem);
  opacity: 0.55;
  mix-blend-mode: screen;
  transform: translate3d(0, 0, 0);
  will-change: transform, opacity;
  animation: blob-move 12s linear infinite;
}

.blob--one {
  width: 26.25rem;
  height: 26.25rem;
  left: -8%;
  top: 5%;
  background: radial-gradient(circle at 20% 20%, rgba(0, 255, 163, 0.4), rgba(0, 100, 255, 0.1));
  animation-duration: 14s;
}

.blob--two {
  width: 21.25rem;
  height: 21.25rem;
  right: -6%;
  top: 38%;
  background: radial-gradient(circle at 60% 40%, rgba(255, 120, 200, 0.35), rgba(50, 0, 80, 0.1));
  animation-duration: 18s;
  animation-delay: 2s;
}

.blob--three {
  width: 20rem;
  height: 20rem;
  left: -5%;
  top: 75%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 200, 80, 0.55), rgba(255, 150, 0, 0.25), rgba(120, 60, 0, 0.05));
  filter: blur(2.5rem);
  animation-duration: 20s;
  animation-delay: 4s;
}

@keyframes blob-move {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.6;
  }
  50% {
    transform: translate3d(20px, -30px, 0) scale(1.05);
    opacity: 0.5;
  }
  100% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.6;
  }
}
.hero {
  margin-top: 4rem;
}
.hero__text {
  border-radius: 1rem;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.2);
  max-width: 1200px;
  width: 100%;
  min-height: clamp(8rem, 2vw, 12.25rem);
  font-size: clamp(1.8rem, 4vw, 4rem);
  line-height: 150%;
  font-weight: 800;
  white-space: normal;
  margin: 2rem auto;
  padding: clamp(1rem, 2vw, 2rem);
}
.hero__text::after {
  content: "";
  position: absolute;
  top: 0;
  left: -150%;
  width: 200%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.4) 50%, transparent 100%);
  animation: shimmer 3s linear infinite;
}
@keyframes shimmer {
  0% {
    left: -150%;
  }
  100% {
    left: 150%;
  }
}

.chart {
  max-width: 1200px;
  width: 100%;
  min-height: 575px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  gap: 0.625rem;
}
.chart__header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 0.625rem;
  height: auto;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 1rem;
}
.chart__header-info {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: clamp(16rem, 10vw + 12rem, 20rem);
  height: 2.0625rem;
  padding: 0.625rem;
  gap: 1.25rem;
  background: rgba(255, 255, 255, 0.1);
  border: 0.0625rem solid #ffffff;
  font-size: 0.75rem;
  font-weight: 600;
}
.chart__header-info:hover {
  background-color: rgba(255, 255, 255, 0.2);
  position: relative;
}
.chart__header-numbers {
  white-space: nowrap;
}
.chart__header-btn {
  width: 11.5625rem;
  height: 2.6875rem;
  padding: 0.625rem;
  gap: 1.25rem;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  border: 0.0625rem solid #ffffff;
  font-size: 0.75rem;
  font-weight: 600;
}
.chart__header-btn:hover {
  background-color: rgba(255, 255, 255, 0.2);
  border: 0.0625rem solid #ffffff;
}
.chart__header-year-selector {
  width: 3.625rem;
  height: 1.4375rem;
  border-radius: 1rem;
  background: #ffffff;
  color: var(--color-NAPP);
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.chart__year-dropdown {
  z-index: 900;
  position: absolute;
}
.chart__year-dropdown li {
  color: var(--color-NAPP);
}
.chart__quarters {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: stretch;
  gap: 1rem;
  padding: 0.625rem 0;
  border-radius: 1rem;
}
.chart__quarter-btn {
  height: 4.125rem;
  width: 100%;
  flex: 1;
  background-color: rgba(255, 255, 255, 0.15);
  color: var(--color-NAPP);
  cursor: pointer;
  transition: all 0.3s ease-out;
  font-size: 1.25rem;
  font-weight: 500;
  border: 0.0625rem solid white;
  position: relative;
  overflow: hidden;
}
.chart__quarter-btn--active {
  background: #1a4c80;
  color: #ffffff;
  border: 0.0625rem solid black;
  box-shadow: 0 0.25rem 0.25rem rgba(0, 0, 0, 0.25);
}
.chart__quarter-btn .ripple {
  position: absolute;
  border-radius: 50%;
  transform: scale(0);
  animation: ripple 0.6s linear;
  background: rgba(255, 255, 255, 0.6);
  pointer-events: none;
}
@keyframes ripple {
  to {
    transform: scale(4);
    opacity: 0;
  }
}
.chart__content {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: stretch;
  gap: 1.25rem;
  height: 26rem;
}
.chart__bars {
  display: flex;
  flex-direction: column;
  max-width: 1140px;
  width: 100%;
  height: 22.5rem;
  gap: 1.5625rem;
  padding: 0.625rem 0;
  position: relative;
}
.chart__bar-group {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 0.3125rem;
}
.chart__bar {
  width: 0;
  height: 1.5625rem;
  border-radius: 0.5rem;
  position: relative;
  left: 0;
  z-index: 1;
  cursor: pointer;
  transition: all 1s ease-out;
}
.chart__legend {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  padding: 2rem 0.5rem 0 0.5rem;
  width: 3rem;
  height: 22.5rem;
  gap: 6rem;
}
.chart__legend-label {
  color: white;
  font-size: 1rem;
  font-weight: 600;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  flex: 1;
  min-height: 0;
}
.chart__line-container {
  position: absolute;
  z-index: 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: stretch;
  top: 0;
  left: 0;
}
.chart__vertical-line {
  position: absolute;
  width: 0.0625rem;
  height: 22.5rem;
  background: white;
}
.chart__line-number {
  position: absolute;
  top: 23.75rem;
  font-size: 1rem;
  color: white;
  font-weight: 600;
}
.chart__tooltip {
  height: 1.4375rem;
  border: 0.0625rem solid var(--color-NAPP);
  color: white;
  font-size: 0.6875rem;
  padding: 0.3125rem 0.625rem;
  border-radius: 0.25rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-out;
  white-space: nowrap;
  font-weight: 600;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
}
.chart__tooltip.visible {
  opacity: 1;
  visibility: visible;
}

.criteria {
  max-width: 1200px;
  width: 100%;
  min-height: 453px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  gap: clamp(2rem, 2vw, 3.125rem);
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 1rem;
  padding: clamp(1.5rem, 2vw, 3.125rem) clamp(1.5rem, 2vw, 6.25rem);
  text-align: center;
}
.criteria__title {
  font-size: clamp(1.5rem, 2vw, 2.25rem);
  line-height: 130%;
  font-weight: 700;
}
.criteria__group {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: stretch;
  justify-items: center;
  max-width: 1000px;
  width: 100%;
  gap: clamp(0.5rem, 2vw, 1rem);
  margin: 0 auto;
}
.criteria__item {
  width: clamp(11rem, 20vw, 20rem);
  aspect-ratio: 1/1;
  padding: 1rem;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  color: #000;
  text-decoration: none;
}
.criteria__item.reveal {
  opacity: 0;
  transform: translateY(30px) scale(1);
  transition: all 0.6s ease-out;
}
.criteria__item.reveal.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.criteria__item.reveal.visible:hover {
  transform: translateY(0) scale(1.05);
  box-shadow: 0 8px 20px rgba(28, 155, 102, 0.3);
}
.criteria__item.reveal:nth-child(1) {
  transition: all 0.3s ease-out;
}
.criteria__item.reveal:nth-child(2) {
  transition: all 0.5s ease-out;
}
.criteria__item.reveal:nth-child(3) {
  transition: all 0.7s ease-out;
}
.criteria__text {
  font-size: clamp(0.875rem, 1.5vw, 1.25rem);
  line-height: 1.3;
  font-weight: 700;
  word-wrap: break-word;
}
.criteria__icon {
  width: clamp(2rem, 4vw, 4rem);
  height: clamp(2rem, 4vw, 4rem);
  flex-shrink: 0;
}

.rating {
  margin-bottom: 4rem;
}
.rating-table {
  max-width: 1200px;
  width: 100%;
  min-height: 421px;
  border-collapse: collapse;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 1rem;
  font-size: 0.875rem;
  text-align: center;
  display: block;
}
.rating-table__row--header {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: stretch;
  border-bottom: 0.0625rem solid #ffffff;
}
.rating-table__cell--header {
  white-space: normal;
  font-size: 1rem;
  font-weight: bold;
  padding: 1rem 0.1rem;
}
.rating-table__body {
  height: 23.75rem;
  max-width: 1200px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
}
.rating-table__row {
  height: 7.125rem;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: stretch;
}
.rating-table__main-group {
  flex: 3;
  min-width: 350px;
  height: 7.125rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
}
.rating-table__group {
  height: 2.375rem;
  border: 1px white solid;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  border-top: none;
  border-right: none;
}
.rating-table__category {
  flex: 1;
  min-width: 50px;
  height: 7.125rem;
  font-weight: bold;
  border-bottom: 0.0625rem solid #ffffff;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.rating-table__category:hover {
  background: rgba(255, 255, 255, 0.25);
}
.rating-table__cell--category {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex: 1;
  min-width: 50px;
  height: auto;
}
.rating-table__category--small {
  flex: 1;
  min-width: 50px;
  height: 2.375rem;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  border-right: 1px solid white;
  font-weight: bold;
}
.rating-table__category--small:hover {
  background: rgba(255, 255, 255, 0.25);
}
.rating-table__cell--group {
  flex: 3;
  min-width: 350px;
  height: auto;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: stretch;
}
.rating-table__group--small {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex: 3;
  min-width: 350px;
  height: 2.375rem;
}
.rating-table__score {
  flex: 1;
  min-width: 60px;
  height: 2.375rem;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.rating-table__cell--score {
  flex: 1;
  min-width: 60px;
  height: auto;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.rating-table__score:hover {
  background: rgba(255, 255, 255, 0.25);
}
.rating-table__level {
  flex: 2;
  min-width: 125px;
  height: 2.375rem;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.rating-table__cell--level {
  flex: 2;
  min-width: 125px;
  height: auto;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.rating-table__level:hover {
  background: rgba(255, 255, 255, 0.25);
}
.rating-table__points {
  flex: 1;
  min-width: 60px;
  height: 2.375rem;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.rating-table__cell--points {
  flex: 1;
  min-width: 60px;
  height: auto;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.rating-table__points:hover {
  background: rgba(255, 255, 255, 0.25);
}

html {
  font-size: clamp(10px, 1vw + 0.5rem, 16px);
}

.chart,
.hero,
.rating-table,
.criteria {
  width: min(90%, 1200px);
  min-height: auto;
}

.criteria__group {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 768px) {
  .criteria__group {
    grid-template-columns: 1fr;
    align-items: center;
  }
  .criteria__item {
    width: clamp(11rem, 35vw, 14rem);
  }
  .rating-table__cell--header {
    font-size: 0.75rem;
    white-space: normal;
  }
  .rating-table__row,
  .rating-table__row--header {
    display: flex;
    align-items: stretch;
  }
  .rating-table__category,
  .rating-table__category--small,
  .rating-table__cell--category {
    flex: 1;
    min-width: 40px;
    font-size: 0.7rem;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .rating-table__main-group {
    flex: 4;
    min-width: 160px;
    display: flex;
    flex-direction: column;
  }
  .rating-table__group--small,
  .rating-table__cell--group {
    flex: 4;
    min-width: 160px;
    display: flex;
  }
  .rating-table__group {
    display: flex;
    flex: 1;
  }
  .rating-table__score,
  .rating-table__cell--score,
  .rating-table__points,
  .rating-table__cell--points {
    flex: 1;
    min-width: 40px;
    font-size: 0.7rem;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .rating-table__level,
  .rating-table__cell--level {
    flex: 2;
    min-width: 80px;
    font-size: 0.7rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}
@media (max-width: 480px) {
  .criteria__group {
    grid-template-columns: 1fr;
  }
  .criteria__item {
    width: clamp(8rem, 45vw, 11rem);
  }
  .chart__header {
    flex-direction: column;
  }
  .chart__header-info,
  .chart__header-btn {
    width: 100%;
    margin: 0.5rem 0;
  }
}/*# sourceMappingURL=home.css.map */