html {
  min-height: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 0;
  scroll-snap-type: y mandatory;
}

body {
  min-height: 100%;
  background: #232323;
  overflow-x: hidden;
  scroll-snap-type: y mandatory;
}

html.is-scrolling,
html.is-scrolling body,
html.is-scrolling .group-section {
  scroll-snap-type: none;
  scroll-snap-align: none;
}

.group-page {
  min-height: 100vh;
}

html.group-swiper,
html.group-swiper body {
  height: 100%;
  overflow: hidden;
  scroll-snap-type: none;
}

html.group-swiper .group-page {
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
}

.group-sections {
  width: 100%;
}

html.group-swiper .group-sections {
  height: 100%;
  display: flex;
  flex-direction: column;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, cubic-bezier(.29,.23,.13,1));
  box-sizing: content-box;
  will-change: transform;
}

html.group-swiper .group-section {
  height: 100vh;
  height: 100dvh;
  min-height: 100vh;
  min-height: 100dvh;
  flex-shrink: 0;
  scroll-snap-align: none;
  backface-visibility: hidden;
}

.group-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
  transition: background .35s ease, border-color .35s ease;
  border-bottom: 1px solid transparent;
}

.group-header.is-solid {
  background: rgba(18,18,20,.72);
  border-bottom-color: rgba(255,255,255,.08);
}

.group-header.is-menu-open {
  background: rgba(18,18,20,.88);
  border-bottom-color: rgba(255,255,255,.1);
}

.group-header__inner {
  position: relative;
  max-width: 1245px;
  margin: 0 auto;
  padding: 24px 40px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.group-header__logo img {
  display: block;
  width: 220px;
  max-width: 100%;
}

.group-header__nav {
  margin-left: auto;
  display: flex;
  gap: 24px;
}

.group-header__nav a {
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
}

.group-menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 8px;
  background: rgba(12,12,14,.34);
  color: #fff;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease;
}

.group-menu-toggle:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.44);
}

.group-menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform .24s ease, opacity .2s ease;
}

.group-menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.group-menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.group-menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.group-mobile-menu {
  position: absolute;
  top: calc(100% - 8px);
  right: 20px;
  min-width: 210px;
  padding: 8px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 10px;
  background: rgba(15,15,17,.94);
  box-shadow: 0 18px 42px rgba(0,0,0,.28);
  backdrop-filter: blur(14px);
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
}

.group-mobile-menu.is-open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.group-mobile-menu a {
  display: block;
  padding: 13px 14px;
  border-radius: 7px;
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 650;
}

.group-mobile-menu a:hover,
.group-mobile-menu a:focus-visible {
  background: rgba(255,255,255,.08);
  outline: none;
}

.group-section {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.group-section__bg,
.group-section__overlay {
  position: absolute;
  inset: 0;
}

.group-section__bg {
  background-size: cover;
  background-position: left top;
  background-repeat: no-repeat;
  transition: opacity .45s ease;
}

.group-section--hero .group-section__bg {
  filter: blur(1.5px) saturate(.82) brightness(.78);
  transform: scale(1.015);
}

.group-section__overlay--hero {
  background:
    radial-gradient(circle at 56% 53%, rgba(0,0,0,.08) 0%, rgba(0,0,0,.32) 58%, rgba(0,0,0,.5) 100%),
    linear-gradient(90deg, rgba(0,0,0,.56) 0%, rgba(0,0,0,.28) 48%, rgba(0,0,0,.42) 100%);
}

.group-section__overlay--dark {
  background: rgba(35,35,35,.8);
}

.group-section__content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: 110px;
  padding-bottom: 48px;
}

.group-rail {
  position: fixed;
  top: 50%;
  right: 34px;
  z-index: 110;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transform: translateY(-50%);
}

.group-rail__item {
  --rail-color: #fff;
  --rail-hover-bg: rgba(255,255,255,.18);
  --rail-hover-border: rgba(255,255,255,.76);
  display: flex;
  align-items: center;
  color: rgba(255,255,255,.76);
  text-decoration: none;
}

.group-rail__item[data-section-link="nevaone"] {
  --rail-color: #76CB9D;
  --rail-hover-bg: rgba(118,203,157,.16);
  --rail-hover-border: rgba(118,203,157,.78);
}

.group-rail__item[data-section-link="neva101"] {
  --rail-color: #4CC2F1;
  --rail-hover-bg: rgba(76,194,241,.16);
  --rail-hover-border: rgba(76,194,241,.78);
}

.group-rail__item[data-section-link="nevasec"] {
  --rail-color: #F14C4C;
  --rail-hover-bg: rgba(241,76,76,.16);
  --rail-hover-border: rgba(241,76,76,.78);
}

.group-rail__dot {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.45);
  background: rgba(255,255,255,.08);
  transition: transform .24s ease, background .24s ease, border-color .24s ease;
}

.group-rail__item:hover .group-rail__dot {
  background: var(--rail-hover-bg);
  border-color: var(--rail-hover-border);
}

.group-rail__item.is-active .group-rail__dot {
  background: var(--rail-color);
  border-color: var(--rail-color);
  transform: scale(1.18);
}

.group-hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 34px;
  align-items: start;
}

.group-hero__copy {
  color: #fff;
  max-width: 760px;
  padding: 2% 4% 0;
}

.group-hero__copy h1 {
  color: #fff;
  font-size: 72px;
  line-height: 1;
  letter-spacing: -.03em;
  margin: 0 0 18px;
}

.group-hero__you {
  color: #92d8b1;
  text-shadow: 0 0 21px rgba(118,203,157,.3);
  animation: groupYouPulse 8.4s ease-in-out infinite;
}

.group-hero__copy h6 {
  margin: 0;
  color: #fff;
  font-family: var(--font-body);
  font-size: 24px;
  font-weight: 400;
}

.group-hotspots {
  position: relative;
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
}

.group-hotspots__logo {
  display: block;
  width: 100%;
  height: auto;
}

.group-hotspots__point {
  position: absolute;
  transform: translate(-50%, -50%);
  transition:
    opacity .34s ease,
    transform .46s cubic-bezier(.16,1,.3,1);
  transition-delay: var(--dot-delay, 0s);
}

.group-hotspots__dot {
  position: relative;
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--dot-color, #848484);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 15px;
  font-weight: 700;
  box-shadow: 0 0 0 0 var(--dot-shadow, rgba(132,132,132,.55));
  animation: groupPulse 2s infinite;
  z-index: 3;
}

.group-hotspots__dot::before {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 50%;
}

.group-hotspots__dot svg {
  width: 27px;
  height: 27px;
  color: #fff;
}

.group-hotspots__dot svg path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.group-hotspots__card {
  position: absolute;
  top: 44px;
  left: 50%;
  transform: translateX(-50%);
  width: 280px;
  padding: 16px 18px;
  border-radius: 12px;
  background: rgba(16,16,18,.92);
  border: 1px solid color-mix(in srgb, var(--dot-color, #fff) 30%, rgba(255,255,255,.12));
  box-shadow: 0 20px 40px rgba(0,0,0,.25);
  opacity: 0;
  pointer-events: none;
  transition: opacity .38s ease, transform .38s ease;
  transform: translate(-50%, 8px);
}

.group-hotspots__point:hover .group-hotspots__card {
  opacity: 1;
  transform: translate(-50%, 0);
}

.group-scroll-ready .group-hotspots__point {
  opacity: 0;
  transform: translate(-50%, -50%) scale(.62);
}

.group-scroll-ready .group-section.is-visible .group-hotspots__point {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.group-hotspots__card h5 {
  color: var(--dot-color, #fff);
  font-size: 18px;
  margin: 0 0 10px;
}

.group-hotspots__card p {
  color: rgba(255,255,255,.78);
  font-size: 13.5px;
  line-height: 1.6;
  margin: 0 0 8px;
}

.group-hotspots__card p:last-child {
  margin-bottom: 0;
}

.group-panel {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
  align-items: center;
}

.group-panel__copy {
  color: #fff;
  padding: 4%;
}

.group-kicker {
  display: inline-block;
  margin-bottom: 18px;
  color: #fff;
  font-family: var(--font-mono);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  position: relative;
}

.group-kicker::after {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  margin-top: 10px;
  background: #76CB9D;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .46s cubic-bezier(.16,1,.3,1);
}

.group-kicker--white::after {
  background: #fff;
}

.group-kicker--blue::after {
  background: #4CC2F1;
}

.group-kicker--red::after {
  background: #F14C4C;
}

.group-panel__copy h2 {
  color: #fff;
  font-size: 58px;
  line-height: 1.08;
  margin: 0 0 18px;
}

.group-panel__copy p {
  color: var(--gray-300);
  font-size: 17px;
  line-height: 1.8;
  max-width: 760px;
}

#ou .group-panel__copy p,
#nevaone .group-panel__copy p,
#neva101 .group-panel__copy p,
#nevasec .group-panel__copy p {
  font-size: 19px;
}

.group-panel__copy a {
  color: #fff;
}

.group-panel__media {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-right: 2%;
}

.group-panel__media img {
  display: block;
  width: 100%;
  max-width: 520px;
  height: auto;
}

.group-panel__media--small img {
  max-width: 220px;
}

.group-scroll-ready .group-hero__copy,
.group-scroll-ready .group-hotspots,
.group-scroll-ready .group-panel__copy,
.group-scroll-ready .group-panel__media {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity .42s ease,
    transform .42s cubic-bezier(.16,1,.3,1);
}

.group-scroll-ready .group-section.is-visible .group-hero__copy,
.group-scroll-ready .group-section.is-visible .group-hotspots,
.group-scroll-ready .group-section.is-visible .group-panel__copy,
.group-scroll-ready .group-section.is-visible .group-panel__media {
  opacity: 1;
  transform: none;
}

.group-scroll-ready .group-section.is-visible .group-kicker::after {
  transform: scaleX(1);
}

.group-scroll-ready .group-section.is-visible .group-hotspots,
.group-scroll-ready .group-section.is-visible .group-panel__media {
  transition-delay: .08s;
}

@keyframes groupPulse {
  0% { box-shadow: 0 0 0 0 var(--dot-shadow, rgba(132,132,132,.55)); }
  70% { box-shadow: 0 0 0 18px rgba(132,132,132,0); }
  100% { box-shadow: 0 0 0 0 rgba(132,132,132,0); }
}

@keyframes groupYouPulse {
  0%,
  100% {
    color: #92d8b1;
    text-shadow: 0 0 21px rgba(118,203,157,.3);
  }

  33% {
    color: #80c8ef;
    text-shadow: 0 0 21px rgba(76,194,241,.28);
  }

  66% {
    color: #e78f8f;
    text-shadow: 0 0 21px rgba(241,76,76,.26);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .group-hotspots,
  .group-hotspots__dot {
    animation: none;
  }

  .group-hero__you {
    animation: none;
  }

  .group-section__bg,
  .group-hero__copy,
  .group-hotspots,
  .group-panel__copy,
  .group-panel__media,
  .group-hotspots__card,
  .group-rail__dot,
  .group-header {
    transition: none;
  }
}

@media (max-width: 999px) {
  html,
  body {
    scroll-snap-type: y proximity;
  }

  .group-page {
    min-height: 100vh;
  }

  .group-header__inner {
    padding: 18px 20px;
  }

  .group-header__logo img {
    width: 180px;
  }

  .group-header__nav {
    display: none;
  }

  .group-menu-toggle {
    display: inline-flex;
  }

  .group-rail {
    right: 14px;
    gap: 10px;
  }

  .group-section__content {
    padding-top: 90px;
    padding-bottom: 36px;
  }

  .group-hero__grid,
  .group-panel {
    grid-template-columns: 1fr;
  }

  .group-hero__copy h1 {
    font-size: 48px;
  }

  .group-hero__copy h6 {
    font-size: 20px;
  }

  .group-panel__copy h2 {
    font-size: 38px;
  }

  .group-hotspots__point {
    display: none;
  }
}
