body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: linear-gradient(135deg, #eef6f8, #f7f9fb);
  color: #1f2933;
}

.landing-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.landing-card {
  background: #ffffff;
  max-width: 620px;
  width: 100%;
  padding: 52px 42px;
  border-radius: 22px;
  text-align: center;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}

.landing-logo {
  width: 170px;
  margin-bottom: 18px;
}

.eyebrow {
  margin: 0 0 10px;
  color: #0a9bb0;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1 {
  margin: 0 0 12px;
  font-size: 2.6rem;
}

.tagline {
  font-size: 1.08rem;
  line-height: 1.5;
  margin: 0 0 28px;
}

.feature-list {
  display: grid;
  gap: 10px;
  margin: 0 auto 28px;
  max-width: 430px;
  text-align: left;
}

.feature {
  padding: 12px 14px;
  border-radius: 12px;
  background: #f4f6f8;
  color: #52616b;
}

.feature::before {
  content: "Coming soon";
  display: inline-block;
  min-width: 100px;
  margin-right: 10px;
  color: #7b8794;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.feature.ready::before {
  content: "Testing";
  color: #0a9bb0;
}

.status {
  margin: 0;
  font-size: 0.92rem;
  color: #0a9bb0;
  font-weight: 700;
}

@media (max-width: 600px) {
  .landing-card {
    padding: 40px 24px;
  }

  h1 {
    font-size: 2.1rem;
  }

  .landing-logo {
    width: 140px;
  }

  .feature::before {
    display: block;
    margin-bottom: 4px;
  }
}
