* {
  margin: 0;
  padding: 0;
  outline: 0;
  font-size: 1em;
  font-weight: normal;
  font-style: normal;
  border: 0;
  text-decoration: none;
  list-style-type: none;
}

body {
  margin: 0;
  height: 100%;
  min-height: 100vh;
  color: #fff;
  font-family: "Founders Grotesk", sans-serif;
  font-weight: 400;
  background-color: #0f0029;
  position: relative;
  background: linear-gradient(
    135deg,
    rgb(60, 9, 109) 0%,
    rgb(49, 11, 96) 5%,
    rgb(39, 12, 85) 11%,
    rgb(29, 11, 71) 18%,
    rgb(23, 10, 62) 27%,
    rgb(17, 4, 47) 39%,
    rgb(17, 4, 47) 56%,
    rgb(23, 10, 62) 71%,
    rgb(29, 11, 71) 82%,
    rgb(39, 12, 85) 90%,
    rgb(49, 11, 96) 95%,
    rgb(60, 9, 109) 100%
  );
  overflow-x: hidden;
}
body::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(/assets/images/graph-paper.svg?v=1444);
  background-size: 140px;
  background-repeat: repeat;
  background-position: top center;
  z-index: -2;
}

.home {
  width: 96%;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 1200px) {
  .home {
    overflow-x: hidden;
  }
}

.nav-container {
  height: 25vh;
  width: 100%;
}
.nav {
  padding: 21px;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  font-size: 1.2rem;
  font-weight: 400;
  color: #fff;
  max-width: 1200px;
  margin: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
}
@media (max-width: 1000px) {
  .nav-links {
    display: none;
  }
}
.nav-links li {
  margin: 0 24px;
}
.nav-links a {
  color: #fff;
  text-decoration: none;
}

.hero {
  position: relative;
  height: 100vh;
  max-height: 500px;
  text-align: left;
}

.hero-bg {
  background-image: url(/assets/images/hero-bg.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right center;
  opacity: 0.7;
  position: absolute;
  top: 30px;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  transform: skew(-10deg, -10deg);
}

@media (max-width: 1000px) {
  .hero-bg {
    opacity: 0.2;
  }
}

.hero-title {
  font-weight: 600;
  font-size: 60px;
  color: rgba(255, 255, 255, 1);
  margin-bottom: 40px;
  max-width: 700px;
}
@media (max-width: 1000px) {
  .hero-title {
    font-weight: 600;
    font-size: 46px;
  }
}
.hero-subtitle {
  font-size: 20px;
  line-height: 28px;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 40px;
  max-width: 680px;
}

.hero button {
  margin-right: 20px;
}

.steps {
  margin: 150px auto 0;
  text-align: center;
}

.steps ol {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
  flex-wrap: wrap;
}

.steps li {
  width: calc(33% - 80px);
  margin: 40px;
  min-width: 300px;
}

.steps h3 {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.4px;
  line-height: 28px;
  margin-bottom: 20px;
}

.steps p {
  font-size: 18px;
  line-height: 28px;
  color: rgba(255, 255, 255, 0.88);
}
.step-icon {
  width: 80px;
  height: 80px;
  margin: 30px auto;
}
.step-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.posts {
  margin: 150px auto 60px;
  text-align: center;
}
.posts ul {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 60px;
  flex-wrap: wrap;
  gap: 40px;
}
.posts li {
  width: 30%;
  min-width: 340px;
  border-radius: 11px;
  overflow: hidden;
  background: linear-gradient(135deg, rgb(60, 9, 109) 0%, rgb(29, 11, 71) 100%);
  border: 1px solid #ffffff20;
}
.posts a {
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  flex-direction: column;
  justify-self: center;
}
.posts h3 {
  border-top: 1px solid #ffffff20;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.4px;
  line-height: 28px;
  padding: 20px 0;
}
.posts img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  object-position: top;
}

button {
  cursor: pointer;
  display: inline-block;
  border-radius: 100px;
  padding: 0.6em 1.62em;
  background: linear-gradient(
        45deg,
        rgb(253, 167, 91),
        rgb(225, 69, 182),
        rgb(98, 37, 63)
      )
      border-box padding-box,
    linear-gradient(
        45deg,
        rgb(252, 164, 93),
        rgb(127, 14, 127),
        rgb(255, 137, 131)
      )
      border-box border-box;
  color: rgb(255, 255, 255);
  border: 1px solid transparent;
  font-size: 1.2rem;
}

h2 {
  font-weight: 600;
  font-size: 60px;
  line-height: 60px;
  color: rgba(255, 255, 255, 1);
}

h4 {
  font-size: 20px;
  line-height: 60px;
  color: rgba(255, 255, 255, 0.6);
}

footer {
  display: flex;
  width: 100%;
  justify-content: center;
  gap: 30px;
  padding: 60px 0;
}
footer a {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
}
footer a:hover {
  text-decoration: underline;
}
