/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1;
  font-family: "Poppins", sans-serif;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
body {
  position: relative;
}

:root {
  --main-text: #ffffff;
  --sub-text: #929dce;
  --primary: #ff9133;
  --on-primary: #4f2b0c;
}

/* Shared style */
a {
  text-decoration: none;
}

body {
  width: 100vw;
  position: relative;
  overflow-x: hidden;
  background: #13222e;
}

.bg-head {
  z-index: -1;
  background: linear-gradient(90deg, #060f46 0%, #335ead 100%);
  height: 410px;
  width: calc(100% + 20px);
  border-radius: 50px;
  position: absolute;
  left: -20px;
  transform: rotate(-3deg);
  box-shadow: 0px 17px 92px rgba(0, 0, 0, 0.16),
    0px 7.10219px 38.4354px rgba(0, 0, 0, 0.115017),
    0px 3.79717px 20.5494px rgba(0, 0, 0, 0.0953772),
    0px 2.12866px 11.5198px rgba(0, 0, 0, 0.08),
    0px 1.13052px 6.11809px rgba(0, 0, 0, 0.0646228),
    0px 0.470434px 2.54588px rgba(0, 0, 0, 0.0449833);
}
.bg-cover {
  z-index: -1;
  background: linear-gradient(90deg, #060f46 0%, #335ead 100%);
  height: 200px;
  width: 100vw;
  position: absolute;
  top: 0;
  left: 0;
}
.bg-radial {
  z-index: -1;
  background: radial-gradient(
    40.45% 40.45% at 70% 75%,
    rgba(1, 9, 80, 0.9) 3.12%,
    rgba(14, 17, 32, 0) 100%
  );
  position: absolute;
  bottom: 0;
  right: 0;
  height: 100%;
  width: 100vw;
}

/* Top section */

.head {
  padding: 34px 80px;
  color: var(--main-text);
}

@media screen and (max-width: 840px) {
}

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

.icon-section {
  width: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-right: 200px;
}

.icon-link {
  color: white;
}

.head-logo {
  width: 126px;
}

.title {
  margin-top: 40px;
  font-size: 44px;
  font-weight: 700;
}

.hero-wrapper {
  display: flex;
  justify-content: space-between;
}

@media screen and (max-width: 840px) {
  .head {
    padding: 34px 60px;
  }

  .icon-section {
    margin-right: 0;
  }

  .title {
    font-size: 32px;
  }

  .hero-wrapper {
    flex-direction: column;
  }
}

@media screen and (max-width: 480px) {
  .head {
    padding: 34px 20px;
  }
}

.hero {
  margin-right: 34px;
}

.hero-text-wrapper {
  margin-top: 16px;
}

.hero-text {
  font-size: 18px;
  font-weight: 400;
  line-height: 27px;
}

.launch-button-wrap {
  margin-top: 24px;
  width: 206px;
  height: 60px;
  background: linear-gradient(to bottom, #72a1cd, #45d9d1, #ee3d5f, #f6882b);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100px;
}

.launch-button {
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 200px;
  height: 54px;
  border-radius: 100px;
  background: #112360;
  color: white;
}

.hero-stats-section {
  background-color: rgba(47, 50, 65, 0.5);
  backdrop-filter: blur(64px);
  border-radius: 20px;
  min-width: 320px;
  width: 360px;
  height: 380px;
  padding: 20px;
  overflow: hidden;
}

.stats-title {
  font-size: 25px;
  font-weight: 600;
  color: var(--main-text);
  margin-top: 12px;
  margin-bottom: 32px;
}

.stats-label {
  color: var(--on-primary);
  background: var(--primary);
  font-size: 11px;
  font-weight: 600;
  width: 100px;
  height: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
}

.stats-body {
  display: flex;
}

.stats-body-item:not(:last-child) {
  margin-bottom: 64px;
}

.stats-body-item-label {
  color: var(--sub-text);
  font-size: 16px;
  margin-bottom: 8px;
}

.stats-body-item-value {
  color: var(--main-text);
  font-size: 25px;
}

.eth-image {
  margin-top: 16px;
  width: 146px;
  transform: rotate(9.52deg) translateX(-32px);
  opacity: 60%;
}

.tvl-bar {
  margin-top: 16px;
  width: 180px;
  height: 7px;
  border-radius: 4px;
  background-color: #141518;
}

.tvl-bar-active {
  width: 0px;
  height: 7px;
  border-radius: 4px;
  background-color: var(--primary);
}

@media screen and (max-width: 840px) {
  .hero-stats-section {
    margin-top: 40px;
  }
}

@media screen and (max-width: 480px) {
  .hero-stats-section {
    min-width: 280px;
    width: auto;
  }

  .stats-body-item-label {
    font-size: 12px;
  }

  .stats-body-item-value {
    font-size: 20px;
  }

  .eth-image {
    width: 120px;
  }
}

/* Futures section */

.bg-body {
  margin: 0px 0px 60px 80px;
  background-image: url("/img/bg.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

@media screen and (max-width: 480px) {
  .bg-body {
    margin-left: 60px;
    padding-left: 10px;
  }
}

@media screen and (max-width: 480px) {
  .bg-body {
    margin-left: 0px;
    padding-left: 18px;
  }
}

.future-section-title {
  color: var(--main-text);
  font-size: 38px;
  font-weight: 700;
  line-height: 42px;
  margin-bottom: 12px;
  margin-left: 40px;
  position: relative;
}

@media screen and (max-width: 400px) {
  .future-section-title {
    font-size: 30px;
  }
}

.future-section-title::before {
  content: "";
  background: url("/img/active-dot.png") no-repeat;
  background-size: contain;
  position: absolute;
  width: 24px;
  height: 24px;
  display: inline-block;
  margin-right: 8px;
  top: calc(50% - 12px);
  left: -42px;
}

.future-section-title::after {
  content: "";
  position: absolute;
  left: -31px;
  border-left: 1px dashed var(--main-text);
  height: calc(50% + 14px);
  width: 1px;
  top: calc(50% + 14px);
}

.future-section-item {
  margin-bottom: 24px;
}

@media screen and (max-width: 840px) {
  .future-section-item {
    padding-right: 40px;
  }
}

.future-section-text {
  color: var(--primary);
  font-size: 16px;
  line-height: 24px;
  margin-left: 40px;
  position: relative;
}

.future-section-text::before {
  content: "";
  background: url("/img/dot.png") no-repeat;
  background-size: contain;
  position: absolute;
  width: 12px;
  height: 12px;
  display: inline-block;
  margin-right: 8px;
  top: calc(50% - 6px);
  left: -36px;
}

.future-section-text::after {
  content: "";
  position: absolute;
  left: -31px;
  border-left: 1px dashed var(--main-text);
  height: calc(50% + 48px);
  width: 1px;
}

.future-section-item:last-child > .future-section-text::after {
  display: none;
}

/* Investors section */

.investor-section {
  width: calc(100vw - 160px);
  margin: 40px auto;
}

.investor-section-title {
  color: var(--main-text);
  font-size: 30px;
  font-weight: 700;
  text-align: center;
}

.investor-section-body {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100px;
}

.investor-items {
  width: 50%;
  display: flex;
  justify-content: space-around;
}

@media screen and (max-width: 840px) {
  .investor-section {
    width: calc(100vw - 20px);
  }

  .investor-items {
    flex-direction: column;
    align-items: center;
    height: 70px;
  }
}

.investor-item {
  color: var(--main-text);
  font-size: 18px;
  font-weight: 600;
}

/* Footer */
footer {
  border-top: 1px solid rgba(52, 56, 76, 1);
  margin: 0 80px;
  height: 80px;
  color: #5d6588;
  display: flex;
  align-items: center;
  font-size: 16px;
}

@media screen and (max-width: 840px) {
  footer {
    margin: 0 10px;
  }
}
