* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  background: #fffaf5;
  color: #2f2240;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 6%;
  background: #ffffff;
  border-bottom: 2px solid #f1e7da;
  position: sticky;
  top: 0;
}

.brand {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.menu {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.menu a {
  text-decoration: none;
  color: #5a476f;
  font-weight: 600;
}

.hero {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  padding: 70px 6%;
  align-items: center;
}

.tag {
  display: inline-block;
  background: #ffe7c7;
  color: #8a4b00;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.9rem;
  margin-bottom: 14px;
}

.hero h1 {
  font-size: 3rem;
  line-height: 1.1;
  margin: 0 0 18px;
}

.hero-copy {
  font-size: 1.05rem;
  max-width: 520px;
  color: #5f5470;
  margin-bottom: 24px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

button {
  background: #7c5cff;
  color: white;
  border: none;
  border-radius: 14px;
  padding: 14px 22px;
  font-size: 1rem;
  cursor: pointer;
}

button:hover {
  opacity: 0.92;
}

.text-link {
  color: #7c5cff;
  text-decoration: none;
  font-weight: 700;
}

.hero-panel {
  background: #fff;
  border: 2px solid #f1e7da;
  border-radius: 28px;
  padding: 22px;
  box-shadow: 0 10px 30px rgba(47, 34, 64, 0.08);
}

.panel-card {
  border-radius: 22px;
  padding: 24px;
  font-weight: 700;
  text-align: center;
}

.panel-card.large {
  background: linear-gradient(135deg, #ffd8a8, #ffc6e2);
  min-height: 180px;
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  margin-bottom: 16px;
}

.panel-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.panel-card.small {
  background: #f4f0ff;
  color: #4a3d66;
}

.features,
.community {
  padding: 60px 6%;
}

.features h2,
.community h2 {
  font-size: 2rem;
  margin-bottom: 24px;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.feature {
  background: #ffffff;
  border: 2px solid #f1e7da;
  border-radius: 20px;
  padding: 24px;
}

.feature h3 {
  margin-top: 0;
  margin-bottom: 10px;
}

.feature p,
.community p {
  color: #5f5470;
  line-height: 1.6;
}

.footer {
  padding: 24px 6%;
  text-align: center;
  border-top: 2px solid #f1e7da;
  background: #ffffff;
}

@media (max-width: 850px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .feature-list {
    grid-template-columns: 1fr;
  }

  .topbar {
    flex-direction: column;
    gap: 14px;
  }
}