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

body {
  font-family: Arial, sans-serif;
  background: linear-gradient(135deg, #f7f4ee, #eef4ef);
  color: #1e1d1d;
  min-height: 100vh;
}

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

.card {
  max-width: 720px;
  width: 100%;
  background: #ffffff;
  border-radius: 20px;
  padding: 48px 36px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.label {
  display: inline-block;
  margin-bottom: 18px;
  padding: 8px 14px;
  border-radius: 999px;
  background: #e9f3ea;
  color: #46624c;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1 {
  font-size: 48px;
  line-height: 1.1;
  margin-bottom: 18px;
}

.subtitle {
  font-size: 20px;
  line-height: 1.6;
  color: #3b3b3b;
  margin-bottom: 18px;
}

.description {
  font-size: 17px;
  line-height: 1.7;
  color: #61666f;
}

@media (max-width: 768px) {
  .card {
    padding: 36px 24px;
  }

  h1 {
    font-size: 36px;
  }

  .subtitle {
    font-size: 18px;
  }

  .description {
    font-size: 16px;
  }
}