* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
}

body {
  background: #ffffff;
  color: #333;
}

.hero {
  min-height: 100vh;
  background: linear-gradient(180deg, #ffe6ef, #ffc1d9);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
}

.logo {
  width: 140px;
  margin-bottom: 30px;
}

.hero h1 {
  font-size: 2.6rem;
  color: #ff2f7d;
}

.hero h2 {
  margin-top: 10px;
  font-weight: 400;
}

.highlight {
  margin: 20px 0;
  font-size: 1.3rem;
  font-weight: 600;
}

.btn {
  padding: 14px 36px;
  background: #ff2f7d;
  color: white;
  text-decoration: none;
  border-radius: 30px;
  font-weight: bold;
  display: inline-block;
}

.btn.secondary {
  background: white;
  color: #ff2f7d;
  border: 2px solid #ff2f7d;
}

section {
  padding: 80px 20px;
  text-align: center;
}

.features .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.features .grid div {
  padding: 30px;
  background: #ffe6ef;
  border-radius: 18px;
}

.join {
  background: #ff2f7d;
  color: white;
}

footer {
  background: #222;
  color: #ccc;
  text-align: center;
  padding: 20px;
}
