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

body {
  font-family: 'Roboto', sans-serif;
  background: #000;
  color: #fff;
  line-height: 1.6;
}

a {
  color: #fff;
  text-decoration: none;
}

.container {
  max-width: 1190px;
  margin: 0 auto;
}

/* Header */
.header {
  background: #111;
  padding: 12px 18px;
  position: sticky;
  top: 12px;
  z-index: 100;
  max-width: 1190px;
  margin: 0 auto;
  border-radius: 43px;
}

.logo a{
  display: flex;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.nav__list {
  list-style: none;
  display: flex;
  gap: 24px;
}

.nav__list li a {
  font-weight: 300;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0.15px;
}

.btn {
  background: #B3E201;
  color: #000;
  padding: 8px 18px;
  border: none;
  border-radius: 32px;
  cursor: pointer;
  height: 48px;
  width: 149px;
  font-weight: 300;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0.15px;
}

.btn a {
  color: black;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 4px;
  background-color: #B3E201;
  border: none;
  cursor: pointer;
  width: 32px;
  height: 32px;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
}

.burger span {
  display: block;
  width: 16px;
  height: 3px;
  background: black;
  border-radius: 25px;
}

.burger.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.burger.open span:nth-child(2) {
  opacity: 0;
}

.burger.open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 50px;
  left: 10px;
  width: calc(100% - 20px);
  /* height: 100%; */
  background: #111;
  z-index: 99;
  padding: 40px;
  text-align: center;
  border-radius: 0 0 24px 24px;
}

.mobile-menu.open {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 90;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.overlay.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-menu__close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: #B3E201;
  font-size: 32px;
}

/* Hero */
.hero {
  padding-top: 57px;
  text-align: center;
}

.hero__title {
  font-weight: 900;
  font-size: 157px;
  line-height: 85%;
  display: flex;
  flex-direction: column;
}

.hero__title span:nth-child(1) {
  text-align: left;
  position: relative;
  left: 60px;
}

.hero__title span:nth-child(2) {
  text-align: right;
  position: relative;
  right: 60px;
}

.hero__title span:nth-child(3) {
  text-align: center;
}

.hero__text {
  display: flex;
  gap: 160px;
  justify-content: center;
  text-align: left;
  margin-top: 49px;
  font-weight: 300;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.15px;
}

.hero__text p {
  max-width: 513px;
}

.hero__scroll {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: 40px;
  color: #646464;
  font-weight: 400;
  font-size: 12px;
  line-height: 20px;
  letter-spacing: 0.15px;
}

/* Features */
.features {
  padding-top: 150px;
  background: #000;
}

.section-title {
  font-weight: 800;
  margin-bottom: 48px;
  font-size: 60px;
  line-height: 104%;
  letter-spacing: -3%;
  text-align: center;
  text-transform: uppercase;
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.feature {
  background: #121212;
  padding: 42px;
  border-radius: 30px;
}

.feature .icon {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 21px;
}

.feature h3 {
  margin-bottom: 16px;
  font-weight: 500;
  font-size: 32px;
  line-height: 24px;
}

.feature p {
  font-weight: 300;
  font-size: 14px;
  line-height: 20px;
  color: #B3B3B3;
}

/* Coins */
.coins {
  padding-top: 220px;
  padding-bottom: 150px;
}

.coins__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.coin {
  background: #121212;
  border-radius: 30px;
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0.15px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 185px;
  height: 176px;
}

.coin img {
  width: 62px;
  margin: 0 auto;
  margin-bottom: 8px;
}

/* Footer */
.footer {
  background: #121212;
  padding: 60px 0;
}

.footer__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid #1D1D1D;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  max-width: 522px;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer__brand svg{
  flex-shrink: 0;
}

.footer__brand strong {
  font-weight: 900;
  font-size: 50px;
  line-height: 110%;
  text-transform: uppercase;

}

.footer__brand p {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.15px;
  margin-top: 34px;
  color: #B3B3B3;
}

.footer__nav h4 {
  margin-bottom: 24px;
  font-weight: 900;
  font-size: 24px;
  line-height: 104%;
  text-transform: uppercase;
}

.footer__nav .list-wrap {
  display: flex;
  gap: 140px;
}

.footer__nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer__nav a {
  font-weight: 300;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0.15px;
}

.footer__bottom {
  margin-top: 32px;
  font-weight: 400;
  font-size: 16px;
  line-height: 137%;
  letter-spacing: 0%;
  display: flex;
  justify-content: space-between;
}

/* Modal */
.modal {
  display: none;
}

.modal.active {
  display: block;
}

.modal__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 300;
}

.modal__window {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: #121212;
  border-radius: 32px;
  padding: 26px;
  max-width: 480px;
  width: 90%;
  z-index: 310;
  text-align: left;
}
.modal__window h3 {
  font-weight: 600;
  font-size: 24px;
  margin-bottom: 16px;
}

.modal__window p {
  font-weight: 300;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.15px;
  color: #B3B3B3;
}

.modal__window a {
  color: #B3E201;
}

.modal__close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: white;
  border: none;
  color: black;
  font-size: 28px;
  cursor: pointer;
  width: 32px;
  border-radius: 100%;
}

/* Contact Page */
.contact-page {
  padding-top: 57px;
  padding-bottom: 91px;
}

.breadcrumb {
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0%;
}

.breadcrumb .home {
  opacity: .5;
}

.contact-title {
  margin-top: 58px;
  font-size: 105px;
  text-align: left;
}

.contact-title span {
  text-align: right;
  display: block;
}

.contact-grid {
  display: flex;
  gap: 104px;
}

.contact-text {
  font-weight: 300;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.15px;
  max-width: 586px;
}

.contact-side .block {
  margin-bottom: 48px;
}

.contact-side .block h3 {
  margin-bottom: 16px;
  font-weight: 500;
  font-size: 32px;
  line-height: 24px;
  letter-spacing: 0.15px;
}

.contact-side .block p {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.15px;
  color: #B3B3B3;
}

.contact-text p {
  margin-bottom: 16px;
}

/* Policy Page */
.policy-page {
  padding-top: 57px;
  padding-bottom: 91px;
}

.policy-title span {
  text-align: center;
}

.policy-block {
  display: grid;
  grid-template-columns: 415px 700px;
  gap: 75px;
  margin-bottom: 32px;
}

.policy-block p {
  font-weight: 300;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.15px;
}

@media(max-width:1024px) {
  .container {
    padding: 0 10px;
  }

  .hero__title span:nth-child(1) {
    left: 0;
  }
}

/* Responsive */
@media(max-width:768px) {
  .header {
    margin: 14px 10px 0;
    border-radius: 43px;
  }

  #contact-open {
    display: none;
  }

  .nav {
    display: none;
  }

  .burger {
    display: flex;
  }

  .hero__title {
    font-size: 50px;
    line-height: 105%;
  }

  .hero__title span {
    position: unset !important;
  }

  .hero__text {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .features {
    padding-top: 100px;
  }

  .section-title {
    font-size: 32px;
    margin-bottom: 32px;
  }

  .features__grid {
    grid-template-columns: 1fr;
  }

  .feature {
    padding: 16px;
    text-align: center;
  }

  .feature .icon {
    justify-content: center;
  }

  .feature .icon img {
    width: 40px;
  }

  .feature h3 {
    font-size: 24px;
  }

  .coins {
    padding-top: 150px;
    padding-bottom: 120px;
  }

  .coins__grid {
    gap: 8px;
  }

  .coin {
    width: 94px;
    height: 104px;
  }

  .coin img {
    width: 40px;
  }

  .footer {
    padding-bottom: 24px;
  }

  .footer__brand strong {
    font-size: 32px;
  }

  .footer__brand p {
    margin-top: 16px;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer__bottom a {
    margin-top: 8px;
  }

  .contact-grid {
    flex-direction: column;
    gap: 60px;
  }

  .policy-block {
    display: block;
    text-align: center;
  }
  
}