/* BLOOMTRACK HEADER */
.bt-header {
  width: 100%;
  padding: 16px 32px;
  background: linear-gradient(90deg, #b39df7, #cca7ff, #e3b9ff);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  font-weight: 600;
  position: sticky;
  top: 0;
  z-index: 100;
}

.bt-logo {
  font-size: 22px;
  font-weight: 800;
}

.bt-header nav a {
  margin-left: 20px;
  color: #fff;
  text-decoration: none;
  font-size: 15px;
}

.bt-header nav a:hover {
  text-decoration: underline;
}

/* GENERAL PAGE */
body {
  margin: 0;
  background: linear-gradient(180deg, #f8ecff, #f1dbff);
  font-family: "Inter", sans-serif;
}

.page-wrap {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
}

/* HERO */
.hero {
  text-align: center;
  margin-bottom: 30px;
}

.hero h1 {
  margin: 0;
  font-size: 32px;
  color: #4b2d73;
}

.subtitle {
  color: #755996;
  font-size: 15px;
}

/* GRID */
.grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr 330px;
}

.card {
  background: rgba(255, 255, 255, 0.65);
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 4px 12px rgba(97, 39, 143, 0.1);
}

/* ROADMAP */
.roadmap {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.level {
  display: flex;
  gap: 12px;
  align-items: center;
}

.bubble {
  width: 48px;
  height: 48px;
  background: #d8c1ff;
  color: #4b2d73;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
}

/* INPUTS */
.planner-inputs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.planner-inputs input {
  padding: 6px;
  border-radius: 6px;
  border: 1px solid #d5b9ff;
  background: #fff;
  width: 80px;
}

.btn {
  background: #c5a1ff;
  border: none;
  color: #fff;
  padding: 8px 12px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
}

.btn:hover {
  background: #b088ff;
}

.clear {
  background: #8f7cb1 !important;
}

textarea {
  width: 100%;
  border-radius: 8px;
  padding: 10px;
  border: 1px solid #d5b9ff;
  background: #fff;
  min-height: 60px;
}

.table-wrap table {
  width: 100%;
  border-collapse: collapse;
}

.table-wrap th,
.table-wrap td {
  padding: 6px;
  border-bottom: 1px solid #e7d9ff;
}

/* ASIDE */
.checklist {
  display: grid;
  gap: 8px;
}

.progress-wrap {
  margin-top: 12px;
}

.resources ul {
  padding-left: 18px;
}

/* MOBILE FIX */
@media (max-width: 900px) {
  .grid {
    grid-template-columns: 1fr;
  }
}
