* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  min-height: 100%;
  margin: 0;
  background: #fafafa;
  color: #757575;
  font-family: "Exo 2", Helvetica, Arial, sans-serif;
  overflow-x: hidden;
}

body {
  min-height: 100vh;
}

.coming-soon-page {
  min-height: 100vh;
  background: #fafafa;
}

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

.neve-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
  animation: neveFadeIn 3.5s ease 2s both;
}

.neve-container {
  width: 100%;
  max-width: 100%;
  margin: -90px auto 0;
}

.particle {
  position: relative;
  width: 720px;
  height: 720px;
  margin: 0 auto;
  padding: 0 20px;
}

.particle-slider-shell {
  position: relative;
  width: 100%;
  height: 100%;
  background: transparent !important;
  overflow: visible;
}

.particle-slider-shell .slides {
  display: none;
}

.particle-slider-shell .draw {
  display: block;
  width: 100%;
  height: 100%;
  background: transparent !important;
}

.draw {
  transform: scale(0.75);
  transform-origin: center;
}

.neve-orb-frame {
  width: 720px;
  height: 720px;
  max-width: 100%;
  aspect-ratio: 1 / 1;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  overflow: hidden;
  clip-path: circle(50% at 50% 50%);
}

.neve-orb-frame .particle {
  padding: 0;
}

.neve-section .eyebrow {
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #757575;
  margin: -70px 0 10px;
}

.neve-section h1 {
  font-family: "Exo 2", Helvetica, Arial, sans-serif;
  font-size: 48px;
  line-height: 1.15;
  color: #111111;
  margin: 0 0 16px;
}

.neve-subtext {
  font-size: 18px;
  color: #757575;
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 1100px) {
  .neve-section {
    padding: 18px 16px 48px;
  }

  .neve-container {
    margin-top: 0;
  }

  .neve-section .eyebrow {
    margin-top: 0;
  }

  .neve-orb-frame {
    width: min(360px, 74vw);
    height: min(360px, 74vw);
    margin-bottom: 22px;
  }

  .neve-orb-frame .particle {
    flex: 0 0 720px;
    width: 720px;
    height: 720px;
    margin: 0;
    padding: 0;
  }

  .neve-orb-frame .draw {
    transform: scale(0.5);
  }
}

@media (max-width: 640px) {
  .neve-section {
    padding: 16px 16px 44px;
  }

  .neve-orb-frame {
    width: min(300px, 72vw);
    height: min(300px, 72vw);
    margin-bottom: 20px;
  }

  .neve-orb-frame .draw {
    transform: scale(-0.58);
  }
}

@media (max-width: 480px) {
  .neve-section {
    padding: 14px 16px 40px;
  }

  .neve-section h1 {
    font-size: 28px;
    line-height: 1.15;
  }

  .neve-orb-frame {
    width: min(260px, 68vw);
    height: min(260px, 68vw);
    margin-bottom: 18px;
  }

  .neve-orb-frame .draw {
    transform: scale(0.36);
  }

  .neve-subtext {
    font-size: 15px;
    line-height: 1.55;
  }
}