
.education-video {
  min-height: 320px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.24), transparent 24%),
    linear-gradient(145deg, var(--blue-900), var(--blue-700));
  color: var(--white);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 28px;
}

.play-badge {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto 16px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 1.9rem;
}

.dashboard {
  padding-bottom: 36px;
}

.dashboard-shell {
  padding-top: 28px;
}

.dashboard-hero {
  display: grid;
  gap: 24px;
}

.dashboard-hero__stats,
.detail-grid,
.stage-roadmap {
  display: grid;
  gap: 16px;
}

.dashboard-hero__stats {
  grid-template-columns: repeat(3, 1fr);
}

.dashboard-detail,
.dashboard-copy-card {
  display: grid;
  gap: 18px;
}

.dashboard-detail__header {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: start;
  flex-wrap: wrap;
}

.detail-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.detail-grid--legal {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.detail-card {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.92);
}

.detail-card strong {
  display: block;
  margin: 8px 0 4px;
  font-size: 1.02rem;
}

.detail-card--wide {
  grid-column: span 2;
}

.detail-gate {
  padding: 10px 4px;
}

.stage-roadmap {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.stage-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 0;
  padding: 24px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: rgba(248, 251, 255, 0.96);
  overflow: hidden;
}

.stage-card--done {
  background: linear-gradient(145deg, rgba(239, 246, 255, 0.96), rgba(219, 234, 254, 0.96));
  border-color: rgba(37, 99, 235, 0.18);
}

.stage-card--active {
  background: linear-gradient(145deg, rgba(29, 78, 216, 0.08), rgba(96, 165, 250, 0.12));
  border-color: rgba(37, 99, 235, 0.24);
}

.stage-card__header,
.stage-card__footer {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 14px;
}

.stage-card__header {
  display: grid;
  grid-template-columns: 1fr;
}

.stage-card h3,
.detail-gate h3 {
  margin: 0;
}

.stage-card h3 {
  max-width: 100%;
  overflow-wrap: anywhere;
  line-height: 1.12;
  font-size: clamp(1.15rem, 1.7vw, 1.5rem);
}

.stage-card > p {
  margin: 0;
  overflow-wrap: anywhere;
  line-height: 1.5;
}

.stage-price {
  width: fit-content;
  max-width: 100%;
  margin-top: 4px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  font-weight: 700;
  color: var(--blue-900);
  white-space: nowrap;
}
