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

body {
  font-family: 'Segoe UI', sans-serif;
  background: #000;
  color: #fff;
  overflow-x: hidden;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 40px;
  min-height: 100vh;
}

.content {
  max-width: 600px;
  flex: 1 1 50%;
}
.logo-wrapper{
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}
.logo-image {
  margin-bottom: 20px;
  border-radius: 50%;
  width: 10%;
}

h1 {
  font-size: 7.5rem;
  font-weight: 700;
  line-height: 1.2;
}

.soon {
  font-weight: 400;
}

h2 {
  font-size: 5.5rem;
  margin: 20px 0;
}

.brand {
  color: #d4ff00;
  font-weight: 700;
}

.btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 25px;
  border: 2px solid #d4ff00;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s, color 0.3s;
}

.btn:hover {
  background: #d4ff00;
  color: #000;
}

.social {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.social .line {
  height: 1px;
  width: 60px;
  background: #fff;
}

.social i {
  font-size: 1.2rem;
  color: #d4ff00;
  transition: transform 0.2s;
}

.social i:hover {
  transform: scale(1.2);
}

.image-wrapper {
  flex: 1 1 40%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
}
.launch-wrapper {
    flex: 1 1 20%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.launch {
   max-width: 100%;
}

.hero-image {
  max-width: 100%;
  border-radius: 50%;
}

@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 30px 20px;
  }

  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  .social {
    justify-content: center;
  }

  .hero-image {
    width: 100%;
    margin-top: 20px;
  }
}
