body {
  margin: 0;
  background: #000;
  color: white;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.hero {
  text-align: center;
  padding: 90px 20px 120px;
}

.logo {
  width: 120px;
  margin-bottom: 40px;
}

h1 {
  font-size: 58px;
  margin: 0 0 14px;
}

.subtitle {
  font-size: 22px;
  color: #9a9a9a;
  margin: 0;
}

.button {
  display: inline-block;
  margin-top: 34px;
  background: #0A84FF;
  color: white;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 14px;
  font-weight: 600;
}

.container {
  max-width: 900px;
  margin: auto;
  padding: 0 24px;
}

.feature {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 90px;

    margin-bottom: 80px;

    padding: 60px;
    background: #080808;
    border: 1px solid #1f1f1f;
    border-radius: 30px;
}

.feature.reverse {
  flex-direction: row-reverse;
}

.feature-text {
  width: 280px;
}

.feature-text h2 {
  font-size: 34px;
  margin: 0 0 14px;
}

.feature-text p {
  color: #9a9a9a;
  font-size: 20px;
  line-height: 1.4;
  margin: 0;
}

.feature img {
  width: 100%;
  max-width: 250px;
  border-radius: 28px;
  border: 1px solid #333;
  background: #111;
  padding: 6px;
  box-shadow: 0 0 30px rgba(255,255,255,0.06);
}

.coming-soon {
  text-align: center;
  margin: 80px 0 120px;
}

.coming-soon h2 {
  font-size: 36px;
}

footer {
  text-align: center;
  padding: 40px;
  border-top: 1px solid #222;
}

footer a {
  color: #888;
  text-decoration: none;
  margin: 0 15px;
}

@media (max-width: 700px) {
  .feature,
  .feature.reverse {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }

  .feature-text {
    width: auto;
  }

  h1 {
    font-size: 46px;
  }
}