.center {
  display: flex;
  justify-content: center;
  align-items: center;
}

:root {
  --color-slate-200: oklch(0.929 0.013 255.508);
  --color-slate-900: oklch(0.208 0.042 265.755);
  --color-blue-200: oklch(0.882 0.059 254.128);
  --color-blue-900: oklch(0.379 0.146 265.522);
  --color-blue-600: oklch(0.546 0.245 262.881);
  --color-blue-700: oklch(0.488 0.243 264.376);
  --color-blue-400: oklch(0.707 0.165 254.624);
  --color-blue-500: oklch(0.623 0.214 259.815);
  --color-slate-600: oklch(0.446 0.043 257.281);
  --color-slate-800: oklch(0.279 0.041 260.031);
  --color-slate-700: oklch(0.372 0.044 257.287);
  --font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji",
    "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

.subtitle {
  font-family: var(--font-family);
  font-size: 18px;
  font-weight: 600;
}

.heading-one,
.heading-one span {
  font-family: var(--font-family);
  font-size: 48px;
  font-weight: 700;
  color: white;
  opacity: 0.9;
  text-align: center;
}

.heading-one span {
  background-clip: text;
  background-image: linear-gradient(
    to right,
    var(--color-blue-400),
    var(--color-blue-600)
  );
  color: transparent;
}

.heading-two {
  font-family: var(--font-family);
  font-size: 40px !important;
  font-weight: 600;
}

.heading-three {
  font-family: var(--font-family);
  font-size: 24px !important;
  font-weight: 600;
}

.hero {
  background-image: linear-gradient(
    to bottom right,
    var(--color-slate-900),
    var(--color-blue-900),
    var(--color-slate-900)
  );
}

.hero .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.hero p.subtitle {
  margin-top: 0.5rem;
  width: 80%;
  text-align: center;
  color: white;
  opacity: 0.9;
}

.hero .outer {
  border-color: color-mix(in oklab, var(--color-blue-500) 30%, transparent);
  border-width: 1px;
  border-style: solid;
  border-radius: 24px;
  width: 8rem;
  height: 8rem;
  backdrop-filter: blur(8px);
  background-image: linear-gradient(
    to bottom right,
    color-mix(in oklab, var(--color-blue-500) 20%, transparent),
    color-mix(in oklab, var(--color-blue-600) 20%, transparent)
  );
  position: relative;
}

.hero .inner {
  background-image: linear-gradient(
    to right,
    var(--color-blue-500),
    var(--color-blue-600)
  );
  border-radius: 16px;
  width: 4rem;
  height: 4rem;
}

.hero .inner:not(:first-child) {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-image: linear-gradient(
    to bottom right,
    color-mix(in oklab, var(--color-slate-800) 80%, transparent),
    color-mix(in oklab, var(--color-slate-700) 80%, transparent)
  );
  backdrop-filter: blur(8px);
  border: 1px solid color-mix(in oklab, var(--color-blue-500) 20%, transparent);
  position: absolute;
  width: 5rem;
  height: 5rem;
}

.hero .inner:not(:first-child):hover {
  border-color: color-mix(in oklab, var(--color-blue-500) 40%, transparent);
}

.hero .inner:not(:first-child) svg {
  color: var(--color-blue-400);
}

.hero .inner:not(:first-child) .inner-txt {
  font-family: var(--font-family);
  font-size: 12px;
  font-weight: 400;
  color: white;
  opacity: 0.9;
}

.hero .anim-elements {
  margin-top: 4rem;
  margin-bottom: 4rem;
}

@keyframes ido {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-60px);
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes ico {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-60px);
  }
  100% {
    transform: translateX(0);
  }
}

@keyframes presale {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(60px);
  }
  100% {
    transform: translateX(0);
  }
}

@keyframes token {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(60px);
  }
  100% {
    transform: translateY(0);
  }
}

.hero .inner.ido {
  animation: ido 4s ease-in-out;
  animation-iteration-count: infinite;
}

.hero .inner.ico {
  animation: ico 4s ease-in-out;
  animation-iteration-count: infinite;
}

.hero .inner.presale {
  animation: presale 4s ease-in-out;
  animation-iteration-count: infinite;
}

.hero .inner.token {
  animation: token 4s ease-in-out;
  animation-iteration-count: infinite;
}

.hero .btn {
  font-family: var(--font-family);
  background-image: linear-gradient(
    to right,
    var(--color-blue-500),
    var(--color-blue-600)
  );
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 15px;
  font-weight: 500;
  border-radius: 8px;
  padding: 8px 24px;
}

.hero .btn-primary:hover {
  background-image: linear-gradient(
    to right,
    var(--color-blue-600),
    var(--color-blue-700)
  );
}

.hero .btns-container {
  justify-content: center;
  width: 100%;
  margin-top: 2rem;
}

.hero .btn-light {
  color: oklch(0.809 0.105 251.813);
  background: #fff;
  border: 1px solid color-mix(in oklab, var(--color-blue-500) 30%, transparent);
}

.hero .btn-light:hover {
  color: #fff;
  background: color-mix(in oklab, var(--color-blue-500) 10%, transparent);
  border-color: color-mix(in oklab, var(--color-blue-500) 30%, transparent);
}

/* Why choose */
.why-choose .heading-two span {
  background-clip: text;
  background-image: linear-gradient(
    to right,
    var(--color-blue-400),
    var(--color-blue-600)
  );
  color: transparent;
}

.why-choose p.subtitle {
  color: var(--color-slate-600);
  opacity: 0.9;
}

.why-choose svg {
  background-image: linear-gradient(
    to right,
    var(--color-blue-500),
    var(--color-blue-600)
  );
  width: 40px;
  height: 40px;
  border-radius: 8px;
  padding: 8px;
}

.why-choose .card-title {
  font-size: 20px !important;
  text-align: left;
}

.why-choose p.card-text {
  color: var(--color-slate-600);
  opacity: 0.9;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  text-align: left;
}

.why-choose .card {
  border: 1px solid var(--color-slate-200);
  border-radius: 20px;
  margin: 1rem;
  width: calc((100% / 4) - 1rem);
  align-items: start;
}

.why-choose .card:hover {
  border-color: color-mix(in oklab, var(--color-blue-500) 40%, transparent);
}

/* Why Launch */
.why-launch .card {
  align-items: center;
}

.why-launch p.card-text,
.why-launch .card-title {
  text-align: center;
}

.why-launch .img-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.why-launch .img-container svg {
  color: var(--color-blue-500);
  background-image: linear-gradient(
    to right,
    color-mix(in oklab, var(--color-blue-500) 10%, transparent),
    color-mix(in oklab, var(--color-blue-600) 10%, transparent)
  );
  width: 50px;
  height: 50px;
  border-radius: 50%;
  padding: 12px;
  border: 1px solid color-mix(in oklab, var(--color-blue-500) 20%, transparent);
}

/* Trusted By */
.trusted-by {
  background-image: linear-gradient(
    to bottom right,
    var(--color-slate-900),
    var(--color-blue-900),
    var(--color-slate-900)
  );
}

.trusted-by h2.heading-two {
  color: white !important;
  opacity: 0.9;
}

.trusted-by p.subtitle {
  width: 60%;
  color: oklch(0.872 0.01 258.338) !important;
  font-weight: 400;
  line-height: 24px;
}

.trusted-by .heading-three {
  color: white;
}

.trusted-by a:has(>.card) {
  margin: 1rem;
}

.trusted-by .card {
  border: 1px solid color-mix(in oklab, var(--color-blue-500) 20%, transparent);
  border-radius: 16px;
  background-color: color-mix(
    in oklab,
    var(--color-slate-800) 50%,
    transparent
  );
  color: oklch(0.145 0 0);
  width: 100%;
  margin: 0;
}

.trusted-by .card:hover {
  border-color: color-mix(in oklab, var(--color-blue-500) 40%, transparent);
}

.trusted-by .card:hover .img-container img {
  opacity: 1;
}

.trusted-by .img-container img {
  border-radius: 8px;
  opacity: 0.8;
}

.trusted-by .card .card-text {
  color: var(--color-blue-400);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 1px !important;
}

.trusted-by .card .card-span {
  font-family: var(--font-family);
  color: oklch(0.707 0.022 261.325);
  font-weight: 500;
  font-size: 13px;
}

.trusted-by .metric .num {
  font-family: var(--font-family);
  font-size: 40px;
  font-weight: 900;
  color: var(--color-blue-400);
  text-align: center;
}

.trusted-by .metric .text {
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: 400;
  color: oklch(0.872 0.01 258.338);
  letter-spacing: 0.5px !important;
  text-align: center;
}

.trusted-by .metrics-container {
  display: flex;
  justify-content: space-around;
  width: 100%;
  margin-top: 2rem;
}

/* Ready */
.ready {
  background-image: unset;
}

.ready .container {
  background-image: linear-gradient(
    to right,
    oklch(0.97 0.014 254.604),
    oklch(0.932 0.032 255.585)
  );
  padding: 3rem;
  border: 1px solid var(--color-blue-200);
  border-radius: 20px;
}

.ready h2.heading-two {
  color: black !important;
  opacity: 0.9;
}

.ready h2.heading-two span {
  background-image: linear-gradient(
    to right,
    var(--color-blue-500),
    var(--color-blue-600)
  );
}

.ready p.subtitle {
  color: oklch(0.446 0.043 257.281) !important;
}

.ready svg {
  background-image: unset;
  width: 16px;
  height: unset;
  border-radius: unset;
  padding: unset;
}

.ready .cta-container a {
  font-family: var(--font-family);
  background-image: linear-gradient(
    to right,
    var(--color-blue-500),
    var(--color-blue-600)
  );
}

.ready .cta-container p {
  font-family: var(--font-family);
}

.ready .cta-container a svg:last-child {
  transition: transform 0.3s ease;
}

.ready .cta-container a:hover svg:last-child {
  transform: translateX(5px);
}

.ready .metrics-container {
  margin-top: 3rem;
}

.ready .metric .num {
  color: var(--color-blue-600);
  font-weight: 600;
  font-size: 32px;
}

.ready .metric .text {
  color: var(--color-slate-600);
}

/* Process */
.process .heading-three {
  font-size: 20px !important;
  text-align: left;
}

.process .elem-container p.subtitle {
  font-size: 16px !important;
  text-align: left;
  margin-bottom: 0;
  width: 100%;
}

.process .elem-container .right {
  display: flex;
  gap: 1.5rem;
  background-color: color-mix(
    in oklab,
    var(--color-slate-800) 50%,
    transparent
  );
  border: 1px solid color-mix(in oklab, var(--color-blue-500) 20%, transparent);
  border-radius: 18px;
  padding: 1.5rem;
  width: 100%;
}

.process .elem-container .right:hover {
  border-color: color-mix(in oklab, var(--color-blue-500) 40%, transparent);
}

.process .elem-container .elem {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.process .elem-container .elem .numb {
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: 500;
  color: white;
  border: 3px solid black;
  padding: 1rem;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: linear-gradient(
    to right,
    var(--color-blue-500),
    var(--color-blue-600)
  );
}

.process .elem-container {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.process .elem-container .elem:nth-child(even) {
  flex-direction: row-reverse;
}

/* FAQ */
.faq .accordion {
  width: 75%;
  margin: auto;
  margin-bottom: 0.5rem;
}

.faq .accordion-button {
  font-family: var(--font-family);
  font-weight: 500;
  background-color: transparent !important;
  box-shadow: none !important;
  font-size: 15px;
}

.faq .accordion-item:has(.accordion-button:not(.collapsed)) {
  border-color: color-mix(in oklab, var(--color-blue-500) 40%, transparent);
}

.faq
  .accordion-item:not(:first-of-type):has(.accordion-button:not(.collapsed)) {
  border: 1px solid color-mix(in oklab, var(--color-blue-500) 40%, transparent);
}

.faq .accordion-button:hover {
  text-decoration: underline;
  color: oklch(0.546 0.245 262.881) !important;
}

.faq .accordion-button:not(.collapsed) {
  color: unset;
}

.faq .accordion-body {
  font-family: var(--font-family);
  font-size: 14px;
  text-align: left;
}

.faq .accordion-item:not(:last-child) {
  margin-bottom: 1rem;
}

.faq .accordion-item {
  border: 1px solid oklch(0.929 0.013 255.508);
  border-radius: 15px !important;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

@media screen and (max-width: 992px) {
  .why-choose .card {
    width: 100%;
  }

  .why-choose .cards-container {
    flex-wrap: wrap;
  }

  .trusted-by p.subtitle {
    width: 100%;
  }

  .trusted-by .metrics-container {
    flex-wrap: wrap;
  }

  .ready .cta-container {
    flex-wrap: wrap;
    flex-direction: column;
    gap: 1rem !important;
  }

  .ready .container {
    padding: 3rem !important;
  }

  .faq .accordion {
    width: 100%;
  }
}

@media screen and (max-width: 576px) {
  .ready .cta-container a {
    font-size: small;
  }

  .ready .cta-container p {
    text-align: center;
  }

  .trusted-by .metrics-container {
    gap: 1.5rem;
  }

  .process .elem-container .right {
    flex-wrap: wrap;
  }

  .process .elem-container .elem .left {
    display: none;
  }

  .heading-one,
  .heading-one span {
    font-size: 40px;
  }

  .hero p.subtitle {
    width: 100%;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
  }

  .hero .btns-container {
    flex-direction: column;
    margin-top: 0;
  }

  .hero .anim-elements {
    margin-top: 3.5rem;
    margin-bottom: 3.5rem;
  }
}
