@import url("https://fonts.googleapis.com/css2?family=Boldonse&family=Bodoni+Moda:ital,opsz,wght@0,6..96,400;0,6..96,700;1,6..96,400&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');
@import url('https://pro.fontawesome.com/releases/v6.0.0-beta1/css/all.css');

:root {
  --primary-font: "Boldonse", sans-serif;
  --secondary-font: "Bodoni Moda", serif;
  --primary-color: #e0e0e0;
  --secondary-color: rgba(255, 255, 255, 0.5);
  --quote-size: 5vw;
  --author-size: 1.2vw;
  --cursor-size: 16px;
  --ghost-color: #000000;
  --eye-glow-color: #ffff00;
}

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

html,
body {
  width: 100%;
  height: 100%;
  cursor: none;
  background-color: #111;
  letter-spacing: -0.03em;
  position: relative;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: transparent url("http://assets.iceable.com/img/noise-transparent.png") repeat 0 0;
  background-size: 300px 300px;
  animation: noise-animation 0.3s steps(5) infinite;
  opacity: 1;
  will-change: transform;
  z-index: 100;
  pointer-events: none;
}

@keyframes noise-animation {
  0% {
    transform: translate(0, 0);
  }

  10% {
    transform: translate(-2%, -3%);
  }

  20% {
    transform: translate(-4%, 2%);
  }

  30% {
    transform: translate(2%, -4%);
  }

  40% {
    transform: translate(-2%, 5%);
  }

  50% {
    transform: translate(-4%, 2%);
  }

  60% {
    transform: translate(3%, 0);
  }

  70% {
    transform: translate(0, 3%);
  }

  80% {
    transform: translate(-3%, 0);
  }

  90% {
    transform: translate(2%, 2%);
  }

  100% {
    transform: translate(1%, 0);
  }
}

.content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 20;
  padding: 20px;
  text-align: center;
  margin-bottom: 100rem;
  color: var(--primary-color);
  overflow: hidden;
}

.quote-container {
  max-width: 90%;
}

.quote {
  font-family: var(--primary-font);
  font-size: var(--quote-size);
  line-height: 1.3;
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-bottom: 5vh;
  opacity: 1;
  text-transform: uppercase;
}

.author {
  font-family: var(--secondary-font);
  font-size: var(--author-size);
  font-style: italic;
  opacity: 1;
  margin-top: 2vh;
  margin-bottom: 2vh;
}

.caption {
  font-family: var(--secondary-font);
  font-size: var(--author-size);
  margin-bottom: 2vh;
}

.book {
  font-family: var(--secondary-font);
  font-size: var(--author-size);
  opacity: 0.5;
  margin-top: 1vh;
}

.custom-cursor {
  position: fixed;
  width: var(--cursor-size);
  height: var(--cursor-size);
  border-radius: 50%;
  background-color: var(--secondary-color);
  transform: translate(-50%, -50%);
  pointer-events: none;
  mix-blend-mode: difference;
  z-index: 99999999999999999999999;
  transition: width 0.2s, height 0.2s;
  will-change: transform;
}

.dg {
  display: none;
}

canvas {
  display: block;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  margin: 0 !important;
  padding: 0 !important;
  z-index: 2;
  pointer-events: none;
}

.features-vid {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0.5;
  filter: hue-rotate(55deg);

}

.info {
  position: fixed;
  bottom: 10px;
  left: 10px;
  color: white;
  font-family: monospace;
  font-size: 12px;
  background-color: rgba(121, 98, 255, 0.5);
  padding: 5px 10px;
  border-radius: 3px;
  pointer-events: none;
  z-index: 10;
}

.dg.ac {
  z-index: 101 !important;
}

#container {
  position: relative;
  width: 100vw;
  height: 100vh;
}

#controls {
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 100;
  display: flex;
  gap: 20px;
  align-items: center;
}

#playButton {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 8px 16px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  transition: background 0.3s;
}

#playButton:hover {
  background: rgba(255, 255, 255, 0.3);
}

#fps {
  position: fixed;
  top: 20px;
  right: 20px;
  color: white;
  font-size: 12px;
  background: rgba(121, 98, 255, 0.5);
  padding: 4px 8px;
  border-radius: 4px;
  z-index: 100;
}

.profile-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  max-width: 300px;
  width: 100%;
  position: fixed;
  bottom: 16px;
  left: 16px;
  z-index: 999;
  color: var(--primary-color);
  line-height: inherit;
}

.profile-image {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
}

.profile-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.profile-name {
  font-size: 14px;
  font-weight: 500;
}

.profile-twitter {
  font-size: 12px;
  color: #71717a;
}

.profile-twitter a {
  text-decoration: none;
  color: inherit;
}

.profile-twitter a:hover {
  text-decoration: underline;
}

.navbar {
  position: fixed;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10000000000000000000000000;
  color: #fff;
  background-color: #00000025;
  backdrop-filter: blur(8px);
  width: 50%;
  height: 4rem;
  border-radius: 1.2rem;
  border: 1px solid #444444;
  display: flex;
}

.btn {
  background-color: #ffffff;
  border: 1px solid #d6d6d6;
  border-radius: 1.2rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-weight: bold;
  transition: 0.2s;
}

.btn span {
  color: #000 !important;
}

.nav-logo {
  margin: 0.3rem 0.5rem;
}

.waitlist {
  width: 10em;
  z-index: 1000000000000000000;
  margin: 0.3rem auto;
  margin-right: 0.3rem;
}

.waitlist:hover {
  margin: 0.1rem auto;
  margin-right: 0.1rem;
}

.content .btn {
  width: 25rem;
  height: 3.5em;
  margin: 0 auto;
  margin-top: 2rem;
  backdrop-filter: blur(20px);
}

.content .btn:hover {
  transform: scale(1.1);
}

.quote-span {
  text-align: left !important;
  width: 100%;
}

.showcase::before {
  --size: 45px;
  --line: color-mix(in hsl, canvasText, transparent 70%);
  content: '';
  height: 100vh;
  width: 100vw;
  position: fixed;
  background: linear-gradient(90deg,
      var(--line) 1px,
      transparent 1px var(--size)) 50% 50% / var(--size) var(--size),
    linear-gradient(var(--line) 1px, transparent 1px var(--size)) 50% 50% / var(--size) var(--size);
  mask: linear-gradient(-20deg, transparent 50%, white);
  top: 0;
  transform-style: flat;
  pointer-events: none;
  z-index: -1;
}

.c-lerp-block_title {
  display: inline-block;
  font-size: 0;
  line-height: 1.1;
  margin-left: 1.25rem;
  vertical-align: middle;
}

.c-lerp-block_title span {
  display: inline-block;
  min-width: .3em;
}

.section-resource {
  justify-content: center;
  align-items: center;
  height: 100vh;
  z-index: -1;
  display: flex;
  overflow: hidden;
}

.osmo-icon__link {
  color: currentColor;
  text-decoration: none;
  position: absolute;
}

.osmo-icon-svg {
  width: 10em;
}

.section-resource {
  margin-top: 0rem;
  z-index: 99;
}

.showcase-screenshot {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1000000;
}

a-hole {
  position: absolute;
  top: 0;
  left: 0;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

a-hole:before {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: block;
  width: 150%;
  height: 140%;
  background: radial-gradient(ellipse at 50% 55%, transparent 10%, black 50%);
  transform: translate3d(-50%, -50%, 0);
  content: "";
}

a-hole:after {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 5;
  display: block;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at 50% 75%, #a900ff 20%, transparent 75%);
  mix-blend-mode: overlay;
  transform: translate3d(-50%, -50%, 0);
  content: "";
}

@-webkit-keyframes aura-glow {
  0% {
    background-position: 0 100%;
  }

  100% {
    background-position: 0 300%;
  }
}

@keyframes aura-glow {
  0% {
    background-position: 0 100%;
  }

  100% {
    background-position: 0 300%;
  }
}

a-hole .aura {
  position: absolute;
  top: -71.5%;
  left: 50%;
  z-index: 3;
  width: 30%;
  height: 140%;
  background: linear-gradient(20deg, #00f8f1, #ffbd1e20 16.5%, #fe848f 33%, #fe848f20 49.5%, #00f8f1 66%, #00f8f160 85.5%, #ffbd1e 100%) 0 100%/100% 200%;
  border-radius: 0 0 100% 100%;
  filter: blur(50px);
  mix-blend-mode: plus-lighter;
  opacity: 0.45;
  transform: translate3d(-50%, 0, 0);
  -webkit-animation: aura-glow 5s infinite linear;
  animation: aura-glow 5s infinite linear;
}

a-hole .overlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(transparent, transparent 1px, white 1px, white 2px);
  mix-blend-mode: overlay;
  opacity: 0.5;
  background-color: #1a1a1a;
}

a-hole canvas {
  display: block;
  width: 100%;
  height: 100%;
}

.showcase-img {
  box-shadow: 0px 39px 156px 0px rgba(154, 137, 255, 0.75);
  -webkit-box-shadow: 0px 39px 166px 0px rgba(155, 137, 255, 0.459);
  -moz-box-shadow: 0px 39px 166px 0px rgba(155, 137, 255, 0.274);
  position: absolute;
  border-radius: 0.75rem;
}

.features .card {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  margin-bottom: 2rem;
  width: 38rem;

  display: flex;
  flex-direction: column;
  border-radius: 1.5rem;
  background-color: rgba(48, 48, 48, 0.205);
  padding: 2.5rem 2rem;
  margin: 0 0.5rem;
  border: 1px solid #444444;
  font-family: Arial;
  backdrop-filter: blur(20px);
  font-weight: 100;

}

.feature-content {
  text-align: left;
}

.card-img {
  height: 100%;
}

.card-img img {
  height: 100%;
  border-radius: 1rem;
}

.features .card.card-before {
  background-color: rgba(104, 0, 0, 0.418);
  border: 1px solid #ff5050;
  box-shadow: 0 0 20px 5px #ff505083;
}

.features .card.card-after {
  background-color: rgba(14, 85, 0, 0.589);
  border: 1px solid #5fff50;
  box-shadow: 0 0 20px 5px #56ff5083;
}

.features .header {
  display: flex;
  flex-direction: column;
}

.features .title {
  font-size: 0.75rem;
  line-height: 2rem;
  font-weight: 500;
  color: #fff
}

.features .price {
  font-size: 1.75rem;
  line-height: 1;
  font-weight: 200;
  color: #fff;
  margin-bottom: 1rem;
}

.features .desc {
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
  line-height: 1.625;
  color: rgba(156, 163, 175, 1);
}

.features .lists {
  margin-bottom: 1.5rem;
  flex: 1 1 0%;
  color: rgba(156, 163, 175, 1);
}

.features .lists .list {
  margin-bottom: 1.25rem;
  display: flex;
  margin-left: 0.5rem;
  text-align: left;
}

.features .lists .list svg {
  height: 1.5rem;
  width: 1.5rem;
  flex-shrink: 0;
  margin-right: 0.5rem;
  color: rgba(167, 139, 250, 1);
}

.features .action {
  border: none;
  outline: none;
  display: inline-block;
  border-radius: 0.25rem;
  background-color: rgba(167, 139, 250, 1);
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  text-align: center;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: rgba(17, 24, 39, 1);
}

@media only screen and (max-width: 1024px) {

  .lists {
    text-align: left;
  }

  .lists svg {
    margin-right: 2vw !important
  }

  .navbar {
    width: 90%;
  }

  .navbar img {
    transform: scale(0.8);
  }

  .quote {
    font-size: 7vw;
  }

  .caption,
  .author {
    font-size: 3.5vw !important;
  }

  .showcase-img {
    width: 90% !important;
  }

  .extras-section {
    padding: 5% 1% !important;
    background-image: none !important;
    background-size: cover;
    background-position: center center;
  }

  .feature-row.feature-master {
    display: block !important;
  }

  .feature-card {
    height: 25rem !important;
    --fz: calc(0.052 * var(--sz)) !important;
  }

  .blocks.feature-card {
    height: 35rem !important;
  }

  .footer-background {
    background-image: url(../footer-mobile.png) !important;
  }
}

@media only screen and (max-width: 768px) {
  .quote-container {
    margin-top: 5rem;
  }

  .quote {
    font-size: 10vw;
  }

  .caption {
    font-size: 5vw;
    margin-bottom: 7.5vw;
  }

  .author {
    font-size: 5.8vw;

  }

  .content .btn {
    width: 20rem;
  }

  .extras-section {
    padding: 5% 2% !important;
  }

  .features .card {
    margin: 1.2rem !important;

  }

  .feature-card {
    --fz: calc(0.102 * var(--sz)) !important;
  }

  .feature-row {
    display: block !important;
    height: 100%;
  }

  .header-row {
    display: block !important;

  }
}

.header-row {
  display: flex;
}

.header-col {
  display: flex;
  flex-direction: column;
}

.header-seperator {
  border: 1px solid #ffffff3d;
  margin: 2em;
}

.features {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin: 5rem 15vw;
}

.extras-section {
  padding: 5% 10%;
}

.feature-row {
  display: flex;
  height: 100%;
}

.feature-col {
  display: block;
  width: 100%;
  height: 100%;
}

.feature-col.blocks {
  height: 35.5rem;
}

.feature-col.blocks .feature-card {
  height: 100%;
}

.feature-card {
  --sz: 20vw;
  --fz: calc(0.032 * var(--sz));
  --xv: 0;
  --yv: 0;
  width: 100%;
  height: calc(1.35 * var(--sz));
  max-width: calc(100vw - 24px);

  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  font-family: Arial;
  transform-style: preserve-3d;
  perspective: 1200px;
}

.feature-card .tilt {
  width: 86%;
  height: 86%;
  border: 1px solid #58519baa;
  box-shadow: 0 0 90px -5px #58519baa;
  border-radius: 22px;
  overflow: hidden;
  display: flex;
  transition: all 0.4s ease-out;
  transform: rotateX(calc(1deg * var(--xv))) rotateY(calc(1deg * var(--yv)));
  padding: 1rem;
}

.feature-card .tilt::before {
  content: "";
  display: block;
  position: absolute;
  left: -12px;
  top: -12px;
  margin: auto;
  width: calc(100% + 24px);
  height: calc(100% + 24px);
  border: 1px solid #71519b55;
  border-radius: 28px;
}

.feature-card span.tag {
  display: block;
  width: fit-content;
  border: 1px solid #fff3;
  border-radius: 1rem;
  color: #fff;
  font-size: 0.8em !important;
  font-size: calc(2 * var(--fz));
  padding: 6px 10px;
  font-family: "Boldonse";
}

.feature-card h2 {
  font-size: 3.6em;
  font-size: calc(2.6 * var(--fz));
  font-weight: 800;
  line-height: 116%;
  background: linear-gradient(0deg, #fff8 0%, #fffd 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0;
  margin: 0 0.75rem;
  margin-bottom: 1rem;

}

.feature-card:nth-child(odd) .card-img {
  margin-left: 1.5rem;
}

.feature-card:nth-child(odd) .tag {
  margin: 0 0 2rem 0rem;

}

.feature-card:nth-child(even) .tag {
  margin: 0 0 2rem 0rem;
  margin-left: auto;
}

.feature-card:nth-child(even) h2 {
  text-align: right;
}

.feature-card p {
  font-size: 1.3em;
  font-size: calc(1.3 * var(--fz));
  font-weight: 600;
  line-height: 142%;
  color: #fff8;
  margin: 0 0.75rem;
}

span {
  color: #fffc;
}

.feature-card .vortex {
  position: absolute;
  width: 86%;
  height: 77.5%;
  backdrop-filter: blur(5px);
}

.feature-card svg {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6%;
  width: 88%;
  margin: auto;
  opacity: 0.1;
}

.feature-card .mist {
  position: absolute;
  width: 140%;
  height: 200%;
  bottom: -6%;
  left: -20%;

  border-radius: calc(var(--sz) / 2);
}

.feature-card .orbs {
  position: absolute;
  width: 100%;
  height: 100%;
}

.feature-card .hide-orb {
  --ax: calc((3 / 3.6) * var(--sz));
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  border-radius: calc((1 / 3) * var(--sz));

}

.feature-card .orb {
  position: absolute;
  width: calc(var(--sz) / 6);
  height: calc(var(--sz) / 6);
  background: #5a1efe;
  box-shadow: 0 -2px 12px -3px #7f1efe, inset 8px -4px 2px 0 #fff2,
    inset 0 0 12px 0 #fffc, inset 0 6px 12px -6px #0008,
    inset 0 32px 12px -12px #0003;
  border-radius: 100%;
  left: 0;
  right: 0;
  margin: auto;
  bottom: 20%;
  opacity: 0;

  --startX: calc(-0.6 * var(--sz));
  --startY: 0;
  --offset: 0s;
  animation: orbX 8s cubic-bezier(0.11, 0, 0.5, 0) infinite,
    orbY 12s cubic-bezier(0.64, 0, 0.92, 0) infinite;
  animation-delay: var(--offset);
}

.feature-card:nth-child(2) {
  --startX: calc(0.6 * var(--sz));
  --offset: 4s;
}

.feature-card:nth-child(3) {
  --startX: calc(-0.3 * var(--sz));
  --startY: calc(-0.3 * var(--sz));
  --offset: 8s;
}

.feature-card:nth-child(4) {
  --startX: calc(0.3 * var(--sz));
  --startY: calc(-0.3 * var(--sz));
  --offset: 12s;
}

.feature-card:nth-child(5) {
  --startX: calc(-0.6 * var(--sz));
  --startY: calc(-0.15 * var(--sz));
  --offset: 16s;
}

.feature-card:nth-child(6) {
  --startX: calc(0.6 * var(--sz));
  --startY: calc(-0.15 * var(--sz));
  --offset: 20s;
}



.feature-card .dot {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  bottom: 0;
  margin: auto;
  width: 2px;
  height: 1px;
  background: #fff;
  transform-origin: 0 -36px;
  rotate: 0deg;
  box-shadow: 0 0 4px 1px #fff;
  animation: innerDot 10s linear infinite, innerDot2 6s ease-in-out infinite;
}

.feature-card .dot:nth-child(2) {
  animation: innerDot 12s linear infinite, innerDot2 5s ease-in-out infinite;
  animation-delay: -2s;
  scale: 0.8;
}

.feature-card .dot:nth-child(3) {
  animation: innerDot 8s linear infinite, innerDot2 4s ease-in-out infinite;
  animation-delay: -6s;
  animation-direction: reverse;
  scale: 0.7;
}

.feature-card .dot:nth-child(4) {
  animation: innerDot 22s linear infinite, innerDot2 5s ease-in-out infinite;
  animation-delay: -5s;
}

.feature-card .dot:nth-child(5) {
  animation: innerDot 8s linear infinite, innerDot2 3.4s ease-in-out infinite;
  animation-delay: -1s;
  animation-direction: reverse;
  scale: 0.76;
}

.feature-card .dot:nth-child(5) {
  animation: innerDot 8.6s linear infinite,
    innerDot2 3.4s ease-in-out infinite;
  animation-delay: -2s;
  scale: 0.8;
}

.feature-card .dot:nth-child(5) {
  animation: innerDot 9.2s linear infinite,
    innerDot2 3.4s ease-in-out infinite;
  animation-delay: -3s;
  animation-direction: reverse;
  scale: 0.9;
}

@keyframes innerDot {
  to {
    rotate: 360deg;
  }
}

@keyframes innerDot2 {
  50% {
    translate: 0 -16px;
  }

  100% {
    translate: 0 0px;
  }
}

@keyframes orbX {
  0% {
    translate: var(--startX) var(--startY);
  }

  20% {
    translate: 0 0;
  }

  100% {
    translate: 0 0;
  }
}

@keyframes orbY {
  0% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }

  20% {
    transform: translateY(calc(0.3 * var(--sz))) scale(0.5);
    opacity: 0;
  }

  100% {
    transform: translateY(calc(0.3 * var(--sz))) scale(0.5);
    opacity: 0;
  }
}

.pricing {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 10rem 0;
  flex-direction: column;
}

.pricing-title {
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  letter-spacing: 0.1rem;
  text-align: center;
  margin-bottom: 2.5rem;
  font-size: 1.6rem;
}

.pricing-title-main {
  font-size: 2.5rem;
  font-family: "Boldonse";
}

.pricing-title .highlight {
  text-decoration: none;
}

.card-container {
  position: relative;
  width: 360px;
  max-width: 90%;
  transform-style: preserve-3d;
  perspective: 1000px;
}

.card-pricing {
  background-color: rgba(48, 20, 100, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 28px;
  padding: 24px;
  color: #E5E7EB;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(167, 120, 255, 0.2) inset;
  position: relative;
  z-index: 1;
  overflow: hidden;
  transform-style: preserve-3d;
  font-family: Arial, Helvetica, sans-serif;
}

.card-title {
  font-size: 1.775rem;
  font-weight: 700;
  color: #F9FAFB;
  margin-bottom: 8px;
  transform: translateZ(20px);
}

.card-price {
  font-size: 3.25rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 6px;
  transform: translateZ(20px);
}

.card-price .currency {
  font-size: 1.875rem;
  font-weight: 500;
  vertical-align: super;
  margin-right: 4px;
  color: #9274fd;
}

.card-price .period {
  font-size: 1.875rem;
  font-weight: 500;
  text-decoration: line-through;
  color: #D1D5DB;
}

.card-description {
  font-size: 1.125rem;
  color: #B0B6BF;
  margin-bottom: 20px;
  line-height: 1.6;
  transform: translateZ(20px);
}

.features-list {
  list-style: none;
  padding: 0;
  margin-bottom: 24px;
  transform: translateZ(20px);
}

.features-list li {
  display: flex;
  align-items: center;
  font-size: 1.1rem;
  margin-bottom: 12px;
  color: #D1D5DB;
}

.rotating-disc-svg {
  width: 20px;
  height: 20px;
  margin-right: 12px;
  animation: spin 3s linear infinite;
}

.rotating-disc-svg circle {
  stroke: #9d74fd;
  stroke-width: 2;
  stroke-dasharray: 10 5;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.cta-button {
  background-color: rgba(133, 80, 255, 0.25);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #FFFFFF;
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 0;
  width: 100%;
  border: 1px solid rgba(149, 120, 255, 0.3);
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(143, 45, 255, 0.25);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transform: translateZ(20px);
}

.cta-button:hover {
  background-color: rgba(153, 90, 255, 0.4);
  border-color: rgba(184, 140, 255, 0.4);
  transform: translateY(-2px) scale(1.02) translateZ(20px);
  box-shadow: 0 7px 20px rgba(119, 0, 255, 0.35);
}

.cta-button:active {
  transform: translateY(-1px) scale(0.98) translateZ(20px);
  background-color: rgba(141, 70, 255, 0.45);
}

.highlight {
  text-decoration: underline;
  color: #5a1efe;
  text-shadow: 0px 0px 15px rgba(176, 162, 255, 0.507);
}

#energy-canvas {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
  pointer-events: none;
}

.footer {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-background {
  background: url(../footer.png);
  background-size: cover;
  background-position: center;
  width: 100%;
  position: absolute;
  height: 100%;
}

@keyframes footer-rotate {
  0% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(360deg);
  }
}

.footer circle {
  fill: #fff;
  opacity: 0.6;
}

#spiral {
  position: absolute;
  z-index: 100;
  transform: scale(0.9);
}

.dots-wrap {
  width: 100%;
  height: 100%;
  position: absolute;
}

.dots-container {
  grid-column-gap: 2em;
  grid-row-gap: 2em;
  pointer-events: none;
  flex-flow: wrap;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  inset: 0em;
  width: 100%;
  height: 100%;
}

.dot {
  will-change: transform, background-color;
  transform-origin: center;
  background-color: #245e51;
  border-radius: 50%;
  width: 0.5em;
  height: 0.5em;
  position: relative;
  transform: translate(0);
  opacity: .3;
}

.footer .btn {
  padding: 1rem 2.5rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 1000;
}

.grid-container {
  --grid: 10rem;
  width: 100%;
  height: 100vh;

  top: 0;
  left: 0;
  transform-style: preserve-3d;
  perspective: 100rem;
  -webkit-animation: rotate 100s linear infinite forwards;
  animation: rotate 100s linear infinite forwards;
}

.grid-container .plane {
  --dir: 1;
  width: 300%;
  height: 150%;
  min-height: 70rem;
  position: absolute;
  bottom: 0;
  transform-style: preserve-3d;
  transform-origin: bottom center;
  transform: translateX(-50%) rotateX(85deg);
}

.grid-container .plane:last-child {
  --dir: -1;
  top: 0;
  transform-origin: top center;
  transform: translateX(-50%) rotateX(-85deg);
}

.grid-container .plane:last-child>*::after {
  background-image: linear-gradient(to top, #111 var(--grid), rgba(0, 0, 0, 0));
}

.grid-container .plane>* {
  transform-style: preserve-3d;
  height: 100%;
  width: 100%;
  position: absolute;
}

.grid-container .plane>*::before,
.grid-container .plane>*::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.grid-container .plane>*::before {
  background-image: repeating-linear-gradient(to left, rgb(55, 0, 156), rgb(101, 84, 255) 4px, transparent 4px, transparent var(--grid)), repeating-linear-gradient(to bottom, rgb(55, 0, 156), rgb(101, 84, 255) 4px, transparent 4px, transparent var(--grid));
  -webkit-animation: move 1s linear infinite forwards;
  animation: move 1s linear infinite forwards;
}

.grid-container .plane>*::after {
  background-image: linear-gradient(to bottom, #111 var(--grid), rgba(0, 0, 0, 0));
  z-index: 1;
  transform: translateZ(1px);
}

.grid-container .plane .glow {
  filter: blur(1rem);
  z-index: 1;
  mix-blend-mode: plus-lighter;
}

.footer-bottom {
  position: absolute;
  align-self: flex-end;

  margin: 0.5%;
  padding: 1rem;
  justify-content: center;
  display: flex;
}

.footer-bottom .footer-link {
  margin: 0 1rem;
  text-decoration: none;
  color: #fff;
  font-family: Boldonse;
  font-size: 0.5rem;
  font-weight: 100;
  letter-spacing: 0.01rem;
}

@-webkit-keyframes move {
  from {
    transform: translateY(0px);
  }

  to {
    transform: translateY(calc(var(--grid) * var(--dir)));
  }
}

@keyframes move {
  from {
    transform: translateY(0px);
  }

  to {
    transform: translateY(calc(var(--grid) * var(--dir)));
  }
}

@-webkit-keyframes blink {
  0% {
    visibility: visible;
  }

  50% {
    visibility: visible;
  }

  51% {
    visibility: hidden;
  }

  100% {
    visibility: hidden;
  }
}

@keyframes blink {
  0% {
    visibility: visible;
  }

  50% {
    visibility: visible;
  }

  51% {
    visibility: hidden;
  }

  100% {
    visibility: hidden;
  }
}