/* ─── Reset & Base ───────────────────────────────────────────────── */
* { box-sizing: border-box; margin:0; padding:0; }
body {
  background: #f3efff;
  font-family: 'Inter', sans-serif;
  color: #32264d;
  -webkit-font-smoothing: antialiased;
}

/* ─── Gradient Topbar ───────────────────────────────────────────── */
.topbar {
  position: relative;
  height: 60px;
  background: linear-gradient(90deg,#6c32a0,#9b5de5);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.btn-back, .btn-menu {
  position: absolute;
  top:50%; transform:translateY(-50%);
  background: none; border: none;
  color: #fff; font-size:24px; cursor: pointer;
}
.btn-back { left:16px; }
.btn-menu { right:16px; }
.title {
  color: #fff; font-size:18px; font-weight:600;
}

/* ─── Home Section ───────────────────────────────────────────────── */
.home {
  max-width: 460px; margin:32px auto; padding:0 16px; text-align:center;
}
.home-logo img {
  width: 120px; margin-bottom: 16px;
}
.home-heading {
  font-size: 24px; font-weight:700; color: #ffb400;
  margin-bottom: 24px;
}

/* ─── Icon Grid ─────────────────────────────────────────────────── */
.icon-grid {
  display:grid; grid-template-columns:repeat(3,1fr);
  gap:24px 12px; margin-bottom:32px;
}
.icon-box {
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(8px);
  border-radius:20px;
  padding:18px 0;
  display:flex; flex-direction:column; align-items:center;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}
.icon-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}
.icon-box img {
  width:48px; height:48px; margin-bottom:10px;
}
.icon-box span {
  font-size:14px; color:#32264d; font-weight:500;
}

/* ─── Explore Button ───────────────────────────────────────────── */
.explore-btn-bar {
  max-width:460px; margin:0 auto 40px; padding:0 16px;
}
.btn.explore {
  width:100%; display:flex; align-items:center; justify-content:center;
  gap:10px; padding:14px 0; font-size:17px; font-weight:600;
  border:none; border-radius:30px;
  background: linear-gradient(90deg,#6c32a0,#9b5de5);
  color:#fff; cursor:pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: opacity .2s;
}
.btn.explore:hover {
  opacity: .85;
}
.btn-icon {